Dirk Alders 2adbd0da7d README filled with helpfull information | 3 veckor sedan | |
---|---|---|
migrations | 4 år sedan | |
templates/mycreole | 3 år sedan | |
templatetags | 4 år sedan | |
.gitignore | 4 år sedan | |
LICENSE | 4 år sedan | |
README.md | 3 veckor sedan | |
__init__.py | 3 veckor sedan | |
admin.py | 4 år sedan | |
apps.py | 4 år sedan | |
context.py | 3 veckor sedan | |
help.py | 3 veckor sedan | |
models.py | 4 år sedan | |
tests.py | 4 år sedan | |
urls.py | 3 år sedan | |
views.py | 3 år sedan |
With the django library mycreole, you are abel to use the creole language to create html output in your django application.
Clone the library in your django application.
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',
}
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)
TBD
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,
}