├── .gitignore ├── COPYING.txt ├── ChangeLog.txt ├── README.md ├── apps └── demo │ ├── __init__.py │ ├── config.n3 │ ├── log.py │ ├── manage.py │ ├── settings.py │ └── urls.py ├── doc └── images │ ├── djubby.png │ └── djubby.vsd └── lib ├── MANIFEST.in ├── djubby ├── __init__.py ├── configuration.py ├── dispatcher.py ├── http.py ├── ns.py ├── rdf.py ├── resource.py └── uri.py ├── ez_setup.py ├── setup.py └── tpl └── resource.tpl /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *~ 3 | -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikier/djubby/HEAD/COPYING.txt -------------------------------------------------------------------------------- /ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikier/djubby/HEAD/ChangeLog.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikier/djubby/HEAD/README.md -------------------------------------------------------------------------------- /apps/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/demo/config.n3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikier/djubby/HEAD/apps/demo/config.n3 -------------------------------------------------------------------------------- /apps/demo/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikier/djubby/HEAD/apps/demo/log.py -------------------------------------------------------------------------------- /apps/demo/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikier/djubby/HEAD/apps/demo/manage.py -------------------------------------------------------------------------------- /apps/demo/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikier/djubby/HEAD/apps/demo/settings.py -------------------------------------------------------------------------------- /apps/demo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikier/djubby/HEAD/apps/demo/urls.py -------------------------------------------------------------------------------- /doc/images/djubby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikier/djubby/HEAD/doc/images/djubby.png -------------------------------------------------------------------------------- /doc/images/djubby.vsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikier/djubby/HEAD/doc/images/djubby.vsd -------------------------------------------------------------------------------- /lib/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include tpl/*.tpl 2 | 3 | -------------------------------------------------------------------------------- /lib/djubby/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikier/djubby/HEAD/lib/djubby/__init__.py -------------------------------------------------------------------------------- /lib/djubby/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikier/djubby/HEAD/lib/djubby/configuration.py -------------------------------------------------------------------------------- /lib/djubby/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikier/djubby/HEAD/lib/djubby/dispatcher.py -------------------------------------------------------------------------------- /lib/djubby/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikier/djubby/HEAD/lib/djubby/http.py -------------------------------------------------------------------------------- /lib/djubby/ns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikier/djubby/HEAD/lib/djubby/ns.py -------------------------------------------------------------------------------- /lib/djubby/rdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikier/djubby/HEAD/lib/djubby/rdf.py -------------------------------------------------------------------------------- /lib/djubby/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikier/djubby/HEAD/lib/djubby/resource.py -------------------------------------------------------------------------------- /lib/djubby/uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikier/djubby/HEAD/lib/djubby/uri.py -------------------------------------------------------------------------------- /lib/ez_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikier/djubby/HEAD/lib/ez_setup.py -------------------------------------------------------------------------------- /lib/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikier/djubby/HEAD/lib/setup.py -------------------------------------------------------------------------------- /lib/tpl/resource.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wikier/djubby/HEAD/lib/tpl/resource.tpl --------------------------------------------------------------------------------