Author: eduardo.padoan
Date: Sat Oct 4 10:19:22 2008
New Revision: 178
Modified:
trunk/ (props changed)
trunk/docs/api.txt
trunk/wiki/templates/wiki/view.html
Log:
Fixed a url on a example template and added some details to the docs.
Modified: trunk/docs/api.txt
==============================================================================
--- trunk/docs/api.txt (original)
+++ trunk/docs/api.txt Sat Oct 4 10:19:22 2008
@@ -61,7 +61,11 @@
-------------
Static files urls. Use if you want to test the example templates.
+Your urlconf needs to include this line::
+ (r'^', include('wiki.static_urls')),
+
+Also remember to set `STATIC_MEDIA_PATH` to
`"/path/to/wikiapp/wiki/media/"`.
Article Groups
==============
@@ -93,3 +97,4 @@
Wikiapp have some template tags and filters to simplify working with
multiple
markup languages, WikiWords and to keep templates from violating the DRY
(dont repeat yourself) principle.
+The tags depends on `django.contrib.markup`.
Modified: trunk/wiki/templates/wiki/view.html
==============================================================================
--- trunk/wiki/templates/wiki/view.html (original)
+++ trunk/wiki/templates/wiki/view.html Sat Oct 4 10:19:22 2008
@@ -22,7 +22,7 @@
{% if article.id %}
<a href="{% url wiki_edit article.title %}">{% trans "Edit this
article" %}</a>
|
- <a href="{% url wiki_article_history article.title,1 %}">{%
trans "Editing history" %}</a>
+ <a href="{% url wiki_article_history article.title %}">{%
trans "Editing history" %}</a>
{% else %}
<a href="{% url wiki_edit article.title %}">{% trans "Create
this
article" %}</a>
{% endif %}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pinax-updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/pinax-updates?hl=en
-~----------~----~----~----~------~----~------~--~---