Changeset 13145
- Timestamp:
- 7 Jul 2015, 05:36:46 (9 years ago)
- Location:
- main/waeup.kofa/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/docs/source/userdocs/documents.rst
r13144 r13145 26 26 and third can be used to create multilingual static html pages on 27 27 the portal. HTML documents expect html coded text as input, REST 28 documents expect reStructuredText which is transformed into html. 28 documents expect `reStructuredText <http://docutils.sf.net/rst.html>`_ 29 which is transformed into html. 29 30 30 31 Interfaces … … 35 36 properties, i.e. attributes with a getter method only. These 36 37 properties are computed dynamically and can't be set. Only the 37 document id and the titlecan be entered on form pages or can be38 `document_id` and the `title` can be entered on form pages or can be 38 39 imported. 39 40 -
main/waeup.kofa/trunk/src/waeup/kofa/documents/batching.py
r13144 r13145 47 47 corresponds with the processor chosen. This is to avoid accidentally 48 48 wrong imports. 49 50 Document processors do not import workflow states or transitions which 51 means, all imported documents will be unpublished after batch creation. 52 In other words, publishing can't be done by import, it has do be done 53 via the UI. 49 54 """ 50 55 grok.implements(IBatchProcessor) -
main/waeup.kofa/trunk/src/waeup/kofa/documents/interfaces.py
r13144 r13145 39 39 state = Attribute('Workflow state of a document') 40 40 class_name = Attribute('Name of the document class') 41 42 41 local_roles = Attribute('List of local role names') 43 42 translated_class_name = Attribute('Translatable class name of a document')
Note: See TracChangeset for help on using the changeset viewer.