Changes between Version 3 and Version 4 of KSSInDjango


Ignore:
Timestamp:
Oct 15, 2007, 8:54:28 AM (17 years ago)
Author:
Manuel Saelices
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • KSSInDjango

    v3 v4  
    103103
    104104{{{
     105#!python
    105106INSTALLED_APPS = (
    106107    'django.contrib.auth',
     
    116117If you want to use scriptaculous effects, or other plugins, you can put on ``KSS_EXTRA_PLUGINS`` settings parameter, like that:
    117118{{{
     119#!python
    118120KSS_EXTRA_PLUGINS = ['scriptaculous-effects']
    119121}}}
     
    123125First of all, in your root ``urls.py``, you have to put this:
    124126{{{
     127#!python
    125128urlpatterns = patterns('',
    126129    (r'^kss/', include('kss.django.urls')),
     
    151154What decides the URL is that the user goes to when he clicks in a wiki word? The answer is: KSS. In your template, you put some HTML code like this:
    152155{{{
     156#!xml
    153157This is a <span class="page-link"><a href="/wiki/view?title=WikiPage">WikiPage</a></span>.
    154158}}}
Back to Top