├── README.txt ├── book ├── Makefile ├── _templates │ └── page.html ├── api.rst ├── articles │ └── watching_performance.rst ├── audience.rst ├── conf.py ├── css │ └── zodbbook.css ├── images │ ├── turtle_screenshot.png │ └── zodb_application_interaction.png ├── index.rst ├── installing.rst ├── introduction.rst ├── make.bat ├── notes.rst ├── outline.rst ├── transactions.rst └── working.rst ├── bootstrap.py ├── code ├── conflict │ └── birdie │ │ ├── CHANGES.txt │ │ ├── MANIFEST.in │ │ ├── README.txt │ │ ├── TODO.txt │ │ ├── birdie │ │ ├── __init__.py │ │ ├── models.py │ │ ├── static │ │ │ ├── avatar.jpg │ │ │ ├── birdie.js │ │ │ ├── favicon.ico │ │ │ ├── footerbg.png │ │ │ ├── headerbg.png │ │ │ ├── ie6.css │ │ │ ├── jquery.timeago.js │ │ │ ├── jstemplate.js │ │ │ ├── middlebg.png │ │ │ ├── pylons.css │ │ │ ├── pyramid-small.png │ │ │ ├── pyramid.png │ │ │ └── transparent.gif │ │ ├── templates │ │ │ ├── birdie.pt │ │ │ ├── join.pt │ │ │ └── login.pt │ │ ├── tests.py │ │ └── views.py │ │ ├── development.ini │ │ ├── production.ini │ │ ├── setup.cfg │ │ └── setup.py ├── installing │ ├── turtle_paint.py │ └── turtle_paint_zodb.py ├── timetrax.py ├── transaction │ ├── pickledm.py │ ├── sqlitedm.py │ ├── testdm.py │ ├── todo │ │ ├── CHANGES.txt │ │ ├── MANIFEST.in │ │ ├── README.txt │ │ ├── development.ini │ │ ├── production.ini │ │ ├── setup.cfg │ │ ├── setup.py │ │ └── todo │ │ │ ├── __init__.py │ │ │ ├── pickledm.py │ │ │ ├── resources.py │ │ │ ├── templates │ │ │ └── todo.pt │ │ │ ├── tests.py │ │ │ └── views.py │ └── todo_single_file │ │ ├── pickledm.py │ │ ├── todo.pt │ │ └── todo.py └── working │ ├── timetrax.py │ └── timetrax_zodb.py ├── requirements.txt └── translations └── ja └── book ├── _templates └── page.html ├── articles └── watching_performance.rst ├── audience.rst ├── css └── zodbbook.css ├── images ├── turtle_screenshot.png └── zodb_application_interaction.png ├── index.rst ├── installing.rst ├── introduction.rst ├── notes.rst ├── outline.rst ├── transactions.rst └── working.rst /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/README.txt -------------------------------------------------------------------------------- /book/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/book/Makefile -------------------------------------------------------------------------------- /book/_templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/book/_templates/page.html -------------------------------------------------------------------------------- /book/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/book/api.rst -------------------------------------------------------------------------------- /book/articles/watching_performance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/book/articles/watching_performance.rst -------------------------------------------------------------------------------- /book/audience.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/book/audience.rst -------------------------------------------------------------------------------- /book/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/book/conf.py -------------------------------------------------------------------------------- /book/css/zodbbook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/book/css/zodbbook.css -------------------------------------------------------------------------------- /book/images/turtle_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/book/images/turtle_screenshot.png -------------------------------------------------------------------------------- /book/images/zodb_application_interaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/book/images/zodb_application_interaction.png -------------------------------------------------------------------------------- /book/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/book/index.rst -------------------------------------------------------------------------------- /book/installing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/book/installing.rst -------------------------------------------------------------------------------- /book/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/book/introduction.rst -------------------------------------------------------------------------------- /book/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/book/make.bat -------------------------------------------------------------------------------- /book/notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/book/notes.rst -------------------------------------------------------------------------------- /book/outline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/book/outline.rst -------------------------------------------------------------------------------- /book/transactions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/book/transactions.rst -------------------------------------------------------------------------------- /book/working.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/book/working.rst -------------------------------------------------------------------------------- /bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/bootstrap.py -------------------------------------------------------------------------------- /code/conflict/birdie/CHANGES.txt: -------------------------------------------------------------------------------- 1 | 0.9 2 | --- 3 | 4 | - Initial version 5 | -------------------------------------------------------------------------------- /code/conflict/birdie/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/MANIFEST.in -------------------------------------------------------------------------------- /code/conflict/birdie/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/README.txt -------------------------------------------------------------------------------- /code/conflict/birdie/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/TODO.txt -------------------------------------------------------------------------------- /code/conflict/birdie/birdie/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/birdie/__init__.py -------------------------------------------------------------------------------- /code/conflict/birdie/birdie/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/birdie/models.py -------------------------------------------------------------------------------- /code/conflict/birdie/birdie/static/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/birdie/static/avatar.jpg -------------------------------------------------------------------------------- /code/conflict/birdie/birdie/static/birdie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/birdie/static/birdie.js -------------------------------------------------------------------------------- /code/conflict/birdie/birdie/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/birdie/static/favicon.ico -------------------------------------------------------------------------------- /code/conflict/birdie/birdie/static/footerbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/birdie/static/footerbg.png -------------------------------------------------------------------------------- /code/conflict/birdie/birdie/static/headerbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/birdie/static/headerbg.png -------------------------------------------------------------------------------- /code/conflict/birdie/birdie/static/ie6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/birdie/static/ie6.css -------------------------------------------------------------------------------- /code/conflict/birdie/birdie/static/jquery.timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/birdie/static/jquery.timeago.js -------------------------------------------------------------------------------- /code/conflict/birdie/birdie/static/jstemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/birdie/static/jstemplate.js -------------------------------------------------------------------------------- /code/conflict/birdie/birdie/static/middlebg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/birdie/static/middlebg.png -------------------------------------------------------------------------------- /code/conflict/birdie/birdie/static/pylons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/birdie/static/pylons.css -------------------------------------------------------------------------------- /code/conflict/birdie/birdie/static/pyramid-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/birdie/static/pyramid-small.png -------------------------------------------------------------------------------- /code/conflict/birdie/birdie/static/pyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/birdie/static/pyramid.png -------------------------------------------------------------------------------- /code/conflict/birdie/birdie/static/transparent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/birdie/static/transparent.gif -------------------------------------------------------------------------------- /code/conflict/birdie/birdie/templates/birdie.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/birdie/templates/birdie.pt -------------------------------------------------------------------------------- /code/conflict/birdie/birdie/templates/join.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/birdie/templates/join.pt -------------------------------------------------------------------------------- /code/conflict/birdie/birdie/templates/login.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/birdie/templates/login.pt -------------------------------------------------------------------------------- /code/conflict/birdie/birdie/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/birdie/tests.py -------------------------------------------------------------------------------- /code/conflict/birdie/birdie/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/birdie/views.py -------------------------------------------------------------------------------- /code/conflict/birdie/development.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/development.ini -------------------------------------------------------------------------------- /code/conflict/birdie/production.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/production.ini -------------------------------------------------------------------------------- /code/conflict/birdie/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/setup.cfg -------------------------------------------------------------------------------- /code/conflict/birdie/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/conflict/birdie/setup.py -------------------------------------------------------------------------------- /code/installing/turtle_paint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/installing/turtle_paint.py -------------------------------------------------------------------------------- /code/installing/turtle_paint_zodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/installing/turtle_paint_zodb.py -------------------------------------------------------------------------------- /code/timetrax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/timetrax.py -------------------------------------------------------------------------------- /code/transaction/pickledm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/transaction/pickledm.py -------------------------------------------------------------------------------- /code/transaction/sqlitedm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/transaction/sqlitedm.py -------------------------------------------------------------------------------- /code/transaction/testdm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/transaction/testdm.py -------------------------------------------------------------------------------- /code/transaction/todo/CHANGES.txt: -------------------------------------------------------------------------------- 1 | 0.0 2 | --- 3 | 4 | - Initial version 5 | -------------------------------------------------------------------------------- /code/transaction/todo/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/transaction/todo/MANIFEST.in -------------------------------------------------------------------------------- /code/transaction/todo/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/transaction/todo/README.txt -------------------------------------------------------------------------------- /code/transaction/todo/development.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/transaction/todo/development.ini -------------------------------------------------------------------------------- /code/transaction/todo/production.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/transaction/todo/production.ini -------------------------------------------------------------------------------- /code/transaction/todo/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/transaction/todo/setup.cfg -------------------------------------------------------------------------------- /code/transaction/todo/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/transaction/todo/setup.py -------------------------------------------------------------------------------- /code/transaction/todo/todo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/transaction/todo/todo/__init__.py -------------------------------------------------------------------------------- /code/transaction/todo/todo/pickledm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/transaction/todo/todo/pickledm.py -------------------------------------------------------------------------------- /code/transaction/todo/todo/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/transaction/todo/todo/resources.py -------------------------------------------------------------------------------- /code/transaction/todo/todo/templates/todo.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/transaction/todo/todo/templates/todo.pt -------------------------------------------------------------------------------- /code/transaction/todo/todo/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/transaction/todo/todo/tests.py -------------------------------------------------------------------------------- /code/transaction/todo/todo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/transaction/todo/todo/views.py -------------------------------------------------------------------------------- /code/transaction/todo_single_file/pickledm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/transaction/todo_single_file/pickledm.py -------------------------------------------------------------------------------- /code/transaction/todo_single_file/todo.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/transaction/todo_single_file/todo.pt -------------------------------------------------------------------------------- /code/transaction/todo_single_file/todo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/transaction/todo_single_file/todo.py -------------------------------------------------------------------------------- /code/working/timetrax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/working/timetrax.py -------------------------------------------------------------------------------- /code/working/timetrax_zodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/code/working/timetrax_zodb.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | ZODB3 2 | repoze.sphinx.autointerface 3 | -------------------------------------------------------------------------------- /translations/ja/book/_templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/translations/ja/book/_templates/page.html -------------------------------------------------------------------------------- /translations/ja/book/articles/watching_performance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/translations/ja/book/articles/watching_performance.rst -------------------------------------------------------------------------------- /translations/ja/book/audience.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/translations/ja/book/audience.rst -------------------------------------------------------------------------------- /translations/ja/book/css/zodbbook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/translations/ja/book/css/zodbbook.css -------------------------------------------------------------------------------- /translations/ja/book/images/turtle_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/translations/ja/book/images/turtle_screenshot.png -------------------------------------------------------------------------------- /translations/ja/book/images/zodb_application_interaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/translations/ja/book/images/zodb_application_interaction.png -------------------------------------------------------------------------------- /translations/ja/book/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/translations/ja/book/index.rst -------------------------------------------------------------------------------- /translations/ja/book/installing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/translations/ja/book/installing.rst -------------------------------------------------------------------------------- /translations/ja/book/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/translations/ja/book/introduction.rst -------------------------------------------------------------------------------- /translations/ja/book/notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/translations/ja/book/notes.rst -------------------------------------------------------------------------------- /translations/ja/book/outline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/translations/ja/book/outline.rst -------------------------------------------------------------------------------- /translations/ja/book/transactions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/translations/ja/book/transactions.rst -------------------------------------------------------------------------------- /translations/ja/book/working.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cguardia/ZODB-Documentation/HEAD/translations/ja/book/working.rst --------------------------------------------------------------------------------