Metadata-Version: 1.0
Name: ClueReleaseManager.paste
Version: 1.1
Summary: Yet another WSGI Paste factory for paste and ClueReleaseManager sponsorised by Makina Corpus
Home-page: http://git.minitage.org/git/others/ClueReleaseManager.paste
Author: Mathieu Pasquet
Author-email: kiorky@cryptelium.net
License: BSD
Description: =============
        Introduction
        =============
        
        Yet another pastes factories for ClueReleaseManager
        
        .. contents::
        
        
        Makina Corpus sponsorised software
        ======================================
        |makinacom|_
        
        * `Planet Makina Corpus <http://www.makina-corpus.org>`_
        * `Contact us <mailto:python@makina-corpus.org>`_
        
          .. |makinacom| image:: http://depot.makina-corpus.org/public/logo.gif
          .. _makinacom:  http://www.makina-corpus.com
        
        
        
        What is ClueReleaseManager.paste
        =======================================
        
        It is just another wsgi wrapper to use a ClueReleaseManager application
        into a paster configuration
        
        How to use ClueReleaseManager.paste
        ==========================================
        
        
        Calling the App
        ----------------
        
        ::
        
            [composite:main]
            use = egg:Paste#urlmap
            / = foo
            [app:foo]
            use=egg:ClueReleaseManager.paste
            basefiledir=%(here)s/test_files
            baseurl=http://localhost:8096
            self_register=true
            backup_pypis=http://localhost:8096
        
        Configuration options
        ----------------------------
        
         * baseurl: baseurl of the application [optionnal] [default: localhost]
         * basefiledir: where to store distributions [optionnal] [default: files]
         * self_register: enable auto registration [optionnal]  [default:false]
         * backup_pypis: line separted pypi backup servers [optionnal]  [default:[]]
         * sqluri: SQLAlchemy database URI [optionnal] [default: sqlite:///cluerelmgr.db']
        
        
        
        
        DOCTESTS
        ================
        
        ClueReleaseManager factory
        -----------------------------------------
        
        Checking that everything is in place::
        
            >>> resp = app.get('/')
            >>> 'href="http://localhost:8096/login"' in resp.body
            True
            >>> os.path.exists(os.path.join(here_dir, 'db.db'))
            True
        
        
        Changelog
        =========
        
        
        1.0 
        ----------------
        * Initial release
        
        
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
