src/pyams_content.egg-info/PKG-INFO
changeset 340 de5a2a9fdf22
parent 317 578c0df290b5
child 346 9e4ae14bdf3a
equal deleted inserted replaced
339:50c73e42883a 340:de5a2a9fdf22
     1 Metadata-Version: 1.1
     1 Metadata-Version: 1.1
     2 Name: pyams-content
     2 Name: pyams-content
     3 Version: 0.1.9
     3 Version: 0.1.10
     4 Summary: PyAMS base content interfaces and classes
     4 Summary: PyAMS base content interfaces and classes
     5 Home-page: http://hg.ztfy.org/pyams/pyams_content
     5 Home-page: http://hg.ztfy.org/pyams/pyams_content
     6 Author: Thierry Florac
     6 Author: Thierry Florac
     7 Author-email: tflorac@ulthar.net
     7 Author-email: tflorac@ulthar.net
     8 License: ZPL
     8 License: ZPL
       
     9 Description-Content-Type: UNKNOWN
     9 Description: 
    10 Description: 
       
    11         PyAMS content configuration directives
       
    12         ======================================
       
    13         
       
    14         # Default application factory
       
    15         pyams.application_factory = pyams_utils.site.BaseSiteRoot
       
    16         
       
    17         # Default application name
       
    18         pyams.application_name = pyams
       
    19         
       
    20         # PyAMS mailer
       
    21         pyams_mail.mailers = onf.
       
    22         onf.name = onf
       
    23         onf.host = smtp.onf.fr
       
    24         onf.queue_path = /var/local/env/pyams/var/mail
       
    25         
       
    26         # PyAMS ØMQ TCP handlers
       
    27         pyams_scheduler.tcp_handler = 127.0.0.1:5555
       
    28         pyams_media.tcp_handler = 127.0.0.1:5556
       
    29         pyams_content.es.tcp_handler = 127.0.0.1:5557
       
    30         pyams_notify.tcp_handler = 127.0.0.1:8081
       
    31         pyams_notify_ws.cache_server = redis://127.0.0.1:6379
       
    32         
       
    33         
       
    34         # PyAMS content settings
       
    35         
       
    36         # Supported lexicon languages
       
    37         pyams_content.lexicon.languages = en:english fr:french
       
    38         
       
    39         # Shared tools manager name
       
    40         pyams_content.config.tools_name = tools
       
    41         
       
    42         # Shared tools configuration
       
    43         # All tools are created by the "pyams_upgrade" application script.
       
    44         # For each tool, two settings are available:
       
    45         # - a tool factory name, which is the complete class name of the tool manager class; PyAMS provides a default factory
       
    46         #   for each tool, that you can override to provide your own custom implementation; this setting can also be set to
       
    47         #   "NONE" or "--" if you don't want a given tool to be created.
       
    48         # - a tool name
       
    49         
       
    50         # News shared tool configuration
       
    51         pyams_content.config.news_tool_factory = pyams_content.shared.news.manager.NewsManager
       
    52         pyams_content.config.news_tool_name = news
       
    53         
       
    54         # Forms shared tool configuration
       
    55         pyams_content.config.forms_tool_factory = pyams_content.shared.form.manager.FormsManager
       
    56         pyams_content.config.forms_tool_name = forms
       
    57         
       
    58         # Views shared tool configuration
       
    59         pyams_content.config.views_tool_factory = pyams_content.shared.view.manager.ViewsManager
       
    60         pyams_content.config.views_tool_name = views
       
    61         
       
    62         # Image maps tool configuration
       
    63         pyams_content.config.imagemaps_tool_factory = pyams_content.shared.imagemap.manager.ImageMapsManager
       
    64         pyams_content.config.imagemaps_tool_name = imagemaps
       
    65         
       
    66         # Blog manager factory
       
    67         pyams_content.config.blog_factory = onf_website.shared.blog.manager.BlogManager
       
    68         
       
    69         # Site manager factory
       
    70         pyams_content.config.site_factory = onf_website.shared.site.manager.SiteManager
       
    71         
    10         
    72         
    11         History
    73         History
    12         =======
    74         =======
       
    75         
       
    76         0.1.10
       
    77         ------
       
    78          - added missing sequence target attributes to blog manager class
       
    79          - added workflow adapters to content links
       
    80          - updated review management interface
       
    81          - updated workflow notifications messages
       
    82          - updated site dashboard columns
       
    83          - moved "pyams_content.zmi" package to "pyams_content.skin.zmi"
    13         
    84         
    14         0.1.9
    85         0.1.9
    15         -----
    86         -----
    16          - added site management features
    87          - added site management features
    17          - added "pyams_content.features" module to include extra-content features like content check,
    88          - added "pyams_content.features" module to include extra-content features like content check,