├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE ├── README.rst ├── docs ├── Makefile ├── _static │ ├── example-1.png │ └── example-2.png ├── build ├── conf.py ├── index.rst ├── jsdoc │ ├── _global_.rst │ ├── jQuery.fn.booleanField.rst │ ├── jQuery.fn.charField.rst │ ├── jQuery.fn.choicesField.rst │ ├── jQuery.fn.dateField.rst │ ├── jQuery.fn.datetimeField.rst │ ├── jQuery.fn.foreignkeyField.rst │ ├── jQuery.fn.foreignkeyFieldSelect.rst │ ├── jQuery.fn.manytomanyField.rst │ ├── jQuery.fn.rst │ ├── jQuery.fn.textField.rst │ ├── jQuery.rst │ └── toc.rst ├── make.bat ├── requirements.txt └── topics │ ├── adaptors.rst │ ├── adaptors │ ├── base.rst │ ├── boolean.rst │ ├── char.rst │ ├── choices.rst │ ├── date.rst │ ├── foreignkey.rst │ ├── manytomany.rst │ └── text.rst │ ├── develop │ ├── documentation.rst │ ├── env.rst │ └── tests.rst │ ├── developers.rst │ ├── installation.rst │ ├── javascriptapi.rst │ ├── options.rst │ ├── settings.rst │ ├── usage-examples.rst │ ├── utils.rst │ ├── widgets.rst │ └── widgets │ └── custom.rst ├── editlive ├── __init__.py ├── adaptors │ ├── __init__.py │ ├── base.py │ ├── boolean.py │ ├── char.py │ ├── choices.py │ ├── date.py │ ├── foreignkey.py │ ├── inlines.py │ ├── manytomany.py │ └── text.py ├── ajax.py ├── conf │ ├── __init__.py │ └── settings.py ├── docs_settings.py ├── layout.py ├── models.py ├── static │ └── editlive │ │ ├── Makefile │ │ ├── contrib │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ └── jquery-ui-bootstrap │ │ │ ├── README.md │ │ │ ├── css │ │ │ ├── demo.css │ │ │ ├── less │ │ │ │ ├── bootstrap │ │ │ │ │ ├── accordion.less │ │ │ │ │ ├── alerts.less │ │ │ │ │ ├── bootstrap.less │ │ │ │ │ ├── breadcrumbs.less │ │ │ │ │ ├── button-groups.less │ │ │ │ │ ├── buttons.less │ │ │ │ │ ├── carousel.less │ │ │ │ │ ├── close.less │ │ │ │ │ ├── code.less │ │ │ │ │ ├── component-animations.less │ │ │ │ │ ├── dropdowns.less │ │ │ │ │ ├── forms.less │ │ │ │ │ ├── grid.less │ │ │ │ │ ├── hero-unit.less │ │ │ │ │ ├── labels.less │ │ │ │ │ ├── layouts.less │ │ │ │ │ ├── mixins.less │ │ │ │ │ ├── modals.less │ │ │ │ │ ├── navbar.less │ │ │ │ │ ├── navs.less │ │ │ │ │ ├── pager.less │ │ │ │ │ ├── pagination.less │ │ │ │ │ ├── popovers.less │ │ │ │ │ ├── progress-bars.less │ │ │ │ │ ├── reset.less │ │ │ │ │ ├── responsive.less │ │ │ │ │ ├── scaffolding.less │ │ │ │ │ ├── sprites.less │ │ │ │ │ ├── tables.less │ │ │ │ │ ├── thumbnails.less │ │ │ │ │ ├── tooltip.less │ │ │ │ │ ├── type.less │ │ │ │ │ ├── utilities.less │ │ │ │ │ ├── variables.less │ │ │ │ │ └── wells.less │ │ │ │ ├── custom-theme │ │ │ │ │ ├── accordion.less │ │ │ │ │ ├── autocomplete.less │ │ │ │ │ ├── button.less │ │ │ │ │ ├── core.less │ │ │ │ │ ├── datepicker.less │ │ │ │ │ ├── dialog.less │ │ │ │ │ ├── icons.less │ │ │ │ │ ├── jquery-ui-bootstrap.less │ │ │ │ │ ├── menu.less │ │ │ │ │ ├── mixins.less │ │ │ │ │ ├── overlays.less │ │ │ │ │ ├── progressbar.less │ │ │ │ │ ├── resizable.less │ │ │ │ │ ├── selectable.less │ │ │ │ │ ├── slider.less │ │ │ │ │ ├── tabs.less │ │ │ │ │ ├── toolbar.less │ │ │ │ │ └── variables.less │ │ │ │ ├── custom.less │ │ │ │ └── style.less │ │ │ └── style.css │ │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ ├── glyphicons-halflings.png │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_75_ffffff_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-bg_inset-soft_95_fef1ec_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-icons_f6cf3b_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── bootstrap │ │ │ │ ├── .jshintrc │ │ │ │ ├── bootstrap-affix.js │ │ │ │ ├── bootstrap-alert.js │ │ │ │ ├── bootstrap-button.js │ │ │ │ ├── bootstrap-carousel.js │ │ │ │ ├── bootstrap-collapse.js │ │ │ │ ├── bootstrap-dropdown.js │ │ │ │ ├── bootstrap-modal.js │ │ │ │ ├── bootstrap-popover.js │ │ │ │ ├── bootstrap-scrollspy.js │ │ │ │ ├── bootstrap-tab.js │ │ │ │ ├── bootstrap-tooltip.js │ │ │ │ ├── bootstrap-transition.js │ │ │ │ ├── bootstrap-typeahead.js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── tests │ │ │ │ │ ├── index.html │ │ │ │ │ ├── phantom.js │ │ │ │ │ ├── server.js │ │ │ │ │ ├── unit │ │ │ │ │ ├── bootstrap-affix.js │ │ │ │ │ ├── bootstrap-alert.js │ │ │ │ │ ├── bootstrap-button.js │ │ │ │ │ ├── bootstrap-carousel.js │ │ │ │ │ ├── bootstrap-collapse.js │ │ │ │ │ ├── bootstrap-dropdown.js │ │ │ │ │ ├── bootstrap-modal.js │ │ │ │ │ ├── bootstrap-phantom.js │ │ │ │ │ ├── bootstrap-popover.js │ │ │ │ │ ├── bootstrap-scrollspy.js │ │ │ │ │ ├── bootstrap-tab.js │ │ │ │ │ ├── bootstrap-tooltip.js │ │ │ │ │ ├── bootstrap-transition.js │ │ │ │ │ └── bootstrap-typeahead.js │ │ │ │ │ └── vendor │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── qunit.css │ │ │ │ │ └── qunit.js │ │ │ ├── jquery-ui.custom.min.js │ │ │ ├── jquery.min.js │ │ │ ├── less.min.js │ │ │ └── modernizr-respond.min.js │ │ │ ├── less │ │ │ ├── bootstrap │ │ │ │ ├── accordion.less │ │ │ │ ├── alerts.less │ │ │ │ ├── bootstrap.less │ │ │ │ ├── breadcrumbs.less │ │ │ │ ├── button-groups.less │ │ │ │ ├── buttons.less │ │ │ │ ├── carousel.less │ │ │ │ ├── close.less │ │ │ │ ├── code.less │ │ │ │ ├── component-animations.less │ │ │ │ ├── dropdowns.less │ │ │ │ ├── forms.less │ │ │ │ ├── grid.less │ │ │ │ ├── hero-unit.less │ │ │ │ ├── labels-badges.less │ │ │ │ ├── layouts.less │ │ │ │ ├── mixins.less │ │ │ │ ├── modals.less │ │ │ │ ├── navbar.less │ │ │ │ ├── navs.less │ │ │ │ ├── pager.less │ │ │ │ ├── pagination.less │ │ │ │ ├── popovers.less │ │ │ │ ├── progress-bars.less │ │ │ │ ├── reset.less │ │ │ │ ├── responsive-1200px-min.less │ │ │ │ ├── responsive-767px-max.less │ │ │ │ ├── responsive-768px-979px.less │ │ │ │ ├── responsive-navbar.less │ │ │ │ ├── responsive-utilities.less │ │ │ │ ├── responsive.less │ │ │ │ ├── scaffolding.less │ │ │ │ ├── sprites.less │ │ │ │ ├── tables.less │ │ │ │ ├── thumbnails.less │ │ │ │ ├── tooltip.less │ │ │ │ ├── type.less │ │ │ │ ├── utilities.less │ │ │ │ ├── variables.less │ │ │ │ └── wells.less │ │ │ ├── custom.less │ │ │ ├── jq-ui-bootstrap │ │ │ │ ├── accordion.less │ │ │ │ ├── autocomplete.less │ │ │ │ ├── button.less │ │ │ │ ├── core.less │ │ │ │ ├── datepicker.less │ │ │ │ ├── dialog.less │ │ │ │ ├── icons.less │ │ │ │ ├── jq-ui-bootstrap.less │ │ │ │ ├── menu.less │ │ │ │ ├── mixins.less │ │ │ │ ├── overlays.less │ │ │ │ ├── progressbar.less │ │ │ │ ├── resizable.less │ │ │ │ ├── selectable.less │ │ │ │ ├── slider.less │ │ │ │ ├── tabs.less │ │ │ │ ├── toolbar.less │ │ │ │ └── variables.less │ │ │ ├── style.less │ │ │ └── thirdParty │ │ │ │ ├── enhanced.less │ │ │ │ ├── ui.daterangepicker.less │ │ │ │ └── wijmo-theming.less │ │ │ └── third-party │ │ │ ├── jQuery-UI-Date-Range-Picker │ │ │ ├── css │ │ │ │ └── ui.daterangepicker.css │ │ │ ├── index.html │ │ │ └── js │ │ │ │ ├── date.js │ │ │ │ ├── daterangepicker.jQuery.compressed.js │ │ │ │ └── daterangepicker.jQuery.js │ │ │ ├── jQuery-UI-Date-Time-Picker │ │ │ ├── jquery-ui-timepicker-addon.js │ │ │ └── jquery-ui-timepicker.css │ │ │ ├── jQuery-UI-FileInput │ │ │ ├── css │ │ │ │ └── enhanced.css │ │ │ ├── images │ │ │ │ ├── icon-generic.gif │ │ │ │ ├── icon-image.gif │ │ │ │ ├── icon-media.gif │ │ │ │ └── icon-zip.gif │ │ │ └── js │ │ │ │ ├── enhance.min.js │ │ │ │ └── fileinput.jquery.js │ │ │ └── wijmo │ │ │ ├── jquery.bgiframe-2.1.3-pre.js │ │ │ ├── jquery.mousewheel.min.js │ │ │ ├── jquery.wijmo-open.1.5.0.css │ │ │ └── jquery.wijmo-open.1.5.0.min.js │ │ ├── css │ │ └── editlive.css │ │ ├── js │ │ ├── jquery.editlive.ajaxform.js │ │ ├── jquery.editlive.boolean.js │ │ ├── jquery.editlive.char.js │ │ ├── jquery.editlive.choices.js │ │ ├── jquery.editlive.date.js │ │ ├── jquery.editlive.datetime.js │ │ ├── jquery.editlive.foreignkey.js │ │ ├── jquery.editlive.js │ │ ├── jquery.editlive.listactions.js │ │ ├── jquery.editlive.manytomany.js │ │ ├── jquery.editlive.sync.js │ │ └── jquery.editlive.text.js │ │ └── less │ │ ├── base.less │ │ ├── editlive.less │ │ ├── mixins.less │ │ └── utilities.less ├── templates │ └── editlive │ │ └── test │ │ ├── base.html │ │ ├── biginteger.html │ │ ├── boolean.html │ │ ├── char.html │ │ ├── commaseparatedinteger.html │ │ ├── date.html │ │ ├── datetime.html │ │ ├── decimal.html │ │ ├── default.html │ │ ├── email.html │ │ ├── file.html │ │ ├── filepath.html │ │ ├── float.html │ │ ├── genericipaddress.html │ │ ├── image.html │ │ ├── integer.html │ │ ├── ipaddress.html │ │ ├── nullboolean.html │ │ ├── positiveinteger.html │ │ ├── positivesmallinteger.html │ │ ├── slug.html │ │ ├── smallinteger.html │ │ ├── text.html │ │ ├── time.html │ │ └── url.html ├── templatetags │ ├── __init__.py │ └── editlive_tags.py ├── tests.py ├── urls.py ├── utils.py └── views.py ├── example_project ├── example_project │ ├── __init__.py │ ├── envs │ │ ├── __init__.py │ │ ├── common.py │ │ ├── dev.py │ │ ├── lettuce.py │ │ ├── lettuce_memory.py │ │ ├── local.py │ │ ├── local.py.dist │ │ └── util │ │ │ ├── __init__.py │ │ │ └── environment_settings.py │ ├── settings.py │ ├── settings.py-bak │ ├── terrain.py │ ├── urls.py │ └── wsgi.py ├── manage.py ├── requirements.txt ├── run-server ├── run-tests └── test_app │ ├── __init__.py │ ├── admin.py │ ├── features │ ├── char.feature │ ├── date.feature │ ├── datetime.feature │ ├── email.feature │ ├── float.feature │ ├── genericipaddress.feature │ ├── integer.feature │ ├── ipaddress.feature │ ├── positiveinteger.feature │ ├── positivesmallinteger.feature │ ├── slug.feature │ ├── smallinteger.feature │ ├── steps.py │ ├── terrain.py │ ├── text.feature │ └── time.feature │ ├── fixtures │ └── initial_data.json │ ├── models.py │ ├── static │ └── test_app │ │ └── img │ │ └── favicon.ico │ ├── templates │ └── test_app │ │ ├── base.html │ │ ├── home.html │ │ └── soup.html │ ├── tests.py │ ├── urls.py │ └── views.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/_static/example-1.png -------------------------------------------------------------------------------- /docs/_static/example-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/_static/example-2.png -------------------------------------------------------------------------------- /docs/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/build -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/jsdoc/_global_.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/jsdoc/_global_.rst -------------------------------------------------------------------------------- /docs/jsdoc/jQuery.fn.booleanField.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/jsdoc/jQuery.fn.booleanField.rst -------------------------------------------------------------------------------- /docs/jsdoc/jQuery.fn.charField.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/jsdoc/jQuery.fn.charField.rst -------------------------------------------------------------------------------- /docs/jsdoc/jQuery.fn.choicesField.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/jsdoc/jQuery.fn.choicesField.rst -------------------------------------------------------------------------------- /docs/jsdoc/jQuery.fn.dateField.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/jsdoc/jQuery.fn.dateField.rst -------------------------------------------------------------------------------- /docs/jsdoc/jQuery.fn.datetimeField.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/jsdoc/jQuery.fn.datetimeField.rst -------------------------------------------------------------------------------- /docs/jsdoc/jQuery.fn.foreignkeyField.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/jsdoc/jQuery.fn.foreignkeyField.rst -------------------------------------------------------------------------------- /docs/jsdoc/jQuery.fn.foreignkeyFieldSelect.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/jsdoc/jQuery.fn.foreignkeyFieldSelect.rst -------------------------------------------------------------------------------- /docs/jsdoc/jQuery.fn.manytomanyField.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/jsdoc/jQuery.fn.manytomanyField.rst -------------------------------------------------------------------------------- /docs/jsdoc/jQuery.fn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/jsdoc/jQuery.fn.rst -------------------------------------------------------------------------------- /docs/jsdoc/jQuery.fn.textField.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/jsdoc/jQuery.fn.textField.rst -------------------------------------------------------------------------------- /docs/jsdoc/jQuery.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/jsdoc/jQuery.rst -------------------------------------------------------------------------------- /docs/jsdoc/toc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/jsdoc/toc.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/topics/adaptors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/topics/adaptors.rst -------------------------------------------------------------------------------- /docs/topics/adaptors/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/topics/adaptors/base.rst -------------------------------------------------------------------------------- /docs/topics/adaptors/boolean.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/topics/adaptors/boolean.rst -------------------------------------------------------------------------------- /docs/topics/adaptors/char.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/topics/adaptors/char.rst -------------------------------------------------------------------------------- /docs/topics/adaptors/choices.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/topics/adaptors/choices.rst -------------------------------------------------------------------------------- /docs/topics/adaptors/date.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/topics/adaptors/date.rst -------------------------------------------------------------------------------- /docs/topics/adaptors/foreignkey.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/topics/adaptors/foreignkey.rst -------------------------------------------------------------------------------- /docs/topics/adaptors/manytomany.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/topics/adaptors/manytomany.rst -------------------------------------------------------------------------------- /docs/topics/adaptors/text.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/topics/adaptors/text.rst -------------------------------------------------------------------------------- /docs/topics/develop/documentation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/topics/develop/documentation.rst -------------------------------------------------------------------------------- /docs/topics/develop/env.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/topics/develop/env.rst -------------------------------------------------------------------------------- /docs/topics/develop/tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/topics/develop/tests.rst -------------------------------------------------------------------------------- /docs/topics/developers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/topics/developers.rst -------------------------------------------------------------------------------- /docs/topics/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/topics/installation.rst -------------------------------------------------------------------------------- /docs/topics/javascriptapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/topics/javascriptapi.rst -------------------------------------------------------------------------------- /docs/topics/options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/topics/options.rst -------------------------------------------------------------------------------- /docs/topics/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/topics/settings.rst -------------------------------------------------------------------------------- /docs/topics/usage-examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/topics/usage-examples.rst -------------------------------------------------------------------------------- /docs/topics/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/topics/utils.rst -------------------------------------------------------------------------------- /docs/topics/widgets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/topics/widgets.rst -------------------------------------------------------------------------------- /docs/topics/widgets/custom.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/docs/topics/widgets/custom.rst -------------------------------------------------------------------------------- /editlive/__init__.py: -------------------------------------------------------------------------------- 1 | """Django editlive 2 | 3 | .. moduleauthor:: Maxime Haineault 4 | 5 | """ 6 | 7 | VERSION = "0.0.1" 8 | -------------------------------------------------------------------------------- /editlive/adaptors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/adaptors/__init__.py -------------------------------------------------------------------------------- /editlive/adaptors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/adaptors/base.py -------------------------------------------------------------------------------- /editlive/adaptors/boolean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/adaptors/boolean.py -------------------------------------------------------------------------------- /editlive/adaptors/char.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/adaptors/char.py -------------------------------------------------------------------------------- /editlive/adaptors/choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/adaptors/choices.py -------------------------------------------------------------------------------- /editlive/adaptors/date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/adaptors/date.py -------------------------------------------------------------------------------- /editlive/adaptors/foreignkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/adaptors/foreignkey.py -------------------------------------------------------------------------------- /editlive/adaptors/inlines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/adaptors/inlines.py -------------------------------------------------------------------------------- /editlive/adaptors/manytomany.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/adaptors/manytomany.py -------------------------------------------------------------------------------- /editlive/adaptors/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/adaptors/text.py -------------------------------------------------------------------------------- /editlive/ajax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/ajax.py -------------------------------------------------------------------------------- /editlive/conf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /editlive/conf/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/conf/settings.py -------------------------------------------------------------------------------- /editlive/docs_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/docs_settings.py -------------------------------------------------------------------------------- /editlive/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/layout.py -------------------------------------------------------------------------------- /editlive/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/models.py -------------------------------------------------------------------------------- /editlive/static/editlive/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/Makefile -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/bootstrap/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/bootstrap/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/bootstrap/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/bootstrap/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/README.md -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/demo.css -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/accordion.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/accordion.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/alerts.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/bootstrap.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/breadcrumbs.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/button-groups.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/buttons.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/carousel.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/close.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/code.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/component-animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/component-animations.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/dropdowns.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/forms.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/grid.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/hero-unit.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/hero-unit.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/labels.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/layouts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/layouts.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/mixins.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/modals.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/navbar.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/navs.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/pager.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/pagination.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/popovers.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/progress-bars.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/reset.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/reset.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/responsive.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/responsive.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/scaffolding.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/sprites.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/sprites.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/tables.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/thumbnails.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/tooltip.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/type.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/utilities.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/variables.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/bootstrap/wells.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/accordion.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/accordion.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/autocomplete.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/autocomplete.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/button.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/button.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/core.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/datepicker.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/datepicker.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/dialog.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/dialog.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/icons.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/jquery-ui-bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/jquery-ui-bootstrap.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/menu.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/menu.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/mixins.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/overlays.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/overlays.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/progressbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/progressbar.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/resizable.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/resizable.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/selectable.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/selectable.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/slider.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/slider.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/tabs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/tabs.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/toolbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/toolbar.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom-theme/variables.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/custom.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/less/style.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/css/style.css -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-bg_glass_75_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-bg_glass_75_ffffff_1x400.png -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-bg_inset-soft_95_fef1ec_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-bg_inset-soft_95_fef1ec_1x100.png -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-icons_cccccc_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-icons_cccccc_256x240.png -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-icons_f6cf3b_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-icons_f6cf3b_256x240.png -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/img/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/index.html -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/.jshintrc -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-affix.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-alert.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-button.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-carousel.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-collapse.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-dropdown.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-modal.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-popover.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-scrollspy.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-tab.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-tooltip.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-transition.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-typeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap-typeahead.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/bootstrap.min.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/index.html -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/phantom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/phantom.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/server.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-affix.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-alert.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-button.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-carousel.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-collapse.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-dropdown.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-modal.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-phantom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-phantom.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-popover.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-scrollspy.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-tab.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-tooltip.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-transition.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-typeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/unit/bootstrap-typeahead.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/vendor/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/vendor/jquery.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/vendor/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/vendor/qunit.css -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/vendor/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/bootstrap/tests/vendor/qunit.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/jquery-ui.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/jquery-ui.custom.min.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/jquery.min.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/less.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/less.min.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/js/modernizr-respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/js/modernizr-respond.min.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/accordion.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/accordion.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/alerts.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/bootstrap.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/breadcrumbs.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/button-groups.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/buttons.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/carousel.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/close.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/code.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/component-animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/component-animations.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/dropdowns.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/forms.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/grid.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/hero-unit.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/hero-unit.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/labels-badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/labels-badges.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/layouts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/layouts.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/mixins.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/modals.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/navbar.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/navs.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/pager.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/pagination.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/popovers.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/progress-bars.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/reset.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/reset.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/responsive-1200px-min.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/responsive-1200px-min.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/responsive-767px-max.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/responsive-767px-max.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/responsive-768px-979px.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/responsive-768px-979px.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/responsive-navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/responsive-navbar.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/responsive-utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/responsive-utilities.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/responsive.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/responsive.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/scaffolding.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/sprites.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/sprites.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/tables.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/thumbnails.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/tooltip.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/type.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/utilities.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/variables.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/bootstrap/wells.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/custom.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/custom.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/accordion.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/accordion.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/autocomplete.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/autocomplete.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/button.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/button.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/core.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/datepicker.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/datepicker.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/dialog.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/dialog.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/icons.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/jq-ui-bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/jq-ui-bootstrap.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/menu.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/menu.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/mixins.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/overlays.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/overlays.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/progressbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/progressbar.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/resizable.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/resizable.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/selectable.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/selectable.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/slider.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/slider.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/tabs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/tabs.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/toolbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/toolbar.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/jq-ui-bootstrap/variables.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/style.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/thirdParty/enhanced.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/thirdParty/enhanced.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/thirdParty/ui.daterangepicker.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/thirdParty/ui.daterangepicker.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/less/thirdParty/wijmo-theming.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/less/thirdParty/wijmo-theming.less -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-Date-Range-Picker/css/ui.daterangepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-Date-Range-Picker/css/ui.daterangepicker.css -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-Date-Range-Picker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-Date-Range-Picker/index.html -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-Date-Range-Picker/js/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-Date-Range-Picker/js/date.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-Date-Range-Picker/js/daterangepicker.jQuery.compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-Date-Range-Picker/js/daterangepicker.jQuery.compressed.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-Date-Range-Picker/js/daterangepicker.jQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-Date-Range-Picker/js/daterangepicker.jQuery.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-Date-Time-Picker/jquery-ui-timepicker-addon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-Date-Time-Picker/jquery-ui-timepicker-addon.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-Date-Time-Picker/jquery-ui-timepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-Date-Time-Picker/jquery-ui-timepicker.css -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-FileInput/css/enhanced.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-FileInput/css/enhanced.css -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-FileInput/images/icon-generic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-FileInput/images/icon-generic.gif -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-FileInput/images/icon-image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-FileInput/images/icon-image.gif -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-FileInput/images/icon-media.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-FileInput/images/icon-media.gif -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-FileInput/images/icon-zip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-FileInput/images/icon-zip.gif -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-FileInput/js/enhance.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-FileInput/js/enhance.min.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-FileInput/js/fileinput.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/jQuery-UI-FileInput/js/fileinput.jquery.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/wijmo/jquery.bgiframe-2.1.3-pre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/wijmo/jquery.bgiframe-2.1.3-pre.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/wijmo/jquery.mousewheel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/wijmo/jquery.mousewheel.min.js -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/wijmo/jquery.wijmo-open.1.5.0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/wijmo/jquery.wijmo-open.1.5.0.css -------------------------------------------------------------------------------- /editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/wijmo/jquery.wijmo-open.1.5.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/contrib/jquery-ui-bootstrap/third-party/wijmo/jquery.wijmo-open.1.5.0.min.js -------------------------------------------------------------------------------- /editlive/static/editlive/css/editlive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/css/editlive.css -------------------------------------------------------------------------------- /editlive/static/editlive/js/jquery.editlive.ajaxform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/js/jquery.editlive.ajaxform.js -------------------------------------------------------------------------------- /editlive/static/editlive/js/jquery.editlive.boolean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/js/jquery.editlive.boolean.js -------------------------------------------------------------------------------- /editlive/static/editlive/js/jquery.editlive.char.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/js/jquery.editlive.char.js -------------------------------------------------------------------------------- /editlive/static/editlive/js/jquery.editlive.choices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/js/jquery.editlive.choices.js -------------------------------------------------------------------------------- /editlive/static/editlive/js/jquery.editlive.date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/js/jquery.editlive.date.js -------------------------------------------------------------------------------- /editlive/static/editlive/js/jquery.editlive.datetime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/js/jquery.editlive.datetime.js -------------------------------------------------------------------------------- /editlive/static/editlive/js/jquery.editlive.foreignkey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/js/jquery.editlive.foreignkey.js -------------------------------------------------------------------------------- /editlive/static/editlive/js/jquery.editlive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/js/jquery.editlive.js -------------------------------------------------------------------------------- /editlive/static/editlive/js/jquery.editlive.listactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/js/jquery.editlive.listactions.js -------------------------------------------------------------------------------- /editlive/static/editlive/js/jquery.editlive.manytomany.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/js/jquery.editlive.manytomany.js -------------------------------------------------------------------------------- /editlive/static/editlive/js/jquery.editlive.sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/js/jquery.editlive.sync.js -------------------------------------------------------------------------------- /editlive/static/editlive/js/jquery.editlive.text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/js/jquery.editlive.text.js -------------------------------------------------------------------------------- /editlive/static/editlive/less/base.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/less/base.less -------------------------------------------------------------------------------- /editlive/static/editlive/less/editlive.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/less/editlive.less -------------------------------------------------------------------------------- /editlive/static/editlive/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/less/mixins.less -------------------------------------------------------------------------------- /editlive/static/editlive/less/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/static/editlive/less/utilities.less -------------------------------------------------------------------------------- /editlive/templates/editlive/test/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/templates/editlive/test/base.html -------------------------------------------------------------------------------- /editlive/templates/editlive/test/biginteger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/templates/editlive/test/biginteger.html -------------------------------------------------------------------------------- /editlive/templates/editlive/test/boolean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/templates/editlive/test/boolean.html -------------------------------------------------------------------------------- /editlive/templates/editlive/test/char.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/templates/editlive/test/char.html -------------------------------------------------------------------------------- /editlive/templates/editlive/test/commaseparatedinteger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/templates/editlive/test/commaseparatedinteger.html -------------------------------------------------------------------------------- /editlive/templates/editlive/test/date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/templates/editlive/test/date.html -------------------------------------------------------------------------------- /editlive/templates/editlive/test/datetime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/templates/editlive/test/datetime.html -------------------------------------------------------------------------------- /editlive/templates/editlive/test/decimal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/templates/editlive/test/decimal.html -------------------------------------------------------------------------------- /editlive/templates/editlive/test/default.html: -------------------------------------------------------------------------------- 1 | default.. 2 | -------------------------------------------------------------------------------- /editlive/templates/editlive/test/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/templates/editlive/test/email.html -------------------------------------------------------------------------------- /editlive/templates/editlive/test/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/templates/editlive/test/file.html -------------------------------------------------------------------------------- /editlive/templates/editlive/test/filepath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/templates/editlive/test/filepath.html -------------------------------------------------------------------------------- /editlive/templates/editlive/test/float.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/templates/editlive/test/float.html -------------------------------------------------------------------------------- /editlive/templates/editlive/test/genericipaddress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/templates/editlive/test/genericipaddress.html -------------------------------------------------------------------------------- /editlive/templates/editlive/test/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/templates/editlive/test/image.html -------------------------------------------------------------------------------- /editlive/templates/editlive/test/integer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/templates/editlive/test/integer.html -------------------------------------------------------------------------------- /editlive/templates/editlive/test/ipaddress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/templates/editlive/test/ipaddress.html -------------------------------------------------------------------------------- /editlive/templates/editlive/test/nullboolean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/templates/editlive/test/nullboolean.html -------------------------------------------------------------------------------- /editlive/templates/editlive/test/positiveinteger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/templates/editlive/test/positiveinteger.html -------------------------------------------------------------------------------- /editlive/templates/editlive/test/positivesmallinteger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/templates/editlive/test/positivesmallinteger.html -------------------------------------------------------------------------------- /editlive/templates/editlive/test/slug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/templates/editlive/test/slug.html -------------------------------------------------------------------------------- /editlive/templates/editlive/test/smallinteger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/templates/editlive/test/smallinteger.html -------------------------------------------------------------------------------- /editlive/templates/editlive/test/text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/templates/editlive/test/text.html -------------------------------------------------------------------------------- /editlive/templates/editlive/test/time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/templates/editlive/test/time.html -------------------------------------------------------------------------------- /editlive/templates/editlive/test/url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/templates/editlive/test/url.html -------------------------------------------------------------------------------- /editlive/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /editlive/templatetags/editlive_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/templatetags/editlive_tags.py -------------------------------------------------------------------------------- /editlive/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/tests.py -------------------------------------------------------------------------------- /editlive/urls.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /editlive/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/editlive/utils.py -------------------------------------------------------------------------------- /editlive/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_project/example_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_project/example_project/envs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_project/example_project/envs/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/example_project/envs/common.py -------------------------------------------------------------------------------- /example_project/example_project/envs/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/example_project/envs/dev.py -------------------------------------------------------------------------------- /example_project/example_project/envs/lettuce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/example_project/envs/lettuce.py -------------------------------------------------------------------------------- /example_project/example_project/envs/lettuce_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/example_project/envs/lettuce_memory.py -------------------------------------------------------------------------------- /example_project/example_project/envs/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/example_project/envs/local.py -------------------------------------------------------------------------------- /example_project/example_project/envs/local.py.dist: -------------------------------------------------------------------------------- 1 | from dev import * 2 | VIRTUALENV_NAME = "editlive_test_env" 3 | -------------------------------------------------------------------------------- /example_project/example_project/envs/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_project/example_project/envs/util/environment_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/example_project/envs/util/environment_settings.py -------------------------------------------------------------------------------- /example_project/example_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/example_project/settings.py -------------------------------------------------------------------------------- /example_project/example_project/settings.py-bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/example_project/settings.py-bak -------------------------------------------------------------------------------- /example_project/example_project/terrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/example_project/terrain.py -------------------------------------------------------------------------------- /example_project/example_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/example_project/urls.py -------------------------------------------------------------------------------- /example_project/example_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/example_project/wsgi.py -------------------------------------------------------------------------------- /example_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/manage.py -------------------------------------------------------------------------------- /example_project/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/requirements.txt -------------------------------------------------------------------------------- /example_project/run-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/run-server -------------------------------------------------------------------------------- /example_project/run-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/run-tests -------------------------------------------------------------------------------- /example_project/test_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_project/test_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/test_app/admin.py -------------------------------------------------------------------------------- /example_project/test_app/features/char.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/test_app/features/char.feature -------------------------------------------------------------------------------- /example_project/test_app/features/date.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/test_app/features/date.feature -------------------------------------------------------------------------------- /example_project/test_app/features/datetime.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/test_app/features/datetime.feature -------------------------------------------------------------------------------- /example_project/test_app/features/email.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/test_app/features/email.feature -------------------------------------------------------------------------------- /example_project/test_app/features/float.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/test_app/features/float.feature -------------------------------------------------------------------------------- /example_project/test_app/features/genericipaddress.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/test_app/features/genericipaddress.feature -------------------------------------------------------------------------------- /example_project/test_app/features/integer.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/test_app/features/integer.feature -------------------------------------------------------------------------------- /example_project/test_app/features/ipaddress.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/test_app/features/ipaddress.feature -------------------------------------------------------------------------------- /example_project/test_app/features/positiveinteger.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/test_app/features/positiveinteger.feature -------------------------------------------------------------------------------- /example_project/test_app/features/positivesmallinteger.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/test_app/features/positivesmallinteger.feature -------------------------------------------------------------------------------- /example_project/test_app/features/slug.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/test_app/features/slug.feature -------------------------------------------------------------------------------- /example_project/test_app/features/smallinteger.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/test_app/features/smallinteger.feature -------------------------------------------------------------------------------- /example_project/test_app/features/steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/test_app/features/steps.py -------------------------------------------------------------------------------- /example_project/test_app/features/terrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/test_app/features/terrain.py -------------------------------------------------------------------------------- /example_project/test_app/features/text.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/test_app/features/text.feature -------------------------------------------------------------------------------- /example_project/test_app/features/time.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/test_app/features/time.feature -------------------------------------------------------------------------------- /example_project/test_app/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/test_app/fixtures/initial_data.json -------------------------------------------------------------------------------- /example_project/test_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/test_app/models.py -------------------------------------------------------------------------------- /example_project/test_app/static/test_app/img/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example_project/test_app/templates/test_app/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/test_app/templates/test_app/base.html -------------------------------------------------------------------------------- /example_project/test_app/templates/test_app/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/test_app/templates/test_app/home.html -------------------------------------------------------------------------------- /example_project/test_app/templates/test_app/soup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/test_app/templates/test_app/soup.html -------------------------------------------------------------------------------- /example_project/test_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/test_app/tests.py -------------------------------------------------------------------------------- /example_project/test_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/test_app/urls.py -------------------------------------------------------------------------------- /example_project/test_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/example_project/test_app/views.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h3/django-editlive/HEAD/setup.py --------------------------------------------------------------------------------