work in progress: task management with work items
git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@3087 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
parent
1c014857d3
commit
d4715fc882
3 changed files with 9 additions and 0 deletions
|
@ -8,6 +8,9 @@ $Id$
|
||||||
|
|
||||||
New features
|
New features
|
||||||
|
|
||||||
|
- provide basic elements for embedding FCKeditor: cybertools.ajax.fckeditor,
|
||||||
|
JavaScript call (createFCKEditorInstance()); needs separate installation
|
||||||
|
of FCKeditor in cybertools/ajax/fckeditor (except fckconfig.js)
|
||||||
- full-text indexing for OpenOffice (ODF) documents (text, spreadsheet, presentation)
|
- full-text indexing for OpenOffice (ODF) documents (text, spreadsheet, presentation)
|
||||||
- tracking reports: overview; recent changes
|
- tracking reports: overview; recent changes
|
||||||
- basic job management: a job executor view calls job managers specified
|
- basic job management: a job executor view calls job managers specified
|
||||||
|
|
|
@ -73,5 +73,6 @@
|
||||||
<include package=".process" />
|
<include package=".process" />
|
||||||
<include package=".stateful" />
|
<include package=".stateful" />
|
||||||
<include package=".tracking" />
|
<include package=".tracking" />
|
||||||
|
<include package=".work" />
|
||||||
|
|
||||||
</configure>
|
</configure>
|
||||||
|
|
|
@ -25,10 +25,14 @@ $Id$
|
||||||
from zope import component
|
from zope import component
|
||||||
from zope.app.security.interfaces import IAuthentication, PrincipalLookupError
|
from zope.app.security.interfaces import IAuthentication, PrincipalLookupError
|
||||||
from zope.cachedescriptors.property import Lazy
|
from zope.cachedescriptors.property import Lazy
|
||||||
|
from zope.app.pagetemplate import ViewPageTemplateFile
|
||||||
from zope.traversing.browser import absoluteURL
|
from zope.traversing.browser import absoluteURL
|
||||||
from zope.traversing.api import getName
|
from zope.traversing.api import getName
|
||||||
|
|
||||||
|
from cybertools.browser.action import actions
|
||||||
from cybertools.tracking.browser import TrackView
|
from cybertools.tracking.browser import TrackView
|
||||||
|
from loops.browser.action import DialogAction
|
||||||
|
from loops.browser.form import ObjectForm, EditObject
|
||||||
from loops import util
|
from loops import util
|
||||||
|
|
||||||
|
|
||||||
|
@ -90,3 +94,4 @@ class ChangeView(BaseTrackView):
|
||||||
class AccessView(BaseTrackView):
|
class AccessView(BaseTrackView):
|
||||||
|
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue