Django Library Mycreole
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
Dirk Alders 2adbd0da7d README filled with helpfull information 3 nedēļas atpakaļ
migrations Initial mycreole implementation 4 gadus atpakaļ
templates/mycreole Initial Attachment Management 3 gadus atpakaļ
templatetags Initial mycreole implementation 4 gadus atpakaļ
.gitignore Initial commit 4 gadus atpakaļ
LICENSE Initial commit 4 gadus atpakaļ
README.md README filled with helpfull information 3 nedēļas atpakaļ
__init__.py Added the possibility to pass a macro filter to the render methods 3 nedēļas atpakaļ
admin.py Initial mycreole implementation 4 gadus atpakaļ
apps.py Initial mycreole implementation 4 gadus atpakaļ
context.py Make mycreole independent from patt 3 nedēļas atpakaļ
help.py Make mycreole independent from patt 3 nedēļas atpakaļ
models.py Initial mycreole implementation 4 gadus atpakaļ
tests.py Initial mycreole implementation 4 gadus atpakaļ
urls.py Initial Attachment Management 3 gadus atpakaļ
views.py Initial Attachment Management 3 gadus atpakaļ

README.md

mycreole

With the django library mycreole, you are abel to use the creole language to create html output in your django application.

Integration

Clone the library in your django application.

Configurations in your settings.py

Add the following line to the list INSTALLED_APPS:

'mycreole.apps.MycreoleConfig',

Define the folder, where the attachments are stored with the following line:

MYCREOLE_ROOT = os.path.join(BASE_DIR, 'data', 'pages')

Define the methods to grant or deny the access to the attachments by:

MYCREOLE_ATTACHMENT_ACCESS = {
    'read': 'pages.access.read_attachment',
    'modify': 'pages.access.modify_attachment',
}

Define the methods to extend the navigationbar and menubar by this statement:

MYCREOLE_BAR = {
    'navibar': 'pages.context.navigationbar',
    'menubar': 'pages.context.menubar',
}

Usage

Creole help page

In this example, you see a method in views.py which returns a creole help page:

from django.conf import settings
from django.http import HttpResponse
import mycreole
import os


def help_on_creole(request):
    attachment_path = os.path.join(settings.MYCREOLE_ROOT, 'creole_help_page')
    html = mycreole.render(request, creole.help.MYCREOLE_HELP, self.attachment_path)

Usage of next_achor

TBD

Usage of macros

You can give a dictonary as macros parameter to the render method, to define your own macros. Here an example of such a dict: ``` macros={

'mymacro': method_to_be_called,

}