Projects tagged ‘dokuwiki’ and ‘python’


Jump to tag:

Projects tagged ‘dokuwiki’ and ‘python’

Filtered by Project Tags dokuwiki python

Refine results Project Tags wiki (2) django (1) xmlrpc (1) jspwiki (1) multi-backend (1) notefinder (1) tribes (1) filesystem (1) php (1) sso (1) forum (1) pim (1)

[3 total ]

1 Users

NoteFinder is an extensible PIM implemented in Python. It was firstly developed as a simple command-line interface note-taking application that used a filesystem as database and featured tagging ... [More] and search. Now it has been rewritten to be as extensible and modular as possible. Thanks to modular architecture it became possible to turn it into a full featured PIM able to store not only notes, but contacts, tasks, spreadsheets, bookmarks, web pages and any files too. Unlike in most commonly used PIMs like MS Outlook, Kontact, Evolution, Mozilla Sunbird those provide different non-integrated interfaces to access different data, everything is tightly integrated and stored in a single database so you can use common interface to search for records, list, view and edit them. [Less]
Created 12 months ago.

0 Users

Converts wiki markup from JSPWiki to DokuWiki format
Created 12 months ago.

0 Users

This project allows a fluxbb/punbb and django applications working together. Features are provided in 3 applications: punbb.authent punbb.forum punbb.avatar The punbb.authent application is a ... [More] dependencie for the 2 others applications. Featurespunbb.authentIt provides the punbb's user and group models a backend for authentication based on punbb users a middleware providing a kind of sso with a punbb application a command to import punbb users and groups into django.auth models punbb.forumIt provides the others punbb's models a command to import punbb forums into tribes (pinax) models punbb.avatarIt is based on the gravatar (pinax) application both punbb and gravatar avatars management UsageAdd the PunBBSessionMiddleware middleware after session and authentication middlewares: MIDDLEWARE_CLASSES = ( ..., 'django.contrib.sessions.middleware.SessionMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'punbb.authent.middleware.PunBBSessionMiddleware', ..., )Add this in the settings.py file: AUTHENTICATION_BACKENDS = ( 'punbb.authent.authentication.PunBBShaBackend', ) COOKIE_SEED = 'SAME VALUE AS $COOKIE_SEED IN CONFIG.PHP' PUNBB_COOKIE_NAME = 'punbb_cookie' EXTERN_USER_IS_STAFF = False # if True, PunBB users are django staff users PUNBB_TABLES_PREFIX = 'punbb_' # you should edit thisCommandsusage: python manage.py [command]import_punbb_usersimports punbb users/groups into django authentication tables. import_punbb2tribesThis command should work in the context of django project that support forums features, like pinax. It imports forums, categories, posts into django (pinax tribes) tables. The mapping is as follows: punbb pinax tribes category tribe forum tag topics topic posts threadedcomment Attention: the import_punbb_users command should be runned before. SSO use casethe user loggs in with a username/password from punBB database the user opens a session from django: a punBB session is also opened. the user opens a session from punBB: a django session is also opened. example of a sso integration with 2 php applications: dokuwiki (support authentication based on a punBB db) punBB forum (user/group data) django site (with django-punbb inside) [Less]
Created about 1 year ago.