├── .gitignore ├── MANIFEST.in ├── README.md ├── example ├── __init__.py ├── settings.py ├── static │ └── example.css ├── templates │ ├── cms │ │ └── page.html │ ├── example │ │ ├── home.html │ │ └── setup.html │ └── flatpages │ │ └── default.html ├── urls.py ├── views.py └── wsgi.py ├── manage.py ├── navigation ├── __init__.py ├── admin.py ├── fixtures │ ├── flatpages.json │ ├── simple_menus.json │ └── simple_site.json ├── managers.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── sitemaps.py ├── static │ ├── jquery │ │ ├── css │ │ │ └── ui-lightness │ │ │ │ ├── images │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ └── jquery-ui-1.8.23.custom.css │ │ ├── development-bundle │ │ │ ├── AUTHORS.txt │ │ │ ├── GPL-LICENSE.txt │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── demos │ │ │ │ ├── accordion │ │ │ │ │ ├── collapsible.html │ │ │ │ │ ├── custom-icons.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── fillspace.html │ │ │ │ │ ├── hoverintent.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mouseover.html │ │ │ │ │ ├── no-auto-height.html │ │ │ │ │ └── sortable.html │ │ │ │ ├── addClass │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ ├── animate │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ ├── autocomplete │ │ │ │ │ ├── categories.html │ │ │ │ │ ├── combobox.html │ │ │ │ │ ├── custom-data.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── folding.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── jquery_32x32.png │ │ │ │ │ │ ├── jqueryui_32x32.png │ │ │ │ │ │ ├── sizzlejs_32x32.png │ │ │ │ │ │ ├── transparent_1x1.png │ │ │ │ │ │ └── ui-anim_basic_16x16.gif │ │ │ │ │ ├── index.html │ │ │ │ │ ├── london.xml │ │ │ │ │ ├── maxheight.html │ │ │ │ │ ├── multiple-remote.html │ │ │ │ │ ├── multiple.html │ │ │ │ │ ├── remote-jsonp.html │ │ │ │ │ ├── remote-with-cache.html │ │ │ │ │ ├── remote.html │ │ │ │ │ ├── search.php │ │ │ │ │ └── xml.html │ │ │ │ ├── button │ │ │ │ │ ├── checkbox.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── icons.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── radio.html │ │ │ │ │ ├── splitbutton.html │ │ │ │ │ └── toolbar.html │ │ │ │ ├── datepicker │ │ │ │ │ ├── alt-field.html │ │ │ │ │ ├── animation.html │ │ │ │ │ ├── buttonbar.html │ │ │ │ │ ├── date-formats.html │ │ │ │ │ ├── date-range.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── dropdown-month-year.html │ │ │ │ │ ├── icon-trigger.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── calendar.gif │ │ │ │ │ ├── index.html │ │ │ │ │ ├── inline.html │ │ │ │ │ ├── localization.html │ │ │ │ │ ├── min-max.html │ │ │ │ │ ├── multiple-calendars.html │ │ │ │ │ ├── other-months.html │ │ │ │ │ └── show-week.html │ │ │ │ ├── demos.css │ │ │ │ ├── dialog │ │ │ │ │ ├── animated.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── modal-confirmation.html │ │ │ │ │ ├── modal-form.html │ │ │ │ │ ├── modal-message.html │ │ │ │ │ └── modal.html │ │ │ │ ├── draggable │ │ │ │ │ ├── constrain-movement.html │ │ │ │ │ ├── cursor-style.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── delay-start.html │ │ │ │ │ ├── events.html │ │ │ │ │ ├── handle.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── revert.html │ │ │ │ │ ├── scroll.html │ │ │ │ │ ├── snap-to.html │ │ │ │ │ ├── sortable.html │ │ │ │ │ └── visual-feedback.html │ │ │ │ ├── droppable │ │ │ │ │ ├── accepted-elements.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── high_tatras.jpg │ │ │ │ │ │ ├── high_tatras2.jpg │ │ │ │ │ │ ├── high_tatras2_min.jpg │ │ │ │ │ │ ├── high_tatras3.jpg │ │ │ │ │ │ ├── high_tatras3_min.jpg │ │ │ │ │ │ ├── high_tatras4.jpg │ │ │ │ │ │ ├── high_tatras4_min.jpg │ │ │ │ │ │ └── high_tatras_min.jpg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── photo-manager.html │ │ │ │ │ ├── propagation.html │ │ │ │ │ ├── revert.html │ │ │ │ │ ├── shopping-cart.html │ │ │ │ │ └── visual-feedback.html │ │ │ │ ├── effect │ │ │ │ │ ├── default.html │ │ │ │ │ ├── easing.html │ │ │ │ │ └── index.html │ │ │ │ ├── hide │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ ├── images │ │ │ │ │ ├── calendar.gif │ │ │ │ │ ├── demo-config-on-tile.gif │ │ │ │ │ ├── demo-config-on.gif │ │ │ │ │ ├── demo-spindown-closed.gif │ │ │ │ │ ├── demo-spindown-open.gif │ │ │ │ │ ├── icon-docs-info.gif │ │ │ │ │ └── pbar-ani.gif │ │ │ │ ├── index.html │ │ │ │ ├── position │ │ │ │ │ ├── cycler.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── earth.jpg │ │ │ │ │ │ ├── flight.jpg │ │ │ │ │ │ └── rocket.jpg │ │ │ │ │ └── index.html │ │ │ │ ├── progressbar │ │ │ │ │ ├── animated.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── pbar-ani.gif │ │ │ │ │ ├── index.html │ │ │ │ │ └── resize.html │ │ │ │ ├── removeClass │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ ├── resizable │ │ │ │ │ ├── animate.html │ │ │ │ │ ├── aspect-ratio.html │ │ │ │ │ ├── constrain-area.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── delay-start.html │ │ │ │ │ ├── helper.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── max-min.html │ │ │ │ │ ├── snap-to-grid.html │ │ │ │ │ ├── synchronous-resize.html │ │ │ │ │ ├── textarea.html │ │ │ │ │ └── visual-feedback.html │ │ │ │ ├── selectable │ │ │ │ │ ├── default.html │ │ │ │ │ ├── display-grid.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── serialize.html │ │ │ │ ├── show │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ ├── slider │ │ │ │ │ ├── colorpicker.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── hotelrooms.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── multiple-vertical.html │ │ │ │ │ ├── range-vertical.html │ │ │ │ │ ├── range.html │ │ │ │ │ ├── rangemax.html │ │ │ │ │ ├── rangemin.html │ │ │ │ │ ├── side-scroll.html │ │ │ │ │ ├── slider-vertical.html │ │ │ │ │ ├── steps.html │ │ │ │ │ └── tabs.html │ │ │ │ ├── sortable │ │ │ │ │ ├── connect-lists-through-tabs.html │ │ │ │ │ ├── connect-lists.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── delay-start.html │ │ │ │ │ ├── display-grid.html │ │ │ │ │ ├── empty-lists.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── items.html │ │ │ │ │ ├── placeholder.html │ │ │ │ │ └── portlets.html │ │ │ │ ├── switchClass │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ ├── tabs │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── ajax │ │ │ │ │ │ ├── content1.html │ │ │ │ │ │ ├── content2.html │ │ │ │ │ │ ├── content3-slow.php │ │ │ │ │ │ └── content4-broken.php │ │ │ │ │ ├── bottom.html │ │ │ │ │ ├── collapsible.html │ │ │ │ │ ├── cookie.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manipulation.html │ │ │ │ │ ├── mouseover.html │ │ │ │ │ ├── sortable.html │ │ │ │ │ └── vertical.html │ │ │ │ ├── toggle │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ └── toggleClass │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ ├── docs │ │ │ │ ├── accordion.html │ │ │ │ ├── addClass.html │ │ │ │ ├── animate.html │ │ │ │ ├── autocomplete.html │ │ │ │ ├── button.html │ │ │ │ ├── datepicker.html │ │ │ │ ├── dialog.html │ │ │ │ ├── draggable.html │ │ │ │ ├── droppable.html │ │ │ │ ├── effect.html │ │ │ │ ├── hide.html │ │ │ │ ├── position.html │ │ │ │ ├── progressbar.html │ │ │ │ ├── removeClass.html │ │ │ │ ├── resizable.html │ │ │ │ ├── selectable.html │ │ │ │ ├── show.html │ │ │ │ ├── slider.html │ │ │ │ ├── sortable.html │ │ │ │ ├── switchClass.html │ │ │ │ ├── tabs.html │ │ │ │ ├── toggle.html │ │ │ │ └── toggleClass.html │ │ │ ├── external │ │ │ │ ├── jquery.bgiframe-2.1.2.js │ │ │ │ ├── jquery.cookie.js │ │ │ │ ├── jquery.metadata.js │ │ │ │ ├── qunit.css │ │ │ │ └── qunit.js │ │ │ ├── jquery-1.8.0.js │ │ │ ├── package.json │ │ │ ├── themes │ │ │ │ ├── base │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_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_95_fef1ec_1x400.png │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ │ ├── jquery.ui.all.css │ │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ │ ├── jquery.ui.base.css │ │ │ │ │ ├── jquery.ui.button.css │ │ │ │ │ ├── jquery.ui.core.css │ │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ │ └── jquery.ui.theme.css │ │ │ │ └── ui-lightness │ │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── jquery-ui-1.8.23.custom.css │ │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ │ ├── jquery.ui.all.css │ │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ │ ├── jquery.ui.base.css │ │ │ │ │ ├── jquery.ui.button.css │ │ │ │ │ ├── jquery.ui.core.css │ │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ │ └── jquery.ui.theme.css │ │ │ └── ui │ │ │ │ ├── i18n │ │ │ │ ├── jquery-ui-i18n.js │ │ │ │ ├── jquery.ui.datepicker-af.js │ │ │ │ ├── jquery.ui.datepicker-ar-DZ.js │ │ │ │ ├── jquery.ui.datepicker-ar.js │ │ │ │ ├── jquery.ui.datepicker-az.js │ │ │ │ ├── jquery.ui.datepicker-bg.js │ │ │ │ ├── jquery.ui.datepicker-bs.js │ │ │ │ ├── jquery.ui.datepicker-ca.js │ │ │ │ ├── jquery.ui.datepicker-cs.js │ │ │ │ ├── jquery.ui.datepicker-cy-GB.js │ │ │ │ ├── jquery.ui.datepicker-da.js │ │ │ │ ├── jquery.ui.datepicker-de.js │ │ │ │ ├── jquery.ui.datepicker-el.js │ │ │ │ ├── jquery.ui.datepicker-en-AU.js │ │ │ │ ├── jquery.ui.datepicker-en-GB.js │ │ │ │ ├── jquery.ui.datepicker-en-NZ.js │ │ │ │ ├── jquery.ui.datepicker-eo.js │ │ │ │ ├── jquery.ui.datepicker-es.js │ │ │ │ ├── jquery.ui.datepicker-et.js │ │ │ │ ├── jquery.ui.datepicker-eu.js │ │ │ │ ├── jquery.ui.datepicker-fa.js │ │ │ │ ├── jquery.ui.datepicker-fi.js │ │ │ │ ├── jquery.ui.datepicker-fo.js │ │ │ │ ├── jquery.ui.datepicker-fr-CH.js │ │ │ │ ├── jquery.ui.datepicker-fr.js │ │ │ │ ├── jquery.ui.datepicker-gl.js │ │ │ │ ├── jquery.ui.datepicker-he.js │ │ │ │ ├── jquery.ui.datepicker-hi.js │ │ │ │ ├── jquery.ui.datepicker-hr.js │ │ │ │ ├── jquery.ui.datepicker-hu.js │ │ │ │ ├── jquery.ui.datepicker-hy.js │ │ │ │ ├── jquery.ui.datepicker-id.js │ │ │ │ ├── jquery.ui.datepicker-is.js │ │ │ │ ├── jquery.ui.datepicker-it.js │ │ │ │ ├── jquery.ui.datepicker-ja.js │ │ │ │ ├── jquery.ui.datepicker-ka.js │ │ │ │ ├── jquery.ui.datepicker-kk.js │ │ │ │ ├── jquery.ui.datepicker-km.js │ │ │ │ ├── jquery.ui.datepicker-ko.js │ │ │ │ ├── jquery.ui.datepicker-lb.js │ │ │ │ ├── jquery.ui.datepicker-lt.js │ │ │ │ ├── jquery.ui.datepicker-lv.js │ │ │ │ ├── jquery.ui.datepicker-mk.js │ │ │ │ ├── jquery.ui.datepicker-ml.js │ │ │ │ ├── jquery.ui.datepicker-ms.js │ │ │ │ ├── jquery.ui.datepicker-nl-BE.js │ │ │ │ ├── jquery.ui.datepicker-nl.js │ │ │ │ ├── jquery.ui.datepicker-no.js │ │ │ │ ├── jquery.ui.datepicker-pl.js │ │ │ │ ├── jquery.ui.datepicker-pt-BR.js │ │ │ │ ├── jquery.ui.datepicker-pt.js │ │ │ │ ├── jquery.ui.datepicker-rm.js │ │ │ │ ├── jquery.ui.datepicker-ro.js │ │ │ │ ├── jquery.ui.datepicker-ru.js │ │ │ │ ├── jquery.ui.datepicker-sk.js │ │ │ │ ├── jquery.ui.datepicker-sl.js │ │ │ │ ├── jquery.ui.datepicker-sq.js │ │ │ │ ├── jquery.ui.datepicker-sr-SR.js │ │ │ │ ├── jquery.ui.datepicker-sr.js │ │ │ │ ├── jquery.ui.datepicker-sv.js │ │ │ │ ├── jquery.ui.datepicker-ta.js │ │ │ │ ├── jquery.ui.datepicker-th.js │ │ │ │ ├── jquery.ui.datepicker-tj.js │ │ │ │ ├── jquery.ui.datepicker-tr.js │ │ │ │ ├── jquery.ui.datepicker-uk.js │ │ │ │ ├── jquery.ui.datepicker-vi.js │ │ │ │ ├── jquery.ui.datepicker-zh-CN.js │ │ │ │ ├── jquery.ui.datepicker-zh-HK.js │ │ │ │ └── jquery.ui.datepicker-zh-TW.js │ │ │ │ ├── jquery-ui-1.8.23.custom.js │ │ │ │ ├── jquery.effects.blind.js │ │ │ │ ├── jquery.effects.bounce.js │ │ │ │ ├── jquery.effects.clip.js │ │ │ │ ├── jquery.effects.core.js │ │ │ │ ├── jquery.effects.drop.js │ │ │ │ ├── jquery.effects.explode.js │ │ │ │ ├── jquery.effects.fade.js │ │ │ │ ├── jquery.effects.fold.js │ │ │ │ ├── jquery.effects.highlight.js │ │ │ │ ├── jquery.effects.pulsate.js │ │ │ │ ├── jquery.effects.scale.js │ │ │ │ ├── jquery.effects.shake.js │ │ │ │ ├── jquery.effects.slide.js │ │ │ │ ├── jquery.effects.transfer.js │ │ │ │ ├── jquery.ui.accordion.js │ │ │ │ ├── jquery.ui.autocomplete.js │ │ │ │ ├── jquery.ui.button.js │ │ │ │ ├── jquery.ui.core.js │ │ │ │ ├── jquery.ui.datepicker.js │ │ │ │ ├── jquery.ui.dialog.js │ │ │ │ ├── jquery.ui.draggable.js │ │ │ │ ├── jquery.ui.droppable.js │ │ │ │ ├── jquery.ui.mouse.js │ │ │ │ ├── jquery.ui.position.js │ │ │ │ ├── jquery.ui.progressbar.js │ │ │ │ ├── jquery.ui.resizable.js │ │ │ │ ├── jquery.ui.selectable.js │ │ │ │ ├── jquery.ui.slider.js │ │ │ │ ├── jquery.ui.sortable.js │ │ │ │ ├── jquery.ui.tabs.js │ │ │ │ ├── jquery.ui.widget.js │ │ │ │ └── minified │ │ │ │ ├── jquery.effects.blind.min.js │ │ │ │ ├── jquery.effects.bounce.min.js │ │ │ │ ├── jquery.effects.clip.min.js │ │ │ │ ├── jquery.effects.core.min.js │ │ │ │ ├── jquery.effects.drop.min.js │ │ │ │ ├── jquery.effects.explode.min.js │ │ │ │ ├── jquery.effects.fade.min.js │ │ │ │ ├── jquery.effects.fold.min.js │ │ │ │ ├── jquery.effects.highlight.min.js │ │ │ │ ├── jquery.effects.pulsate.min.js │ │ │ │ ├── jquery.effects.scale.min.js │ │ │ │ ├── jquery.effects.shake.min.js │ │ │ │ ├── jquery.effects.slide.min.js │ │ │ │ ├── jquery.effects.transfer.min.js │ │ │ │ ├── jquery.ui.accordion.min.js │ │ │ │ ├── jquery.ui.autocomplete.min.js │ │ │ │ ├── jquery.ui.button.min.js │ │ │ │ ├── jquery.ui.core.min.js │ │ │ │ ├── jquery.ui.datepicker.min.js │ │ │ │ ├── jquery.ui.dialog.min.js │ │ │ │ ├── jquery.ui.draggable.min.js │ │ │ │ ├── jquery.ui.droppable.min.js │ │ │ │ ├── jquery.ui.mouse.min.js │ │ │ │ ├── jquery.ui.position.min.js │ │ │ │ ├── jquery.ui.progressbar.min.js │ │ │ │ ├── jquery.ui.resizable.min.js │ │ │ │ ├── jquery.ui.selectable.min.js │ │ │ │ ├── jquery.ui.slider.min.js │ │ │ │ ├── jquery.ui.sortable.min.js │ │ │ │ ├── jquery.ui.tabs.min.js │ │ │ │ └── jquery.ui.widget.min.js │ │ ├── index.html │ │ └── js │ │ │ ├── jquery-1.8.0.min.js │ │ │ ├── jquery-ui-1.8.23.custom.min.js │ │ │ ├── jquery.mjs.nestedSortable.js │ │ │ └── jquery.tmpl.js │ └── navigation │ │ ├── admin.css │ │ └── admin.js ├── templates │ ├── admin │ │ └── navigation │ │ │ └── menu │ │ │ ├── change_form.html │ │ │ └── items_formset.html │ └── navigation │ │ ├── _item-attr.html │ │ ├── breadcrumbs-missing.html │ │ ├── breadcrumbs.html │ │ ├── dynamic-large-path.html │ │ ├── dynamic-large-submenu.html │ │ ├── dynamic-large.html │ │ ├── dynamic-small-path.html │ │ ├── dynamic-small-submenu.html │ │ ├── dynamic-small.html │ │ ├── flat-menu.html │ │ ├── menu-missing.html │ │ └── menu.html ├── templatetags │ ├── __init__.py │ └── navigation_tags.py ├── tests │ ├── __init__.py │ ├── admin.py │ ├── models.py │ ├── sitemaps.py │ ├── templatetags.py │ └── utils.py └── utils.py ├── screenshots ├── admin-menu.png ├── admin-sitemaps.png └── website-menu.png └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/.gitignore -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/README.md -------------------------------------------------------------------------------- /example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/example/settings.py -------------------------------------------------------------------------------- /example/static/example.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/example/static/example.css -------------------------------------------------------------------------------- /example/templates/cms/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/example/templates/cms/page.html -------------------------------------------------------------------------------- /example/templates/example/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/example/templates/example/home.html -------------------------------------------------------------------------------- /example/templates/example/setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/example/templates/example/setup.html -------------------------------------------------------------------------------- /example/templates/flatpages/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/example/templates/flatpages/default.html -------------------------------------------------------------------------------- /example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/example/urls.py -------------------------------------------------------------------------------- /example/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/example/views.py -------------------------------------------------------------------------------- /example/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/example/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/manage.py -------------------------------------------------------------------------------- /navigation/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | __version__ = '0.2' 3 | -------------------------------------------------------------------------------- /navigation/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/admin.py -------------------------------------------------------------------------------- /navigation/fixtures/flatpages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/fixtures/flatpages.json -------------------------------------------------------------------------------- /navigation/fixtures/simple_menus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/fixtures/simple_menus.json -------------------------------------------------------------------------------- /navigation/fixtures/simple_site.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/fixtures/simple_site.json -------------------------------------------------------------------------------- /navigation/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/managers.py -------------------------------------------------------------------------------- /navigation/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/migrations/0001_initial.py -------------------------------------------------------------------------------- /navigation/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /navigation/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/models.py -------------------------------------------------------------------------------- /navigation/sitemaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/sitemaps.py -------------------------------------------------------------------------------- /navigation/static/jquery/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /navigation/static/jquery/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /navigation/static/jquery/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /navigation/static/jquery/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /navigation/static/jquery/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /navigation/static/jquery/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /navigation/static/jquery/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /navigation/static/jquery/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /navigation/static/jquery/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /navigation/static/jquery/css/ui-lightness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/css/ui-lightness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /navigation/static/jquery/css/ui-lightness/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/css/ui-lightness/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /navigation/static/jquery/css/ui-lightness/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/css/ui-lightness/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /navigation/static/jquery/css/ui-lightness/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/css/ui-lightness/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /navigation/static/jquery/css/ui-lightness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/css/ui-lightness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /navigation/static/jquery/css/ui-lightness/jquery-ui-1.8.23.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/css/ui-lightness/jquery-ui-1.8.23.custom.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/AUTHORS.txt -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/GPL-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/GPL-LICENSE.txt -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/MIT-LICENSE.txt -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/accordion/collapsible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/accordion/collapsible.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/accordion/custom-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/accordion/custom-icons.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/accordion/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/accordion/default.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/accordion/fillspace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/accordion/fillspace.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/accordion/hoverintent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/accordion/hoverintent.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/accordion/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/accordion/index.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/accordion/mouseover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/accordion/mouseover.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/accordion/no-auto-height.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/accordion/no-auto-height.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/accordion/sortable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/accordion/sortable.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/addClass/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/addClass/default.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/addClass/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/addClass/index.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/animate/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/animate/default.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/animate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/animate/index.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/autocomplete/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/autocomplete/categories.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/autocomplete/combobox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/autocomplete/combobox.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/autocomplete/custom-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/autocomplete/custom-data.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/autocomplete/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/autocomplete/default.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/autocomplete/folding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/autocomplete/folding.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/autocomplete/images/jquery_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/autocomplete/images/jquery_32x32.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/autocomplete/images/jqueryui_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/autocomplete/images/jqueryui_32x32.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/autocomplete/images/sizzlejs_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/autocomplete/images/sizzlejs_32x32.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/autocomplete/images/transparent_1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/autocomplete/images/transparent_1x1.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/autocomplete/images/ui-anim_basic_16x16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/autocomplete/images/ui-anim_basic_16x16.gif -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/autocomplete/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/autocomplete/index.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/autocomplete/london.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/autocomplete/london.xml -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/autocomplete/maxheight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/autocomplete/maxheight.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/autocomplete/multiple-remote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/autocomplete/multiple-remote.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/autocomplete/multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/autocomplete/multiple.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/autocomplete/remote-jsonp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/autocomplete/remote-jsonp.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/autocomplete/remote-with-cache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/autocomplete/remote-with-cache.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/autocomplete/remote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/autocomplete/remote.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/autocomplete/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/autocomplete/search.php -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/autocomplete/xml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/autocomplete/xml.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/button/checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/button/checkbox.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/button/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/button/default.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/button/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/button/icons.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/button/index.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/button/radio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/button/radio.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/button/splitbutton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/button/splitbutton.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/button/toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/button/toolbar.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/datepicker/alt-field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/datepicker/alt-field.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/datepicker/animation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/datepicker/animation.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/datepicker/buttonbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/datepicker/buttonbar.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/datepicker/date-formats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/datepicker/date-formats.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/datepicker/date-range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/datepicker/date-range.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/datepicker/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/datepicker/default.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/datepicker/dropdown-month-year.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/datepicker/dropdown-month-year.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/datepicker/icon-trigger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/datepicker/icon-trigger.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/datepicker/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/datepicker/images/calendar.gif -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/datepicker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/datepicker/index.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/datepicker/inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/datepicker/inline.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/datepicker/localization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/datepicker/localization.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/datepicker/min-max.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/datepicker/min-max.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/datepicker/multiple-calendars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/datepicker/multiple-calendars.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/datepicker/other-months.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/datepicker/other-months.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/datepicker/show-week.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/datepicker/show-week.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/demos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/demos.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/dialog/animated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/dialog/animated.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/dialog/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/dialog/default.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/dialog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/dialog/index.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/dialog/modal-confirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/dialog/modal-confirmation.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/dialog/modal-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/dialog/modal-form.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/dialog/modal-message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/dialog/modal-message.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/dialog/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/dialog/modal.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/draggable/constrain-movement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/draggable/constrain-movement.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/draggable/cursor-style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/draggable/cursor-style.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/draggable/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/draggable/default.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/draggable/delay-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/draggable/delay-start.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/draggable/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/draggable/events.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/draggable/handle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/draggable/handle.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/draggable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/draggable/index.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/draggable/revert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/draggable/revert.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/draggable/scroll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/draggable/scroll.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/draggable/snap-to.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/draggable/snap-to.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/draggable/sortable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/draggable/sortable.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/draggable/visual-feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/draggable/visual-feedback.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/droppable/accepted-elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/droppable/accepted-elements.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/droppable/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/droppable/default.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/droppable/images/high_tatras.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/droppable/images/high_tatras.jpg -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/droppable/images/high_tatras2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/droppable/images/high_tatras2.jpg -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/droppable/images/high_tatras2_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/droppable/images/high_tatras2_min.jpg -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/droppable/images/high_tatras3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/droppable/images/high_tatras3.jpg -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/droppable/images/high_tatras3_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/droppable/images/high_tatras3_min.jpg -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/droppable/images/high_tatras4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/droppable/images/high_tatras4.jpg -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/droppable/images/high_tatras4_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/droppable/images/high_tatras4_min.jpg -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/droppable/images/high_tatras_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/droppable/images/high_tatras_min.jpg -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/droppable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/droppable/index.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/droppable/photo-manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/droppable/photo-manager.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/droppable/propagation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/droppable/propagation.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/droppable/revert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/droppable/revert.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/droppable/shopping-cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/droppable/shopping-cart.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/droppable/visual-feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/droppable/visual-feedback.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/effect/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/effect/default.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/effect/easing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/effect/easing.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/effect/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/effect/index.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/hide/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/hide/default.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/hide/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/hide/index.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/images/calendar.gif -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/images/demo-config-on-tile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/images/demo-config-on-tile.gif -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/images/demo-config-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/images/demo-config-on.gif -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/images/demo-spindown-closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/images/demo-spindown-closed.gif -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/images/demo-spindown-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/images/demo-spindown-open.gif -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/images/icon-docs-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/images/icon-docs-info.gif -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/images/pbar-ani.gif -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/index.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/position/cycler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/position/cycler.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/position/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/position/default.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/position/images/earth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/position/images/earth.jpg -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/position/images/flight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/position/images/flight.jpg -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/position/images/rocket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/position/images/rocket.jpg -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/position/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/position/index.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/progressbar/animated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/progressbar/animated.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/progressbar/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/progressbar/default.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/progressbar/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/progressbar/images/pbar-ani.gif -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/progressbar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/progressbar/index.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/progressbar/resize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/progressbar/resize.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/removeClass/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/removeClass/default.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/removeClass/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/removeClass/index.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/resizable/animate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/resizable/animate.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/resizable/aspect-ratio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/resizable/aspect-ratio.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/resizable/constrain-area.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/resizable/constrain-area.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/resizable/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/resizable/default.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/resizable/delay-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/resizable/delay-start.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/resizable/helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/resizable/helper.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/resizable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/resizable/index.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/resizable/max-min.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/resizable/max-min.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/resizable/snap-to-grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/resizable/snap-to-grid.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/resizable/synchronous-resize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/resizable/synchronous-resize.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/resizable/textarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/resizable/textarea.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/resizable/visual-feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/resizable/visual-feedback.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/selectable/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/selectable/default.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/selectable/display-grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/selectable/display-grid.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/selectable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/selectable/index.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/selectable/serialize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/selectable/serialize.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/show/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/show/default.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/show/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/show/index.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/slider/colorpicker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/slider/colorpicker.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/slider/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/slider/default.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/slider/hotelrooms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/slider/hotelrooms.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/slider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/slider/index.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/slider/multiple-vertical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/slider/multiple-vertical.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/slider/range-vertical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/slider/range-vertical.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/slider/range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/slider/range.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/slider/rangemax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/slider/rangemax.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/slider/rangemin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/slider/rangemin.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/slider/side-scroll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/slider/side-scroll.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/slider/slider-vertical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/slider/slider-vertical.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/slider/steps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/slider/steps.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/slider/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/slider/tabs.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/sortable/connect-lists-through-tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/sortable/connect-lists-through-tabs.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/sortable/connect-lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/sortable/connect-lists.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/sortable/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/sortable/default.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/sortable/delay-start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/sortable/delay-start.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/sortable/display-grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/sortable/display-grid.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/sortable/empty-lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/sortable/empty-lists.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/sortable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/sortable/index.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/sortable/items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/sortable/items.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/sortable/placeholder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/sortable/placeholder.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/sortable/portlets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/sortable/portlets.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/switchClass/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/switchClass/default.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/switchClass/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/switchClass/index.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/tabs/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/tabs/ajax.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/tabs/ajax/content1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/tabs/ajax/content1.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/tabs/ajax/content2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/tabs/ajax/content2.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/tabs/ajax/content3-slow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/tabs/ajax/content3-slow.php -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/tabs/ajax/content4-broken.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/tabs/bottom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/tabs/bottom.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/tabs/collapsible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/tabs/collapsible.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/tabs/cookie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/tabs/cookie.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/tabs/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/tabs/default.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/tabs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/tabs/index.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/tabs/manipulation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/tabs/manipulation.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/tabs/mouseover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/tabs/mouseover.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/tabs/sortable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/tabs/sortable.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/tabs/vertical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/tabs/vertical.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/toggle/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/toggle/default.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/toggle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/toggle/index.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/toggleClass/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/toggleClass/default.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/demos/toggleClass/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/demos/toggleClass/index.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/docs/accordion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/docs/accordion.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/docs/addClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/docs/addClass.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/docs/animate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/docs/animate.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/docs/autocomplete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/docs/autocomplete.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/docs/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/docs/button.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/docs/datepicker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/docs/datepicker.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/docs/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/docs/dialog.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/docs/draggable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/docs/draggable.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/docs/droppable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/docs/droppable.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/docs/effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/docs/effect.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/docs/hide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/docs/hide.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/docs/position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/docs/position.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/docs/progressbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/docs/progressbar.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/docs/removeClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/docs/removeClass.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/docs/resizable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/docs/resizable.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/docs/selectable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/docs/selectable.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/docs/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/docs/show.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/docs/slider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/docs/slider.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/docs/sortable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/docs/sortable.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/docs/switchClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/docs/switchClass.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/docs/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/docs/tabs.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/docs/toggle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/docs/toggle.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/docs/toggleClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/docs/toggleClass.html -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/external/jquery.bgiframe-2.1.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/external/jquery.bgiframe-2.1.2.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/external/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/external/jquery.cookie.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/external/jquery.metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/external/jquery.metadata.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/external/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/external/qunit.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/external/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/external/qunit.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/jquery-1.8.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/jquery-1.8.0.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/package.json -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/jquery.ui.accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/jquery.ui.accordion.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/jquery.ui.all.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/jquery.ui.autocomplete.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/jquery.ui.base.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/jquery.ui.button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/jquery.ui.button.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/jquery.ui.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/jquery.ui.core.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/jquery.ui.datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/jquery.ui.datepicker.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/jquery.ui.dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/jquery.ui.dialog.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/jquery.ui.progressbar.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/jquery.ui.resizable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/jquery.ui.resizable.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/jquery.ui.selectable.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/jquery.ui.slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/jquery.ui.slider.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/jquery.ui.tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/jquery.ui.tabs.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/base/jquery.ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/base/jquery.ui.theme.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/jquery-ui-1.8.23.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/jquery-ui-1.8.23.custom.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.accordion.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.all.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.autocomplete.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.base.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.button.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.core.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.datepicker.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.dialog.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.progressbar.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.resizable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.resizable.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.selectable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.selectable.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.slider.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.tabs.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/themes/ui-lightness/jquery.ui.theme.css -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery-ui-i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery-ui-i18n.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-af.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-ar-DZ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-ar-DZ.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-ar.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-az.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-bg.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-cs.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-cy-GB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-cy-GB.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-da.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-de.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-el.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-en-AU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-en-AU.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-en-NZ.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-en-NZ.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-eo.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-es.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-et.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-eu.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-fa.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-fi.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-fo.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-fr.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-gl.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-he.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-hi.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-hu.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-hy.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-id.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-is.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-it.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-ka.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-kk.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-km.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-lb.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-lt.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-lv.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-mk.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-ml.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-ms.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-nl-BE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-nl-BE.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-nl.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-no.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-pl.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-pt-BR.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-pt.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-rm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-rm.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-ro.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-ru.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-sk.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-sl.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-sq.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-sv.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-ta.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-th.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-uk.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-vi.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery-ui-1.8.23.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery-ui-1.8.23.custom.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.effects.blind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.effects.blind.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.effects.bounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.effects.bounce.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.effects.clip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.effects.clip.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.effects.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.effects.core.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.effects.drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.effects.drop.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.effects.explode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.effects.explode.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.effects.fade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.effects.fade.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.effects.fold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.effects.fold.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.effects.highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.effects.highlight.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.effects.pulsate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.effects.pulsate.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.effects.scale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.effects.scale.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.effects.shake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.effects.shake.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.effects.slide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.effects.slide.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.effects.transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.effects.transfer.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.ui.accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.ui.accordion.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.ui.autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.ui.autocomplete.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.ui.button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.ui.button.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.ui.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.ui.core.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.ui.datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.ui.datepicker.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.ui.dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.ui.dialog.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.ui.draggable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.ui.draggable.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.ui.droppable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.ui.droppable.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.ui.mouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.ui.mouse.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.ui.position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.ui.position.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.ui.progressbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.ui.progressbar.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.ui.resizable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.ui.resizable.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.ui.selectable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.ui.selectable.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.ui.slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.ui.slider.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.ui.sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.ui.sortable.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.ui.tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.ui.tabs.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/jquery.ui.widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/jquery.ui.widget.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.effects.blind.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.effects.blind.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.effects.bounce.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.effects.bounce.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.effects.clip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.effects.clip.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.effects.core.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.effects.core.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.effects.drop.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.effects.drop.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.effects.explode.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.effects.explode.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.effects.fade.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.effects.fade.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.effects.fold.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.effects.fold.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.effects.highlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.effects.highlight.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.effects.pulsate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.effects.pulsate.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.effects.scale.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.effects.scale.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.effects.shake.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.effects.shake.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.effects.slide.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.effects.slide.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.effects.transfer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.effects.transfer.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.ui.accordion.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.ui.accordion.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.ui.autocomplete.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.ui.autocomplete.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.ui.button.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.ui.button.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.ui.core.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.ui.core.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.ui.datepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.ui.datepicker.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.ui.dialog.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.ui.dialog.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.ui.draggable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.ui.draggable.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.ui.droppable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.ui.droppable.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.ui.mouse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.ui.mouse.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.ui.position.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.ui.position.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.ui.progressbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.ui.progressbar.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.ui.resizable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.ui.resizable.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.ui.selectable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.ui.selectable.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.ui.slider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.ui.slider.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.ui.sortable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.ui.sortable.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.ui.tabs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.ui.tabs.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/development-bundle/ui/minified/jquery.ui.widget.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/development-bundle/ui/minified/jquery.ui.widget.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/index.html -------------------------------------------------------------------------------- /navigation/static/jquery/js/jquery-1.8.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/js/jquery-1.8.0.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/js/jquery-ui-1.8.23.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/js/jquery-ui-1.8.23.custom.min.js -------------------------------------------------------------------------------- /navigation/static/jquery/js/jquery.mjs.nestedSortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/js/jquery.mjs.nestedSortable.js -------------------------------------------------------------------------------- /navigation/static/jquery/js/jquery.tmpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/jquery/js/jquery.tmpl.js -------------------------------------------------------------------------------- /navigation/static/navigation/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/navigation/admin.css -------------------------------------------------------------------------------- /navigation/static/navigation/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/static/navigation/admin.js -------------------------------------------------------------------------------- /navigation/templates/admin/navigation/menu/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/templates/admin/navigation/menu/change_form.html -------------------------------------------------------------------------------- /navigation/templates/admin/navigation/menu/items_formset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/templates/admin/navigation/menu/items_formset.html -------------------------------------------------------------------------------- /navigation/templates/navigation/_item-attr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/templates/navigation/_item-attr.html -------------------------------------------------------------------------------- /navigation/templates/navigation/breadcrumbs-missing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/templates/navigation/breadcrumbs-missing.html -------------------------------------------------------------------------------- /navigation/templates/navigation/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/templates/navigation/breadcrumbs.html -------------------------------------------------------------------------------- /navigation/templates/navigation/dynamic-large-path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/templates/navigation/dynamic-large-path.html -------------------------------------------------------------------------------- /navigation/templates/navigation/dynamic-large-submenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/templates/navigation/dynamic-large-submenu.html -------------------------------------------------------------------------------- /navigation/templates/navigation/dynamic-large.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/templates/navigation/dynamic-large.html -------------------------------------------------------------------------------- /navigation/templates/navigation/dynamic-small-path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/templates/navigation/dynamic-small-path.html -------------------------------------------------------------------------------- /navigation/templates/navigation/dynamic-small-submenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/templates/navigation/dynamic-small-submenu.html -------------------------------------------------------------------------------- /navigation/templates/navigation/dynamic-small.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/templates/navigation/dynamic-small.html -------------------------------------------------------------------------------- /navigation/templates/navigation/flat-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/templates/navigation/flat-menu.html -------------------------------------------------------------------------------- /navigation/templates/navigation/menu-missing.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /navigation/templates/navigation/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/templates/navigation/menu.html -------------------------------------------------------------------------------- /navigation/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /navigation/templatetags/navigation_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/templatetags/navigation_tags.py -------------------------------------------------------------------------------- /navigation/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/tests/__init__.py -------------------------------------------------------------------------------- /navigation/tests/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/tests/admin.py -------------------------------------------------------------------------------- /navigation/tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/tests/models.py -------------------------------------------------------------------------------- /navigation/tests/sitemaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/tests/sitemaps.py -------------------------------------------------------------------------------- /navigation/tests/templatetags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/tests/templatetags.py -------------------------------------------------------------------------------- /navigation/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/tests/utils.py -------------------------------------------------------------------------------- /navigation/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/navigation/utils.py -------------------------------------------------------------------------------- /screenshots/admin-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/screenshots/admin-menu.png -------------------------------------------------------------------------------- /screenshots/admin-sitemaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/screenshots/admin-sitemaps.png -------------------------------------------------------------------------------- /screenshots/website-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/screenshots/website-menu.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rrafal/django-navigation/HEAD/setup.py --------------------------------------------------------------------------------