Changeset 175 for dev/mods/feed_syndication/readme.txt
- Timestamp:
- 01/11/07 13:45:30 (15 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
dev/mods/feed_syndication/readme.txt
r170 r175 1 1 ////// 2 2 ////// ////// 3 ////// liq's feed syndication mod v1. 43 ////// liq's feed syndication mod v1.5 4 4 //////////// 5 5 //////////// … … 11 11 //INSTALLATION: 12 12 13 ### --> STANDALONE version: 13 14 15 ##### --> STANDALONE version: 16 17 14 18 1. put all files in your /common directory 15 19 16 20 2. add the following line to common/admin_menu.php: 17 21 $menubox->addOption( "Feeds", "?a=admin_feed" ); 18 orif you use eve-dev kilboard version 1.2.0 and above (using smarty templates):22 OR if you use eve-dev kilboard version 1.2.0 and above (using smarty templates): 19 23 $menubox->addOption("link", "Feeds", "?a=admin_feed"); 20 24 … … 24 28 25 29 26 ### --> MOD version: 27 1. create directory mods/feed 30 31 32 ###### --> MOD version: 33 34 35 1. create directory mods/feed_syndication 28 36 29 37 2. put the files settings.php and feed_fetcher.php in /mods/feed_syndication directory. … … 37 45 5. click 'Settings' in the 'Mods' menu to access the feed interface 38 46 39 additionally you can add the following line to common/admin_menu.php for directaccess:40 $menubox->addOption( "Feeds", "?a=settings_feed " );41 orif you use eve-dev kilboard version 1.2.0 and above (using smarty templates):42 $menubox->addOption("link", "Feeds", "?a=settings_feed ");47 additionally you can add the following line to common/admin_menu.php for faster access: 48 $menubox->addOption( "Feeds", "?a=settings_feed_syndication" ); 49 OR if you use eve-dev kilboard version 1.2.0 and above (using smarty templates): 50 $menubox->addOption("link", "Feeds", "?a=settings_feed_syndication"); 43 51 44 52 … … 58 66 -> enter feed urls in the format: http://killboard.eve-d2.com/?a=feed 59 67 68 -> if you enter a feed from a friendly corp/alliance have the 'friends' box checked else you will only be able to fetch friendly fire kills 69 60 70 -> a list of known feeds can be found here: http://myeve.eve-online.com/ingameboard.asp?a=topic&threadID=443506&page=1#2 61 71 … … 69 79 ** be patient. don't close your browser, don't reload. after doing a full fetch first, weekly updates are totally sufficient to keep your board uptodate ** 70 80 71 72 81 -> by default their kills aka. your losses get fetched unless you tick the 'get kills' 73 82 option in which case their losses aka. your kills get fetched 74 83 75 84 -> GZip compression is enabled by default because the board automatically 76 checks and decides if a fetched stream supports GZip compression - if not it uses regular html/rss output. 77 85 checks and decides if a fetched stream supports GZip compression - if not, it uses regular html/rss output. leave this enabled. 78 86 79 87 -> if you are running a master killboard (eg. to supply and share killdata with other killboards) edit settings.php and set 'MASTER' to 1. … … 87 95 88 96 97 89 98 //VERSION CHANGES: 99 //v1.5 100 101 feed.php: 102 - no changes 103 104 feed_fetcher.php: 105 - no changes 106 107 admin_feed.php / settings.php 108 - added a version check (checks my server for the actual version of the mod and gives you an update link if the versions differ) 109 - added 'select all/none' boxes for the friends and fetch checkbox rows, pretty handy with large feedlists 110 - fixed small bug with the timeframe selection options and a html bug 90 111 91 112