├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── TODO.md ├── rice ├── ricedb ├── __init__.py ├── rice │ ├── __init__.py │ ├── error.py │ ├── gitrice.py │ ├── installer.py │ ├── package.py │ ├── query.py │ ├── render.py │ ├── util.py │ └── w3m.py └── ricemain.py ├── setup.py ├── setup ├── config └── localdatabase └── tests ├── config ├── localdatabase ├── setup.sh ├── test_installer.py └── test_query.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/ricedb/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/ricedb/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/ricedb/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/ricedb/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/ricedb/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/ricedb/HEAD/TODO.md -------------------------------------------------------------------------------- /rice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/ricedb/HEAD/rice -------------------------------------------------------------------------------- /ricedb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ricedb/rice/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ricedb/rice/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/ricedb/HEAD/ricedb/rice/error.py -------------------------------------------------------------------------------- /ricedb/rice/gitrice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/ricedb/HEAD/ricedb/rice/gitrice.py -------------------------------------------------------------------------------- /ricedb/rice/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/ricedb/HEAD/ricedb/rice/installer.py -------------------------------------------------------------------------------- /ricedb/rice/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/ricedb/HEAD/ricedb/rice/package.py -------------------------------------------------------------------------------- /ricedb/rice/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/ricedb/HEAD/ricedb/rice/query.py -------------------------------------------------------------------------------- /ricedb/rice/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/ricedb/HEAD/ricedb/rice/render.py -------------------------------------------------------------------------------- /ricedb/rice/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/ricedb/HEAD/ricedb/rice/util.py -------------------------------------------------------------------------------- /ricedb/rice/w3m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/ricedb/HEAD/ricedb/rice/w3m.py -------------------------------------------------------------------------------- /ricedb/ricemain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/ricedb/HEAD/ricedb/ricemain.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/ricedb/HEAD/setup.py -------------------------------------------------------------------------------- /setup/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/ricedb/HEAD/setup/config -------------------------------------------------------------------------------- /setup/localdatabase: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /tests/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/ricedb/HEAD/tests/config -------------------------------------------------------------------------------- /tests/localdatabase: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /tests/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/ricedb/HEAD/tests/setup.sh -------------------------------------------------------------------------------- /tests/test_installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/ricedb/HEAD/tests/test_installer.py -------------------------------------------------------------------------------- /tests/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/install-logos/ricedb/HEAD/tests/test_query.py --------------------------------------------------------------------------------