User:WikiSysop: Difference between revisions

From CSDMS
m took out some tests cases
No edit summary
Line 26: Line 26:
*/
*/
</geshi>
</geshi>
===test===
<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
<channel>
<title>Title for the site.</title>
<link>http://www.yoursite.com/rsslink.html</link>
<description>Description of the site contents.</description>
<language>en-us</language>
<copyright>Copyright ©2007 All rights reserved.</copyright>
<pubDate>
Tue, 26 Jun 2007 13:09:09 PST
</pubDate>
<lastBuildDate>
Tue, 26 Jun 2007 13:09:09 PST
</lastBuildDate>
<category>Category of this tip</category>
<generator>Person or company that generated the tip</generator>
<docs>http://www.feedvalidator.org/docs/rss2.html</docs>
<ttl>1440</ttl>
<image>
<title>Title for the image</title>
<url>http://www.yoursite.com/images/rs_logo.gif</url>
<link>http://www.yoursite.com/file.html</link>
<width>144</width>
<height>77</height>
</image>
<item>
<link>http://www.yoursite.com/rsslink.html#entry1234
</link><title>
This is the title of the entry for this particular entry
</title><description><![CDATA[<p>
Here is where the text goes. The data between the two item tags can
be repeated indefinitely in the file to have multiple entries. When
a new entry is made the date at the up of the file (pub date and build
date should be updated to match the date of the entry) Note that the
cdata tag allows html constructions to be part of this description. 
</p>]]>
</description><category>
This is the category to allow filtering (should be short)
</category><guid isPermaLink="true">
http://www.yoursite.com/rsslink.html#entry1234
</guid><pubDate>
Mon, 5 Feb 2007 12:09:09 PST
</pubDate></item>
</channel>
</rss>

Revision as of 10:32, 8 January 2009

Changes to the wiki software made since --WikiSysop 11:37, 5 November 2008 (MST)

Remove 'discussion tab' from Page edit toolkit --WikiSysop 11:38, 5 November 2008 (MST)

CSDMS decided not to use any of the "discussion" pages capabilities that can be created for each of its web pages. Therefore the "discussion" tab was removed from the "Page edit toolkit" by the next action:
Open \includes\SkinTemplate.php file and look for:

<geshi lang="php"> $content_actions[’talk’] = $this->tabAction( $this->mTitle->getTalkPage(), ‘talk’, $this->mTitle->isTalkPage(), ”, true); </geshi> and change that to:

<geshi lang="php"> /* $content_actions[’talk’] = $this->tabAction( $this->mTitle->getTalkPage(), ‘talk’, $this->mTitle->isTalkPage(), ”, true);

  • /

</geshi>

test

<?xml version="1.0" encoding="ISO-8859-1"?> <rss version="2.0">

<channel> <title>Title for the site.</title> <link>http://www.yoursite.com/rsslink.html</link> <description>Description of the site contents.</description> <language>en-us</language> <copyright>Copyright ©2007 All rights reserved.</copyright> <pubDate> Tue, 26 Jun 2007 13:09:09 PST </pubDate> <lastBuildDate> Tue, 26 Jun 2007 13:09:09 PST </lastBuildDate> <category>Category of this tip</category> <generator>Person or company that generated the tip</generator> <docs>http://www.feedvalidator.org/docs/rss2.html</docs> <ttl>1440</ttl> <image> <title>Title for the image</title> <url>rs_logo.gif</url> <link>http://www.yoursite.com/file.html</link> <width>144</width> <height>77</height> </image>

<item> <link>http://www.yoursite.com/rsslink.html#entry1234 </link><title> This is the title of the entry for this particular entry

</title><description><![CDATA[

Here is where the text goes. The data between the two item tags can be repeated indefinitely in the file to have multiple entries. When a new entry is made the date at the up of the file (pub date and build date should be updated to match the date of the entry) Note that the cdata tag allows html constructions to be part of this description.

]]>

</description><category> This is the category to allow filtering (should be short) </category><guid isPermaLink="true"> http://www.yoursite.com/rsslink.html#entry1234 </guid><pubDate> Mon, 5 Feb 2007 12:09:09 PST </pubDate></item>

</channel> </rss>