Metadata-Version: 1.0
Name: logya
Version: 1.0
Summary: Logya is a static Web site generator written in Python designed to be easy to use and flexible.
Home-page: http://yaph.github.com/logya/
Author: Ramiro Gómez
Author-email: web@ramiro.org
License: MIT
Description: Logya is a static Web site generator written in Python designed to be easy
        to use and flexible.
        
        # Features
        * Create responsive static Web sites
        * Built-in Web server with info level logging for immediate editing feedback
        * Commands for site creation, generation, and serving
        * Automatic index generation in created folders
        * Site configuration
        
        # Requirements
        * [Python 2.7](http://python.org/)
        * [Jinja2](http://jinja.pocoo.org/)
        
        # Directory Structure
        
        ## Logya Source
        * logya       all logya source files needed for running
            * ext       extension modules
            * sites     barebone example Web sites
        * tests
        
        ## Site Source
        
        The following folders and files are recognized when generating a Web site with Logya.
        
        * content - required
        * templates - required
        * site.cfg - required
        * static - optional
        
        # Roadmap
        
        ## Version 1.1
        
        * implement scripts and styles as extensions that process multi value document header fields
        * add support for default scripts and styles in site configuration
        * add tags extension
        
        ## Version 1.2
        
        * define types of extensions, re-think index and doc
        * options to enable and or disable extensions in site configuration
        
        ## Version 1.3
        
        * RSS feed generation from indexes as extension
        * XML and HTML sitemap generation as extension
        
        ## Version 1.4
        
        * Add logya extension create name command
        * minify and concatenate CSS and JS
        
        ## Further Plans and Ideas
        
        * content snippets that are replaced when generating document
        * shared extensions .logya/ext
        * shared libraries for extensions .logya/lib
        * specify indexes in configuration?
        * make site.cfg optional?
        * Use mongodb and implement the following sub commands:
            * logya import - import documents info database, existing ones that are not older than source file modification will be kept
            * logya refresh - refresh existing deployment, update indexes and recreate updated content
            * logya generate - complete generation of deployment files
            * collections: documents, directories with references to all documents inside
            * example document:
                * filepath /index.html
                * urlpath /index/
                * title "title"
                * tags one two three
                * content "<p>page content</p>"
        
Keywords: Website Generator
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
