- Timestamp:
- 7 Mar 2014, 12:04:38 (11 years ago)
- Location:
- main/waeup.kofa/trunk
- Files:
-
- 9 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/docs/source/developerdocs/api/api_imagestorage.rst
r7808 r11477 1 `imagestorage` -- Storing images and other files2 ************************************************ 1 `imagestorage` -- Image and File Storage Components Module 2 ********************************************************** 3 3 4 4 .. automodule:: waeup.kofa.imagestorage -
main/waeup.kofa/trunk/docs/source/developerdocs/api/api_schema.rst
r7808 r11477 1 `schema` -- S chema Fields2 ************************* 1 `schema` -- Special Schema Fields Package 2 ***************************************** 3 3 4 4 (see also: :ref:`api-schema-modules`) -
main/waeup.kofa/trunk/docs/source/developerdocs/api/api_widgets.rst
r7808 r11477 1 `widgets` -- Widgets2 ******************** 1 `widgets` -- Special Widgets Package 2 ************************************ 3 3 4 4 (see also: :ref:`api-widgets-modules`) -
main/waeup.kofa/trunk/docs/source/developerdocs/api/index.rst
r7808 r11477 16 16 api_app 17 17 api_applicants 18 api_async 18 19 api_authentication 19 20 api_browser 20 21 api_catalog 22 api_configuration 21 23 api_datacenter 24 api_fees 22 25 api_hostels 23 26 api_imagestorage 24 27 api_interfaces 28 api_language 29 api_maintenance 30 api_objecthistory 25 31 api_payments 26 32 api_permissions 33 api_reports 27 34 api_schema 35 api_sourcefactory 36 api_students 28 37 api_university 29 38 api_userscontainer 30 39 api_utils 31 api_ students40 api_webservices 32 41 api_widgets 33 42 api_workflow -
main/waeup.kofa/trunk/docs/source/developerdocs/api/schema/api_field.rst
r7808 r11477 1 `schema.field` - Special Fields2 ******************************* 1 `schema.field` - Special Schema Fields 2 ************************************** 3 3 4 4 .. automodule:: waeup.kofa.schema.field -
main/waeup.kofa/trunk/src/waeup/kofa/app.py
r9217 r11477 98 98 @grok.subscribe(University, grok.IObjectAddedEvent) 99 99 def handle_university_added(app, event): 100 """If a university is added, a message is logged. 101 """ 100 102 app.logger.info('University `%s` added.' % getattr(app, '__name__', None)) 101 103 return -
main/waeup.kofa/trunk/src/waeup/kofa/configuration.py
r7811 r11477 17 17 ## 18 18 """ 19 Co ntainers for session configuration objects.19 Components for portal configuration. 20 20 """ 21 21 import grok
Note: See TracChangeset for help on using the changeset viewer.