| 591 |
591 |
| 592 |
592 |
| 593 |
593 |
| 594 |
594 |
| 595 /*-----------------------------------------------------------------*/ |
595 /*-----------------------------------------------------------------*/ |
| 596 char *description() { |
596 |
| |
597 struct gaim_plugin_description desc; |
| |
598 struct gaim_plugin_description *gaim_plugin_desc() { |
| |
599 desc.api_version = PLUGIN_API_VERSION; |
| |
600 desc.name = g_strdup("Stock Ticker"); |
| |
601 desc.version = g_strdup(VERSION); |
| |
602 desc.description = g_strdup( |
| |
603 " This program uses ghttp to connect to " |
| |
604 "a popular stock quote site, then downloads " |
| |
605 "and parses the html returned from the " |
| |
606 "site to scroll delayed quotes" |
| |
607 "\n\n The Gnome Stock Ticker is a free, Internet based application. These quotes are not " |
| |
608 "guaranteed to be timely or accurate. " |
| |
609 "Do not use the Gnome Stock Ticker for making investment decisions; it is for " |
| |
610 "informational purposes only."); |
| |
611 desc.authors = g_strdup("Jayson Lorenzen, Jim Garrison, Rached Blili"); |
| |
612 desc.url = g_strdup(WEBSITE); |
| |
613 return &desc; |
| |
614 } |
| |
615 |
| |
616 char *description() { |
| 597 return |
617 return |
| 598 " This program uses ghttp to connect to " |
618 " This program uses ghttp to connect to " |
| 599 "a popular stock quote site, then downloads " |
619 "a popular stock quote site, then downloads " |
| 600 "and parses the html returned from the " |
620 "and parses the html returned from the " |
| 601 "site to scroll delayed quotes" |
621 "site to scroll delayed quotes" |