├── .gitignore ├── addons ├── crm │ └── models │ │ └── lead.py ├── pwa │ ├── apps.py │ ├── models.py │ ├── static │ │ └── pwa │ │ │ └── assets │ │ │ ├── icon.png │ │ │ └── pwa.css │ ├── templates │ │ └── pwa │ │ │ ├── forms │ │ │ └── fields │ │ │ │ ├── ChoiceField.jinja2 │ │ │ │ ├── DateField.jinja2 │ │ │ │ ├── DateTimeField.jinja2 │ │ │ │ ├── DecimalField.jinja2 │ │ │ │ ├── Field.jinja2 │ │ │ │ ├── ForeignKey.jinja2 │ │ │ │ ├── OneToManyField.jinja2 │ │ │ │ └── TelField.jinja2 │ │ │ ├── index.jinja2 │ │ │ ├── manifest.json │ │ │ ├── service-worker.js │ │ │ └── utils │ │ │ └── form-utils.jinja2 │ ├── urls.py │ ├── utils.py │ └── views.py └── stock │ └── models │ └── lot.py ├── docs └── reports │ └── index.rst ├── orun ├── __init__.py ├── __main__.py ├── api.py ├── apps │ ├── __init__.py │ ├── app.py │ ├── config.py │ ├── context.py │ ├── default_settings.py │ ├── default_urls.py │ └── registry.py ├── conf │ ├── __init__.py │ ├── app_template │ │ ├── __init__.py-tpl │ │ ├── apps.py-tpl │ │ ├── migrations │ │ │ └── __init__.py-tpl │ │ ├── models.py-tpl │ │ ├── tests.py-tpl │ │ └── views.py-tpl │ ├── global_settings.py │ ├── locale │ │ ├── __init__.py │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── ar │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── ast │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── az │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── be │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── bg │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── bn │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── br │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── bs │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── ca │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── cs │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── cy │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── da │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── de │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── de_CH │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── dsb │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── el │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── en │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── en_AU │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── en_GB │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── eo │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── es │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── es_AR │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── es_CO │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── es_MX │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── es_NI │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── es_PR │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── es_VE │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── et │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── eu │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── fa │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── fi │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── fr │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── fy │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── ga │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── gd │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── gl │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── he │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── hi │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── hr │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── hsb │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── hu │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── hy │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── ia │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── id │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── io │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── is │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── it │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── ja │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── ka │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── kab │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── kk │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── km │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── kn │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── ko │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── lb │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── lt │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── lv │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── mk │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── ml │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── mn │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── mr │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── my │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── nb │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── ne │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── nl │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── nn │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── os │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── pa │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── pl │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── pt │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── pt_BR │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── ro │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── ru │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── sk │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── sl │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── sq │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── sr │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── sr_Latn │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── sv │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── sw │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── ta │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── te │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── th │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── tr │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── tt │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── udm │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── uk │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── ur │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── vi │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ ├── zh_Hans │ │ │ ├── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ │ └── zh_Hant │ │ │ ├── LC_MESSAGES │ │ │ ├── orun.mo │ │ │ └── orun.po │ │ │ ├── __init__.py │ │ │ └── formats.py │ ├── project_template │ │ ├── manage.py-tpl │ │ └── project_name │ │ │ ├── __init__.py-tpl │ │ │ ├── settings.py-tpl │ │ │ ├── urls.py-tpl │ │ │ └── wsgi.py-tpl │ └── urls │ │ ├── __init__.py │ │ ├── i18n.py │ │ └── static.py ├── contrib │ ├── __init__.py │ ├── admin │ │ ├── __init__.py │ │ ├── actions │ │ │ ├── __init__.py │ │ │ ├── actions.py │ │ │ ├── grid.py │ │ │ ├── params.py │ │ │ ├── query.py │ │ │ └── report.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── decorators.py │ │ ├── fixtures │ │ │ ├── homepage.xml │ │ │ └── templates.xml │ │ ├── jobs.py │ │ ├── locale │ │ │ ├── es_ES │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ ├── orun.po │ │ │ │ │ ├── orunjs.mo │ │ │ │ │ └── orunjs.po │ │ │ └── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ ├── orun.po │ │ │ │ ├── orunjs.mo │ │ │ │ └── orunjs.po │ │ ├── management │ │ │ └── __init__.py │ │ ├── middleware.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── action.py │ │ │ ├── automations.py │ │ │ ├── base.py │ │ │ ├── cron.py │ │ │ ├── draft.py │ │ │ ├── log.py │ │ │ ├── menu.py │ │ │ ├── portlets.py │ │ │ ├── query.py │ │ │ ├── reports.py │ │ │ └── ui.py │ │ ├── portlets.py │ │ ├── router.py │ │ ├── site.py │ │ ├── static │ │ │ └── admin │ │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ ├── animate.css │ │ │ │ │ └── fontawesome.css │ │ │ │ ├── img │ │ │ │ │ ├── avatar.png │ │ │ │ │ ├── bg.jpg │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── cube.svg │ │ │ │ │ ├── katrid-logo-inverse.png │ │ │ │ │ ├── katrid-logo.png │ │ │ │ │ ├── logo-small-inverted.png │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── logo2.png │ │ │ │ │ ├── no-image-company.png │ │ │ │ │ ├── no-image.png │ │ │ │ │ ├── sprite-skin-flat.png │ │ │ │ │ ├── sprite-skin-modern.png │ │ │ │ │ ├── sprite-skin-nice.png │ │ │ │ │ ├── sprite-skin-simple.png │ │ │ │ │ ├── user-avatar-48.jpg │ │ │ │ │ └── user-avatar.jpg │ │ │ │ ├── js │ │ │ │ │ └── select2 │ │ │ │ │ │ ├── select2-spinner.gif │ │ │ │ │ │ ├── select2.css │ │ │ │ │ │ ├── select2.js │ │ │ │ │ │ ├── select2.min.css │ │ │ │ │ │ ├── select2.min.js │ │ │ │ │ │ ├── select2.min.min.js │ │ │ │ │ │ ├── select2.png │ │ │ │ │ │ ├── select2_locale_pt-BR.js │ │ │ │ │ │ ├── select2_locale_pt-br.min.js │ │ │ │ │ │ └── select2x2.png │ │ │ │ └── webfonts │ │ │ │ │ ├── fa-brands-400.eot │ │ │ │ │ ├── fa-brands-400.svg │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ ├── fa-brands-400.woff │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ ├── fa-regular-400.eot │ │ │ │ │ ├── fa-regular-400.svg │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ ├── fa-regular-400.woff │ │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ │ ├── fa-solid-900.eot │ │ │ │ │ ├── fa-solid-900.svg │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ ├── fa-solid-900.woff │ │ │ │ │ └── fa-solid-900.woff2 │ │ │ │ ├── katrid │ │ │ │ ├── katrid.css │ │ │ │ ├── katrid.css.map │ │ │ │ ├── katrid.d.ts │ │ │ │ ├── katrid.d.ts.map │ │ │ │ ├── katrid.deps.js │ │ │ │ ├── katrid.js │ │ │ │ ├── katrid.js.map │ │ │ │ ├── katrid.min.js │ │ │ │ ├── katrid.min.js.map │ │ │ │ ├── style.css │ │ │ │ ├── style.css.map │ │ │ │ └── templates.html │ │ │ │ ├── libs │ │ │ │ ├── fullcalendar │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── locales-all.min.js │ │ │ │ │ ├── main.min.css │ │ │ │ │ └── main.min.js │ │ │ │ └── plotly │ │ │ │ │ └── plotly.min.js │ │ │ │ ├── monaco │ │ │ │ ├── LICENSE │ │ │ │ └── min │ │ │ │ │ └── vs │ │ │ │ │ ├── base │ │ │ │ │ ├── browser │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ └── codicons │ │ │ │ │ │ │ └── codicon │ │ │ │ │ │ │ └── codicon.ttf │ │ │ │ │ ├── common │ │ │ │ │ │ └── worker │ │ │ │ │ │ │ ├── simpleWorker.nls.de.js │ │ │ │ │ │ │ ├── simpleWorker.nls.es.js │ │ │ │ │ │ │ ├── simpleWorker.nls.fr.js │ │ │ │ │ │ │ ├── simpleWorker.nls.it.js │ │ │ │ │ │ │ ├── simpleWorker.nls.ja.js │ │ │ │ │ │ │ ├── simpleWorker.nls.js │ │ │ │ │ │ │ ├── simpleWorker.nls.ko.js │ │ │ │ │ │ │ ├── simpleWorker.nls.ru.js │ │ │ │ │ │ │ ├── simpleWorker.nls.zh-cn.js │ │ │ │ │ │ │ └── simpleWorker.nls.zh-tw.js │ │ │ │ │ └── worker │ │ │ │ │ │ └── workerMain.js │ │ │ │ │ ├── basic-languages │ │ │ │ │ ├── abap │ │ │ │ │ │ └── abap.js │ │ │ │ │ ├── apex │ │ │ │ │ │ └── apex.js │ │ │ │ │ ├── azcli │ │ │ │ │ │ └── azcli.js │ │ │ │ │ ├── bat │ │ │ │ │ │ └── bat.js │ │ │ │ │ ├── bicep │ │ │ │ │ │ └── bicep.js │ │ │ │ │ ├── cameligo │ │ │ │ │ │ └── cameligo.js │ │ │ │ │ ├── clojure │ │ │ │ │ │ └── clojure.js │ │ │ │ │ ├── coffee │ │ │ │ │ │ └── coffee.js │ │ │ │ │ ├── cpp │ │ │ │ │ │ └── cpp.js │ │ │ │ │ ├── csharp │ │ │ │ │ │ └── csharp.js │ │ │ │ │ ├── csp │ │ │ │ │ │ └── csp.js │ │ │ │ │ ├── css │ │ │ │ │ │ └── css.js │ │ │ │ │ ├── cypher │ │ │ │ │ │ └── cypher.js │ │ │ │ │ ├── dart │ │ │ │ │ │ └── dart.js │ │ │ │ │ ├── dockerfile │ │ │ │ │ │ └── dockerfile.js │ │ │ │ │ ├── ecl │ │ │ │ │ │ └── ecl.js │ │ │ │ │ ├── elixir │ │ │ │ │ │ └── elixir.js │ │ │ │ │ ├── flow9 │ │ │ │ │ │ └── flow9.js │ │ │ │ │ ├── freemarker2 │ │ │ │ │ │ └── freemarker2.js │ │ │ │ │ ├── fsharp │ │ │ │ │ │ └── fsharp.js │ │ │ │ │ ├── go │ │ │ │ │ │ └── go.js │ │ │ │ │ ├── graphql │ │ │ │ │ │ └── graphql.js │ │ │ │ │ ├── handlebars │ │ │ │ │ │ └── handlebars.js │ │ │ │ │ ├── hcl │ │ │ │ │ │ └── hcl.js │ │ │ │ │ ├── html │ │ │ │ │ │ └── html.js │ │ │ │ │ ├── ini │ │ │ │ │ │ └── ini.js │ │ │ │ │ ├── java │ │ │ │ │ │ └── java.js │ │ │ │ │ ├── javascript │ │ │ │ │ │ └── javascript.js │ │ │ │ │ ├── julia │ │ │ │ │ │ └── julia.js │ │ │ │ │ ├── kotlin │ │ │ │ │ │ └── kotlin.js │ │ │ │ │ ├── less │ │ │ │ │ │ └── less.js │ │ │ │ │ ├── lexon │ │ │ │ │ │ └── lexon.js │ │ │ │ │ ├── liquid │ │ │ │ │ │ └── liquid.js │ │ │ │ │ ├── lua │ │ │ │ │ │ └── lua.js │ │ │ │ │ ├── m3 │ │ │ │ │ │ └── m3.js │ │ │ │ │ ├── markdown │ │ │ │ │ │ └── markdown.js │ │ │ │ │ ├── mdx │ │ │ │ │ │ └── mdx.js │ │ │ │ │ ├── mips │ │ │ │ │ │ └── mips.js │ │ │ │ │ ├── msdax │ │ │ │ │ │ └── msdax.js │ │ │ │ │ ├── mysql │ │ │ │ │ │ └── mysql.js │ │ │ │ │ ├── objective-c │ │ │ │ │ │ └── objective-c.js │ │ │ │ │ ├── pascal │ │ │ │ │ │ └── pascal.js │ │ │ │ │ ├── pascaligo │ │ │ │ │ │ └── pascaligo.js │ │ │ │ │ ├── perl │ │ │ │ │ │ └── perl.js │ │ │ │ │ ├── pgsql │ │ │ │ │ │ └── pgsql.js │ │ │ │ │ ├── php │ │ │ │ │ │ └── php.js │ │ │ │ │ ├── pla │ │ │ │ │ │ └── pla.js │ │ │ │ │ ├── postiats │ │ │ │ │ │ └── postiats.js │ │ │ │ │ ├── powerquery │ │ │ │ │ │ └── powerquery.js │ │ │ │ │ ├── powershell │ │ │ │ │ │ └── powershell.js │ │ │ │ │ ├── protobuf │ │ │ │ │ │ └── protobuf.js │ │ │ │ │ ├── pug │ │ │ │ │ │ └── pug.js │ │ │ │ │ ├── python │ │ │ │ │ │ └── python.js │ │ │ │ │ ├── qsharp │ │ │ │ │ │ └── qsharp.js │ │ │ │ │ ├── r │ │ │ │ │ │ └── r.js │ │ │ │ │ ├── razor │ │ │ │ │ │ └── razor.js │ │ │ │ │ ├── redis │ │ │ │ │ │ └── redis.js │ │ │ │ │ ├── redshift │ │ │ │ │ │ └── redshift.js │ │ │ │ │ ├── restructuredtext │ │ │ │ │ │ └── restructuredtext.js │ │ │ │ │ ├── ruby │ │ │ │ │ │ └── ruby.js │ │ │ │ │ ├── rust │ │ │ │ │ │ └── rust.js │ │ │ │ │ ├── sb │ │ │ │ │ │ └── sb.js │ │ │ │ │ ├── scala │ │ │ │ │ │ └── scala.js │ │ │ │ │ ├── scheme │ │ │ │ │ │ └── scheme.js │ │ │ │ │ ├── scss │ │ │ │ │ │ └── scss.js │ │ │ │ │ ├── shell │ │ │ │ │ │ └── shell.js │ │ │ │ │ ├── solidity │ │ │ │ │ │ └── solidity.js │ │ │ │ │ ├── sophia │ │ │ │ │ │ └── sophia.js │ │ │ │ │ ├── sparql │ │ │ │ │ │ └── sparql.js │ │ │ │ │ ├── sql │ │ │ │ │ │ └── sql.js │ │ │ │ │ ├── st │ │ │ │ │ │ └── st.js │ │ │ │ │ ├── swift │ │ │ │ │ │ └── swift.js │ │ │ │ │ ├── systemverilog │ │ │ │ │ │ └── systemverilog.js │ │ │ │ │ ├── tcl │ │ │ │ │ │ └── tcl.js │ │ │ │ │ ├── twig │ │ │ │ │ │ └── twig.js │ │ │ │ │ ├── typescript │ │ │ │ │ │ └── typescript.js │ │ │ │ │ ├── typespec │ │ │ │ │ │ └── typespec.js │ │ │ │ │ ├── vb │ │ │ │ │ │ └── vb.js │ │ │ │ │ ├── wgsl │ │ │ │ │ │ └── wgsl.js │ │ │ │ │ ├── xml │ │ │ │ │ │ └── xml.js │ │ │ │ │ └── yaml │ │ │ │ │ │ └── yaml.js │ │ │ │ │ ├── editor │ │ │ │ │ ├── editor.main.css │ │ │ │ │ ├── editor.main.js │ │ │ │ │ ├── editor.main.nls.de.js │ │ │ │ │ ├── editor.main.nls.es.js │ │ │ │ │ ├── editor.main.nls.fr.js │ │ │ │ │ ├── editor.main.nls.it.js │ │ │ │ │ ├── editor.main.nls.ja.js │ │ │ │ │ ├── editor.main.nls.js │ │ │ │ │ ├── editor.main.nls.ko.js │ │ │ │ │ ├── editor.main.nls.ru.js │ │ │ │ │ ├── editor.main.nls.zh-cn.js │ │ │ │ │ └── editor.main.nls.zh-tw.js │ │ │ │ │ ├── language │ │ │ │ │ ├── css │ │ │ │ │ │ ├── cssMode.js │ │ │ │ │ │ └── cssWorker.js │ │ │ │ │ ├── html │ │ │ │ │ │ ├── htmlMode.js │ │ │ │ │ │ └── htmlWorker.js │ │ │ │ │ ├── json │ │ │ │ │ │ ├── jsonMode.js │ │ │ │ │ │ └── jsonWorker.js │ │ │ │ │ └── typescript │ │ │ │ │ │ ├── tsMode.js │ │ │ │ │ │ └── tsWorker.js │ │ │ │ │ └── loader.js │ │ │ │ └── require.js │ │ ├── templates │ │ │ ├── admin │ │ │ │ ├── 500.html │ │ │ │ ├── base.jinja2 │ │ │ │ ├── include │ │ │ │ │ └── menu-utils.html │ │ │ │ ├── index-vert.html │ │ │ │ ├── index.jinja2 │ │ │ │ ├── login.jinja2 │ │ │ │ ├── query.html │ │ │ │ ├── reports │ │ │ │ │ ├── base.jinja2 │ │ │ │ │ └── template.jinja2 │ │ │ │ └── select-db.jinja2 │ │ │ └── views │ │ │ │ ├── auto_report.pug │ │ │ │ ├── form.jinja2 │ │ │ │ ├── list.jinja2 │ │ │ │ └── search.jinja2 │ │ ├── test.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── client.py │ │ │ ├── dashboard.py │ │ │ ├── help.py │ │ │ ├── i18n.py │ │ │ ├── portlets.py │ │ │ ├── reports.py │ │ │ ├── rpc.py │ │ │ ├── test.py │ │ │ └── websocket.py │ ├── auth │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── audit.py │ │ ├── backends.py │ │ ├── base_user.py │ │ ├── checks.py │ │ ├── common-passwords.txt.gz │ │ ├── context_processors.py │ │ ├── decorators.py │ │ ├── forms.py │ │ ├── handlers │ │ │ ├── __init__.py │ │ │ └── modwsgi.py │ │ ├── hashers.py │ │ ├── locale │ │ │ ├── af │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ar │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ast │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── az │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── be │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── bg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── bn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── br │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── bs │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ca │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── cs │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── cy │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── da │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── dsb │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── el │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── en_AU │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── en_GB │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── eo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── es_AR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── es_CO │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── es_MX │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── es_VE │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── et │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── eu │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── fa │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── fi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── fy │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ga │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── gd │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── gl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── he │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── hi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── hr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── hsb │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── hu │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── hy │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ia │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── id │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── io │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── is │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── it │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ka │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── kab │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── kk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── km │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── kn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ko │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── lb │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── lt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── lv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── mk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ml │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── mn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── mr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── my │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── nb │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ne │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── nl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── nn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── os │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── pa │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── pl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── pt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ro │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sq │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sr_Latn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sw │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ta │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── te │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── th │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── tr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── tt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── udm │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── uk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ur │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── vi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── zh_Hans │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ └── zh_Hant │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── changepassword.py │ │ │ │ └── createsuperuser.py │ │ ├── middleware.py │ │ ├── mixins.py │ │ ├── models.py │ │ ├── password_validation.py │ │ ├── router.py │ │ ├── signals.py │ │ ├── site_urls.py │ │ ├── templates │ │ │ ├── auth │ │ │ │ └── widgets │ │ │ │ │ └── read_only_password_hash.html │ │ │ └── registration │ │ │ │ └── password_reset_subject.txt │ │ ├── tokens.py │ │ ├── validators.py │ │ └── views.py │ ├── blog │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── models.py │ │ ├── templates │ │ │ └── views │ │ │ │ ├── blog.category │ │ │ │ └── form.html │ │ │ │ └── blog.post │ │ │ │ ├── form.html │ │ │ │ └── list.html │ │ ├── urls.py │ │ └── views.py │ ├── comments │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── fixtures │ │ │ ├── actions.xml │ │ │ ├── mail.xml │ │ │ ├── menu.xml │ │ │ └── views.xml │ │ ├── locale │ │ │ └── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ ├── orun.po │ │ │ │ ├── orunjs.mo │ │ │ │ └── orunjs.po │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── activity.py │ │ │ ├── alias.py │ │ │ ├── approval.py │ │ │ ├── channels.py │ │ │ ├── follower.py │ │ │ ├── message.py │ │ │ ├── notification.py │ │ │ └── partner.py │ │ └── templates │ │ │ └── mail │ │ │ └── views │ │ │ └── res.partner │ │ │ └── form.html │ ├── contacts │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── fixtures │ │ │ ├── actions.xml │ │ │ └── menu.xml │ │ ├── models.py │ │ └── static │ │ │ └── contacts │ │ │ └── contacts.svg │ ├── contenttypes │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── checks.py │ │ ├── fields.py │ │ ├── forms.py │ │ ├── locale │ │ │ ├── af │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ar │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ast │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── az │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── be │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── bg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── bn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── br │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── bs │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ca │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── cs │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── cy │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── da │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── dsb │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── el │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── en_AU │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── en_GB │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── eo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── es_AR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── es_CO │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── es_MX │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── es_VE │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── et │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── eu │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── fa │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── fi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── fy │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ga │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── gd │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── gl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── he │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── hi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── hr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── hsb │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── hu │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── hy │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ia │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── id │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── io │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── is │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── it │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ka │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── kk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── km │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── kn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ko │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── lb │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── lt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── lv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── mk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ml │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── mn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── mr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── my │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── nb │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ne │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── nl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── nn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── os │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── pa │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── pl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── pt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ro │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sq │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sr_Latn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sw │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ta │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── te │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── th │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── tr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── tt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── udm │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── uk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ur │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── vi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── zh_Hans │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ └── zh_Hant │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── management │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── attachment.py │ │ │ ├── models.py │ │ │ └── objects.py │ │ ├── storage.py │ │ └── views.py │ ├── erp │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── fields.py │ │ ├── fixtures │ │ │ ├── actions.xml │ │ │ ├── country.xml │ │ │ ├── currency.xml │ │ │ ├── menu.xml │ │ │ ├── modules.xml │ │ │ ├── partner.xml │ │ │ └── views.xml │ │ ├── locale │ │ │ ├── es_ES │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ └── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── auth.py │ │ │ ├── bank.py │ │ │ ├── company.py │ │ │ ├── config.py │ │ │ ├── copy.py │ │ │ ├── decimal.py │ │ │ ├── http.py │ │ │ ├── locale.py │ │ │ ├── module.py │ │ │ ├── partner.py │ │ │ └── sequence.py │ │ ├── static │ │ │ └── erp │ │ │ │ └── gears.svg │ │ └── templates │ │ │ ├── erp │ │ │ ├── tests │ │ │ │ ├── primary.view.html │ │ │ │ ├── test.view.html │ │ │ │ ├── test2.view.html │ │ │ │ └── test3.view.html │ │ │ └── views │ │ │ │ ├── auth.user │ │ │ │ ├── form.xml │ │ │ │ └── list.xml │ │ │ │ ├── ir.model │ │ │ │ └── form.xml │ │ │ │ ├── res.company │ │ │ │ ├── form.xml │ │ │ │ └── list.xml │ │ │ │ ├── res.partner │ │ │ │ ├── card.html │ │ │ │ ├── form.html │ │ │ │ ├── list.html │ │ │ │ └── search.html │ │ │ │ ├── ui.menu │ │ │ │ └── list.xml │ │ │ │ └── ui.view │ │ │ │ ├── form.xml │ │ │ │ └── list.xml │ │ │ ├── reports │ │ │ ├── _base.jinja2 │ │ │ ├── auto_report.xml │ │ │ ├── base.jinja2 │ │ │ ├── common.jinja2 │ │ │ ├── qrcode.jinja2 │ │ │ └── report.jinja2 │ │ │ └── views │ │ │ ├── auth.group │ │ │ ├── form.html │ │ │ └── list.html │ │ │ ├── ir.dashboard.settings │ │ │ └── form.xml │ │ │ ├── ir.query │ │ │ └── form.xml │ │ │ ├── res.partner │ │ │ └── search.xml │ │ │ └── ui.action.report │ │ │ ├── form.html │ │ │ └── list.html │ ├── extra │ │ └── __init__.py │ ├── mail │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── fixtures │ │ │ └── mail.xml │ │ └── models.py │ ├── messages │ │ ├── __init__.py │ │ ├── api.py │ │ ├── apps.py │ │ ├── constants.py │ │ ├── context_processors.py │ │ ├── middleware.py │ │ ├── storage │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── cookie.py │ │ │ ├── fallback.py │ │ │ └── session.py │ │ ├── utils.py │ │ └── views.py │ ├── sessions │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── backends │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── cache.py │ │ │ ├── cached_db.py │ │ │ ├── db.py │ │ │ ├── file.py │ │ │ └── signed_cookies.py │ │ ├── base_session.py │ │ ├── exceptions.py │ │ ├── locale │ │ │ ├── af │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ar │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ast │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── az │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── be │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── bg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── bn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── br │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── bs │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ca │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── cs │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── cy │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── da │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── dsb │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── el │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── en_AU │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── en_GB │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── eo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── es_AR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── es_CO │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── es_MX │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── es_VE │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── et │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── eu │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── fa │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── fi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── fy │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ga │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── gd │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── gl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── he │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── hi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── hr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── hsb │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── hu │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── hy │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ia │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── id │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── io │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── is │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── it │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ka │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── kab │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── kk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── km │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── kn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ko │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── lb │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── lt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── lv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── mk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ml │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── mn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── mr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── my │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── nb │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ne │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── nl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── nn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── os │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── pa │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── pl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── pt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ro │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sq │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sr_Latn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sw │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ta │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── te │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── th │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── tr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── tt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── udm │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── uk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ur │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── uz │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── vi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── zh_Hans │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ └── zh_Hant │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── management │ │ │ └── commands │ │ │ │ └── clearsessions.py │ │ ├── middleware.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ └── serializers.py │ ├── sites │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── locale │ │ │ ├── af │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ar │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ast │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── az │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── be │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── bg │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── bn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── br │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── bs │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ca │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── cs │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── cy │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── da │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── dsb │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── el │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── en │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── en_AU │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── en_GB │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── eo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── es_AR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── es_CO │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── es_MX │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── es_VE │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── et │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── eu │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── fa │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── fi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── fy │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ga │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── gd │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── gl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── he │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── hi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── hr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── hsb │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── hu │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── hy │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ia │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── id │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── io │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── is │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── it │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ja │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ka │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── kab │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── kk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── km │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── kn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ko │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── lb │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── lt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── lv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── mk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ml │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── mn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── mr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── my │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── nb │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ne │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── nl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── nn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── os │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── pa │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── pl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── pt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ro │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sl │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sq │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sr_Latn │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sv │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── sw │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ta │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── te │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── th │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── tr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── tt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── udm │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── uk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── ur │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── uz │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── vi │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ ├── zh_Hans │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── orun.mo │ │ │ │ │ └── orun.po │ │ │ └── zh_Hant │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── orun.mo │ │ │ │ └── orun.po │ │ ├── management.py │ │ ├── managers.py │ │ ├── middleware.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_alter_domain_unique.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── requests.py │ │ └── shortcuts.py │ ├── sql │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── fixtures │ │ │ └── api.mssql.sql │ │ └── models.py │ └── staticfiles │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── checks.py │ │ ├── finders.py │ │ ├── handlers.py │ │ ├── management │ │ └── commands │ │ │ ├── collectstatic.py │ │ │ ├── findstatic.py │ │ │ └── runserver.py │ │ ├── storage.py │ │ ├── templatetags │ │ ├── __init__.py │ │ └── staticfiles.py │ │ ├── testing.py │ │ ├── urls.py │ │ ├── utils.py │ │ └── views.py ├── core │ ├── __init__.py │ ├── cache │ │ ├── __init__.py │ │ ├── backends │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── db.py │ │ │ ├── dummy.py │ │ │ ├── filebased.py │ │ │ ├── locmem.py │ │ │ └── memcached.py │ │ └── utils.py │ ├── checks │ │ ├── __init__.py │ │ ├── caches.py │ │ ├── compatibility │ │ │ └── __init__.py │ │ ├── database.py │ │ ├── messages.py │ │ ├── model_checks.py │ │ ├── registry.py │ │ ├── security │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── csrf.py │ │ │ └── sessions.py │ │ ├── templates.py │ │ ├── translation.py │ │ └── urls.py │ ├── exceptions.py │ ├── files │ │ ├── __init__.py │ │ ├── base.py │ │ ├── images.py │ │ ├── locks.py │ │ ├── move.py │ │ ├── storage.py │ │ ├── temp.py │ │ ├── uploadedfile.py │ │ ├── uploadhandler.py │ │ └── utils.py │ ├── handlers │ │ ├── __init__.py │ │ ├── asgi.py │ │ ├── base.py │ │ ├── exception.py │ │ ├── ws.py │ │ └── wsgi.py │ ├── mail │ │ ├── __init__.py │ │ ├── backends │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── console.py │ │ │ ├── dummy.py │ │ │ ├── filebased.py │ │ │ ├── locmem.py │ │ │ └── smtp.py │ │ ├── message.py │ │ └── utils.py │ ├── management │ │ ├── __init__.py │ │ ├── base.py │ │ ├── color.py │ │ ├── commands │ │ │ ├── check.py │ │ │ ├── compilemessages.py │ │ │ ├── createcachetable.py │ │ │ ├── createdb.py │ │ │ ├── dbshell.py │ │ │ ├── diffsettings.py │ │ │ ├── dumpdata.py │ │ │ ├── flush.py │ │ │ ├── inspectdb.py │ │ │ ├── loaddata.py │ │ │ ├── makemessages.py │ │ │ ├── makemigrations.py │ │ │ ├── makeview.py │ │ │ ├── migrate.py │ │ │ ├── runserver.py │ │ │ ├── sendtestemail.py │ │ │ ├── shell.py │ │ │ ├── showmigrations.py │ │ │ ├── sqlflush.py │ │ │ ├── sqlmigrate.py │ │ │ ├── sqlsequencereset.py │ │ │ ├── squashmigrations.py │ │ │ ├── startapp.py │ │ │ ├── startproject.py │ │ │ ├── syncdb.py │ │ │ ├── test.py │ │ │ ├── testserver.py │ │ │ └── upgrade.py │ │ ├── sql.py │ │ ├── templates.py │ │ └── utils.py │ ├── paginator.py │ ├── serializers │ │ ├── __init__.py │ │ ├── base.py │ │ ├── csv.py │ │ ├── directory.py │ │ ├── edi │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── fields.py │ │ │ └── text.py │ │ ├── jinja2.py │ │ ├── json.py │ │ ├── python.py │ │ ├── pyyaml.py │ │ ├── sql.py │ │ └── xml_serializer.py │ ├── servers │ │ ├── __init__.py │ │ └── basehttp.py │ ├── signals.py │ ├── signing.py │ ├── validators.py │ └── wsgi.py ├── data │ ├── __init__.py │ └── datasource.py ├── db │ ├── __init__.py │ ├── backends │ │ ├── __init__.py │ │ ├── base │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── client.py │ │ │ ├── creation.py │ │ │ ├── dialect.py │ │ │ ├── features.py │ │ │ ├── introspection.py │ │ │ ├── operations.py │ │ │ ├── schema.py │ │ │ ├── validation.py │ │ │ └── vsql.py │ │ ├── ddl_references.py │ │ ├── dummy │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ └── features.py │ │ ├── mssql │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── client.py │ │ │ ├── compiler.py │ │ │ ├── creation.py │ │ │ ├── dialect.py │ │ │ ├── features.py │ │ │ ├── introspection.py │ │ │ ├── operations.py │ │ │ ├── schema.py │ │ │ └── vsql.py │ │ ├── mysql │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── client.py │ │ │ ├── compiler.py │ │ │ ├── creation.py │ │ │ ├── features.py │ │ │ ├── introspection.py │ │ │ ├── operations.py │ │ │ ├── schema.py │ │ │ └── validation.py │ │ ├── oracle │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── client.py │ │ │ ├── creation.py │ │ │ ├── features.py │ │ │ ├── functions.py │ │ │ ├── introspection.py │ │ │ ├── operations.py │ │ │ ├── schema.py │ │ │ ├── utils.py │ │ │ └── validation.py │ │ ├── postgresql │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── client.py │ │ │ ├── creation.py │ │ │ ├── features.py │ │ │ ├── introspection.py │ │ │ ├── operations.py │ │ │ ├── schema.py │ │ │ ├── utils.py │ │ │ └── vsql.py │ │ ├── signals.py │ │ ├── sqlite3 │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── client.py │ │ │ ├── creation.py │ │ │ ├── features.py │ │ │ ├── introspection.py │ │ │ ├── operations.py │ │ │ └── schema.py │ │ └── utils.py │ ├── metadata.py │ ├── models │ │ ├── __init__.py │ │ ├── _lookups.py │ │ ├── _lookups │ │ │ ├── __init__.py │ │ │ └── search.py │ │ ├── aggregates.py │ │ ├── base.py │ │ ├── constants.py │ │ ├── constraints.py │ │ ├── decorators.py │ │ ├── deletion.py │ │ ├── enums.py │ │ ├── expressions.py │ │ ├── fields │ │ │ ├── __init__.py │ │ │ ├── events.py │ │ │ ├── files.py │ │ │ ├── json.py │ │ │ ├── mixins.py │ │ │ ├── proxy.py │ │ │ ├── related.py │ │ │ ├── related_descriptors.py │ │ │ ├── related_lookups.py │ │ │ └── reverse_related.py │ │ ├── functions │ │ │ ├── __init__.py │ │ │ ├── comparison.py │ │ │ ├── datetime.py │ │ │ ├── math.py │ │ │ ├── mixins.py │ │ │ ├── text.py │ │ │ └── window.py │ │ ├── indexes.py │ │ ├── lookups.py │ │ ├── manager.py │ │ ├── options.py │ │ ├── query.py │ │ ├── query_utils.py │ │ ├── recordset.py │ │ ├── shortcuts.py │ │ ├── signals.py │ │ ├── sql │ │ │ ├── __init__.py │ │ │ ├── compiler.py │ │ │ ├── constants.py │ │ │ ├── datastructures.py │ │ │ ├── query.py │ │ │ ├── subqueries.py │ │ │ └── where.py │ │ ├── utils.py │ │ └── vsql.py │ ├── transaction.py │ ├── utils.py │ └── vsql │ │ ├── __init__.py │ │ ├── base.py │ │ ├── dialect.py │ │ ├── functions.py │ │ ├── triggers.py │ │ ├── vast.py │ │ └── views.py ├── dispatch │ ├── __init__.py │ ├── dispatcher.py │ └── license.txt ├── forms │ ├── __init__.py │ ├── boundfield.py │ ├── fields.py │ ├── forms.py │ ├── formsets.py │ ├── jinja2 │ │ └── orun │ │ │ └── forms │ │ │ └── widgets │ │ │ ├── attrs.html │ │ │ ├── checkbox.html │ │ │ ├── checkbox_option.html │ │ │ ├── checkbox_select.html │ │ │ ├── clearable_file_input.html │ │ │ ├── date.html │ │ │ ├── datetime.html │ │ │ ├── email.html │ │ │ ├── file.html │ │ │ ├── hidden.html │ │ │ ├── input.html │ │ │ ├── input_option.html │ │ │ ├── multiple_hidden.html │ │ │ ├── multiple_input.html │ │ │ ├── multiwidget.html │ │ │ ├── number.html │ │ │ ├── password.html │ │ │ ├── radio.html │ │ │ ├── radio_option.html │ │ │ ├── select.html │ │ │ ├── select_date.html │ │ │ ├── select_option.html │ │ │ ├── splitdatetime.html │ │ │ ├── splithiddendatetime.html │ │ │ ├── text.html │ │ │ ├── textarea.html │ │ │ ├── time.html │ │ │ └── url.html │ ├── models.py │ ├── renderers.py │ ├── templates │ │ └── orun │ │ │ └── forms │ │ │ └── widgets │ │ │ ├── attrs.html │ │ │ ├── checkbox.html │ │ │ ├── checkbox_option.html │ │ │ ├── checkbox_select.html │ │ │ ├── clearable_file_input.html │ │ │ ├── date.html │ │ │ ├── datetime.html │ │ │ ├── email.html │ │ │ ├── file.html │ │ │ ├── hidden.html │ │ │ ├── input.html │ │ │ ├── input_option.html │ │ │ ├── multiple_hidden.html │ │ │ ├── multiple_input.html │ │ │ ├── multiwidget.html │ │ │ ├── number.html │ │ │ ├── password.html │ │ │ ├── radio.html │ │ │ ├── radio_option.html │ │ │ ├── select.html │ │ │ ├── select_date.html │ │ │ ├── select_option.html │ │ │ ├── splitdatetime.html │ │ │ ├── splithiddendatetime.html │ │ │ ├── text.html │ │ │ ├── textarea.html │ │ │ ├── time.html │ │ │ └── url.html │ ├── utils.py │ └── widgets.py ├── html │ ├── base.py │ └── components │ │ ├── __init__.py │ │ └── table.py ├── http │ ├── __init__.py │ ├── cookie.py │ ├── multipartparser.py │ ├── request.py │ └── response.py ├── messages │ └── __init__.py ├── middleware │ ├── __init__.py │ ├── cache.py │ ├── clickjacking.py │ ├── common.py │ ├── csrf.py │ ├── gzip.py │ ├── http.py │ ├── locale.py │ └── security.py ├── reports │ ├── __init__.py │ ├── base.py │ ├── data.py │ ├── engines │ │ ├── __init__.py │ │ ├── base.py │ │ ├── html.py │ │ ├── pug.py │ │ └── reptile.py │ ├── filters.py │ ├── graph.py │ ├── objects.py │ ├── page.py │ ├── params.py │ ├── runtime.py │ ├── totals.py │ └── utils.py ├── shortcuts.py ├── template │ ├── __init__.py │ ├── backends │ │ ├── __init__.py │ │ ├── base.py │ │ ├── django.py │ │ ├── dummy.py │ │ ├── jinja2.py │ │ ├── pug.py │ │ └── utils.py │ ├── base.py │ ├── context.py │ ├── context_processors.py │ ├── defaultfilters.py │ ├── defaulttags.py │ ├── engine.py │ ├── exceptions.py │ ├── library.py │ ├── loader.py │ ├── loader_tags.py │ ├── loaders │ │ ├── __init__.py │ │ ├── app_directories.py │ │ ├── base.py │ │ ├── cached.py │ │ ├── filesystem.py │ │ └── locmem.py │ ├── response.py │ ├── smartif.py │ └── utils.py ├── templatetags │ ├── __init__.py │ ├── cache.py │ ├── i18n.py │ ├── l10n.py │ ├── static.py │ └── tz.py ├── test │ ├── __init__.py │ ├── client.py │ ├── html.py │ ├── runner.py │ ├── selenium.py │ ├── signals.py │ ├── testcases.py │ └── utils.py ├── urls │ ├── __init__.py │ ├── base.py │ ├── conf.py │ ├── converters.py │ ├── exceptions.py │ ├── resolvers.py │ └── utils.py ├── utils │ ├── __init__.py │ ├── _os.py │ ├── archive.py │ ├── autoreload.py │ ├── baseconv.py │ ├── cache.py │ ├── crypto.py │ ├── datastructures.py │ ├── dateformat.py │ ├── dateparse.py │ ├── dates.py │ ├── datetime_safe.py │ ├── deconstruct.py │ ├── decorators.py │ ├── deprecation.py │ ├── duration.py │ ├── encoding.py │ ├── feedgenerator.py │ ├── filters.py │ ├── formats.py │ ├── functional.py │ ├── hashable.py │ ├── html.py │ ├── http.py │ ├── i18n.py │ ├── inspect.py │ ├── ipv6.py │ ├── itercompat.py │ ├── jslex.py │ ├── log.py │ ├── lorem_ipsum.py │ ├── lru_cache.py │ ├── module_loading.py │ ├── numberformat.py │ ├── regex_helper.py │ ├── safestring.py │ ├── six.py │ ├── termcolors.py │ ├── text.py │ ├── timesince.py │ ├── timezone.py │ ├── topological_sort.py │ ├── translation │ │ ├── __init__.py │ │ ├── reloader.py │ │ ├── template.py │ │ ├── trans_null.py │ │ └── trans_real.py │ ├── tree.py │ ├── version.py │ ├── xml.py │ └── xmlutils.py └── views │ ├── __init__.py │ ├── csrf.py │ ├── dash │ ├── __init__.py │ ├── dashboard.py │ └── html.py │ ├── debug.py │ ├── decorators │ ├── __init__.py │ ├── cache.py │ ├── clickjacking.py │ ├── csrf.py │ ├── debug.py │ ├── gzip.py │ ├── http.py │ ├── portlet.py │ └── vary.py │ ├── defaults.py │ ├── generic │ ├── __init__.py │ ├── base.py │ ├── dates.py │ ├── detail.py │ ├── edit.py │ └── list.py │ ├── i18n.py │ ├── portlets.py │ ├── registry.py │ ├── static.py │ └── templates │ ├── default_urlconf.html │ ├── technical_404.html │ ├── technical_500.html │ └── technical_500.txt └── tests ├── json_field ├── __init__.py ├── models.py └── tests.py ├── record_signals ├── __init__.py ├── apps.py ├── models.py └── tests.py ├── runtests.py └── test_sqlite.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/.gitignore -------------------------------------------------------------------------------- /addons/crm/models/lead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/addons/crm/models/lead.py -------------------------------------------------------------------------------- /addons/pwa/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/addons/pwa/apps.py -------------------------------------------------------------------------------- /addons/pwa/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/addons/pwa/models.py -------------------------------------------------------------------------------- /addons/pwa/static/pwa/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/addons/pwa/static/pwa/assets/icon.png -------------------------------------------------------------------------------- /addons/pwa/static/pwa/assets/pwa.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/addons/pwa/static/pwa/assets/pwa.css -------------------------------------------------------------------------------- /addons/pwa/templates/pwa/index.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/addons/pwa/templates/pwa/index.jinja2 -------------------------------------------------------------------------------- /addons/pwa/templates/pwa/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/addons/pwa/templates/pwa/manifest.json -------------------------------------------------------------------------------- /addons/pwa/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/addons/pwa/urls.py -------------------------------------------------------------------------------- /addons/pwa/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/addons/pwa/utils.py -------------------------------------------------------------------------------- /addons/pwa/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/addons/pwa/views.py -------------------------------------------------------------------------------- /addons/stock/models/lot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/addons/stock/models/lot.py -------------------------------------------------------------------------------- /docs/reports/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/docs/reports/index.rst -------------------------------------------------------------------------------- /orun/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/__init__.py -------------------------------------------------------------------------------- /orun/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/__main__.py -------------------------------------------------------------------------------- /orun/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/api.py -------------------------------------------------------------------------------- /orun/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/apps/__init__.py -------------------------------------------------------------------------------- /orun/apps/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/apps/app.py -------------------------------------------------------------------------------- /orun/apps/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/apps/config.py -------------------------------------------------------------------------------- /orun/apps/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/apps/context.py -------------------------------------------------------------------------------- /orun/apps/default_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/apps/default_settings.py -------------------------------------------------------------------------------- /orun/apps/default_urls.py: -------------------------------------------------------------------------------- 1 | 2 | urlpatterns = [] 3 | -------------------------------------------------------------------------------- /orun/apps/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/apps/registry.py -------------------------------------------------------------------------------- /orun/conf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/__init__.py -------------------------------------------------------------------------------- /orun/conf/app_template/__init__.py-tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/app_template/apps.py-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/app_template/apps.py-tpl -------------------------------------------------------------------------------- /orun/conf/app_template/migrations/__init__.py-tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/app_template/models.py-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/app_template/models.py-tpl -------------------------------------------------------------------------------- /orun/conf/app_template/tests.py-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/app_template/tests.py-tpl -------------------------------------------------------------------------------- /orun/conf/app_template/views.py-tpl: -------------------------------------------------------------------------------- 1 | from orun.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /orun/conf/global_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/global_settings.py -------------------------------------------------------------------------------- /orun/conf/locale/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/__init__.py -------------------------------------------------------------------------------- /orun/conf/locale/af/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/af/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/af/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/af/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/ar/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ar/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/ar/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ar/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/ar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/ar/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ar/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/ast/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ast/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/ast/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ast/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/az/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/az/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/az/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/az/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/az/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/az/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/az/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/be/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/be/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/be/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/be/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/bg/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/bg/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/bg/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/bg/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/bg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/bg/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/bg/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/bn/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/bn/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/bn/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/bn/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/bn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/bn/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/bn/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/br/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/br/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/br/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/br/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/bs/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/bs/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/bs/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/bs/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/bs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/bs/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/bs/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/ca/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ca/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/ca/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ca/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/ca/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/ca/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ca/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/cs/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/cs/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/cs/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/cs/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/cs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/cs/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/cs/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/cy/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/cy/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/cy/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/cy/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/cy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/cy/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/cy/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/da/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/da/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/da/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/da/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/da/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/da/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/da/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/de/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/de/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/de/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/de/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/de/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/de/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/de/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/de_CH/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/de_CH/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/de_CH/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/dsb/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/dsb/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/dsb/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/dsb/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/el/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/el/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/el/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/el/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/el/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/el/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/el/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/en/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/en/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/en/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/en/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/en/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/en/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/en/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/en_AU/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/en_AU/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/en_AU/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/en_GB/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/en_GB/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/en_GB/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/eo/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/eo/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/eo/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/eo/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/eo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/eo/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/eo/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/es/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/es/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/es/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/es/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/es/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/es/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/es/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/es_AR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/es_AR/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/es_AR/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/es_CO/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/es_CO/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/es_CO/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/es_MX/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/es_MX/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/es_MX/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/es_NI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/es_NI/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/es_NI/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/es_PR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/es_PR/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/es_PR/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/et/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/et/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/et/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/et/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/et/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/et/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/et/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/eu/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/eu/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/eu/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/eu/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/eu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/eu/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/eu/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/fa/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/fa/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/fa/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/fa/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/fa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/fa/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/fa/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/fi/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/fi/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/fi/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/fi/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/fi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/fi/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/fi/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/fr/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/fr/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/fr/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/fr/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/fr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/fr/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/fr/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/fy/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/fy/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/fy/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/fy/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/fy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/fy/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/fy/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/ga/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ga/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/ga/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ga/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/ga/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/ga/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ga/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/gd/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/gd/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/gd/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/gd/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/gd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/gd/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/gd/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/gl/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/gl/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/gl/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/gl/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/gl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/gl/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/gl/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/he/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/he/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/he/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/he/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/he/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/he/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/he/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/hi/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/hi/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/hi/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/hi/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/hi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/hi/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/hi/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/hr/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/hr/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/hr/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/hr/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/hr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/hr/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/hr/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/hsb/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/hsb/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/hsb/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/hsb/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/hu/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/hu/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/hu/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/hu/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/hu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/hu/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/hu/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/hy/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/hy/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/hy/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/hy/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/ia/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ia/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/ia/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ia/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/id/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/id/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/id/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/id/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/id/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/id/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/id/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/io/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/io/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/io/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/io/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/is/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/is/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/is/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/is/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/is/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/is/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/is/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/it/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/it/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/it/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/it/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/it/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/it/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/it/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/ja/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ja/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/ja/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ja/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/ja/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/ja/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ja/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/ka/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ka/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/ka/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ka/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/ka/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/ka/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ka/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/kab/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/kab/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/kab/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/kab/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/kk/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/kk/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/kk/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/kk/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/km/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/km/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/km/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/km/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/km/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/km/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/km/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/kn/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/kn/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/kn/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/kn/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/kn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/kn/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/kn/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/ko/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ko/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/ko/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ko/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/ko/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/ko/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ko/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/lb/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/lb/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/lb/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/lb/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/lt/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/lt/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/lt/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/lt/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/lt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/lt/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/lt/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/lv/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/lv/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/lv/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/lv/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/lv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/lv/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/lv/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/mk/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/mk/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/mk/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/mk/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/mk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/mk/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/mk/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/ml/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ml/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/ml/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ml/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/ml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/ml/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ml/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/mn/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/mn/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/mn/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/mn/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/mn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/mn/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/mn/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/mr/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/mr/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/mr/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/mr/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/my/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/my/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/my/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/my/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/nb/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/nb/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/nb/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/nb/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/nb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/nb/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/nb/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/ne/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ne/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/ne/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ne/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/nl/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/nl/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/nl/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/nl/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/nl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/nl/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/nl/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/nn/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/nn/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/nn/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/nn/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/nn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/nn/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/nn/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/os/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/os/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/os/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/os/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/pa/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/pa/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/pa/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/pa/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/pl/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/pl/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/pl/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/pl/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/pl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/pl/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/pl/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/pt/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/pt/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/pt/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/pt/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/pt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/pt/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/pt/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/pt_BR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/pt_BR/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/pt_BR/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/ro/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ro/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/ro/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ro/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/ro/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/ro/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ro/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/ru/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ru/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/ru/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ru/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/ru/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/ru/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ru/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/sk/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/sk/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/sk/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/sk/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/sk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/sk/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/sk/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/sl/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/sl/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/sl/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/sl/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/sl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/sl/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/sl/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/sq/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/sq/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/sq/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/sq/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/sq/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/sq/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/sq/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/sr/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/sr/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/sr/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/sr/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/sr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/sr/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/sr/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/sr_Latn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/sr_Latn/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/sr_Latn/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/sv/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/sv/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/sv/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/sv/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/sv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/sv/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/sv/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/sw/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/sw/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/sw/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/sw/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/ta/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ta/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/ta/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ta/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/ta/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/ta/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ta/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/te/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/te/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/te/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/te/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/te/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/te/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/te/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/th/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/th/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/th/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/th/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/th/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/th/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/th/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/tr/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/tr/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/tr/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/tr/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/tr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/tr/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/tr/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/tt/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/tt/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/tt/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/tt/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/udm/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/udm/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/udm/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/udm/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/uk/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/uk/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/uk/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/uk/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/uk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/uk/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/uk/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/ur/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ur/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/ur/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/ur/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/vi/LC_MESSAGES/orun.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/vi/LC_MESSAGES/orun.mo -------------------------------------------------------------------------------- /orun/conf/locale/vi/LC_MESSAGES/orun.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/vi/LC_MESSAGES/orun.po -------------------------------------------------------------------------------- /orun/conf/locale/vi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/vi/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/vi/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/zh_Hans/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/zh_Hans/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/zh_Hans/formats.py -------------------------------------------------------------------------------- /orun/conf/locale/zh_Hant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/locale/zh_Hant/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/locale/zh_Hant/formats.py -------------------------------------------------------------------------------- /orun/conf/project_template/manage.py-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/project_template/manage.py-tpl -------------------------------------------------------------------------------- /orun/conf/project_template/project_name/__init__.py-tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/conf/urls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/urls/__init__.py -------------------------------------------------------------------------------- /orun/conf/urls/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/urls/i18n.py -------------------------------------------------------------------------------- /orun/conf/urls/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/conf/urls/static.py -------------------------------------------------------------------------------- /orun/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/contrib/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/__init__.py -------------------------------------------------------------------------------- /orun/contrib/admin/actions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/actions/__init__.py -------------------------------------------------------------------------------- /orun/contrib/admin/actions/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/actions/actions.py -------------------------------------------------------------------------------- /orun/contrib/admin/actions/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/actions/grid.py -------------------------------------------------------------------------------- /orun/contrib/admin/actions/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/actions/params.py -------------------------------------------------------------------------------- /orun/contrib/admin/actions/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/actions/query.py -------------------------------------------------------------------------------- /orun/contrib/admin/actions/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/actions/report.py -------------------------------------------------------------------------------- /orun/contrib/admin/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/admin.py -------------------------------------------------------------------------------- /orun/contrib/admin/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/apps.py -------------------------------------------------------------------------------- /orun/contrib/admin/decorators.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/contrib/admin/fixtures/homepage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/fixtures/homepage.xml -------------------------------------------------------------------------------- /orun/contrib/admin/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/jobs.py -------------------------------------------------------------------------------- /orun/contrib/admin/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/middleware.py -------------------------------------------------------------------------------- /orun/contrib/admin/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/models/__init__.py -------------------------------------------------------------------------------- /orun/contrib/admin/models/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/models/action.py -------------------------------------------------------------------------------- /orun/contrib/admin/models/automations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/models/automations.py -------------------------------------------------------------------------------- /orun/contrib/admin/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/models/base.py -------------------------------------------------------------------------------- /orun/contrib/admin/models/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/models/cron.py -------------------------------------------------------------------------------- /orun/contrib/admin/models/draft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/models/draft.py -------------------------------------------------------------------------------- /orun/contrib/admin/models/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/models/log.py -------------------------------------------------------------------------------- /orun/contrib/admin/models/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/models/menu.py -------------------------------------------------------------------------------- /orun/contrib/admin/models/portlets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/models/portlets.py -------------------------------------------------------------------------------- /orun/contrib/admin/models/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/models/query.py -------------------------------------------------------------------------------- /orun/contrib/admin/models/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/models/reports.py -------------------------------------------------------------------------------- /orun/contrib/admin/models/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/models/ui.py -------------------------------------------------------------------------------- /orun/contrib/admin/portlets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/portlets.py -------------------------------------------------------------------------------- /orun/contrib/admin/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/router.py -------------------------------------------------------------------------------- /orun/contrib/admin/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/site.py -------------------------------------------------------------------------------- /orun/contrib/admin/templates/admin/500.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/contrib/admin/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/test.py -------------------------------------------------------------------------------- /orun/contrib/admin/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/tests.py -------------------------------------------------------------------------------- /orun/contrib/admin/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/urls.py -------------------------------------------------------------------------------- /orun/contrib/admin/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/views/__init__.py -------------------------------------------------------------------------------- /orun/contrib/admin/views/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/views/api.py -------------------------------------------------------------------------------- /orun/contrib/admin/views/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/views/client.py -------------------------------------------------------------------------------- /orun/contrib/admin/views/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/views/dashboard.py -------------------------------------------------------------------------------- /orun/contrib/admin/views/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/views/help.py -------------------------------------------------------------------------------- /orun/contrib/admin/views/i18n.py: -------------------------------------------------------------------------------- 1 | from orun.utils.i18n import * 2 | -------------------------------------------------------------------------------- /orun/contrib/admin/views/portlets.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/contrib/admin/views/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/views/reports.py -------------------------------------------------------------------------------- /orun/contrib/admin/views/rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/views/rpc.py -------------------------------------------------------------------------------- /orun/contrib/admin/views/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/views/test.py -------------------------------------------------------------------------------- /orun/contrib/admin/views/websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/admin/views/websocket.py -------------------------------------------------------------------------------- /orun/contrib/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/auth/__init__.py -------------------------------------------------------------------------------- /orun/contrib/auth/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/auth/apps.py -------------------------------------------------------------------------------- /orun/contrib/auth/audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/auth/audit.py -------------------------------------------------------------------------------- /orun/contrib/auth/backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/auth/backends.py -------------------------------------------------------------------------------- /orun/contrib/auth/base_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/auth/base_user.py -------------------------------------------------------------------------------- /orun/contrib/auth/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/auth/checks.py -------------------------------------------------------------------------------- /orun/contrib/auth/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/auth/context_processors.py -------------------------------------------------------------------------------- /orun/contrib/auth/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/auth/decorators.py -------------------------------------------------------------------------------- /orun/contrib/auth/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/auth/forms.py -------------------------------------------------------------------------------- /orun/contrib/auth/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/contrib/auth/handlers/modwsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/auth/handlers/modwsgi.py -------------------------------------------------------------------------------- /orun/contrib/auth/hashers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/auth/hashers.py -------------------------------------------------------------------------------- /orun/contrib/auth/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/auth/management/__init__.py -------------------------------------------------------------------------------- /orun/contrib/auth/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/auth/middleware.py -------------------------------------------------------------------------------- /orun/contrib/auth/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/auth/mixins.py -------------------------------------------------------------------------------- /orun/contrib/auth/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/auth/models.py -------------------------------------------------------------------------------- /orun/contrib/auth/password_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/auth/password_validation.py -------------------------------------------------------------------------------- /orun/contrib/auth/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/auth/router.py -------------------------------------------------------------------------------- /orun/contrib/auth/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/auth/signals.py -------------------------------------------------------------------------------- /orun/contrib/auth/site_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/auth/site_urls.py -------------------------------------------------------------------------------- /orun/contrib/auth/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/auth/tokens.py -------------------------------------------------------------------------------- /orun/contrib/auth/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/auth/validators.py -------------------------------------------------------------------------------- /orun/contrib/auth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/auth/views.py -------------------------------------------------------------------------------- /orun/contrib/blog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/contrib/blog/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/blog/admin.py -------------------------------------------------------------------------------- /orun/contrib/blog/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/blog/apps.py -------------------------------------------------------------------------------- /orun/contrib/blog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/blog/models.py -------------------------------------------------------------------------------- /orun/contrib/blog/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/blog/urls.py -------------------------------------------------------------------------------- /orun/contrib/blog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/blog/views.py -------------------------------------------------------------------------------- /orun/contrib/comments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/contrib/comments/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/comments/apps.py -------------------------------------------------------------------------------- /orun/contrib/comments/fixtures/mail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/comments/fixtures/mail.xml -------------------------------------------------------------------------------- /orun/contrib/comments/fixtures/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/comments/fixtures/menu.xml -------------------------------------------------------------------------------- /orun/contrib/comments/fixtures/views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/comments/fixtures/views.xml -------------------------------------------------------------------------------- /orun/contrib/comments/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/comments/models/__init__.py -------------------------------------------------------------------------------- /orun/contrib/comments/models/activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/comments/models/activity.py -------------------------------------------------------------------------------- /orun/contrib/comments/models/alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/comments/models/alias.py -------------------------------------------------------------------------------- /orun/contrib/comments/models/approval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/comments/models/approval.py -------------------------------------------------------------------------------- /orun/contrib/comments/models/channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/comments/models/channels.py -------------------------------------------------------------------------------- /orun/contrib/comments/models/follower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/comments/models/follower.py -------------------------------------------------------------------------------- /orun/contrib/comments/models/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/comments/models/message.py -------------------------------------------------------------------------------- /orun/contrib/comments/models/partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/comments/models/partner.py -------------------------------------------------------------------------------- /orun/contrib/contacts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/contrib/contacts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/contacts/apps.py -------------------------------------------------------------------------------- /orun/contrib/contacts/fixtures/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/contacts/fixtures/menu.xml -------------------------------------------------------------------------------- /orun/contrib/contacts/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/contrib/contenttypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/contrib/contenttypes/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/contenttypes/apps.py -------------------------------------------------------------------------------- /orun/contrib/contenttypes/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/contenttypes/checks.py -------------------------------------------------------------------------------- /orun/contrib/contenttypes/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/contenttypes/fields.py -------------------------------------------------------------------------------- /orun/contrib/contenttypes/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/contenttypes/forms.py -------------------------------------------------------------------------------- /orun/contrib/contenttypes/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/contenttypes/storage.py -------------------------------------------------------------------------------- /orun/contrib/contenttypes/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/contenttypes/views.py -------------------------------------------------------------------------------- /orun/contrib/erp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/erp/__init__.py -------------------------------------------------------------------------------- /orun/contrib/erp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/erp/apps.py -------------------------------------------------------------------------------- /orun/contrib/erp/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/erp/fields.py -------------------------------------------------------------------------------- /orun/contrib/erp/fixtures/actions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/erp/fixtures/actions.xml -------------------------------------------------------------------------------- /orun/contrib/erp/fixtures/country.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/erp/fixtures/country.xml -------------------------------------------------------------------------------- /orun/contrib/erp/fixtures/currency.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/erp/fixtures/currency.xml -------------------------------------------------------------------------------- /orun/contrib/erp/fixtures/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/erp/fixtures/menu.xml -------------------------------------------------------------------------------- /orun/contrib/erp/fixtures/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/erp/fixtures/modules.xml -------------------------------------------------------------------------------- /orun/contrib/erp/fixtures/partner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/erp/fixtures/partner.xml -------------------------------------------------------------------------------- /orun/contrib/erp/fixtures/views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/erp/fixtures/views.xml -------------------------------------------------------------------------------- /orun/contrib/erp/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/contrib/erp/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/contrib/erp/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/erp/models/__init__.py -------------------------------------------------------------------------------- /orun/contrib/erp/models/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/erp/models/auth.py -------------------------------------------------------------------------------- /orun/contrib/erp/models/bank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/erp/models/bank.py -------------------------------------------------------------------------------- /orun/contrib/erp/models/company.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/erp/models/company.py -------------------------------------------------------------------------------- /orun/contrib/erp/models/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/erp/models/config.py -------------------------------------------------------------------------------- /orun/contrib/erp/models/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/erp/models/copy.py -------------------------------------------------------------------------------- /orun/contrib/erp/models/decimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/erp/models/decimal.py -------------------------------------------------------------------------------- /orun/contrib/erp/models/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/erp/models/http.py -------------------------------------------------------------------------------- /orun/contrib/erp/models/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/erp/models/locale.py -------------------------------------------------------------------------------- /orun/contrib/erp/models/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/erp/models/module.py -------------------------------------------------------------------------------- /orun/contrib/erp/models/partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/erp/models/partner.py -------------------------------------------------------------------------------- /orun/contrib/erp/models/sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/erp/models/sequence.py -------------------------------------------------------------------------------- /orun/contrib/erp/static/erp/gears.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/erp/static/erp/gears.svg -------------------------------------------------------------------------------- /orun/contrib/extra/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/contrib/mail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/contrib/mail/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/mail/apps.py -------------------------------------------------------------------------------- /orun/contrib/mail/fixtures/mail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/mail/fixtures/mail.xml -------------------------------------------------------------------------------- /orun/contrib/mail/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/mail/models.py -------------------------------------------------------------------------------- /orun/contrib/messages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/messages/__init__.py -------------------------------------------------------------------------------- /orun/contrib/messages/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/messages/api.py -------------------------------------------------------------------------------- /orun/contrib/messages/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/messages/apps.py -------------------------------------------------------------------------------- /orun/contrib/messages/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/messages/constants.py -------------------------------------------------------------------------------- /orun/contrib/messages/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/messages/middleware.py -------------------------------------------------------------------------------- /orun/contrib/messages/storage/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/messages/storage/base.py -------------------------------------------------------------------------------- /orun/contrib/messages/storage/cookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/messages/storage/cookie.py -------------------------------------------------------------------------------- /orun/contrib/messages/storage/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/messages/storage/session.py -------------------------------------------------------------------------------- /orun/contrib/messages/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/messages/utils.py -------------------------------------------------------------------------------- /orun/contrib/messages/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/messages/views.py -------------------------------------------------------------------------------- /orun/contrib/sessions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/sessions/__init__.py -------------------------------------------------------------------------------- /orun/contrib/sessions/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/sessions/apps.py -------------------------------------------------------------------------------- /orun/contrib/sessions/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/contrib/sessions/backends/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/sessions/backends/base.py -------------------------------------------------------------------------------- /orun/contrib/sessions/backends/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/sessions/backends/db.py -------------------------------------------------------------------------------- /orun/contrib/sessions/backends/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/sessions/backends/file.py -------------------------------------------------------------------------------- /orun/contrib/sessions/base_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/sessions/base_session.py -------------------------------------------------------------------------------- /orun/contrib/sessions/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/sessions/exceptions.py -------------------------------------------------------------------------------- /orun/contrib/sessions/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/sessions/middleware.py -------------------------------------------------------------------------------- /orun/contrib/sessions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/contrib/sessions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/sessions/models.py -------------------------------------------------------------------------------- /orun/contrib/sessions/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/sessions/serializers.py -------------------------------------------------------------------------------- /orun/contrib/sites/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/contrib/sites/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/sites/admin.py -------------------------------------------------------------------------------- /orun/contrib/sites/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/sites/apps.py -------------------------------------------------------------------------------- /orun/contrib/sites/management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/sites/management.py -------------------------------------------------------------------------------- /orun/contrib/sites/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/sites/managers.py -------------------------------------------------------------------------------- /orun/contrib/sites/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/sites/middleware.py -------------------------------------------------------------------------------- /orun/contrib/sites/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/contrib/sites/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/sites/models.py -------------------------------------------------------------------------------- /orun/contrib/sites/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/sites/requests.py -------------------------------------------------------------------------------- /orun/contrib/sites/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/sites/shortcuts.py -------------------------------------------------------------------------------- /orun/contrib/sql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/contrib/sql/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/sql/apps.py -------------------------------------------------------------------------------- /orun/contrib/sql/fixtures/api.mssql.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/contrib/sql/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/contrib/staticfiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/contrib/staticfiles/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/staticfiles/apps.py -------------------------------------------------------------------------------- /orun/contrib/staticfiles/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/staticfiles/checks.py -------------------------------------------------------------------------------- /orun/contrib/staticfiles/finders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/staticfiles/finders.py -------------------------------------------------------------------------------- /orun/contrib/staticfiles/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/staticfiles/handlers.py -------------------------------------------------------------------------------- /orun/contrib/staticfiles/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/staticfiles/storage.py -------------------------------------------------------------------------------- /orun/contrib/staticfiles/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/contrib/staticfiles/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/staticfiles/testing.py -------------------------------------------------------------------------------- /orun/contrib/staticfiles/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/staticfiles/urls.py -------------------------------------------------------------------------------- /orun/contrib/staticfiles/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/staticfiles/utils.py -------------------------------------------------------------------------------- /orun/contrib/staticfiles/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/contrib/staticfiles/views.py -------------------------------------------------------------------------------- /orun/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/core/cache/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/cache/__init__.py -------------------------------------------------------------------------------- /orun/core/cache/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/core/cache/backends/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/cache/backends/base.py -------------------------------------------------------------------------------- /orun/core/cache/backends/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/cache/backends/db.py -------------------------------------------------------------------------------- /orun/core/cache/backends/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/cache/backends/dummy.py -------------------------------------------------------------------------------- /orun/core/cache/backends/filebased.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/cache/backends/filebased.py -------------------------------------------------------------------------------- /orun/core/cache/backends/locmem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/cache/backends/locmem.py -------------------------------------------------------------------------------- /orun/core/cache/backends/memcached.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/cache/backends/memcached.py -------------------------------------------------------------------------------- /orun/core/cache/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/cache/utils.py -------------------------------------------------------------------------------- /orun/core/checks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/checks/__init__.py -------------------------------------------------------------------------------- /orun/core/checks/caches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/checks/caches.py -------------------------------------------------------------------------------- /orun/core/checks/compatibility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/core/checks/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/checks/database.py -------------------------------------------------------------------------------- /orun/core/checks/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/checks/messages.py -------------------------------------------------------------------------------- /orun/core/checks/model_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/checks/model_checks.py -------------------------------------------------------------------------------- /orun/core/checks/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/checks/registry.py -------------------------------------------------------------------------------- /orun/core/checks/security/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/core/checks/security/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/checks/security/base.py -------------------------------------------------------------------------------- /orun/core/checks/security/csrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/checks/security/csrf.py -------------------------------------------------------------------------------- /orun/core/checks/security/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/checks/security/sessions.py -------------------------------------------------------------------------------- /orun/core/checks/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/checks/templates.py -------------------------------------------------------------------------------- /orun/core/checks/translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/checks/translation.py -------------------------------------------------------------------------------- /orun/core/checks/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/checks/urls.py -------------------------------------------------------------------------------- /orun/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/exceptions.py -------------------------------------------------------------------------------- /orun/core/files/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/files/__init__.py -------------------------------------------------------------------------------- /orun/core/files/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/files/base.py -------------------------------------------------------------------------------- /orun/core/files/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/files/images.py -------------------------------------------------------------------------------- /orun/core/files/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/files/locks.py -------------------------------------------------------------------------------- /orun/core/files/move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/files/move.py -------------------------------------------------------------------------------- /orun/core/files/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/files/storage.py -------------------------------------------------------------------------------- /orun/core/files/temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/files/temp.py -------------------------------------------------------------------------------- /orun/core/files/uploadedfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/files/uploadedfile.py -------------------------------------------------------------------------------- /orun/core/files/uploadhandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/files/uploadhandler.py -------------------------------------------------------------------------------- /orun/core/files/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/files/utils.py -------------------------------------------------------------------------------- /orun/core/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/core/handlers/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/handlers/asgi.py -------------------------------------------------------------------------------- /orun/core/handlers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/handlers/base.py -------------------------------------------------------------------------------- /orun/core/handlers/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/handlers/exception.py -------------------------------------------------------------------------------- /orun/core/handlers/ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/handlers/ws.py -------------------------------------------------------------------------------- /orun/core/handlers/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/handlers/wsgi.py -------------------------------------------------------------------------------- /orun/core/mail/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/mail/__init__.py -------------------------------------------------------------------------------- /orun/core/mail/backends/__init__.py: -------------------------------------------------------------------------------- 1 | # Mail backends shipped with Orun. 2 | -------------------------------------------------------------------------------- /orun/core/mail/backends/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/mail/backends/base.py -------------------------------------------------------------------------------- /orun/core/mail/backends/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/mail/backends/console.py -------------------------------------------------------------------------------- /orun/core/mail/backends/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/mail/backends/dummy.py -------------------------------------------------------------------------------- /orun/core/mail/backends/filebased.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/mail/backends/filebased.py -------------------------------------------------------------------------------- /orun/core/mail/backends/locmem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/mail/backends/locmem.py -------------------------------------------------------------------------------- /orun/core/mail/backends/smtp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/mail/backends/smtp.py -------------------------------------------------------------------------------- /orun/core/mail/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/mail/message.py -------------------------------------------------------------------------------- /orun/core/mail/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/mail/utils.py -------------------------------------------------------------------------------- /orun/core/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/management/__init__.py -------------------------------------------------------------------------------- /orun/core/management/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/management/base.py -------------------------------------------------------------------------------- /orun/core/management/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/management/color.py -------------------------------------------------------------------------------- /orun/core/management/commands/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/management/commands/check.py -------------------------------------------------------------------------------- /orun/core/management/commands/flush.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/management/commands/flush.py -------------------------------------------------------------------------------- /orun/core/management/commands/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/management/commands/shell.py -------------------------------------------------------------------------------- /orun/core/management/commands/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/management/commands/test.py -------------------------------------------------------------------------------- /orun/core/management/sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/management/sql.py -------------------------------------------------------------------------------- /orun/core/management/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/management/templates.py -------------------------------------------------------------------------------- /orun/core/management/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/management/utils.py -------------------------------------------------------------------------------- /orun/core/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/paginator.py -------------------------------------------------------------------------------- /orun/core/serializers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/serializers/__init__.py -------------------------------------------------------------------------------- /orun/core/serializers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/serializers/base.py -------------------------------------------------------------------------------- /orun/core/serializers/csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/serializers/csv.py -------------------------------------------------------------------------------- /orun/core/serializers/directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/serializers/directory.py -------------------------------------------------------------------------------- /orun/core/serializers/edi/__init__.py: -------------------------------------------------------------------------------- 1 | from .fields import * 2 | -------------------------------------------------------------------------------- /orun/core/serializers/edi/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/serializers/edi/base.py -------------------------------------------------------------------------------- /orun/core/serializers/edi/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/serializers/edi/fields.py -------------------------------------------------------------------------------- /orun/core/serializers/edi/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/serializers/edi/text.py -------------------------------------------------------------------------------- /orun/core/serializers/jinja2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/serializers/jinja2.py -------------------------------------------------------------------------------- /orun/core/serializers/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/serializers/json.py -------------------------------------------------------------------------------- /orun/core/serializers/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/serializers/python.py -------------------------------------------------------------------------------- /orun/core/serializers/pyyaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/serializers/pyyaml.py -------------------------------------------------------------------------------- /orun/core/serializers/sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/serializers/sql.py -------------------------------------------------------------------------------- /orun/core/servers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/core/servers/basehttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/servers/basehttp.py -------------------------------------------------------------------------------- /orun/core/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/signals.py -------------------------------------------------------------------------------- /orun/core/signing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/signing.py -------------------------------------------------------------------------------- /orun/core/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/validators.py -------------------------------------------------------------------------------- /orun/core/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/core/wsgi.py -------------------------------------------------------------------------------- /orun/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/data/datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/data/datasource.py -------------------------------------------------------------------------------- /orun/db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/__init__.py -------------------------------------------------------------------------------- /orun/db/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/db/backends/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/db/backends/base/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/base/base.py -------------------------------------------------------------------------------- /orun/db/backends/base/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/base/client.py -------------------------------------------------------------------------------- /orun/db/backends/base/creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/base/creation.py -------------------------------------------------------------------------------- /orun/db/backends/base/dialect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/base/dialect.py -------------------------------------------------------------------------------- /orun/db/backends/base/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/base/features.py -------------------------------------------------------------------------------- /orun/db/backends/base/introspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/base/introspection.py -------------------------------------------------------------------------------- /orun/db/backends/base/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/base/operations.py -------------------------------------------------------------------------------- /orun/db/backends/base/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/base/schema.py -------------------------------------------------------------------------------- /orun/db/backends/base/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/base/validation.py -------------------------------------------------------------------------------- /orun/db/backends/base/vsql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/base/vsql.py -------------------------------------------------------------------------------- /orun/db/backends/ddl_references.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/ddl_references.py -------------------------------------------------------------------------------- /orun/db/backends/dummy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/db/backends/dummy/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/dummy/base.py -------------------------------------------------------------------------------- /orun/db/backends/dummy/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/dummy/features.py -------------------------------------------------------------------------------- /orun/db/backends/mssql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/db/backends/mssql/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/mssql/base.py -------------------------------------------------------------------------------- /orun/db/backends/mssql/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/mssql/client.py -------------------------------------------------------------------------------- /orun/db/backends/mssql/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/mssql/compiler.py -------------------------------------------------------------------------------- /orun/db/backends/mssql/creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/mssql/creation.py -------------------------------------------------------------------------------- /orun/db/backends/mssql/dialect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/mssql/dialect.py -------------------------------------------------------------------------------- /orun/db/backends/mssql/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/mssql/features.py -------------------------------------------------------------------------------- /orun/db/backends/mssql/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/mssql/operations.py -------------------------------------------------------------------------------- /orun/db/backends/mssql/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/mssql/schema.py -------------------------------------------------------------------------------- /orun/db/backends/mssql/vsql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/mssql/vsql.py -------------------------------------------------------------------------------- /orun/db/backends/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/db/backends/mysql/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/mysql/base.py -------------------------------------------------------------------------------- /orun/db/backends/mysql/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/mysql/client.py -------------------------------------------------------------------------------- /orun/db/backends/mysql/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/mysql/compiler.py -------------------------------------------------------------------------------- /orun/db/backends/mysql/creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/mysql/creation.py -------------------------------------------------------------------------------- /orun/db/backends/mysql/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/mysql/features.py -------------------------------------------------------------------------------- /orun/db/backends/mysql/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/mysql/operations.py -------------------------------------------------------------------------------- /orun/db/backends/mysql/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/mysql/schema.py -------------------------------------------------------------------------------- /orun/db/backends/mysql/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/mysql/validation.py -------------------------------------------------------------------------------- /orun/db/backends/oracle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/db/backends/oracle/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/oracle/base.py -------------------------------------------------------------------------------- /orun/db/backends/oracle/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/oracle/client.py -------------------------------------------------------------------------------- /orun/db/backends/oracle/creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/oracle/creation.py -------------------------------------------------------------------------------- /orun/db/backends/oracle/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/oracle/features.py -------------------------------------------------------------------------------- /orun/db/backends/oracle/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/oracle/functions.py -------------------------------------------------------------------------------- /orun/db/backends/oracle/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/oracle/operations.py -------------------------------------------------------------------------------- /orun/db/backends/oracle/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/oracle/schema.py -------------------------------------------------------------------------------- /orun/db/backends/oracle/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/oracle/utils.py -------------------------------------------------------------------------------- /orun/db/backends/oracle/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/oracle/validation.py -------------------------------------------------------------------------------- /orun/db/backends/postgresql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/db/backends/postgresql/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/postgresql/base.py -------------------------------------------------------------------------------- /orun/db/backends/postgresql/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/postgresql/client.py -------------------------------------------------------------------------------- /orun/db/backends/postgresql/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/postgresql/schema.py -------------------------------------------------------------------------------- /orun/db/backends/postgresql/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/postgresql/utils.py -------------------------------------------------------------------------------- /orun/db/backends/postgresql/vsql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/postgresql/vsql.py -------------------------------------------------------------------------------- /orun/db/backends/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/signals.py -------------------------------------------------------------------------------- /orun/db/backends/sqlite3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/db/backends/sqlite3/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/sqlite3/base.py -------------------------------------------------------------------------------- /orun/db/backends/sqlite3/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/sqlite3/client.py -------------------------------------------------------------------------------- /orun/db/backends/sqlite3/creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/sqlite3/creation.py -------------------------------------------------------------------------------- /orun/db/backends/sqlite3/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/sqlite3/features.py -------------------------------------------------------------------------------- /orun/db/backends/sqlite3/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/sqlite3/operations.py -------------------------------------------------------------------------------- /orun/db/backends/sqlite3/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/sqlite3/schema.py -------------------------------------------------------------------------------- /orun/db/backends/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/backends/utils.py -------------------------------------------------------------------------------- /orun/db/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/metadata.py -------------------------------------------------------------------------------- /orun/db/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/__init__.py -------------------------------------------------------------------------------- /orun/db/models/_lookups.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/db/models/_lookups/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/_lookups/__init__.py -------------------------------------------------------------------------------- /orun/db/models/_lookups/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/_lookups/search.py -------------------------------------------------------------------------------- /orun/db/models/aggregates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/aggregates.py -------------------------------------------------------------------------------- /orun/db/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/base.py -------------------------------------------------------------------------------- /orun/db/models/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/constants.py -------------------------------------------------------------------------------- /orun/db/models/constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/constraints.py -------------------------------------------------------------------------------- /orun/db/models/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/decorators.py -------------------------------------------------------------------------------- /orun/db/models/deletion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/deletion.py -------------------------------------------------------------------------------- /orun/db/models/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/enums.py -------------------------------------------------------------------------------- /orun/db/models/expressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/expressions.py -------------------------------------------------------------------------------- /orun/db/models/fields/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/fields/__init__.py -------------------------------------------------------------------------------- /orun/db/models/fields/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/fields/events.py -------------------------------------------------------------------------------- /orun/db/models/fields/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/fields/files.py -------------------------------------------------------------------------------- /orun/db/models/fields/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/fields/json.py -------------------------------------------------------------------------------- /orun/db/models/fields/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/fields/mixins.py -------------------------------------------------------------------------------- /orun/db/models/fields/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/fields/proxy.py -------------------------------------------------------------------------------- /orun/db/models/fields/related.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/fields/related.py -------------------------------------------------------------------------------- /orun/db/models/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/functions/__init__.py -------------------------------------------------------------------------------- /orun/db/models/functions/comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/functions/comparison.py -------------------------------------------------------------------------------- /orun/db/models/functions/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/functions/datetime.py -------------------------------------------------------------------------------- /orun/db/models/functions/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/functions/math.py -------------------------------------------------------------------------------- /orun/db/models/functions/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/functions/mixins.py -------------------------------------------------------------------------------- /orun/db/models/functions/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/functions/text.py -------------------------------------------------------------------------------- /orun/db/models/functions/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/functions/window.py -------------------------------------------------------------------------------- /orun/db/models/indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/indexes.py -------------------------------------------------------------------------------- /orun/db/models/lookups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/lookups.py -------------------------------------------------------------------------------- /orun/db/models/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/manager.py -------------------------------------------------------------------------------- /orun/db/models/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/options.py -------------------------------------------------------------------------------- /orun/db/models/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/query.py -------------------------------------------------------------------------------- /orun/db/models/query_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/query_utils.py -------------------------------------------------------------------------------- /orun/db/models/recordset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/recordset.py -------------------------------------------------------------------------------- /orun/db/models/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/shortcuts.py -------------------------------------------------------------------------------- /orun/db/models/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/signals.py -------------------------------------------------------------------------------- /orun/db/models/sql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/sql/__init__.py -------------------------------------------------------------------------------- /orun/db/models/sql/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/sql/compiler.py -------------------------------------------------------------------------------- /orun/db/models/sql/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/sql/constants.py -------------------------------------------------------------------------------- /orun/db/models/sql/datastructures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/sql/datastructures.py -------------------------------------------------------------------------------- /orun/db/models/sql/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/sql/query.py -------------------------------------------------------------------------------- /orun/db/models/sql/subqueries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/sql/subqueries.py -------------------------------------------------------------------------------- /orun/db/models/sql/where.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/sql/where.py -------------------------------------------------------------------------------- /orun/db/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/utils.py -------------------------------------------------------------------------------- /orun/db/models/vsql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/models/vsql.py -------------------------------------------------------------------------------- /orun/db/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/transaction.py -------------------------------------------------------------------------------- /orun/db/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/utils.py -------------------------------------------------------------------------------- /orun/db/vsql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/vsql/__init__.py -------------------------------------------------------------------------------- /orun/db/vsql/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/vsql/base.py -------------------------------------------------------------------------------- /orun/db/vsql/dialect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/vsql/dialect.py -------------------------------------------------------------------------------- /orun/db/vsql/functions.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/db/vsql/triggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/vsql/triggers.py -------------------------------------------------------------------------------- /orun/db/vsql/vast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/db/vsql/vast.py -------------------------------------------------------------------------------- /orun/db/vsql/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/dispatch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/dispatch/__init__.py -------------------------------------------------------------------------------- /orun/dispatch/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/dispatch/dispatcher.py -------------------------------------------------------------------------------- /orun/dispatch/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/dispatch/license.txt -------------------------------------------------------------------------------- /orun/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/forms/__init__.py -------------------------------------------------------------------------------- /orun/forms/boundfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/forms/boundfield.py -------------------------------------------------------------------------------- /orun/forms/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/forms/fields.py -------------------------------------------------------------------------------- /orun/forms/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/forms/forms.py -------------------------------------------------------------------------------- /orun/forms/formsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/forms/formsets.py -------------------------------------------------------------------------------- /orun/forms/jinja2/orun/forms/widgets/checkbox.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/jinja2/orun/forms/widgets/checkbox_option.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input_option.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/jinja2/orun/forms/widgets/checkbox_select.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/multiple_input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/jinja2/orun/forms/widgets/date.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/jinja2/orun/forms/widgets/datetime.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/jinja2/orun/forms/widgets/email.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/jinja2/orun/forms/widgets/file.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/jinja2/orun/forms/widgets/hidden.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/jinja2/orun/forms/widgets/number.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/jinja2/orun/forms/widgets/password.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/jinja2/orun/forms/widgets/radio.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/multiple_input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/jinja2/orun/forms/widgets/radio_option.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input_option.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/jinja2/orun/forms/widgets/text.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/jinja2/orun/forms/widgets/time.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/jinja2/orun/forms/widgets/url.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/forms/models.py -------------------------------------------------------------------------------- /orun/forms/renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/forms/renderers.py -------------------------------------------------------------------------------- /orun/forms/templates/orun/forms/widgets/checkbox.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/templates/orun/forms/widgets/checkbox_option.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input_option.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/templates/orun/forms/widgets/checkbox_select.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/multiple_input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/templates/orun/forms/widgets/date.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/templates/orun/forms/widgets/datetime.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/templates/orun/forms/widgets/email.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/templates/orun/forms/widgets/file.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/templates/orun/forms/widgets/hidden.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/templates/orun/forms/widgets/number.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/templates/orun/forms/widgets/password.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/templates/orun/forms/widgets/radio.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/multiple_input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/templates/orun/forms/widgets/radio_option.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input_option.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/templates/orun/forms/widgets/text.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/templates/orun/forms/widgets/time.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/templates/orun/forms/widgets/url.html: -------------------------------------------------------------------------------- 1 | {% include "orun/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /orun/forms/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/forms/utils.py -------------------------------------------------------------------------------- /orun/forms/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/forms/widgets.py -------------------------------------------------------------------------------- /orun/html/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/html/base.py -------------------------------------------------------------------------------- /orun/html/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/html/components/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/html/components/table.py -------------------------------------------------------------------------------- /orun/http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/http/__init__.py -------------------------------------------------------------------------------- /orun/http/cookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/http/cookie.py -------------------------------------------------------------------------------- /orun/http/multipartparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/http/multipartparser.py -------------------------------------------------------------------------------- /orun/http/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/http/request.py -------------------------------------------------------------------------------- /orun/http/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/http/response.py -------------------------------------------------------------------------------- /orun/messages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/messages/__init__.py -------------------------------------------------------------------------------- /orun/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/middleware/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/middleware/cache.py -------------------------------------------------------------------------------- /orun/middleware/clickjacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/middleware/clickjacking.py -------------------------------------------------------------------------------- /orun/middleware/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/middleware/common.py -------------------------------------------------------------------------------- /orun/middleware/csrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/middleware/csrf.py -------------------------------------------------------------------------------- /orun/middleware/gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/middleware/gzip.py -------------------------------------------------------------------------------- /orun/middleware/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/middleware/http.py -------------------------------------------------------------------------------- /orun/middleware/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/middleware/locale.py -------------------------------------------------------------------------------- /orun/middleware/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/middleware/security.py -------------------------------------------------------------------------------- /orun/reports/__init__.py: -------------------------------------------------------------------------------- 1 | from .data import default_connection 2 | -------------------------------------------------------------------------------- /orun/reports/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/reports/base.py -------------------------------------------------------------------------------- /orun/reports/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/reports/data.py -------------------------------------------------------------------------------- /orun/reports/engines/__init__.py: -------------------------------------------------------------------------------- 1 | from .base import * 2 | -------------------------------------------------------------------------------- /orun/reports/engines/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/reports/engines/base.py -------------------------------------------------------------------------------- /orun/reports/engines/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/reports/engines/html.py -------------------------------------------------------------------------------- /orun/reports/engines/pug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/reports/engines/pug.py -------------------------------------------------------------------------------- /orun/reports/engines/reptile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/reports/engines/reptile.py -------------------------------------------------------------------------------- /orun/reports/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/reports/filters.py -------------------------------------------------------------------------------- /orun/reports/graph.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/reports/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/reports/objects.py -------------------------------------------------------------------------------- /orun/reports/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/reports/page.py -------------------------------------------------------------------------------- /orun/reports/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/reports/params.py -------------------------------------------------------------------------------- /orun/reports/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/reports/runtime.py -------------------------------------------------------------------------------- /orun/reports/totals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/reports/totals.py -------------------------------------------------------------------------------- /orun/reports/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/reports/utils.py -------------------------------------------------------------------------------- /orun/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/shortcuts.py -------------------------------------------------------------------------------- /orun/template/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/template/__init__.py -------------------------------------------------------------------------------- /orun/template/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/template/backends/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/template/backends/base.py -------------------------------------------------------------------------------- /orun/template/backends/django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/template/backends/django.py -------------------------------------------------------------------------------- /orun/template/backends/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/template/backends/dummy.py -------------------------------------------------------------------------------- /orun/template/backends/jinja2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/template/backends/jinja2.py -------------------------------------------------------------------------------- /orun/template/backends/pug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/template/backends/pug.py -------------------------------------------------------------------------------- /orun/template/backends/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/template/backends/utils.py -------------------------------------------------------------------------------- /orun/template/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/template/base.py -------------------------------------------------------------------------------- /orun/template/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/template/context.py -------------------------------------------------------------------------------- /orun/template/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/template/context_processors.py -------------------------------------------------------------------------------- /orun/template/defaultfilters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/template/defaultfilters.py -------------------------------------------------------------------------------- /orun/template/defaulttags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/template/defaulttags.py -------------------------------------------------------------------------------- /orun/template/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/template/engine.py -------------------------------------------------------------------------------- /orun/template/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/template/exceptions.py -------------------------------------------------------------------------------- /orun/template/library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/template/library.py -------------------------------------------------------------------------------- /orun/template/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/template/loader.py -------------------------------------------------------------------------------- /orun/template/loader_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/template/loader_tags.py -------------------------------------------------------------------------------- /orun/template/loaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/template/loaders/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/template/loaders/base.py -------------------------------------------------------------------------------- /orun/template/loaders/cached.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/template/loaders/cached.py -------------------------------------------------------------------------------- /orun/template/loaders/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/template/loaders/filesystem.py -------------------------------------------------------------------------------- /orun/template/loaders/locmem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/template/loaders/locmem.py -------------------------------------------------------------------------------- /orun/template/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/template/response.py -------------------------------------------------------------------------------- /orun/template/smartif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/template/smartif.py -------------------------------------------------------------------------------- /orun/template/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/template/utils.py -------------------------------------------------------------------------------- /orun/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/templatetags/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/templatetags/cache.py -------------------------------------------------------------------------------- /orun/templatetags/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/templatetags/i18n.py -------------------------------------------------------------------------------- /orun/templatetags/l10n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/templatetags/l10n.py -------------------------------------------------------------------------------- /orun/templatetags/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/templatetags/static.py -------------------------------------------------------------------------------- /orun/templatetags/tz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/templatetags/tz.py -------------------------------------------------------------------------------- /orun/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/test/__init__.py -------------------------------------------------------------------------------- /orun/test/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/test/client.py -------------------------------------------------------------------------------- /orun/test/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/test/html.py -------------------------------------------------------------------------------- /orun/test/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/test/runner.py -------------------------------------------------------------------------------- /orun/test/selenium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/test/selenium.py -------------------------------------------------------------------------------- /orun/test/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/test/signals.py -------------------------------------------------------------------------------- /orun/test/testcases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/test/testcases.py -------------------------------------------------------------------------------- /orun/test/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/test/utils.py -------------------------------------------------------------------------------- /orun/urls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/urls/__init__.py -------------------------------------------------------------------------------- /orun/urls/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/urls/base.py -------------------------------------------------------------------------------- /orun/urls/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/urls/conf.py -------------------------------------------------------------------------------- /orun/urls/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/urls/converters.py -------------------------------------------------------------------------------- /orun/urls/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/urls/exceptions.py -------------------------------------------------------------------------------- /orun/urls/resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/urls/resolvers.py -------------------------------------------------------------------------------- /orun/urls/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/urls/utils.py -------------------------------------------------------------------------------- /orun/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/utils/_os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/_os.py -------------------------------------------------------------------------------- /orun/utils/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/archive.py -------------------------------------------------------------------------------- /orun/utils/autoreload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/autoreload.py -------------------------------------------------------------------------------- /orun/utils/baseconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/baseconv.py -------------------------------------------------------------------------------- /orun/utils/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/cache.py -------------------------------------------------------------------------------- /orun/utils/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/crypto.py -------------------------------------------------------------------------------- /orun/utils/datastructures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/datastructures.py -------------------------------------------------------------------------------- /orun/utils/dateformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/dateformat.py -------------------------------------------------------------------------------- /orun/utils/dateparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/dateparse.py -------------------------------------------------------------------------------- /orun/utils/dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/dates.py -------------------------------------------------------------------------------- /orun/utils/datetime_safe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/datetime_safe.py -------------------------------------------------------------------------------- /orun/utils/deconstruct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/deconstruct.py -------------------------------------------------------------------------------- /orun/utils/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/decorators.py -------------------------------------------------------------------------------- /orun/utils/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/deprecation.py -------------------------------------------------------------------------------- /orun/utils/duration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/duration.py -------------------------------------------------------------------------------- /orun/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/encoding.py -------------------------------------------------------------------------------- /orun/utils/feedgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/feedgenerator.py -------------------------------------------------------------------------------- /orun/utils/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/filters.py -------------------------------------------------------------------------------- /orun/utils/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/formats.py -------------------------------------------------------------------------------- /orun/utils/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/functional.py -------------------------------------------------------------------------------- /orun/utils/hashable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/hashable.py -------------------------------------------------------------------------------- /orun/utils/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/html.py -------------------------------------------------------------------------------- /orun/utils/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/http.py -------------------------------------------------------------------------------- /orun/utils/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/i18n.py -------------------------------------------------------------------------------- /orun/utils/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/inspect.py -------------------------------------------------------------------------------- /orun/utils/ipv6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/ipv6.py -------------------------------------------------------------------------------- /orun/utils/itercompat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/itercompat.py -------------------------------------------------------------------------------- /orun/utils/jslex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/jslex.py -------------------------------------------------------------------------------- /orun/utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/log.py -------------------------------------------------------------------------------- /orun/utils/lorem_ipsum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/lorem_ipsum.py -------------------------------------------------------------------------------- /orun/utils/lru_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/lru_cache.py -------------------------------------------------------------------------------- /orun/utils/module_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/module_loading.py -------------------------------------------------------------------------------- /orun/utils/numberformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/numberformat.py -------------------------------------------------------------------------------- /orun/utils/regex_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/regex_helper.py -------------------------------------------------------------------------------- /orun/utils/safestring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/safestring.py -------------------------------------------------------------------------------- /orun/utils/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/six.py -------------------------------------------------------------------------------- /orun/utils/termcolors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/termcolors.py -------------------------------------------------------------------------------- /orun/utils/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/text.py -------------------------------------------------------------------------------- /orun/utils/timesince.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/timesince.py -------------------------------------------------------------------------------- /orun/utils/timezone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/timezone.py -------------------------------------------------------------------------------- /orun/utils/topological_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/topological_sort.py -------------------------------------------------------------------------------- /orun/utils/translation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/translation/__init__.py -------------------------------------------------------------------------------- /orun/utils/translation/reloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/translation/reloader.py -------------------------------------------------------------------------------- /orun/utils/translation/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/translation/template.py -------------------------------------------------------------------------------- /orun/utils/translation/trans_null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/translation/trans_null.py -------------------------------------------------------------------------------- /orun/utils/translation/trans_real.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/translation/trans_real.py -------------------------------------------------------------------------------- /orun/utils/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/tree.py -------------------------------------------------------------------------------- /orun/utils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/version.py -------------------------------------------------------------------------------- /orun/utils/xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/xml.py -------------------------------------------------------------------------------- /orun/utils/xmlutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/utils/xmlutils.py -------------------------------------------------------------------------------- /orun/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/views/__init__.py -------------------------------------------------------------------------------- /orun/views/csrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/views/csrf.py -------------------------------------------------------------------------------- /orun/views/dash/__init__.py: -------------------------------------------------------------------------------- 1 | from .dashboard import Graph, Bar 2 | -------------------------------------------------------------------------------- /orun/views/dash/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/views/dash/dashboard.py -------------------------------------------------------------------------------- /orun/views/dash/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/views/dash/html.py -------------------------------------------------------------------------------- /orun/views/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/views/debug.py -------------------------------------------------------------------------------- /orun/views/decorators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orun/views/decorators/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/views/decorators/cache.py -------------------------------------------------------------------------------- /orun/views/decorators/clickjacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/views/decorators/clickjacking.py -------------------------------------------------------------------------------- /orun/views/decorators/csrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/views/decorators/csrf.py -------------------------------------------------------------------------------- /orun/views/decorators/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/views/decorators/debug.py -------------------------------------------------------------------------------- /orun/views/decorators/gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/views/decorators/gzip.py -------------------------------------------------------------------------------- /orun/views/decorators/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/views/decorators/http.py -------------------------------------------------------------------------------- /orun/views/decorators/portlet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/views/decorators/portlet.py -------------------------------------------------------------------------------- /orun/views/decorators/vary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/views/decorators/vary.py -------------------------------------------------------------------------------- /orun/views/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/views/defaults.py -------------------------------------------------------------------------------- /orun/views/generic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/views/generic/__init__.py -------------------------------------------------------------------------------- /orun/views/generic/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/views/generic/base.py -------------------------------------------------------------------------------- /orun/views/generic/dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/views/generic/dates.py -------------------------------------------------------------------------------- /orun/views/generic/detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/views/generic/detail.py -------------------------------------------------------------------------------- /orun/views/generic/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/views/generic/edit.py -------------------------------------------------------------------------------- /orun/views/generic/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/views/generic/list.py -------------------------------------------------------------------------------- /orun/views/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/views/i18n.py -------------------------------------------------------------------------------- /orun/views/portlets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/views/portlets.py -------------------------------------------------------------------------------- /orun/views/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/views/registry.py -------------------------------------------------------------------------------- /orun/views/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/views/static.py -------------------------------------------------------------------------------- /orun/views/templates/technical_500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/orun/views/templates/technical_500.txt -------------------------------------------------------------------------------- /tests/json_field/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/json_field/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/tests/json_field/models.py -------------------------------------------------------------------------------- /tests/json_field/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/tests/json_field/tests.py -------------------------------------------------------------------------------- /tests/record_signals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/record_signals/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/tests/record_signals/apps.py -------------------------------------------------------------------------------- /tests/record_signals/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/tests/record_signals/models.py -------------------------------------------------------------------------------- /tests/record_signals/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/tests/record_signals/tests.py -------------------------------------------------------------------------------- /tests/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/tests/runtests.py -------------------------------------------------------------------------------- /tests/test_sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katrid/orun/HEAD/tests/test_sqlite.py --------------------------------------------------------------------------------