Changeset 11480


Ignore:
Timestamp:
8 Mar 2014, 06:08:04 (11 years ago)
Author:
Henrik Bettermann
Message:

Add more API docs.

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  
    44(see also: :ref:`api-schema-modules`)
    55
    6 .. automodule:: waeup.kofa.utils
     6.. automodule:: waeup.kofa.schema
    77   :members:
    88   :undoc-members:
  • main/waeup.kofa/trunk/docs/source/developerdocs/api/index.rst

    r11477 r11480  
    1818   api_async
    1919   api_authentication
     20   api_beaker
    2021   api_browser
    2122   api_catalog
     
    2425   api_fees
    2526   api_hostels
     27   api_image
    2628   api_imagestorage
    2729   api_interfaces
    2830   api_language
    2931   api_maintenance
     32   api_mandates
     33   api_meta
    3034   api_objecthistory
    3135   api_payments
     
    3337   api_reports
    3438   api_schema
     39   api_schoolgrades
     40   api_smtp
    3541   api_sourcefactory
     42   api_startup
    3643   api_students
    3744   api_university
  • main/waeup.kofa/trunk/src/waeup/kofa/image/__init__.py

    r7819 r11480  
    11"""Image file components.
    22
    3 Includings schemas, widgets and the content components.
     3Including schemas, widgets and the content components.
    44"""
    55from waeup.kofa.image.image import KofaImageFile, createKofaImageFile
  • main/waeup.kofa/trunk/src/waeup/kofa/imagestorage.py

    r10093 r11480  
    9999example we want applicant images to be stored in a different directory
    100100than student images, etc. Because the file store cannot know all
    101 details about these special tratment of certain files, it looks up
     101details about these special treatment of certain files, it looks up
    102102helpers (handlers) to provide the information it needs for really
    103103storing the files at the correct location.
  • main/waeup.kofa/trunk/src/waeup/kofa/schema/__init__.py

    r7811 r11480  
    11from waeup.kofa.schema.field import *
    22
    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.