Changeset 11480
- Timestamp:
- 8 Mar 2014, 06:08:04 (11 years ago)
- Location:
- main/waeup.kofa/trunk
- Files:
-
- 14 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/docs/source/developerdocs/api/api_schema.rst
r11477 r11480 4 4 (see also: :ref:`api-schema-modules`) 5 5 6 .. automodule:: waeup.kofa. utils6 .. automodule:: waeup.kofa.schema 7 7 :members: 8 8 :undoc-members: -
main/waeup.kofa/trunk/docs/source/developerdocs/api/index.rst
r11477 r11480 18 18 api_async 19 19 api_authentication 20 api_beaker 20 21 api_browser 21 22 api_catalog … … 24 25 api_fees 25 26 api_hostels 27 api_image 26 28 api_imagestorage 27 29 api_interfaces 28 30 api_language 29 31 api_maintenance 32 api_mandates 33 api_meta 30 34 api_objecthistory 31 35 api_payments … … 33 37 api_reports 34 38 api_schema 39 api_schoolgrades 40 api_smtp 35 41 api_sourcefactory 42 api_startup 36 43 api_students 37 44 api_university -
main/waeup.kofa/trunk/src/waeup/kofa/image/__init__.py
r7819 r11480 1 1 """Image file components. 2 2 3 Including sschemas, widgets and the content components.3 Including schemas, widgets and the content components. 4 4 """ 5 5 from waeup.kofa.image.image import KofaImageFile, createKofaImageFile -
main/waeup.kofa/trunk/src/waeup/kofa/imagestorage.py
r10093 r11480 99 99 example we want applicant images to be stored in a different directory 100 100 than student images, etc. Because the file store cannot know all 101 details about these special tr atment of certain files, it looks up101 details about these special treatment of certain files, it looks up 102 102 helpers (handlers) to provide the information it needs for really 103 103 storing the files at the correct location. -
main/waeup.kofa/trunk/src/waeup/kofa/schema/__init__.py
r7811 r11480 1 1 from waeup.kofa.schema.field import * 2 2 3 __all__ = tuple(name for name in globals() if not name.startswith('_')) 3 #__all__ = tuple(name for name in globals() if not name.startswith('_')) 4 5 __all__ = ('CustomizableErrorMsg', 6 'TextLineChoice', 7 'FormattedDate', 8 'PhoneNumber')
Note: See TracChangeset for help on using the changeset viewer.