Metadata-Version: 1.1
Name: pyramid-amdjs
Version: 0.4
Summary: Pyramid JS/CSS resource management with curl.js
Home-page: https://github.com/fafhrd91/pyramid_amdjs/
Author: Nikolay Kim
Author-email: fafhrd91@gmail.com
License: MIT
Description: AmdJS for Pyramid
        =================
        
        .. image :: https://travis-ci.org/fafhrd91/pyramid_amdjs.png
          :target:  https://travis-ci.org/fafhrd91/pyramid_amdjs
        
        `pyramid_amdjs` allows to manage js and css resources as amdjs modules 
        
        .. code-block:: python
        
            config.include('pyramid_amdjs')
        
            config.add_amd_js(
                'jquery', 'pyramid_amdjs:static/lib/jquery-1.8.2.min.js',
                'JQuery Library')
        
        Then you can use jquery in your amd module
        
        .. code-block:: javascript
        
            define('my-package', ['jquery'],
        
                   function($) {
                      $('...').
                   }
            )
        
        
        Support and Documentation
        -------------------------
        
        On irc, use the freenode network and find us on channels, #ptahproject and #pyramid.
        
        Documentation can be found in `docs` directory.  You can also see it online at `http://pyramid_amdjs.readthedocs.org/  <http://pyramid_amdjs.readthedocs.org/en/latest/index.html>`_
        
        Report bugs at `pyramid_amdjs @ Github <https://github.com/fafhrd91/pyramid_amdjs/issues>`_
        
        
        License
        -------
        
        pyramid_amdjs is offered under the MIT license.
        
        =======
        CHANGES
        =======
        
        0.4 (01-15-2013)
        ----------------
        
        - Automatic mods inclusion
        
        - Static resource management
        
        - jQuery 1.9.0
        
        
        0.3.2 (01-08-2013)
        ------------------
        
        - Fixed reading resource files with non ascii content
        
        
        0.3.1 (01-07-2013)
        ------------------
        
        - Show amd module define exception (curljs)
        
        - Added helper pform js mod
        
        
        0.3 (01-03-2013)
        ----------------
        
        - Added debug mode
        
        - Added `_v` query param that allow stong caching
        
        - curl.js 0.7.3
        
        - uglify.js 1.3.4
        
        
        0.2.1 (12-18-2012)
        ------------------
        
        - Fixed: use route_url for amd ini js path
        
        
        0.2 (12-11-2012)
        ----------------
        
        - Added twitter bootstrap (2.2.2)
        
        - Allow to pass all params in options for pyramid.Object (javascript)
        
        
        0.1 (11-01-2012)
        ----------------
        
        - Initial release
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Framework :: Pyramid
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
