├── .gitignore ├── LICENSE.txt ├── README.md ├── angular-seed ├── .gitignore ├── README.md ├── app │ ├── css │ │ ├── .gitignore │ │ └── app.css │ ├── embed.html │ ├── img │ │ └── .gitignore │ ├── index-async.html │ ├── index.html │ ├── js │ │ ├── app.js │ │ ├── controllers.js │ │ ├── directives.js │ │ ├── filters.js │ │ └── services.js │ ├── lib │ │ └── angular │ │ │ ├── angular-cookies.js │ │ │ ├── angular-cookies.min.js │ │ │ ├── angular-loader.js │ │ │ ├── angular-loader.min.js │ │ │ ├── angular-resource.js │ │ │ ├── angular-resource.min.js │ │ │ ├── angular-sanitize.js │ │ │ ├── angular-sanitize.min.js │ │ │ ├── angular.js │ │ │ ├── angular.min.js │ │ │ └── version.txt │ └── partials │ │ ├── .gitignore │ │ ├── about.html │ │ ├── all_demos.html │ │ ├── editor.html │ │ ├── embed.html │ │ ├── login.html │ │ ├── partial1.html │ │ ├── partial2.html │ │ ├── sample_model_code.html │ │ └── save_dialog.html ├── config │ ├── testacular-e2e.conf.js │ └── testacular.conf.js ├── logs │ └── .gitignore ├── scripts │ ├── e2e-test.bat │ ├── e2e-test.sh │ ├── test.bat │ ├── test.sh │ ├── watchr.rb │ └── web-server.js └── test │ ├── e2e │ ├── runner.html │ └── scenarios.js │ ├── lib │ └── angular │ │ ├── angular-mocks.js │ │ ├── angular-scenario.js │ │ └── version.txt │ └── unit │ ├── controllersSpec.js │ ├── directivesSpec.js │ ├── filtersSpec.js │ └── servicesSpec.js ├── app ├── common │ ├── CodeManager.java │ └── Helper.java ├── controllers │ └── Application.java ├── demo │ ├── Bar.java │ ├── Foo.java │ ├── Order.java │ └── User.java ├── jobs │ └── InitJobs.java ├── models │ ├── Code.java │ ├── CodeFile.java │ └── InMemoryResourceLoader.java └── views │ ├── Application │ └── index.html │ ├── errors │ ├── 404.html │ └── 500.html │ └── main.html ├── conf ├── .gitignore ├── account.txt.sample ├── application.conf ├── dependencies.yml ├── messages └── routes ├── public ├── images │ └── favicon.png ├── javascripts │ ├── codemirror-rythm.js │ └── jquery-1.6.4.min.js ├── libs │ ├── angular-ui │ │ └── 0.4.0 │ │ │ ├── angular-ui-ieshiv.js │ │ │ ├── angular-ui-ieshiv.min.js │ │ │ ├── angular-ui.css │ │ │ ├── angular-ui.js │ │ │ ├── angular-ui.min.css │ │ │ └── angular-ui.min.js │ ├── angular │ │ └── 1.1.3 │ │ │ ├── angular-bootstrap-prettify.js │ │ │ ├── angular-bootstrap-prettify.min.js │ │ │ ├── angular-bootstrap.js │ │ │ ├── angular-bootstrap.min.js │ │ │ ├── angular-cookies.js │ │ │ ├── angular-cookies.min.js │ │ │ ├── angular-loader.js │ │ │ ├── angular-loader.min.js │ │ │ ├── angular-mocks.js │ │ │ ├── angular-resource.js │ │ │ ├── angular-resource.min.js │ │ │ ├── angular-sanitize.js │ │ │ ├── angular-sanitize.min.js │ │ │ ├── angular-scenario.js │ │ │ ├── angular.js │ │ │ ├── angular.min.js │ │ │ ├── docs │ │ │ ├── .htaccess │ │ │ ├── appcache-offline.manifest │ │ │ ├── appcache.manifest │ │ │ ├── css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── doc_widgets.css │ │ │ │ ├── docs.css │ │ │ │ └── font-awesome.css │ │ │ ├── docs-keywords.js │ │ │ ├── docs-scenario.html │ │ │ ├── docs-scenario.js │ │ │ ├── favicon.ico │ │ │ ├── font │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.svgz │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ │ ├── img │ │ │ │ ├── AngularJS-small.png │ │ │ │ ├── One_Way_Data_Binding.png │ │ │ │ ├── Two_Way_Data_Binding.png │ │ │ │ ├── angular_parts.png │ │ │ │ ├── bullet.png │ │ │ │ ├── form_data_flow.png │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ ├── guide │ │ │ │ │ ├── about_model_final.png │ │ │ │ │ ├── about_view_final.png │ │ │ │ │ ├── concepts-controller.png │ │ │ │ │ ├── concepts-directive.png │ │ │ │ │ ├── concepts-model.png │ │ │ │ │ ├── concepts-module-injector.png │ │ │ │ │ ├── concepts-runtime.png │ │ │ │ │ ├── concepts-scope.png │ │ │ │ │ ├── concepts-startup.png │ │ │ │ │ ├── concepts-view.png │ │ │ │ │ ├── di_sequence_final.png │ │ │ │ │ ├── dom_scope_final.png │ │ │ │ │ ├── hashbang_vs_regular_url.jpg │ │ │ │ │ ├── scenario_runner.png │ │ │ │ │ └── simple_scope_final.png │ │ │ │ ├── helloworld.png │ │ │ │ ├── helloworld_2way.png │ │ │ │ └── tutorial │ │ │ │ │ ├── catalog_screen.png │ │ │ │ │ ├── tutorial_00.png │ │ │ │ │ ├── tutorial_00_final.png │ │ │ │ │ ├── tutorial_02.png │ │ │ │ │ ├── tutorial_03.png │ │ │ │ │ ├── tutorial_04.png │ │ │ │ │ ├── tutorial_07_final.png │ │ │ │ │ ├── tutorial_08-09_final.png │ │ │ │ │ ├── tutorial_10-11_final.png │ │ │ │ │ └── xhr_service_final.png │ │ │ ├── index-debug.html │ │ │ ├── index-jq-debug.html │ │ │ ├── index-jq-nocache.html │ │ │ ├── index-jq.html │ │ │ ├── index-nocache.html │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── docs.js │ │ │ │ ├── jquery.js │ │ │ │ └── jquery.min.js │ │ │ ├── offline.html │ │ │ ├── partials │ │ │ │ ├── api │ │ │ │ │ ├── AUTO.$injector.html │ │ │ │ │ ├── AUTO.$provide.html │ │ │ │ │ ├── AUTO.html │ │ │ │ │ ├── angular.IModule.html │ │ │ │ │ ├── angular.bind.html │ │ │ │ │ ├── angular.bootstrap.html │ │ │ │ │ ├── angular.copy.html │ │ │ │ │ ├── angular.element.html │ │ │ │ │ ├── angular.equals.html │ │ │ │ │ ├── angular.extend.html │ │ │ │ │ ├── angular.forEach.html │ │ │ │ │ ├── angular.fromJson.html │ │ │ │ │ ├── angular.identity.html │ │ │ │ │ ├── angular.injector.html │ │ │ │ │ ├── angular.isArray.html │ │ │ │ │ ├── angular.isDate.html │ │ │ │ │ ├── angular.isDefined.html │ │ │ │ │ ├── angular.isElement.html │ │ │ │ │ ├── angular.isFunction.html │ │ │ │ │ ├── angular.isNumber.html │ │ │ │ │ ├── angular.isObject.html │ │ │ │ │ ├── angular.isString.html │ │ │ │ │ ├── angular.isUndefined.html │ │ │ │ │ ├── angular.lowercase.html │ │ │ │ │ ├── angular.mock.TzDate.html │ │ │ │ │ ├── angular.mock.dump.html │ │ │ │ │ ├── angular.mock.html │ │ │ │ │ ├── angular.mock.inject.html │ │ │ │ │ ├── angular.mock.module.html │ │ │ │ │ ├── angular.module.html │ │ │ │ │ ├── angular.noConflict.html │ │ │ │ │ ├── angular.noop.html │ │ │ │ │ ├── angular.toJson.html │ │ │ │ │ ├── angular.uppercase.html │ │ │ │ │ ├── angular.version.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── ng.$anchorScroll.html │ │ │ │ │ ├── ng.$cacheFactory.html │ │ │ │ │ ├── ng.$compile.directive.Attributes.html │ │ │ │ │ ├── ng.$compile.html │ │ │ │ │ ├── ng.$compileProvider.html │ │ │ │ │ ├── ng.$controller.html │ │ │ │ │ ├── ng.$controllerProvider.html │ │ │ │ │ ├── ng.$document.html │ │ │ │ │ ├── ng.$exceptionHandler.html │ │ │ │ │ ├── ng.$filter.html │ │ │ │ │ ├── ng.$filterProvider.html │ │ │ │ │ ├── ng.$http.html │ │ │ │ │ ├── ng.$httpBackend.html │ │ │ │ │ ├── ng.$interpolate.html │ │ │ │ │ ├── ng.$interpolateProvider.html │ │ │ │ │ ├── ng.$locale.html │ │ │ │ │ ├── ng.$location.html │ │ │ │ │ ├── ng.$locationProvider.html │ │ │ │ │ ├── ng.$log.html │ │ │ │ │ ├── ng.$logProvider.html │ │ │ │ │ ├── ng.$parse.html │ │ │ │ │ ├── ng.$q.html │ │ │ │ │ ├── ng.$rootElement.html │ │ │ │ │ ├── ng.$rootScope.Scope.html │ │ │ │ │ ├── ng.$rootScope.html │ │ │ │ │ ├── ng.$rootScopeProvider.html │ │ │ │ │ ├── ng.$route.html │ │ │ │ │ ├── ng.$routeParams.html │ │ │ │ │ ├── ng.$routeProvider.html │ │ │ │ │ ├── ng.$templateCache.html │ │ │ │ │ ├── ng.$timeout.html │ │ │ │ │ ├── ng.$window.html │ │ │ │ │ ├── ng.directive_a.html │ │ │ │ │ ├── ng.directive_form.FormController.html │ │ │ │ │ ├── ng.directive_form.html │ │ │ │ │ ├── ng.directive_input.checkbox.html │ │ │ │ │ ├── ng.directive_input.email.html │ │ │ │ │ ├── ng.directive_input.html │ │ │ │ │ ├── ng.directive_input.number.html │ │ │ │ │ ├── ng.directive_input.radio.html │ │ │ │ │ ├── ng.directive_input.text.html │ │ │ │ │ ├── ng.directive_input.url.html │ │ │ │ │ ├── ng.directive_ngApp.html │ │ │ │ │ ├── ng.directive_ngBind.html │ │ │ │ │ ├── ng.directive_ngBindHtmlUnsafe.html │ │ │ │ │ ├── ng.directive_ngBindTemplate.html │ │ │ │ │ ├── ng.directive_ngChange.html │ │ │ │ │ ├── ng.directive_ngChecked.html │ │ │ │ │ ├── ng.directive_ngClass.html │ │ │ │ │ ├── ng.directive_ngClassEven.html │ │ │ │ │ ├── ng.directive_ngClassOdd.html │ │ │ │ │ ├── ng.directive_ngClick.html │ │ │ │ │ ├── ng.directive_ngCloak.html │ │ │ │ │ ├── ng.directive_ngController.html │ │ │ │ │ ├── ng.directive_ngCsp.html │ │ │ │ │ ├── ng.directive_ngDblclick.html │ │ │ │ │ ├── ng.directive_ngDisabled.html │ │ │ │ │ ├── ng.directive_ngForm.html │ │ │ │ │ ├── ng.directive_ngHide.html │ │ │ │ │ ├── ng.directive_ngHref.html │ │ │ │ │ ├── ng.directive_ngInclude.html │ │ │ │ │ ├── ng.directive_ngInit.html │ │ │ │ │ ├── ng.directive_ngKeydown.html │ │ │ │ │ ├── ng.directive_ngKeyup.html │ │ │ │ │ ├── ng.directive_ngList.html │ │ │ │ │ ├── ng.directive_ngModel.NgModelController.html │ │ │ │ │ ├── ng.directive_ngModel.html │ │ │ │ │ ├── ng.directive_ngMousedown.html │ │ │ │ │ ├── ng.directive_ngMouseenter.html │ │ │ │ │ ├── ng.directive_ngMouseleave.html │ │ │ │ │ ├── ng.directive_ngMousemove.html │ │ │ │ │ ├── ng.directive_ngMouseover.html │ │ │ │ │ ├── ng.directive_ngMouseup.html │ │ │ │ │ ├── ng.directive_ngMultiple.html │ │ │ │ │ ├── ng.directive_ngNonBindable.html │ │ │ │ │ ├── ng.directive_ngOpen.html │ │ │ │ │ ├── ng.directive_ngPluralize.html │ │ │ │ │ ├── ng.directive_ngReadonly.html │ │ │ │ │ ├── ng.directive_ngRepeat.html │ │ │ │ │ ├── ng.directive_ngSelected.html │ │ │ │ │ ├── ng.directive_ngShow.html │ │ │ │ │ ├── ng.directive_ngSrc.html │ │ │ │ │ ├── ng.directive_ngStyle.html │ │ │ │ │ ├── ng.directive_ngSubmit.html │ │ │ │ │ ├── ng.directive_ngSwitch.html │ │ │ │ │ ├── ng.directive_ngTransclude.html │ │ │ │ │ ├── ng.directive_ngView.html │ │ │ │ │ ├── ng.directive_script.html │ │ │ │ │ ├── ng.directive_select.html │ │ │ │ │ ├── ng.directive_textarea.html │ │ │ │ │ ├── ng.filter_currency.html │ │ │ │ │ ├── ng.filter_date.html │ │ │ │ │ ├── ng.filter_filter.html │ │ │ │ │ ├── ng.filter_json.html │ │ │ │ │ ├── ng.filter_limitTo.html │ │ │ │ │ ├── ng.filter_lowercase.html │ │ │ │ │ ├── ng.filter_number.html │ │ │ │ │ ├── ng.filter_orderBy.html │ │ │ │ │ ├── ng.filter_uppercase.html │ │ │ │ │ ├── ng.html │ │ │ │ │ ├── ngCookies.$cookieStore.html │ │ │ │ │ ├── ngCookies.$cookies.html │ │ │ │ │ ├── ngCookies.html │ │ │ │ │ ├── ngMock.$exceptionHandler.html │ │ │ │ │ ├── ngMock.$exceptionHandlerProvider.html │ │ │ │ │ ├── ngMock.$httpBackend.html │ │ │ │ │ ├── ngMock.$log.html │ │ │ │ │ ├── ngMock.$timeout.html │ │ │ │ │ ├── ngMock.html │ │ │ │ │ ├── ngMockE2E.$httpBackend.html │ │ │ │ │ ├── ngMockE2E.html │ │ │ │ │ ├── ngResource.$resource.html │ │ │ │ │ ├── ngResource.html │ │ │ │ │ ├── ngSanitize.$sanitize.html │ │ │ │ │ ├── ngSanitize.directive_ngBindHtml.html │ │ │ │ │ ├── ngSanitize.filter_linky.html │ │ │ │ │ └── ngSanitize.html │ │ │ │ ├── cookbook │ │ │ │ │ ├── advancedform.html │ │ │ │ │ ├── buzz.html │ │ │ │ │ ├── deeplinking.html │ │ │ │ │ ├── form.html │ │ │ │ │ ├── helloworld.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── mvc.html │ │ │ │ ├── guide │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── compiler.html │ │ │ │ │ ├── concepts.html │ │ │ │ │ ├── dev_guide.e2e-testing.html │ │ │ │ │ ├── dev_guide.mvc.html │ │ │ │ │ ├── dev_guide.mvc.understanding_controller.html │ │ │ │ │ ├── dev_guide.mvc.understanding_model.html │ │ │ │ │ ├── dev_guide.mvc.understanding_view.html │ │ │ │ │ ├── dev_guide.services.$location.html │ │ │ │ │ ├── dev_guide.services.creating_services.html │ │ │ │ │ ├── dev_guide.services.html │ │ │ │ │ ├── dev_guide.services.injecting_controllers.html │ │ │ │ │ ├── dev_guide.services.managing_dependencies.html │ │ │ │ │ ├── dev_guide.services.testing_services.html │ │ │ │ │ ├── dev_guide.services.understanding_services.html │ │ │ │ │ ├── dev_guide.templates.css-styling.html │ │ │ │ │ ├── dev_guide.templates.databinding.html │ │ │ │ │ ├── dev_guide.templates.filters.creating_filters.html │ │ │ │ │ ├── dev_guide.templates.filters.html │ │ │ │ │ ├── dev_guide.templates.filters.using_filters.html │ │ │ │ │ ├── dev_guide.templates.html │ │ │ │ │ ├── dev_guide.unit-testing.html │ │ │ │ │ ├── di.html │ │ │ │ │ ├── directive.html │ │ │ │ │ ├── expression.html │ │ │ │ │ ├── forms.html │ │ │ │ │ ├── i18n.html │ │ │ │ │ ├── ie.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── introduction.html │ │ │ │ │ ├── module.html │ │ │ │ │ ├── overview.html │ │ │ │ │ ├── scope.html │ │ │ │ │ └── type.html │ │ │ │ ├── misc │ │ │ │ │ ├── contribute.html │ │ │ │ │ ├── downloading.html │ │ │ │ │ ├── faq.html │ │ │ │ │ └── started.html │ │ │ │ └── tutorial │ │ │ │ │ ├── index.html │ │ │ │ │ ├── step_00.html │ │ │ │ │ ├── step_01.html │ │ │ │ │ ├── step_02.html │ │ │ │ │ ├── step_03.html │ │ │ │ │ ├── step_04.html │ │ │ │ │ ├── step_05.html │ │ │ │ │ ├── step_06.html │ │ │ │ │ ├── step_07.html │ │ │ │ │ ├── step_08.html │ │ │ │ │ ├── step_09.html │ │ │ │ │ ├── step_10.html │ │ │ │ │ ├── step_11.html │ │ │ │ │ └── the_end.html │ │ │ ├── robots.txt │ │ │ └── sitemap.xml │ │ │ ├── i18n │ │ │ ├── angular-locale_am-et.js │ │ │ ├── angular-locale_am.js │ │ │ ├── angular-locale_ar-eg.js │ │ │ ├── angular-locale_ar.js │ │ │ ├── angular-locale_bg-bg.js │ │ │ ├── angular-locale_bg.js │ │ │ ├── angular-locale_bn-bd.js │ │ │ ├── angular-locale_bn.js │ │ │ ├── angular-locale_ca-es.js │ │ │ ├── angular-locale_ca.js │ │ │ ├── angular-locale_cs-cz.js │ │ │ ├── angular-locale_cs.js │ │ │ ├── angular-locale_da-dk.js │ │ │ ├── angular-locale_da.js │ │ │ ├── angular-locale_de-at.js │ │ │ ├── angular-locale_de-be.js │ │ │ ├── angular-locale_de-ch.js │ │ │ ├── angular-locale_de-de.js │ │ │ ├── angular-locale_de-lu.js │ │ │ ├── angular-locale_de.js │ │ │ ├── angular-locale_el-gr.js │ │ │ ├── angular-locale_el-polyton.js │ │ │ ├── angular-locale_el.js │ │ │ ├── angular-locale_en-as.js │ │ │ ├── angular-locale_en-au.js │ │ │ ├── angular-locale_en-dsrt-us.js │ │ │ ├── angular-locale_en-dsrt.js │ │ │ ├── angular-locale_en-gb.js │ │ │ ├── angular-locale_en-gu.js │ │ │ ├── angular-locale_en-ie.js │ │ │ ├── angular-locale_en-in.js │ │ │ ├── angular-locale_en-iso.js │ │ │ ├── angular-locale_en-mh.js │ │ │ ├── angular-locale_en-mp.js │ │ │ ├── angular-locale_en-sg.js │ │ │ ├── angular-locale_en-um.js │ │ │ ├── angular-locale_en-us.js │ │ │ ├── angular-locale_en-vi.js │ │ │ ├── angular-locale_en-za.js │ │ │ ├── angular-locale_en-zz.js │ │ │ ├── angular-locale_en.js │ │ │ ├── angular-locale_es-es.js │ │ │ ├── angular-locale_es.js │ │ │ ├── angular-locale_et-ee.js │ │ │ ├── angular-locale_et.js │ │ │ ├── angular-locale_eu-es.js │ │ │ ├── angular-locale_eu.js │ │ │ ├── angular-locale_fa-ir.js │ │ │ ├── angular-locale_fa.js │ │ │ ├── angular-locale_fi-fi.js │ │ │ ├── angular-locale_fi.js │ │ │ ├── angular-locale_fil-ph.js │ │ │ ├── angular-locale_fil.js │ │ │ ├── angular-locale_fr-bl.js │ │ │ ├── angular-locale_fr-ca.js │ │ │ ├── angular-locale_fr-fr.js │ │ │ ├── angular-locale_fr-gp.js │ │ │ ├── angular-locale_fr-mc.js │ │ │ ├── angular-locale_fr-mf.js │ │ │ ├── angular-locale_fr-mq.js │ │ │ ├── angular-locale_fr-re.js │ │ │ ├── angular-locale_fr.js │ │ │ ├── angular-locale_gl-es.js │ │ │ ├── angular-locale_gl.js │ │ │ ├── angular-locale_gsw-ch.js │ │ │ ├── angular-locale_gsw.js │ │ │ ├── angular-locale_gu-in.js │ │ │ ├── angular-locale_gu.js │ │ │ ├── angular-locale_he-il.js │ │ │ ├── angular-locale_he.js │ │ │ ├── angular-locale_hi-in.js │ │ │ ├── angular-locale_hi.js │ │ │ ├── angular-locale_hr-hr.js │ │ │ ├── angular-locale_hr.js │ │ │ ├── angular-locale_hu-hu.js │ │ │ ├── angular-locale_hu.js │ │ │ ├── angular-locale_id-id.js │ │ │ ├── angular-locale_id.js │ │ │ ├── angular-locale_in.js │ │ │ ├── angular-locale_is-is.js │ │ │ ├── angular-locale_is.js │ │ │ ├── angular-locale_it-it.js │ │ │ ├── angular-locale_it.js │ │ │ ├── angular-locale_iw.js │ │ │ ├── angular-locale_ja-jp.js │ │ │ ├── angular-locale_ja.js │ │ │ ├── angular-locale_kn-in.js │ │ │ ├── angular-locale_kn.js │ │ │ ├── angular-locale_ko-kr.js │ │ │ ├── angular-locale_ko.js │ │ │ ├── angular-locale_ln-cd.js │ │ │ ├── angular-locale_ln.js │ │ │ ├── angular-locale_lt-lt.js │ │ │ ├── angular-locale_lt.js │ │ │ ├── angular-locale_lv-lv.js │ │ │ ├── angular-locale_lv.js │ │ │ ├── angular-locale_ml-in.js │ │ │ ├── angular-locale_ml.js │ │ │ ├── angular-locale_mo.js │ │ │ ├── angular-locale_mr-in.js │ │ │ ├── angular-locale_mr.js │ │ │ ├── angular-locale_ms-my.js │ │ │ ├── angular-locale_ms.js │ │ │ ├── angular-locale_mt-mt.js │ │ │ ├── angular-locale_mt.js │ │ │ ├── angular-locale_nl-nl.js │ │ │ ├── angular-locale_nl.js │ │ │ ├── angular-locale_no.js │ │ │ ├── angular-locale_or-in.js │ │ │ ├── angular-locale_or.js │ │ │ ├── angular-locale_pl-pl.js │ │ │ ├── angular-locale_pl.js │ │ │ ├── angular-locale_pt-br.js │ │ │ ├── angular-locale_pt-pt.js │ │ │ ├── angular-locale_pt.js │ │ │ ├── angular-locale_ro-ro.js │ │ │ ├── angular-locale_ro.js │ │ │ ├── angular-locale_ru-ru.js │ │ │ ├── angular-locale_ru.js │ │ │ ├── angular-locale_sk-sk.js │ │ │ ├── angular-locale_sk.js │ │ │ ├── angular-locale_sl-si.js │ │ │ ├── angular-locale_sl.js │ │ │ ├── angular-locale_sq-al.js │ │ │ ├── angular-locale_sq.js │ │ │ ├── angular-locale_sr-cyrl-rs.js │ │ │ ├── angular-locale_sr-latn-rs.js │ │ │ ├── angular-locale_sr-rs.js │ │ │ ├── angular-locale_sr.js │ │ │ ├── angular-locale_sv-se.js │ │ │ ├── angular-locale_sv.js │ │ │ ├── angular-locale_sw-tz.js │ │ │ ├── angular-locale_sw.js │ │ │ ├── angular-locale_ta-in.js │ │ │ ├── angular-locale_ta.js │ │ │ ├── angular-locale_te-in.js │ │ │ ├── angular-locale_te.js │ │ │ ├── angular-locale_th-th.js │ │ │ ├── angular-locale_th.js │ │ │ ├── angular-locale_tl-ph.js │ │ │ ├── angular-locale_tl.js │ │ │ ├── angular-locale_tr-tr.js │ │ │ ├── angular-locale_tr.js │ │ │ ├── angular-locale_uk-ua.js │ │ │ ├── angular-locale_uk.js │ │ │ ├── angular-locale_ur-pk.js │ │ │ ├── angular-locale_ur.js │ │ │ ├── angular-locale_vi-vn.js │ │ │ ├── angular-locale_vi.js │ │ │ ├── angular-locale_zh-cn.js │ │ │ ├── angular-locale_zh-hans-cn.js │ │ │ ├── angular-locale_zh-hans.js │ │ │ ├── angular-locale_zh-hk.js │ │ │ ├── angular-locale_zh-tw.js │ │ │ └── angular-locale_zh.js │ │ │ ├── version.json │ │ │ └── version.txt │ ├── bootstrap-ui │ │ ├── 0.1.0 │ │ │ ├── template │ │ │ │ ├── accordion │ │ │ │ │ ├── accordion-group.html │ │ │ │ │ └── accordion.html │ │ │ │ ├── alert │ │ │ │ │ └── alert.html │ │ │ │ ├── carousel │ │ │ │ │ ├── carousel.html │ │ │ │ │ └── slide.html │ │ │ │ ├── dialog │ │ │ │ │ └── message.html │ │ │ │ ├── pagination │ │ │ │ │ └── pagination.html │ │ │ │ ├── popover │ │ │ │ │ └── popover.html │ │ │ │ ├── tabs │ │ │ │ │ ├── pane.html │ │ │ │ │ └── tabs.html │ │ │ │ └── tooltip │ │ │ │ │ └── tooltip-popup.html │ │ │ ├── ui-bootstrap-0.1.0-SNAPSHOT.js │ │ │ ├── ui-bootstrap-0.1.0-SNAPSHOT.min.js │ │ │ ├── ui-bootstrap-0.1.0.js │ │ │ ├── ui-bootstrap-0.1.0.min.js │ │ │ ├── ui-bootstrap-tpls-0.1.0-SNAPSHOT.js │ │ │ ├── ui-bootstrap-tpls-0.1.0-SNAPSHOT.min.js │ │ │ ├── ui-bootstrap-tpls-0.1.0.js │ │ │ └── ui-bootstrap-tpls-0.1.0.min.js │ │ └── 0.2.0 │ │ │ ├── template │ │ │ ├── accordion │ │ │ │ ├── accordion-group.html │ │ │ │ └── accordion.html │ │ │ ├── alert │ │ │ │ └── alert.html │ │ │ ├── carousel │ │ │ │ ├── carousel.html │ │ │ │ └── slide.html │ │ │ ├── dialog │ │ │ │ └── message.html │ │ │ ├── pagination │ │ │ │ └── pagination.html │ │ │ ├── popover │ │ │ │ └── popover.html │ │ │ ├── progressbar │ │ │ │ ├── bar.html │ │ │ │ └── progress.html │ │ │ ├── tabs │ │ │ │ ├── pane.html │ │ │ │ └── tabs.html │ │ │ ├── tooltip │ │ │ │ └── tooltip-popup.html │ │ │ └── typeahead │ │ │ │ └── typeahead.html │ │ │ ├── ui-bootstrap-0.2.0.js │ │ │ ├── ui-bootstrap-0.2.0.min.js │ │ │ ├── ui-bootstrap-tpls-0.2.0.js │ │ │ └── ui-bootstrap-tpls-0.2.0.min.js │ ├── bootstrap │ │ ├── 2.1.1 │ │ │ ├── css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ └── 2.3.1 │ │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ └── cosmo.min.css │ │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ ├── codemirror │ │ └── 3.1 │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── addon │ │ │ ├── dialog │ │ │ │ ├── dialog.css │ │ │ │ └── dialog.js │ │ │ ├── edit │ │ │ │ ├── closebrackets.js │ │ │ │ ├── closetag.js │ │ │ │ ├── continuecomment.js │ │ │ │ ├── continuelist.js │ │ │ │ └── matchbrackets.js │ │ │ ├── fold │ │ │ │ ├── collapserange.js │ │ │ │ └── foldcode.js │ │ │ ├── format │ │ │ │ └── formatting.js │ │ │ ├── hint │ │ │ │ ├── javascript-hint.js │ │ │ │ ├── pig-hint.js │ │ │ │ ├── python-hint.js │ │ │ │ ├── show-hint.css │ │ │ │ ├── show-hint.js │ │ │ │ ├── simple-hint.css │ │ │ │ ├── simple-hint.js │ │ │ │ └── xml-hint.js │ │ │ ├── lint │ │ │ │ ├── javascript-lint.js │ │ │ │ ├── json-lint.js │ │ │ │ ├── lint.css │ │ │ │ └── lint.js │ │ │ ├── mode │ │ │ │ ├── loadmode.js │ │ │ │ ├── multiplex.js │ │ │ │ └── overlay.js │ │ │ ├── runmode │ │ │ │ ├── colorize.js │ │ │ │ ├── runmode-standalone.js │ │ │ │ ├── runmode.js │ │ │ │ └── runmode.node.js │ │ │ ├── search │ │ │ │ ├── match-highlighter.js │ │ │ │ ├── search.js │ │ │ │ └── searchcursor.js │ │ │ └── selection │ │ │ │ ├── active-line.js │ │ │ │ └── mark-selection.js │ │ │ ├── bin │ │ │ └── compress │ │ │ ├── demo │ │ │ ├── activeline.html │ │ │ ├── bidi.html │ │ │ ├── btree.html │ │ │ ├── buffers.html │ │ │ ├── changemode.html │ │ │ ├── closebrackets.html │ │ │ ├── closetag.html │ │ │ ├── collapserange.html │ │ │ ├── complete.html │ │ │ ├── emacs.html │ │ │ ├── folding.html │ │ │ ├── formatting.html │ │ │ ├── fullscreen.html │ │ │ ├── lint.html │ │ │ ├── loadmode.html │ │ │ ├── marker.html │ │ │ ├── markselection.html │ │ │ ├── matchhighlighter.html │ │ │ ├── multiplex.html │ │ │ ├── mustache.html │ │ │ ├── preview.html │ │ │ ├── resize.html │ │ │ ├── runmode.html │ │ │ ├── search.html │ │ │ ├── theme.html │ │ │ ├── variableheight.html │ │ │ ├── vim.html │ │ │ ├── visibletabs.html │ │ │ ├── widget.html │ │ │ └── xmlcomplete.html │ │ │ ├── doc │ │ │ ├── baboon.png │ │ │ ├── baboon_vector.svg │ │ │ ├── compress.html │ │ │ ├── docs.css │ │ │ ├── internals.html │ │ │ ├── manual.html │ │ │ ├── modes.html │ │ │ ├── oldrelease.html │ │ │ ├── realworld.html │ │ │ ├── reporting.html │ │ │ ├── upgrade_v2.2.html │ │ │ └── upgrade_v3.html │ │ │ ├── index.html │ │ │ ├── keymap │ │ │ ├── emacs.js │ │ │ └── vim.js │ │ │ ├── lib │ │ │ ├── codemirror.css │ │ │ └── codemirror.js │ │ │ ├── mode │ │ │ ├── apl │ │ │ │ ├── apl.js │ │ │ │ └── index.html │ │ │ ├── asterisk │ │ │ │ ├── asterisk.js │ │ │ │ └── index.html │ │ │ ├── clike │ │ │ │ ├── clike.js │ │ │ │ ├── index.html │ │ │ │ └── scala.html │ │ │ ├── clojure │ │ │ │ ├── clojure.js │ │ │ │ └── index.html │ │ │ ├── coffeescript │ │ │ │ ├── LICENSE │ │ │ │ ├── coffeescript.js │ │ │ │ └── index.html │ │ │ ├── commonlisp │ │ │ │ ├── commonlisp.js │ │ │ │ └── index.html │ │ │ ├── css │ │ │ │ ├── css.js │ │ │ │ ├── index.html │ │ │ │ └── test.js │ │ │ ├── d │ │ │ │ ├── d.js │ │ │ │ └── index.html │ │ │ ├── diff │ │ │ │ ├── diff.js │ │ │ │ └── index.html │ │ │ ├── ecl │ │ │ │ ├── ecl.js │ │ │ │ └── index.html │ │ │ ├── erlang │ │ │ │ ├── erlang.js │ │ │ │ └── index.html │ │ │ ├── gfm │ │ │ │ ├── gfm.js │ │ │ │ ├── index.html │ │ │ │ └── test.js │ │ │ ├── go │ │ │ │ ├── go.js │ │ │ │ └── index.html │ │ │ ├── groovy │ │ │ │ ├── groovy.js │ │ │ │ └── index.html │ │ │ ├── haskell │ │ │ │ ├── haskell.js │ │ │ │ └── index.html │ │ │ ├── haxe │ │ │ │ ├── haxe.js │ │ │ │ └── index.html │ │ │ ├── htmlembedded │ │ │ │ ├── htmlembedded.js │ │ │ │ └── index.html │ │ │ ├── htmlmixed │ │ │ │ ├── htmlmixed.js │ │ │ │ └── index.html │ │ │ ├── http │ │ │ │ ├── http.js │ │ │ │ └── index.html │ │ │ ├── javascript │ │ │ │ ├── index.html │ │ │ │ ├── javascript.js │ │ │ │ └── typescript.html │ │ │ ├── jinja2 │ │ │ │ ├── index.html │ │ │ │ └── jinja2.js │ │ │ ├── less │ │ │ │ ├── index.html │ │ │ │ └── less.js │ │ │ ├── lua │ │ │ │ ├── index.html │ │ │ │ └── lua.js │ │ │ ├── markdown │ │ │ │ ├── index.html │ │ │ │ ├── markdown.js │ │ │ │ └── test.js │ │ │ ├── meta.js │ │ │ ├── mysql │ │ │ │ ├── index.html │ │ │ │ └── mysql.js │ │ │ ├── ntriples │ │ │ │ ├── index.html │ │ │ │ └── ntriples.js │ │ │ ├── ocaml │ │ │ │ ├── index.html │ │ │ │ └── ocaml.js │ │ │ ├── pascal │ │ │ │ ├── LICENSE │ │ │ │ ├── index.html │ │ │ │ └── pascal.js │ │ │ ├── perl │ │ │ │ ├── LICENSE │ │ │ │ ├── index.html │ │ │ │ └── perl.js │ │ │ ├── php │ │ │ │ ├── index.html │ │ │ │ └── php.js │ │ │ ├── pig │ │ │ │ ├── index.html │ │ │ │ └── pig.js │ │ │ ├── plsql │ │ │ │ ├── index.html │ │ │ │ └── plsql.js │ │ │ ├── properties │ │ │ │ ├── index.html │ │ │ │ └── properties.js │ │ │ ├── python │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── index.html │ │ │ │ └── python.js │ │ │ ├── q │ │ │ │ ├── index.html │ │ │ │ └── q.js │ │ │ ├── r │ │ │ │ ├── LICENSE │ │ │ │ ├── index.html │ │ │ │ └── r.js │ │ │ ├── rpm │ │ │ │ ├── changes │ │ │ │ │ ├── changes.js │ │ │ │ │ └── index.html │ │ │ │ └── spec │ │ │ │ │ ├── index.html │ │ │ │ │ ├── spec.css │ │ │ │ │ └── spec.js │ │ │ ├── rst │ │ │ │ ├── index.html │ │ │ │ └── rst.js │ │ │ ├── ruby │ │ │ │ ├── LICENSE │ │ │ │ ├── index.html │ │ │ │ └── ruby.js │ │ │ ├── rust │ │ │ │ ├── index.html │ │ │ │ └── rust.js │ │ │ ├── sass │ │ │ │ ├── index.html │ │ │ │ └── sass.js │ │ │ ├── scheme │ │ │ │ ├── index.html │ │ │ │ └── scheme.js │ │ │ ├── shell │ │ │ │ ├── index.html │ │ │ │ └── shell.js │ │ │ ├── sieve │ │ │ │ ├── LICENSE │ │ │ │ ├── index.html │ │ │ │ └── sieve.js │ │ │ ├── smalltalk │ │ │ │ ├── index.html │ │ │ │ └── smalltalk.js │ │ │ ├── smarty │ │ │ │ ├── index.html │ │ │ │ └── smarty.js │ │ │ ├── sparql │ │ │ │ ├── index.html │ │ │ │ └── sparql.js │ │ │ ├── sql │ │ │ │ ├── index.html │ │ │ │ └── sql.js │ │ │ ├── stex │ │ │ │ ├── index.html │ │ │ │ ├── stex.js │ │ │ │ └── test.js │ │ │ ├── tiddlywiki │ │ │ │ ├── index.html │ │ │ │ ├── tiddlywiki.css │ │ │ │ └── tiddlywiki.js │ │ │ ├── tiki │ │ │ │ ├── index.html │ │ │ │ ├── tiki.css │ │ │ │ └── tiki.js │ │ │ ├── turtle │ │ │ │ ├── index.html │ │ │ │ └── turtle.js │ │ │ ├── vb │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── index.html │ │ │ │ └── vb.js │ │ │ ├── vbscript │ │ │ │ ├── index.html │ │ │ │ └── vbscript.js │ │ │ ├── velocity │ │ │ │ ├── index.html │ │ │ │ └── velocity.js │ │ │ ├── verilog │ │ │ │ ├── index.html │ │ │ │ └── verilog.js │ │ │ ├── xml │ │ │ │ ├── index.html │ │ │ │ └── xml.js │ │ │ ├── xquery │ │ │ │ ├── LICENSE │ │ │ │ ├── index.html │ │ │ │ ├── test.js │ │ │ │ └── xquery.js │ │ │ ├── yaml │ │ │ │ ├── index.html │ │ │ │ └── yaml.js │ │ │ └── z80 │ │ │ │ ├── index.html │ │ │ │ └── z80.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ ├── doc_test.js │ │ │ ├── driver.js │ │ │ ├── index.html │ │ │ ├── lint │ │ │ │ ├── acorn.js │ │ │ │ ├── lint.js │ │ │ │ ├── parse-js.js │ │ │ │ └── walk.js │ │ │ ├── mode_test.css │ │ │ ├── mode_test.js │ │ │ ├── phantom_driver.js │ │ │ ├── run.js │ │ │ ├── test.js │ │ │ └── vim_test.js │ │ │ └── theme │ │ │ ├── ambiance-mobile.css │ │ │ ├── ambiance.css │ │ │ ├── blackboard.css │ │ │ ├── cobalt.css │ │ │ ├── eclipse.css │ │ │ ├── elegant.css │ │ │ ├── erlang-dark.css │ │ │ ├── lesser-dark.css │ │ │ ├── monokai.css │ │ │ ├── neat.css │ │ │ ├── night.css │ │ │ ├── rubyblue.css │ │ │ ├── solarized.css │ │ │ ├── twilight.css │ │ │ ├── vibrant-ink.css │ │ │ └── xq-dark.css │ ├── es5-shim │ │ └── 15.3.4.5 │ │ │ ├── es5-shim.js │ │ │ └── es5-shim.min.js │ ├── flot │ │ └── 0.7 │ │ │ ├── API.txt │ │ │ ├── FAQ.txt │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── NEWS.txt │ │ │ ├── PLUGINS.txt │ │ │ ├── README.txt │ │ │ ├── examples │ │ │ ├── ajax.html │ │ │ ├── annotating.html │ │ │ ├── arrow-down.gif │ │ │ ├── arrow-left.gif │ │ │ ├── arrow-right.gif │ │ │ ├── arrow-up.gif │ │ │ ├── basic.html │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ ├── data-eu-gdp-growth-5.json │ │ │ ├── data-eu-gdp-growth.json │ │ │ ├── data-japan-gdp-growth.json │ │ │ ├── data-usa-gdp-growth.json │ │ │ ├── graph-types.html │ │ │ ├── hs-2004-27-a-large_web.jpg │ │ │ ├── image.html │ │ │ ├── index.html │ │ │ ├── interacting-axes.html │ │ │ ├── interacting.html │ │ │ ├── layout.css │ │ │ ├── multiple-axes.html │ │ │ ├── navigate.html │ │ │ ├── percentiles.html │ │ │ ├── pie.html │ │ │ ├── realtime.html │ │ │ ├── resize.html │ │ │ ├── selection.html │ │ │ ├── setting-options.html │ │ │ ├── stacking.html │ │ │ ├── symbols.html │ │ │ ├── thresholding.html │ │ │ ├── time.html │ │ │ ├── tracking.html │ │ │ ├── turning-series.html │ │ │ ├── visitors.html │ │ │ └── zooming.html │ │ │ ├── excanvas.js │ │ │ ├── excanvas.min.js │ │ │ ├── jquery.colorhelpers.js │ │ │ ├── jquery.flot.crosshair.js │ │ │ ├── jquery.flot.fillbetween.js │ │ │ ├── jquery.flot.image.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.navigate.js │ │ │ ├── jquery.flot.pie.js │ │ │ ├── jquery.flot.resize.js │ │ │ ├── jquery.flot.selection.js │ │ │ ├── jquery.flot.stack.js │ │ │ ├── jquery.flot.symbol.js │ │ │ ├── jquery.flot.threshold.js │ │ │ └── jquery.js │ ├── font-awesome │ │ └── 3.0 │ │ │ ├── .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 │ ├── fullcalendar-1.5.3 │ │ ├── GPL-LICENSE.txt │ │ ├── MIT-LICENSE.txt │ │ ├── changelog.txt │ │ ├── demos │ │ │ ├── agenda-views.html │ │ │ ├── basic-views.html │ │ │ ├── cupertino │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png │ │ │ │ │ ├── ui-bg_flat_15_cd0a0a_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_e4f1fb_1x400.png │ │ │ │ │ ├── ui-bg_glass_50_3baae3_1x400.png │ │ │ │ │ ├── ui-bg_glass_80_d7ebf9_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_70_000000_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_deedf7_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_25_ffef8f_1x100.png │ │ │ │ │ ├── ui-icons_2694e8_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_3d80b3_256x240.png │ │ │ │ │ ├── ui-icons_72a7cf_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ └── theme.css │ │ │ ├── default.html │ │ │ ├── external-dragging.html │ │ │ ├── gcal.html │ │ │ ├── json-events.php │ │ │ ├── json.html │ │ │ ├── selectable.html │ │ │ └── theme.html │ │ ├── fullcalendar │ │ │ ├── fullcalendar.css │ │ │ ├── fullcalendar.js │ │ │ ├── fullcalendar.min.js │ │ │ ├── fullcalendar.print.css │ │ │ └── gcal.js │ │ └── jquery │ │ │ ├── jquery-1.7.1.min.js │ │ │ └── jquery-ui-1.8.17.custom.min.js │ ├── google-code-prettify │ │ ├── bootstrap-prettify.css │ │ ├── lang-apollo.js │ │ ├── lang-clj.js │ │ ├── lang-css.js │ │ ├── lang-go.js │ │ ├── lang-hs.js │ │ ├── lang-lisp.js │ │ ├── lang-lua.js │ │ ├── lang-ml.js │ │ ├── lang-n.js │ │ ├── lang-proto.js │ │ ├── lang-scala.js │ │ ├── lang-sql.js │ │ ├── lang-tex.js │ │ ├── lang-vb.js │ │ ├── lang-vhdl.js │ │ ├── lang-wiki.js │ │ ├── lang-xq.js │ │ ├── lang-yaml.js │ │ ├── prettify.css │ │ ├── prettify.js │ │ └── prettify.min.js │ ├── head.load.min.js │ ├── html5.js │ ├── jasmine-1.3.1 │ │ ├── SpecRunner.html │ │ ├── lib │ │ │ └── jasmine-1.3.1 │ │ │ │ ├── MIT.LICENSE │ │ │ │ ├── jasmine-html.js │ │ │ │ ├── jasmine.css │ │ │ │ └── jasmine.js │ │ ├── spec │ │ │ ├── PlayerSpec.js │ │ │ └── SpecHelper.js │ │ └── src │ │ │ ├── Player.js │ │ │ └── Song.js │ ├── jquery-ui-1.8.24 │ │ ├── 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.24.custom.css │ │ ├── development-bundle │ │ │ ├── AUTHORS.txt │ │ │ ├── GPL-LICENSE.txt │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── demos │ │ │ │ ├── accordion │ │ │ │ │ ├── collapsible.html │ │ │ │ │ ├── custom-icons.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── fillspace.html │ │ │ │ │ ├── hoverintent.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mouseover.html │ │ │ │ │ ├── no-auto-height.html │ │ │ │ │ └── sortable.html │ │ │ │ ├── addClass │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ ├── animate │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ ├── autocomplete │ │ │ │ │ ├── categories.html │ │ │ │ │ ├── combobox.html │ │ │ │ │ ├── custom-data.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── folding.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── jquery_32x32.png │ │ │ │ │ │ ├── jqueryui_32x32.png │ │ │ │ │ │ ├── sizzlejs_32x32.png │ │ │ │ │ │ ├── transparent_1x1.png │ │ │ │ │ │ └── ui-anim_basic_16x16.gif │ │ │ │ │ ├── index.html │ │ │ │ │ ├── london.xml │ │ │ │ │ ├── maxheight.html │ │ │ │ │ ├── multiple-remote.html │ │ │ │ │ ├── multiple.html │ │ │ │ │ ├── remote-jsonp.html │ │ │ │ │ ├── remote-with-cache.html │ │ │ │ │ ├── remote.html │ │ │ │ │ ├── search.php │ │ │ │ │ └── xml.html │ │ │ │ ├── button │ │ │ │ │ ├── checkbox.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── icons.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── radio.html │ │ │ │ │ ├── splitbutton.html │ │ │ │ │ └── toolbar.html │ │ │ │ ├── datepicker │ │ │ │ │ ├── alt-field.html │ │ │ │ │ ├── animation.html │ │ │ │ │ ├── buttonbar.html │ │ │ │ │ ├── date-formats.html │ │ │ │ │ ├── date-range.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── dropdown-month-year.html │ │ │ │ │ ├── icon-trigger.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── calendar.gif │ │ │ │ │ ├── index.html │ │ │ │ │ ├── inline.html │ │ │ │ │ ├── localization.html │ │ │ │ │ ├── min-max.html │ │ │ │ │ ├── multiple-calendars.html │ │ │ │ │ ├── other-months.html │ │ │ │ │ └── show-week.html │ │ │ │ ├── demos.css │ │ │ │ ├── dialog │ │ │ │ │ ├── animated.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── modal-confirmation.html │ │ │ │ │ ├── modal-form.html │ │ │ │ │ ├── modal-message.html │ │ │ │ │ └── modal.html │ │ │ │ ├── draggable │ │ │ │ │ ├── constrain-movement.html │ │ │ │ │ ├── cursor-style.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── delay-start.html │ │ │ │ │ ├── events.html │ │ │ │ │ ├── handle.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── revert.html │ │ │ │ │ ├── scroll.html │ │ │ │ │ ├── snap-to.html │ │ │ │ │ ├── sortable.html │ │ │ │ │ └── visual-feedback.html │ │ │ │ ├── droppable │ │ │ │ │ ├── accepted-elements.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── high_tatras.jpg │ │ │ │ │ │ ├── high_tatras2.jpg │ │ │ │ │ │ ├── high_tatras2_min.jpg │ │ │ │ │ │ ├── high_tatras3.jpg │ │ │ │ │ │ ├── high_tatras3_min.jpg │ │ │ │ │ │ ├── high_tatras4.jpg │ │ │ │ │ │ ├── high_tatras4_min.jpg │ │ │ │ │ │ └── high_tatras_min.jpg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── photo-manager.html │ │ │ │ │ ├── propagation.html │ │ │ │ │ ├── revert.html │ │ │ │ │ ├── shopping-cart.html │ │ │ │ │ └── visual-feedback.html │ │ │ │ ├── effect │ │ │ │ │ ├── default.html │ │ │ │ │ ├── easing.html │ │ │ │ │ └── index.html │ │ │ │ ├── hide │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ ├── images │ │ │ │ │ ├── calendar.gif │ │ │ │ │ ├── demo-config-on-tile.gif │ │ │ │ │ ├── demo-config-on.gif │ │ │ │ │ ├── demo-spindown-closed.gif │ │ │ │ │ ├── demo-spindown-open.gif │ │ │ │ │ ├── icon-docs-info.gif │ │ │ │ │ └── pbar-ani.gif │ │ │ │ ├── index.html │ │ │ │ ├── position │ │ │ │ │ ├── cycler.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── earth.jpg │ │ │ │ │ │ ├── flight.jpg │ │ │ │ │ │ └── rocket.jpg │ │ │ │ │ └── index.html │ │ │ │ ├── progressbar │ │ │ │ │ ├── animated.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── pbar-ani.gif │ │ │ │ │ ├── index.html │ │ │ │ │ └── resize.html │ │ │ │ ├── removeClass │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ ├── resizable │ │ │ │ │ ├── animate.html │ │ │ │ │ ├── aspect-ratio.html │ │ │ │ │ ├── constrain-area.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── delay-start.html │ │ │ │ │ ├── helper.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── max-min.html │ │ │ │ │ ├── snap-to-grid.html │ │ │ │ │ ├── synchronous-resize.html │ │ │ │ │ ├── textarea.html │ │ │ │ │ └── visual-feedback.html │ │ │ │ ├── selectable │ │ │ │ │ ├── default.html │ │ │ │ │ ├── display-grid.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── serialize.html │ │ │ │ ├── show │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ ├── slider │ │ │ │ │ ├── colorpicker.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── hotelrooms.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── multiple-vertical.html │ │ │ │ │ ├── range-vertical.html │ │ │ │ │ ├── range.html │ │ │ │ │ ├── rangemax.html │ │ │ │ │ ├── rangemin.html │ │ │ │ │ ├── side-scroll.html │ │ │ │ │ ├── slider-vertical.html │ │ │ │ │ ├── steps.html │ │ │ │ │ └── tabs.html │ │ │ │ ├── sortable │ │ │ │ │ ├── connect-lists-through-tabs.html │ │ │ │ │ ├── connect-lists.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── delay-start.html │ │ │ │ │ ├── display-grid.html │ │ │ │ │ ├── empty-lists.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── items.html │ │ │ │ │ ├── placeholder.html │ │ │ │ │ └── portlets.html │ │ │ │ ├── switchClass │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ ├── tabs │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── ajax │ │ │ │ │ │ ├── content1.html │ │ │ │ │ │ ├── content2.html │ │ │ │ │ │ ├── content3-slow.php │ │ │ │ │ │ └── content4-broken.php │ │ │ │ │ ├── bottom.html │ │ │ │ │ ├── collapsible.html │ │ │ │ │ ├── cookie.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manipulation.html │ │ │ │ │ ├── mouseover.html │ │ │ │ │ ├── sortable.html │ │ │ │ │ └── vertical.html │ │ │ │ ├── toggle │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ └── toggleClass │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ ├── docs │ │ │ │ ├── accordion.html │ │ │ │ ├── addClass.html │ │ │ │ ├── animate.html │ │ │ │ ├── autocomplete.html │ │ │ │ ├── button.html │ │ │ │ ├── datepicker.html │ │ │ │ ├── dialog.html │ │ │ │ ├── draggable.html │ │ │ │ ├── droppable.html │ │ │ │ ├── effect.html │ │ │ │ ├── hide.html │ │ │ │ ├── position.html │ │ │ │ ├── progressbar.html │ │ │ │ ├── removeClass.html │ │ │ │ ├── resizable.html │ │ │ │ ├── selectable.html │ │ │ │ ├── show.html │ │ │ │ ├── slider.html │ │ │ │ ├── sortable.html │ │ │ │ ├── switchClass.html │ │ │ │ ├── tabs.html │ │ │ │ ├── toggle.html │ │ │ │ └── toggleClass.html │ │ │ ├── external │ │ │ │ ├── jquery.bgiframe-2.1.2.js │ │ │ │ ├── jquery.cookie.js │ │ │ │ ├── jquery.metadata.js │ │ │ │ ├── qunit.css │ │ │ │ └── qunit.js │ │ │ ├── jquery-1.8.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.24.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.24.custom.js │ │ │ │ ├── jquery.effects.blind.js │ │ │ │ ├── jquery.effects.bounce.js │ │ │ │ ├── jquery.effects.clip.js │ │ │ │ ├── jquery.effects.core.js │ │ │ │ ├── jquery.effects.drop.js │ │ │ │ ├── jquery.effects.explode.js │ │ │ │ ├── jquery.effects.fade.js │ │ │ │ ├── jquery.effects.fold.js │ │ │ │ ├── jquery.effects.highlight.js │ │ │ │ ├── jquery.effects.pulsate.js │ │ │ │ ├── jquery.effects.scale.js │ │ │ │ ├── jquery.effects.shake.js │ │ │ │ ├── jquery.effects.slide.js │ │ │ │ ├── jquery.effects.transfer.js │ │ │ │ ├── jquery.ui.accordion.js │ │ │ │ ├── jquery.ui.autocomplete.js │ │ │ │ ├── jquery.ui.button.js │ │ │ │ ├── jquery.ui.core.js │ │ │ │ ├── jquery.ui.datepicker.js │ │ │ │ ├── jquery.ui.dialog.js │ │ │ │ ├── jquery.ui.draggable.js │ │ │ │ ├── jquery.ui.droppable.js │ │ │ │ ├── jquery.ui.mouse.js │ │ │ │ ├── jquery.ui.position.js │ │ │ │ ├── jquery.ui.progressbar.js │ │ │ │ ├── jquery.ui.resizable.js │ │ │ │ ├── jquery.ui.selectable.js │ │ │ │ ├── jquery.ui.slider.js │ │ │ │ ├── jquery.ui.sortable.js │ │ │ │ ├── jquery.ui.tabs.js │ │ │ │ ├── jquery.ui.widget.js │ │ │ │ └── minified │ │ │ │ ├── jquery.effects.blind.min.js │ │ │ │ ├── jquery.effects.bounce.min.js │ │ │ │ ├── jquery.effects.clip.min.js │ │ │ │ ├── jquery.effects.core.min.js │ │ │ │ ├── jquery.effects.drop.min.js │ │ │ │ ├── jquery.effects.explode.min.js │ │ │ │ ├── jquery.effects.fade.min.js │ │ │ │ ├── jquery.effects.fold.min.js │ │ │ │ ├── jquery.effects.highlight.min.js │ │ │ │ ├── jquery.effects.pulsate.min.js │ │ │ │ ├── jquery.effects.scale.min.js │ │ │ │ ├── jquery.effects.shake.min.js │ │ │ │ ├── jquery.effects.slide.min.js │ │ │ │ ├── jquery.effects.transfer.min.js │ │ │ │ ├── jquery.ui.accordion.min.js │ │ │ │ ├── jquery.ui.autocomplete.min.js │ │ │ │ ├── jquery.ui.button.min.js │ │ │ │ ├── jquery.ui.core.min.js │ │ │ │ ├── jquery.ui.datepicker.min.js │ │ │ │ ├── jquery.ui.dialog.min.js │ │ │ │ ├── jquery.ui.draggable.min.js │ │ │ │ ├── jquery.ui.droppable.min.js │ │ │ │ ├── jquery.ui.mouse.min.js │ │ │ │ ├── jquery.ui.position.min.js │ │ │ │ ├── jquery.ui.progressbar.min.js │ │ │ │ ├── jquery.ui.resizable.min.js │ │ │ │ ├── jquery.ui.selectable.min.js │ │ │ │ ├── jquery.ui.slider.min.js │ │ │ │ ├── jquery.ui.sortable.min.js │ │ │ │ ├── jquery.ui.tabs.min.js │ │ │ │ └── jquery.ui.widget.min.js │ │ ├── index.html │ │ └── js │ │ │ ├── jquery-1.8.2.js │ │ │ ├── jquery-1.8.2.min.js │ │ │ ├── jquery-ui-1.8.24.custom.js │ │ │ └── jquery-ui-1.8.24.custom.min.js │ ├── jquery.autosize.js │ ├── jquery.layout-latest.min.js │ ├── jsbeautier │ │ └── beautify.js │ ├── jsl │ │ ├── jsl.format.js │ │ └── jsl.parser.js │ ├── marked.js │ ├── marked.min.js │ ├── marked.min.js.gz │ ├── moment.min.js │ ├── moment │ │ └── 1.7.2 │ │ │ ├── moment.js │ │ │ └── moment.min.js │ ├── ng-grid │ │ └── 1.6.3 │ │ │ ├── ng-grid-1.6.3.js │ │ │ ├── ng-grid-1.6.3.min.js │ │ │ ├── ng-grid-layout.js │ │ │ └── ng-grid.css │ ├── requirejs-2.1.4 │ │ ├── requirejs.js │ │ └── requirejs.min.js │ ├── slickswitch │ │ ├── css │ │ │ └── slickswitch.css │ │ ├── images │ │ │ └── switch.png │ │ └── js │ │ │ └── jquery.slickswitch.js │ ├── underscore.string │ │ └── 2.3.0 │ │ │ ├── underscore.string.js │ │ │ └── underscore.string.min.js │ └── underscore │ │ └── 1.4.3 │ │ ├── underscore.js │ │ └── underscore.min.js └── stylesheets │ ├── main.css │ ├── result-pretty.css │ └── rythm-web.css └── test ├── Application.test.html ├── ApplicationTest.java ├── BasicTest.java └── data.yml /.gitignore: -------------------------------------------------------------------------------- 1 | modules 2 | lib 3 | *.iml 4 | *.ipr 5 | tmp 6 | data/ 7 | precompiled -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Use Play 1.2.5 2 | 3 | How to run 4 | ---------- 5 | 6 | 1. `play deps --sync` 7 | 1. go to module `app-base`, and delete the file `UADetector.java` 8 | 1. `cp conf/account.txt.sample conf/account.txt` 9 | 1. add `username=password` list there 10 | 1. `play run` 11 | 1. visit `http://localhost:9000` -------------------------------------------------------------------------------- /angular-seed/.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store 2 | nbproject 3 | manifest.mf 4 | build.xml 5 | 6 | .project 7 | .settings 8 | .idea/* 9 | -------------------------------------------------------------------------------- /angular-seed/app/css/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/angular-seed/app/css/.gitignore -------------------------------------------------------------------------------- /angular-seed/app/img/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/angular-seed/app/img/.gitignore -------------------------------------------------------------------------------- /angular-seed/app/js/directives.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /* Directives */ 4 | 5 | 6 | angular.module('myApp.directives', []). 7 | directive('appVersion', ['version', function (version) { 8 | return function (scope, elm, attrs) { 9 | elm.text(version); 10 | }; 11 | }]). 12 | directive('autofocus', ['$timeout', function ($timeout) { 13 | return { 14 | restrict: 'A', 15 | link: function (scope, elm, attrs) { 16 | attrs.$observe('autofocus', function (val) { 17 | if (val) { 18 | $timeout(function () { 19 | elm.focus(); 20 | }, 50); 21 | } 22 | }) 23 | } 24 | } 25 | }]). 26 | directive('affix', [function () { 27 | return { 28 | restrict: 'C', 29 | link: function (scope, elm, attrs) { 30 | elm.affix(); 31 | } 32 | } 33 | }]); -------------------------------------------------------------------------------- /angular-seed/app/js/services.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /* Services */ 4 | 5 | 6 | // Demonstrate how to register services 7 | // In this case it is a simple value service. 8 | angular.module('myApp.services', []). 9 | value('version', '0.1'); 10 | -------------------------------------------------------------------------------- /angular-seed/app/lib/angular/angular-cookies.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | AngularJS v1.0.5 3 | (c) 2010-2012 Google, Inc. http://angularjs.org 4 | License: MIT 5 | */ 6 | (function(m,f,l){'use strict';f.module("ngCookies",["ng"]).factory("$cookies",["$rootScope","$browser",function(d,c){var b={},g={},h,i=!1,j=f.copy,k=f.isUndefined;c.addPollFn(function(){var a=c.cookies();h!=a&&(h=a,j(a,g),j(a,b),i&&d.$apply())})();i=!0;d.$watch(function(){var a,e,d;for(a in g)k(b[a])&&c.cookies(a,l);for(a in b)e=b[a],f.isString(e)?e!==g[a]&&(c.cookies(a,e),d=!0):f.isDefined(g[a])?b[a]=g[a]:delete b[a];if(d)for(a in e=c.cookies(),b)b[a]!==e[a]&&(k(e[a])?delete b[a]:b[a]=e[a])});return b}]).factory("$cookieStore", 7 | ["$cookies",function(d){return{get:function(c){return f.fromJson(d[c])},put:function(c,b){d[c]=f.toJson(b)},remove:function(c){delete d[c]}}}])})(window,window.angular); 8 | -------------------------------------------------------------------------------- /angular-seed/app/lib/angular/angular-loader.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | AngularJS v1.0.5 3 | (c) 2010-2012 Google, Inc. http://angularjs.org 4 | License: MIT 5 | */ 6 | (function(i){'use strict';function d(c,b,e){return c[b]||(c[b]=e())}return d(d(i,"angular",Object),"module",function(){var c={};return function(b,e,f){e&&c.hasOwnProperty(b)&&(c[b]=null);return d(c,b,function(){function a(a,b,d){return function(){c[d||"push"]([a,b,arguments]);return g}}if(!e)throw Error("No module: "+b);var c=[],d=[],h=a("$injector","invoke"),g={_invokeQueue:c,_runBlocks:d,requires:e,name:b,provider:a("$provide","provider"),factory:a("$provide","factory"),service:a("$provide","service"), 7 | value:a("$provide","value"),constant:a("$provide","constant","unshift"),filter:a("$filterProvider","register"),controller:a("$controllerProvider","register"),directive:a("$compileProvider","directive"),config:h,run:function(a){d.push(a);return this}};f&&h(f);return g})}})})(window); 8 | -------------------------------------------------------------------------------- /angular-seed/app/lib/angular/version.txt: -------------------------------------------------------------------------------- 1 | 1.0.5 2 | -------------------------------------------------------------------------------- /angular-seed/app/partials/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/angular-seed/app/partials/.gitignore -------------------------------------------------------------------------------- /angular-seed/app/partials/about.html: -------------------------------------------------------------------------------- 1 | 5 | 13 | -------------------------------------------------------------------------------- /angular-seed/app/partials/all_demos.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | 11 |
12 |
13 |
-------------------------------------------------------------------------------- /angular-seed/app/partials/partial1.html: -------------------------------------------------------------------------------- 1 |

This is the partial for view 1.

2 | -------------------------------------------------------------------------------- /angular-seed/app/partials/partial2.html: -------------------------------------------------------------------------------- 1 |

This is the partial for view 2.

2 |

3 | Showing of 'interpolate' filter: 4 | {{ 'Current version is v%VERSION%.' | interpolate }} 5 |

6 | -------------------------------------------------------------------------------- /angular-seed/app/partials/sample_model_code.html: -------------------------------------------------------------------------------- 1 |
2 | 7 |
8 | 9 |
10 |
11 |
12 |

{{model.className}}

13 |

14 |         
15 |
16 |
-------------------------------------------------------------------------------- /angular-seed/config/testacular-e2e.conf.js: -------------------------------------------------------------------------------- 1 | basePath = '../'; 2 | 3 | files = [ 4 | ANGULAR_SCENARIO, 5 | ANGULAR_SCENARIO_ADAPTER, 6 | 'test/e2e/**/*.js' 7 | ]; 8 | 9 | autoWatch = false; 10 | 11 | browsers = ['Chrome']; 12 | 13 | singleRun = true; 14 | 15 | proxies = { 16 | '/': 'http://localhost:8000/' 17 | }; 18 | 19 | junitReporter = { 20 | outputFile: 'test_out/e2e.xml', 21 | suite: 'e2e' 22 | }; 23 | -------------------------------------------------------------------------------- /angular-seed/config/testacular.conf.js: -------------------------------------------------------------------------------- 1 | basePath = '../'; 2 | 3 | files = [ 4 | JASMINE, 5 | JASMINE_ADAPTER, 6 | 'app/lib/angular/angular.js', 7 | 'app/lib/angular/angular-*.js', 8 | 'test/lib/angular/angular-mocks.js', 9 | 'app/js/**/*.js', 10 | 'test/unit/**/*.js' 11 | ]; 12 | 13 | autoWatch = true; 14 | 15 | browsers = ['Chrome']; 16 | 17 | junitReporter = { 18 | outputFile: 'test_out/unit.xml', 19 | suite: 'unit' 20 | }; 21 | -------------------------------------------------------------------------------- /angular-seed/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /angular-seed/scripts/e2e-test.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | REM Windows script for running e2e tests 4 | REM You have to run server and capture some browser first 5 | REM 6 | REM Requirements: 7 | REM - NodeJS (http://nodejs.org/) 8 | REM - Testacular (npm install -g testacular) 9 | 10 | set BASE_DIR=%~dp0 11 | testacular start "%BASE_DIR%\..\config\testacular-e2e.conf.js" %* 12 | -------------------------------------------------------------------------------- /angular-seed/scripts/e2e-test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | BASE_DIR=`dirname $0` 4 | 5 | echo "" 6 | echo "Starting Testacular Server (http://vojtajina.github.com/testacular)" 7 | echo "-------------------------------------------------------------------" 8 | 9 | testacular start $BASE_DIR/../config/testacular-e2e.conf.js $* 10 | -------------------------------------------------------------------------------- /angular-seed/scripts/test.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | REM Windows script for running unit tests 4 | REM You have to run server and capture some browser first 5 | REM 6 | REM Requirements: 7 | REM - NodeJS (http://nodejs.org/) 8 | REM - Testacular (npm install -g testacular) 9 | 10 | set BASE_DIR=%~dp0 11 | testacular start "%BASE_DIR%\..\config\testacular.conf.js" %* 12 | -------------------------------------------------------------------------------- /angular-seed/scripts/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | BASE_DIR=`dirname $0` 4 | 5 | echo "" 6 | echo "Starting Testacular Server (http://vojtajina.github.com/testacular)" 7 | echo "-------------------------------------------------------------------" 8 | 9 | testacular start $BASE_DIR/../config/testacular.conf.js $* 10 | -------------------------------------------------------------------------------- /angular-seed/scripts/watchr.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env watchr 2 | 3 | # config file for watchr http://github.com/mynyml/watchr 4 | # install: gem install watchr 5 | # run: watch watchr.rb 6 | # note: make sure that you have jstd server running (server.sh) and a browser captured 7 | 8 | log_file = File.expand_path(File.dirname(__FILE__) + '/../logs/jstd.log') 9 | 10 | `cd ..` 11 | `touch #{log_file}` 12 | 13 | puts "String watchr... log file: #{log_file}" 14 | 15 | watch( '(app/js|test/unit)' ) do 16 | `echo "\n\ntest run started @ \`date\`" > #{log_file}` 17 | `scripts/test.sh &> #{log_file}` 18 | end 19 | 20 | -------------------------------------------------------------------------------- /angular-seed/test/e2e/runner.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | End2end Test Runner 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /angular-seed/test/lib/angular/version.txt: -------------------------------------------------------------------------------- 1 | 1.0.5 2 | -------------------------------------------------------------------------------- /angular-seed/test/unit/controllersSpec.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /* jasmine specs for controllers go here */ 4 | 5 | describe('MyCtrl1', function(){ 6 | var myCtrl1; 7 | 8 | beforeEach(function(){ 9 | myCtrl1 = new MyCtrl1(); 10 | }); 11 | 12 | 13 | it('should ....', function() { 14 | //spec body 15 | }); 16 | }); 17 | 18 | 19 | describe('MyCtrl2', function(){ 20 | var myCtrl2; 21 | 22 | 23 | beforeEach(function(){ 24 | myCtrl2 = new MyCtrl2(); 25 | }); 26 | 27 | 28 | it('should ....', function() { 29 | //spec body 30 | }); 31 | }); 32 | -------------------------------------------------------------------------------- /angular-seed/test/unit/directivesSpec.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /* jasmine specs for directives go here */ 4 | 5 | describe('directives', function() { 6 | beforeEach(module('myApp.directives')); 7 | 8 | describe('app-version', function() { 9 | it('should print current version', function() { 10 | module(function($provide) { 11 | $provide.value('version', 'TEST_VER'); 12 | }); 13 | inject(function($compile, $rootScope) { 14 | var element = $compile('')($rootScope); 15 | expect(element.text()).toEqual('TEST_VER'); 16 | }); 17 | }); 18 | }); 19 | }); 20 | -------------------------------------------------------------------------------- /angular-seed/test/unit/filtersSpec.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /* jasmine specs for filters go here */ 4 | 5 | describe('filter', function() { 6 | beforeEach(module('myApp.filters')); 7 | 8 | 9 | describe('interpolate', function() { 10 | beforeEach(module(function($provide) { 11 | $provide.value('version', 'TEST_VER'); 12 | })); 13 | 14 | 15 | it('should replace VERSION', inject(function(interpolateFilter) { 16 | expect(interpolateFilter('before %VERSION% after')).toEqual('before TEST_VER after'); 17 | })); 18 | }); 19 | }); 20 | -------------------------------------------------------------------------------- /angular-seed/test/unit/servicesSpec.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /* jasmine specs for services go here */ 4 | 5 | describe('service', function() { 6 | beforeEach(module('myApp.services')); 7 | 8 | 9 | describe('version', function() { 10 | it('should return current version', inject(function(version) { 11 | expect(version).toEqual('0.1'); 12 | })); 13 | }); 14 | }); 15 | -------------------------------------------------------------------------------- /app/common/Helper.java: -------------------------------------------------------------------------------- 1 | package common; 2 | 3 | import com.google.gson.Gson; 4 | import com.greenlaw110.rythm.utils.S; 5 | import models.Code; 6 | 7 | import java.util.HashMap; 8 | import java.util.Map; 9 | import java.util.UUID; 10 | 11 | /** 12 | * User: freewind 13 | * Date: 13-3-18 14 | * Time: 下午6:13 15 | */ 16 | public class Helper { 17 | 18 | public static boolean eq(Object o1, Object o2) { 19 | return o1 == o2 || (o1 != null && o1.equals(o2)); 20 | } 21 | 22 | public static String nextUUID() { 23 | return UUID.randomUUID().toString().replace("-", ""); 24 | } 25 | 26 | public static Map parseJson(String jsonStr) { 27 | if (S.empty(jsonStr)) { 28 | return new HashMap(); 29 | } 30 | return (Map) new Gson().fromJson(jsonStr, Map.class); 31 | } 32 | 33 | public static Code parse2code(String jsonStr) { 34 | return new Gson().fromJson(jsonStr, Code.class); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /app/demo/Bar.java: -------------------------------------------------------------------------------- 1 | package demo; 2 | 3 | import com.greenlaw110.rythm.play.RythmPlugin; 4 | 5 | import java.util.UUID; 6 | 7 | public class Bar { 8 | public String id; 9 | 10 | public Bar() { 11 | id = UUID.randomUUID().toString(); 12 | } 13 | 14 | public Bar(String id) { 15 | if (null == id) { 16 | throw new NullPointerException(); 17 | } 18 | this.id = id; 19 | } 20 | 21 | public String toString() { 22 | return RythmPlugin.substitute("Bar[@1]", id); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/demo/Foo.java: -------------------------------------------------------------------------------- 1 | package demo; 2 | 3 | import com.greenlaw110.rythm.play.RythmPlugin; 4 | 5 | public class Foo { 6 | public Bar bar; 7 | 8 | public Foo() { 9 | bar = new Bar(); 10 | } 11 | 12 | public Foo(Bar bar) { 13 | this.bar = new Bar(bar.id); 14 | } 15 | 16 | public Foo(String barId) { 17 | this.bar = new Bar(barId); 18 | } 19 | 20 | public String toString() { 21 | return RythmPlugin.substitute("Foo[@1]", bar); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /app/jobs/InitJobs.java: -------------------------------------------------------------------------------- 1 | package jobs; 2 | 3 | import common.CodeManager; 4 | import play.jobs.Job; 5 | import play.jobs.OnApplicationStart; 6 | 7 | /** 8 | * User: freewind 9 | * Date: 13-3-21 10 | * Time: 下午7:11 11 | */ 12 | @OnApplicationStart 13 | public class InitJobs extends Job { 14 | 15 | /** 16 | * Here you do the job 17 | */ 18 | @Override 19 | public void doJob() throws Exception { 20 | CodeManager.CODE_ROOT.mkdirs(); 21 | CodeManager.reload(); 22 | //Code.initRythmEngine(); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/views/Application/index.html: -------------------------------------------------------------------------------- 1 | #{extends 'main.html' /} 2 | #{set title:'Home' /} 3 | 4 | #{welcome /} -------------------------------------------------------------------------------- /app/views/errors/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Not found 6 | 7 | 8 | 9 | #{if play.mode.name() == 'DEV'} 10 | #{404 result /} 11 | #{/if} 12 | #{else} 13 |

Not found

14 |

15 | ${result.message} 16 |

17 | #{/else} 18 | 19 | 20 | -------------------------------------------------------------------------------- /app/views/errors/500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Application error 6 | 7 | 8 | 9 | #{if play.mode.name() == 'DEV'} 10 | #{500 exception /} 11 | #{/if} 12 | #{else} 13 |

Oops, an error occured

14 | #{if exception instanceof play.exceptions.PlayException} 15 |

16 | This exception has been logged with id ${exception.id}. 17 |

18 | #{/if} 19 | #{/else} 20 | 21 | 22 | -------------------------------------------------------------------------------- /app/views/main.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | #{get 'title' /} 6 | 7 | 8 | #{get 'moreStyles' /} 9 | 10 | 11 | #{get 'moreScripts' /} 12 | 13 | 14 | #{doLayout /} 15 | 16 | 17 | -------------------------------------------------------------------------------- /conf/.gitignore: -------------------------------------------------------------------------------- 1 | account.txt -------------------------------------------------------------------------------- /conf/account.txt.sample: -------------------------------------------------------------------------------- 1 | username=password -------------------------------------------------------------------------------- /conf/dependencies.yml: -------------------------------------------------------------------------------- 1 | # Application dependencies 2 | 3 | require: 4 | - play 5 | # - com.greenlaw110.rythm -> rythm-engine 1.0-b5 6 | - com.gelinsoft -> play-rythm 1.0-b5s 7 | - com.gelinsoft -> app-base 1.5.0 8 | - com.gelinsoft -> betterlogs 1.2i 9 | 10 | repositories: 11 | - gelinsoft: 12 | type: http 13 | artifact: "http://gelinsoft.com/play/repo/[module]-[revision].zip" 14 | contains: 15 | - com.gelinsoft -> * -------------------------------------------------------------------------------- /conf/messages: -------------------------------------------------------------------------------- 1 | # You can specialize this file for each language. 2 | # For example, for French create a messages.fr file 3 | # 4 | -------------------------------------------------------------------------------- /conf/routes: -------------------------------------------------------------------------------- 1 | # Routes 2 | # This file defines all application routes (Higher priority routes first) 3 | # ~~~~ 4 | 5 | # Home page 6 | GET /embed/? Application.embedIndex 7 | GET / Application.angularIndex 8 | 9 | # Ignore favicon requests 10 | GET /favicon.ico 404 11 | 12 | # Map static resources from the /app/public folder to the /public path 13 | GET /public/ staticDir:public 14 | 15 | GET /templates/ staticDir:angular-seed/app 16 | 17 | # Catch all 18 | * /api/{controller}/{action} {controller}.{action} 19 | 20 | * /{<.*>all} Application.angularIndex -------------------------------------------------------------------------------- /public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/images/favicon.png -------------------------------------------------------------------------------- /public/libs/angular-ui/0.4.0/angular-ui.css: -------------------------------------------------------------------------------- 1 | /** 2 | * import components to builds angular-ui.css 3 | */ 4 | 5 | /* ui-reset */ 6 | 7 | .ui-resetwrap { 8 | position: relative; 9 | display: inline-block; 10 | } 11 | 12 | .ui-reset { 13 | position: absolute; 14 | top: 0; 15 | right: 0; 16 | z-index: 2; 17 | display: none; 18 | height: 100%; 19 | cursor: pointer; 20 | } 21 | 22 | .ui-resetwrap:hover .ui-reset { 23 | display: block; 24 | } 25 | 26 | /* ui-currency */ 27 | 28 | .ui-currency-pos { 29 | color: green; 30 | } 31 | 32 | .ui-currency-neg { 33 | color: red; 34 | } 35 | 36 | .ui-currency-zero { 37 | color: blue; 38 | } 39 | 40 | .ui-currency-pos.ui-bignum, 41 | .ui-currency-neg.ui-smallnum { 42 | font-size: 110%; 43 | } 44 | 45 | /* highlight */ 46 | 47 | .ui-match { 48 | background: yellow; 49 | } 50 | 51 | -------------------------------------------------------------------------------- /public/libs/angular-ui/0.4.0/angular-ui.min.css: -------------------------------------------------------------------------------- 1 | .ui-resetwrap{position:relative;display:inline-block}.ui-reset{position:absolute;top:0;right:0;z-index:2;display:none;height:100%;cursor:pointer}.ui-resetwrap:hover .ui-reset{display:block}.ui-currency-pos{color:green}.ui-currency-neg{color:red}.ui-currency-zero{color:blue}.ui-currency-pos.ui-bignum,.ui-currency-neg.ui-smallnum{font-size:110%}.ui-match{background:yellow} -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/angular-cookies.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | AngularJS v1.1.3 3 | (c) 2010-2012 Google, Inc. http://angularjs.org 4 | License: MIT 5 | */ 6 | (function(m,f,l){'use strict';f.module("ngCookies",["ng"]).factory("$cookies",["$rootScope","$browser",function(d,c){var b={},g={},h,i=!1,j=f.copy,k=f.isUndefined;c.addPollFn(function(){var a=c.cookies();h!=a&&(h=a,j(a,g),j(a,b),i&&d.$apply())})();i=!0;d.$watch(function(){var a,e,d;for(a in g)k(b[a])&&c.cookies(a,l);for(a in b)e=b[a],f.isString(e)?e!==g[a]&&(c.cookies(a,e),d=!0):f.isDefined(g[a])?b[a]=g[a]:delete b[a];if(d)for(a in e=c.cookies(),b)b[a]!==e[a]&&(k(e[a])?delete b[a]:b[a]=e[a])});return b}]).factory("$cookieStore", 7 | ["$cookies",function(d){return{get:function(c){return f.fromJson(d[c])},put:function(c,b){d[c]=f.toJson(b)},remove:function(c){delete d[c]}}}])})(window,window.angular); 8 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/angular-loader.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | AngularJS v1.1.3 3 | (c) 2010-2012 Google, Inc. http://angularjs.org 4 | License: MIT 5 | */ 6 | (function(i){'use strict';function d(c,b,e){return c[b]||(c[b]=e())}return d(d(i,"angular",Object),"module",function(){var c={};return function(b,e,f){e&&c.hasOwnProperty(b)&&(c[b]=null);return d(c,b,function(){function a(a,b,d){return function(){c[d||"push"]([a,b,arguments]);return g}}if(!e)throw Error("No module: "+b);var c=[],d=[],h=a("$injector","invoke"),g={_invokeQueue:c,_runBlocks:d,requires:e,name:b,provider:a("$provide","provider"),factory:a("$provide","factory"),service:a("$provide","service"), 7 | value:a("$provide","value"),constant:a("$provide","constant","unshift"),filter:a("$filterProvider","register"),controller:a("$controllerProvider","register"),directive:a("$compileProvider","directive"),config:h,run:function(a){d.push(a);return this}};f&&h(f);return g})}})})(window); 8 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/.htaccess: -------------------------------------------------------------------------------- 1 | ## OFFLINE SUPPORT ## 2 | 3 | # These rules tell apache to check if there is a cookie called "offline", with value set to the 4 | # current angular version. If this rule matches the appcache-offline.manifest will be served for 5 | # requests to appcache.manifest 6 | # 7 | # This file must be processed by Rake in order to replace %ANGULAR_VERSION% with the actual version. 8 | 9 | Options -Indexes 10 | RewriteEngine on 11 | RewriteCond %{HTTP_COOKIE} ng-offline=1.1.3 12 | RewriteRule appcache.manifest appcache-offline.manifest 13 | 14 | ## Redirect to the latest manifest 15 | RewriteCond %{HTTP_HOST} ^docs-next\.angularjs\.org$ 16 | RewriteRule appcache.manifest http://code.angularjs.org/next/docs/appcache.manifest [R=301] 17 | 18 | ## HTML5 URL Support ## 19 | RewriteRule ^(guide|api|cookbook|misc|tutorial)(/.*)?$ index.html 20 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/appcache.manifest: -------------------------------------------------------------------------------- 1 | CACHE MANIFEST 2 | # 2013-02-20T20:55:56.181Z 3 | 4 | # cache all of these 5 | CACHE: 6 | syntaxhighlighter/syntaxhighlighter-combined.js 7 | ../angular.min.js 8 | docs-combined.js 9 | docs-keywords.js 10 | docs-combined.css 11 | syntaxhighlighter/syntaxhighlighter-combined.css 12 | img/texture_1.png 13 | img/yellow_bkgnd.jpg 14 | 15 | FALLBACK: 16 | / /build/docs/offline.html 17 | 18 | # allow access to google analytics and twitter when we are online 19 | NETWORK: 20 | * -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/favicon.ico -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/font/fontawesome-webfont.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/font/fontawesome-webfont.svgz -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/AngularJS-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/AngularJS-small.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/One_Way_Data_Binding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/One_Way_Data_Binding.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/Two_Way_Data_Binding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/Two_Way_Data_Binding.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/angular_parts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/angular_parts.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/bullet.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/form_data_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/form_data_flow.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/guide/about_model_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/guide/about_model_final.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/guide/about_view_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/guide/about_view_final.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/guide/concepts-controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/guide/concepts-controller.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/guide/concepts-directive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/guide/concepts-directive.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/guide/concepts-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/guide/concepts-model.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/guide/concepts-module-injector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/guide/concepts-module-injector.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/guide/concepts-runtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/guide/concepts-runtime.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/guide/concepts-scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/guide/concepts-scope.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/guide/concepts-startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/guide/concepts-startup.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/guide/concepts-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/guide/concepts-view.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/guide/di_sequence_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/guide/di_sequence_final.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/guide/dom_scope_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/guide/dom_scope_final.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/guide/hashbang_vs_regular_url.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/guide/hashbang_vs_regular_url.jpg -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/guide/scenario_runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/guide/scenario_runner.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/guide/simple_scope_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/guide/simple_scope_final.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/helloworld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/helloworld.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/helloworld_2way.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/helloworld_2way.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/tutorial/catalog_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/tutorial/catalog_screen.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/tutorial/tutorial_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/tutorial/tutorial_00.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/tutorial/tutorial_00_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/tutorial/tutorial_00_final.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/tutorial/tutorial_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/tutorial/tutorial_02.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/tutorial/tutorial_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/tutorial/tutorial_03.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/tutorial/tutorial_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/tutorial/tutorial_04.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/tutorial/tutorial_07_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/tutorial/tutorial_07_final.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/tutorial/tutorial_08-09_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/tutorial/tutorial_08-09_final.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/tutorial/tutorial_10-11_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/tutorial/tutorial_10-11_final.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/img/tutorial/xhr_service_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/angular/1.1.3/docs/img/tutorial/xhr_service_final.png -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/offline.html: -------------------------------------------------------------------------------- 1 |

OFFLINE

2 | 3 |

This page is currently unavailable because your are offline.

4 |

Please connect to the Internet and reload the page.

5 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/AUTO.html: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 |

Implicit module which gets automatically added to each $injector.

5 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/angular.extend.html: -------------------------------------------------------------------------------- 1 |

angular.extend 2 | (API in module ng 3 | ) 4 |

5 |

Description

6 |

Extends the destination object dst by copying all of the properties from the src object(s) 7 | to dst. You can specify multiple src objects.

8 |

Usage

9 |
angular.extend(dst, src);
10 |

Parameters

11 |
  • dst – {Object} – 12 |

    Destination object.

  • 13 |
  • src – {...Object} – 14 |

    Source object(s).

  • 15 |
16 |
17 |
18 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/angular.fromJson.html: -------------------------------------------------------------------------------- 1 |

angular.fromJson 2 | (API in module ng 3 | ) 4 |

5 |

Description

6 |

Deserializes a JSON string.

7 |

Usage

8 |
angular.fromJson(json);
9 |

Parameters

10 |
  • json – {string} – 11 |

    JSON string to deserialize.

  • 12 |
13 |

Returns

14 |
{Object|Array|Date|string|number} 15 | –

Deserialized thingy.

16 |
17 |
18 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/angular.identity.html: -------------------------------------------------------------------------------- 1 |

angular.identity 2 | (API in module ng 3 | ) 4 |

5 |

Description

6 |

A function that returns its first argument. This function is useful when writing code in the 7 | functional style.

8 | 9 |
10 |      function transformer(transformationFn, value) {
11 |        return (transformationFn || identity)(value);
12 |      };
13 |    
14 |

Usage

15 |
angular.identity();
16 |
17 |
18 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/angular.isArray.html: -------------------------------------------------------------------------------- 1 |

angular.isArray 2 | (API in module ng 3 | ) 4 |

5 |

Description

6 |

Determines if a reference is an Array.

7 |

Usage

8 |
angular.isArray(value);
9 |

Parameters

10 |
  • value – {*} – 11 |

    Reference to check.

  • 12 |
13 |

Returns

14 |
{boolean} 15 | –

True if value is an Array.

16 |
17 |
18 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/angular.isDate.html: -------------------------------------------------------------------------------- 1 |

angular.isDate 2 | (API in module ng 3 | ) 4 |

5 |

Description

6 |

Determines if a value is a date.

7 |

Usage

8 |
angular.isDate(value);
9 |

Parameters

10 |
  • value – {*} – 11 |

    Reference to check.

  • 12 |
13 |

Returns

14 |
{boolean} 15 | –

True if value is a Date.

16 |
17 |
18 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/angular.isDefined.html: -------------------------------------------------------------------------------- 1 |

angular.isDefined 2 | (API in module ng 3 | ) 4 |

5 |

Description

6 |

Determines if a reference is defined.

7 |

Usage

8 |
angular.isDefined(value);
9 |

Parameters

10 |
  • value – {*} – 11 |

    Reference to check.

  • 12 |
13 |

Returns

14 |
{boolean} 15 | –

True if value is defined.

16 |
17 |
18 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/angular.isElement.html: -------------------------------------------------------------------------------- 1 |

angular.isElement 2 | (API in module ng 3 | ) 4 |

5 |

Description

6 |

Determines if a reference is a DOM element (or wrapped jQuery element).

7 |

Usage

8 |
angular.isElement(value);
9 |

Parameters

10 |
  • value – {*} – 11 |

    Reference to check.

  • 12 |
13 |

Returns

14 |
{boolean} 15 | –

True if value is a DOM element (or wrapped jQuery element).

16 |
17 |
18 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/angular.isFunction.html: -------------------------------------------------------------------------------- 1 |

angular.isFunction 2 | (API in module ng 3 | ) 4 |

5 |

Description

6 |

Determines if a reference is a Function.

7 |

Usage

8 |
angular.isFunction(value);
9 |

Parameters

10 |
  • value – {*} – 11 |

    Reference to check.

  • 12 |
13 |

Returns

14 |
{boolean} 15 | –

True if value is a Function.

16 |
17 |
18 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/angular.isNumber.html: -------------------------------------------------------------------------------- 1 |

angular.isNumber 2 | (API in module ng 3 | ) 4 |

5 |

Description

6 |

Determines if a reference is a Number.

7 |

Usage

8 |
angular.isNumber(value);
9 |

Parameters

10 |
  • value – {*} – 11 |

    Reference to check.

  • 12 |
13 |

Returns

14 |
{boolean} 15 | –

True if value is a Number.

16 |
17 |
18 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/angular.isObject.html: -------------------------------------------------------------------------------- 1 |

angular.isObject 2 | (API in module ng 3 | ) 4 |

5 |

Description

6 |

Determines if a reference is an Object. Unlike typeof in JavaScript, nulls are not 7 | considered to be objects.

8 |

Usage

9 |
angular.isObject(value);
10 |

Parameters

11 |
  • value – {*} – 12 |

    Reference to check.

  • 13 |
14 |

Returns

15 |
{boolean} 16 | –

True if value is an Object but not null.

17 |
18 |
19 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/angular.isString.html: -------------------------------------------------------------------------------- 1 |

angular.isString 2 | (API in module ng 3 | ) 4 |

5 |

Description

6 |

Determines if a reference is a String.

7 |

Usage

8 |
angular.isString(value);
9 |

Parameters

10 |
  • value – {*} – 11 |

    Reference to check.

  • 12 |
13 |

Returns

14 |
{boolean} 15 | –

True if value is a String.

16 |
17 |
18 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/angular.isUndefined.html: -------------------------------------------------------------------------------- 1 |

angular.isUndefined 2 | (API in module ng 3 | ) 4 |

5 |

Description

6 |

Determines if a reference is undefined.

7 |

Usage

8 |
angular.isUndefined(value);
9 |

Parameters

10 |
  • value – {*} – 11 |

    Reference to check.

  • 12 |
13 |

Returns

14 |
{boolean} 15 | –

True if value is undefined.

16 |
17 |
18 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/angular.lowercase.html: -------------------------------------------------------------------------------- 1 |

angular.lowercase 2 | (API in module ng 3 | ) 4 |

5 |

Description

6 |

Converts the specified string to lowercase.

7 |

Usage

8 |
angular.lowercase(string);
9 |

Parameters

10 |
  • string – {string} – 11 |

    String to be converted to lowercase.

  • 12 |
13 |

Returns

14 |
{string} 15 | –

Lowercased string.

16 |
17 |
18 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/angular.mock.html: -------------------------------------------------------------------------------- 1 |

angular.mock 2 | (API in module ng 3 | ) 4 |

5 |

Namespace from 'angular-mocks.js' which contains testing related code.

6 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/angular.noConflict.html: -------------------------------------------------------------------------------- 1 |

angular.noConflict 2 | (API in module ng 3 | ) 4 |

5 |

Description

6 |

Restores the previous global value of angular and returns the current instance. Other libraries may already use the 7 | angular namespace. Or a previous version of angular is already loaded on the page. In these cases you may want to 8 | restore the previous namespace and keep a reference to angular.

9 |

Usage

10 |
angular.noConflict();
11 |

Returns

12 |
{Object} 13 | –

The current angular namespace

14 |
15 |
16 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/angular.noop.html: -------------------------------------------------------------------------------- 1 |

angular.noop 2 | (API in module ng 3 | ) 4 |

5 |

Description

6 |

A function that performs no operations. This function can be useful when writing code in the 7 | functional style. 8 |

 9 |      function foo(callback) {
10 |        var result = calculateResult();
11 |        (callback || angular.noop)(result);
12 |      }
13 |    
14 |

Usage

15 |
angular.noop();
16 |
17 |
18 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/angular.toJson.html: -------------------------------------------------------------------------------- 1 |

angular.toJson 2 | (API in module ng 3 | ) 4 |

5 |

Description

6 |

Serializes input into a JSON-formatted string.

7 |

Usage

8 |
angular.toJson(obj[, pretty]);
9 |

Parameters

10 |
  • obj – {Object|Array|Date|string|number} – 11 |

    Input to be serialized into JSON.

  • 12 |
  • pretty(optional) – {boolean=} – 13 |

    If set to true, the JSON output will contain newlines and whitespace.

  • 14 |
15 |

Returns

16 |
{string} 17 | –

Jsonified string representing obj.

18 |
19 |
20 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/angular.uppercase.html: -------------------------------------------------------------------------------- 1 |

angular.uppercase 2 | (API in module ng 3 | ) 4 |

5 |

Description

6 |

Converts the specified string to uppercase.

7 |

Usage

8 |
angular.uppercase(string);
9 |

Parameters

10 |
  • string – {string} – 11 |

    String to be converted to uppercase.

  • 12 |
13 |

Returns

14 |
{string} 15 | –

Uppercased string.

16 |
17 |
18 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/angular.version.html: -------------------------------------------------------------------------------- 1 |

angular.version 2 | (API in module ng 3 | ) 4 |

5 |

Description

6 |

An object that contains information about the current AngularJS version. This object has the 7 | following properties:

8 | 9 |
    10 |
  • full{string} – Full version string, such as "0.9.18".
  • 11 |
  • major{number} – Major version number, such as "0".
  • 12 |
  • minor{number} – Minor version number, such as "9".
  • 13 |
  • dot{number} – Dot version number, such as "18".
  • 14 |
  • codeName{string} – Code name of the release, such as "jiggling-armfat".
  • 15 |
16 |

Usage

17 |
angular.version
18 |
19 |
20 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/index.html: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 |

Use the API Reference documentation when you need more information about a specific feature. Check out 5 | Developer Guide for AngularJS concepts. If you are new to AngularJS we recommend the 6 | Tutorial.

7 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/ng.$document.html: -------------------------------------------------------------------------------- 1 |

$document 2 | (service in module ng 3 | ) 4 |

5 |

Description

6 |

A jQuery (lite)-wrapped reference to the browser's window.document 7 | element.

8 |

Dependencies

9 | 12 |
13 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/ng.$filter.html: -------------------------------------------------------------------------------- 1 |

$filter 2 | (service in module ng 3 | ) 4 |

5 |

Description

6 |

Filters are used for formatting data displayed to the user.

7 | 8 |

The general syntax in templates is as follows:

9 | 10 |
    {{ expression | [ filter_name ] }}
11 | 
12 |

Usage

13 |
$filter(name);
14 |

Parameters

15 |
  • name – {String} – 16 |

    Name of the filter function to retrieve

  • 17 |
18 |

Returns

19 |
{Function} 20 | –

the filter function

21 |
22 |
23 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/ng.$locale.html: -------------------------------------------------------------------------------- 1 |

$locale 2 | (service in module ng 3 | ) 4 |

5 |

Description

6 |

$locale service provides localization rules for various Angular components. As of right now the 7 | only public api is:

8 | 9 |
    10 |
  • id{string} – locale id formatted as languageId-countryId (e.g. en-us)
  • 11 |
12 |
13 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/ng.$logProvider.html: -------------------------------------------------------------------------------- 1 |

$logProvider 2 | (service in module ng 3 | ) 4 |

5 |

Description

6 |

Use the $logProvider to configure how the application logs messages

7 |

Methods

8 |
  • debugEnabled(flag)

    9 |

    Parameters

    10 |
    • flag(optional) – {string=} – 11 |

      enable or disable debug level messages

    • 12 |
    13 |

    Returns

    14 |
    {*} 15 | –

    current value if used as getter or itself (chaining) if used as setter

    16 |
    17 |
  • 18 |
19 |
20 |
21 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/ng.$rootElement.html: -------------------------------------------------------------------------------- 1 |

$rootElement 2 | (service in module ng 3 | ) 4 |

5 |

The root element of Angular application. This is either the element where ngApp was declared or the element passed into 6 | angular.bootstrap. The element represent the root element of application. It is also the 7 | location where the applications $injector service gets 8 | published, it can be retrieved using $rootElement.injector().

9 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/ng.$rootScope.html: -------------------------------------------------------------------------------- 1 |

$rootScope 2 | (service in module ng 3 | ) 4 |

5 |

Description

6 |

Every application has a single root scope. 7 | All other scopes are child scopes of the root scope. Scopes provide mechanism for watching the model and provide 8 | event processing life-cycle. See developer guide on scopes.

9 |
10 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/ng.$rootScopeProvider.html: -------------------------------------------------------------------------------- 1 |

$rootScopeProvider 2 | (service in module ng 3 | ) 4 |

5 |

Description

6 |

Provider for the $rootScope service.

7 |

Methods

8 |
  • digestTtl(limit)

    9 |

    Sets the number of digest iteration the scope should attempt to execute before giving up and 10 | assuming that the model is unstable.

    11 | 12 |

    The current default is 10 iterations.

    Parameters

    13 |
    • limit – {number} – 14 |

      The number of digest iterations.

    • 15 |
    16 |
    17 |
  • 18 |
19 |
20 |
21 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/ng.$templateCache.html: -------------------------------------------------------------------------------- 1 |

$templateCache 2 | (service in module ng 3 | ) 4 |

5 |

Description

6 |

Cache used for storing html templates.

7 | 8 |

See $cacheFactory.

9 |
10 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/ng.directive_a.html: -------------------------------------------------------------------------------- 1 |

a 2 | (directive in module ng 3 | ) 4 |

5 |

Description

6 |

Modifies the default behavior of html A tag, so that the default action is prevented when href 7 | attribute is empty.

8 | 9 |

The reasoning for this change is to allow easy creation of action links with ngClick directive 10 | without changing the location or causing page reloads, e.g.: 11 | <a href="" ng-click="model.$save()">Save</a>

12 |

Usage

13 |
This directive can be used as custom element, but we aware of IE restrictions.as element:
<a>
14 | </a>
15 |
16 |
17 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/ng.filter_lowercase.html: -------------------------------------------------------------------------------- 1 |

lowercase 2 | (filter in module ng 3 | ) 4 |

5 |

Description

6 |

Converts string to lowercase.

7 |

Usage

8 |

In HTML Template Binding

9 |
{{ lowercase_expression | lowercase }} 10 |
11 |

In JavaScript

12 |
$filter('lowercase')() 13 |
14 |
15 |
16 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/ng.filter_uppercase.html: -------------------------------------------------------------------------------- 1 |

uppercase 2 | (filter in module ng 3 | ) 4 |

5 |

Description

6 |

Converts string to uppercase.

7 |

Usage

8 |

In HTML Template Binding

9 |
{{ uppercase_expression | uppercase }} 10 |
11 |

In JavaScript

12 |
$filter('uppercase')() 13 |
14 |
15 |
16 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/ng.html: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 |

The ng is an angular module which contains all of the core angular services.

5 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/ngCookies.html: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 |
5 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/ngMock.$timeout.html: -------------------------------------------------------------------------------- 1 |

$timeout 2 | (service in module ngMock 3 | ) 4 |

5 |

Description

6 |

This service is just a simple decorator for $timeout service 7 | that adds a "flush" and "verifyNoPendingTasks" methods.

8 |

Usage

9 |
$timeout();
10 |
11 |

Methods

12 |
  • flush()

    13 |

    Flushes the queue of pending tasks.

    14 |
  • 15 |
  • verifyNoPendingTasks()

    16 |

    Verifies that there are no pending tasks that need to be flushed.

    17 |
  • 18 |
19 |
20 |
21 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/ngMock.html: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 |

The ngMock is an angular module which is used with ng module and adds unit-test configuration as well as useful 5 | mocks to the $injector.

6 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/ngMockE2E.html: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 |

The ngMockE2E is an angular module which contains mocks suitable for end-to-end testing. 5 | Currently there is only one mock present in this module - 6 | the e2e $httpBackend mock.

7 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/ngResource.html: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 |
5 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/api/ngSanitize.html: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 |
5 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/guide/dev_guide.templates.filters.html: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 |

Angular filters format data for display to the user.

5 | 6 |

For example, you might have a data object that needs to be formatted according to the locale before 7 | displaying it to the user. You can pass expressions through a chain of filters like this:

8 | 9 |
    name | uppercase
10 | 
11 | 12 |

The expression evaluator simply passes the value of name to 13 | uppercase filter.

14 | 15 |

Related Topics

16 | 17 | 21 | 22 |

Related API

23 | 24 |
27 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/guide/index.html: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 |

Welcome to the angular Developer Guide. If you are here to learn the details of how to use angular 5 | to develop web apps, you've come to the right place.

6 | 7 |

If you are completely or relatively unfamiliar with angular, you may want to check out one or both 8 | of the following documents before returning here to the Developer Guide:

9 | 10 |
14 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/partials/guide/type.html: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 |
5 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/docs/robots.txt: -------------------------------------------------------------------------------- 1 | Sitemap: http://docs.angularjs.org/sitemap.xml 2 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/version.json: -------------------------------------------------------------------------------- 1 | { 2 | "full": "1.1.3", 3 | "major": "1", 4 | "minor": "1", 5 | "dot": "3", 6 | "codename": "radioactive-gargle" 7 | } 8 | -------------------------------------------------------------------------------- /public/libs/angular/1.1.3/version.txt: -------------------------------------------------------------------------------- 1 | 1.1.3 2 | -------------------------------------------------------------------------------- /public/libs/bootstrap-ui/0.1.0/template/accordion/accordion-group.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |
5 |
-------------------------------------------------------------------------------- /public/libs/bootstrap-ui/0.1.0/template/accordion/accordion.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /public/libs/bootstrap-ui/0.1.0/template/alert/alert.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |
-------------------------------------------------------------------------------- /public/libs/bootstrap-ui/0.1.0/template/carousel/carousel.html: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /public/libs/bootstrap-ui/0.1.0/template/carousel/slide.html: -------------------------------------------------------------------------------- 1 |
8 | -------------------------------------------------------------------------------- /public/libs/bootstrap-ui/0.1.0/template/dialog/message.html: -------------------------------------------------------------------------------- 1 | 4 | 7 | 10 | -------------------------------------------------------------------------------- /public/libs/bootstrap-ui/0.1.0/template/pagination/pagination.html: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /public/libs/bootstrap-ui/0.1.0/template/popover/popover.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 |

6 |
7 |
8 |
9 | -------------------------------------------------------------------------------- /public/libs/bootstrap-ui/0.1.0/template/tabs/pane.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /public/libs/bootstrap-ui/0.1.0/template/tabs/tabs.html: -------------------------------------------------------------------------------- 1 |
2 | 7 |
8 |
9 | -------------------------------------------------------------------------------- /public/libs/bootstrap-ui/0.1.0/template/tooltip/tooltip-popup.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | -------------------------------------------------------------------------------- /public/libs/bootstrap-ui/0.2.0/template/accordion/accordion-group.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |
5 |
-------------------------------------------------------------------------------- /public/libs/bootstrap-ui/0.2.0/template/accordion/accordion.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /public/libs/bootstrap-ui/0.2.0/template/alert/alert.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |
-------------------------------------------------------------------------------- /public/libs/bootstrap-ui/0.2.0/template/carousel/carousel.html: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /public/libs/bootstrap-ui/0.2.0/template/carousel/slide.html: -------------------------------------------------------------------------------- 1 |
8 | -------------------------------------------------------------------------------- /public/libs/bootstrap-ui/0.2.0/template/dialog/message.html: -------------------------------------------------------------------------------- 1 | 4 | 7 | 10 | -------------------------------------------------------------------------------- /public/libs/bootstrap-ui/0.2.0/template/pagination/pagination.html: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /public/libs/bootstrap-ui/0.2.0/template/popover/popover.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 |

6 |
7 |
8 |
9 | -------------------------------------------------------------------------------- /public/libs/bootstrap-ui/0.2.0/template/progressbar/bar.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /public/libs/bootstrap-ui/0.2.0/template/progressbar/progress.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /public/libs/bootstrap-ui/0.2.0/template/tabs/pane.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /public/libs/bootstrap-ui/0.2.0/template/tabs/tabs.html: -------------------------------------------------------------------------------- 1 |
2 | 7 |
8 |
9 | -------------------------------------------------------------------------------- /public/libs/bootstrap-ui/0.2.0/template/tooltip/tooltip-popup.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | -------------------------------------------------------------------------------- /public/libs/bootstrap-ui/0.2.0/template/typeahead/typeahead.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/libs/bootstrap/2.1.1/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/bootstrap/2.1.1/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /public/libs/bootstrap/2.1.1/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/bootstrap/2.1.1/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /public/libs/bootstrap/2.3.1/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/bootstrap/2.3.1/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /public/libs/bootstrap/2.3.1/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/bootstrap/2.3.1/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /public/libs/codemirror/3.1/.gitattributes: -------------------------------------------------------------------------------- 1 | *.txt text 2 | *.js text 3 | *.html text 4 | *.md text 5 | *.json text 6 | *.yml text 7 | *.css text 8 | *.svg text 9 | -------------------------------------------------------------------------------- /public/libs/codemirror/3.1/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /npm-debug.log 3 | test.html 4 | -------------------------------------------------------------------------------- /public/libs/codemirror/3.1/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | -------------------------------------------------------------------------------- /public/libs/codemirror/3.1/README.md: -------------------------------------------------------------------------------- 1 | # CodeMirror [![Build Status](https://secure.travis-ci.org/marijnh/CodeMirror.png?branch=master)](http://travis-ci.org/marijnh/CodeMirror) 2 | 3 | CodeMirror is a JavaScript component that provides a code editor in 4 | the browser. When a mode is available for the language you are coding 5 | in, it will color your code, and optionally help with indentation. 6 | 7 | The project page is http://codemirror.net 8 | The manual is at http://codemirror.net/doc/manual.html 9 | The contributing guidelines are in [CONTRIBUTING.md](https://github.com/marijnh/CodeMirror/blob/master/CONTRIBUTING.md) 10 | -------------------------------------------------------------------------------- /public/libs/codemirror/3.1/addon/dialog/dialog.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-dialog { 2 | position: absolute; 3 | left: 0; right: 0; 4 | background: white; 5 | z-index: 15; 6 | padding: .1em .8em; 7 | overflow: hidden; 8 | color: #333; 9 | } 10 | 11 | .CodeMirror-dialog-top { 12 | border-bottom: 1px solid #eee; 13 | top: 0; 14 | } 15 | 16 | .CodeMirror-dialog-bottom { 17 | border-top: 1px solid #eee; 18 | bottom: 0; 19 | } 20 | 21 | .CodeMirror-dialog input { 22 | border: none; 23 | outline: none; 24 | background: transparent; 25 | width: 20em; 26 | color: inherit; 27 | font-family: monospace; 28 | } 29 | 30 | .CodeMirror-dialog button { 31 | font-size: 70%; 32 | } 33 | -------------------------------------------------------------------------------- /public/libs/codemirror/3.1/addon/hint/show-hint.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-hints { 2 | position: absolute; 3 | z-index: 10; 4 | overflow: hidden; 5 | list-style: none; 6 | 7 | margin: 0; 8 | padding: 2px; 9 | 10 | -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2); 11 | -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2); 12 | box-shadow: 2px 3px 5px rgba(0,0,0,.2); 13 | border-radius: 3px; 14 | border: 1px solid silver; 15 | 16 | background: white; 17 | font-size: 90%; 18 | font-family: monospace; 19 | 20 | max-height: 20em; 21 | overflow-y: auto; 22 | } 23 | 24 | .CodeMirror-hint { 25 | margin: 0; 26 | padding: 0 4px; 27 | border-radius: 2px; 28 | max-width: 19em; 29 | overflow: hidden; 30 | white-space: pre; 31 | color: black; 32 | cursor: pointer; 33 | } 34 | 35 | .CodeMirror-hint-active { 36 | background: #08f; 37 | color: white; 38 | } 39 | -------------------------------------------------------------------------------- /public/libs/codemirror/3.1/addon/hint/simple-hint.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-completions { 2 | position: absolute; 3 | z-index: 10; 4 | overflow: hidden; 5 | -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2); 6 | -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2); 7 | box-shadow: 2px 3px 5px rgba(0,0,0,.2); 8 | } 9 | .CodeMirror-completions select { 10 | background: #fafafa; 11 | outline: none; 12 | border: none; 13 | padding: 0; 14 | margin: 0; 15 | font-family: monospace; 16 | } 17 | -------------------------------------------------------------------------------- /public/libs/codemirror/3.1/addon/lint/json-lint.js: -------------------------------------------------------------------------------- 1 | // Depends on jsonlint.js from https://github.com/zaach/jsonlint 2 | 3 | CodeMirror.jsonValidator = function(text) { 4 | var found = []; 5 | jsonlint.parseError = function(str, hash) { 6 | var loc = hash.loc; 7 | found.push({from: CodeMirror.Pos(loc.first_line - 1, loc.first_column), 8 | to: CodeMirror.Pos(loc.last_line - 1, loc.last_column), 9 | message: str}); 10 | }; 11 | try { jsonlint.parse(text); } 12 | catch(e) {} 13 | return found; 14 | }; 15 | -------------------------------------------------------------------------------- /public/libs/codemirror/3.1/addon/runmode/colorize.js: -------------------------------------------------------------------------------- 1 | CodeMirror.colorize = (function() { 2 | 3 | var isBlock = /^(p|li|div|h\\d|pre|blockquote|td)$/; 4 | 5 | function textContent(node, out) { 6 | if (node.nodeType == 3) return out.push(node.nodeValue); 7 | for (var ch = node.firstChild; ch; ch = ch.nextSibling) { 8 | textContent(ch, out); 9 | if (isBlock.test(node.nodeType)) out.push("\n"); 10 | } 11 | } 12 | 13 | return function(collection, defaultMode) { 14 | if (!collection) collection = document.body.getElementsByTagName("pre"); 15 | 16 | for (var i = 0; i < collection.length; ++i) { 17 | var node = collection[i]; 18 | var mode = node.getAttribute("data-lang") || defaultMode; 19 | if (!mode) continue; 20 | 21 | var text = []; 22 | textContent(node, text); 23 | node.innerHTML = ""; 24 | CodeMirror.runMode(text.join(""), mode, node); 25 | 26 | node.className += " cm-s-default"; 27 | } 28 | }; 29 | })(); 30 | -------------------------------------------------------------------------------- /public/libs/codemirror/3.1/doc/baboon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/codemirror/3.1/doc/baboon.png -------------------------------------------------------------------------------- /public/libs/codemirror/3.1/mode/diff/diff.js: -------------------------------------------------------------------------------- 1 | CodeMirror.defineMode("diff", function() { 2 | 3 | var TOKEN_NAMES = { 4 | '+': 'positive', 5 | '-': 'negative', 6 | '@': 'meta' 7 | }; 8 | 9 | return { 10 | token: function(stream) { 11 | var tw_pos = stream.string.search(/[\t ]+?$/); 12 | 13 | if (!stream.sol() || tw_pos === 0) { 14 | stream.skipToEnd(); 15 | return ("error " + ( 16 | TOKEN_NAMES[stream.string.charAt(0)] || '')).replace(/ $/, ''); 17 | } 18 | 19 | var token_name = TOKEN_NAMES[stream.peek()] || stream.skipToEnd(); 20 | 21 | if (tw_pos === -1) { 22 | stream.skipToEnd(); 23 | } else { 24 | stream.pos = tw_pos; 25 | } 26 | 27 | return token_name; 28 | } 29 | }; 30 | }); 31 | 32 | CodeMirror.defineMIME("text/x-diff", "diff"); 33 | -------------------------------------------------------------------------------- /public/libs/codemirror/3.1/mode/rpm/changes/changes.js: -------------------------------------------------------------------------------- 1 | CodeMirror.defineMode("changes", function() { 2 | var headerSeperator = /^-+$/; 3 | var headerLine = /^(Mon|Tue|Wed|Thu|Fri|Sat|Sun) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) ?\d{1,2} \d{2}:\d{2}(:\d{2})? [A-Z]{3,4} \d{4} - /; 4 | var simpleEmail = /^[\w+.-]+@[\w.-]+/; 5 | 6 | return { 7 | token: function(stream) { 8 | if (stream.sol()) { 9 | if (stream.match(headerSeperator)) { return 'tag'; } 10 | if (stream.match(headerLine)) { return 'tag'; } 11 | } 12 | if (stream.match(simpleEmail)) { return 'string'; } 13 | stream.next(); 14 | return null; 15 | } 16 | }; 17 | }); 18 | 19 | CodeMirror.defineMIME("text/x-rpm-changes", "changes"); 20 | -------------------------------------------------------------------------------- /public/libs/codemirror/3.1/mode/rpm/spec/spec.css: -------------------------------------------------------------------------------- 1 | .cm-s-default span.cm-preamble {color: #b26818; font-weight: bold;} 2 | .cm-s-default span.cm-macro {color: #b218b2;} 3 | .cm-s-default span.cm-section {color: green; font-weight: bold;} 4 | .cm-s-default span.cm-script {color: red;} 5 | .cm-s-default span.cm-issue {color: yellow;} 6 | -------------------------------------------------------------------------------- /public/libs/codemirror/3.1/mode/tiddlywiki/tiddlywiki.css: -------------------------------------------------------------------------------- 1 | span.cm-underlined { 2 | text-decoration: underline; 3 | } 4 | span.cm-strikethrough { 5 | text-decoration: line-through; 6 | } 7 | span.cm-brace { 8 | color: #170; 9 | font-weight: bold; 10 | } 11 | span.cm-table { 12 | color: blue; 13 | font-weight: bold; 14 | } 15 | -------------------------------------------------------------------------------- /public/libs/codemirror/3.1/mode/tiki/tiki.css: -------------------------------------------------------------------------------- 1 | .cm-tw-syntaxerror { 2 | color: #FFFFFF; 3 | background-color: #990000; 4 | } 5 | 6 | .cm-tw-deleted { 7 | text-decoration: line-through; 8 | } 9 | 10 | .cm-tw-header5 { 11 | font-weight: bold; 12 | } 13 | .cm-tw-listitem:first-child { /*Added first child to fix duplicate padding when highlighting*/ 14 | padding-left: 10px; 15 | } 16 | 17 | .cm-tw-box { 18 | border-top-width: 0px ! important; 19 | border-style: solid; 20 | border-width: 1px; 21 | border-color: inherit; 22 | } 23 | 24 | .cm-tw-underline { 25 | text-decoration: underline; 26 | } -------------------------------------------------------------------------------- /public/libs/codemirror/3.1/mode/vbscript/vbscript.js: -------------------------------------------------------------------------------- 1 | CodeMirror.defineMode("vbscript", function() { 2 | var regexVBScriptKeyword = /^(?:Call|Case|CDate|Clear|CInt|CLng|Const|CStr|Description|Dim|Do|Each|Else|ElseIf|End|Err|Error|Exit|False|For|Function|If|LCase|Loop|LTrim|Next|Nothing|Now|Number|On|Preserve|Quit|ReDim|Resume|RTrim|Select|Set|Sub|Then|To|Trim|True|UBound|UCase|Until|VbCr|VbCrLf|VbLf|VbTab)$/im; 3 | 4 | return { 5 | token: function(stream) { 6 | if (stream.eatSpace()) return null; 7 | var ch = stream.next(); 8 | if (ch == "'") { 9 | stream.skipToEnd(); 10 | return "comment"; 11 | } 12 | if (ch == '"') { 13 | stream.skipTo('"'); 14 | return "string"; 15 | } 16 | 17 | if (/\w/.test(ch)) { 18 | stream.eatWhile(/\w/); 19 | if (regexVBScriptKeyword.test(stream.current())) return "keyword"; 20 | } 21 | return null; 22 | } 23 | }; 24 | }); 25 | 26 | CodeMirror.defineMIME("text/vbscript", "vbscript"); 27 | -------------------------------------------------------------------------------- /public/libs/codemirror/3.1/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "codemirror", 3 | "version":"3.10.00", 4 | "main": "codemirror.js", 5 | "description": "In-browser code editing made bearable", 6 | "licenses": [{"type": "MIT", 7 | "url": "http://codemirror.net/LICENSE"}], 8 | "directories": {"lib": "./lib"}, 9 | "scripts": {"test": "node ./test/run.js"}, 10 | "devDependencies": {"node-static": "0.6.0"}, 11 | "bugs": "http://github.com/marijnh/CodeMirror/issues", 12 | "keywords": ["JavaScript", "CodeMirror", "Editor"], 13 | "homepage": "http://codemirror.net", 14 | "maintainers":[{"name": "Marijn Haverbeke", 15 | "email": "marijnh@gmail.com", 16 | "web": "http://marijnhaverbeke.nl"}], 17 | "repositories": [{"type": "git", 18 | "url": "http://marijnhaverbeke.nl/git/codemirror"}, 19 | {"type": "git", 20 | "url": "https://github.com/marijnh/CodeMirror.git"}] 21 | } 22 | -------------------------------------------------------------------------------- /public/libs/codemirror/3.1/test/mode_test.css: -------------------------------------------------------------------------------- 1 | .mt-output .mt-token { 2 | border: 1px solid #ddd; 3 | white-space: pre; 4 | font-family: "Consolas", monospace; 5 | text-align: center; 6 | } 7 | 8 | .mt-output .mt-style { 9 | font-size: x-small; 10 | } 11 | -------------------------------------------------------------------------------- /public/libs/codemirror/3.1/test/run.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var lint = require("./lint/lint"); 4 | 5 | lint.checkDir("mode"); 6 | lint.checkDir("lib"); 7 | lint.checkDir("addon"); 8 | 9 | var ok = lint.success(); 10 | 11 | var files = new (require('node-static').Server)('.'); 12 | 13 | var server = require('http').createServer(function (req, res) { 14 | req.addListener('end', function () { 15 | files.serve(req, res); 16 | }); 17 | }).addListener('error', function (err) { 18 | throw err; 19 | }).listen(3000, function () { 20 | var child_process = require('child_process'); 21 | child_process.exec("which phantomjs", function (err) { 22 | if (err) { 23 | console.error("PhantomJS is not installed. Download from http://phantomjs.org"); 24 | process.exit(1); 25 | } 26 | var cmd = 'phantomjs test/phantom_driver.js'; 27 | child_process.exec(cmd, function (err, stdout) { 28 | server.close(); 29 | console.log(stdout); 30 | process.exit(err || !ok ? 1 : 0); 31 | }); 32 | }); 33 | }); 34 | -------------------------------------------------------------------------------- /public/libs/codemirror/3.1/theme/ambiance-mobile.css: -------------------------------------------------------------------------------- 1 | .cm-s-ambiance.CodeMirror { 2 | -webkit-box-shadow: none; 3 | -moz-box-shadow: none; 4 | -o-box-shadow: none; 5 | box-shadow: none; 6 | } 7 | -------------------------------------------------------------------------------- /public/libs/codemirror/3.1/theme/elegant.css: -------------------------------------------------------------------------------- 1 | .cm-s-elegant span.cm-number, .cm-s-elegant span.cm-string, .cm-s-elegant span.cm-atom {color: #762;} 2 | .cm-s-elegant span.cm-comment {color: #262; font-style: italic; line-height: 1em;} 3 | .cm-s-elegant span.cm-meta {color: #555; font-style: italic; line-height: 1em;} 4 | .cm-s-elegant span.cm-variable {color: black;} 5 | .cm-s-elegant span.cm-variable-2 {color: #b11;} 6 | .cm-s-elegant span.cm-qualifier {color: #555;} 7 | .cm-s-elegant span.cm-keyword {color: #730;} 8 | .cm-s-elegant span.cm-builtin {color: #30a;} 9 | .cm-s-elegant span.cm-error {background-color: #fdd;} 10 | .cm-s-elegant span.cm-link {color: #762;} 11 | -------------------------------------------------------------------------------- /public/libs/codemirror/3.1/theme/neat.css: -------------------------------------------------------------------------------- 1 | .cm-s-neat span.cm-comment { color: #a86; } 2 | .cm-s-neat span.cm-keyword { line-height: 1em; font-weight: bold; color: blue; } 3 | .cm-s-neat span.cm-string { color: #a22; } 4 | .cm-s-neat span.cm-builtin { line-height: 1em; font-weight: bold; color: #077; } 5 | .cm-s-neat span.cm-special { line-height: 1em; font-weight: bold; color: #0aa; } 6 | .cm-s-neat span.cm-variable { color: black; } 7 | .cm-s-neat span.cm-number, .cm-s-neat span.cm-atom { color: #3a3; } 8 | .cm-s-neat span.cm-meta {color: #555;} 9 | .cm-s-neat span.cm-link { color: #3a3; } 10 | -------------------------------------------------------------------------------- /public/libs/flot/0.7/Makefile: -------------------------------------------------------------------------------- 1 | # Makefile for generating minified files 2 | 3 | .PHONY: all 4 | 5 | # we cheat and process all .js files instead of an exhaustive list 6 | all: $(patsubst %.js,%.min.js,$(filter-out %.min.js,$(wildcard *.js))) 7 | 8 | %.min.js: %.js 9 | yui-compressor $< -o $@ 10 | -------------------------------------------------------------------------------- /public/libs/flot/0.7/examples/arrow-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/flot/0.7/examples/arrow-down.gif -------------------------------------------------------------------------------- /public/libs/flot/0.7/examples/arrow-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/flot/0.7/examples/arrow-left.gif -------------------------------------------------------------------------------- /public/libs/flot/0.7/examples/arrow-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/flot/0.7/examples/arrow-right.gif -------------------------------------------------------------------------------- /public/libs/flot/0.7/examples/arrow-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/flot/0.7/examples/arrow-up.gif -------------------------------------------------------------------------------- /public/libs/flot/0.7/examples/data-eu-gdp-growth-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9]] 4 | } 5 | -------------------------------------------------------------------------------- /public/libs/flot/0.7/examples/data-eu-gdp-growth-2.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2]] 4 | } 5 | -------------------------------------------------------------------------------- /public/libs/flot/0.7/examples/data-eu-gdp-growth-3.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5]] 4 | } 5 | -------------------------------------------------------------------------------- /public/libs/flot/0.7/examples/data-eu-gdp-growth-4.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1]] 4 | } 5 | -------------------------------------------------------------------------------- /public/libs/flot/0.7/examples/data-eu-gdp-growth-5.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1], [2007, 2.9], [2008, 0.9]] 4 | } 5 | -------------------------------------------------------------------------------- /public/libs/flot/0.7/examples/data-eu-gdp-growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1], [2007, 2.9], [2008, 0.9]] 4 | } 5 | -------------------------------------------------------------------------------- /public/libs/flot/0.7/examples/data-japan-gdp-growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Japan", 3 | "data": [[1999, -0.1], [2000, 2.9], [2001, 0.2], [2002, 0.3], [2003, 1.4], [2004, 2.7], [2005, 1.9], [2006, 2.0], [2007, 2.3], [2008, -0.7]] 4 | } 5 | -------------------------------------------------------------------------------- /public/libs/flot/0.7/examples/data-usa-gdp-growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "USA", 3 | "data": [[1999, 4.4], [2000, 3.7], [2001, 0.8], [2002, 1.6], [2003, 2.5], [2004, 3.6], [2005, 2.9], [2006, 2.8], [2007, 2.0], [2008, 1.1]] 4 | } 5 | -------------------------------------------------------------------------------- /public/libs/flot/0.7/examples/hs-2004-27-a-large_web.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/flot/0.7/examples/hs-2004-27-a-large_web.jpg -------------------------------------------------------------------------------- /public/libs/flot/0.7/examples/layout.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: sans-serif; 3 | font-size: 16px; 4 | margin: 50px; 5 | max-width: 800px; 6 | } 7 | -------------------------------------------------------------------------------- /public/libs/font-awesome/3.0/.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/libs/font-awesome/3.0/README.md: -------------------------------------------------------------------------------- 1 | #Font Awesome 3.0.1 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 | -------------------------------------------------------------------------------- /public/libs/font-awesome/3.0/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/libs/font-awesome/3.0/docs/assets/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/font-awesome/3.0/docs/assets/font/FontAwesome.otf -------------------------------------------------------------------------------- /public/libs/font-awesome/3.0/docs/assets/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/font-awesome/3.0/docs/assets/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/libs/font-awesome/3.0/docs/assets/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/font-awesome/3.0/docs/assets/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/libs/font-awesome/3.0/docs/assets/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/font-awesome/3.0/docs/assets/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/libs/font-awesome/3.0/docs/assets/font/museo_slab_300-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/font-awesome/3.0/docs/assets/font/museo_slab_300-webfont.eot -------------------------------------------------------------------------------- /public/libs/font-awesome/3.0/docs/assets/font/museo_slab_300-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/font-awesome/3.0/docs/assets/font/museo_slab_300-webfont.ttf -------------------------------------------------------------------------------- /public/libs/font-awesome/3.0/docs/assets/font/museo_slab_500-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/font-awesome/3.0/docs/assets/font/museo_slab_500-webfont.eot -------------------------------------------------------------------------------- /public/libs/font-awesome/3.0/docs/assets/font/museo_slab_500-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/font-awesome/3.0/docs/assets/font/museo_slab_500-webfont.ttf -------------------------------------------------------------------------------- /public/libs/font-awesome/3.0/docs/assets/font/proximanova-sbold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/font-awesome/3.0/docs/assets/font/proximanova-sbold-webfont.eot -------------------------------------------------------------------------------- /public/libs/font-awesome/3.0/docs/assets/font/proximanova-sbold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/font-awesome/3.0/docs/assets/font/proximanova-sbold-webfont.ttf -------------------------------------------------------------------------------- /public/libs/font-awesome/3.0/docs/assets/font/proximanova-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/font-awesome/3.0/docs/assets/font/proximanova-webfont.eot -------------------------------------------------------------------------------- /public/libs/font-awesome/3.0/docs/assets/font/proximanova-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/font-awesome/3.0/docs/assets/font/proximanova-webfont.ttf -------------------------------------------------------------------------------- /public/libs/font-awesome/3.0/docs/assets/ico/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/font-awesome/3.0/docs/assets/ico/favicon.ico -------------------------------------------------------------------------------- /public/libs/font-awesome/3.0/docs/assets/img/contribution-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/font-awesome/3.0/docs/assets/img/contribution-sample.png -------------------------------------------------------------------------------- /public/libs/font-awesome/3.0/docs/assets/img/fort_awesome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/font-awesome/3.0/docs/assets/img/fort_awesome.jpg -------------------------------------------------------------------------------- /public/libs/font-awesome/3.0/docs/assets/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/font-awesome/3.0/docs/assets/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /public/libs/font-awesome/3.0/docs/assets/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/font-awesome/3.0/docs/assets/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /public/libs/font-awesome/3.0/docs/assets/img/icon-flag.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/font-awesome/3.0/docs/assets/img/icon-flag.pdf -------------------------------------------------------------------------------- /public/libs/font-awesome/3.0/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/libs/font-awesome/3.0/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/libs/font-awesome/3.0/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/libs/font-awesome/3.0/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/libs/font-awesome/3.0/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/libs/font-awesome/3.0/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/libs/font-awesome/3.0/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/libs/font-awesome/3.0/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/libs/font-awesome/3.0/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/libs/font-awesome/3.0/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/libs/font-awesome/3.0/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/libs/font-awesome/3.0/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/libs/font-awesome/3.0/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/font-awesome/3.0/font/FontAwesome.otf -------------------------------------------------------------------------------- /public/libs/font-awesome/3.0/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/font-awesome/3.0/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/libs/font-awesome/3.0/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/font-awesome/3.0/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/libs/font-awesome/3.0/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/font-awesome/3.0/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png -------------------------------------------------------------------------------- /public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-bg_flat_15_cd0a0a_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-bg_flat_15_cd0a0a_40x100.png -------------------------------------------------------------------------------- /public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-bg_glass_100_e4f1fb_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-bg_glass_100_e4f1fb_1x400.png -------------------------------------------------------------------------------- /public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-bg_glass_50_3baae3_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-bg_glass_50_3baae3_1x400.png -------------------------------------------------------------------------------- /public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-bg_glass_80_d7ebf9_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-bg_glass_80_d7ebf9_1x400.png -------------------------------------------------------------------------------- /public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png -------------------------------------------------------------------------------- /public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-bg_highlight-hard_70_000000_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-bg_highlight-hard_70_000000_1x100.png -------------------------------------------------------------------------------- /public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-bg_highlight-soft_100_deedf7_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-bg_highlight-soft_100_deedf7_1x100.png -------------------------------------------------------------------------------- /public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-bg_highlight-soft_25_ffef8f_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-bg_highlight-soft_25_ffef8f_1x100.png -------------------------------------------------------------------------------- /public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-icons_2694e8_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-icons_2694e8_256x240.png -------------------------------------------------------------------------------- /public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-icons_3d80b3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-icons_3d80b3_256x240.png -------------------------------------------------------------------------------- /public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-icons_72a7cf_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-icons_72a7cf_256x240.png -------------------------------------------------------------------------------- /public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/fullcalendar-1.5.3/demos/cupertino/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /public/libs/fullcalendar-1.5.3/demos/json-events.php: -------------------------------------------------------------------------------- 1 | 111, 10 | 'title' => "Event1", 11 | 'start' => "$year-$month-10", 12 | 'url' => "http://yahoo.com/" 13 | ), 14 | 15 | array( 16 | 'id' => 222, 17 | 'title' => "Event2", 18 | 'start' => "$year-$month-20", 19 | 'end' => "$year-$month-22", 20 | 'url' => "http://yahoo.com/" 21 | ) 22 | 23 | )); 24 | 25 | ?> 26 | -------------------------------------------------------------------------------- /public/libs/google-code-prettify/bootstrap-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 0px; /* IE indents via margin-left */ 24 | list-style: none outside none; 25 | } 26 | ol.linenums li { 27 | padding-left: 6px; 28 | color: #bebec5; 29 | line-height: 18px; 30 | text-shadow: 0 1px 0 #fff; 31 | } -------------------------------------------------------------------------------- /public/libs/google-code-prettify/lang-yaml.js: -------------------------------------------------------------------------------- 1 | // Contributed by ribrdb @ code.google.com 2 | 3 | /** 4 | * @fileoverview 5 | * Registers a language handler for YAML. 6 | * 7 | * @author ribrdb 8 | */ 9 | 10 | PR['registerLangHandler']( 11 | PR['createSimpleLexer']( 12 | [ 13 | [PR['PR_PUNCTUATION'], /^[:|>?]+/, null, ':|>?'], 14 | [PR['PR_DECLARATION'], /^%(?:YAML|TAG)[^#\r\n]+/, null, '%'], 15 | [PR['PR_TYPE'], /^[&]\S+/, null, '&'], 16 | [PR['PR_TYPE'], /^!\S*/, null, '!'], 17 | [PR['PR_STRING'], /^"(?:[^\\"]|\\.)*(?:"|$)/, null, '"'], 18 | [PR['PR_STRING'], /^'(?:[^']|'')*(?:'|$)/, null, "'"], 19 | [PR['PR_COMMENT'], /^#[^\r\n]*/, null, '#'], 20 | [PR['PR_PLAIN'], /^\s+/, null, ' \t\r\n'] 21 | ], 22 | [ 23 | [PR['PR_DECLARATION'], /^(?:---|\.\.\.)(?:[\r\n]|$)/], 24 | [PR['PR_PUNCTUATION'], /^-/], 25 | [PR['PR_KEYWORD'], /^\w+:[ \r\n]/], 26 | [PR['PR_PLAIN'], /^\w+/] 27 | ]), ['yaml', 'yml']); 28 | -------------------------------------------------------------------------------- /public/libs/google-code-prettify/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/libs/jasmine-1.3.1/spec/SpecHelper.js: -------------------------------------------------------------------------------- 1 | beforeEach(function() { 2 | this.addMatchers({ 3 | toBePlaying: function(expectedSong) { 4 | var player = this.actual; 5 | return player.currentlyPlayingSong === expectedSong && 6 | player.isPlaying; 7 | } 8 | }); 9 | }); 10 | -------------------------------------------------------------------------------- /public/libs/jasmine-1.3.1/src/Player.js: -------------------------------------------------------------------------------- 1 | function Player() { 2 | } 3 | Player.prototype.play = function(song) { 4 | this.currentlyPlayingSong = song; 5 | this.isPlaying = true; 6 | }; 7 | 8 | Player.prototype.pause = function() { 9 | this.isPlaying = false; 10 | }; 11 | 12 | Player.prototype.resume = function() { 13 | if (this.isPlaying) { 14 | throw new Error("song is already playing"); 15 | } 16 | 17 | this.isPlaying = true; 18 | }; 19 | 20 | Player.prototype.makeFavorite = function() { 21 | this.currentlyPlayingSong.persistFavoriteStatus(true); 22 | }; -------------------------------------------------------------------------------- /public/libs/jasmine-1.3.1/src/Song.js: -------------------------------------------------------------------------------- 1 | function Song() { 2 | } 3 | 4 | Song.prototype.persistFavoriteStatus = function(value) { 5 | // something complicated 6 | throw new Error("not yet implemented"); 7 | }; -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/css/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/development-bundle/demos/accordion/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Accordion Demos 6 | 7 | 8 | 9 | 10 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/development-bundle/demos/autocomplete/images/jquery_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/demos/autocomplete/images/jquery_32x32.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/demos/autocomplete/images/jqueryui_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/demos/autocomplete/images/jqueryui_32x32.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/demos/autocomplete/images/sizzlejs_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/demos/autocomplete/images/sizzlejs_32x32.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/demos/autocomplete/images/transparent_1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/demos/autocomplete/images/transparent_1x1.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/demos/autocomplete/images/ui-anim_basic_16x16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/demos/autocomplete/images/ui-anim_basic_16x16.gif -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/development-bundle/demos/datepicker/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/demos/datepicker/images/calendar.gif -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/development-bundle/demos/droppable/images/high_tatras.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/demos/droppable/images/high_tatras.jpg -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/demos/droppable/images/high_tatras2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/demos/droppable/images/high_tatras2.jpg -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/demos/droppable/images/high_tatras2_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/demos/droppable/images/high_tatras2_min.jpg -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/demos/droppable/images/high_tatras3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/demos/droppable/images/high_tatras3.jpg -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/demos/droppable/images/high_tatras3_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/demos/droppable/images/high_tatras3_min.jpg -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/demos/droppable/images/high_tatras4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/demos/droppable/images/high_tatras4.jpg -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/demos/droppable/images/high_tatras4_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/demos/droppable/images/high_tatras4_min.jpg -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/demos/droppable/images/high_tatras_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/demos/droppable/images/high_tatras_min.jpg -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/demos/droppable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Droppable Demos 6 | 7 | 8 | 9 | 10 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/development-bundle/demos/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/demos/images/calendar.gif -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/demos/images/demo-config-on-tile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/demos/images/demo-config-on-tile.gif -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/demos/images/demo-config-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/demos/images/demo-config-on.gif -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/demos/images/demo-spindown-closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/demos/images/demo-spindown-closed.gif -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/demos/images/demo-spindown-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/demos/images/demo-spindown-open.gif -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/demos/images/icon-docs-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/demos/images/icon-docs-info.gif -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/demos/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/demos/images/pbar-ani.gif -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/demos/position/images/earth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/demos/position/images/earth.jpg -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/demos/position/images/flight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/demos/position/images/flight.jpg -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/demos/position/images/rocket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/demos/position/images/rocket.jpg -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/development-bundle/demos/progressbar/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/demos/progressbar/images/pbar-ani.gif -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/development-bundle/demos/sortable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Sortable Demos 6 | 7 | 8 | 9 | 10 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/development-bundle/demos/tabs/ajax/content4-broken.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/demos/tabs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Tabs Demos 6 | 7 | 8 | 9 | 10 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.24 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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/development-bundle/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Progressbar 1.8.24 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/libs/jquery-ui-1.8.24/development-bundle/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectable 1.8.24 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/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /public/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.24 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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Progressbar 1.8.24 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/libs/jquery-ui-1.8.24/development-bundle/themes/smoothness/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectable 1.8.24 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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/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/libs/jquery-ui-1.8.24/development-bundle/ui/jquery.effects.fade.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Effects Fade 1.8.24 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/libs/jquery-ui-1.8.24/development-bundle/ui/minified/jquery.effects.blind.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.24 - 2012-09-28 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/libs/jquery-ui-1.8.24/development-bundle/ui/minified/jquery.effects.clip.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.24 - 2012-09-28 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/libs/jquery-ui-1.8.24/development-bundle/ui/minified/jquery.effects.drop.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.24 - 2012-09-28 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(!0)/2:c.outerWidth(!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/libs/jquery-ui-1.8.24/development-bundle/ui/minified/jquery.effects.fade.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.24 - 2012-09-28 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/libs/jquery-ui-1.8.24/development-bundle/ui/minified/jquery.effects.highlight.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.24 - 2012-09-28 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/libs/jquery-ui-1.8.24/development-bundle/ui/minified/jquery.effects.pulsate.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.24 - 2012-09-28 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/libs/marked.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/marked.min.js.gz -------------------------------------------------------------------------------- /public/libs/ng-grid/1.6.3/ng-grid-1.6.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/ng-grid/1.6.3/ng-grid-1.6.3.min.js -------------------------------------------------------------------------------- /public/libs/ng-grid/1.6.3/ng-grid-layout.js: -------------------------------------------------------------------------------- 1 | ngGridLayoutPlugin = function() { 2 | var self = this; 3 | this.grid = null; 4 | this.scope = null; 5 | this.init = function(scope, grid, services) { 6 | self.domUtilityService = services.DomUtilityService; 7 | self.grid = grid; 8 | self.scope = scope; 9 | }; 10 | 11 | this.updateGridLayout = function() { 12 | self.domUtilityService.RebuildGrid(self.scope, self.grid); 13 | }; 14 | } -------------------------------------------------------------------------------- /public/libs/slickswitch/css/slickswitch.css: -------------------------------------------------------------------------------- 1 | .switch { 2 | position: relative; 3 | display: inline-block; 4 | width: 30px; 5 | height: 17px; 6 | cursor: pointer; 7 | background: url(../images/switch.png) 0 0 no-repeat; 8 | } 9 | 10 | .switch .ss-on { 11 | position: absolute; 12 | display: block; 13 | width: 30px; 14 | height: 17px; 15 | background: url(../images/switch.png) -30px 0 no-repeat; 16 | } 17 | 18 | .switch .ss-slider { 19 | position: absolute; 20 | left: 0px; 21 | width: 15px; 22 | height: 16px; 23 | margin: 0 1px; 24 | background: url(../images/switch.png) -60px 0 no-repeat; 25 | } 26 | 27 | .switch.icons { 28 | background-position: 0 -17px; 29 | } 30 | 31 | .switch.icons .ss-on { 32 | background: url(../images/switch.png) -30px -17px no-repeat; 33 | } -------------------------------------------------------------------------------- /public/libs/slickswitch/images/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/libs/slickswitch/images/switch.png -------------------------------------------------------------------------------- /public/stylesheets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freewind/rythmfiddle/a5d2354c89e66c3c44bf6966272fb6c8ef819f3c/public/stylesheets/main.css -------------------------------------------------------------------------------- /test/Application.test.html: -------------------------------------------------------------------------------- 1 | *{ You can use plain selenium command using the selenium tag }* 2 | 3 | #{selenium} 4 | // Open the home page, and check that no error occured 5 | open('/') 6 | assertNotTitle('Application error') 7 | #{/selenium} -------------------------------------------------------------------------------- /test/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | import org.junit.*; 2 | import play.test.*; 3 | import play.mvc.*; 4 | import play.mvc.Http.*; 5 | import models.*; 6 | 7 | public class ApplicationTest extends FunctionalTest { 8 | 9 | @Test 10 | public void testThatIndexPageWorks() { 11 | Response response = GET("/"); 12 | assertIsOk(response); 13 | assertContentType("text/html", response); 14 | assertCharset(play.Play.defaultWebEncoding, response); 15 | } 16 | 17 | } -------------------------------------------------------------------------------- /test/BasicTest.java: -------------------------------------------------------------------------------- 1 | import org.junit.*; 2 | import java.util.*; 3 | import play.test.*; 4 | import models.*; 5 | 6 | public class BasicTest extends UnitTest { 7 | 8 | @Test 9 | public void aVeryImportantThingToTest() { 10 | assertEquals(2, 1 + 1); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /test/data.yml: -------------------------------------------------------------------------------- 1 | # you describe your data using the YAML notation here 2 | # and then load them using Fixtures.load("data.yml") 3 | 4 | # User(bob): 5 | # email: bob@gmail.com 6 | # password: secret 7 | # fullname: Bob --------------------------------------------------------------------------------