Show
Ignore:
Timestamp:
11/21/06 13:45:19 (7 years ago)
Author:
benoitg
Message:

2.0

 http://projects.coeus.ca/feedpressreview/ (formerly

rsspressreview) and

make most of it's features directly available from the web

interface.

This gives us:
-Now based on SimplePie?  http://simplepie.org/ (magpie was no

longuer maintained)

-Now unobtrusively displays almost all item and feed metadata
-Supports images
-Supports podcasts and enclosures
-More accurate algorithm
-Criteria based default feed expansion
-More real-estate efficient, and improved UI
The admin interface is now also more real-estate efficient (uses

the hover help code commited by François that no one used yet).

Warning: This changes the dependencies of the auth server. Your

RSS feeds will be disabled untill you re-run the install script.

  • gw_message.php: Fix validation period not being displayed.
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog-auth/wifidog/classes/MainUI.php

    r1130 r1131  
    380380 
    381381        /** 
    382          * Set the HTML page headers 
    383          * 
    384          * @param string $headers_string HTML page headers 
    385          * 
    386          * @return void 
    387          * 
    388          * @access public 
    389          */ 
    390         public function setHtmlHeader($headers_string) 
    391         { 
    392                 $this->_htmlHeaders = $headers_string; 
     382         * Append HTML markup (normally <script> elements) to the <head> element to 
     383         * the final page. 
     384         * 
     385         * @param string $headers_string HTML markup suitable for the HEAD element 
     386         * 
     387         * @return void 
     388         * 
     389         * @access public 
     390         */ 
     391        public function appendHtmlHeadContent($headers_string) 
     392        { 
     393                $this->_htmlHeaders .= $headers_string."\n"; 
    393394        } 
    394395