Metadata-Version: 2.1
Name: zope.app.i18nfile
Version: 3.4.1
Summary: I18n File and Image -- Zope 3 Content Components
Home-page: http://cheeseshop.python.org/pypi/zope.app.i18nfile
Author: Zope Corporation and Contributors
Author-email: zope3-dev@zope.org
License: ZPL 2.1
Description: This package provides an extension to the File and Image content components
        for Zope 3, allowing the content to be localized.
        
        
        Detailed Dcoumentation
        ----------------------
        
        
        ==============
        I18nFile tests
        ==============
        
        First, let's create an I18nFile instance:
        
          >>> print http(r"""
          ... POST /@@contents.html HTTP/1.1
          ... Authorization: Basic mgr:mgrpw
          ... """, form={"type_name": "BrowserAdd__zope.app.i18nfile.i18nfile.I18nFile",
          ...            "new_value": "i18nfile"})
          HTTP/1.1 303 See Other
          ...
        
        Then add some sample data for default (en) language:
        
          >>> print http(r"""
          ... POST /i18nfile/edit.html HTTP/1.1
          ... Authorization: Basic mgr:mgrpw
          ... """, form={"contentType": "text/plain",
          ...            "defaultLanguage": "en",
          ...            "language": "en",
          ...            "newLanguage": "",
          ...            "data": "English",
          ...            "edit": "Save"})
          HTTP/1.1 303 See Other
          ...
        
        Ok, now we can view the data in the edit form:
        
          >>> print http(r"""
          ... GET /i18nfile/editForm.html?language=en HTTP/1.1
          ... Authorization: Basic mgr:mgrpw
          ... """)
          HTTP/1.1 200 OK
          ...
                  <textarea ...>English</textarea>
          ...
        
        and as file content:
        
          >>> print http(r"""
          ... GET /i18nfile/index.html HTTP/1.1
          ... Authorization: Basic mgr:mgrpw
          ... """)
          HTTP/1.1 200 OK
          ...
          English
        
        Let's add new (russian) language:
        
          >>> print http(r"""
          ... POST /i18nfile/edit.html HTTP/1.1
          ... Authorization: Basic mgr:mgrpw
          ... """, form={"contentType": "text/plain",
          ...            "defaultLanguage": "en",
          ...            "language": "en",
          ...            "addLanguage": "Add new language",
          ...            "newLanguage": "ru",
          ...            "data": "English"})
          HTTP/1.1 303 See Other
          ...
        
        and add some sample data for russian (ru) language:
        
          >>> print http(r"""
          ... POST /i18nfile/edit.html HTTP/1.1
          ... Authorization: Basic mgr:mgrpw
          ... """, form={"contentType": "text/plain",
          ...            "defaultLanguage": "en",
          ...            "language": "ru",
          ...            "newLanguage": "",
          ...            "data": "Russian",
          ...            "edit": "Save"})
          HTTP/1.1 303 See Other
          ...
        
        Then we can view sample data for russain language in the edit form:
        
          >>> print http(r"""
          ... GET /i18nfile/editForm.html?language=ru HTTP/1.1
          ... Authorization: Basic mgr:mgrpw
          ... """)
          HTTP/1.1 200 OK
          ...
                  <textarea ...>Russian</textarea>
          ...
        
        and if our preferred language is russian as file content:
        
          >>> print http(r"""
          ... GET /i18nfile/index.html HTTP/1.1
          ... Authorization: Basic mgr:mgrpw
          ... Accept-Language: ru,en
          ... """)
          HTTP/1.1 200 OK
          ...
          Russian
        
        
        ===============
        I18nImage tests
        ===============
        
        First, let's create an I18nImage instance:
        
          >>> print http(r"""
          ... POST /@@contents.html HTTP/1.1
          ... Authorization: Basic mgr:mgrpw
          ... """, form={
          ...      "type_name": "BrowserAdd__zope.app.i18nfile.i18nimage.I18nImage",
          ...      "new_value": "i18nimage"})
          HTTP/1.1 303 See Other
          ...
        
        Then add some sample image data for default (en) language:
        
          >>> print http(r"""
          ... POST /i18nimage/uploadAction.html HTTP/1.1
          ... Authorization: Basic mgr:mgrpw
          ... """, form={"contentType": "image/gif",
          ...            "defaultLanguage": "en",
          ...            "language": "en",
          ...            "newLanguage": "",
          ...            "data": 'GIF89aENEN',
          ...            "edit": "Save"})
          HTTP/1.1 303 See Other
          ...
        
        Ok, now we can view the image size in the edit form:
        
          >>> print http(r"""
          ... GET /i18nimage/upload.html?language=en HTTP/1.1
          ... Authorization: Basic mgr:mgrpw
          ... """)
          HTTP/1.1 200 OK
          ...
          ...>1 KB 20037x20037</...
          ...
        
        and the image data as file content:
        
          >>> print http(r"""
          ... GET /i18nimage/ HTTP/1.1
          ... Authorization: Basic mgr:mgrpw
          ... """)
          HTTP/1.1 200 OK
          Content-Length: 10
          Content-Type: image/gif
          <BLANKLINE>
          GIF89aENEN
        
        Let's add new (russian) language:
        
          >>> print http(r"""
          ... POST /i18nimage/uploadAction.html HTTP/1.1
          ... Authorization: Basic mgr:mgrpw
          ... """, form={"contentType": "image/gif",
          ...            "defaultLanguage": "en",
          ...            "language": "en",
          ...            "addLanguage": "Add new language",
          ...            "newLanguage": "ru",
          ...            "data": ""})
          HTTP/1.1 303 See Other
          ...
        
        and add some sample image data for russian (ru) language:
        
          >>> print http(r"""
          ... POST /i18nimage/uploadAction.html HTTP/1.1
          ... Authorization: Basic mgr:mgrpw
          ... """, form={"contentType": "image/gif",
          ...            "defaultLanguage": "en",
          ...            "language": "ru",
          ...            "newLanguage": "",
          ...            "data": "GIF89aRURU",
          ...            "edit": "Save"})
          HTTP/1.1 303 See Other
          ...
        
        Then we can view the size of sample image for russain language in
        the edit form:
        
          >>> print http(r"""
          ... GET /i18nimage/upload.html?language=ru HTTP/1.1
          ... Authorization: Basic mgr:mgrpw
          ... """)
          HTTP/1.1 200 OK
          ...
          ...>1 KB 21842x21842</...
          ...
        
        and if our preferred language is russian we can view the image as file content:
        
          >>> print http(r"""
          ... GET /i18nimage/ HTTP/1.1
          ... Authorization: Basic mgr:mgrpw
          ... Accept-Language: ru,en
          ... """)
          HTTP/1.1 200 OK
          Content-Length: 10
          Content-Type: image/gif
          <BLANKLINE>
          GIF89aRURU
        
        
        =======
        CHANGES
        =======
        
        3.4.1 (2007-10-31)
        ------------------
        
        - Resolve ``ZopeSecurityPolicy`` deprecation warning.
        
        
        3.4.0 (2007-10-24)
        ------------------
        
        - Initial release independent of the main Zope tree.
        
Keywords: zope3 i18n l10n file image content
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Programming Language :: Python
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Framework :: Zope3
Provides-Extra: test
