├── .gitignore ├── Gemfile ├── LICENSE ├── README ├── Rakefile ├── app ├── assets │ ├── images │ │ └── .keep │ ├── javascripts │ │ └── application.js │ └── stylesheets │ │ └── application.css ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ ├── icons_controller.rb │ └── word_controller.rb ├── helpers │ ├── application_helper.rb │ └── icons_helper.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── concerns │ │ └── .keep │ └── icon.rb └── views │ ├── icons │ ├── color.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ └── offline.html.erb │ └── layouts │ └── application.html.erb ├── bin ├── bundle ├── rails ├── rake └── spring ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── database.yml.example ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── routes.rb └── secrets.yml ├── db ├── migrate │ ├── 20120711171916_create_icons.rb │ └── 20140722160409_add_mode.rb ├── schema.rb └── seeds.rb ├── doc └── README_FOR_APP ├── lib ├── assets │ └── .keep └── tasks │ └── .keep ├── log └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── bootstrap │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── ico │ │ │ └── favicon.ico │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.typeahead.js │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── ico │ │ └── favicon.ico │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── bootstrap.typeahead.js ├── css │ ├── bootstrap.css │ ├── fonts │ │ ├── junction-webfont.eot │ │ ├── junction-webfont.svg │ │ ├── junction-webfont.ttf │ │ ├── junction-webfont.woff │ │ ├── junction.otf │ │ └── junction.ttf │ └── index.css ├── favicon.ico ├── fontawesome │ ├── .gitignore │ ├── README.md │ ├── css │ │ ├── font-awesome-ie7.min.css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ ├── docs │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ ├── font-awesome.css │ │ │ │ ├── font-awesome.min.css │ │ │ │ ├── prettify.css │ │ │ │ └── site.css │ │ │ ├── font │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── museo_slab_300-webfont.eot │ │ │ │ ├── museo_slab_300-webfont.ttf │ │ │ │ ├── museo_slab_500-webfont.eot │ │ │ │ ├── museo_slab_500-webfont.ttf │ │ │ │ ├── proximanova-sbold-webfont.eot │ │ │ │ ├── proximanova-sbold-webfont.ttf │ │ │ │ ├── proximanova-webfont.eot │ │ │ │ └── proximanova-webfont.ttf │ │ │ ├── ico │ │ │ │ └── favicon.ico │ │ │ ├── img │ │ │ │ ├── contribution-sample.png │ │ │ │ ├── fort_awesome.jpg │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ └── icon-flag.pdf │ │ │ ├── js │ │ │ │ ├── backbone.min.js │ │ │ │ ├── bootstrap-222.min.js │ │ │ │ ├── index │ │ │ │ │ └── index.js │ │ │ │ ├── jquery-1.7.1.min.js │ │ │ │ ├── prettify.min.js │ │ │ │ └── underscore.min.js │ │ │ └── less │ │ │ │ ├── font-awesome-ie7.less │ │ │ │ ├── font-awesome.less │ │ │ │ ├── font-site.less │ │ │ │ ├── mixins.less │ │ │ │ ├── site.less │ │ │ │ ├── twbs-222 │ │ │ │ ├── accordion.less │ │ │ │ ├── alerts.less │ │ │ │ ├── bootstrap.less │ │ │ │ ├── breadcrumbs.less │ │ │ │ ├── button-groups.less │ │ │ │ ├── buttons.less │ │ │ │ ├── carousel.less │ │ │ │ ├── close.less │ │ │ │ ├── code.less │ │ │ │ ├── component-animations.less │ │ │ │ ├── dropdowns.less │ │ │ │ ├── forms.less │ │ │ │ ├── grid.less │ │ │ │ ├── hero-unit.less │ │ │ │ ├── labels-badges.less │ │ │ │ ├── layouts.less │ │ │ │ ├── media.less │ │ │ │ ├── mixins.less │ │ │ │ ├── modals.less │ │ │ │ ├── navbar.less │ │ │ │ ├── navs.less │ │ │ │ ├── pager.less │ │ │ │ ├── pagination.less │ │ │ │ ├── popovers.less │ │ │ │ ├── progress-bars.less │ │ │ │ ├── reset.less │ │ │ │ ├── responsive-1200px-min.less │ │ │ │ ├── responsive-767px-max.less │ │ │ │ ├── responsive-768px-979px.less │ │ │ │ ├── responsive-navbar.less │ │ │ │ ├── responsive-utilities.less │ │ │ │ ├── responsive.less │ │ │ │ ├── scaffolding.less │ │ │ │ ├── sprites.less │ │ │ │ ├── tables.less │ │ │ │ ├── tests │ │ │ │ │ ├── buttons.html │ │ │ │ │ ├── css-tests.css │ │ │ │ │ ├── css-tests.html │ │ │ │ │ ├── forms-responsive.html │ │ │ │ │ ├── forms.html │ │ │ │ │ ├── navbar-fixed-top.html │ │ │ │ │ ├── navbar-static-top.html │ │ │ │ │ └── navbar.html │ │ │ │ ├── thumbnails.less │ │ │ │ ├── tooltip.less │ │ │ │ ├── type.less │ │ │ │ ├── utilities.less │ │ │ │ ├── variables.less │ │ │ │ └── wells.less │ │ │ │ └── variables.less │ │ ├── design.html │ │ ├── index.html │ │ └── test.html │ ├── font │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── less │ │ ├── font-awesome-ie7.less │ │ └── font-awesome.less │ └── sass │ │ ├── font-awesome.sass │ │ └── font-awesome.scss ├── google6f6b5070e97473ee.html.bkp ├── images │ ├── colors.png │ ├── mnls-114.png │ ├── mnls-144.png │ ├── mnls-36.png │ ├── mnls-48.png │ ├── mnls-57.png │ ├── mnls-72.png │ ├── mnls-96.png │ ├── mnls.png │ ├── mnlsbg.png │ ├── rails.png │ ├── screenshot-android-editor.png │ ├── screenshot-android.png │ ├── ship.png │ └── twitter.png ├── img │ ├── logo-small.png │ └── logo.png ├── javascripts │ ├── application.js │ ├── b64.js │ ├── controls.js │ ├── dragdrop.js │ ├── edit.js │ ├── effects.js │ ├── jquery-ui-1.8.21.custom.min.js │ ├── jquery-ui │ │ ├── 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.7.2.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 │ │ │ │ └── smoothness │ │ │ │ │ ├── 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-1.8.21.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.21.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.7.2.min.js │ │ │ └── jquery-ui-1.8.21.custom.min.js │ ├── jquery.min.js │ ├── jquery.mobile-1.1.0.min.js │ ├── prototype.js │ └── todataurl.js ├── pxlshp.manifest ├── robots.txt └── stylesheets │ ├── images │ ├── ajax-loader.gif │ ├── ajax-loader.png │ ├── icons-18-black.png │ ├── icons-18-white.png │ ├── icons-36-black.png │ └── icons-36-white.png │ ├── jquery.mobile-1.1.0.min.css │ └── mobile.css ├── remove └── new_rails_defaults.rb ├── script ├── about ├── console ├── dbconsole ├── destroy ├── generate ├── performance │ ├── benchmarker │ └── profiler ├── plugin ├── runner └── server ├── test ├── controllers │ └── .keep ├── fixtures │ ├── .keep │ └── icons.yml ├── functional │ └── icons_controller_test.rb ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ └── .keep ├── performance │ └── browsing_test.rb ├── test_helper.rb └── unit │ ├── helpers │ └── icons_helper_test.rb │ └── icon_test.rb ├── todo.txt ├── vendor ├── assets │ ├── javascripts │ │ └── .keep │ └── stylesheets │ │ └── .keep └── plugins │ └── rails_upgrade │ ├── MIT-LICENSE │ ├── README.rdoc │ ├── Rakefile │ ├── init.rb │ ├── install.rb │ ├── lib │ ├── application_checker.rb │ ├── gemfile_generator.rb │ ├── new_configuration_generator.rb │ ├── rails_upgrade.rb │ ├── routes_upgrader.rb │ └── tasks │ │ └── rails_upgrade_tasks.rake │ ├── test │ ├── application_checker_test.rb │ ├── gemfile_generator_test.rb │ ├── new_configuration_generator_test.rb │ ├── routes_upgrader_test.rb │ └── test_helper.rb │ └── uninstall.rb └── www ├── bootstrap ├── css │ ├── bootstrap-responsive.css │ ├── bootstrap-responsive.min.css │ ├── bootstrap.css │ └── bootstrap.min.css ├── ico │ └── favicon.ico ├── img │ ├── glyphicons-halflings-white.png │ └── glyphicons-halflings.png └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── bootstrap.typeahead.js ├── config.xml ├── css ├── bootstrap.css ├── fonts │ ├── junction-webfont.eot │ ├── junction-webfont.svg │ ├── junction-webfont.ttf │ ├── junction-webfont.woff │ ├── junction.otf │ └── junction.ttf └── index.css ├── icon.png ├── img ├── logo-small.png └── logo.png ├── index.html ├── js ├── b64.js ├── edit.js ├── index.js ├── jquery.min.js └── todataurl.js ├── res ├── icon │ ├── android │ │ ├── icon-36-ldpi.png │ │ ├── icon-48-mdpi.png │ │ ├── icon-72-hdpi.png │ │ └── icon-96-xhdpi.png │ ├── bada-wac │ │ ├── icon-48-type5.png │ │ ├── icon-50-type3.png │ │ └── icon-80-type4.png │ ├── bada │ │ └── icon-128.png │ ├── blackberry │ │ └── icon-80.png │ ├── ios │ │ ├── icon-57-2x.png │ │ ├── icon-57.png │ │ ├── icon-72-2x.png │ │ └── icon-72.png │ ├── webos │ │ └── icon-64.png │ └── windows-phone │ │ ├── icon-173-tile.png │ │ ├── icon-48.png │ │ └── icon-62-tile.png └── screen │ ├── android │ ├── screen-hdpi-landscape.png │ ├── screen-hdpi-portrait.png │ ├── screen-ldpi-landscape.png │ ├── screen-ldpi-portrait.png │ ├── screen-mdpi-landscape.png │ ├── screen-mdpi-portrait.png │ ├── screen-xhdpi-landscape.png │ └── screen-xhdpi-portrait.png │ ├── bada-wac │ ├── screen-type3.png │ ├── screen-type4.png │ └── screen-type5.png │ ├── bada │ └── screen-portrait.png │ ├── blackberry │ └── screen-225.png │ ├── ios │ ├── screen-ipad-landscape-2x.png │ ├── screen-ipad-landscape.png │ ├── screen-ipad-portrait-2x.png │ ├── screen-ipad-portrait.png │ ├── screen-iphone-landscape-2x.png │ ├── screen-iphone-landscape.png │ ├── screen-iphone-portrait-2x.png │ └── screen-iphone-portrait.png │ ├── webos │ └── screen-64.png │ └── windows-phone │ └── screen-portrait.jpg ├── spec.html └── spec ├── helper.js ├── index.js └── lib └── jasmine-1.2.0 ├── MIT.LICENSE ├── jasmine-html.js ├── jasmine.css └── jasmine.js /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files for more about ignoring files. 2 | # 3 | # If you find yourself ignoring temporary files generated by your text editor 4 | # or operating system, you probably want to add a global ignore instead: 5 | # git config --global core.excludesfile '~/.gitignore_global' 6 | 7 | # Ignore bundler config. 8 | /.bundle 9 | 10 | # Ignore the default SQLite database. 11 | /db/*.sqlite3 12 | /db/*.sqlite3-journal 13 | 14 | # Ignore all logfiles and tempfiles. 15 | /log/*.log 16 | /tmp 17 | .swp* 18 | .swo* 19 | Gemfile.lock 20 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | PXLSHP 2 | 3 | A very simple web/mobile pixel editor using Canvas, jQuery and Bootstrap 4 | 5 | Uses, currently: Rails 4, Ruby 2.1.2 6 | -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | # Add your own tasks in files placed in lib/tasks ending in .rake, 2 | # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. 3 | 4 | require File.expand_path('../config/application', __FILE__) 5 | 6 | Rails.application.load_tasks 7 | -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/app/assets/images/.keep -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- 1 | // This is a manifest file that'll be compiled into application.js, which will include all the files 2 | // listed below. 3 | // 4 | // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts, 5 | // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path. 6 | // 7 | // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the 8 | // compiled file. 9 | // 10 | // Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details 11 | // about supported directives. 12 | // 13 | //= require jquery 14 | //= require jquery_ujs 15 | //= require turbolinks 16 | //= require_tree . 17 | -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- 1 | /* 2 | * This is a manifest file that'll be compiled into application.css, which will include all the files 3 | * listed below. 4 | * 5 | * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, 6 | * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path. 7 | * 8 | * You're free to add application-wide styles to this file and they'll appear at the bottom of the 9 | * compiled file so the styles you add here take precedence over styles defined in any styles 10 | * defined in the other CSS/SCSS files in this directory. It is generally better to create a new 11 | * file per style scope. 12 | * 13 | *= require_tree . 14 | *= require_self 15 | */ 16 | -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- 1 | class ApplicationController < ActionController::Base 2 | # Prevent CSRF attacks by raising an exception. 3 | # For APIs, you may want to use :null_session instead. 4 | protect_from_forgery with: :exception 5 | end 6 | -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/app/controllers/concerns/.keep -------------------------------------------------------------------------------- /app/controllers/word_controller.rb: -------------------------------------------------------------------------------- 1 | #require "random-word" 2 | class WordController < ApplicationController 3 | 4 | def index 5 | @icon = Icon.new 6 | #@word = RandomWord.nouns.next 7 | render :template => "icons/edit" 8 | end 9 | 10 | end 11 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/icons_helper.rb: -------------------------------------------------------------------------------- 1 | module IconsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/app/mailers/.keep -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/app/models/.keep -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/app/models/concerns/.keep -------------------------------------------------------------------------------- /app/models/icon.rb: -------------------------------------------------------------------------------- 1 | class Icon < ActiveRecord::Base 2 | 3 | # validates_uniqueness_of :name 4 | 5 | end 6 | -------------------------------------------------------------------------------- /app/views/icons/index.html.erb: -------------------------------------------------------------------------------- 1 |

2 |

3 | 4 | 15 | 16 |
17 | <% @icons.each do |icon| %> 18 | 19 | <% end %> 20 |
21 | 22 |
23 | -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 3 | load Gem.bin_path('bundler', 'bundle') 4 | -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | begin 3 | load File.expand_path("../spring", __FILE__) 4 | rescue LoadError 5 | end 6 | APP_PATH = File.expand_path('../../config/application', __FILE__) 7 | require_relative '../config/boot' 8 | require 'rails/commands' 9 | -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | begin 3 | load File.expand_path("../spring", __FILE__) 4 | rescue LoadError 5 | end 6 | require_relative '../config/boot' 7 | require 'rake' 8 | Rake.application.run 9 | -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | # This file loads spring without using Bundler, in order to be fast 4 | # It gets overwritten when you run the `spring binstub` command 5 | 6 | unless defined?(Spring) 7 | require "rubygems" 8 | require "bundler" 9 | 10 | if match = Bundler.default_lockfile.read.match(/^GEM$.*?^ spring \((.*?)\)$.*?^$/m) 11 | ENV["GEM_PATH"] = ([Bundler.bundle_path.to_s] + Gem.path).join(File::PATH_SEPARATOR) 12 | ENV["GEM_HOME"] = "" 13 | Gem.paths = ENV 14 | 15 | gem "spring", match[1] 16 | require "spring/binstub" 17 | end 18 | end 19 | -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- 1 | # This file is used by Rack-based servers to start the application. 2 | 3 | require ::File.expand_path('../config/environment', __FILE__) 4 | run Rails.application 5 | -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- 1 | require File.expand_path('../boot', __FILE__) 2 | 3 | require 'rails/all' 4 | 5 | # Require the gems listed in Gemfile, including any gems 6 | # you've limited to :test, :development, or :production. 7 | Bundler.require(*Rails.groups) 8 | 9 | module Pxlshp 10 | class Application < Rails::Application 11 | # Settings in config/environments/* take precedence over those specified here. 12 | # Application configuration should go into files in config/initializers 13 | # -- all .rb files in that directory are automatically loaded. 14 | 15 | # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. 16 | # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC. 17 | # config.time_zone = 'Central Time (US & Canada)' 18 | 19 | # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded. 20 | # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s] 21 | # config.i18n.default_locale = :de 22 | end 23 | end 24 | -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- 1 | # Set up gems listed in the Gemfile. 2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 3 | 4 | require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE']) 5 | -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- 1 | # SQLite version 3.x 2 | # gem install sqlite3 3 | # 4 | # Ensure the SQLite 3 gem is defined in your Gemfile 5 | # gem 'sqlite3' 6 | # 7 | default: &default 8 | adapter: sqlite3 9 | pool: 5 10 | timeout: 5000 11 | 12 | development: 13 | <<: *default 14 | database: db/development.sqlite3 15 | 16 | # Warning: The database defined as "test" will be erased and 17 | # re-generated from your development database when you run "rake". 18 | # Do not set this db to the same as development or production. 19 | test: 20 | <<: *default 21 | database: db/test.sqlite3 22 | 23 | production: 24 | <<: *default 25 | database: db/production.sqlite3 26 | -------------------------------------------------------------------------------- /config/database.yml.example: -------------------------------------------------------------------------------- 1 | # SQLite version 3.x 2 | # gem install sqlite3-ruby (not necessary on OS X Leopard) 3 | development: 4 | adapter: sqlite3 5 | database: db/development.sqlite3 6 | pool: 5 7 | timeout: 5000 8 | 9 | # Warning: The database defined as "test" will be erased and 10 | # re-generated from your development database when you run "rake". 11 | # Do not set this db to the same as development or production. 12 | test: 13 | adapter: sqlite3 14 | database: db/test.sqlite3 15 | pool: 5 16 | timeout: 5000 17 | 18 | production: 19 | adapter: sqlite3 20 | database: db/production.sqlite3 21 | pool: 5 22 | timeout: 5000 23 | -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- 1 | # Load the Rails application. 2 | require File.expand_path('../application', __FILE__) 3 | 4 | # Initialize the Rails application. 5 | Rails.application.initialize! 6 | -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Version of your assets, change this if you want to expire all your assets. 4 | Rails.application.config.assets.version = '1.0' 5 | 6 | # Precompile additional assets. 7 | # application.js, application.css, and all non-JS/CSS in app/assets folder are already added. 8 | # Rails.application.config.assets.precompile += %w( search.js ) 9 | -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. 4 | # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } 5 | 6 | # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. 7 | # Rails.backtrace_cleaner.remove_silencers! 8 | -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | Rails.application.config.action_dispatch.cookies_serializer = :json -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Configure sensitive parameters which will be filtered from the log file. 4 | Rails.application.config.filter_parameters += [:password] 5 | -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Add new inflection rules using the following format. Inflections 4 | # are locale specific, and you may define rules for as many different 5 | # locales as you wish. All of these examples are active by default: 6 | # ActiveSupport::Inflector.inflections(:en) do |inflect| 7 | # inflect.plural /^(ox)$/i, '\1en' 8 | # inflect.singular /^(ox)en/i, '\1' 9 | # inflect.irregular 'person', 'people' 10 | # inflect.uncountable %w( fish sheep ) 11 | # end 12 | 13 | # These inflection rules are supported but not enabled by default: 14 | # ActiveSupport::Inflector.inflections(:en) do |inflect| 15 | # inflect.acronym 'RESTful' 16 | # end 17 | -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Add new mime types for use in respond_to blocks: 4 | # Mime::Type.register "text/richtext", :rtf 5 | -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | Rails.application.config.session_store :cookie_store, key: '_pxlshp_session' 4 | -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # This file contains settings for ActionController::ParamsWrapper which 4 | # is enabled by default. 5 | 6 | # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. 7 | ActiveSupport.on_load(:action_controller) do 8 | wrap_parameters format: [:json] if respond_to?(:wrap_parameters) 9 | end 10 | 11 | # To enable root element in JSON for ActiveRecord objects. 12 | # ActiveSupport.on_load(:active_record) do 13 | # self.include_root_in_json = true 14 | # end 15 | -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- 1 | # Files in the config/locales directory are used for internationalization 2 | # and are automatically loaded by Rails. If you want to use locales other 3 | # than English, add the necessary files in this directory. 4 | # 5 | # To use the locales, use `I18n.t`: 6 | # 7 | # I18n.t 'hello' 8 | # 9 | # In views, this is aliased to just `t`: 10 | # 11 | # <%= t('hello') %> 12 | # 13 | # To use a different locale, set it with `I18n.locale`: 14 | # 15 | # I18n.locale = :es 16 | # 17 | # This would use the information in config/locales/es.yml. 18 | # 19 | # To learn more, please read the Rails Internationalization guide 20 | # available at http://guides.rubyonrails.org/i18n.html. 21 | 22 | en: 23 | hello: "Hello world" 24 | -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # Your secret key is used for verifying the integrity of signed cookies. 4 | # If you change this key, all old signed cookies will become invalid! 5 | 6 | # Make sure the secret is at least 30 characters and all random, 7 | # no regular words or you'll be exposed to dictionary attacks. 8 | # You can use `rake secret` to generate a secure secret key. 9 | 10 | # Make sure the secrets in this file are kept private 11 | # if you're sharing your code publicly. 12 | 13 | development: 14 | secret_key_base: 6a031116730eb67321f11ac0feaaaa0f19700e7d1f8ac6912b6074209a53c8fe8b0cfb280dcc3239f165ad4edbd385c6472eda54cb629f8d348609f8d4cd7681 15 | 16 | test: 17 | secret_key_base: 7946c2ad141fdbfb9e1a331c51eb5011a6129611c67f5b7f07670add3c26d2b7dcb6cb7fee57c2f31bcc66f7c2780ce57066e3877b467f65334cece3c03c2927 18 | 19 | # Do not keep production secrets in the repository, 20 | # instead read values from the environment. 21 | production: 22 | secret_key_base: <%= ENV["SECRET_KEY_BASE"] %> 23 | -------------------------------------------------------------------------------- /db/migrate/20120711171916_create_icons.rb: -------------------------------------------------------------------------------- 1 | class CreateIcons < ActiveRecord::Migration 2 | def self.up 3 | 4 | create_table :icons do |t| 5 | 6 | t.string :name, :default => "", :null => false 7 | t.integer :size, :default => 32, :null => false 8 | t.integer :version, :default => 0, :null => false 9 | t.text :image_data, :default => "", :null => false, :limit => 4294967295 10 | 11 | t.timestamps 12 | end 13 | 14 | end 15 | 16 | def self.down 17 | drop_table :icons 18 | end 19 | end 20 | -------------------------------------------------------------------------------- /db/migrate/20140722160409_add_mode.rb: -------------------------------------------------------------------------------- 1 | class AddMode < ActiveRecord::Migration 2 | def self.up 3 | add_column :icons, :mode, :string, :default => 'bw' 4 | end 5 | 6 | def self.down 7 | remove_column :icons, :mode 8 | end 9 | end 10 | -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- 1 | # This file should contain all the record creation needed to seed the database with its default values. 2 | # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup). 3 | # 4 | # Examples: 5 | # 6 | # cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }]) 7 | # Mayor.create(name: 'Emanuel', city: cities.first) 8 | -------------------------------------------------------------------------------- /doc/README_FOR_APP: -------------------------------------------------------------------------------- 1 | Use this README file to introduce your application and point to useful places in the API for learning more. 2 | Run "rake doc:app" to generate API documentation for your models, controllers, helpers, and libraries. 3 | -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/lib/assets/.keep -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/lib/tasks/.keep -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/log/.keep -------------------------------------------------------------------------------- /public/bootstrap/bootstrap/ico/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/bootstrap/bootstrap/ico/favicon.ico -------------------------------------------------------------------------------- /public/bootstrap/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/bootstrap/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /public/bootstrap/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/bootstrap/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /public/bootstrap/ico/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/bootstrap/ico/favicon.ico -------------------------------------------------------------------------------- /public/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /public/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /public/css/fonts/junction-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/css/fonts/junction-webfont.eot -------------------------------------------------------------------------------- /public/css/fonts/junction-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/css/fonts/junction-webfont.ttf -------------------------------------------------------------------------------- /public/css/fonts/junction-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/css/fonts/junction-webfont.woff -------------------------------------------------------------------------------- /public/css/fonts/junction.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/css/fonts/junction.otf -------------------------------------------------------------------------------- /public/css/fonts/junction.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/css/fonts/junction.ttf -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/favicon.ico -------------------------------------------------------------------------------- /public/fontawesome/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.egg-info 3 | *.db 4 | *.db.old 5 | *.swp 6 | *.db-journal 7 | 8 | .coverage 9 | .DS_Store 10 | .installed.cfg 11 | 12 | .idea/* 13 | .svn/* 14 | src/website/static/* 15 | src/website/media/* 16 | 17 | bin 18 | build 19 | cfcache 20 | develop-eggs 21 | dist 22 | downloads 23 | eggs 24 | parts 25 | tmp 26 | .sass-cache 27 | 28 | src/website/settingslocal.py 29 | stunnel.log -------------------------------------------------------------------------------- /public/fontawesome/README.md: -------------------------------------------------------------------------------- 1 | #Font Awesome 3.0.2 2 | ##the iconic font designed for use with Twitter Bootstrap 3 | 4 | The full suite of pictographic icons, examples, and documentation can be found at: 5 | http://fortawesome.github.com/Font-Awesome/ 6 | 7 | 8 | ##License 9 | - The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL 10 | - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License - http://opensource.org/licenses/mit-license.html 11 | - The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/ 12 | - Attribution is no longer required in Font Awesome 3.0, but much appreciated: "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome" 13 | 14 | ##Contact 15 | - Email: dave@davegandy.com 16 | - Twitter: http://twitter.com/fortaweso_me 17 | - Work: Lead Product Designer @ http://kyru.us 18 | 19 | ##Changelog 20 | - v3.0.0 - all icons redesigned from scratch, optimized for Bootstrap's 14px default 21 | - v3.0.1 - much improved rendering in webkit, various bugfixes 22 | - v3.0.2 - much improved rendering and alignment in IE7 23 | -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/css/prettify.css: -------------------------------------------------------------------------------- 1 | .com { color: #93a1a1; } 2 | .lit { color: #195f91; } 3 | .pun, .opn, .clo { color: #93a1a1; } 4 | .fun { color: #dc322f; } 5 | .str, .atv { color: #D14; } 6 | .kwd, .linenums .tag { color: #1e347b; } 7 | .typ, .atn, .dec, .var { color: teal; } 8 | .pln { color: #48484c; } 9 | 10 | .prettyprint { 11 | padding: 8px; 12 | background-color: #f7f7f9; 13 | border: 1px solid #e1e1e8; 14 | } 15 | .prettyprint.linenums { 16 | -webkit-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; 17 | -moz-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; 18 | box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; 19 | } 20 | 21 | /* Specify class=linenums on a pre to get line numbering */ 22 | ol.linenums { 23 | margin: 0 0 0 33px; /* IE indents via margin-left */ 24 | } 25 | ol.linenums li { 26 | padding-left: 12px; 27 | color: #bebec5; 28 | line-height: 18px; 29 | text-shadow: 0 1px 0 #fff; 30 | } -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/fontawesome/docs/assets/font/FontAwesome.otf -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/fontawesome/docs/assets/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/fontawesome/docs/assets/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/fontawesome/docs/assets/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/font/museo_slab_300-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/fontawesome/docs/assets/font/museo_slab_300-webfont.eot -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/font/museo_slab_300-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/fontawesome/docs/assets/font/museo_slab_300-webfont.ttf -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/font/museo_slab_500-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/fontawesome/docs/assets/font/museo_slab_500-webfont.eot -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/font/museo_slab_500-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/fontawesome/docs/assets/font/museo_slab_500-webfont.ttf -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/font/proximanova-sbold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/fontawesome/docs/assets/font/proximanova-sbold-webfont.eot -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/font/proximanova-sbold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/fontawesome/docs/assets/font/proximanova-sbold-webfont.ttf -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/font/proximanova-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/fontawesome/docs/assets/font/proximanova-webfont.eot -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/font/proximanova-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/fontawesome/docs/assets/font/proximanova-webfont.ttf -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/ico/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/fontawesome/docs/assets/ico/favicon.ico -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/img/contribution-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/fontawesome/docs/assets/img/contribution-sample.png -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/img/fort_awesome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/fontawesome/docs/assets/img/fort_awesome.jpg -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/fontawesome/docs/assets/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/fontawesome/docs/assets/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/img/icon-flag.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/fontawesome/docs/assets/img/icon-flag.pdf -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/less/twbs-222/accordion.less: -------------------------------------------------------------------------------- 1 | // 2 | // Accordion 3 | // -------------------------------------------------- 4 | 5 | 6 | // Parent container 7 | .accordion { 8 | margin-bottom: @baseLineHeight; 9 | } 10 | 11 | // Group == heading + body 12 | .accordion-group { 13 | margin-bottom: 2px; 14 | border: 1px solid #e5e5e5; 15 | .border-radius(@baseBorderRadius); 16 | } 17 | .accordion-heading { 18 | border-bottom: 0; 19 | } 20 | .accordion-heading .accordion-toggle { 21 | display: block; 22 | padding: 8px 15px; 23 | } 24 | 25 | // General toggle styles 26 | .accordion-toggle { 27 | cursor: pointer; 28 | } 29 | 30 | // Inner needs the styles because you can't animate properly with any styles on the element 31 | .accordion-inner { 32 | padding: 9px 15px; 33 | border-top: 1px solid #e5e5e5; 34 | } 35 | -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/less/twbs-222/breadcrumbs.less: -------------------------------------------------------------------------------- 1 | // 2 | // Breadcrumbs 3 | // -------------------------------------------------- 4 | 5 | 6 | .breadcrumb { 7 | padding: 8px 15px; 8 | margin: 0 0 @baseLineHeight; 9 | list-style: none; 10 | background-color: #f5f5f5; 11 | .border-radius(@baseBorderRadius); 12 | > li { 13 | display: inline-block; 14 | .ie7-inline-block(); 15 | text-shadow: 0 1px 0 @white; 16 | > .divider { 17 | padding: 0 5px; 18 | color: #ccc; 19 | } 20 | } 21 | > .active { 22 | color: @grayLight; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/less/twbs-222/close.less: -------------------------------------------------------------------------------- 1 | // 2 | // Close icons 3 | // -------------------------------------------------- 4 | 5 | 6 | .close { 7 | float: right; 8 | font-size: 20px; 9 | font-weight: bold; 10 | line-height: @baseLineHeight; 11 | color: @black; 12 | text-shadow: 0 1px 0 rgba(255,255,255,1); 13 | .opacity(20); 14 | &:hover { 15 | color: @black; 16 | text-decoration: none; 17 | cursor: pointer; 18 | .opacity(40); 19 | } 20 | } 21 | 22 | // Additional properties for button version 23 | // iOS requires the button element instead of an anchor tag. 24 | // If you want the anchor version, it requires `href="#"`. 25 | button.close { 26 | padding: 0; 27 | cursor: pointer; 28 | background: transparent; 29 | border: 0; 30 | -webkit-appearance: none; 31 | } -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/less/twbs-222/component-animations.less: -------------------------------------------------------------------------------- 1 | // 2 | // Component animations 3 | // -------------------------------------------------- 4 | 5 | 6 | .fade { 7 | opacity: 0; 8 | .transition(opacity .15s linear); 9 | &.in { 10 | opacity: 1; 11 | } 12 | } 13 | 14 | .collapse { 15 | position: relative; 16 | height: 0; 17 | overflow: hidden; 18 | .transition(height .35s ease); 19 | &.in { 20 | height: auto; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/less/twbs-222/grid.less: -------------------------------------------------------------------------------- 1 | // 2 | // Grid system 3 | // -------------------------------------------------- 4 | 5 | 6 | // Fixed (940px) 7 | #grid > .core(@gridColumnWidth, @gridGutterWidth); 8 | 9 | // Fluid (940px) 10 | #grid > .fluid(@fluidGridColumnWidth, @fluidGridGutterWidth); 11 | 12 | // Reset utility classes due to specificity 13 | [class*="span"].hide, 14 | .row-fluid [class*="span"].hide { 15 | display: none; 16 | } 17 | 18 | [class*="span"].pull-right, 19 | .row-fluid [class*="span"].pull-right { 20 | float: right; 21 | } 22 | -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/less/twbs-222/hero-unit.less: -------------------------------------------------------------------------------- 1 | // 2 | // Hero unit 3 | // -------------------------------------------------- 4 | 5 | 6 | .hero-unit { 7 | padding: 60px; 8 | margin-bottom: 30px; 9 | font-size: 18px; 10 | font-weight: 200; 11 | line-height: @baseLineHeight * 1.5; 12 | color: @heroUnitLeadColor; 13 | background-color: @heroUnitBackground; 14 | .border-radius(6px); 15 | h1 { 16 | margin-bottom: 0; 17 | font-size: 60px; 18 | line-height: 1; 19 | color: @heroUnitHeadingColor; 20 | letter-spacing: -1px; 21 | } 22 | li { 23 | line-height: @baseLineHeight * 1.5; // Reset since we specify in type.less 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/less/twbs-222/layouts.less: -------------------------------------------------------------------------------- 1 | // 2 | // Layouts 3 | // -------------------------------------------------- 4 | 5 | 6 | // Container (centered, fixed-width layouts) 7 | .container { 8 | .container-fixed(); 9 | } 10 | 11 | // Fluid layouts (left aligned, with sidebar, min- & max-width content) 12 | .container-fluid { 13 | padding-right: @gridGutterWidth; 14 | padding-left: @gridGutterWidth; 15 | .clearfix(); 16 | } -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/less/twbs-222/media.less: -------------------------------------------------------------------------------- 1 | // Media objects 2 | // Source: http://stubbornella.org/content/?p=497 3 | // -------------------------------------------------- 4 | 5 | 6 | // Common styles 7 | // ------------------------- 8 | 9 | // Clear the floats 10 | .media, 11 | .media-body { 12 | overflow: hidden; 13 | *overflow: visible; 14 | zoom: 1; 15 | } 16 | 17 | // Proper spacing between instances of .media 18 | .media, 19 | .media .media { 20 | margin-top: 15px; 21 | } 22 | .media:first-child { 23 | margin-top: 0; 24 | } 25 | 26 | // For images and videos, set to block 27 | .media-object { 28 | display: block; 29 | } 30 | 31 | // Reset margins on headings for tighter default spacing 32 | .media-heading { 33 | margin: 0 0 5px; 34 | } 35 | 36 | 37 | // Media image alignment 38 | // ------------------------- 39 | 40 | .media .pull-left { 41 | margin-right: 10px; 42 | } 43 | .media .pull-right { 44 | margin-left: 10px; 45 | } 46 | 47 | 48 | // Media list variation 49 | // ------------------------- 50 | 51 | // Undo default ul/ol styles 52 | .media-list { 53 | margin-left: 0; 54 | list-style: none; 55 | } 56 | -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/less/twbs-222/pager.less: -------------------------------------------------------------------------------- 1 | // 2 | // Pager pagination 3 | // -------------------------------------------------- 4 | 5 | 6 | .pager { 7 | margin: @baseLineHeight 0; 8 | list-style: none; 9 | text-align: center; 10 | .clearfix(); 11 | } 12 | .pager li { 13 | display: inline; 14 | } 15 | .pager li > a, 16 | .pager li > span { 17 | display: inline-block; 18 | padding: 5px 14px; 19 | background-color: #fff; 20 | border: 1px solid #ddd; 21 | .border-radius(15px); 22 | } 23 | .pager li > a:hover { 24 | text-decoration: none; 25 | background-color: #f5f5f5; 26 | } 27 | .pager .next > a, 28 | .pager .next > span { 29 | float: right; 30 | } 31 | .pager .previous > a, 32 | .pager .previous > span { 33 | float: left; 34 | } 35 | .pager .disabled > a, 36 | .pager .disabled > a:hover, 37 | .pager .disabled > span { 38 | color: @grayLight; 39 | background-color: #fff; 40 | cursor: default; 41 | } -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/less/twbs-222/responsive-1200px-min.less: -------------------------------------------------------------------------------- 1 | // 2 | // Responsive: Large desktop and up 3 | // -------------------------------------------------- 4 | 5 | 6 | @media (min-width: 1200px) { 7 | 8 | // Fixed grid 9 | #grid > .core(@gridColumnWidth1200, @gridGutterWidth1200); 10 | 11 | // Fluid grid 12 | #grid > .fluid(@fluidGridColumnWidth1200, @fluidGridGutterWidth1200); 13 | 14 | // Input grid 15 | #grid > .input(@gridColumnWidth1200, @gridGutterWidth1200); 16 | 17 | // Thumbnails 18 | .thumbnails { 19 | margin-left: -@gridGutterWidth1200; 20 | } 21 | .thumbnails > li { 22 | margin-left: @gridGutterWidth1200; 23 | } 24 | .row-fluid .thumbnails { 25 | margin-left: 0; 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/less/twbs-222/responsive-768px-979px.less: -------------------------------------------------------------------------------- 1 | // 2 | // Responsive: Tablet to desktop 3 | // -------------------------------------------------- 4 | 5 | 6 | @media (min-width: 768px) and (max-width: 979px) { 7 | 8 | // Fixed grid 9 | #grid > .core(@gridColumnWidth768, @gridGutterWidth768); 10 | 11 | // Fluid grid 12 | #grid > .fluid(@fluidGridColumnWidth768, @fluidGridGutterWidth768); 13 | 14 | // Input grid 15 | #grid > .input(@gridColumnWidth768, @gridGutterWidth768); 16 | 17 | // No need to reset .thumbnails here since it's the same @gridGutterWidth 18 | 19 | } 20 | -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/less/twbs-222/scaffolding.less: -------------------------------------------------------------------------------- 1 | // 2 | // Scaffolding 3 | // -------------------------------------------------- 4 | 5 | 6 | // Body reset 7 | // ------------------------- 8 | 9 | body { 10 | margin: 0; 11 | font-family: @baseFontFamily; 12 | font-size: @baseFontSize; 13 | line-height: @baseLineHeight; 14 | color: @textColor; 15 | background-color: @bodyBackground; 16 | } 17 | 18 | 19 | // Links 20 | // ------------------------- 21 | 22 | a { 23 | color: @linkColor; 24 | text-decoration: none; 25 | } 26 | a:hover { 27 | color: @linkColorHover; 28 | text-decoration: underline; 29 | } 30 | 31 | 32 | // Images 33 | // ------------------------- 34 | 35 | // Rounded corners 36 | .img-rounded { 37 | .border-radius(6px); 38 | } 39 | 40 | // Add polaroid-esque trim 41 | .img-polaroid { 42 | padding: 4px; 43 | background-color: #fff; 44 | border: 1px solid #ccc; 45 | border: 1px solid rgba(0,0,0,.2); 46 | .box-shadow(0 1px 3px rgba(0,0,0,.1)); 47 | } 48 | 49 | // Perfect circle 50 | .img-circle { 51 | .border-radius(500px); // crank the border-radius so it works with most reasonably sized images 52 | } 53 | -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/less/twbs-222/utilities.less: -------------------------------------------------------------------------------- 1 | // 2 | // Utility classes 3 | // -------------------------------------------------- 4 | 5 | 6 | // Quick floats 7 | .pull-right { 8 | float: right; 9 | } 10 | .pull-left { 11 | float: left; 12 | } 13 | 14 | // Toggling content 15 | .hide { 16 | display: none; 17 | } 18 | .show { 19 | display: block; 20 | } 21 | 22 | // Visibility 23 | .invisible { 24 | visibility: hidden; 25 | } 26 | 27 | // For Affix plugin 28 | .affix { 29 | position: fixed; 30 | } 31 | -------------------------------------------------------------------------------- /public/fontawesome/docs/assets/less/twbs-222/wells.less: -------------------------------------------------------------------------------- 1 | // 2 | // Wells 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .well { 8 | min-height: 20px; 9 | padding: 19px; 10 | margin-bottom: 20px; 11 | background-color: @wellBackground; 12 | border: 1px solid darken(@wellBackground, 7%); 13 | .border-radius(@baseBorderRadius); 14 | .box-shadow(inset 0 1px 1px rgba(0,0,0,.05)); 15 | blockquote { 16 | border-color: #ddd; 17 | border-color: rgba(0,0,0,.15); 18 | } 19 | } 20 | 21 | // Sizes 22 | .well-large { 23 | padding: 24px; 24 | .border-radius(@borderRadiusLarge); 25 | } 26 | .well-small { 27 | padding: 9px; 28 | .border-radius(@borderRadiusSmall); 29 | } 30 | -------------------------------------------------------------------------------- /public/fontawesome/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/fontawesome/font/FontAwesome.otf -------------------------------------------------------------------------------- /public/fontawesome/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/fontawesome/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/fontawesome/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/fontawesome/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/fontawesome/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/fontawesome/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/google6f6b5070e97473ee.html.bkp: -------------------------------------------------------------------------------- 1 | google-site-verification: google6f6b5070e97473ee.html -------------------------------------------------------------------------------- /public/images/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/images/colors.png -------------------------------------------------------------------------------- /public/images/mnls-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/images/mnls-114.png -------------------------------------------------------------------------------- /public/images/mnls-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/images/mnls-144.png -------------------------------------------------------------------------------- /public/images/mnls-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/images/mnls-36.png -------------------------------------------------------------------------------- /public/images/mnls-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/images/mnls-48.png -------------------------------------------------------------------------------- /public/images/mnls-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/images/mnls-57.png -------------------------------------------------------------------------------- /public/images/mnls-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/images/mnls-72.png -------------------------------------------------------------------------------- /public/images/mnls-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/images/mnls-96.png -------------------------------------------------------------------------------- /public/images/mnls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/images/mnls.png -------------------------------------------------------------------------------- /public/images/mnlsbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/images/mnlsbg.png -------------------------------------------------------------------------------- /public/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/images/rails.png -------------------------------------------------------------------------------- /public/images/screenshot-android-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/images/screenshot-android-editor.png -------------------------------------------------------------------------------- /public/images/screenshot-android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/images/screenshot-android.png -------------------------------------------------------------------------------- /public/images/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/images/ship.png -------------------------------------------------------------------------------- /public/images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/images/twitter.png -------------------------------------------------------------------------------- /public/img/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/img/logo-small.png -------------------------------------------------------------------------------- /public/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/img/logo.png -------------------------------------------------------------------------------- /public/javascripts/application.js: -------------------------------------------------------------------------------- 1 | // Place your application-specific JavaScript functions and classes here 2 | // This file is automatically included by javascript_include_tag :defaults 3 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/AUTHORS.txt: -------------------------------------------------------------------------------- 1 | jQuery UI Authors (http://jqueryui.com/about) 2 | 3 | This software consists of voluntary contributions made by many 4 | individuals. For exact contribution history, see the revision history 5 | and logs, available at http://github.com/jquery/jquery-ui 6 | 7 | Brandon Aaron 8 | Paul Bakaus (paulbakaus.com) 9 | David Bolter 10 | Rich Caloggero 11 | Chi Cheng (cloudream@gmail.com) 12 | Colin Clark (http://colin.atrc.utoronto.ca/) 13 | Michelle D'Souza 14 | Aaron Eisenberger (aaronchi@gmail.com) 15 | Ariel Flesler 16 | Bohdan Ganicky 17 | Scott González 18 | Marc Grabanski (m@marcgrabanski.com) 19 | Klaus Hartl (stilbuero.de) 20 | Scott Jehl 21 | Cody Lindley 22 | Eduardo Lundgren (eduardolundgren@gmail.com) 23 | Todd Parker 24 | John Resig 25 | Patty Toland 26 | Ca-Phun Ung (yelotofu.com) 27 | Keith Wood (kbwood@virginbroadband.com.au) 28 | Maggie Costello Wachs 29 | Richard D. Worth (rdworth.org) 30 | Jörn Zaefferer (bassistance.de) 31 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/accordion/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Accordion Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 22 |
23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/addClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/animate/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/autocomplete/images/jquery_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/demos/autocomplete/images/jquery_32x32.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/autocomplete/images/jqueryui_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/demos/autocomplete/images/jqueryui_32x32.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/autocomplete/images/sizzlejs_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/demos/autocomplete/images/sizzlejs_32x32.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/autocomplete/images/transparent_1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/demos/autocomplete/images/transparent_1x1.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/autocomplete/images/ui-anim_basic_16x16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/demos/autocomplete/images/ui-anim_basic_16x16.gif -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/autocomplete/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Autocomplete Demos 6 | 7 | 8 | 9 |
10 |

Examples

11 | 25 |
26 | 27 | 28 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/button/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Button Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 20 |
21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/datepicker/icon-trigger.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Datepicker - Icon trigger 6 | 7 | 8 | 9 | 10 | 11 | 12 | 21 | 22 | 23 | 24 |
25 | 26 |

Date:

27 | 28 |
29 | 30 | 31 | 32 |
33 |

Click the icon next to the input field to show the datepicker. Set the datepicker to open on focus (default behavior), on icon click, or both.

34 |
35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/datepicker/inline.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Datepicker - Display inline 6 | 7 | 8 | 9 | 10 | 11 | 12 | 17 | 18 | 19 | 20 |
21 | 22 | Date:
23 | 24 |
25 | 26 | 27 | 28 |
29 |

Display the datepicker embedded in the page instead of in an overlay. Simply call .datepicker() on a div instead of an input.

30 |
31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/datepicker/multiple-calendars.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Datepicker - Display multiple months 6 | 7 | 8 | 9 | 10 | 11 | 12 | 20 | 21 | 22 | 23 |
24 | 25 |

Date:

26 | 27 |
28 | 29 | 30 | 31 |
32 |

Set the numberOfMonths option to an integer of 2 or more to show multiple months in a single datepicker.

33 |
34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/datepicker/other-months.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Datepicker - Dates in other months 6 | 7 | 8 | 9 | 10 | 11 | 12 | 20 | 21 | 22 | 23 |
24 | 25 |

Date:

26 | 27 |
28 | 29 | 30 | 31 |
32 |

The datepicker can show dates that come from other than the main month 33 | being displayed. These other dates can also be made selectable.

34 |
35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/dialog/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Dialog Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 20 |
21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/draggable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Draggable Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 25 |
26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/droppable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Droppable Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 21 |
22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/effect/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 16 |
17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/hide/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/demos/images/calendar.gif -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/images/demo-config-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/demos/images/demo-config-on.gif -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/images/icon-docs-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/demos/images/icon-docs-info.gif -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/demos/images/pbar-ani.gif -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/position/images/earth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/demos/position/images/earth.jpg -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/position/images/flight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/demos/position/images/flight.jpg -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/position/images/rocket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/demos/position/images/rocket.jpg -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/position/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Position Demo 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 16 |
17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/progressbar/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Progressbar - Default functionality 6 | 7 | 8 | 9 | 10 | 11 | 12 | 19 | 20 | 21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 |
31 |

Default determinate progress bar.

32 |
33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/progressbar/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/demos/progressbar/images/pbar-ani.gif -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/progressbar/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Progressbar Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 17 |
18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/removeClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/resizable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Resizable Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 25 |
26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/selectable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Selectable Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 17 |
18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/show/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/slider/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Slider - Default functionality 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 21 | 22 | 23 | 24 |
25 | 26 |
27 | 28 |
29 | 30 | 31 | 32 |
33 |

The basic slider is horizontal and has a single handle that can be moved with the mouse or by using the arrow keys.

34 |
35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/slider/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Slider Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 26 |
27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/sortable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Sortable Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 23 |
24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/switchClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/tabs/ajax/content4-broken.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/tabs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Tabs Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 22 |
23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/toggle/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/demos/toggleClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery-ui", 3 | "title": "jQuery UI", 4 | "description": "Abstractions for low-level interaction and animation, advanced effects and high-level, themeable widgets, built on top of the jQuery JavaScript Library, that you can use to build highly interactive web applications.", 5 | "version": "1.8.21", 6 | "homepage": "https://github.com/jquery/jquery-ui", 7 | "author": { 8 | "name": "AUTHORS.txt" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "git://github.com/jquery/jquery-ui.git" 13 | }, 14 | "bugs": { 15 | "url": "http://bugs.jqueryui.com/" 16 | }, 17 | "licenses": [ 18 | { 19 | "type": "MIT", 20 | "url": "http://www.opensource.org/licenses/MIT" 21 | }, 22 | { 23 | "type": "GPL", 24 | "url": "http://www.opensource.org/licenses/GPL-2.0" 25 | } 26 | ], 27 | "dependencies": {}, 28 | "devDependencies": { 29 | "grunt": "0.3.9", 30 | "grunt-css": "0.1.1", 31 | "grunt-compare-size": "0.1.1", 32 | "request": "2.9.153", 33 | "rimraf": "2.0.1" 34 | }, 35 | "keywords": [] 36 | } 37 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.21 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.base.css"; 11 | @import "jquery.ui.theme.css"; 12 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | @import url("jquery.ui.core.css"); 2 | @import url("jquery.ui.resizable.css"); 3 | @import url("jquery.ui.selectable.css"); 4 | @import url("jquery.ui.accordion.css"); 5 | @import url("jquery.ui.autocomplete.css"); 6 | @import url("jquery.ui.button.css"); 7 | @import url("jquery.ui.dialog.css"); 8 | @import url("jquery.ui.slider.css"); 9 | @import url("jquery.ui.tabs.css"); 10 | @import url("jquery.ui.datepicker.css"); 11 | @import url("jquery.ui.progressbar.css"); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Progressbar 1.8.21 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Progressbar#theming 9 | */ 10 | .ui-progressbar { height:2em; text-align: left; overflow: hidden; } 11 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectable 1.8.21 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Selectable#theming 9 | */ 10 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 11 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/javascripts/jquery-ui/development-bundle/themes/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/smoothness/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.21 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.base.css"; 11 | @import "jquery.ui.theme.css"; 12 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/smoothness/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | @import url("jquery.ui.core.css"); 2 | @import url("jquery.ui.resizable.css"); 3 | @import url("jquery.ui.selectable.css"); 4 | @import url("jquery.ui.accordion.css"); 5 | @import url("jquery.ui.autocomplete.css"); 6 | @import url("jquery.ui.button.css"); 7 | @import url("jquery.ui.dialog.css"); 8 | @import url("jquery.ui.slider.css"); 9 | @import url("jquery.ui.tabs.css"); 10 | @import url("jquery.ui.datepicker.css"); 11 | @import url("jquery.ui.progressbar.css"); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/smoothness/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Progressbar 1.8.21 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Progressbar#theming 9 | */ 10 | .ui-progressbar { height:2em; text-align: left; overflow: hidden; } 11 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/themes/smoothness/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectable 1.8.21 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Selectable#theming 9 | */ 10 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 11 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-af.js: -------------------------------------------------------------------------------- 1 | /* Afrikaans initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Renier Pretorius. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['af'] = { 5 | closeText: 'Selekteer', 6 | prevText: 'Vorige', 7 | nextText: 'Volgende', 8 | currentText: 'Vandag', 9 | monthNames: ['Januarie','Februarie','Maart','April','Mei','Junie', 10 | 'Julie','Augustus','September','Oktober','November','Desember'], 11 | monthNamesShort: ['Jan', 'Feb', 'Mrt', 'Apr', 'Mei', 'Jun', 12 | 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Des'], 13 | dayNames: ['Sondag', 'Maandag', 'Dinsdag', 'Woensdag', 'Donderdag', 'Vrydag', 'Saterdag'], 14 | dayNamesShort: ['Son', 'Maa', 'Din', 'Woe', 'Don', 'Vry', 'Sat'], 15 | dayNamesMin: ['So','Ma','Di','Wo','Do','Vr','Sa'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['af']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar-DZ.js: -------------------------------------------------------------------------------- 1 | /* Algerian Arabic Translation for jQuery UI date picker plugin. (can be used for Tunisia)*/ 2 | /* Mohamed Cherif BOUCHELAGHEM -- cherifbouchelaghem@yahoo.fr */ 3 | 4 | jQuery(function($){ 5 | $.datepicker.regional['ar-DZ'] = { 6 | closeText: 'إغلاق', 7 | prevText: '<السابق', 8 | nextText: 'التالي>', 9 | currentText: 'اليوم', 10 | monthNames: ['جانفي', 'فيفري', 'مارس', 'أفريل', 'ماي', 'جوان', 11 | 'جويلية', 'أوت', 'سبتمبر','أكتوبر', 'نوفمبر', 'ديسمبر'], 12 | monthNamesShort: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'], 13 | dayNames: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], 14 | dayNamesShort: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], 15 | dayNamesMin: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], 16 | weekHeader: 'أسبوع', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 6, 19 | isRTL: true, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['ar-DZ']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-az.js: -------------------------------------------------------------------------------- 1 | /* Azerbaijani (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Jamil Najafov (necefov33@gmail.com). */ 3 | jQuery(function($) { 4 | $.datepicker.regional['az'] = { 5 | closeText: 'Bağla', 6 | prevText: '<Geri', 7 | nextText: 'İrəli>', 8 | currentText: 'Bugün', 9 | monthNames: ['Yanvar','Fevral','Mart','Aprel','May','İyun', 10 | 'İyul','Avqust','Sentyabr','Oktyabr','Noyabr','Dekabr'], 11 | monthNamesShort: ['Yan','Fev','Mar','Apr','May','İyun', 12 | 'İyul','Avq','Sen','Okt','Noy','Dek'], 13 | dayNames: ['Bazar','Bazar ertəsi','Çərşənbə axşamı','Çərşənbə','Cümə axşamı','Cümə','Şənbə'], 14 | dayNamesShort: ['B','Be','Ça','Ç','Ca','C','Ş'], 15 | dayNamesMin: ['B','B','Ç','С','Ç','C','Ş'], 16 | weekHeader: 'Hf', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['az']); 23 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bg.js: -------------------------------------------------------------------------------- 1 | /* Bulgarian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Stoyan Kyosev (http://svest.org). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['bg'] = { 5 | closeText: 'затвори', 6 | prevText: '<назад', 7 | nextText: 'напред>', 8 | nextBigText: '>>', 9 | currentText: 'днес', 10 | monthNames: ['Януари','Февруари','Март','Април','Май','Юни', 11 | 'Юли','Август','Септември','Октомври','Ноември','Декември'], 12 | monthNamesShort: ['Яну','Фев','Мар','Апр','Май','Юни', 13 | 'Юли','Авг','Сеп','Окт','Нов','Дек'], 14 | dayNames: ['Неделя','Понеделник','Вторник','Сряда','Четвъртък','Петък','Събота'], 15 | dayNamesShort: ['Нед','Пон','Вто','Сря','Чет','Пет','Съб'], 16 | dayNamesMin: ['Не','По','Вт','Ср','Че','Пе','Съ'], 17 | weekHeader: 'Wk', 18 | dateFormat: 'dd.mm.yy', 19 | firstDay: 1, 20 | isRTL: false, 21 | showMonthAfterYear: false, 22 | yearSuffix: ''}; 23 | $.datepicker.setDefaults($.datepicker.regional['bg']); 24 | }); 25 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js: -------------------------------------------------------------------------------- 1 | /* Bosnian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Kenan Konjo. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['bs'] = { 5 | closeText: 'Zatvori', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Danas', 9 | monthNames: ['Januar','Februar','Mart','April','Maj','Juni', 10 | 'Juli','August','Septembar','Oktobar','Novembar','Decembar'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 12 | 'Jul','Aug','Sep','Okt','Nov','Dec'], 13 | dayNames: ['Nedelja','Ponedeljak','Utorak','Srijeda','Četvrtak','Petak','Subota'], 14 | dayNamesShort: ['Ned','Pon','Uto','Sri','Čet','Pet','Sub'], 15 | dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['bs']); 23 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js: -------------------------------------------------------------------------------- 1 | /* Inicialització en català per a l'extenció 'calendar' per jQuery. */ 2 | /* Writers: (joan.leon@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ca'] = { 5 | closeText: 'Tancar', 6 | prevText: '<Ant', 7 | nextText: 'Seg>', 8 | currentText: 'Avui', 9 | monthNames: ['Gener','Febrer','Març','Abril','Maig','Juny', 10 | 'Juliol','Agost','Setembre','Octubre','Novembre','Desembre'], 11 | monthNamesShort: ['Gen','Feb','Mar','Abr','Mai','Jun', 12 | 'Jul','Ago','Set','Oct','Nov','Des'], 13 | dayNames: ['Diumenge','Dilluns','Dimarts','Dimecres','Dijous','Divendres','Dissabte'], 14 | dayNamesShort: ['Dug','Dln','Dmt','Dmc','Djs','Dvn','Dsb'], 15 | dayNamesMin: ['Dg','Dl','Dt','Dc','Dj','Dv','Ds'], 16 | weekHeader: 'Sm', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['ca']); 23 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cs.js: -------------------------------------------------------------------------------- 1 | /* Czech initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Tomas Muller (tomas@tomas-muller.net). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['cs'] = { 5 | closeText: 'Zavřít', 6 | prevText: '<Dříve', 7 | nextText: 'Později>', 8 | currentText: 'Nyní', 9 | monthNames: ['leden','únor','březen','duben','květen','červen', 10 | 'červenec','srpen','září','říjen','listopad','prosinec'], 11 | monthNamesShort: ['led','úno','bře','dub','kvě','čer', 12 | 'čvc','srp','zář','říj','lis','pro'], 13 | dayNames: ['neděle', 'pondělí', 'úterý', 'středa', 'čtvrtek', 'pátek', 'sobota'], 14 | dayNamesShort: ['ne', 'po', 'út', 'st', 'čt', 'pá', 'so'], 15 | dayNamesMin: ['ne','po','út','st','čt','pá','so'], 16 | weekHeader: 'Týd', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['cs']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cy-GB.js: -------------------------------------------------------------------------------- 1 | /* Welsh/UK initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by William Griffiths. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['cy-GB'] = { 5 | closeText: 'Done', 6 | prevText: 'Prev', 7 | nextText: 'Next', 8 | currentText: 'Today', 9 | monthNames: ['Ionawr','Chwefror','Mawrth','Ebrill','Mai','Mehefin', 10 | 'Gorffennaf','Awst','Medi','Hydref','Tachwedd','Rhagfyr'], 11 | monthNamesShort: ['Ion', 'Chw', 'Maw', 'Ebr', 'Mai', 'Meh', 12 | 'Gor', 'Aws', 'Med', 'Hyd', 'Tac', 'Rha'], 13 | dayNames: ['Dydd Sul', 'Dydd Llun', 'Dydd Mawrth', 'Dydd Mercher', 'Dydd Iau', 'Dydd Gwener', 'Dydd Sadwrn'], 14 | dayNamesShort: ['Sul', 'Llu', 'Maw', 'Mer', 'Iau', 'Gwe', 'Sad'], 15 | dayNamesMin: ['Su','Ll','Ma','Me','Ia','Gw','Sa'], 16 | weekHeader: 'Wy', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['cy-GB']); 23 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-da.js: -------------------------------------------------------------------------------- 1 | /* Danish initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Jan Christensen ( deletestuff@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['da'] = { 5 | closeText: 'Luk', 6 | prevText: '<Forrige', 7 | nextText: 'Næste>', 8 | currentText: 'Idag', 9 | monthNames: ['Januar','Februar','Marts','April','Maj','Juni', 10 | 'Juli','August','September','Oktober','November','December'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 12 | 'Jul','Aug','Sep','Okt','Nov','Dec'], 13 | dayNames: ['Søndag','Mandag','Tirsdag','Onsdag','Torsdag','Fredag','Lørdag'], 14 | dayNamesShort: ['Søn','Man','Tir','Ons','Tor','Fre','Lør'], 15 | dayNamesMin: ['Sø','Ma','Ti','On','To','Fr','Lø'], 16 | weekHeader: 'Uge', 17 | dateFormat: 'dd-mm-yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['da']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-de.js: -------------------------------------------------------------------------------- 1 | /* German initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Milian Wolff (mail@milianw.de). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['de'] = { 5 | closeText: 'schließen', 6 | prevText: '<zurück', 7 | nextText: 'Vor>', 8 | currentText: 'heute', 9 | monthNames: ['Januar','Februar','März','April','Mai','Juni', 10 | 'Juli','August','September','Oktober','November','Dezember'], 11 | monthNamesShort: ['Jan','Feb','Mär','Apr','Mai','Jun', 12 | 'Jul','Aug','Sep','Okt','Nov','Dez'], 13 | dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'], 14 | dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'], 15 | dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'], 16 | weekHeader: 'KW', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['de']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-el.js: -------------------------------------------------------------------------------- 1 | /* Greek (el) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Alex Cicovic (http://www.alexcicovic.com) */ 3 | jQuery(function($){ 4 | $.datepicker.regional['el'] = { 5 | closeText: 'Κλείσιμο', 6 | prevText: 'Προηγούμενος', 7 | nextText: 'Επόμενος', 8 | currentText: 'Τρέχων Μήνας', 9 | monthNames: ['Ιανουάριος','Φεβρουάριος','Μάρτιος','Απρίλιος','Μάιος','Ιούνιος', 10 | 'Ιούλιος','Αύγουστος','Σεπτέμβριος','Οκτώβριος','Νοέμβριος','Δεκέμβριος'], 11 | monthNamesShort: ['Ιαν','Φεβ','Μαρ','Απρ','Μαι','Ιουν', 12 | 'Ιουλ','Αυγ','Σεπ','Οκτ','Νοε','Δεκ'], 13 | dayNames: ['Κυριακή','Δευτέρα','Τρίτη','Τετάρτη','Πέμπτη','Παρασκευή','Σάββατο'], 14 | dayNamesShort: ['Κυρ','Δευ','Τρι','Τετ','Πεμ','Παρ','Σαβ'], 15 | dayNamesMin: ['Κυ','Δε','Τρ','Τε','Πε','Πα','Σα'], 16 | weekHeader: 'Εβδ', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['el']); 23 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-AU.js: -------------------------------------------------------------------------------- 1 | /* English/Australia initialisation for the jQuery UI date picker plugin. */ 2 | /* Based on the en-GB initialisation. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['en-AU'] = { 5 | closeText: 'Done', 6 | prevText: 'Prev', 7 | nextText: 'Next', 8 | currentText: 'Today', 9 | monthNames: ['January','February','March','April','May','June', 10 | 'July','August','September','October','November','December'], 11 | monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 12 | 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], 13 | dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], 14 | dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], 15 | dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['en-AU']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js: -------------------------------------------------------------------------------- 1 | /* English/UK initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Stuart. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['en-GB'] = { 5 | closeText: 'Done', 6 | prevText: 'Prev', 7 | nextText: 'Next', 8 | currentText: 'Today', 9 | monthNames: ['January','February','March','April','May','June', 10 | 'July','August','September','October','November','December'], 11 | monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 12 | 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], 13 | dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], 14 | dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], 15 | dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['en-GB']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-NZ.js: -------------------------------------------------------------------------------- 1 | /* English/New Zealand initialisation for the jQuery UI date picker plugin. */ 2 | /* Based on the en-GB initialisation. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['en-NZ'] = { 5 | closeText: 'Done', 6 | prevText: 'Prev', 7 | nextText: 'Next', 8 | currentText: 'Today', 9 | monthNames: ['January','February','March','April','May','June', 10 | 'July','August','September','October','November','December'], 11 | monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 12 | 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], 13 | dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], 14 | dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], 15 | dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['en-NZ']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eo.js: -------------------------------------------------------------------------------- 1 | /* Esperanto initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Olivier M. (olivierweb@ifrance.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['eo'] = { 5 | closeText: 'Fermi', 6 | prevText: '<Anta', 7 | nextText: 'Sekv>', 8 | currentText: 'Nuna', 9 | monthNames: ['Januaro','Februaro','Marto','Aprilo','Majo','Junio', 10 | 'Julio','Aŭgusto','Septembro','Oktobro','Novembro','Decembro'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 12 | 'Jul','Aŭg','Sep','Okt','Nov','Dec'], 13 | dayNames: ['Dimanĉo','Lundo','Mardo','Merkredo','Ĵaŭdo','Vendredo','Sabato'], 14 | dayNamesShort: ['Dim','Lun','Mar','Mer','Ĵaŭ','Ven','Sab'], 15 | dayNamesMin: ['Di','Lu','Ma','Me','Ĵa','Ve','Sa'], 16 | weekHeader: 'Sb', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['eo']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-es.js: -------------------------------------------------------------------------------- 1 | /* Inicialización en español para la extensión 'UI date picker' para jQuery. */ 2 | /* Traducido por Vester (xvester@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['es'] = { 5 | closeText: 'Cerrar', 6 | prevText: '<Ant', 7 | nextText: 'Sig>', 8 | currentText: 'Hoy', 9 | monthNames: ['Enero','Febrero','Marzo','Abril','Mayo','Junio', 10 | 'Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre'], 11 | monthNamesShort: ['Ene','Feb','Mar','Abr','May','Jun', 12 | 'Jul','Ago','Sep','Oct','Nov','Dic'], 13 | dayNames: ['Domingo','Lunes','Martes','Miércoles','Jueves','Viernes','Sábado'], 14 | dayNamesShort: ['Dom','Lun','Mar','Mié','Juv','Vie','Sáb'], 15 | dayNamesMin: ['Do','Lu','Ma','Mi','Ju','Vi','Sá'], 16 | weekHeader: 'Sm', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['es']); 23 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-et.js: -------------------------------------------------------------------------------- 1 | /* Estonian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Mart Sõmermaa (mrts.pydev at gmail com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['et'] = { 5 | closeText: 'Sulge', 6 | prevText: 'Eelnev', 7 | nextText: 'Järgnev', 8 | currentText: 'Täna', 9 | monthNames: ['Jaanuar','Veebruar','Märts','Aprill','Mai','Juuni', 10 | 'Juuli','August','September','Oktoober','November','Detsember'], 11 | monthNamesShort: ['Jaan', 'Veebr', 'Märts', 'Apr', 'Mai', 'Juuni', 12 | 'Juuli', 'Aug', 'Sept', 'Okt', 'Nov', 'Dets'], 13 | dayNames: ['Pühapäev', 'Esmaspäev', 'Teisipäev', 'Kolmapäev', 'Neljapäev', 'Reede', 'Laupäev'], 14 | dayNamesShort: ['Pühap', 'Esmasp', 'Teisip', 'Kolmap', 'Neljap', 'Reede', 'Laup'], 15 | dayNamesMin: ['P','E','T','K','N','R','L'], 16 | weekHeader: 'näd', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['et']); 23 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eu.js: -------------------------------------------------------------------------------- 1 | /* Euskarako oinarria 'UI date picker' jquery-ko extentsioarentzat */ 2 | /* Karrikas-ek itzulia (karrikas@karrikas.com) */ 3 | jQuery(function($){ 4 | $.datepicker.regional['eu'] = { 5 | closeText: 'Egina', 6 | prevText: '<Aur', 7 | nextText: 'Hur>', 8 | currentText: 'Gaur', 9 | monthNames: ['urtarrila','otsaila','martxoa','apirila','maiatza','ekaina', 10 | 'uztaila','abuztua','iraila','urria','azaroa','abendua'], 11 | monthNamesShort: ['urt.','ots.','mar.','api.','mai.','eka.', 12 | 'uzt.','abu.','ira.','urr.','aza.','abe.'], 13 | dayNames: ['igandea','astelehena','asteartea','asteazkena','osteguna','ostirala','larunbata'], 14 | dayNamesShort: ['ig.','al.','ar.','az.','og.','ol.','lr.'], 15 | dayNamesMin: ['ig','al','ar','az','og','ol','lr'], 16 | weekHeader: 'As', 17 | dateFormat: 'yy-mm-dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['eu']); 23 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fi.js: -------------------------------------------------------------------------------- 1 | /* Finnish initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Harri Kilpiö (harrikilpio@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['fi'] = { 5 | closeText: 'Sulje', 6 | prevText: '«Edellinen', 7 | nextText: 'Seuraava»', 8 | currentText: 'Tänään', 9 | monthNames: ['Tammikuu','Helmikuu','Maaliskuu','Huhtikuu','Toukokuu','Kesäkuu', 10 | 'Heinäkuu','Elokuu','Syyskuu','Lokakuu','Marraskuu','Joulukuu'], 11 | monthNamesShort: ['Tammi','Helmi','Maalis','Huhti','Touko','Kesä', 12 | 'Heinä','Elo','Syys','Loka','Marras','Joulu'], 13 | dayNamesShort: ['Su','Ma','Ti','Ke','To','Pe','La'], 14 | dayNames: ['Sunnuntai','Maanantai','Tiistai','Keskiviikko','Torstai','Perjantai','Lauantai'], 15 | dayNamesMin: ['Su','Ma','Ti','Ke','To','Pe','La'], 16 | weekHeader: 'Vk', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['fi']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fo.js: -------------------------------------------------------------------------------- 1 | /* Faroese initialisation for the jQuery UI date picker plugin */ 2 | /* Written by Sverri Mohr Olsen, sverrimo@gmail.com */ 3 | jQuery(function($){ 4 | $.datepicker.regional['fo'] = { 5 | closeText: 'Lat aftur', 6 | prevText: '<Fyrra', 7 | nextText: 'Næsta>', 8 | currentText: 'Í dag', 9 | monthNames: ['Januar','Februar','Mars','Apríl','Mei','Juni', 10 | 'Juli','August','September','Oktober','November','Desember'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Mei','Jun', 12 | 'Jul','Aug','Sep','Okt','Nov','Des'], 13 | dayNames: ['Sunnudagur','Mánadagur','Týsdagur','Mikudagur','Hósdagur','Fríggjadagur','Leyardagur'], 14 | dayNamesShort: ['Sun','Mán','Týs','Mik','Hós','Frí','Ley'], 15 | dayNamesMin: ['Su','Má','Tý','Mi','Hó','Fr','Le'], 16 | weekHeader: 'Vk', 17 | dateFormat: 'dd-mm-yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['fo']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js: -------------------------------------------------------------------------------- 1 | /* Swiss-French initialisation for the jQuery UI date picker plugin. */ 2 | /* Written Martin Voelkle (martin.voelkle@e-tc.ch). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['fr-CH'] = { 5 | closeText: 'Fermer', 6 | prevText: '<Préc', 7 | nextText: 'Suiv>', 8 | currentText: 'Courant', 9 | monthNames: ['Janvier','Février','Mars','Avril','Mai','Juin', 10 | 'Juillet','Août','Septembre','Octobre','Novembre','Décembre'], 11 | monthNamesShort: ['Jan','Fév','Mar','Avr','Mai','Jun', 12 | 'Jul','Aoû','Sep','Oct','Nov','Déc'], 13 | dayNames: ['Dimanche','Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi'], 14 | dayNamesShort: ['Dim','Lun','Mar','Mer','Jeu','Ven','Sam'], 15 | dayNamesMin: ['Di','Lu','Ma','Me','Je','Ve','Sa'], 16 | weekHeader: 'Sm', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['fr-CH']); 23 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-gl.js: -------------------------------------------------------------------------------- 1 | /* Galician localization for 'UI date picker' jQuery extension. */ 2 | /* Translated by Jorge Barreiro . */ 3 | jQuery(function($){ 4 | $.datepicker.regional['gl'] = { 5 | closeText: 'Pechar', 6 | prevText: '<Ant', 7 | nextText: 'Seg>', 8 | currentText: 'Hoxe', 9 | monthNames: ['Xaneiro','Febreiro','Marzo','Abril','Maio','Xuño', 10 | 'Xullo','Agosto','Setembro','Outubro','Novembro','Decembro'], 11 | monthNamesShort: ['Xan','Feb','Mar','Abr','Mai','Xuñ', 12 | 'Xul','Ago','Set','Out','Nov','Dec'], 13 | dayNames: ['Domingo','Luns','Martes','Mércores','Xoves','Venres','Sábado'], 14 | dayNamesShort: ['Dom','Lun','Mar','Mér','Xov','Ven','Sáb'], 15 | dayNamesMin: ['Do','Lu','Ma','Mé','Xo','Ve','Sá'], 16 | weekHeader: 'Sm', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['gl']); 23 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-he.js: -------------------------------------------------------------------------------- 1 | /* Hebrew initialisation for the UI Datepicker extension. */ 2 | /* Written by Amir Hardon (ahardon at gmail dot com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['he'] = { 5 | closeText: 'סגור', 6 | prevText: '<הקודם', 7 | nextText: 'הבא>', 8 | currentText: 'היום', 9 | monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני', 10 | 'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'], 11 | monthNamesShort: ['ינו','פבר','מרץ','אפר','מאי','יוני', 12 | 'יולי','אוג','ספט','אוק','נוב','דצמ'], 13 | dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'], 14 | dayNamesShort: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'], 15 | dayNamesMin: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: true, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['he']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hi.js: -------------------------------------------------------------------------------- 1 | /* Hindi initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Michael Dawart. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['hi'] = { 5 | closeText: 'बंद', 6 | prevText: 'पिछला', 7 | nextText: 'अगला', 8 | currentText: 'आज', 9 | monthNames: ['जनवरी ','फरवरी','मार्च','अप्रेल','मई','जून', 10 | 'जूलाई','अगस्त ','सितम्बर','अक्टूबर','नवम्बर','दिसम्बर'], 11 | monthNamesShort: ['जन', 'फर', 'मार्च', 'अप्रेल', 'मई', 'जून', 12 | 'जूलाई', 'अग', 'सित', 'अक्ट', 'नव', 'दि'], 13 | dayNames: ['रविवार', 'सोमवार', 'मंगलवार', 'बुधवार', 'गुरुवार', 'शुक्रवार', 'शनिवार'], 14 | dayNamesShort: ['रवि', 'सोम', 'मंगल', 'बुध', 'गुरु', 'शुक्र', 'शनि'], 15 | dayNamesMin: ['रवि', 'सोम', 'मंगल', 'बुध', 'गुरु', 'शुक्र', 'शनि'], 16 | weekHeader: 'हफ्ता', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['hi']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js: -------------------------------------------------------------------------------- 1 | /* Croatian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Vjekoslav Nesek. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['hr'] = { 5 | closeText: 'Zatvori', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Danas', 9 | monthNames: ['Siječanj','Veljača','Ožujak','Travanj','Svibanj','Lipanj', 10 | 'Srpanj','Kolovoz','Rujan','Listopad','Studeni','Prosinac'], 11 | monthNamesShort: ['Sij','Velj','Ožu','Tra','Svi','Lip', 12 | 'Srp','Kol','Ruj','Lis','Stu','Pro'], 13 | dayNames: ['Nedjelja','Ponedjeljak','Utorak','Srijeda','Četvrtak','Petak','Subota'], 14 | dayNamesShort: ['Ned','Pon','Uto','Sri','Čet','Pet','Sub'], 15 | dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'], 16 | weekHeader: 'Tje', 17 | dateFormat: 'dd.mm.yy.', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['hr']); 23 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hu.js: -------------------------------------------------------------------------------- 1 | /* Hungarian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Istvan Karaszi (jquery@spam.raszi.hu). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['hu'] = { 5 | closeText: 'bezár', 6 | prevText: 'vissza', 7 | nextText: 'előre', 8 | currentText: 'ma', 9 | monthNames: ['Január', 'Február', 'Március', 'Április', 'Május', 'Június', 10 | 'Július', 'Augusztus', 'Szeptember', 'Október', 'November', 'December'], 11 | monthNamesShort: ['Jan', 'Feb', 'Már', 'Ápr', 'Máj', 'Jún', 12 | 'Júl', 'Aug', 'Szep', 'Okt', 'Nov', 'Dec'], 13 | dayNames: ['Vasárnap', 'Hétfő', 'Kedd', 'Szerda', 'Csütörtök', 'Péntek', 'Szombat'], 14 | dayNamesShort: ['Vas', 'Hét', 'Ked', 'Sze', 'Csü', 'Pén', 'Szo'], 15 | dayNamesMin: ['V', 'H', 'K', 'Sze', 'Cs', 'P', 'Szo'], 16 | weekHeader: 'Hét', 17 | dateFormat: 'yy.mm.dd.', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['hu']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hy.js: -------------------------------------------------------------------------------- 1 | /* Armenian(UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Levon Zakaryan (levon.zakaryan@gmail.com)*/ 3 | jQuery(function($){ 4 | $.datepicker.regional['hy'] = { 5 | closeText: 'Փակել', 6 | prevText: '<Նախ.', 7 | nextText: 'Հաջ.>', 8 | currentText: 'Այսօր', 9 | monthNames: ['Հունվար','Փետրվար','Մարտ','Ապրիլ','Մայիս','Հունիս', 10 | 'Հուլիս','Օգոստոս','Սեպտեմբեր','Հոկտեմբեր','Նոյեմբեր','Դեկտեմբեր'], 11 | monthNamesShort: ['Հունվ','Փետր','Մարտ','Ապր','Մայիս','Հունիս', 12 | 'Հուլ','Օգս','Սեպ','Հոկ','Նոյ','Դեկ'], 13 | dayNames: ['կիրակի','եկուշաբթի','երեքշաբթի','չորեքշաբթի','հինգշաբթի','ուրբաթ','շաբաթ'], 14 | dayNamesShort: ['կիր','երկ','երք','չրք','հնգ','ուրբ','շբթ'], 15 | dayNamesMin: ['կիր','երկ','երք','չրք','հնգ','ուրբ','շբթ'], 16 | weekHeader: 'ՇԲՏ', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['hy']); 23 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-id.js: -------------------------------------------------------------------------------- 1 | /* Indonesian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Deden Fathurahman (dedenf@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['id'] = { 5 | closeText: 'Tutup', 6 | prevText: '<mundur', 7 | nextText: 'maju>', 8 | currentText: 'hari ini', 9 | monthNames: ['Januari','Februari','Maret','April','Mei','Juni', 10 | 'Juli','Agustus','September','Oktober','Nopember','Desember'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Mei','Jun', 12 | 'Jul','Agus','Sep','Okt','Nop','Des'], 13 | dayNames: ['Minggu','Senin','Selasa','Rabu','Kamis','Jumat','Sabtu'], 14 | dayNamesShort: ['Min','Sen','Sel','Rab','kam','Jum','Sab'], 15 | dayNamesMin: ['Mg','Sn','Sl','Rb','Km','jm','Sb'], 16 | weekHeader: 'Mg', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['id']); 23 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-it.js: -------------------------------------------------------------------------------- 1 | /* Italian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Antonello Pasella (antonello.pasella@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['it'] = { 5 | closeText: 'Chiudi', 6 | prevText: '<Prec', 7 | nextText: 'Succ>', 8 | currentText: 'Oggi', 9 | monthNames: ['Gennaio','Febbraio','Marzo','Aprile','Maggio','Giugno', 10 | 'Luglio','Agosto','Settembre','Ottobre','Novembre','Dicembre'], 11 | monthNamesShort: ['Gen','Feb','Mar','Apr','Mag','Giu', 12 | 'Lug','Ago','Set','Ott','Nov','Dic'], 13 | dayNames: ['Domenica','Lunedì','Martedì','Mercoledì','Giovedì','Venerdì','Sabato'], 14 | dayNamesShort: ['Dom','Lun','Mar','Mer','Gio','Ven','Sab'], 15 | dayNamesMin: ['Do','Lu','Ma','Me','Gi','Ve','Sa'], 16 | weekHeader: 'Sm', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['it']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js: -------------------------------------------------------------------------------- 1 | /* Japanese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Kentaro SATO (kentaro@ranvis.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ja'] = { 5 | closeText: '閉じる', 6 | prevText: '<前', 7 | nextText: '次>', 8 | currentText: '今日', 9 | monthNames: ['1月','2月','3月','4月','5月','6月', 10 | '7月','8月','9月','10月','11月','12月'], 11 | monthNamesShort: ['1月','2月','3月','4月','5月','6月', 12 | '7月','8月','9月','10月','11月','12月'], 13 | dayNames: ['日曜日','月曜日','火曜日','水曜日','木曜日','金曜日','土曜日'], 14 | dayNamesShort: ['日','月','火','水','木','金','土'], 15 | dayNamesMin: ['日','月','火','水','木','金','土'], 16 | weekHeader: '週', 17 | dateFormat: 'yy/mm/dd', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['ja']); 23 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ka.js: -------------------------------------------------------------------------------- 1 | /* Georgian (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Lado Lomidze (lado.lomidze@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ka'] = { 5 | closeText: 'დახურვა', 6 | prevText: '< წინა', 7 | nextText: 'შემდეგი >', 8 | currentText: 'დღეს', 9 | monthNames: ['იანვარი','თებერვალი','მარტი','აპრილი','მაისი','ივნისი', 'ივლისი','აგვისტო','სექტემბერი','ოქტომბერი','ნოემბერი','დეკემბერი'], 10 | monthNamesShort: ['იან','თებ','მარ','აპრ','მაი','ივნ', 'ივლ','აგვ','სექ','ოქტ','ნოე','დეკ'], 11 | dayNames: ['კვირა','ორშაბათი','სამშაბათი','ოთხშაბათი','ხუთშაბათი','პარასკევი','შაბათი'], 12 | dayNamesShort: ['კვ','ორშ','სამ','ოთხ','ხუთ','პარ','შაბ'], 13 | dayNamesMin: ['კვ','ორშ','სამ','ოთხ','ხუთ','პარ','შაბ'], 14 | weekHeader: 'კვირა', 15 | dateFormat: 'dd-mm-yy', 16 | firstDay: 1, 17 | isRTL: false, 18 | showMonthAfterYear: false, 19 | yearSuffix: ''}; 20 | $.datepicker.setDefaults($.datepicker.regional['ka']); 21 | }); 22 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-kk.js: -------------------------------------------------------------------------------- 1 | /* Kazakh (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Dmitriy Karasyov (dmitriy.karasyov@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['kk'] = { 5 | closeText: 'Жабу', 6 | prevText: '<Алдыңғы', 7 | nextText: 'Келесі>', 8 | currentText: 'Бүгін', 9 | monthNames: ['Қаңтар','Ақпан','Наурыз','Сәуір','Мамыр','Маусым', 10 | 'Шілде','Тамыз','Қыркүйек','Қазан','Қараша','Желтоқсан'], 11 | monthNamesShort: ['Қаң','Ақп','Нау','Сәу','Мам','Мау', 12 | 'Шіл','Там','Қыр','Қаз','Қар','Жел'], 13 | dayNames: ['Жексенбі','Дүйсенбі','Сейсенбі','Сәрсенбі','Бейсенбі','Жұма','Сенбі'], 14 | dayNamesShort: ['жкс','дсн','ссн','срс','бсн','жма','снб'], 15 | dayNamesMin: ['Жк','Дс','Сс','Ср','Бс','Жм','Сн'], 16 | weekHeader: 'Не', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['kk']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-km.js: -------------------------------------------------------------------------------- 1 | /* Khmer initialisation for the jQuery calendar extension. */ 2 | /* Written by Chandara Om (chandara.teacher@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['km'] = { 5 | closeText: 'ធ្វើ​រួច', 6 | prevText: 'មុន', 7 | nextText: 'បន្ទាប់', 8 | currentText: 'ថ្ងៃ​នេះ', 9 | monthNames: ['មករា','កុម្ភៈ','មីនា','មេសា','ឧសភា','មិថុនា', 10 | 'កក្កដា','សីហា','កញ្ញា','តុលា','វិច្ឆិកា','ធ្នូ'], 11 | monthNamesShort: ['មករា','កុម្ភៈ','មីនា','មេសា','ឧសភា','មិថុនា', 12 | 'កក្កដា','សីហា','កញ្ញា','តុលា','វិច្ឆិកា','ធ្នូ'], 13 | dayNames: ['អាទិត្យ', 'ចន្ទ', 'អង្គារ', 'ពុធ', 'ព្រហស្បតិ៍', 'សុក្រ', 'សៅរ៍'], 14 | dayNamesShort: ['អា', 'ច', 'អ', 'ពុ', 'ព្រហ', 'សុ', 'សៅ'], 15 | dayNamesMin: ['អា', 'ច', 'អ', 'ពុ', 'ព្រហ', 'សុ', 'សៅ'], 16 | weekHeader: 'សប្ដាហ៍', 17 | dateFormat: 'dd-mm-yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['km']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js: -------------------------------------------------------------------------------- 1 | /* Korean initialisation for the jQuery calendar extension. */ 2 | /* Written by DaeKwon Kang (ncrash.dk@gmail.com), Edited by Genie. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ko'] = { 5 | closeText: '닫기', 6 | prevText: '이전달', 7 | nextText: '다음달', 8 | currentText: '오늘', 9 | monthNames: ['1월','2월','3월','4월','5월','6월', 10 | '7월','8월','9월','10월','11월','12월'], 11 | monthNamesShort: ['1월','2월','3월','4월','5월','6월', 12 | '7월','8월','9월','10월','11월','12월'], 13 | dayNames: ['일요일','월요일','화요일','수요일','목요일','금요일','토요일'], 14 | dayNamesShort: ['일','월','화','수','목','금','토'], 15 | dayNamesMin: ['일','월','화','수','목','금','토'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'yy-mm-dd', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '년'}; 22 | $.datepicker.setDefaults($.datepicker.regional['ko']); 23 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lb.js: -------------------------------------------------------------------------------- 1 | /* Luxembourgish initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Michel Weimerskirch */ 3 | jQuery(function($){ 4 | $.datepicker.regional['lb'] = { 5 | closeText: 'Fäerdeg', 6 | prevText: 'Zréck', 7 | nextText: 'Weider', 8 | currentText: 'Haut', 9 | monthNames: ['Januar','Februar','Mäerz','Abrëll','Mee','Juni', 10 | 'Juli','August','September','Oktober','November','Dezember'], 11 | monthNamesShort: ['Jan', 'Feb', 'Mäe', 'Abr', 'Mee', 'Jun', 12 | 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'], 13 | dayNames: ['Sonndeg', 'Méindeg', 'Dënschdeg', 'Mëttwoch', 'Donneschdeg', 'Freideg', 'Samschdeg'], 14 | dayNamesShort: ['Son', 'Méi', 'Dën', 'Mët', 'Don', 'Fre', 'Sam'], 15 | dayNamesMin: ['So','Mé','Dë','Më','Do','Fr','Sa'], 16 | weekHeader: 'W', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['lb']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lt.js: -------------------------------------------------------------------------------- 1 | /* Lithuanian (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* @author Arturas Paleicikas */ 3 | jQuery(function($){ 4 | $.datepicker.regional['lt'] = { 5 | closeText: 'Uždaryti', 6 | prevText: '<Atgal', 7 | nextText: 'Pirmyn>', 8 | currentText: 'Šiandien', 9 | monthNames: ['Sausis','Vasaris','Kovas','Balandis','Gegužė','Birželis', 10 | 'Liepa','Rugpjūtis','Rugsėjis','Spalis','Lapkritis','Gruodis'], 11 | monthNamesShort: ['Sau','Vas','Kov','Bal','Geg','Bir', 12 | 'Lie','Rugp','Rugs','Spa','Lap','Gru'], 13 | dayNames: ['sekmadienis','pirmadienis','antradienis','trečiadienis','ketvirtadienis','penktadienis','šeštadienis'], 14 | dayNamesShort: ['sek','pir','ant','tre','ket','pen','šeš'], 15 | dayNamesMin: ['Se','Pr','An','Tr','Ke','Pe','Še'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'yy-mm-dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['lt']); 23 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lv.js: -------------------------------------------------------------------------------- 1 | /* Latvian (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* @author Arturas Paleicikas */ 3 | jQuery(function($){ 4 | $.datepicker.regional['lv'] = { 5 | closeText: 'Aizvērt', 6 | prevText: 'Iepr', 7 | nextText: 'Nāka', 8 | currentText: 'Šodien', 9 | monthNames: ['Janvāris','Februāris','Marts','Aprīlis','Maijs','Jūnijs', 10 | 'Jūlijs','Augusts','Septembris','Oktobris','Novembris','Decembris'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Mai','Jūn', 12 | 'Jūl','Aug','Sep','Okt','Nov','Dec'], 13 | dayNames: ['svētdiena','pirmdiena','otrdiena','trešdiena','ceturtdiena','piektdiena','sestdiena'], 14 | dayNamesShort: ['svt','prm','otr','tre','ctr','pkt','sst'], 15 | dayNamesMin: ['Sv','Pr','Ot','Tr','Ct','Pk','Ss'], 16 | weekHeader: 'Nav', 17 | dateFormat: 'dd-mm-yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['lv']); 23 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-mk.js: -------------------------------------------------------------------------------- 1 | /* Macedonian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Stojce Slavkovski. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['mk'] = { 5 | closeText: 'Затвори', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Денес', 9 | monthNames: ['Јануари','Февруари','Март','Април','Мај','Јуни', 10 | 'Јули','Август','Септември','Октомври','Ноември','Декември'], 11 | monthNamesShort: ['Јан','Фев','Мар','Апр','Мај','Јун', 12 | 'Јул','Авг','Сеп','Окт','Ное','Дек'], 13 | dayNames: ['Недела','Понеделник','Вторник','Среда','Четврток','Петок','Сабота'], 14 | dayNamesShort: ['Нед','Пон','Вто','Сре','Чет','Пет','Саб'], 15 | dayNamesMin: ['Не','По','Вт','Ср','Че','Пе','Са'], 16 | weekHeader: 'Сед', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['mk']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ml.js: -------------------------------------------------------------------------------- 1 | /* Malayalam (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Saji Nediyanchath (saji89@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ml'] = { 5 | closeText: 'ശരി', 6 | prevText: 'മുന്നത്തെ', 7 | nextText: 'അടുത്തത് ', 8 | currentText: 'ഇന്ന്', 9 | monthNames: ['ജനുവരി','ഫെബ്രുവരി','മാര്‍ച്ച്','ഏപ്രില്‍','മേയ്','ജൂണ്‍', 10 | 'ജൂലൈ','ആഗസ്റ്റ്','സെപ്റ്റംബര്‍','ഒക്ടോബര്‍','നവംബര്‍','ഡിസംബര്‍'], 11 | monthNamesShort: ['ജനു', 'ഫെബ്', 'മാര്‍', 'ഏപ്രി', 'മേയ്', 'ജൂണ്‍', 12 | 'ജൂലാ', 'ആഗ', 'സെപ്', 'ഒക്ടോ', 'നവം', 'ഡിസ'], 13 | dayNames: ['ഞായര്‍', 'തിങ്കള്‍', 'ചൊവ്വ', 'ബുധന്‍', 'വ്യാഴം', 'വെള്ളി', 'ശനി'], 14 | dayNamesShort: ['ഞായ', 'തിങ്ക', 'ചൊവ്വ', 'ബുധ', 'വ്യാഴം', 'വെള്ളി', 'ശനി'], 15 | dayNamesMin: ['ഞാ','തി','ചൊ','ബു','വ്യാ','വെ','ശ'], 16 | weekHeader: 'ആ', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['ml']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ms.js: -------------------------------------------------------------------------------- 1 | /* Malaysian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Mohd Nawawi Mohamad Jamili (nawawi@ronggeng.net). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ms'] = { 5 | closeText: 'Tutup', 6 | prevText: '<Sebelum', 7 | nextText: 'Selepas>', 8 | currentText: 'hari ini', 9 | monthNames: ['Januari','Februari','Mac','April','Mei','Jun', 10 | 'Julai','Ogos','September','Oktober','November','Disember'], 11 | monthNamesShort: ['Jan','Feb','Mac','Apr','Mei','Jun', 12 | 'Jul','Ogo','Sep','Okt','Nov','Dis'], 13 | dayNames: ['Ahad','Isnin','Selasa','Rabu','Khamis','Jumaat','Sabtu'], 14 | dayNamesShort: ['Aha','Isn','Sel','Rab','kha','Jum','Sab'], 15 | dayNamesMin: ['Ah','Is','Se','Ra','Kh','Ju','Sa'], 16 | weekHeader: 'Mg', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['ms']); 23 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl-BE.js: -------------------------------------------------------------------------------- 1 | /* Dutch (Belgium) initialisation for the jQuery UI date picker plugin. */ 2 | /* David De Sloovere @DavidDeSloovere */ 3 | jQuery(function($){ 4 | $.datepicker.regional['nl-BE'] = { 5 | closeText: 'Sluiten', 6 | prevText: '←', 7 | nextText: '→', 8 | currentText: 'Vandaag', 9 | monthNames: ['januari', 'februari', 'maart', 'april', 'mei', 'juni', 10 | 'juli', 'augustus', 'september', 'oktober', 'november', 'december'], 11 | monthNamesShort: ['jan', 'feb', 'mrt', 'apr', 'mei', 'jun', 12 | 'jul', 'aug', 'sep', 'okt', 'nov', 'dec'], 13 | dayNames: ['zondag', 'maandag', 'dinsdag', 'woensdag', 'donderdag', 'vrijdag', 'zaterdag'], 14 | dayNamesShort: ['zon', 'maa', 'din', 'woe', 'don', 'vri', 'zat'], 15 | dayNamesMin: ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['nl-BE']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl.js: -------------------------------------------------------------------------------- 1 | /* Dutch (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Mathias Bynens */ 3 | jQuery(function($){ 4 | $.datepicker.regional.nl = { 5 | closeText: 'Sluiten', 6 | prevText: '←', 7 | nextText: '→', 8 | currentText: 'Vandaag', 9 | monthNames: ['januari', 'februari', 'maart', 'april', 'mei', 'juni', 10 | 'juli', 'augustus', 'september', 'oktober', 'november', 'december'], 11 | monthNamesShort: ['jan', 'feb', 'mrt', 'apr', 'mei', 'jun', 12 | 'jul', 'aug', 'sep', 'okt', 'nov', 'dec'], 13 | dayNames: ['zondag', 'maandag', 'dinsdag', 'woensdag', 'donderdag', 'vrijdag', 'zaterdag'], 14 | dayNamesShort: ['zon', 'maa', 'din', 'woe', 'don', 'vri', 'zat'], 15 | dayNamesMin: ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd-mm-yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional.nl); 23 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-no.js: -------------------------------------------------------------------------------- 1 | /* Norwegian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Naimdjon Takhirov (naimdjon@gmail.com). */ 3 | 4 | jQuery(function($){ 5 | $.datepicker.regional['no'] = { 6 | closeText: 'Lukk', 7 | prevText: '«Forrige', 8 | nextText: 'Neste»', 9 | currentText: 'I dag', 10 | monthNames: ['januar','februar','mars','april','mai','juni','juli','august','september','oktober','november','desember'], 11 | monthNamesShort: ['jan','feb','mar','apr','mai','jun','jul','aug','sep','okt','nov','des'], 12 | dayNamesShort: ['søn','man','tir','ons','tor','fre','lør'], 13 | dayNames: ['søndag','mandag','tirsdag','onsdag','torsdag','fredag','lørdag'], 14 | dayNamesMin: ['sø','ma','ti','on','to','fr','lø'], 15 | weekHeader: 'Uke', 16 | dateFormat: 'dd.mm.yy', 17 | firstDay: 1, 18 | isRTL: false, 19 | showMonthAfterYear: false, 20 | yearSuffix: '' 21 | }; 22 | $.datepicker.setDefaults($.datepicker.regional['no']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pl.js: -------------------------------------------------------------------------------- 1 | /* Polish initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Jacek Wysocki (jacek.wysocki@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['pl'] = { 5 | closeText: 'Zamknij', 6 | prevText: '<Poprzedni', 7 | nextText: 'Następny>', 8 | currentText: 'Dziś', 9 | monthNames: ['Styczeń','Luty','Marzec','Kwiecień','Maj','Czerwiec', 10 | 'Lipiec','Sierpień','Wrzesień','Październik','Listopad','Grudzień'], 11 | monthNamesShort: ['Sty','Lu','Mar','Kw','Maj','Cze', 12 | 'Lip','Sie','Wrz','Pa','Lis','Gru'], 13 | dayNames: ['Niedziela','Poniedziałek','Wtorek','Środa','Czwartek','Piątek','Sobota'], 14 | dayNamesShort: ['Nie','Pn','Wt','Śr','Czw','Pt','So'], 15 | dayNamesMin: ['N','Pn','Wt','Śr','Cz','Pt','So'], 16 | weekHeader: 'Tydz', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['pl']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt-BR.js: -------------------------------------------------------------------------------- 1 | /* Brazilian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Leonildo Costa Silva (leocsilva@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['pt-BR'] = { 5 | closeText: 'Fechar', 6 | prevText: '<Anterior', 7 | nextText: 'Próximo>', 8 | currentText: 'Hoje', 9 | monthNames: ['Janeiro','Fevereiro','Março','Abril','Maio','Junho', 10 | 'Julho','Agosto','Setembro','Outubro','Novembro','Dezembro'], 11 | monthNamesShort: ['Jan','Fev','Mar','Abr','Mai','Jun', 12 | 'Jul','Ago','Set','Out','Nov','Dez'], 13 | dayNames: ['Domingo','Segunda-feira','Terça-feira','Quarta-feira','Quinta-feira','Sexta-feira','Sábado'], 14 | dayNamesShort: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'], 15 | dayNamesMin: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'], 16 | weekHeader: 'Sm', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['pt-BR']); 23 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt.js: -------------------------------------------------------------------------------- 1 | /* Portuguese initialisation for the jQuery UI date picker plugin. */ 2 | jQuery(function($){ 3 | $.datepicker.regional['pt'] = { 4 | closeText: 'Fechar', 5 | prevText: '<Anterior', 6 | nextText: 'Seguinte', 7 | currentText: 'Hoje', 8 | monthNames: ['Janeiro','Fevereiro','Março','Abril','Maio','Junho', 9 | 'Julho','Agosto','Setembro','Outubro','Novembro','Dezembro'], 10 | monthNamesShort: ['Jan','Fev','Mar','Abr','Mai','Jun', 11 | 'Jul','Ago','Set','Out','Nov','Dez'], 12 | dayNames: ['Domingo','Segunda-feira','Terça-feira','Quarta-feira','Quinta-feira','Sexta-feira','Sábado'], 13 | dayNamesShort: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'], 14 | dayNamesMin: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'], 15 | weekHeader: 'Sem', 16 | dateFormat: 'dd/mm/yy', 17 | firstDay: 0, 18 | isRTL: false, 19 | showMonthAfterYear: false, 20 | yearSuffix: ''}; 21 | $.datepicker.setDefaults($.datepicker.regional['pt']); 22 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-rm.js: -------------------------------------------------------------------------------- 1 | /* Romansh initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Yvonne Gienal (yvonne.gienal@educa.ch). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['rm'] = { 5 | closeText: 'Serrar', 6 | prevText: '<Suandant', 7 | nextText: 'Precedent>', 8 | currentText: 'Actual', 9 | monthNames: ['Schaner','Favrer','Mars','Avrigl','Matg','Zercladur', 'Fanadur','Avust','Settember','October','November','December'], 10 | monthNamesShort: ['Scha','Fev','Mar','Avr','Matg','Zer', 'Fan','Avu','Sett','Oct','Nov','Dec'], 11 | dayNames: ['Dumengia','Glindesdi','Mardi','Mesemna','Gievgia','Venderdi','Sonda'], 12 | dayNamesShort: ['Dum','Gli','Mar','Mes','Gie','Ven','Som'], 13 | dayNamesMin: ['Du','Gl','Ma','Me','Gi','Ve','So'], 14 | weekHeader: 'emna', 15 | dateFormat: 'dd/mm/yy', 16 | firstDay: 1, 17 | isRTL: false, 18 | showMonthAfterYear: false, 19 | yearSuffix: ''}; 20 | $.datepicker.setDefaults($.datepicker.regional['rm']); 21 | }); 22 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ro.js: -------------------------------------------------------------------------------- 1 | /* Romanian initialisation for the jQuery UI date picker plugin. 2 | * 3 | * Written by Edmond L. (ll_edmond@walla.com) 4 | * and Ionut G. Stan (ionut.g.stan@gmail.com) 5 | */ 6 | jQuery(function($){ 7 | $.datepicker.regional['ro'] = { 8 | closeText: 'Închide', 9 | prevText: '« Luna precedentă', 10 | nextText: 'Luna următoare »', 11 | currentText: 'Azi', 12 | monthNames: ['Ianuarie','Februarie','Martie','Aprilie','Mai','Iunie', 13 | 'Iulie','August','Septembrie','Octombrie','Noiembrie','Decembrie'], 14 | monthNamesShort: ['Ian', 'Feb', 'Mar', 'Apr', 'Mai', 'Iun', 15 | 'Iul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], 16 | dayNames: ['Duminică', 'Luni', 'Marţi', 'Miercuri', 'Joi', 'Vineri', 'Sâmbătă'], 17 | dayNamesShort: ['Dum', 'Lun', 'Mar', 'Mie', 'Joi', 'Vin', 'Sâm'], 18 | dayNamesMin: ['Du','Lu','Ma','Mi','Jo','Vi','Sâ'], 19 | weekHeader: 'Săpt', 20 | dateFormat: 'dd.mm.yy', 21 | firstDay: 1, 22 | isRTL: false, 23 | showMonthAfterYear: false, 24 | yearSuffix: ''}; 25 | $.datepicker.setDefaults($.datepicker.regional['ro']); 26 | }); 27 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ru.js: -------------------------------------------------------------------------------- 1 | /* Russian (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Andrew Stromnov (stromnov@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ru'] = { 5 | closeText: 'Закрыть', 6 | prevText: '<Пред', 7 | nextText: 'След>', 8 | currentText: 'Сегодня', 9 | monthNames: ['Январь','Февраль','Март','Апрель','Май','Июнь', 10 | 'Июль','Август','Сентябрь','Октябрь','Ноябрь','Декабрь'], 11 | monthNamesShort: ['Янв','Фев','Мар','Апр','Май','Июн', 12 | 'Июл','Авг','Сен','Окт','Ноя','Дек'], 13 | dayNames: ['воскресенье','понедельник','вторник','среда','четверг','пятница','суббота'], 14 | dayNamesShort: ['вск','пнд','втр','срд','чтв','птн','сбт'], 15 | dayNamesMin: ['Вс','Пн','Вт','Ср','Чт','Пт','Сб'], 16 | weekHeader: 'Нед', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['ru']); 23 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sk.js: -------------------------------------------------------------------------------- 1 | /* Slovak initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Vojtech Rinik (vojto@hmm.sk). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['sk'] = { 5 | closeText: 'Zavrieť', 6 | prevText: '<Predchádzajúci', 7 | nextText: 'Nasledujúci>', 8 | currentText: 'Dnes', 9 | monthNames: ['Január','Február','Marec','Apríl','Máj','Jún', 10 | 'Júl','August','September','Október','November','December'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Máj','Jún', 12 | 'Júl','Aug','Sep','Okt','Nov','Dec'], 13 | dayNames: ['Nedeľa','Pondelok','Utorok','Streda','Štvrtok','Piatok','Sobota'], 14 | dayNamesShort: ['Ned','Pon','Uto','Str','Štv','Pia','Sob'], 15 | dayNamesMin: ['Ne','Po','Ut','St','Št','Pia','So'], 16 | weekHeader: 'Ty', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['sk']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sl.js: -------------------------------------------------------------------------------- 1 | /* Slovenian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Jaka Jancar (jaka@kubje.org). */ 3 | /* c = č, s = š z = ž C = Č S = Š Z = Ž */ 4 | jQuery(function($){ 5 | $.datepicker.regional['sl'] = { 6 | closeText: 'Zapri', 7 | prevText: '<Prejšnji', 8 | nextText: 'Naslednji>', 9 | currentText: 'Trenutni', 10 | monthNames: ['Januar','Februar','Marec','April','Maj','Junij', 11 | 'Julij','Avgust','September','Oktober','November','December'], 12 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 13 | 'Jul','Avg','Sep','Okt','Nov','Dec'], 14 | dayNames: ['Nedelja','Ponedeljek','Torek','Sreda','Četrtek','Petek','Sobota'], 15 | dayNamesShort: ['Ned','Pon','Tor','Sre','Čet','Pet','Sob'], 16 | dayNamesMin: ['Ne','Po','To','Sr','Če','Pe','So'], 17 | weekHeader: 'Teden', 18 | dateFormat: 'dd.mm.yy', 19 | firstDay: 1, 20 | isRTL: false, 21 | showMonthAfterYear: false, 22 | yearSuffix: ''}; 23 | $.datepicker.setDefaults($.datepicker.regional['sl']); 24 | }); 25 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sq.js: -------------------------------------------------------------------------------- 1 | /* Albanian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Flakron Bytyqi (flakron@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['sq'] = { 5 | closeText: 'mbylle', 6 | prevText: '<mbrapa', 7 | nextText: 'Përpara>', 8 | currentText: 'sot', 9 | monthNames: ['Janar','Shkurt','Mars','Prill','Maj','Qershor', 10 | 'Korrik','Gusht','Shtator','Tetor','Nëntor','Dhjetor'], 11 | monthNamesShort: ['Jan','Shk','Mar','Pri','Maj','Qer', 12 | 'Kor','Gus','Sht','Tet','Nën','Dhj'], 13 | dayNames: ['E Diel','E Hënë','E Martë','E Mërkurë','E Enjte','E Premte','E Shtune'], 14 | dayNamesShort: ['Di','Hë','Ma','Më','En','Pr','Sh'], 15 | dayNamesMin: ['Di','Hë','Ma','Më','En','Pr','Sh'], 16 | weekHeader: 'Ja', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['sq']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js: -------------------------------------------------------------------------------- 1 | /* Serbian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Dejan Dimić. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['sr-SR'] = { 5 | closeText: 'Zatvori', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Danas', 9 | monthNames: ['Januar','Februar','Mart','April','Maj','Jun', 10 | 'Jul','Avgust','Septembar','Oktobar','Novembar','Decembar'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 12 | 'Jul','Avg','Sep','Okt','Nov','Dec'], 13 | dayNames: ['Nedelja','Ponedeljak','Utorak','Sreda','Četvrtak','Petak','Subota'], 14 | dayNamesShort: ['Ned','Pon','Uto','Sre','Čet','Pet','Sub'], 15 | dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'], 16 | weekHeader: 'Sed', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['sr-SR']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js: -------------------------------------------------------------------------------- 1 | /* Serbian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Dejan Dimić. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['sr'] = { 5 | closeText: 'Затвори', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Данас', 9 | monthNames: ['Јануар','Фебруар','Март','Април','Мај','Јун', 10 | 'Јул','Август','Септембар','Октобар','Новембар','Децембар'], 11 | monthNamesShort: ['Јан','Феб','Мар','Апр','Мај','Јун', 12 | 'Јул','Авг','Сеп','Окт','Нов','Дец'], 13 | dayNames: ['Недеља','Понедељак','Уторак','Среда','Четвртак','Петак','Субота'], 14 | dayNamesShort: ['Нед','Пон','Уто','Сре','Чет','Пет','Суб'], 15 | dayNamesMin: ['Не','По','Ут','Ср','Че','Пе','Су'], 16 | weekHeader: 'Сед', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['sr']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sv.js: -------------------------------------------------------------------------------- 1 | /* Swedish initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Anders Ekdahl ( anders@nomadiz.se). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['sv'] = { 5 | closeText: 'Stäng', 6 | prevText: '«Förra', 7 | nextText: 'Nästa»', 8 | currentText: 'Idag', 9 | monthNames: ['Januari','Februari','Mars','April','Maj','Juni', 10 | 'Juli','Augusti','September','Oktober','November','December'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 12 | 'Jul','Aug','Sep','Okt','Nov','Dec'], 13 | dayNamesShort: ['Sön','Mån','Tis','Ons','Tor','Fre','Lör'], 14 | dayNames: ['Söndag','Måndag','Tisdag','Onsdag','Torsdag','Fredag','Lördag'], 15 | dayNamesMin: ['Sö','Må','Ti','On','To','Fr','Lö'], 16 | weekHeader: 'Ve', 17 | dateFormat: 'yy-mm-dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['sv']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ta.js: -------------------------------------------------------------------------------- 1 | /* Tamil (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by S A Sureshkumar (saskumar@live.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ta'] = { 5 | closeText: 'மூடு', 6 | prevText: 'முன்னையது', 7 | nextText: 'அடுத்தது', 8 | currentText: 'இன்று', 9 | monthNames: ['தை','மாசி','பங்குனி','சித்திரை','வைகாசி','ஆனி', 10 | 'ஆடி','ஆவணி','புரட்டாசி','ஐப்பசி','கார்த்திகை','மார்கழி'], 11 | monthNamesShort: ['தை','மாசி','பங்','சித்','வைகா','ஆனி', 12 | 'ஆடி','ஆவ','புர','ஐப்','கார்','மார்'], 13 | dayNames: ['ஞாயிற்றுக்கிழமை','திங்கட்கிழமை','செவ்வாய்க்கிழமை','புதன்கிழமை','வியாழக்கிழமை','வெள்ளிக்கிழமை','சனிக்கிழமை'], 14 | dayNamesShort: ['ஞாயிறு','திங்கள்','செவ்வாய்','புதன்','வியாழன்','வெள்ளி','சனி'], 15 | dayNamesMin: ['ஞா','தி','செ','பு','வி','வெ','ச'], 16 | weekHeader: 'Не', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['ta']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-th.js: -------------------------------------------------------------------------------- 1 | /* Thai initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by pipo (pipo@sixhead.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['th'] = { 5 | closeText: 'ปิด', 6 | prevText: '« ย้อน', 7 | nextText: 'ถัดไป »', 8 | currentText: 'วันนี้', 9 | monthNames: ['มกราคม','กุมภาพันธ์','มีนาคม','เมษายน','พฤษภาคม','มิถุนายน', 10 | 'กรกฎาคม','สิงหาคม','กันยายน','ตุลาคม','พฤศจิกายน','ธันวาคม'], 11 | monthNamesShort: ['ม.ค.','ก.พ.','มี.ค.','เม.ย.','พ.ค.','มิ.ย.', 12 | 'ก.ค.','ส.ค.','ก.ย.','ต.ค.','พ.ย.','ธ.ค.'], 13 | dayNames: ['อาทิตย์','จันทร์','อังคาร','พุธ','พฤหัสบดี','ศุกร์','เสาร์'], 14 | dayNamesShort: ['อา.','จ.','อ.','พ.','พฤ.','ศ.','ส.'], 15 | dayNamesMin: ['อา.','จ.','อ.','พ.','พฤ.','ศ.','ส.'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['th']); 23 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js: -------------------------------------------------------------------------------- 1 | /* Tajiki (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Abdurahmon Saidov (saidovab@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['tj'] = { 5 | closeText: 'Идома', 6 | prevText: '<Қафо', 7 | nextText: 'Пеш>', 8 | currentText: 'Имрӯз', 9 | monthNames: ['Январ','Феврал','Март','Апрел','Май','Июн', 10 | 'Июл','Август','Сентябр','Октябр','Ноябр','Декабр'], 11 | monthNamesShort: ['Янв','Фев','Мар','Апр','Май','Июн', 12 | 'Июл','Авг','Сен','Окт','Ноя','Дек'], 13 | dayNames: ['якшанбе','душанбе','сешанбе','чоршанбе','панҷшанбе','ҷумъа','шанбе'], 14 | dayNamesShort: ['якш','душ','сеш','чор','пан','ҷум','шан'], 15 | dayNamesMin: ['Як','Дш','Сш','Чш','Пш','Ҷм','Шн'], 16 | weekHeader: 'Хф', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['tj']); 23 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js: -------------------------------------------------------------------------------- 1 | /* Turkish initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Izzet Emre Erkan (kara@karalamalar.net). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['tr'] = { 5 | closeText: 'kapat', 6 | prevText: '<geri', 7 | nextText: 'ileri>', 8 | currentText: 'bugün', 9 | monthNames: ['Ocak','Şubat','Mart','Nisan','Mayıs','Haziran', 10 | 'Temmuz','Ağustos','Eylül','Ekim','Kasım','Aralık'], 11 | monthNamesShort: ['Oca','Şub','Mar','Nis','May','Haz', 12 | 'Tem','Ağu','Eyl','Eki','Kas','Ara'], 13 | dayNames: ['Pazar','Pazartesi','Salı','Çarşamba','Perşembe','Cuma','Cumartesi'], 14 | dayNamesShort: ['Pz','Pt','Sa','Ça','Pe','Cu','Ct'], 15 | dayNamesMin: ['Pz','Pt','Sa','Ça','Pe','Cu','Ct'], 16 | weekHeader: 'Hf', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['tr']); 23 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-uk.js: -------------------------------------------------------------------------------- 1 | /* Ukrainian (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Maxim Drogobitskiy (maxdao@gmail.com). */ 3 | /* Corrected by Igor Milla (igor.fsp.milla@gmail.com). */ 4 | jQuery(function($){ 5 | $.datepicker.regional['uk'] = { 6 | closeText: 'Закрити', 7 | prevText: '<', 8 | nextText: '>', 9 | currentText: 'Сьогодні', 10 | monthNames: ['Січень','Лютий','Березень','Квітень','Травень','Червень', 11 | 'Липень','Серпень','Вересень','Жовтень','Листопад','Грудень'], 12 | monthNamesShort: ['Січ','Лют','Бер','Кві','Тра','Чер', 13 | 'Лип','Сер','Вер','Жов','Лис','Гру'], 14 | dayNames: ['неділя','понеділок','вівторок','середа','четвер','п’ятниця','субота'], 15 | dayNamesShort: ['нед','пнд','вів','срд','чтв','птн','сбт'], 16 | dayNamesMin: ['Нд','Пн','Вт','Ср','Чт','Пт','Сб'], 17 | weekHeader: 'Тиж', 18 | dateFormat: 'dd/mm/yy', 19 | firstDay: 1, 20 | isRTL: false, 21 | showMonthAfterYear: false, 22 | yearSuffix: ''}; 23 | $.datepicker.setDefaults($.datepicker.regional['uk']); 24 | }); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-vi.js: -------------------------------------------------------------------------------- 1 | /* Vietnamese initialisation for the jQuery UI date picker plugin. */ 2 | /* Translated by Le Thanh Huy (lthanhhuy@cit.ctu.edu.vn). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['vi'] = { 5 | closeText: 'Đóng', 6 | prevText: '<Trước', 7 | nextText: 'Tiếp>', 8 | currentText: 'Hôm nay', 9 | monthNames: ['Tháng Một', 'Tháng Hai', 'Tháng Ba', 'Tháng Tư', 'Tháng Năm', 'Tháng Sáu', 10 | 'Tháng Bảy', 'Tháng Tám', 'Tháng Chín', 'Tháng Mười', 'Tháng Mười Một', 'Tháng Mười Hai'], 11 | monthNamesShort: ['Tháng 1', 'Tháng 2', 'Tháng 3', 'Tháng 4', 'Tháng 5', 'Tháng 6', 12 | 'Tháng 7', 'Tháng 8', 'Tháng 9', 'Tháng 10', 'Tháng 11', 'Tháng 12'], 13 | dayNames: ['Chủ Nhật', 'Thứ Hai', 'Thứ Ba', 'Thứ Tư', 'Thứ Năm', 'Thứ Sáu', 'Thứ Bảy'], 14 | dayNamesShort: ['CN', 'T2', 'T3', 'T4', 'T5', 'T6', 'T7'], 15 | dayNamesMin: ['CN', 'T2', 'T3', 'T4', 'T5', 'T6', 'T7'], 16 | weekHeader: 'Tu', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['vi']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Cloudream (cloudream@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['zh-CN'] = { 5 | closeText: '关闭', 6 | prevText: '<上月', 7 | nextText: '下月>', 8 | currentText: '今天', 9 | monthNames: ['一月','二月','三月','四月','五月','六月', 10 | '七月','八月','九月','十月','十一月','十二月'], 11 | monthNamesShort: ['一','二','三','四','五','六', 12 | '七','八','九','十','十一','十二'], 13 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 14 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 15 | dayNamesMin: ['日','一','二','三','四','五','六'], 16 | weekHeader: '周', 17 | dateFormat: 'yy-mm-dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['zh-CN']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by SCCY (samuelcychan@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['zh-HK'] = { 5 | closeText: '關閉', 6 | prevText: '<上月', 7 | nextText: '下月>', 8 | currentText: '今天', 9 | monthNames: ['一月','二月','三月','四月','五月','六月', 10 | '七月','八月','九月','十月','十一月','十二月'], 11 | monthNamesShort: ['一','二','三','四','五','六', 12 | '七','八','九','十','十一','十二'], 13 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 14 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 15 | dayNamesMin: ['日','一','二','三','四','五','六'], 16 | weekHeader: '周', 17 | dateFormat: 'dd-mm-yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['zh-HK']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Ressol (ressol@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['zh-TW'] = { 5 | closeText: '關閉', 6 | prevText: '<上月', 7 | nextText: '下月>', 8 | currentText: '今天', 9 | monthNames: ['一月','二月','三月','四月','五月','六月', 10 | '七月','八月','九月','十月','十一月','十二月'], 11 | monthNamesShort: ['一','二','三','四','五','六', 12 | '七','八','九','十','十一','十二'], 13 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 14 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 15 | dayNamesMin: ['日','一','二','三','四','五','六'], 16 | weekHeader: '周', 17 | dateFormat: 'yy/mm/dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['zh-TW']); 23 | }); 24 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/jquery.effects.fade.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Effects Fade 1.8.21 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Effects/Fade 9 | * 10 | * Depends: 11 | * jquery.effects.core.js 12 | */ 13 | (function( $, undefined ) { 14 | 15 | $.effects.fade = function(o) { 16 | return this.queue(function() { 17 | var elem = $(this), 18 | mode = $.effects.setMode(elem, o.options.mode || 'hide'); 19 | 20 | elem.animate({ opacity: mode }, { 21 | queue: false, 22 | duration: o.duration, 23 | easing: o.options.easing, 24 | complete: function() { 25 | (o.callback && o.callback.apply(this, arguments)); 26 | elem.dequeue(); 27 | } 28 | }); 29 | }); 30 | }; 31 | 32 | })(jQuery); 33 | -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/minified/jquery.effects.blind.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.21 - 2012-06-05 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.effects.blind.js 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */ 5 | (function(a,b){a.effects.blind=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right"],e=a.effects.setMode(c,b.options.mode||"hide"),f=b.options.direction||"vertical";a.effects.save(c,d),c.show();var g=a.effects.createWrapper(c).css({overflow:"hidden"}),h=f=="vertical"?"height":"width",i=f=="vertical"?g.height():g.width();e=="show"&&g.css(h,0);var j={};j[h]=e=="show"?i:0,g.animate(j,b.duration,b.options.easing,function(){e=="hide"&&c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()})})}})(jQuery); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/minified/jquery.effects.clip.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.21 - 2012-06-05 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.effects.clip.js 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */ 5 | (function(a,b){a.effects.clip=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right","height","width"],e=a.effects.setMode(c,b.options.mode||"hide"),f=b.options.direction||"vertical";a.effects.save(c,d),c.show();var g=a.effects.createWrapper(c).css({overflow:"hidden"}),h=c[0].tagName=="IMG"?g:c,i={size:f=="vertical"?"height":"width",position:f=="vertical"?"top":"left"},j=f=="vertical"?h.height():h.width();e=="show"&&(h.css(i.size,0),h.css(i.position,j/2));var k={};k[i.size]=e=="show"?j:0,k[i.position]=e=="show"?0:j/2,h.animate(k,{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){e=="hide"&&c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()}})})}})(jQuery); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/minified/jquery.effects.drop.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.21 - 2012-06-05 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.effects.drop.js 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */ 5 | (function(a,b){a.effects.drop=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right","opacity"],e=a.effects.setMode(c,b.options.mode||"hide"),f=b.options.direction||"left";a.effects.save(c,d),c.show(),a.effects.createWrapper(c);var g=f=="up"||f=="down"?"top":"left",h=f=="up"||f=="left"?"pos":"neg",i=b.options.distance||(g=="top"?c.outerHeight({margin:!0})/2:c.outerWidth({margin:!0})/2);e=="show"&&c.css("opacity",0).css(g,h=="pos"?-i:i);var j={opacity:e=="show"?1:0};j[g]=(e=="show"?h=="pos"?"+=":"-=":h=="pos"?"-=":"+=")+i,c.animate(j,{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){e=="hide"&&c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(this,arguments),c.dequeue()}})})}})(jQuery); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/minified/jquery.effects.fade.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.21 - 2012-06-05 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.effects.fade.js 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */ 5 | (function(a,b){a.effects.fade=function(b){return this.queue(function(){var c=a(this),d=a.effects.setMode(c,b.options.mode||"hide");c.animate({opacity:d},{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){b.callback&&b.callback.apply(this,arguments),c.dequeue()}})})}})(jQuery); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/minified/jquery.effects.fold.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.21 - 2012-06-05 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.effects.fold.js 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */ 5 | (function(a,b){a.effects.fold=function(b){return this.queue(function(){var c=a(this),d=["position","top","bottom","left","right"],e=a.effects.setMode(c,b.options.mode||"hide"),f=b.options.size||15,g=!!b.options.horizFirst,h=b.duration?b.duration/2:a.fx.speeds._default/2;a.effects.save(c,d),c.show();var i=a.effects.createWrapper(c).css({overflow:"hidden"}),j=e=="show"!=g,k=j?["width","height"]:["height","width"],l=j?[i.width(),i.height()]:[i.height(),i.width()],m=/([0-9]+)%/.exec(f);m&&(f=parseInt(m[1],10)/100*l[e=="hide"?0:1]),e=="show"&&i.css(g?{height:0,width:f}:{height:f,width:0});var n={},p={};n[k[0]]=e=="show"?l[0]:f,p[k[1]]=e=="show"?l[1]:0,i.animate(n,h,b.options.easing).animate(p,h,b.options.easing,function(){e=="hide"&&c.hide(),a.effects.restore(c,d),a.effects.removeWrapper(c),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()})})}})(jQuery); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/minified/jquery.effects.highlight.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.21 - 2012-06-05 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.effects.highlight.js 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */ 5 | (function(a,b){a.effects.highlight=function(b){return this.queue(function(){var c=a(this),d=["backgroundImage","backgroundColor","opacity"],e=a.effects.setMode(c,b.options.mode||"show"),f={backgroundColor:c.css("backgroundColor")};e=="hide"&&(f.opacity=0),a.effects.save(c,d),c.show().css({backgroundImage:"none",backgroundColor:b.options.color||"#ffff99"}).animate(f,{queue:!1,duration:b.duration,easing:b.options.easing,complete:function(){e=="hide"&&c.hide(),a.effects.restore(c,d),e=="show"&&!a.support.opacity&&this.style.removeAttribute("filter"),b.callback&&b.callback.apply(this,arguments),c.dequeue()}})})}})(jQuery); -------------------------------------------------------------------------------- /public/javascripts/jquery-ui/development-bundle/ui/minified/jquery.effects.pulsate.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.21 - 2012-06-05 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.effects.pulsate.js 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT, GPL */ 5 | (function(a,b){a.effects.pulsate=function(b){return this.queue(function(){var c=a(this),d=a.effects.setMode(c,b.options.mode||"show"),e=(b.options.times||5)*2-1,f=b.duration?b.duration/2:a.fx.speeds._default/2,g=c.is(":visible"),h=0;g||(c.css("opacity",0).show(),h=1),(d=="hide"&&g||d=="show"&&!g)&&e--;for(var i=0;i').appendTo(document.body).addClass(b.options.className).css({top:g.top,left:g.left,height:c.innerHeight(),width:c.innerWidth(),position:"absolute"}).animate(f,b.duration,b.options.easing,function(){h.remove(),b.callback&&b.callback.apply(c[0],arguments),c.dequeue()})})}})(jQuery); -------------------------------------------------------------------------------- /public/pxlshp.manifest: -------------------------------------------------------------------------------- 1 | CACHE MANIFEST 2 | # v137 - 2014-11-8 3 | /new 4 | /color/new 5 | /javascripts/jquery.min.js 6 | /javascripts/b64.js 7 | /javascripts/todataurl.js 8 | /javascripts/edit.js 9 | /stylesheets/mobile.css 10 | /offline 11 | /images/mnls.png 12 | #/bootstrap/* 13 | /bootstrap/js/bootstrap.min.js 14 | /bootstrap/css/bootstrap.css 15 | /bootstrap/css/bootstrap-responsive.css 16 | /css/bootstrap.css 17 | #/fontawesome/* 18 | /fontawesome/font/fontawesome-webfont.woff?v=3.0.1 19 | /fontawesome/css/font-awesome.min.css 20 | #/javascripts/* 21 | /bootstrap/js/bootstrap.min.js 22 | 23 | FALLBACK: 24 | / /offline 25 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file 2 | # 3 | # To ban all spiders from the entire site uncomment the next two lines: 4 | # User-agent: * 5 | # Disallow: / 6 | -------------------------------------------------------------------------------- /public/stylesheets/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/stylesheets/images/ajax-loader.gif -------------------------------------------------------------------------------- /public/stylesheets/images/ajax-loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/stylesheets/images/ajax-loader.png -------------------------------------------------------------------------------- /public/stylesheets/images/icons-18-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/stylesheets/images/icons-18-black.png -------------------------------------------------------------------------------- /public/stylesheets/images/icons-18-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/stylesheets/images/icons-18-white.png -------------------------------------------------------------------------------- /public/stylesheets/images/icons-36-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/stylesheets/images/icons-36-black.png -------------------------------------------------------------------------------- /public/stylesheets/images/icons-36-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/public/stylesheets/images/icons-36-white.png -------------------------------------------------------------------------------- /public/stylesheets/mobile.css: -------------------------------------------------------------------------------- 1 | canvas { 2 | background:white; 3 | border:2px solid #aaa; 4 | } 5 | 6 | #notice, .notice { 7 | position:absolute; 8 | width:100%; 9 | color:#0a0; 10 | background:#afa; 11 | margin-top:0; 12 | } 13 | #error, .error { 14 | position:absolute; 15 | width:100%; 16 | color:#a52; 17 | background:#FCFFB3; 18 | margin-top:0; 19 | } 20 | 21 | #notice p, #error p { padding:8px 16px; } 22 | 23 | .grey { color:#ccc; } 24 | 25 | .icon { 26 | border:2px solid #ccc; 27 | width:32px; 28 | padding:5px; 29 | margin-right:5px; 30 | margin-bottom:5px; 31 | float:left; 32 | } 33 | .icon img { 34 | width:32px; 35 | height:32px; 36 | } 37 | .icon:hover { 38 | background:#ddd; 39 | } 40 | 41 | .icons { 42 | padding:12px; 43 | } 44 | 45 | .social { 46 | } 47 | -------------------------------------------------------------------------------- /remove/new_rails_defaults.rb: -------------------------------------------------------------------------------- 1 | # Be sure to restart your server when you modify this file. 2 | 3 | # These settings change the behavior of Rails 2 apps and will be defaults 4 | # for Rails 3. You can remove this initializer when Rails 3 is released. 5 | 6 | if defined?(ActiveRecord) 7 | # Include Active Record class name as root for JSON serialized output. 8 | ActiveRecord::Base.include_root_in_json = true 9 | 10 | # Store the full class name (including module namespace) in STI type column. 11 | ActiveRecord::Base.store_full_sti_class = true 12 | end 13 | 14 | ActionController::Routing.generate_best_match = false 15 | 16 | # Use ISO 8601 format for JSON serialized times and dates. 17 | ActiveSupport.use_standard_json_time_format = true 18 | 19 | # Don't escape HTML entities in JSON, leave that for the #json_escape helper. 20 | # if you're including raw json in an HTML page. 21 | ActiveSupport.escape_html_entities_in_json = false -------------------------------------------------------------------------------- /script/about: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require File.expand_path('../../config/boot', __FILE__) 3 | $LOAD_PATH.unshift "#{RAILTIES_PATH}/builtin/rails_info" 4 | require 'commands/about' 5 | -------------------------------------------------------------------------------- /script/console: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require File.expand_path('../../config/boot', __FILE__) 3 | require 'commands/console' 4 | -------------------------------------------------------------------------------- /script/dbconsole: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require File.expand_path('../../config/boot', __FILE__) 3 | require 'commands/dbconsole' 4 | -------------------------------------------------------------------------------- /script/destroy: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require File.expand_path('../../config/boot', __FILE__) 3 | require 'commands/destroy' 4 | -------------------------------------------------------------------------------- /script/generate: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require File.expand_path('../../config/boot', __FILE__) 3 | require 'commands/generate' 4 | -------------------------------------------------------------------------------- /script/performance/benchmarker: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require File.expand_path('../../../config/boot', __FILE__) 3 | require 'commands/performance/benchmarker' 4 | -------------------------------------------------------------------------------- /script/performance/profiler: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require File.expand_path('../../../config/boot', __FILE__) 3 | require 'commands/performance/profiler' 4 | -------------------------------------------------------------------------------- /script/plugin: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require File.expand_path('../../config/boot', __FILE__) 3 | require 'commands/plugin' 4 | -------------------------------------------------------------------------------- /script/runner: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require File.expand_path('../../config/boot', __FILE__) 3 | require 'commands/runner' 4 | -------------------------------------------------------------------------------- /script/server: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require File.expand_path('../../config/boot', __FILE__) 3 | require 'commands/server' 4 | -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/test/controllers/.keep -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/test/fixtures/.keep -------------------------------------------------------------------------------- /test/fixtures/icons.yml: -------------------------------------------------------------------------------- 1 | # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html 2 | 3 | # This model initially had no columns defined. If you add columns to the 4 | # model remove the '{}' from the fixture names and add the columns immediately 5 | # below each fixture, per the syntax in the comments below 6 | # 7 | one: {} 8 | # column: value 9 | # 10 | two: {} 11 | # column: value 12 | -------------------------------------------------------------------------------- /test/functional/icons_controller_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class IconsControllerTest < ActionController::TestCase 4 | # Replace this with your real tests. 5 | test "the truth" do 6 | assert true 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/test/helpers/.keep -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/test/integration/.keep -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/test/mailers/.keep -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/test/models/.keep -------------------------------------------------------------------------------- /test/performance/browsing_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | require 'performance_test_help' 3 | 4 | # Profiling results for each test method are written to tmp/performance. 5 | class BrowsingTest < ActionController::PerformanceTest 6 | def test_homepage 7 | get '/' 8 | end 9 | end 10 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- 1 | ENV['RAILS_ENV'] ||= 'test' 2 | require File.expand_path('../../config/environment', __FILE__) 3 | require 'rails/test_help' 4 | 5 | class ActiveSupport::TestCase 6 | # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. 7 | fixtures :all 8 | 9 | # Add more helper methods to be used by all tests here... 10 | end 11 | -------------------------------------------------------------------------------- /test/unit/helpers/icons_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class IconsHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /test/unit/icon_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class IconTest < ActiveSupport::TestCase 4 | # Replace this with your real tests. 5 | test "the truth" do 6 | assert true 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- 1 | 2 | bugs: 3 | 4 | - buggy encoding on line 173 -- we need long int storage??? 5 | - skip actual decimals; Base64.encode supports encoding from strings... 6 | - Base64.encode is encoding ASCII, not decimals. Google "decimal to base64 javascript" or binary to base64 7 | - handle saving??? or just skip and change button to "share" 8 | - update save, so we can have galleries. Also good to ref dataURL versions... 9 | - store author names? 10 | 11 | other: 12 | 13 | - store hi-res version of icon for larger display?? 14 | - or just make an efficient javascript view-only renderer 15 | - add 4-color mode as option (longer URLs) 16 | - grid integer spacing 17 | - social media barf 18 | 19 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/vendor/assets/javascripts/.keep -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/vendor/assets/stylesheets/.keep -------------------------------------------------------------------------------- /vendor/plugins/rails_upgrade/MIT-LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2010 Jeremy McAnally 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /vendor/plugins/rails_upgrade/README.rdoc: -------------------------------------------------------------------------------- 1 | = rails-upgrade 2 | 3 | A simple battery of scripts for upgrading Rails app/checking them for required updates. This application should work on Rails 2.x and 3.0, with a focus on upgrading to 3.0. 4 | 5 | == Usage 6 | 7 | You need to install this plugin first: 8 | 9 | script/plugin install git://github.com/rails/rails_upgrade.git 10 | 11 | Then you can run its rake tasks to check your application: 12 | 13 | # Check your app for required upgrades 14 | rake rails:upgrade:check 15 | 16 | # Backup your likely modified files that might be overwritten by the generator 17 | rake rails:upgrade:backup 18 | 19 | # Generate a new route file 20 | rake rails:upgrade:routes 21 | 22 | # Generate a Gemfile from your config.gem directives 23 | rake rails:upgrade:gems 24 | 25 | # Generate code for a new config/application.rb from your environment.rb 26 | rake rails:upgrade:configuration -------------------------------------------------------------------------------- /vendor/plugins/rails_upgrade/Rakefile: -------------------------------------------------------------------------------- 1 | require 'rake' 2 | require 'rake/testtask' 3 | require 'rake/rdoctask' 4 | 5 | desc 'Default: run unit tests.' 6 | task :default => :test 7 | 8 | Rake::TestTask.new do |t| 9 | t.libs << 'lib' 10 | t.libs << 'test' 11 | t.test_files = FileList['test/*_test.rb'] 12 | t.verbose = true 13 | end 14 | 15 | desc 'Generate documentation for the rails_upgrade plugin.' 16 | Rake::RDocTask.new(:rdoc) do |rdoc| 17 | rdoc.rdoc_dir = 'rdoc' 18 | rdoc.title = 'Rails-upgrade' 19 | rdoc.options << '--line-numbers' << '--inline-source' 20 | rdoc.rdoc_files.include('README') 21 | rdoc.rdoc_files.include('lib/**/*.rb') 22 | end 23 | -------------------------------------------------------------------------------- /vendor/plugins/rails_upgrade/init.rb: -------------------------------------------------------------------------------- 1 | # Get long stack traces for easier debugging; you'll thank me later. 2 | Rails.backtrace_cleaner.remove_silencers! if Rails.respond_to?(:backtrace_cleaner) 3 | -------------------------------------------------------------------------------- /vendor/plugins/rails_upgrade/lib/rails_upgrade.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/vendor/plugins/rails_upgrade/lib/rails_upgrade.rb -------------------------------------------------------------------------------- /vendor/plugins/rails_upgrade/test/test_helper.rb: -------------------------------------------------------------------------------- 1 | require 'test/unit' 2 | 3 | require 'rubygems' 4 | require 'active_support' 5 | require 'active_support/test_case' 6 | -------------------------------------------------------------------------------- /vendor/plugins/rails_upgrade/uninstall.rb: -------------------------------------------------------------------------------- 1 | # Uninstall hook code here 2 | -------------------------------------------------------------------------------- /www/bootstrap/ico/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/bootstrap/ico/favicon.ico -------------------------------------------------------------------------------- /www/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /www/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /www/css/bootstrap.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'junctionregular'; 3 | src: url('fonts/junction-webfont.eot'); 4 | src: url('fonts/junction-webfont.eot?#iefix') format('embedded-opentype'), 5 | url('fonts/junction-webfont.woff') format('woff'), 6 | url('fonts/junction-webfont.ttf') format('truetype'), 7 | url('fonts/junction-webfont.svg#junctionregular') format('svg'); 8 | font-weight: normal; 9 | font-style: normal; 10 | } 11 | 12 | h1,h2,h3,h4,.lead { 13 | font-family:junctionregular, lucida grande,lucida sans console,sans-serif; 14 | font-weight:normal; 15 | } 16 | 17 | #header .navbar-inner { 18 | margin-right:-40px; 19 | } 20 | -------------------------------------------------------------------------------- /www/css/fonts/junction-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/css/fonts/junction-webfont.eot -------------------------------------------------------------------------------- /www/css/fonts/junction-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/css/fonts/junction-webfont.ttf -------------------------------------------------------------------------------- /www/css/fonts/junction-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/css/fonts/junction-webfont.woff -------------------------------------------------------------------------------- /www/css/fonts/junction.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/css/fonts/junction.otf -------------------------------------------------------------------------------- /www/css/fonts/junction.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/css/fonts/junction.ttf -------------------------------------------------------------------------------- /www/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/icon.png -------------------------------------------------------------------------------- /www/img/logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/img/logo-small.png -------------------------------------------------------------------------------- /www/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/img/logo.png -------------------------------------------------------------------------------- /www/res/icon/android/icon-36-ldpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/icon/android/icon-36-ldpi.png -------------------------------------------------------------------------------- /www/res/icon/android/icon-48-mdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/icon/android/icon-48-mdpi.png -------------------------------------------------------------------------------- /www/res/icon/android/icon-72-hdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/icon/android/icon-72-hdpi.png -------------------------------------------------------------------------------- /www/res/icon/android/icon-96-xhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/icon/android/icon-96-xhdpi.png -------------------------------------------------------------------------------- /www/res/icon/bada-wac/icon-48-type5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/icon/bada-wac/icon-48-type5.png -------------------------------------------------------------------------------- /www/res/icon/bada-wac/icon-50-type3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/icon/bada-wac/icon-50-type3.png -------------------------------------------------------------------------------- /www/res/icon/bada-wac/icon-80-type4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/icon/bada-wac/icon-80-type4.png -------------------------------------------------------------------------------- /www/res/icon/bada/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/icon/bada/icon-128.png -------------------------------------------------------------------------------- /www/res/icon/blackberry/icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/icon/blackberry/icon-80.png -------------------------------------------------------------------------------- /www/res/icon/ios/icon-57-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/icon/ios/icon-57-2x.png -------------------------------------------------------------------------------- /www/res/icon/ios/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/icon/ios/icon-57.png -------------------------------------------------------------------------------- /www/res/icon/ios/icon-72-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/icon/ios/icon-72-2x.png -------------------------------------------------------------------------------- /www/res/icon/ios/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/icon/ios/icon-72.png -------------------------------------------------------------------------------- /www/res/icon/webos/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/icon/webos/icon-64.png -------------------------------------------------------------------------------- /www/res/icon/windows-phone/icon-173-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/icon/windows-phone/icon-173-tile.png -------------------------------------------------------------------------------- /www/res/icon/windows-phone/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/icon/windows-phone/icon-48.png -------------------------------------------------------------------------------- /www/res/icon/windows-phone/icon-62-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/icon/windows-phone/icon-62-tile.png -------------------------------------------------------------------------------- /www/res/screen/android/screen-hdpi-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/screen/android/screen-hdpi-landscape.png -------------------------------------------------------------------------------- /www/res/screen/android/screen-hdpi-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/screen/android/screen-hdpi-portrait.png -------------------------------------------------------------------------------- /www/res/screen/android/screen-ldpi-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/screen/android/screen-ldpi-landscape.png -------------------------------------------------------------------------------- /www/res/screen/android/screen-ldpi-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/screen/android/screen-ldpi-portrait.png -------------------------------------------------------------------------------- /www/res/screen/android/screen-mdpi-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/screen/android/screen-mdpi-landscape.png -------------------------------------------------------------------------------- /www/res/screen/android/screen-mdpi-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/screen/android/screen-mdpi-portrait.png -------------------------------------------------------------------------------- /www/res/screen/android/screen-xhdpi-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/screen/android/screen-xhdpi-landscape.png -------------------------------------------------------------------------------- /www/res/screen/android/screen-xhdpi-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/screen/android/screen-xhdpi-portrait.png -------------------------------------------------------------------------------- /www/res/screen/bada-wac/screen-type3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/screen/bada-wac/screen-type3.png -------------------------------------------------------------------------------- /www/res/screen/bada-wac/screen-type4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/screen/bada-wac/screen-type4.png -------------------------------------------------------------------------------- /www/res/screen/bada-wac/screen-type5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/screen/bada-wac/screen-type5.png -------------------------------------------------------------------------------- /www/res/screen/bada/screen-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/screen/bada/screen-portrait.png -------------------------------------------------------------------------------- /www/res/screen/blackberry/screen-225.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/screen/blackberry/screen-225.png -------------------------------------------------------------------------------- /www/res/screen/ios/screen-ipad-landscape-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/screen/ios/screen-ipad-landscape-2x.png -------------------------------------------------------------------------------- /www/res/screen/ios/screen-ipad-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/screen/ios/screen-ipad-landscape.png -------------------------------------------------------------------------------- /www/res/screen/ios/screen-ipad-portrait-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/screen/ios/screen-ipad-portrait-2x.png -------------------------------------------------------------------------------- /www/res/screen/ios/screen-ipad-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/screen/ios/screen-ipad-portrait.png -------------------------------------------------------------------------------- /www/res/screen/ios/screen-iphone-landscape-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/screen/ios/screen-iphone-landscape-2x.png -------------------------------------------------------------------------------- /www/res/screen/ios/screen-iphone-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/screen/ios/screen-iphone-landscape.png -------------------------------------------------------------------------------- /www/res/screen/ios/screen-iphone-portrait-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/screen/ios/screen-iphone-portrait-2x.png -------------------------------------------------------------------------------- /www/res/screen/ios/screen-iphone-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/screen/ios/screen-iphone-portrait.png -------------------------------------------------------------------------------- /www/res/screen/webos/screen-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/screen/webos/screen-64.png -------------------------------------------------------------------------------- /www/res/screen/windows-phone/screen-portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jywarren/pxlshp/aef662105d556f5759b958ea5565c7a0cfc71701/www/res/screen/windows-phone/screen-portrait.jpg -------------------------------------------------------------------------------- /www/spec/lib/jasmine-1.2.0/MIT.LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2008-2011 Pivotal Labs 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | --------------------------------------------------------------------------------