├── LICENSE ├── MANIFEST.in ├── README.rst ├── doc ├── Makefile ├── _static │ └── favicon.ico ├── _templates │ └── sidebar-index.html ├── _theme │ └── macaron │ │ ├── static │ │ ├── contents.png │ │ ├── macaron.css │ │ ├── macaron_logo.png │ │ ├── macaron_logo.psd │ │ └── navigation.png │ │ └── theme.conf ├── changes.rst ├── class │ ├── field.rst │ ├── macaron.rst │ ├── model.rst │ └── queryset.rst ├── conf.py ├── index.rst ├── make.bat ├── models.rst ├── module.rst ├── overview.rst ├── tutorial.rst └── webapp.rst ├── examples └── bottle │ ├── mybooks.py │ └── views │ └── index.html.tpl ├── macaron.py ├── setup.py └── test ├── before_0.4.0-pre ├── test_basic.py ├── test_class_attr.py ├── test_convert.py ├── test_create.py ├── test_fields.py ├── test_history.py └── testall.py ├── models.py ├── test_attributes.py ├── test_basic.py ├── test_complex_selection.py ├── test_custom_field.py ├── test_history.py ├── test_matching_field.py ├── test_query.py └── testall.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/README.rst -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/doc/_static/favicon.ico -------------------------------------------------------------------------------- /doc/_templates/sidebar-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/doc/_templates/sidebar-index.html -------------------------------------------------------------------------------- /doc/_theme/macaron/static/contents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/doc/_theme/macaron/static/contents.png -------------------------------------------------------------------------------- /doc/_theme/macaron/static/macaron.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/doc/_theme/macaron/static/macaron.css -------------------------------------------------------------------------------- /doc/_theme/macaron/static/macaron_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/doc/_theme/macaron/static/macaron_logo.png -------------------------------------------------------------------------------- /doc/_theme/macaron/static/macaron_logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/doc/_theme/macaron/static/macaron_logo.psd -------------------------------------------------------------------------------- /doc/_theme/macaron/static/navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/doc/_theme/macaron/static/navigation.png -------------------------------------------------------------------------------- /doc/_theme/macaron/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/doc/_theme/macaron/theme.conf -------------------------------------------------------------------------------- /doc/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/doc/changes.rst -------------------------------------------------------------------------------- /doc/class/field.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/doc/class/field.rst -------------------------------------------------------------------------------- /doc/class/macaron.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/doc/class/macaron.rst -------------------------------------------------------------------------------- /doc/class/model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/doc/class/model.rst -------------------------------------------------------------------------------- /doc/class/queryset.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/doc/class/queryset.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/doc/models.rst -------------------------------------------------------------------------------- /doc/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/doc/module.rst -------------------------------------------------------------------------------- /doc/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/doc/overview.rst -------------------------------------------------------------------------------- /doc/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/doc/tutorial.rst -------------------------------------------------------------------------------- /doc/webapp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/doc/webapp.rst -------------------------------------------------------------------------------- /examples/bottle/mybooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/examples/bottle/mybooks.py -------------------------------------------------------------------------------- /examples/bottle/views/index.html.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/examples/bottle/views/index.html.tpl -------------------------------------------------------------------------------- /macaron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/macaron.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/setup.py -------------------------------------------------------------------------------- /test/before_0.4.0-pre/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/test/before_0.4.0-pre/test_basic.py -------------------------------------------------------------------------------- /test/before_0.4.0-pre/test_class_attr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/test/before_0.4.0-pre/test_class_attr.py -------------------------------------------------------------------------------- /test/before_0.4.0-pre/test_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/test/before_0.4.0-pre/test_convert.py -------------------------------------------------------------------------------- /test/before_0.4.0-pre/test_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/test/before_0.4.0-pre/test_create.py -------------------------------------------------------------------------------- /test/before_0.4.0-pre/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/test/before_0.4.0-pre/test_fields.py -------------------------------------------------------------------------------- /test/before_0.4.0-pre/test_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/test/before_0.4.0-pre/test_history.py -------------------------------------------------------------------------------- /test/before_0.4.0-pre/testall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/test/before_0.4.0-pre/testall.py -------------------------------------------------------------------------------- /test/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/test/models.py -------------------------------------------------------------------------------- /test/test_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/test/test_attributes.py -------------------------------------------------------------------------------- /test/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/test/test_basic.py -------------------------------------------------------------------------------- /test/test_complex_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/test/test_complex_selection.py -------------------------------------------------------------------------------- /test/test_custom_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/test/test_custom_field.py -------------------------------------------------------------------------------- /test/test_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/test/test_history.py -------------------------------------------------------------------------------- /test/test_matching_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/test/test_matching_field.py -------------------------------------------------------------------------------- /test/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/test/test_query.py -------------------------------------------------------------------------------- /test/testall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobrin/macaron/HEAD/test/testall.py --------------------------------------------------------------------------------