[cmsiki-svn] SF.net SVN: cmsiki: [22] trunk/cmsiki
Status: Pre-Alpha
Brought to you by:
cnu
From: <cn...@us...> - 2007-04-02 17:29:07
|
Revision: 22 http://cmsiki.svn.sourceforge.net/cmsiki/?rev=22&view=rev Author: cnu Date: 2007-04-02 10:29:06 -0700 (Mon, 02 Apr 2007) Log Message: ----------- Changed urls field in blogroll to not check for existence Removed RSS and Search fields in base.html Modified Paths: -------------- trunk/cmsiki/apps/blogroll/models.py trunk/cmsiki/templates/base.html Modified: trunk/cmsiki/apps/blogroll/models.py =================================================================== --- trunk/cmsiki/apps/blogroll/models.py 2007-04-02 17:20:59 UTC (rev 21) +++ trunk/cmsiki/apps/blogroll/models.py 2007-04-02 17:29:06 UTC (rev 22) @@ -4,7 +4,7 @@ class Blog(models.Model): name = models.CharField(maxlength=50) - url = models.URLField() + url = models.URLField(verify_exists=False) description = models.CharField(maxlength=100, blank=True) def __str__(self): Modified: trunk/cmsiki/templates/base.html =================================================================== --- trunk/cmsiki/templates/base.html 2007-04-02 17:20:59 UTC (rev 21) +++ trunk/cmsiki/templates/base.html 2007-04-02 17:29:06 UTC (rev 22) @@ -31,7 +31,7 @@ <h1><a href="http://localhost:8000/" title="test">cmsiki</a></h1> </div> - <div id="syndication"> +<!-- <div id="syndication"> <a href="http://localhost/wordpress/?feed=rss2" title="Syndicate this site using RSS" class="feed">Entries <abbr title="Really Simple @@ -45,6 +45,7 @@ </div> </form> </div> +--> </div> <div class="pagewrapper"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |