Metadata-Version: 1.1
Name: ipark.ereporter
Version: 0.3
Summary: Tipfy extension to simplify projects beta test, it simply send all exceptions traceback via email to application administrators
Home-page: http://code.google.com/p/iparkcode/
Author: Ilya Petrov, Mikhail Kashkin
Author-email: mk@iparkcorp.com
License: BSD
Description: 
        ipark.ereporter
        ===============
        
        Usefull tipfy extension that send developer every exeption traceback report by email. 
        Its very handy when you beta test your projects and dont sure if something is going wrong.
        
        Setup
        -----
        
        To use this extension in your application follow few simple steps:
        
        * Add to buildout.cfg egg import
        * Modify config.py and add folowing lines::
        
          # List of installed apps
          config['tipfy'] = {
            'apps_installed': [
              ...
              'ipark.ereporter',
              ...
             ]
           }
          #
          config['ipark.ereporter'] = {
             'email' : 'XXX@domain.com', # Use developer's email as it is free to send 
          }
        
        Changes
        =======
        
        0.3: config variables path was trimmed, use ipark.ereporter instead of ipark.ereporter.ereporter
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
