├── .gitignore ├── .idea ├── encodings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── mytest-dao ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── songci │ │ └── mytest_one │ │ └── dao │ │ ├── StudentDao.java │ │ └── base │ │ └── BaseDao.java │ └── resources │ └── mapper │ └── StudentMapper.xml ├── mytest-model ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── songci │ └── mytest_one │ └── model │ ├── Student.java │ └── utils │ └── ResultVo.java ├── mytest-service ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── songci │ └── mytest_one │ └── service │ ├── StudentService.java │ └── impl │ └── StudentServiceImpl.java ├── mytest-web ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── songci │ │ └── mytest_one │ │ └── controller │ │ ├── StudentApiController.java │ │ └── StudentController.java │ ├── resources │ └── config │ │ ├── applicationContext.xml │ │ ├── jdbc.properties │ │ ├── log4j.properties │ │ ├── mybatis-config.xml │ │ └── spring-mvc.xml │ ├── test │ └── com │ │ └── songci │ │ └── mytest_one │ │ └── test │ │ ├── DaoTest.java │ │ └── ServiceTest.java │ └── webapp │ ├── WEB-INF │ ├── decorators │ │ └── studentDecorator.jsp │ ├── jsp │ │ └── student │ │ │ ├── home.jsp │ │ │ └── studentInfo.jsp │ ├── sitemesh3.xml │ └── web.xml │ ├── assets │ ├── css │ │ ├── main-responsive.css │ │ ├── main.css │ │ ├── print.css │ │ ├── rtl-version.css │ │ ├── theme_black_and_white.css │ │ ├── theme_dark.css │ │ ├── theme_green.css │ │ ├── theme_light.css │ │ └── theme_navy.css │ ├── fonts │ │ ├── fonts │ │ │ ├── clip-font.eot │ │ │ ├── clip-font.svg │ │ │ ├── clip-font.ttf │ │ │ └── clip-font.woff │ │ ├── lte-ie7.js │ │ └── style.css │ ├── images │ │ ├── avatar-1-big.jpg │ │ ├── avatar-1-small.jpg │ │ ├── avatar-1-xl.jpg │ │ ├── avatar-1.jpg │ │ ├── avatar-2.jpg │ │ ├── avatar-3.jpg │ │ ├── avatar-4.jpg │ │ ├── avatar-5.jpg │ │ ├── back-error-page.jpg │ │ ├── bg.png │ │ ├── bg_2.png │ │ ├── bg_3.png │ │ ├── bg_4.png │ │ ├── bg_5.png │ │ ├── blackandwhite.png │ │ ├── darkgrey.png │ │ ├── green.png │ │ ├── image01.jpg │ │ ├── image02.jpg │ │ ├── image03.jpg │ │ ├── image04.jpg │ │ ├── image05.jpg │ │ ├── image06.jpg │ │ ├── image07.jpg │ │ ├── image08.jpg │ │ ├── image09.jpg │ │ ├── image10.jpg │ │ ├── image11.jpg │ │ ├── image12.jpg │ │ ├── lightgrey.png │ │ ├── loading.gif │ │ ├── menu-white-arrow-rtl.png │ │ ├── menu-white-arrow.png │ │ ├── navy.png │ │ ├── timer-piece.png │ │ └── your-logo-here.png │ ├── js │ │ ├── charts.js │ │ ├── form-calendar.js │ │ ├── form-dropzone.js │ │ ├── form-elements.js │ │ ├── form-image-cropping.js │ │ ├── form-validation.js │ │ ├── form-wizard.js │ │ ├── index.js │ │ ├── jquery-1.7.2.js │ │ ├── jquery-1.7.2.min.js │ │ ├── login.js │ │ ├── main.js │ │ ├── maps.js │ │ ├── pages-gallery.js │ │ ├── pages-user-profile.js │ │ ├── table-data.js │ │ ├── ui-animation.js │ │ ├── ui-buttons.js │ │ ├── ui-elements.js │ │ ├── ui-modals.js │ │ ├── ui-nestable.js │ │ ├── ui-sliders.js │ │ ├── ui-treeview.js │ │ ├── utility-coming-soon.js │ │ ├── utility-error404.js │ │ ├── vue.js │ │ └── vue.min.js │ ├── less │ │ └── styles.less │ ├── myassets │ │ └── js │ │ │ └── student │ │ │ └── studentInfo.js │ └── plugins │ │ ├── DataTables │ │ ├── Readme.txt │ │ ├── component.json │ │ ├── docs │ │ │ ├── 34cdb56b2c.html │ │ │ ├── DataTable.defaults.columns.html │ │ │ ├── DataTable.defaults.html │ │ │ ├── DataTable.defaults.oLanguage.html │ │ │ ├── DataTable.defaults.oLanguage.oAria.html │ │ │ ├── DataTable.defaults.oLanguage.oPaginate.html │ │ │ ├── DataTable.defaults.oSearch.html │ │ │ ├── DataTable.ext.html │ │ │ ├── DataTable.html │ │ │ ├── DataTable.models.ext.html │ │ │ ├── DataTable.models.html │ │ │ ├── DataTable.models.oColumn.html │ │ │ ├── DataTable.models.oRow.html │ │ │ ├── DataTable.models.oSearch.html │ │ │ ├── DataTable.models.oSettings.html │ │ │ ├── DataTable.models.oSettings.oBrowser.html │ │ │ ├── DataTable.models.oSettings.oFeatures.html │ │ │ ├── DataTable.models.oSettings.oLanguage.html │ │ │ ├── DataTable.models.oSettings.oPreviousSearch.html │ │ │ ├── DataTable.models.oSettings.oScroll.html │ │ │ ├── index.html │ │ │ └── media │ │ │ │ ├── css │ │ │ │ ├── doc.css │ │ │ │ ├── shCore.css │ │ │ │ └── shThemeDataTables.css │ │ │ │ ├── images │ │ │ │ ├── arrow.jpg │ │ │ │ ├── arrow.png │ │ │ │ └── extended.png │ │ │ │ ├── js │ │ │ │ ├── doc.js │ │ │ │ ├── jquery.js │ │ │ │ ├── shBrushJScript.js │ │ │ │ └── shCore.js │ │ │ │ └── license │ │ │ │ └── Syntax Highlighter │ │ ├── examples │ │ │ ├── advanced_init │ │ │ │ ├── column_render.html │ │ │ │ ├── complex_header.html │ │ │ │ ├── defaults.html │ │ │ │ ├── dom_multiple_elements.html │ │ │ │ ├── dom_toolbar.html │ │ │ │ ├── dt_events.html │ │ │ │ ├── events_live.html │ │ │ │ ├── events_post_init.html │ │ │ │ ├── events_pre_init.html │ │ │ │ ├── footer_callback.html │ │ │ │ ├── highlight.html │ │ │ │ ├── html_sort.html │ │ │ │ ├── language_file.html │ │ │ │ ├── length_menu.html │ │ │ │ ├── localstorage.html │ │ │ │ ├── row_callback.html │ │ │ │ ├── row_grouping.html │ │ │ │ └── sorting_control.html │ │ │ ├── ajax │ │ │ │ ├── ajax.html │ │ │ │ ├── custom_data_property.html │ │ │ │ ├── deep.html │ │ │ │ ├── defer_render.html │ │ │ │ ├── null_data_source.html │ │ │ │ ├── objects.html │ │ │ │ ├── objects_subarrays.html │ │ │ │ └── sources │ │ │ │ │ ├── array_only.txt │ │ │ │ │ ├── arrays.txt │ │ │ │ │ ├── arrays_subobjects.txt │ │ │ │ │ ├── custom_prop.txt │ │ │ │ │ ├── deep.txt │ │ │ │ │ ├── objects.txt │ │ │ │ │ └── objects_subarrays.txt │ │ │ ├── api │ │ │ │ ├── add_row.html │ │ │ │ ├── api_in_init.html │ │ │ │ ├── counter_column.html │ │ │ │ ├── editable.html │ │ │ │ ├── form.html │ │ │ │ ├── highlight.html │ │ │ │ ├── multi_filter.html │ │ │ │ ├── multi_filter_select.html │ │ │ │ ├── regex.html │ │ │ │ ├── row_details.html │ │ │ │ ├── select_row.html │ │ │ │ ├── select_single_row.html │ │ │ │ ├── show_hide.html │ │ │ │ └── tabs_and_scrolling.html │ │ │ ├── basic_init │ │ │ │ ├── alt_pagination.html │ │ │ │ ├── base.html │ │ │ │ ├── base_themeroller.html │ │ │ │ ├── complex_header.html │ │ │ │ ├── dom.html │ │ │ │ ├── filter_only.html │ │ │ │ ├── flexible_width.html │ │ │ │ ├── hidden_columns.html │ │ │ │ ├── language.html │ │ │ │ ├── multi_col_sort.html │ │ │ │ ├── multiple_tables.html │ │ │ │ ├── scroll_x.html │ │ │ │ ├── scroll_xy.html │ │ │ │ ├── scroll_y.html │ │ │ │ ├── scroll_y_infinite.html │ │ │ │ ├── scroll_y_theme.html │ │ │ │ ├── state_save.html │ │ │ │ ├── table_sorting.html │ │ │ │ ├── themes.html │ │ │ │ └── zero_config.html │ │ │ ├── data_sources │ │ │ │ ├── ajax.html │ │ │ │ ├── dom.html │ │ │ │ ├── js_array.html │ │ │ │ └── server_side.html │ │ │ ├── examples_support │ │ │ │ ├── data.sql │ │ │ │ ├── de_DE.txt │ │ │ │ ├── details_close.png │ │ │ │ ├── details_open.png │ │ │ │ ├── editable_ajax.php │ │ │ │ ├── index.html │ │ │ │ ├── infiniteScroll.php │ │ │ │ ├── jquery-ui-tabs.js │ │ │ │ ├── jquery.jeditable.js │ │ │ │ ├── jquery.tooltip.css │ │ │ │ ├── jquery.tooltip.js │ │ │ │ ├── syntax │ │ │ │ │ ├── css │ │ │ │ │ │ └── shCore.css │ │ │ │ │ ├── images │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ └── extended.png │ │ │ │ │ ├── js │ │ │ │ │ │ └── shCore.js │ │ │ │ │ └── license │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ └── themes │ │ │ │ │ ├── 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-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.4.custom.css │ │ │ │ │ └── ui-lightness │ │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ └── jquery-ui-1.8.4.custom.css │ │ │ ├── index.html │ │ │ ├── plug-ins │ │ │ │ ├── dom_sort.html │ │ │ │ ├── html_sort.html │ │ │ │ ├── paging_plugin.html │ │ │ │ ├── plugin_api.html │ │ │ │ ├── range_filtering.html │ │ │ │ ├── sorting_plugin.html │ │ │ │ └── sorting_sType.html │ │ │ └── server_side │ │ │ │ ├── custom_vars.html │ │ │ │ ├── defer_loading.html │ │ │ │ ├── editable.html │ │ │ │ ├── ids.html │ │ │ │ ├── jsonp.html │ │ │ │ ├── object_data.html │ │ │ │ ├── pipeline.html │ │ │ │ ├── post.html │ │ │ │ ├── row_details.html │ │ │ │ ├── scripts │ │ │ │ ├── custom_data_property.php │ │ │ │ ├── details_col.php │ │ │ │ ├── filter_col.php │ │ │ │ ├── id.php │ │ │ │ ├── id_jsonp.php │ │ │ │ ├── jsonp.php │ │ │ │ ├── objects.php │ │ │ │ ├── objects_jsonp.php │ │ │ │ ├── post.php │ │ │ │ └── server_processing.php │ │ │ │ ├── select_rows.html │ │ │ │ └── server_side.html │ │ ├── extras │ │ │ ├── AutoFill │ │ │ │ ├── callbacks.html │ │ │ │ ├── columns.html │ │ │ │ ├── index.html │ │ │ │ ├── inputs.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ └── AutoFill.css │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── 02ff627f40.html │ │ │ │ │ │ ├── 36456bf45f.html │ │ │ │ │ │ ├── 47cac4f141.html │ │ │ │ │ │ ├── 5a72546831.html │ │ │ │ │ │ ├── 8ee4007a12.html │ │ │ │ │ │ ├── AutoFill.html │ │ │ │ │ │ ├── a69b02bcf2.html │ │ │ │ │ │ ├── b44bd4821a.html │ │ │ │ │ │ ├── c6945fdb4a.html │ │ │ │ │ │ ├── global.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── filler.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── AutoFill.js │ │ │ │ │ │ ├── AutoFill.min.js │ │ │ │ │ │ └── AutoFill.min.js.gz │ │ │ │ └── scrolling.html │ │ │ ├── ColReorder │ │ │ │ ├── alt_insert.html │ │ │ │ ├── col_filter.html │ │ │ │ ├── colvis.html │ │ │ │ ├── fixedcolumns.html │ │ │ │ ├── fixedheader.html │ │ │ │ ├── index.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ └── ColReorder.css │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── 46848f6f3b.html │ │ │ │ │ │ ├── 4f1246032c.html │ │ │ │ │ │ ├── ColReorder.html │ │ │ │ │ │ ├── a69b02bcf2.html │ │ │ │ │ │ ├── global.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── insert.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── ColReorder.js │ │ │ │ │ │ ├── ColReorder.min.js │ │ │ │ │ │ └── ColReorder.min.js.gz │ │ │ │ ├── predefined.html │ │ │ │ ├── reset.html │ │ │ │ ├── scrolling.html │ │ │ │ ├── server_side.html │ │ │ │ ├── state_save.html │ │ │ │ └── theme.html │ │ │ ├── ColVis │ │ │ │ ├── exclude_columns.html │ │ │ │ ├── index.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ ├── ColVis.css │ │ │ │ │ │ └── ColVisAlt.css │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── ColVis.html │ │ │ │ │ │ ├── a69b02bcf2.html │ │ │ │ │ │ ├── ccb5a49865.html │ │ │ │ │ │ ├── global.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── button.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── ColVis.js │ │ │ │ │ │ ├── ColVis.min.js │ │ │ │ │ │ └── ColVis.min.js.gz │ │ │ │ ├── mouseover.html │ │ │ │ ├── style.html │ │ │ │ ├── text.html │ │ │ │ ├── theme.html │ │ │ │ ├── title_callback.html │ │ │ │ ├── two_tables.html │ │ │ │ └── two_tables_identical.html │ │ │ ├── FixedColumns │ │ │ │ ├── col_filter.html │ │ │ │ ├── css_size.html │ │ │ │ ├── docs │ │ │ │ │ ├── 070023b890.html │ │ │ │ │ ├── 526f872207.html │ │ │ │ │ ├── 73098af57c.html │ │ │ │ │ ├── 889588ec06.html │ │ │ │ │ ├── 91bce7c4ad.html │ │ │ │ │ ├── FixedColumns.defaults.html │ │ │ │ │ ├── FixedColumns.html │ │ │ │ │ ├── a6bd52f587.html │ │ │ │ │ ├── d3890ba7c4.html │ │ │ │ │ ├── e20106c59a.html │ │ │ │ │ ├── global.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── media │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ └── license │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ ├── index.html │ │ │ │ ├── index_column.html │ │ │ │ ├── left_right_columns.html │ │ │ │ ├── media │ │ │ │ │ └── js │ │ │ │ │ │ ├── FixedColumns.js │ │ │ │ │ │ ├── FixedColumns.min.js │ │ │ │ │ │ └── FixedColumns.min.js.gz │ │ │ │ ├── right_column.html │ │ │ │ ├── row_grouping.html │ │ │ │ ├── row_grouping_height.html │ │ │ │ ├── rowspan.html │ │ │ │ ├── scale_fixed.html │ │ │ │ ├── scale_relative.html │ │ │ │ ├── server-side-processing.html │ │ │ │ ├── themed.html │ │ │ │ ├── two_columns.html │ │ │ │ └── x_y_scrolling.html │ │ │ ├── FixedHeader │ │ │ │ ├── html_table.html │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── FixedHeader.js │ │ │ │ │ ├── FixedHeader.min.js │ │ │ │ │ └── FixedHeader.min.js.gz │ │ │ │ ├── top_bottom_left_right.html │ │ │ │ ├── top_left.html │ │ │ │ ├── two_tables.html │ │ │ │ └── zIndexes.html │ │ │ ├── KeyTable │ │ │ │ ├── datatable.html │ │ │ │ ├── datatable_scrolling.html │ │ │ │ ├── editing.html │ │ │ │ ├── form.html │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ │ ├── KeyTable.js │ │ │ │ │ ├── KeyTable.min.js │ │ │ │ │ └── KeyTable.min.js.gz │ │ │ ├── Scroller │ │ │ │ ├── api_scrolling.html │ │ │ │ ├── index.html │ │ │ │ ├── large_js_source.html │ │ │ │ ├── media │ │ │ │ │ ├── css │ │ │ │ │ │ └── dataTables.scroller.css │ │ │ │ │ ├── data │ │ │ │ │ │ ├── 2500.txt │ │ │ │ │ │ └── server_processing.php │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── Scroller.html │ │ │ │ │ │ ├── Scroller.oDefaults.html │ │ │ │ │ │ ├── baed189d4a.html │ │ │ │ │ │ ├── c6053fac6b.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── doc.css │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ └── shThemeDataTables.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── arrow.jpg │ │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ │ └── extended.png │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── doc.js │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ └── shCore.js │ │ │ │ │ │ │ └── license │ │ │ │ │ │ │ └── Syntax Highlighter │ │ │ │ │ ├── images │ │ │ │ │ │ └── loading-background.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── dataTables.scroller.js │ │ │ │ │ │ ├── dataTables.scroller.min.js │ │ │ │ │ │ └── dataTables.scroller.min.js.gz │ │ │ │ ├── server-side_processing.html │ │ │ │ └── state_saving.html │ │ │ └── TableTools │ │ │ │ ├── alt_init.html │ │ │ │ ├── alter_buttons.html │ │ │ │ ├── bootstrap.html │ │ │ │ ├── button_text.html │ │ │ │ ├── collection.html │ │ │ │ ├── defaults.html │ │ │ │ ├── index.html │ │ │ │ ├── media │ │ │ │ ├── as3 │ │ │ │ │ ├── ZeroClipboard.as │ │ │ │ │ ├── ZeroClipboardPdf.as │ │ │ │ │ └── lib │ │ │ │ │ │ └── AlivePDF.swc │ │ │ │ ├── css │ │ │ │ │ ├── TableTools.css │ │ │ │ │ └── TableTools_JUI.css │ │ │ │ ├── images │ │ │ │ │ ├── background.png │ │ │ │ │ ├── collection.png │ │ │ │ │ ├── collection_hover.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── copy_hover.png │ │ │ │ │ ├── csv.png │ │ │ │ │ ├── csv_hover.png │ │ │ │ │ ├── pdf.png │ │ │ │ │ ├── pdf_hover.png │ │ │ │ │ ├── print.png │ │ │ │ │ ├── print_hover.png │ │ │ │ │ ├── psd │ │ │ │ │ │ ├── collection.psd │ │ │ │ │ │ ├── copy document.psd │ │ │ │ │ │ ├── file_types.psd │ │ │ │ │ │ └── printer.psd │ │ │ │ │ ├── xls.png │ │ │ │ │ └── xls_hover.png │ │ │ │ ├── js │ │ │ │ │ ├── TableTools.js │ │ │ │ │ ├── TableTools.min.js │ │ │ │ │ ├── TableTools.min.js.gz │ │ │ │ │ └── ZeroClipboard.js │ │ │ │ └── swf │ │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ │ └── copy_csv_xls_pdf.swf │ │ │ │ ├── multi_instance.html │ │ │ │ ├── multiple_tables.html │ │ │ │ ├── pdf_message.html │ │ │ │ ├── plug-in.html │ │ │ │ ├── select_multi.html │ │ │ │ ├── select_single.html │ │ │ │ ├── swf_path.html │ │ │ │ ├── tabs.html │ │ │ │ └── theme.html │ │ ├── license-bsd.txt │ │ ├── license-gpl2.txt │ │ ├── media │ │ │ ├── css │ │ │ │ ├── DT_bootstrap.css │ │ │ │ ├── demo_page.css │ │ │ │ ├── demo_table.css │ │ │ │ ├── demo_table_jui.css │ │ │ │ ├── images │ │ │ │ │ ├── Sorting icons.psd │ │ │ │ │ ├── back_disabled.png │ │ │ │ │ ├── back_enabled.png │ │ │ │ │ ├── back_enabled_hover.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── forward_disabled.png │ │ │ │ │ ├── forward_enabled.png │ │ │ │ │ ├── forward_enabled_hover.png │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ ├── sort_both.png │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ ├── jquery.dataTables.css │ │ │ │ └── jquery.dataTables_themeroller.css │ │ │ ├── js │ │ │ │ ├── DT_bootstrap.js │ │ │ │ ├── jquery.dataTables.editable.js │ │ │ │ ├── jquery.dataTables.js │ │ │ │ ├── jquery.dataTables.min.js │ │ │ │ └── jquery.js │ │ │ ├── src │ │ │ │ ├── DataTables.js │ │ │ │ ├── api │ │ │ │ │ ├── api.internal.js │ │ │ │ │ ├── api.methods.js │ │ │ │ │ └── api.static.js │ │ │ │ ├── core │ │ │ │ │ ├── core.ajax.js │ │ │ │ │ ├── core.columns.js │ │ │ │ │ ├── core.constructor.js │ │ │ │ │ ├── core.data.js │ │ │ │ │ ├── core.draw.js │ │ │ │ │ ├── core.filter.js │ │ │ │ │ ├── core.info.js │ │ │ │ │ ├── core.init.js │ │ │ │ │ ├── core.length.js │ │ │ │ │ ├── core.page.js │ │ │ │ │ ├── core.processing.js │ │ │ │ │ ├── core.scrolling.js │ │ │ │ │ ├── core.sizing.js │ │ │ │ │ ├── core.sort.js │ │ │ │ │ ├── core.state.js │ │ │ │ │ └── core.support.js │ │ │ │ ├── ext │ │ │ │ │ ├── ext.classes.js │ │ │ │ │ ├── ext.paging.js │ │ │ │ │ ├── ext.sorting.js │ │ │ │ │ └── ext.types.js │ │ │ │ └── model │ │ │ │ │ ├── model.column.js │ │ │ │ │ ├── model.defaults.columns.js │ │ │ │ │ ├── model.defaults.js │ │ │ │ │ ├── model.ext.js │ │ │ │ │ ├── model.row.js │ │ │ │ │ ├── model.search.js │ │ │ │ │ └── model.settings.js │ │ │ └── unit_testing │ │ │ │ ├── controller.js │ │ │ │ ├── controller.php │ │ │ │ ├── index.html │ │ │ │ ├── performance │ │ │ │ ├── draw.html │ │ │ │ ├── large.php │ │ │ │ ├── page.html │ │ │ │ └── sort.html │ │ │ │ ├── templates │ │ │ │ ├── -complex_header.php │ │ │ │ ├── 2512.php │ │ │ │ ├── 6776.php │ │ │ │ ├── complex_header_2.php │ │ │ │ ├── deferred_table.php │ │ │ │ ├── dom_data.php │ │ │ │ ├── dom_data_th.php │ │ │ │ ├── dom_data_two_headers.php │ │ │ │ ├── dymanic_table.php │ │ │ │ ├── empty_table.php │ │ │ │ ├── html_table.php │ │ │ │ ├── js_data.php │ │ │ │ ├── js_data_mixed_types.php │ │ │ │ └── two_tables.php │ │ │ │ ├── tests │ │ │ │ └── 1_dom │ │ │ │ │ └── _zero_config.js │ │ │ │ ├── tests_onhold │ │ │ │ ├── 1_dom │ │ │ │ │ ├── -complex_header.js │ │ │ │ │ ├── -iDraw.js │ │ │ │ │ ├── 2512.js │ │ │ │ │ ├── 2530-2.js │ │ │ │ │ ├── 2530.js │ │ │ │ │ ├── 2569.js │ │ │ │ │ ├── 2600.js │ │ │ │ │ ├── 2608.js │ │ │ │ │ ├── 2635.js │ │ │ │ │ ├── 2746-stable-sort.js │ │ │ │ │ ├── 2799.js │ │ │ │ │ ├── 2840-restore-table-width.js │ │ │ │ │ ├── 2914-state-save-sort.js │ │ │ │ │ ├── 5396-fnUpdate-arrays-mData.js │ │ │ │ │ ├── 5396-fnUpdate-arrays.js │ │ │ │ │ ├── 5508-xscroll-zero-content.js │ │ │ │ │ ├── 6776-scrolling-table-grows.js │ │ │ │ │ ├── _getDataFunctions.js │ │ │ │ │ ├── _setDataFunctions.js │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.bVisible2.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfiniteScroll.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bJQueryUI.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortCellsTop.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnCookieCallback.js │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ ├── fnDeleteRow.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnFilter.js │ │ │ │ │ ├── fnFooterCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInfoCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── fnSetColumnVis.js │ │ │ │ │ ├── fnSetColumnVis2.js │ │ │ │ │ ├── html-autodetect-sort.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ ├── sPaginationType.js │ │ │ │ │ ├── sScrollXY.js │ │ │ │ │ └── th_in_body.js │ │ │ │ ├── 2_js │ │ │ │ │ ├── 39-nested-null.js │ │ │ │ │ ├── 6872-default-content-missing-props.js │ │ │ │ │ ├── 8549--string-sorting-nonstrings.js │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnFooterCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── js_data_mixed_types.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ ├── 3_ajax │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── fnServerData.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sLoadingRecords.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxDataProp.js │ │ │ │ │ ├── sAjaxDataProp2.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ ├── 4_server-side │ │ │ │ │ ├── -iDraw.js │ │ │ │ │ ├── 2440.js │ │ │ │ │ ├── 2569.js │ │ │ │ │ ├── 2600.js │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfiniteScroll.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── iDeferLoading.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxDataProp.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ ├── 5_ajax_objects │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── _zero_config_arrays_subobjects.js │ │ │ │ │ ├── _zero_config_deep.js │ │ │ │ │ ├── _zero_config_mDataProp.js │ │ │ │ │ ├── _zero_config_null_source.js │ │ │ │ │ ├── _zero_config_objects.js │ │ │ │ │ ├── _zero_config_objects_subarrays.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── fnServerData.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ └── 6_delayed_rendering │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── bSort.js │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ ├── fnServerData.js │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ ├── oSearch.js │ │ │ │ │ ├── sAjaxDataProp.js │ │ │ │ │ ├── sAjaxDataProp2.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── sDom.js │ │ │ │ │ └── sPaginationType.js │ │ │ │ └── unit_test.js │ │ ├── package.json │ │ └── scripts │ │ │ ├── jshint.config │ │ │ ├── make.sh │ │ │ └── unit_tests.sh │ │ ├── Jcrop │ │ ├── MIT-LICENSE.txt │ │ ├── README.md │ │ ├── css │ │ │ ├── Jcrop.gif │ │ │ ├── jquery.Jcrop.css │ │ │ └── jquery.Jcrop.min.css │ │ ├── demos │ │ │ ├── crop.php │ │ │ ├── demo_files │ │ │ │ ├── demos.css │ │ │ │ ├── main.css │ │ │ │ ├── pool.jpg │ │ │ │ ├── sago.jpg │ │ │ │ ├── sagomod.jpg │ │ │ │ └── sagomod.png │ │ │ ├── non-image.html │ │ │ ├── styling.html │ │ │ ├── tutorial1.html │ │ │ ├── tutorial2.html │ │ │ ├── tutorial3.html │ │ │ ├── tutorial4.html │ │ │ └── tutorial5.html │ │ ├── index.html │ │ └── js │ │ │ ├── jquery.Jcrop.js │ │ │ ├── jquery.Jcrop.min.js │ │ │ ├── jquery.color.js │ │ │ └── jquery.min.js │ │ ├── autosize │ │ ├── autosize.jquery.json │ │ ├── bower.json │ │ ├── demo.html │ │ ├── jquery.autosize.js │ │ ├── jquery.autosize.min.js │ │ ├── package.json │ │ └── readme.md │ │ ├── blockUI │ │ └── jquery.blockUI.js │ │ ├── bootstrap-colorpalette │ │ ├── README.md │ │ ├── css │ │ │ ├── bootstrap-colorpalette.css │ │ │ └── example.css │ │ ├── example.html │ │ └── js │ │ │ └── bootstrap-colorpalette.js │ │ ├── bootstrap-colorpicker │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── css │ │ │ └── bootstrap-colorpicker.css │ │ ├── img │ │ │ └── bootstrap-colorpicker │ │ │ │ ├── alpha.png │ │ │ │ ├── hue.png │ │ │ │ └── saturation.png │ │ ├── index.html │ │ ├── js │ │ │ ├── bootstrap-colorpicker.js │ │ │ └── commits.js │ │ └── less │ │ │ └── bootstrap-colorpicker.less │ │ ├── bootstrap-datepicker │ │ ├── .gitignore │ │ ├── .hgignore │ │ ├── .hgtags │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── build │ │ │ ├── build.less │ │ │ └── build_standalone.less │ │ ├── composer.json │ │ ├── css │ │ │ └── datepicker.css │ │ ├── docs │ │ │ ├── Makefile │ │ │ ├── _static │ │ │ │ └── demo_head.png │ │ │ ├── conf.py │ │ │ ├── events.rst │ │ │ ├── i18n.rst │ │ │ ├── index.rst │ │ │ ├── keyboard.rst │ │ │ ├── make.bat │ │ │ ├── markup.rst │ │ │ ├── methods.rst │ │ │ └── options.rst │ │ ├── js │ │ │ ├── bootstrap-datepicker.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datepicker.ar.js │ │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ │ ├── bootstrap-datepicker.cy.js │ │ │ │ ├── bootstrap-datepicker.da.js │ │ │ │ ├── bootstrap-datepicker.de.js │ │ │ │ ├── bootstrap-datepicker.el.js │ │ │ │ ├── bootstrap-datepicker.es.js │ │ │ │ ├── bootstrap-datepicker.et.js │ │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ │ ├── bootstrap-datepicker.he.js │ │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ │ ├── bootstrap-datepicker.id.js │ │ │ │ ├── bootstrap-datepicker.is.js │ │ │ │ ├── bootstrap-datepicker.it.js │ │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ │ ├── bootstrap-datepicker.ka.js │ │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ │ ├── bootstrap-datepicker.mk.js │ │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ │ ├── bootstrap-datepicker.nl-BE.js │ │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ │ ├── bootstrap-datepicker.no.js │ │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ │ ├── bootstrap-datepicker.sq.js │ │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ │ ├── bootstrap-datepicker.th.js │ │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ │ ├── bootstrap-datepicker.ua.js │ │ │ │ ├── bootstrap-datepicker.uk.js │ │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ ├── less │ │ │ └── datepicker.less │ │ └── tests │ │ │ ├── README.md │ │ │ ├── _coverage.html │ │ │ ├── assets │ │ │ ├── coverage.js │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── mock.js │ │ │ ├── qunit-logging.js │ │ │ ├── qunit.css │ │ │ ├── qunit.js │ │ │ └── utils.js │ │ │ ├── run-qunit.js │ │ │ ├── suites │ │ │ ├── calendar-weeks.js │ │ │ ├── component.js │ │ │ ├── data-api.js │ │ │ ├── events.js │ │ │ ├── formats.js │ │ │ ├── inline.js │ │ │ ├── keyboard_navigation │ │ │ │ ├── 2011.js │ │ │ │ ├── 2012.js │ │ │ │ └── all.js │ │ │ ├── methods.js │ │ │ ├── mouse_navigation │ │ │ │ ├── 2011.js │ │ │ │ ├── 2012.js │ │ │ │ └── all.js │ │ │ ├── noconflict.js │ │ │ └── options.js │ │ │ └── tests.html │ │ ├── bootstrap-daterangepicker │ │ ├── README.md │ │ ├── daterangepicker-bs2.css │ │ ├── daterangepicker-bs3.css │ │ ├── daterangepicker.js │ │ ├── examples.html │ │ ├── moment.js │ │ └── moment.min.js │ │ ├── bootstrap-datetimepicker │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── build │ │ │ ├── build.less │ │ │ └── build_standalone.less │ │ ├── css │ │ │ └── datetimepicker.css │ │ ├── js │ │ │ ├── bootstrap-datetimepicker.js │ │ │ ├── bootstrap-datetimepicker.min.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datetimepicker.bg.js │ │ │ │ ├── bootstrap-datetimepicker.ca.js │ │ │ │ ├── bootstrap-datetimepicker.cs.js │ │ │ │ ├── bootstrap-datetimepicker.da.js │ │ │ │ ├── bootstrap-datetimepicker.de.js │ │ │ │ ├── bootstrap-datetimepicker.el.js │ │ │ │ ├── bootstrap-datetimepicker.es.js │ │ │ │ ├── bootstrap-datetimepicker.fi.js │ │ │ │ ├── bootstrap-datetimepicker.fr.js │ │ │ │ ├── bootstrap-datetimepicker.he.js │ │ │ │ ├── bootstrap-datetimepicker.hr.js │ │ │ │ ├── bootstrap-datetimepicker.hu.js │ │ │ │ ├── bootstrap-datetimepicker.id.js │ │ │ │ ├── bootstrap-datetimepicker.is.js │ │ │ │ ├── bootstrap-datetimepicker.it.js │ │ │ │ ├── bootstrap-datetimepicker.ja.js │ │ │ │ ├── bootstrap-datetimepicker.kr.js │ │ │ │ ├── bootstrap-datetimepicker.lt.js │ │ │ │ ├── bootstrap-datetimepicker.lv.js │ │ │ │ ├── bootstrap-datetimepicker.ms.js │ │ │ │ ├── bootstrap-datetimepicker.nb.js │ │ │ │ ├── bootstrap-datetimepicker.nl.js │ │ │ │ ├── bootstrap-datetimepicker.pl.js │ │ │ │ ├── bootstrap-datetimepicker.pt-BR.js │ │ │ │ ├── bootstrap-datetimepicker.pt.js │ │ │ │ ├── bootstrap-datetimepicker.ro.js │ │ │ │ ├── bootstrap-datetimepicker.rs-latin.js │ │ │ │ ├── bootstrap-datetimepicker.rs.js │ │ │ │ ├── bootstrap-datetimepicker.ru.js │ │ │ │ ├── bootstrap-datetimepicker.sk.js │ │ │ │ ├── bootstrap-datetimepicker.sl.js │ │ │ │ ├── bootstrap-datetimepicker.sv.js │ │ │ │ ├── bootstrap-datetimepicker.sw.js │ │ │ │ ├── bootstrap-datetimepicker.th.js │ │ │ │ ├── bootstrap-datetimepicker.tr.js │ │ │ │ ├── bootstrap-datetimepicker.ua.js │ │ │ │ ├── bootstrap-datetimepicker.uk.js │ │ │ │ ├── bootstrap-datetimepicker.zh-CN.js │ │ │ │ └── bootstrap-datetimepicker.zh-TW.js │ │ ├── less │ │ │ └── datetimepicker.less │ │ ├── sample │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── img │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ └── bootstrap.min.js │ │ │ ├── index.html │ │ │ └── jquery │ │ │ │ └── jquery-1.8.3.min.js │ │ ├── screenshot │ │ │ ├── standard_day.png │ │ │ ├── standard_day_meridian.png │ │ │ ├── standard_decade.png │ │ │ ├── standard_full.png │ │ │ ├── standard_hour.png │ │ │ ├── standard_hour_meridian.png │ │ │ ├── standard_month.png │ │ │ └── standard_year.png │ │ └── tests │ │ │ ├── README.md │ │ │ ├── _coverage.html │ │ │ ├── assets │ │ │ ├── coverage.js │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── mock.js │ │ │ ├── qunit-logging.js │ │ │ ├── qunit.css │ │ │ ├── qunit.js │ │ │ └── utils.js │ │ │ ├── run-qunit.js │ │ │ ├── suites │ │ │ ├── component.js │ │ │ ├── events.js │ │ │ ├── formats.js │ │ │ ├── inline.js │ │ │ ├── keyboard_navigation │ │ │ │ ├── 2011.js │ │ │ │ ├── 2012.js │ │ │ │ └── all.js │ │ │ ├── mouse_navigation │ │ │ │ ├── 2011.js │ │ │ │ ├── 2012.js │ │ │ │ └── all.js │ │ │ └── options.js │ │ │ ├── tests.html │ │ │ └── tests.min.html │ │ ├── bootstrap-fileupload │ │ ├── bootstrap-fileupload.css │ │ ├── bootstrap-fileupload.js │ │ ├── bootstrap-fileupload.min.css │ │ └── bootstrap-fileupload.min.js │ │ ├── bootstrap-hover-dropdown │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap-hover-dropdown.js │ │ ├── bootstrap-hover-dropdown.min.js │ │ ├── bower.json │ │ └── demo.html │ │ ├── bootstrap-modal │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bs3.html │ │ ├── component.json │ │ ├── composer.json │ │ ├── css │ │ │ ├── bootstrap-modal-bs3patch.css │ │ │ └── bootstrap-modal.css │ │ ├── img │ │ │ └── ajax-loader.gif │ │ ├── index.html │ │ ├── js │ │ │ ├── bootstrap-modal.js │ │ │ └── bootstrap-modalmanager.js │ │ ├── modal_ajax_test.html │ │ └── params.json │ │ ├── bootstrap-paginator │ │ ├── .gitignore │ │ ├── CHANGELOG │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap-paginator.jquery.json │ │ ├── build.sh │ │ ├── build │ │ │ └── bootstrap-paginator.min.js │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrapv3.css │ │ │ ├── bootstrapv3.min.css │ │ │ ├── documentation.css │ │ │ ├── highlight.js │ │ │ │ ├── arta.css │ │ │ │ ├── ascetic.css │ │ │ │ ├── brown_paper.css │ │ │ │ ├── brown_papersq.png │ │ │ │ ├── dark.css │ │ │ │ ├── default.css │ │ │ │ ├── far.css │ │ │ │ ├── github.css │ │ │ │ ├── googlecode.css │ │ │ │ ├── idea.css │ │ │ │ ├── ir_black.css │ │ │ │ ├── magula.css │ │ │ │ ├── monokai.css │ │ │ │ ├── pojoaque.css │ │ │ │ ├── pojoaque.jpg │ │ │ │ ├── rainbow.css │ │ │ │ ├── school_book.css │ │ │ │ ├── school_book.png │ │ │ │ ├── solarized_dark.css │ │ │ │ ├── solarized_light.css │ │ │ │ ├── sunburst.css │ │ │ │ ├── tomorrow-night-blue.css │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ ├── tomorrow-night.css │ │ │ │ ├── tomorrow.css │ │ │ │ ├── vs.css │ │ │ │ ├── xcode.css │ │ │ │ └── zenburn.css │ │ │ └── qunit-1.11.0.css │ │ ├── documentation │ │ │ └── index.html │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ ├── glyphicons-halflings.png │ │ │ └── illustration.png │ │ ├── lib │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── bootstrapv3.js │ │ │ ├── highlight.pack.js │ │ │ ├── jquery-1.9.1.min.js │ │ │ ├── jquery.history.js │ │ │ └── qunit-1.11.0.js │ │ ├── src │ │ │ └── bootstrap-paginator.js │ │ └── test │ │ │ ├── test.html │ │ │ └── testv3.html │ │ ├── bootstrap-social-buttons │ │ ├── LICENSE │ │ ├── README.md │ │ ├── social-buttons-3.css │ │ ├── social-buttons-3.less │ │ ├── social-buttons.css │ │ └── social-buttons.less │ │ ├── bootstrap-switch │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── examples │ │ │ └── index.html │ │ └── static │ │ │ ├── js │ │ │ ├── bootstrap-switch.js │ │ │ └── bootstrap-switch.min.js │ │ │ ├── less │ │ │ ├── bootstrap-switch.less │ │ │ └── deps │ │ │ │ ├── mixins.less │ │ │ │ └── variables.less │ │ │ └── stylesheets │ │ │ ├── bootstrap-switch.css │ │ │ └── flat-ui-fonts.css │ │ ├── bootstrap-timepicker │ │ ├── .bowerrc │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── component.json │ │ ├── composer.json │ │ ├── css │ │ │ ├── bootstrap-timepicker.css │ │ │ └── bootstrap-timepicker.min.css │ │ ├── js │ │ │ ├── bootstrap-timepicker.js │ │ │ └── bootstrap-timepicker.min.js │ │ ├── less │ │ │ └── timepicker.less │ │ ├── package.json │ │ └── spec │ │ │ └── js │ │ │ ├── KeyboardEventsSpec.js │ │ │ ├── MouseEventsSpec.js │ │ │ ├── TimepickerSpec.js │ │ │ ├── fixtures │ │ │ └── timepicker.html │ │ │ └── helpers │ │ │ ├── SpecHelper.js │ │ │ └── jasmine-jquery.js │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ ├── ckeditor │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── build-config.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── fakeobjects │ │ │ │ └── images │ │ │ │ │ └── spacer.gif │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ └── icon.png │ │ │ │ │ └── icon.png │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── scayt │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ │ │ └── specialchar.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ └── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmp.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ ├── samples │ │ │ ├── ajax.html │ │ │ ├── api.html │ │ │ ├── appendto.html │ │ │ ├── assets │ │ │ │ ├── inlineall │ │ │ │ │ └── logo.png │ │ │ │ ├── outputxhtml │ │ │ │ │ └── outputxhtml.css │ │ │ │ ├── posteddata.php │ │ │ │ ├── sample.css │ │ │ │ ├── sample.jpg │ │ │ │ └── uilanguages │ │ │ │ │ └── languages.js │ │ │ ├── datafiltering.html │ │ │ ├── divreplace.html │ │ │ ├── index.html │ │ │ ├── inlineall.html │ │ │ ├── inlinebycode.html │ │ │ ├── inlinetextarea.html │ │ │ ├── jquery.html │ │ │ ├── plugins │ │ │ │ ├── dialog │ │ │ │ │ ├── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ │ ├── enterkey │ │ │ │ │ └── enterkey.html │ │ │ │ ├── htmlwriter │ │ │ │ │ ├── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ └── outputhtml.html │ │ │ │ ├── magicline │ │ │ │ │ └── magicline.html │ │ │ │ ├── toolbar │ │ │ │ │ └── toolbar.html │ │ │ │ └── wysiwygarea │ │ │ │ │ └── fullpage.html │ │ │ ├── readonly.html │ │ │ ├── replacebyclass.html │ │ │ ├── replacebycode.html │ │ │ ├── sample.css │ │ │ ├── sample.js │ │ │ ├── sample_posteddata.php │ │ │ ├── tabindex.html │ │ │ ├── uicolor.html │ │ │ ├── uilanguages.html │ │ │ └── xhtmlstyle.html │ │ ├── skins │ │ │ └── moono │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── dialog_opera.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ │ └── readme.md │ │ └── styles.js │ │ ├── colorbox │ │ ├── README.md │ │ ├── bower.json │ │ ├── colorbox.ai │ │ ├── colorbox.jquery.json │ │ ├── content │ │ │ ├── ajax.html │ │ │ ├── daisy.jpg │ │ │ ├── daisy@2x.jpg │ │ │ ├── homer.jpg │ │ │ ├── marylou.jpg │ │ │ ├── ohoopee1.jpg │ │ │ ├── ohoopee2.jpg │ │ │ └── ohoopee3.jpg │ │ ├── example1 │ │ │ ├── colorbox.css │ │ │ ├── images │ │ │ │ ├── border.png │ │ │ │ ├── controls.png │ │ │ │ ├── loading.gif │ │ │ │ ├── loading_background.png │ │ │ │ └── overlay.png │ │ │ └── index.html │ │ ├── example2 │ │ │ ├── colorbox.css │ │ │ ├── images │ │ │ │ ├── controls.png │ │ │ │ └── loading.gif │ │ │ └── index.html │ │ ├── example3 │ │ │ ├── colorbox.css │ │ │ ├── images │ │ │ │ ├── controls.png │ │ │ │ └── loading.gif │ │ │ └── index.html │ │ ├── example4 │ │ │ ├── colorbox.css │ │ │ ├── images │ │ │ │ ├── border1.png │ │ │ │ ├── border2.png │ │ │ │ └── loading.gif │ │ │ └── index.html │ │ ├── example5 │ │ │ ├── colorbox.css │ │ │ ├── images │ │ │ │ ├── border.png │ │ │ │ ├── controls.png │ │ │ │ ├── loading.gif │ │ │ │ └── loading_background.png │ │ │ └── index.html │ │ ├── i18n │ │ │ ├── jquery.colorbox-ar.js │ │ │ ├── jquery.colorbox-bg.js │ │ │ ├── jquery.colorbox-cs.js │ │ │ ├── jquery.colorbox-da.js │ │ │ ├── jquery.colorbox-de.js │ │ │ ├── jquery.colorbox-es.js │ │ │ ├── jquery.colorbox-et.js │ │ │ ├── jquery.colorbox-fa.js │ │ │ ├── jquery.colorbox-fi.js │ │ │ ├── jquery.colorbox-fr.js │ │ │ ├── jquery.colorbox-gl.js │ │ │ ├── jquery.colorbox-he.js │ │ │ ├── jquery.colorbox-hr.js │ │ │ ├── jquery.colorbox-hu.js │ │ │ ├── jquery.colorbox-id.js │ │ │ ├── jquery.colorbox-it.js │ │ │ ├── jquery.colorbox-ja.js │ │ │ ├── jquery.colorbox-kr.js │ │ │ ├── jquery.colorbox-lv.js │ │ │ ├── jquery.colorbox-nl.js │ │ │ ├── jquery.colorbox-no.js │ │ │ ├── jquery.colorbox-pl.js │ │ │ ├── jquery.colorbox-pt-br.js │ │ │ ├── jquery.colorbox-ro.js │ │ │ ├── jquery.colorbox-ru.js │ │ │ ├── jquery.colorbox-si.js │ │ │ ├── jquery.colorbox-sk.js │ │ │ ├── jquery.colorbox-sv.js │ │ │ ├── jquery.colorbox-tr.js │ │ │ ├── jquery.colorbox-uk.js │ │ │ └── jquery.colorbox-zh-CN.js │ │ ├── jquery.colorbox-min.js │ │ └── jquery.colorbox.js │ │ ├── css3-animation │ │ └── animations.css │ │ ├── datepicker │ │ ├── css │ │ │ └── datepicker.css │ │ ├── js │ │ │ └── bootstrap-datepicker.js │ │ └── less │ │ │ └── datepicker.less │ │ ├── dropzone │ │ ├── .gitignore │ │ ├── .tagconfig │ │ ├── .travis.yml │ │ ├── AMD_footer │ │ ├── AMD_header │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.coffee │ │ ├── bower.json │ │ ├── component.json │ │ ├── downloads │ │ │ ├── css │ │ │ │ ├── basic.css │ │ │ │ ├── dropzone.css │ │ │ │ └── stylus │ │ │ │ │ ├── basic.styl │ │ │ │ │ └── dropzone.styl │ │ │ ├── dropzone-amd-module.js │ │ │ ├── dropzone-amd-module.min.js │ │ │ ├── dropzone.js │ │ │ ├── dropzone.min.js │ │ │ └── images │ │ │ │ ├── spritemap.png │ │ │ │ └── spritemap@2x.png │ │ ├── index.js │ │ ├── lib │ │ │ └── dropzone.js │ │ ├── npm_publish.sh │ │ ├── package.json │ │ ├── readme.md │ │ ├── src │ │ │ └── dropzone.coffee │ │ └── test │ │ │ ├── test.coffee │ │ │ ├── test.html │ │ │ └── test.js │ │ ├── dynatree │ │ ├── GPL-LICENSE.txt │ │ ├── MIT-License.txt │ │ ├── dist │ │ │ ├── jquery.dynatree-1.2.4.js │ │ │ └── jquery.dynatree.min.js │ │ ├── doc │ │ │ ├── contextmenu │ │ │ │ ├── images │ │ │ │ │ ├── cut.png │ │ │ │ │ ├── door.png │ │ │ │ │ ├── page_white_copy.png │ │ │ │ │ ├── page_white_delete.png │ │ │ │ │ ├── page_white_edit.png │ │ │ │ │ └── page_white_paste.png │ │ │ │ ├── jquery.contextMenu-custom.js │ │ │ │ └── jquery.contextMenu.css │ │ │ ├── dynatree-doc.html │ │ │ ├── dynatree_server.py │ │ │ ├── howto.css │ │ │ ├── howto.js │ │ │ ├── iconInfo_32x32.png │ │ │ ├── iconWarning_32x32.png │ │ │ ├── icons-vista.psp │ │ │ ├── icons-xp.psp │ │ │ ├── icons_layout.ods │ │ │ ├── jq.context │ │ │ │ ├── images │ │ │ │ │ ├── cut.png │ │ │ │ │ ├── door.png │ │ │ │ │ ├── page_white_copy.png │ │ │ │ │ ├── page_white_delete.png │ │ │ │ │ ├── page_white_edit.png │ │ │ │ │ └── page_white_paste.png │ │ │ │ ├── jquery.contextMenu.css │ │ │ │ ├── jquery.contextMenu.js │ │ │ │ └── jquery.ui.position.js │ │ │ ├── jquery.planize.js │ │ │ ├── nav_bg.png │ │ │ ├── prettify.css │ │ │ ├── prettify.js │ │ │ ├── sample-api.html │ │ │ ├── sample-contextmenu.html │ │ │ ├── sample-contextmenu2.html │ │ │ ├── sample-data1.json │ │ │ ├── sample-data2.json │ │ │ ├── sample-data3.json │ │ │ ├── sample-default.html │ │ │ ├── sample-dnd.html │ │ │ ├── sample-dnd2.html │ │ │ ├── sample-dnd3.html │ │ │ ├── sample-effects.html │ │ │ ├── sample-empty.json │ │ │ ├── sample-events.html │ │ │ ├── sample-form.html │ │ │ ├── sample-iframe-1.html │ │ │ ├── sample-iframe.html │ │ │ ├── sample-init-lazy.html │ │ │ ├── sample-inline-edit.html │ │ │ ├── sample-lazy.html │ │ │ ├── sample-minexpand.html │ │ │ ├── sample-multiline.html │ │ │ ├── sample-persist.html │ │ │ ├── sample-pyserver.html │ │ │ ├── sample-quick.html │ │ │ ├── sample-rtl.html │ │ │ ├── sample-select.html │ │ │ ├── sample-theming.html │ │ │ ├── sample-ul.html │ │ │ ├── sample.css │ │ │ ├── sample.js │ │ │ ├── samples-nav.html │ │ │ ├── samples-top.html │ │ │ ├── samples-welcome.html │ │ │ ├── samples.html │ │ │ ├── skin-custom │ │ │ │ ├── custom.css │ │ │ │ ├── customDoc1.gif │ │ │ │ ├── customDoc2.gif │ │ │ │ ├── customFolder1.gif │ │ │ │ ├── doc_with_children.gif │ │ │ │ ├── folder_docs.gif │ │ │ │ ├── folder_images.gif │ │ │ │ └── folder_page.gif │ │ │ ├── test-bench.html │ │ │ ├── test-css.html │ │ │ ├── test-dtd-html4-strict.html │ │ │ ├── test-dtd-html4-transitional.html │ │ │ ├── test-dtd-html5.html │ │ │ ├── test-dtd-none.html │ │ │ ├── test-dtd-xml-strict.html │ │ │ ├── test-dtd-xml-transitional.html │ │ │ ├── test-latest.html │ │ │ ├── test-persist.html │ │ │ ├── test-preload.html │ │ │ ├── test-release.html │ │ │ ├── test-table.html │ │ │ └── test-xhtml.xhtml │ │ ├── grunt.js │ │ ├── index.html │ │ ├── jquery │ │ │ ├── README.txt │ │ │ ├── jquery-ui.custom.js │ │ │ ├── jquery-ui.custom.min.js │ │ │ ├── jquery.cookie.js │ │ │ ├── jquery.js │ │ │ └── jquery.min.js │ │ ├── package.json │ │ ├── src │ │ │ ├── GPL-LICENSE.txt │ │ │ ├── MIT-License.txt │ │ │ ├── jquery.dynatree.js │ │ │ ├── skin-vista │ │ │ │ ├── icons.gif │ │ │ │ ├── loading.gif │ │ │ │ └── ui.dynatree.css │ │ │ └── skin │ │ │ │ ├── icons-rtl.gif │ │ │ │ ├── icons.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── ui.dynatree.css │ │ │ │ ├── vline-rtl.gif │ │ │ │ └── vline.gif │ │ └── tests │ │ │ ├── qunit.css │ │ │ ├── qunit.js │ │ │ ├── sample-data1.json │ │ │ ├── sample-data2.json │ │ │ ├── test-adhoc.html │ │ │ ├── test-bench.html │ │ │ ├── test-dynatree.js │ │ │ ├── test.html │ │ │ └── tests - Shortcut.lnk │ │ ├── excanvas.min.js │ │ ├── flot │ │ ├── API.md │ │ ├── CONTRIBUTING.md │ │ ├── FAQ.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── NEWS.md │ │ ├── PLUGINS.md │ │ ├── README.md │ │ ├── examples │ │ │ ├── ajax │ │ │ │ ├── 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 │ │ │ │ └── index.html │ │ │ ├── annotating │ │ │ │ └── index.html │ │ │ ├── axes-interacting │ │ │ │ └── index.html │ │ │ ├── axes-multiple │ │ │ │ └── index.html │ │ │ ├── axes-time-zones │ │ │ │ ├── date.js │ │ │ │ ├── index.html │ │ │ │ └── tz │ │ │ │ │ ├── africa │ │ │ │ │ ├── antarctica │ │ │ │ │ ├── asia │ │ │ │ │ ├── australasia │ │ │ │ │ ├── backward │ │ │ │ │ ├── etcetera │ │ │ │ │ ├── europe │ │ │ │ │ ├── factory │ │ │ │ │ ├── iso3166.tab │ │ │ │ │ ├── leapseconds │ │ │ │ │ ├── northamerica │ │ │ │ │ ├── pacificnew │ │ │ │ │ ├── solar87 │ │ │ │ │ ├── solar88 │ │ │ │ │ ├── solar89 │ │ │ │ │ ├── southamerica │ │ │ │ │ ├── systemv │ │ │ │ │ ├── yearistype.sh │ │ │ │ │ └── zone.tab │ │ │ ├── axes-time │ │ │ │ └── index.html │ │ │ ├── background.png │ │ │ ├── basic-options │ │ │ │ └── index.html │ │ │ ├── basic-usage │ │ │ │ └── index.html │ │ │ ├── canvas │ │ │ │ └── index.html │ │ │ ├── categories │ │ │ │ └── index.html │ │ │ ├── examples.css │ │ │ ├── image │ │ │ │ ├── hs-2004-27-a-large-web.jpg │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── interacting │ │ │ │ └── index.html │ │ │ ├── navigate │ │ │ │ ├── arrow-down.gif │ │ │ │ ├── arrow-left.gif │ │ │ │ ├── arrow-right.gif │ │ │ │ ├── arrow-up.gif │ │ │ │ └── index.html │ │ │ ├── percentiles │ │ │ │ └── index.html │ │ │ ├── realtime │ │ │ │ └── index.html │ │ │ ├── resize │ │ │ │ └── index.html │ │ │ ├── selection │ │ │ │ └── index.html │ │ │ ├── series-errorbars │ │ │ │ └── index.html │ │ │ ├── series-pie │ │ │ │ └── index.html │ │ │ ├── series-toggle │ │ │ │ └── index.html │ │ │ ├── series-types │ │ │ │ └── index.html │ │ │ ├── shared │ │ │ │ └── jquery-ui │ │ │ │ │ ├── jquery-ui.min.css │ │ │ │ │ └── jquery-ui.min.js │ │ │ ├── stacking │ │ │ │ └── index.html │ │ │ ├── symbols │ │ │ │ └── index.html │ │ │ ├── threshold │ │ │ │ └── index.html │ │ │ ├── tracking │ │ │ │ └── index.html │ │ │ ├── visitors │ │ │ │ └── index.html │ │ │ └── zooming │ │ │ │ └── index.html │ │ ├── excanvas.js │ │ ├── excanvas.min.js │ │ ├── jquery.colorhelpers.js │ │ ├── jquery.colorhelpers.min.js │ │ ├── jquery.flot.canvas.js │ │ ├── jquery.flot.canvas.min.js │ │ ├── jquery.flot.categories.js │ │ ├── jquery.flot.categories.min.js │ │ ├── jquery.flot.crosshair.js │ │ ├── jquery.flot.crosshair.min.js │ │ ├── jquery.flot.errorbars.js │ │ ├── jquery.flot.errorbars.min.js │ │ ├── jquery.flot.fillbetween.js │ │ ├── jquery.flot.fillbetween.min.js │ │ ├── jquery.flot.image.js │ │ ├── jquery.flot.image.min.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.min.js │ │ ├── jquery.flot.navigate.js │ │ ├── jquery.flot.navigate.min.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.pie.min.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.resize.min.js │ │ ├── jquery.flot.selection.js │ │ ├── jquery.flot.selection.min.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.flot.stack.min.js │ │ ├── jquery.flot.symbol.js │ │ ├── jquery.flot.symbol.min.js │ │ ├── jquery.flot.threshold.js │ │ ├── jquery.flot.threshold.min.js │ │ ├── jquery.flot.time.js │ │ ├── jquery.flot.time.min.js │ │ ├── jquery.js │ │ └── jquery.min.js │ │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── spinning.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _spinning.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ ├── fullcalendar │ │ ├── changelog.txt │ │ ├── demos │ │ │ ├── agenda-views.html │ │ │ ├── basic-views.html │ │ │ ├── cupertino │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── 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 │ │ │ │ └── jquery-ui.min.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 │ │ ├── lib │ │ │ ├── jquery-ui.custom.min.js │ │ │ └── jquery.min.js │ │ └── license.txt │ │ ├── gmaps │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── bower.json │ │ ├── examples │ │ │ ├── basic.html │ │ │ ├── context_menu.html │ │ │ ├── custom_controls.html │ │ │ ├── elevation_locations.html │ │ │ ├── elevation_routes.html │ │ │ ├── examples.css │ │ │ ├── fusion_tables.html │ │ │ ├── geocoding.html │ │ │ ├── geofences.html │ │ │ ├── geolocation.html │ │ │ ├── geometry.html │ │ │ ├── kml.html │ │ │ ├── layers.html │ │ │ ├── layers_places.html │ │ │ ├── map_events.html │ │ │ ├── map_types.html │ │ │ ├── marker_clusterer.html │ │ │ ├── markers.html │ │ │ ├── overlay_map_types.html │ │ │ ├── overlays.html │ │ │ ├── polygons.html │ │ │ ├── polylines.html │ │ │ ├── routes.html │ │ │ ├── routes_advanced.html │ │ │ ├── static.html │ │ │ ├── static_markers.html │ │ │ ├── static_polylines.html │ │ │ ├── styled_maps.html │ │ │ └── travel_route.html │ │ ├── gmaps.js │ │ ├── lib │ │ │ ├── gmaps.controls.js │ │ │ ├── gmaps.core.js │ │ │ ├── gmaps.events.js │ │ │ ├── gmaps.geofences.js │ │ │ ├── gmaps.geometry.js │ │ │ ├── gmaps.layers.js │ │ │ ├── gmaps.map_types.js │ │ │ ├── gmaps.markers.js │ │ │ ├── gmaps.native_extensions.js │ │ │ ├── gmaps.overlays.js │ │ │ ├── gmaps.routes.js │ │ │ ├── gmaps.static.js │ │ │ ├── gmaps.streetview.js │ │ │ ├── gmaps.styles.js │ │ │ └── gmaps.utils.js │ │ ├── package.json │ │ └── test │ │ │ ├── index.html │ │ │ ├── lib │ │ │ ├── jasmine-html.js │ │ │ ├── jasmine.css │ │ │ └── jasmine.js │ │ │ ├── spec │ │ │ ├── EventSpec.js │ │ │ ├── GeometrySpec.js │ │ │ ├── LayerSpec.js │ │ │ ├── MapSpec.js │ │ │ ├── MarkerSpec.js │ │ │ ├── OverlaySpec.js │ │ │ ├── RouteSpec.js │ │ │ ├── StreetViewSpec.js │ │ │ └── StyleSpec.js │ │ │ ├── style.css │ │ │ └── template │ │ │ └── jasmine-gmaps.html │ │ ├── gritter │ │ ├── README.markdown │ │ ├── css │ │ │ └── jquery.gritter.css │ │ ├── images │ │ │ ├── gritter-light.png │ │ │ ├── gritter-long.png │ │ │ ├── gritter.png │ │ │ ├── ie-spacer.gif │ │ │ └── trees.jpg │ │ ├── index.html │ │ ├── js │ │ │ ├── jquery.gritter.js │ │ │ └── jquery.gritter.min.js │ │ └── package.json │ │ ├── iCheck │ │ ├── README.md │ │ ├── demo │ │ │ ├── css │ │ │ │ ├── custom.css │ │ │ │ ├── custom.styl │ │ │ │ ├── icheck.png │ │ │ │ ├── ie │ │ │ │ │ ├── arrow-bottom.png │ │ │ │ │ ├── arrow-top.png │ │ │ │ │ ├── header-line.png │ │ │ │ │ ├── icon-fork.png │ │ │ │ │ ├── icon-github.png │ │ │ │ │ ├── icon-lab.png │ │ │ │ │ ├── icon-options.png │ │ │ │ │ └── icon-star.png │ │ │ │ ├── montserrat-bold.eot │ │ │ │ ├── montserrat-bold.svg │ │ │ │ ├── montserrat-bold.ttf │ │ │ │ ├── montserrat-bold.woff │ │ │ │ ├── montserrat-regular.eot │ │ │ │ ├── montserrat-regular.svg │ │ │ │ ├── montserrat-regular.ttf │ │ │ │ ├── montserrat-regular.woff │ │ │ │ └── normalize.css │ │ │ ├── index.html │ │ │ └── js │ │ │ │ ├── custom.js │ │ │ │ ├── jquery.js │ │ │ │ └── zepto.js │ │ ├── jquery.icheck.js │ │ ├── jquery.icheck.min.js │ │ ├── skins │ │ │ ├── all.css │ │ │ ├── flat │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── flat.css │ │ │ │ ├── flat.png │ │ │ │ ├── flat@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── futurico │ │ │ │ ├── futurico.css │ │ │ │ ├── futurico.png │ │ │ │ └── futurico@2x.png │ │ │ ├── line │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── blue.css │ │ │ │ ├── green.css │ │ │ │ ├── grey.css │ │ │ │ ├── line.css │ │ │ │ ├── line.png │ │ │ │ ├── line@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── pink.css │ │ │ │ ├── purple.css │ │ │ │ ├── red.css │ │ │ │ └── yellow.css │ │ │ ├── minimal │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── minimal.css │ │ │ │ ├── minimal.png │ │ │ │ ├── minimal@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── polaris │ │ │ │ ├── polaris.css │ │ │ │ ├── polaris.png │ │ │ │ └── polaris@2x.png │ │ │ ├── square │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── square.css │ │ │ │ ├── square.png │ │ │ │ ├── square@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ └── ui_sliders.html │ │ ├── zepto.icheck.js │ │ └── zepto.icheck.min.js │ │ ├── jQRangeSlider │ │ ├── GPL-License.txt │ │ ├── History.md │ │ ├── MIT-License.txt │ │ ├── Readme.md │ │ ├── css │ │ │ ├── classic-min.css │ │ │ ├── classic.css │ │ │ ├── iThing-min.css │ │ │ ├── iThing.css │ │ │ └── icons-classic │ │ │ │ ├── label.png │ │ │ │ ├── resultset_next.png │ │ │ │ └── resultset_previous.png │ │ ├── demo │ │ │ ├── dateSliderDemo.js │ │ │ ├── demo.js │ │ │ ├── editSliderDemo.js │ │ │ ├── img │ │ │ │ ├── calendar.png │ │ │ │ ├── classicTheme.png │ │ │ │ └── iThingTheme.png │ │ │ ├── index.html │ │ │ ├── lib │ │ │ │ └── jquery-ui │ │ │ │ │ ├── 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.10.custom.css │ │ │ │ │ └── js │ │ │ │ │ └── jquery-ui-1.8.16.custom.min.js │ │ │ ├── sliderDemo.js │ │ │ └── style.css │ │ ├── jQAllRangeSliders-min.js │ │ ├── jQAllRangeSliders-withRuler-min.js │ │ ├── jQDateRangeSlider-min.js │ │ ├── jQDateRangeSlider-withRuler-min.js │ │ ├── jQEditRangeSlider-min.js │ │ ├── jQEditRangeSlider-withRuler-min.js │ │ ├── jQRangeSlider-min.js │ │ ├── jQRangeSlider-withRuler-min.js │ │ └── lib │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── jquery-ui-1.8.16.custom.min.js │ │ │ ├── jquery-ui.license.txt │ │ │ ├── jquery.license.txt │ │ │ ├── jquery.mousewheel.license.txt │ │ │ └── jquery.mousewheel.min.js │ │ ├── jQuery-File-Upload │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── angularjs.html │ │ ├── basic-plus.html │ │ ├── basic.html │ │ ├── blueimp-file-upload.jquery.json │ │ ├── bower.json │ │ ├── cors │ │ │ ├── postmessage.html │ │ │ └── result.html │ │ ├── css │ │ │ ├── demo-ie8.css │ │ │ ├── demo.css │ │ │ ├── jquery.fileupload-ui-noscript.css │ │ │ ├── jquery.fileupload-ui.css │ │ │ └── style.css │ │ ├── img │ │ │ ├── loading.gif │ │ │ └── progressbar.gif │ │ ├── index.html │ │ ├── jquery-ui.html │ │ ├── js │ │ │ ├── app.js │ │ │ ├── cors │ │ │ │ ├── jquery.postmessage-transport.js │ │ │ │ └── jquery.xdr-transport.js │ │ │ ├── jquery.fileupload-angular.js │ │ │ ├── jquery.fileupload-audio.js │ │ │ ├── jquery.fileupload-image.js │ │ │ ├── jquery.fileupload-jquery-ui.js │ │ │ ├── jquery.fileupload-process.js │ │ │ ├── jquery.fileupload-ui.js │ │ │ ├── jquery.fileupload-validate.js │ │ │ ├── jquery.fileupload-video.js │ │ │ ├── jquery.fileupload.js │ │ │ ├── jquery.iframe-transport.js │ │ │ ├── main.js │ │ │ └── vendor │ │ │ │ └── jquery.ui.widget.js │ │ ├── package.json │ │ ├── server │ │ │ ├── gae-go │ │ │ │ ├── app.yaml │ │ │ │ ├── app │ │ │ │ │ └── main.go │ │ │ │ └── static │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── robots.txt │ │ │ ├── gae-python │ │ │ │ ├── app.yaml │ │ │ │ ├── main.py │ │ │ │ └── static │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── robots.txt │ │ │ ├── node │ │ │ │ ├── .gitignore │ │ │ │ ├── package.json │ │ │ │ ├── public │ │ │ │ │ └── files │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── server.js │ │ │ │ └── tmp │ │ │ │ │ └── .gitignore │ │ │ └── php │ │ │ │ ├── UploadHandler.php │ │ │ │ ├── files │ │ │ │ ├── .gitignore │ │ │ │ └── .htaccess │ │ │ │ └── index.php │ │ └── test │ │ │ ├── index.html │ │ │ └── test.js │ │ ├── jQuery-Knob │ │ ├── README.md │ │ ├── index.html │ │ ├── js │ │ │ ├── jquery.knob-rtl.js │ │ │ └── jquery.knob.js │ │ └── knob.jquery.json │ │ ├── jQuery-Smart-Wizard │ │ ├── README.md │ │ ├── images │ │ │ └── loader.gif │ │ ├── index.htm │ │ ├── js │ │ │ ├── jquery-2.0.0.min.js │ │ │ └── jquery.smartWizard.js │ │ ├── more_examples │ │ │ ├── services │ │ │ │ └── service.php │ │ │ ├── smartwizard2-ajax.htm │ │ │ └── smartwizard2-validation.php │ │ ├── smartwizard-autostep.htm │ │ ├── smartwizard2-ajax.htm │ │ ├── smartwizard2-multiple.htm │ │ ├── smartwizard2-validation.htm │ │ ├── smartwizard2-vertical.htm │ │ └── styles │ │ │ ├── demo_style.css │ │ │ ├── smart_wizard.css │ │ │ └── smart_wizard_vertical.css │ │ ├── jQuery-Tags-Input │ │ ├── README.md │ │ ├── bower.json │ │ ├── example.html │ │ ├── jquery.tagsinput.css │ │ ├── jquery.tagsinput.js │ │ ├── jquery.tagsinput.min.js │ │ └── test │ │ │ ├── fake_json_endpoint.html │ │ │ └── fake_plaintext_endpoint.html │ │ ├── jqGrid │ │ ├── css │ │ │ ├── ellipsis-xbl.xml │ │ │ └── ui.jqgrid.css │ │ ├── js │ │ │ ├── Changes.txt │ │ │ ├── i18n │ │ │ │ ├── grid.locale-ar.js │ │ │ │ ├── grid.locale-bg.js │ │ │ │ ├── grid.locale-bg1251.js │ │ │ │ ├── grid.locale-cat.js │ │ │ │ ├── grid.locale-cn.js │ │ │ │ ├── grid.locale-cs.js │ │ │ │ ├── grid.locale-da.js │ │ │ │ ├── grid.locale-de.js │ │ │ │ ├── grid.locale-dk.js │ │ │ │ ├── grid.locale-el.js │ │ │ │ ├── grid.locale-en.js │ │ │ │ ├── grid.locale-es.js │ │ │ │ ├── grid.locale-fa.js │ │ │ │ ├── grid.locale-fi.js │ │ │ │ ├── grid.locale-fr.js │ │ │ │ ├── grid.locale-gl.js │ │ │ │ ├── grid.locale-he.js │ │ │ │ ├── grid.locale-hr.js │ │ │ │ ├── grid.locale-hr1250.js │ │ │ │ ├── grid.locale-hu.js │ │ │ │ ├── grid.locale-id.js │ │ │ │ ├── grid.locale-is.js │ │ │ │ ├── grid.locale-it.js │ │ │ │ ├── grid.locale-ja.js │ │ │ │ ├── grid.locale-kr.js │ │ │ │ ├── grid.locale-lt.js │ │ │ │ ├── grid.locale-mne.js │ │ │ │ ├── grid.locale-nl.js │ │ │ │ ├── grid.locale-no.js │ │ │ │ ├── grid.locale-pl.js │ │ │ │ ├── grid.locale-pt-br.js │ │ │ │ ├── grid.locale-pt.js │ │ │ │ ├── grid.locale-ro.js │ │ │ │ ├── grid.locale-ru.js │ │ │ │ ├── grid.locale-sk.js │ │ │ │ ├── grid.locale-sr-latin.js │ │ │ │ ├── grid.locale-sr.js │ │ │ │ ├── grid.locale-sv.js │ │ │ │ ├── grid.locale-th.js │ │ │ │ ├── grid.locale-tr.js │ │ │ │ ├── grid.locale-tw.js │ │ │ │ ├── grid.locale-ua.js │ │ │ │ └── grid.locale-vi.js │ │ │ ├── install.txt │ │ │ ├── jquery-1.7.2.min.js │ │ │ ├── jquery.jqGrid.min.js │ │ │ └── jquery.jqGrid.src.js │ │ ├── plugins │ │ │ ├── grid.addons.js │ │ │ ├── grid.postext.js │ │ │ ├── grid.setcolumns.js │ │ │ ├── jquery.contextmenu.js │ │ │ ├── jquery.searchFilter.js │ │ │ ├── jquery.tablednd.js │ │ │ ├── searchFilter.css │ │ │ ├── ui.multiselect.css │ │ │ └── ui.multiselect.js │ │ └── src │ │ │ ├── JsonXml.js │ │ │ ├── css │ │ │ ├── ellipsis-xbl.xml │ │ │ ├── ui.jqgrid.css │ │ │ └── ui.multiselect.css │ │ │ ├── grid.base.js │ │ │ ├── grid.celledit.js │ │ │ ├── grid.common.js │ │ │ ├── grid.custom.js │ │ │ ├── grid.filter.js │ │ │ ├── grid.formedit.js │ │ │ ├── grid.grouping.js │ │ │ ├── grid.import.js │ │ │ ├── grid.inlinedit.js │ │ │ ├── grid.jqueryui.js │ │ │ ├── grid.loader.js │ │ │ ├── grid.subgrid.js │ │ │ ├── grid.tbltogrid.js │ │ │ ├── grid.treegrid.js │ │ │ ├── i18n │ │ │ ├── grid.locale-ar.js │ │ │ ├── grid.locale-bg.js │ │ │ ├── grid.locale-bg1251.js │ │ │ ├── grid.locale-cat.js │ │ │ ├── grid.locale-cn.js │ │ │ ├── grid.locale-cs.js │ │ │ ├── grid.locale-da.js │ │ │ ├── grid.locale-de.js │ │ │ ├── grid.locale-dk.js │ │ │ ├── grid.locale-el.js │ │ │ ├── grid.locale-en.js │ │ │ ├── grid.locale-es.js │ │ │ ├── grid.locale-fa.js │ │ │ ├── grid.locale-fi.js │ │ │ ├── grid.locale-fr.js │ │ │ ├── grid.locale-gl.js │ │ │ ├── grid.locale-he.js │ │ │ ├── grid.locale-hr.js │ │ │ ├── grid.locale-hr1250.js │ │ │ ├── grid.locale-hu.js │ │ │ ├── grid.locale-id.js │ │ │ ├── grid.locale-is.js │ │ │ ├── grid.locale-it.js │ │ │ ├── grid.locale-ja.js │ │ │ ├── grid.locale-kr.js │ │ │ ├── grid.locale-lt.js │ │ │ ├── grid.locale-mne.js │ │ │ ├── grid.locale-nl.js │ │ │ ├── grid.locale-no.js │ │ │ ├── grid.locale-pl.js │ │ │ ├── grid.locale-pt-br.js │ │ │ ├── grid.locale-pt.js │ │ │ ├── grid.locale-ro.js │ │ │ ├── grid.locale-ru.js │ │ │ ├── grid.locale-sk.js │ │ │ ├── grid.locale-sr-latin.js │ │ │ ├── grid.locale-sr.js │ │ │ ├── grid.locale-sv.js │ │ │ ├── grid.locale-th.js │ │ │ ├── grid.locale-tr.js │ │ │ ├── grid.locale-tw.js │ │ │ ├── grid.locale-ua.js │ │ │ └── grid.locale-vi.js │ │ │ ├── jqDnR.js │ │ │ ├── jqModal.js │ │ │ └── jquery.fmatter.js │ │ ├── jquery-address │ │ ├── address.css │ │ └── address.js │ │ ├── jquery-cookie │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── .tm_properties │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── MIT-LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── cookie.jquery.json │ │ ├── jquery.cookie.js │ │ ├── package.json │ │ └── test │ │ │ ├── index.html │ │ │ ├── malformed_cookie.html │ │ │ ├── server.js │ │ │ └── tests.js │ │ ├── jquery-easy-pie-chart │ │ ├── Makefile │ │ ├── Readme.md │ │ ├── examples │ │ │ ├── excanvas.js │ │ │ ├── index.html │ │ │ └── style.css │ │ ├── img │ │ │ └── easy-pie-chart.png │ │ ├── jquery.easy-pie-chart.coffee │ │ └── jquery.easy-pie-chart.js │ │ ├── jquery-inputlimiter │ │ ├── LICENSE.txt │ │ ├── demo.htm │ │ ├── jquery-1.7.2.min.js │ │ ├── jquery.inputlimiter.1.0.css │ │ ├── jquery.inputlimiter.1.3.1.js │ │ └── jquery.inputlimiter.1.3.1.min.js │ │ ├── jquery-maskmoney │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.html │ │ ├── jquery.maskMoney.js │ │ └── maskmoney.jquery.json │ │ ├── jquery-migrate │ │ └── jquery-migrate-1.2.1.min.js │ │ ├── jquery-mockjax │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── jquery.mockjax.js │ │ ├── lib │ │ │ ├── jquery-1.3.2.js │ │ │ ├── jquery-1.4.4.js │ │ │ ├── jquery-1.5.2.js │ │ │ ├── jquery-1.6.4.js │ │ │ ├── jquery-1.7.2.js │ │ │ ├── jquery-1.8.3.js │ │ │ ├── jquery-1.9.1.js │ │ │ ├── jquery-2.0.0.js │ │ │ ├── jquery.xmldom.js │ │ │ ├── json2.js │ │ │ ├── qunit.css │ │ │ ├── qunit.js │ │ │ └── testswarm.js │ │ ├── package.json │ │ ├── test │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── test.js │ │ │ ├── test.json │ │ │ ├── test_jsonp.js │ │ │ ├── test_proxy.json │ │ │ └── test_script.js │ │ └── testswarm.json │ │ ├── jquery-ui-touch-punch │ │ ├── README.md │ │ ├── jquery.ui.touch-punch.js │ │ └── jquery.ui.touch-punch.min.js │ │ ├── jquery-ui │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.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_gloss-wave_35_f6a828_500x100.png │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── jquery-ui-1.10.1.custom.css │ │ ├── jquery-ui-1.10.1.custom.min.css │ │ ├── jquery-ui-1.10.1.custom.min.js │ │ ├── jquery-ui-1.10.2.custom.min.js │ │ └── jquery-ui-1.9.2.custom.min.js │ │ ├── jquery-validation │ │ ├── README.md │ │ ├── changelog.txt │ │ ├── demo │ │ │ ├── ajaxSubmit-integration-demo.html │ │ │ ├── captcha │ │ │ │ ├── captcha.js │ │ │ │ ├── fonts │ │ │ │ │ └── Anorexia.ttf │ │ │ │ ├── image_req.php │ │ │ │ ├── images │ │ │ │ │ ├── button.png │ │ │ │ │ └── image.php │ │ │ │ ├── index.php │ │ │ │ ├── newsession.php │ │ │ │ ├── process.php │ │ │ │ ├── rand.php │ │ │ │ └── style.css │ │ │ ├── css │ │ │ │ ├── cmxform.css │ │ │ │ ├── cmxformTemplate.css │ │ │ │ ├── core.css │ │ │ │ ├── reset.css │ │ │ │ └── screen.css │ │ │ ├── custom-messages-data-demo.html │ │ │ ├── custom-methods-demo.html │ │ │ ├── dynamic-totals.html │ │ │ ├── errorcontainer-demo.html │ │ │ ├── file_input.html │ │ │ ├── images │ │ │ │ ├── bg.gif │ │ │ │ ├── checked.gif │ │ │ │ ├── cmxform-divider.gif │ │ │ │ ├── cmxform-fieldset.gif │ │ │ │ ├── loading.gif │ │ │ │ └── unchecked.gif │ │ │ ├── index.html │ │ │ ├── jquerymobile.html │ │ │ ├── login │ │ │ │ ├── images │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── header1.jpg │ │ │ │ │ ├── page.gif │ │ │ │ │ └── required_star.gif │ │ │ │ ├── index.html │ │ │ │ └── screen.css │ │ │ ├── marketo │ │ │ │ ├── images │ │ │ │ │ ├── backRequiredGray.gif │ │ │ │ │ ├── back_green-fade.gif │ │ │ │ │ ├── back_nav_blue.gif │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── button-submit.gif │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── help.png │ │ │ │ │ ├── left-nav-callout-long.png │ │ │ │ │ ├── login-sprite.gif │ │ │ │ │ ├── logo_marketo.gif │ │ │ │ │ ├── sf.png │ │ │ │ │ ├── step1-24.gif │ │ │ │ │ ├── step2-24.gif │ │ │ │ │ ├── step3-24.gif │ │ │ │ │ ├── tab-sprite.gif │ │ │ │ │ ├── tab_green.gif │ │ │ │ │ ├── time.png │ │ │ │ │ ├── toggle.gif │ │ │ │ │ └── warning.gif │ │ │ │ ├── index.html │ │ │ │ ├── jquery.maskedinput.js │ │ │ │ ├── mktSignup.js │ │ │ │ ├── step2.htm │ │ │ │ └── stylesheet.css │ │ │ ├── milk │ │ │ │ ├── bg.gif │ │ │ │ ├── index.html │ │ │ │ ├── left_white.png │ │ │ │ ├── milk.css │ │ │ │ ├── milk.png │ │ │ │ └── right_white.png │ │ │ ├── multipart │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── jquery.maskedinput-1.0.js │ │ │ │ │ ├── ui.accordion.js │ │ │ │ │ └── ui.core.js │ │ │ │ └── style.css │ │ │ ├── radio-checkbox-select-demo.html │ │ │ ├── tabs │ │ │ │ └── index.html │ │ │ ├── themerollered.html │ │ │ └── tinymce │ │ │ │ ├── index.html │ │ │ │ ├── themes │ │ │ │ └── simple │ │ │ │ │ ├── editor_template.js │ │ │ │ │ ├── img │ │ │ │ │ └── icons.gif │ │ │ │ │ ├── langs │ │ │ │ │ └── en.js │ │ │ │ │ └── skins │ │ │ │ │ └── default │ │ │ │ │ └── ui.css │ │ │ │ └── tiny_mce.js │ │ ├── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ ├── lib │ │ │ ├── jquery-1.6.4.js │ │ │ ├── jquery-1.7.2.js │ │ │ ├── jquery-1.8.3.js │ │ │ ├── jquery-1.9.0.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.js │ │ │ └── jquery.mockjax.js │ │ ├── localization │ │ │ ├── messages_ar.js │ │ │ ├── messages_bg.js │ │ │ ├── messages_ca.js │ │ │ ├── messages_cs.js │ │ │ ├── messages_da.js │ │ │ ├── messages_de.js │ │ │ ├── messages_el.js │ │ │ ├── messages_es.js │ │ │ ├── messages_et.js │ │ │ ├── messages_eu.js │ │ │ ├── messages_fa.js │ │ │ ├── messages_fi.js │ │ │ ├── messages_fr.js │ │ │ ├── messages_he.js │ │ │ ├── messages_hr.js │ │ │ ├── messages_hu.js │ │ │ ├── messages_it.js │ │ │ ├── messages_ja.js │ │ │ ├── messages_ka.js │ │ │ ├── messages_kk.js │ │ │ ├── messages_ko.js │ │ │ ├── messages_lt.js │ │ │ ├── messages_lv.js │ │ │ ├── messages_my.js │ │ │ ├── messages_nl.js │ │ │ ├── messages_no.js │ │ │ ├── messages_pl.js │ │ │ ├── messages_pt_BR.js │ │ │ ├── messages_pt_PT.js │ │ │ ├── messages_ro.js │ │ │ ├── messages_ru.js │ │ │ ├── messages_si.js │ │ │ ├── messages_sk.js │ │ │ ├── messages_sl.js │ │ │ ├── messages_sr.js │ │ │ ├── messages_sv.js │ │ │ ├── messages_th.js │ │ │ ├── messages_tr.js │ │ │ ├── messages_uk.js │ │ │ ├── messages_vi.js │ │ │ ├── messages_zh.js │ │ │ ├── messages_zh_TW.js │ │ │ ├── methods_de.js │ │ │ ├── methods_nl.js │ │ │ └── methods_pt.js │ │ ├── package.json │ │ └── test │ │ │ ├── events.html │ │ │ ├── firebug │ │ │ ├── errorIcon.png │ │ │ ├── firebug.css │ │ │ ├── firebug.html │ │ │ ├── firebug.js │ │ │ ├── firebugx.js │ │ │ ├── infoIcon.png │ │ │ └── warningIcon.png │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── large.html │ │ │ ├── messages.js │ │ │ ├── methods.js │ │ │ ├── qunit │ │ │ ├── qunit.css │ │ │ └── qunit.js │ │ │ ├── rules.js │ │ │ ├── selects │ │ │ └── index.html │ │ │ ├── tabs.html │ │ │ └── test.js │ │ ├── jquery.maskedinput │ │ ├── .gitignore │ │ ├── Jakefile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── demo │ │ │ ├── datepicker.html │ │ │ └── index.html │ │ ├── dist │ │ │ ├── jquery.maskedinput.js │ │ │ └── jquery.maskedinput.min.js │ │ ├── lib │ │ │ ├── jquery-1.8.3.min.js │ │ │ └── jquery-1.9.0.min.js │ │ ├── maskedinput.jquery.json │ │ ├── plugin.json │ │ ├── spec │ │ │ ├── Backspace.Spec.js │ │ │ ├── Delete.spec.js │ │ │ ├── Escape.Spec.js │ │ │ ├── Focus.Spec.js │ │ │ ├── Paste.Spec.js │ │ │ ├── Raw.Spec.js │ │ │ ├── Setup.Spec.js │ │ │ ├── SpecRunner.html │ │ │ ├── Typing.Spec.js │ │ │ └── lib │ │ │ │ ├── jasmine-species │ │ │ │ ├── BSD.LICENSE │ │ │ │ ├── jasmine-be-calm.css │ │ │ │ ├── jasmine-grammar.js │ │ │ │ ├── jasmine-reporting.js │ │ │ │ └── version.json │ │ │ │ ├── jasmine │ │ │ │ ├── MIT.LICENSE │ │ │ │ ├── jasmine-html.js │ │ │ │ ├── jasmine.css │ │ │ │ └── jasmine.js │ │ │ │ ├── jquery.keymasher.js │ │ │ │ └── matchers.js │ │ ├── src │ │ │ └── jquery.maskedinput.js │ │ └── templates │ │ │ └── jquery.maskedinput.template │ │ ├── jquery.pulsate │ │ ├── jquery.pulsate.js │ │ └── jquery.pulsate.min.js │ │ ├── jquery.sparkline │ │ └── jquery.sparkline.js │ │ ├── kindeditor │ │ ├── examples │ │ │ ├── auto-height.html │ │ │ ├── colorpicker.html │ │ │ ├── custom-plugin.html │ │ │ ├── custom-theme.html │ │ │ ├── default.html │ │ │ ├── dialog.html │ │ │ ├── dynamic-load.html │ │ │ ├── file-dialog.html │ │ │ ├── file-manager.html │ │ │ ├── filter-mode.html │ │ │ ├── image-dialog.html │ │ │ ├── index.css │ │ │ ├── index.html │ │ │ ├── jquery-ui.html │ │ │ ├── jquery-ui │ │ │ │ ├── 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.9.2.custom.css │ │ │ │ │ │ └── jquery-ui-1.9.2.custom.min.css │ │ │ │ └── js │ │ │ │ │ ├── jquery-ui-1.9.2.custom.js │ │ │ │ │ └── jquery-ui-1.9.2.custom.min.js │ │ │ ├── jquery.html │ │ │ ├── jquery.js │ │ │ ├── multi-image-dialog.html │ │ │ ├── multi-language.html │ │ │ ├── newline.html │ │ │ ├── node.html │ │ │ ├── paste-type.html │ │ │ ├── qqstyle.html │ │ │ ├── readonly.html │ │ │ ├── simple.html │ │ │ ├── uploadbutton.html │ │ │ ├── url-type.html │ │ │ └── word-count.html │ │ ├── jsp │ │ │ ├── README.txt │ │ │ ├── demo.jsp │ │ │ ├── file_manager_json.jsp │ │ │ └── upload_json.jsp │ │ ├── kindeditor-all-min.js │ │ ├── kindeditor-all.js │ │ ├── kindeditor-min.js │ │ ├── kindeditor.js │ │ ├── lang │ │ │ ├── ar.js │ │ │ ├── en.js │ │ │ ├── ko.js │ │ │ ├── zh_CN.js │ │ │ └── zh_TW.js │ │ ├── license.txt │ │ ├── plugins │ │ │ ├── anchor │ │ │ │ └── anchor.js │ │ │ ├── autoheight │ │ │ │ └── autoheight.js │ │ │ ├── baidumap │ │ │ │ ├── baidumap.js │ │ │ │ ├── index.html │ │ │ │ └── map.html │ │ │ ├── clearhtml │ │ │ │ └── clearhtml.js │ │ │ ├── code │ │ │ │ ├── code.js │ │ │ │ ├── prettify.css │ │ │ │ └── prettify.js │ │ │ ├── emoticons │ │ │ │ ├── emoticons.js │ │ │ │ └── images │ │ │ │ │ ├── 0.gif │ │ │ │ │ ├── 1.gif │ │ │ │ │ ├── 10.gif │ │ │ │ │ ├── 100.gif │ │ │ │ │ ├── 101.gif │ │ │ │ │ ├── 102.gif │ │ │ │ │ ├── 103.gif │ │ │ │ │ ├── 104.gif │ │ │ │ │ ├── 105.gif │ │ │ │ │ ├── 106.gif │ │ │ │ │ ├── 107.gif │ │ │ │ │ ├── 108.gif │ │ │ │ │ ├── 109.gif │ │ │ │ │ ├── 11.gif │ │ │ │ │ ├── 110.gif │ │ │ │ │ ├── 111.gif │ │ │ │ │ ├── 112.gif │ │ │ │ │ ├── 113.gif │ │ │ │ │ ├── 114.gif │ │ │ │ │ ├── 115.gif │ │ │ │ │ ├── 116.gif │ │ │ │ │ ├── 117.gif │ │ │ │ │ ├── 118.gif │ │ │ │ │ ├── 119.gif │ │ │ │ │ ├── 12.gif │ │ │ │ │ ├── 120.gif │ │ │ │ │ ├── 121.gif │ │ │ │ │ ├── 122.gif │ │ │ │ │ ├── 123.gif │ │ │ │ │ ├── 124.gif │ │ │ │ │ ├── 125.gif │ │ │ │ │ ├── 126.gif │ │ │ │ │ ├── 127.gif │ │ │ │ │ ├── 128.gif │ │ │ │ │ ├── 129.gif │ │ │ │ │ ├── 13.gif │ │ │ │ │ ├── 130.gif │ │ │ │ │ ├── 131.gif │ │ │ │ │ ├── 132.gif │ │ │ │ │ ├── 133.gif │ │ │ │ │ ├── 134.gif │ │ │ │ │ ├── 14.gif │ │ │ │ │ ├── 15.gif │ │ │ │ │ ├── 16.gif │ │ │ │ │ ├── 17.gif │ │ │ │ │ ├── 18.gif │ │ │ │ │ ├── 19.gif │ │ │ │ │ ├── 2.gif │ │ │ │ │ ├── 20.gif │ │ │ │ │ ├── 21.gif │ │ │ │ │ ├── 22.gif │ │ │ │ │ ├── 23.gif │ │ │ │ │ ├── 24.gif │ │ │ │ │ ├── 25.gif │ │ │ │ │ ├── 26.gif │ │ │ │ │ ├── 27.gif │ │ │ │ │ ├── 28.gif │ │ │ │ │ ├── 29.gif │ │ │ │ │ ├── 3.gif │ │ │ │ │ ├── 30.gif │ │ │ │ │ ├── 31.gif │ │ │ │ │ ├── 32.gif │ │ │ │ │ ├── 33.gif │ │ │ │ │ ├── 34.gif │ │ │ │ │ ├── 35.gif │ │ │ │ │ ├── 36.gif │ │ │ │ │ ├── 37.gif │ │ │ │ │ ├── 38.gif │ │ │ │ │ ├── 39.gif │ │ │ │ │ ├── 4.gif │ │ │ │ │ ├── 40.gif │ │ │ │ │ ├── 41.gif │ │ │ │ │ ├── 42.gif │ │ │ │ │ ├── 43.gif │ │ │ │ │ ├── 44.gif │ │ │ │ │ ├── 45.gif │ │ │ │ │ ├── 46.gif │ │ │ │ │ ├── 47.gif │ │ │ │ │ ├── 48.gif │ │ │ │ │ ├── 49.gif │ │ │ │ │ ├── 5.gif │ │ │ │ │ ├── 50.gif │ │ │ │ │ ├── 51.gif │ │ │ │ │ ├── 52.gif │ │ │ │ │ ├── 53.gif │ │ │ │ │ ├── 54.gif │ │ │ │ │ ├── 55.gif │ │ │ │ │ ├── 56.gif │ │ │ │ │ ├── 57.gif │ │ │ │ │ ├── 58.gif │ │ │ │ │ ├── 59.gif │ │ │ │ │ ├── 6.gif │ │ │ │ │ ├── 60.gif │ │ │ │ │ ├── 61.gif │ │ │ │ │ ├── 62.gif │ │ │ │ │ ├── 63.gif │ │ │ │ │ ├── 64.gif │ │ │ │ │ ├── 65.gif │ │ │ │ │ ├── 66.gif │ │ │ │ │ ├── 67.gif │ │ │ │ │ ├── 68.gif │ │ │ │ │ ├── 69.gif │ │ │ │ │ ├── 7.gif │ │ │ │ │ ├── 70.gif │ │ │ │ │ ├── 71.gif │ │ │ │ │ ├── 72.gif │ │ │ │ │ ├── 73.gif │ │ │ │ │ ├── 74.gif │ │ │ │ │ ├── 75.gif │ │ │ │ │ ├── 76.gif │ │ │ │ │ ├── 77.gif │ │ │ │ │ ├── 78.gif │ │ │ │ │ ├── 79.gif │ │ │ │ │ ├── 8.gif │ │ │ │ │ ├── 80.gif │ │ │ │ │ ├── 81.gif │ │ │ │ │ ├── 82.gif │ │ │ │ │ ├── 83.gif │ │ │ │ │ ├── 84.gif │ │ │ │ │ ├── 85.gif │ │ │ │ │ ├── 86.gif │ │ │ │ │ ├── 87.gif │ │ │ │ │ ├── 88.gif │ │ │ │ │ ├── 89.gif │ │ │ │ │ ├── 9.gif │ │ │ │ │ ├── 90.gif │ │ │ │ │ ├── 91.gif │ │ │ │ │ ├── 92.gif │ │ │ │ │ ├── 93.gif │ │ │ │ │ ├── 94.gif │ │ │ │ │ ├── 95.gif │ │ │ │ │ ├── 96.gif │ │ │ │ │ ├── 97.gif │ │ │ │ │ ├── 98.gif │ │ │ │ │ ├── 99.gif │ │ │ │ │ └── static.gif │ │ │ ├── filemanager │ │ │ │ ├── filemanager.js │ │ │ │ └── images │ │ │ │ │ ├── file-16.gif │ │ │ │ │ ├── file-64.gif │ │ │ │ │ ├── folder-16.gif │ │ │ │ │ ├── folder-64.gif │ │ │ │ │ └── go-up.gif │ │ │ ├── flash │ │ │ │ └── flash.js │ │ │ ├── image │ │ │ │ ├── image.js │ │ │ │ └── images │ │ │ │ │ ├── align_left.gif │ │ │ │ │ ├── align_right.gif │ │ │ │ │ ├── align_top.gif │ │ │ │ │ └── refresh.png │ │ │ ├── insertfile │ │ │ │ └── insertfile.js │ │ │ ├── lineheight │ │ │ │ └── lineheight.js │ │ │ ├── link │ │ │ │ └── link.js │ │ │ ├── map │ │ │ │ ├── map.html │ │ │ │ └── map.js │ │ │ ├── media │ │ │ │ └── media.js │ │ │ ├── multiimage │ │ │ │ ├── images │ │ │ │ │ ├── image.png │ │ │ │ │ ├── select-files-en.png │ │ │ │ │ ├── select-files-zh_CN.png │ │ │ │ │ └── swfupload.swf │ │ │ │ └── multiimage.js │ │ │ ├── pagebreak │ │ │ │ └── pagebreak.js │ │ │ ├── plainpaste │ │ │ │ └── plainpaste.js │ │ │ ├── preview │ │ │ │ └── preview.js │ │ │ ├── quickformat │ │ │ │ └── quickformat.js │ │ │ ├── table │ │ │ │ └── table.js │ │ │ ├── template │ │ │ │ ├── html │ │ │ │ │ ├── 1.html │ │ │ │ │ ├── 2.html │ │ │ │ │ └── 3.html │ │ │ │ └── template.js │ │ │ └── wordpaste │ │ │ │ └── wordpaste.js │ │ └── themes │ │ │ ├── common │ │ │ ├── anchor.gif │ │ │ ├── blank.gif │ │ │ ├── flash.gif │ │ │ ├── loading.gif │ │ │ ├── media.gif │ │ │ └── rm.gif │ │ │ ├── default │ │ │ ├── background.png │ │ │ ├── default.css │ │ │ └── default.png │ │ │ ├── qq │ │ │ ├── editor.gif │ │ │ └── qq.css │ │ │ └── simple │ │ │ └── simple.css │ │ ├── ladda-bootstrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── css │ │ │ ├── ladda-theme.scss │ │ │ ├── ladda.scss │ │ │ └── prism.css │ │ ├── dist │ │ │ ├── ladda-themeless.min.css │ │ │ ├── ladda.min.css │ │ │ ├── ladda.min.js │ │ │ └── spin.min.js │ │ ├── index.html │ │ ├── js │ │ │ ├── ladda.js │ │ │ ├── prism.js │ │ │ └── spin.js │ │ └── params.json │ │ ├── less │ │ └── less-1.5.0.min.js │ │ ├── moment │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── ender.js │ │ ├── lang │ │ │ ├── ar-ma.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── br.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cv.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── ml.js │ │ │ ├── mr.js │ │ │ ├── ms-my.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tzm-la.js │ │ │ ├── tzm.js │ │ │ ├── uk.js │ │ │ ├── vn.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ ├── min │ │ │ ├── langs.js │ │ │ ├── langs.min.js │ │ │ ├── moment+langs.js │ │ │ ├── moment+langs.min.js │ │ │ └── moment.min.js │ │ ├── moment.js │ │ ├── package.js │ │ ├── package.json │ │ ├── readme.md │ │ ├── tasks │ │ │ ├── component.js │ │ │ ├── embed_languages.js │ │ │ ├── history.js │ │ │ ├── size.js │ │ │ └── zones.js │ │ └── test │ │ │ ├── lang │ │ │ ├── ar-ma.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── br.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cv.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── ml.js │ │ │ ├── mr.js │ │ │ ├── ms-my.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tzm-la.js │ │ │ ├── tzm.js │ │ │ ├── uk.js │ │ │ ├── vn.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ │ └── moment │ │ │ ├── add_subtract.js │ │ │ ├── create.js │ │ │ ├── days_in_month.js │ │ │ ├── diff.js │ │ │ ├── duration.js │ │ │ ├── format.js │ │ │ ├── getters_setters.js │ │ │ ├── is_after.js │ │ │ ├── is_before.js │ │ │ ├── is_moment.js │ │ │ ├── is_same.js │ │ │ ├── is_valid.js │ │ │ ├── lang.js │ │ │ ├── leapyear.js │ │ │ ├── listers.js │ │ │ ├── min_max.js │ │ │ ├── mutable.js │ │ │ ├── normalizeUnits.js │ │ │ ├── preparse_postformat.js │ │ │ ├── sod_eod.js │ │ │ ├── string_prototype.js │ │ │ ├── utc.js │ │ │ ├── week_year.js │ │ │ ├── weekday.js │ │ │ ├── weeks.js │ │ │ └── zones.js │ │ ├── nestable │ │ ├── README.md │ │ ├── index.html │ │ └── jquery.nestable.js │ │ ├── perfect-scrollbar │ │ ├── .csslintrc │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── examples │ │ │ ├── azusa.jpg │ │ │ ├── options-default.html │ │ │ ├── options-minScrollbarLength.html │ │ │ ├── options-suppressScrollAxis.html │ │ │ ├── options-useBothWheelAxes.html │ │ │ ├── options-wheelPropagation.html │ │ │ ├── options-wheelSpeed.html │ │ │ └── text-content.html │ │ ├── min │ │ │ ├── perfect-scrollbar-0.4.6.min.css │ │ │ ├── perfect-scrollbar-0.4.6.min.js │ │ │ └── perfect-scrollbar-0.4.6.with-mousewheel.min.js │ │ ├── package.json │ │ ├── perfect-scrollbar.jquery.json │ │ └── src │ │ │ ├── jquery.mousewheel.js │ │ │ ├── perfect-scrollbar.css │ │ │ └── perfect-scrollbar.js │ │ ├── photoSwiper │ │ ├── default-skin │ │ │ ├── default-skin.css │ │ │ ├── default-skin.png │ │ │ ├── default-skin.svg │ │ │ └── preloader.gif │ │ ├── photoswipe-ui-default.min.js │ │ ├── photoswipe.css │ │ └── photoswipe.min.js │ │ ├── rainyday │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── demo.html │ │ └── rainyday.js │ │ ├── respond.min.js │ │ ├── select2 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── release.sh │ │ ├── select2-spinner.gif │ │ ├── select2.css │ │ ├── select2.jquery.json │ │ ├── select2.js │ │ ├── select2.min.js │ │ ├── select2.png │ │ ├── select2_locale_ar.js │ │ ├── select2_locale_bg.js │ │ ├── select2_locale_ca.js │ │ ├── select2_locale_cs.js │ │ ├── select2_locale_da.js │ │ ├── select2_locale_de.js │ │ ├── select2_locale_el.js │ │ ├── select2_locale_en.js.template │ │ ├── select2_locale_es.js │ │ ├── select2_locale_et.js │ │ ├── select2_locale_eu.js │ │ ├── select2_locale_fa.js │ │ ├── select2_locale_fi.js │ │ ├── select2_locale_fr.js │ │ ├── select2_locale_gl.js │ │ ├── select2_locale_he.js │ │ ├── select2_locale_hr.js │ │ ├── select2_locale_hu.js │ │ ├── select2_locale_id.js │ │ ├── select2_locale_is.js │ │ ├── select2_locale_it.js │ │ ├── select2_locale_ja.js │ │ ├── select2_locale_ko.js │ │ ├── select2_locale_lt.js │ │ ├── select2_locale_lv.js │ │ ├── select2_locale_mk.js │ │ ├── select2_locale_ms.js │ │ ├── select2_locale_nl.js │ │ ├── select2_locale_no.js │ │ ├── select2_locale_pl.js │ │ ├── select2_locale_pt-BR.js │ │ ├── select2_locale_pt-PT.js │ │ ├── select2_locale_ro.js │ │ ├── select2_locale_ru.js │ │ ├── select2_locale_sk.js │ │ ├── select2_locale_sv.js │ │ ├── select2_locale_th.js │ │ ├── select2_locale_tr.js │ │ ├── select2_locale_ua.js │ │ ├── select2_locale_vi.js │ │ ├── select2_locale_zh-CN.js │ │ ├── select2_locale_zh-TW.js │ │ └── select2x2.png │ │ ├── summernote │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── bs2.html │ │ ├── build1 │ │ │ ├── summernote-bootstrap.css │ │ │ ├── summernote.css │ │ │ └── summernote.min.js │ │ ├── elements.less │ │ ├── index.html │ │ ├── package.json │ │ ├── summernote.js │ │ ├── summernote.less │ │ └── test │ │ │ ├── dom.spec.html │ │ │ ├── dom.spec.js │ │ │ ├── list.spec.html │ │ │ ├── list.spec.js │ │ │ ├── qunit-1.11.0.css │ │ │ ├── qunit-1.11.0.js │ │ │ ├── range.spec.html │ │ │ └── range.spec.js │ │ ├── typeaheadjs │ │ ├── lib │ │ │ ├── typeahead.js │ │ │ └── typeahead.js-bootstrap.css │ │ └── typeaheadjs.js │ │ ├── wysihtml5 │ │ ├── bootstrap-wysihtml5-0.0.2 │ │ │ ├── bootstrap-wysihtml5-0.0.2.css │ │ │ ├── bootstrap-wysihtml5-0.0.2.js │ │ │ ├── bootstrap-wysihtml5-0.0.2.min.js │ │ │ ├── bootstrap-wysihtml5.js │ │ │ ├── wysihtml5-0.3.0.js │ │ │ ├── wysihtml5-0.3.0.min.js │ │ │ └── wysiwyg-color.css │ │ └── wysihtml5.js │ │ └── x-editable │ │ ├── css │ │ └── bootstrap-editable.css │ │ ├── demo-mock.js │ │ ├── demo.js │ │ ├── img │ │ ├── clear.png │ │ └── loading.gif │ │ └── js │ │ ├── bootstrap-editable.js │ │ └── bootstrap-editable.min.js │ └── index.jsp ├── pom.xml └── student.sql /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/README.md -------------------------------------------------------------------------------- /mytest-dao/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-dao/pom.xml -------------------------------------------------------------------------------- /mytest-dao/src/main/java/com/songci/mytest_one/dao/StudentDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-dao/src/main/java/com/songci/mytest_one/dao/StudentDao.java -------------------------------------------------------------------------------- /mytest-dao/src/main/java/com/songci/mytest_one/dao/base/BaseDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-dao/src/main/java/com/songci/mytest_one/dao/base/BaseDao.java -------------------------------------------------------------------------------- /mytest-dao/src/main/resources/mapper/StudentMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-dao/src/main/resources/mapper/StudentMapper.xml -------------------------------------------------------------------------------- /mytest-model/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-model/pom.xml -------------------------------------------------------------------------------- /mytest-model/src/main/java/com/songci/mytest_one/model/Student.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-model/src/main/java/com/songci/mytest_one/model/Student.java -------------------------------------------------------------------------------- /mytest-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-service/pom.xml -------------------------------------------------------------------------------- /mytest-web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/pom.xml -------------------------------------------------------------------------------- /mytest-web/src/main/resources/config/applicationContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/resources/config/applicationContext.xml -------------------------------------------------------------------------------- /mytest-web/src/main/resources/config/jdbc.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/resources/config/jdbc.properties -------------------------------------------------------------------------------- /mytest-web/src/main/resources/config/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/resources/config/log4j.properties -------------------------------------------------------------------------------- /mytest-web/src/main/resources/config/mybatis-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/resources/config/mybatis-config.xml -------------------------------------------------------------------------------- /mytest-web/src/main/resources/config/spring-mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/resources/config/spring-mvc.xml -------------------------------------------------------------------------------- /mytest-web/src/main/test/com/songci/mytest_one/test/DaoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/test/com/songci/mytest_one/test/DaoTest.java -------------------------------------------------------------------------------- /mytest-web/src/main/test/com/songci/mytest_one/test/ServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/test/com/songci/mytest_one/test/ServiceTest.java -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/WEB-INF/decorators/studentDecorator.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/WEB-INF/decorators/studentDecorator.jsp -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/WEB-INF/jsp/student/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/WEB-INF/jsp/student/home.jsp -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/WEB-INF/jsp/student/studentInfo.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/WEB-INF/jsp/student/studentInfo.jsp -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/WEB-INF/sitemesh3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/WEB-INF/sitemesh3.xml -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/css/main-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/css/main-responsive.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/css/main.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/css/print.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/css/rtl-version.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/css/rtl-version.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/css/theme_black_and_white.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/css/theme_black_and_white.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/css/theme_dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/css/theme_dark.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/css/theme_green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/css/theme_green.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/css/theme_light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/css/theme_light.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/css/theme_navy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/css/theme_navy.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/fonts/fonts/clip-font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/fonts/fonts/clip-font.eot -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/fonts/fonts/clip-font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/fonts/fonts/clip-font.svg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/fonts/fonts/clip-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/fonts/fonts/clip-font.ttf -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/fonts/fonts/clip-font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/fonts/fonts/clip-font.woff -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/fonts/lte-ie7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/fonts/lte-ie7.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/fonts/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/fonts/style.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/avatar-1-big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/avatar-1-big.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/avatar-1-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/avatar-1-small.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/avatar-1-xl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/avatar-1-xl.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/avatar-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/avatar-1.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/avatar-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/avatar-2.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/avatar-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/avatar-3.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/avatar-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/avatar-4.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/avatar-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/avatar-5.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/back-error-page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/back-error-page.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/bg.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/bg_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/bg_2.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/bg_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/bg_3.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/bg_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/bg_4.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/bg_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/bg_5.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/blackandwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/blackandwhite.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/darkgrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/darkgrey.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/green.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/image01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/image01.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/image02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/image02.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/image03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/image03.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/image04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/image04.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/image05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/image05.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/image06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/image06.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/image07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/image07.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/image08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/image08.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/image09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/image09.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/image10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/image10.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/image11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/image11.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/image12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/image12.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/lightgrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/lightgrey.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/loading.gif -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/menu-white-arrow-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/menu-white-arrow-rtl.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/menu-white-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/menu-white-arrow.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/navy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/navy.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/timer-piece.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/timer-piece.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/images/your-logo-here.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/images/your-logo-here.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/charts.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/form-calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/form-calendar.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/form-dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/form-dropzone.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/form-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/form-elements.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/form-image-cropping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/form-image-cropping.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/form-validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/form-validation.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/form-wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/form-wizard.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/index.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/jquery-1.7.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/jquery-1.7.2.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/jquery-1.7.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/jquery-1.7.2.min.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/login.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/main.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/maps.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/pages-gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/pages-gallery.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/pages-user-profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/pages-user-profile.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/table-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/table-data.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/ui-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/ui-animation.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/ui-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/ui-buttons.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/ui-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/ui-elements.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/ui-modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/ui-modals.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/ui-nestable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/ui-nestable.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/ui-sliders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/ui-sliders.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/ui-treeview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/ui-treeview.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/utility-coming-soon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/utility-coming-soon.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/utility-error404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/utility-error404.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/vue.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/js/vue.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/js/vue.min.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/less/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/less/styles.less -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/myassets/js/student/studentInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/myassets/js/student/studentInfo.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/DataTables/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/DataTables/Readme.txt -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/DataTables/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/DataTables/component.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/DataTables/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/DataTables/docs/index.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/DataTables/examples/examples_support/editable_ajax.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/DataTables/license-bsd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/DataTables/license-bsd.txt -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/DataTables/license-gpl2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/DataTables/license-gpl2.txt -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/DataTables/media/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/DataTables/media/js/jquery.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/DataTables/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/DataTables/package.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/DataTables/scripts/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/DataTables/scripts/make.sh -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/Jcrop/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/Jcrop/MIT-LICENSE.txt -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/Jcrop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/Jcrop/README.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/Jcrop/css/Jcrop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/Jcrop/css/Jcrop.gif -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/Jcrop/css/jquery.Jcrop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/Jcrop/css/jquery.Jcrop.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/Jcrop/demos/crop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/Jcrop/demos/crop.php -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/Jcrop/demos/non-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/Jcrop/demos/non-image.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/Jcrop/demos/styling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/Jcrop/demos/styling.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/Jcrop/demos/tutorial1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/Jcrop/demos/tutorial1.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/Jcrop/demos/tutorial2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/Jcrop/demos/tutorial2.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/Jcrop/demos/tutorial3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/Jcrop/demos/tutorial3.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/Jcrop/demos/tutorial4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/Jcrop/demos/tutorial4.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/Jcrop/demos/tutorial5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/Jcrop/demos/tutorial5.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/Jcrop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/Jcrop/index.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/Jcrop/js/jquery.Jcrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/Jcrop/js/jquery.Jcrop.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/Jcrop/js/jquery.Jcrop.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/Jcrop/js/jquery.Jcrop.min.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/Jcrop/js/jquery.color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/Jcrop/js/jquery.color.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/Jcrop/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/Jcrop/js/jquery.min.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/autosize/autosize.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/autosize/autosize.jquery.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/autosize/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/autosize/bower.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/autosize/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/autosize/demo.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/autosize/jquery.autosize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/autosize/jquery.autosize.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/autosize/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/autosize/package.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/autosize/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/autosize/readme.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/blockUI/jquery.blockUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/blockUI/jquery.blockUI.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-colorpicker/.gitignore: -------------------------------------------------------------------------------- 1 | /nbproject/ -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-colorpicker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/bootstrap-colorpicker/LICENSE -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-datepicker/.gitignore: -------------------------------------------------------------------------------- 1 | instrumented/ 2 | tests/coverage.html 3 | docs/_build 4 | -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-datepicker/.hgignore: -------------------------------------------------------------------------------- 1 | instrumented/ 2 | tests/coverage.html 3 | docs/_build 4 | -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-datepicker/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/bootstrap-datepicker/.hgtags -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-datepicker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/bootstrap-datepicker/LICENSE -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-hover-dropdown/.gitignore: -------------------------------------------------------------------------------- 1 | .htaccess -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-modal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/bootstrap-modal/.gitignore -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-modal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/bootstrap-modal/LICENSE -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-modal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/bootstrap-modal/README.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-modal/bs3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/bootstrap-modal/bs3.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-modal/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/bootstrap-modal/composer.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-modal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/bootstrap-modal/index.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-modal/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/bootstrap-modal/params.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-paginator/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | 4 | -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-paginator/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/bootstrap-paginator/CHANGELOG -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-paginator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/bootstrap-paginator/LICENSE -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-paginator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/bootstrap-paginator/README.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-paginator/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/bootstrap-paginator/build.sh -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-switch/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-switch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/bootstrap-switch/LICENSE -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-switch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/bootstrap-switch/README.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-switch/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/bootstrap-switch/bower.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-timepicker/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "spec/js/libs/" 3 | } 4 | -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-timepicker/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | _site 3 | node_modules 4 | _SpecRunner.html 5 | spec/js/libs 6 | -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-timepicker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/bootstrap-timepicker/LICENSE -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap-timepicker/spec/js/helpers/SpecHelper.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/CHANGES.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/LICENSE.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/README.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/adapters/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/adapters/jquery.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/build-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/build-config.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/config.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/contents.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/af.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/ar.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/bg.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/bn.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/bs.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/ca.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/cs.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/cy.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/da.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/de.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/el.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/en-au.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/en-ca.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/en-gb.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/en.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/eo.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/es.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/et.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/eu.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/fa.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/fi.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/fo.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/fr-ca.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/fr.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/gl.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/gu.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/he.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/hi.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/hr.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/hu.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/id.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/is.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/it.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/ja.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/ka.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/km.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/ko.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/ku.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/lt.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/lv.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/mk.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/mn.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/ms.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/nb.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/nl.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/no.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/pl.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/pt-br.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/pt.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/ro.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/ru.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/si.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/sk.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/sl.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/sq.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/sr-latn.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/sr.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/sv.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/th.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/tr.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/ug.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/uk.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/vi.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/zh-cn.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/lang/zh.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/samples/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/samples/ajax.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/samples/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/samples/api.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/samples/assets/sample.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Required by tests (dom/document.html). 3 | */ 4 | -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/samples/index.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/samples/jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/samples/jquery.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/samples/sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/samples/sample.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/samples/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/samples/sample.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/samples/uicolor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/samples/uicolor.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ckeditor/styles.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/colorbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/colorbox/README.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/colorbox/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/colorbox/bower.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/colorbox/colorbox.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/colorbox/colorbox.ai -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/colorbox/colorbox.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/colorbox/colorbox.jquery.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/colorbox/content/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/colorbox/content/ajax.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/colorbox/content/daisy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/colorbox/content/daisy.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/colorbox/content/daisy@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/colorbox/content/daisy@2x.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/colorbox/content/homer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/colorbox/content/homer.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/colorbox/content/marylou.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/colorbox/content/marylou.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/colorbox/content/ohoopee1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/colorbox/content/ohoopee1.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/colorbox/content/ohoopee2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/colorbox/content/ohoopee2.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/colorbox/content/ohoopee3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/colorbox/content/ohoopee3.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/colorbox/example1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/colorbox/example1/index.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/colorbox/example2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/colorbox/example2/index.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/colorbox/example3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/colorbox/example3/index.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/colorbox/example4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/colorbox/example4/index.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/colorbox/example5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/colorbox/example5/index.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/colorbox/jquery.colorbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/colorbox/jquery.colorbox.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/css3-animation/animations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/css3-animation/animations.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/datepicker/css/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/datepicker/css/datepicker.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dropzone/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | components 3 | node_modules 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dropzone/.tagconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dropzone/.tagconfig -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dropzone/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dropzone/.travis.yml -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dropzone/AMD_footer: -------------------------------------------------------------------------------- 1 | return module.exports; 2 | })); -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dropzone/AMD_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dropzone/AMD_header -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dropzone/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dropzone/CONTRIBUTING.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dropzone/Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dropzone/Gruntfile.coffee -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dropzone/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dropzone/bower.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dropzone/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dropzone/component.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dropzone/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dropzone/index.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dropzone/lib/dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dropzone/lib/dropzone.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dropzone/npm_publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dropzone/npm_publish.sh -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dropzone/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dropzone/package.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dropzone/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dropzone/readme.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dropzone/src/dropzone.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dropzone/src/dropzone.coffee -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dropzone/test/test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dropzone/test/test.coffee -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dropzone/test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dropzone/test/test.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dropzone/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dropzone/test/test.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/GPL-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/GPL-LICENSE.txt -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/MIT-License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/MIT-License.txt -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/howto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/howto.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/howto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/howto.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/icons-vista.psp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/icons-vista.psp -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/icons-xp.psp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/icons-xp.psp -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/icons_layout.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/icons_layout.ods -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/nav_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/nav_bg.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/prettify.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/prettify.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/sample-api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/sample-api.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/sample-dnd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/sample-dnd.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/sample-dnd2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/sample-dnd2.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/sample-dnd3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/sample-dnd3.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/sample-empty.json: -------------------------------------------------------------------------------- 1 | [ ] -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/sample-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/sample-form.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/sample-lazy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/sample-lazy.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/sample-rtl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/sample-rtl.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/sample-ul.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/sample-ul.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/sample.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/sample.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/samples-nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/samples-nav.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/samples-top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/samples-top.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/samples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/samples.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/test-bench.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/test-bench.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/test-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/test-css.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/test-latest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/test-latest.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/test-table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/test-table.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/doc/test-xhtml.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/doc/test-xhtml.xhtml -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/grunt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/grunt.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/index.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/jquery/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/jquery/README.txt -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/jquery/jquery.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/jquery/jquery.min.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/package.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/src/GPL-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/src/GPL-LICENSE.txt -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/src/MIT-License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/src/MIT-License.txt -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/src/skin/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/src/skin/icons.gif -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/src/skin/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/src/skin/loading.gif -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/src/skin/vline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/src/skin/vline.gif -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/tests/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/tests/qunit.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/tests/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/tests/qunit.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/dynatree/tests/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/dynatree/tests/test.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/excanvas.min.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/API.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/CONTRIBUTING.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/FAQ.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/LICENSE.txt -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/Makefile -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/NEWS.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/PLUGINS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/PLUGINS.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/README.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/examples/ajax/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/examples/ajax/index.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/examples/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/examples/background.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/examples/examples.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/examples/examples.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/examples/index.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/excanvas.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/excanvas.min.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/jquery.colorhelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/jquery.colorhelpers.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.canvas.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.crosshair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.crosshair.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.errorbars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.errorbars.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.image.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.image.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.image.min.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.min.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.navigate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.navigate.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.pie.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.pie.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.pie.min.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.resize.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.selection.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.stack.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.stack.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.stack.min.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.symbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.symbol.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.threshold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.threshold.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.time.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.time.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/jquery.flot.time.min.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/jquery.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/flot/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/flot/jquery.min.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/font-awesome/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/font-awesome/less/core.less -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/font-awesome/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/font-awesome/less/icons.less -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/font-awesome/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/font-awesome/less/larger.less -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/font-awesome/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/font-awesome/less/list.less -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/font-awesome/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/font-awesome/less/mixins.less -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/font-awesome/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/font-awesome/less/path.less -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/font-awesome/scss/_core.scss -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/font-awesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/font-awesome/scss/_icons.scss -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/font-awesome/scss/_list.scss -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/font-awesome/scss/_path.scss -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/fullcalendar/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/fullcalendar/changelog.txt -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/fullcalendar/demos/gcal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/fullcalendar/demos/gcal.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/fullcalendar/demos/json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/fullcalendar/demos/json.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/fullcalendar/demos/theme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/fullcalendar/demos/theme.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/fullcalendar/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/fullcalendar/license.txt -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/CONTRIBUTING.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/Gruntfile.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/README.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/bower.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/examples/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/examples/basic.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/examples/examples.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/examples/examples.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/examples/geocoding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/examples/geocoding.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/examples/geofences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/examples/geofences.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/examples/geometry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/examples/geometry.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/examples/kml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/examples/kml.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/examples/layers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/examples/layers.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/examples/map_types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/examples/map_types.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/examples/markers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/examples/markers.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/examples/overlays.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/examples/overlays.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/examples/polygons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/examples/polygons.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/examples/polylines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/examples/polylines.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/examples/routes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/examples/routes.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/examples/static.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/examples/static.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/gmaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/gmaps.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.controls.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.core.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.events.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.geofences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.geofences.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.geometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.geometry.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.layers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.layers.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.map_types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.map_types.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.markers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.markers.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.overlays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.overlays.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.routes.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.static.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.streetview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.streetview.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.styles.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/lib/gmaps.utils.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/package.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/test/index.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/test/lib/jasmine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/test/lib/jasmine.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/test/lib/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/test/lib/jasmine.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/test/spec/EventSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/test/spec/EventSpec.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/test/spec/LayerSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/test/spec/LayerSpec.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/test/spec/MapSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/test/spec/MapSpec.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/test/spec/MarkerSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/test/spec/MarkerSpec.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/test/spec/RouteSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/test/spec/RouteSpec.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/test/spec/StyleSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/test/spec/StyleSpec.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gmaps/test/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gmaps/test/style.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gritter/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gritter/README.markdown -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gritter/images/gritter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gritter/images/gritter.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gritter/images/ie-spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gritter/images/ie-spacer.gif -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gritter/images/trees.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gritter/images/trees.jpg -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gritter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gritter/index.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gritter/js/jquery.gritter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gritter/js/jquery.gritter.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/gritter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/gritter/package.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/README.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/demo/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/demo/css/custom.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/demo/css/custom.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/demo/css/custom.styl -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/demo/css/icheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/demo/css/icheck.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/demo/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/demo/css/normalize.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/demo/index.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/demo/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/demo/js/custom.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/demo/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/demo/js/jquery.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/demo/js/zepto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/demo/js/zepto.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/jquery.icheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/jquery.icheck.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/jquery.icheck.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/jquery.icheck.min.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/skins/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/skins/all.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/_all.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/aero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/aero.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/aero.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/aero@2x.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/blue.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/blue.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/flat.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/flat.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/grey.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/grey.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/pink.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/pink.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/red.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/skins/flat/red.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/skins/line/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/skins/line/_all.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/skins/line/aero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/skins/line/aero.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/skins/line/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/skins/line/blue.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/skins/line/grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/skins/line/grey.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/skins/line/line.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/skins/line/line.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/skins/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/skins/line/line.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/skins/line/pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/skins/line/pink.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/skins/line/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/skins/line/red.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/zepto.icheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/zepto.icheck.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/iCheck/zepto.icheck.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/iCheck/zepto.icheck.min.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jQRangeSlider/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jQRangeSlider/History.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jQRangeSlider/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jQRangeSlider/Readme.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jQRangeSlider/demo/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jQRangeSlider/demo/demo.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jQuery-File-Upload/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | node_modules 4 | -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jQuery-File-Upload/server/gae-go/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jQuery-File-Upload/server/gae-python/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jQuery-File-Upload/server/node/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jQuery-File-Upload/server/node/public/files/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jQuery-File-Upload/server/node/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jQuery-File-Upload/server/php/files/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !.htaccess 4 | -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jQuery-Knob/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jQuery-Knob/README.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jQuery-Knob/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jQuery-Knob/index.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jqGrid/css/ui.jqgrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jqGrid/css/ui.jqgrid.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jqGrid/js/Changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jqGrid/js/Changes.txt -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jqGrid/js/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jqGrid/js/install.txt -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jqGrid/src/JsonXml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jqGrid/src/JsonXml.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jqGrid/src/grid.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jqGrid/src/grid.base.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jqGrid/src/grid.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jqGrid/src/grid.common.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jqGrid/src/grid.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jqGrid/src/grid.custom.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jqGrid/src/grid.filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jqGrid/src/grid.filter.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jqGrid/src/grid.import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jqGrid/src/grid.import.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jqGrid/src/grid.loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jqGrid/src/grid.loader.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jqGrid/src/grid.subgrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jqGrid/src/grid.subgrid.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jqGrid/src/jqDnR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jqGrid/src/jqDnR.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jqGrid/src/jqModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jqGrid/src/jqModal.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jquery-address/address.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jquery-address/address.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jquery-address/address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jquery-address/address.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jquery-cookie/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | .sizecache.json 4 | *.log -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jquery-cookie/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jquery-cookie/.jshintrc -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jquery-cookie/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jquery-cookie/.travis.yml -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jquery-cookie/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jquery-cookie/CHANGELOG.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jquery-cookie/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jquery-cookie/Gruntfile.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jquery-cookie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jquery-cookie/README.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jquery-cookie/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jquery-cookie/bower.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jquery-cookie/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jquery-cookie/package.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jquery-maskmoney/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jquery-maskmoney/LICENSE -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jquery-maskmoney/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jquery-maskmoney/README.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jquery-mockjax/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jquery-mockjax/.gitignore -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jquery-mockjax/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jquery-mockjax/.jshintrc -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jquery-mockjax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jquery-mockjax/README.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jquery-mockjax/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jquery-mockjax/bower.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jquery-mockjax/test/test.json: -------------------------------------------------------------------------------- 1 | { "say" : "I'm a json file!" } 2 | -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jquery-mockjax/test/test_jsonp.js: -------------------------------------------------------------------------------- 1 | abcdef123456({ "data" : "JSONP is cool" }); -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jquery-mockjax/test/test_proxy.json: -------------------------------------------------------------------------------- 1 | { "proxy" : true } -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jquery-mockjax/test/test_script.js: -------------------------------------------------------------------------------- 1 | TEST_SCRIPT_VAR = 1; -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jquery.maskedinput/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .idea/* 3 | -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jquery.maskedinput/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/jquery.maskedinput/LICENSE -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/jquery.maskedinput/spec/lib/jasmine-species/version.json: -------------------------------------------------------------------------------- 1 | {"version": "0.8.5b"} -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/kindeditor/jsp/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/kindeditor/jsp/README.txt -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/kindeditor/jsp/demo.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/kindeditor/jsp/demo.jsp -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/kindeditor/kindeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/kindeditor/kindeditor.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/kindeditor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/kindeditor/lang/ar.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/kindeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/kindeditor/lang/en.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/kindeditor/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/kindeditor/lang/ko.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/kindeditor/lang/zh_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/kindeditor/lang/zh_CN.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/kindeditor/lang/zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/kindeditor/lang/zh_TW.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/kindeditor/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/kindeditor/license.txt -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ladda-bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ladda-bootstrap/LICENSE -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ladda-bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ladda-bootstrap/README.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ladda-bootstrap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ladda-bootstrap/index.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/ladda-bootstrap/js/spin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/ladda-bootstrap/js/spin.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/less/less-1.5.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/less/less-1.5.0.min.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/.gitignore -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/.travis.yml -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/CONTRIBUTING.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/Gruntfile.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/LICENSE -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/bower.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/component.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/composer.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/ender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/ender.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/ar-ma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/ar-ma.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/ar.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/bg.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/br.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/ca.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/cs.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/cv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/cv.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/da.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/de.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/el.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/en-ca.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/en-gb.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/eo.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/es.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/et.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/eu.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/fa.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/fi.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/fr-ca.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/fr.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/gl.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/he.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/hi.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/hr.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/hu.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/id.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/is.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/it.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/ja.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/ka.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/ko.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/lt.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/lv.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/ml.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/mr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/mr.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/ms-my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/ms-my.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/nb.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/ne.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/nl.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/nn.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/pl.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/pt-br.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/pt.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/ro.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/ru.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/sk.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/sl.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/sq.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/sv.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/th.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/tr.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/tzm-la.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/tzm-la.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/tzm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/tzm.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/uk.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/vn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/vn.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/zh-cn.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/lang/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/lang/zh-tw.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/min/langs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/min/langs.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/min/langs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/min/langs.min.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/min/moment+langs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/min/moment+langs.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/min/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/min/moment.min.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/moment.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/package.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/package.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/readme.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/tasks/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/tasks/component.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/tasks/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/tasks/history.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/tasks/size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/tasks/size.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/tasks/zones.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/tasks/zones.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/ar-ma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/ar-ma.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/ar.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/bg.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/br.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/ca.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/cs.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/cv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/cv.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/da.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/de.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/el.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/en-ca.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/en-gb.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/en.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/eo.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/es.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/et.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/eu.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/fa.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/fi.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/fr-ca.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/fr.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/gl.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/he.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/hi.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/hr.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/hu.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/id.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/is.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/it.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/ja.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/ka.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/ko.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/lt.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/lv.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/ml.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/mr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/mr.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/ms-my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/ms-my.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/nb.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/ne.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/nl.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/nn.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/pl.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/pt-br.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/pt.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/ro.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/ru.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/sk.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/sl.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/sq.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/sv.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/th.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/tr.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/tzm-la.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/tzm-la.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/tzm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/tzm.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/uk.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/vn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/vn.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/zh-cn.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/lang/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/lang/zh-tw.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/moment/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/moment/diff.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/moment/lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/moment/lang.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/moment/test/moment/utc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/moment/test/moment/utc.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/nestable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/nestable/README.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/nestable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/nestable/index.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/perfect-scrollbar/.csslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "adjoining-classes": false 3 | } 4 | -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/perfect-scrollbar/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/photoSwiper/photoswipe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/photoSwiper/photoswipe.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/rainyday/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/rainyday/LICENSE.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/rainyday/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/rainyday/README.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/rainyday/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/rainyday/demo.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/rainyday/rainyday.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/rainyday/rainyday.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/respond.min.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/select2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/select2/LICENSE -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/select2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/select2/README.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/select2/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/select2/bower.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/select2/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/select2/release.sh -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/select2/select2.css -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/select2/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/select2/select2.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/select2/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/select2/select2.min.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/select2/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/select2/select2.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/select2/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/select2/select2x2.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/summernote/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/summernote/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/summernote/.travis.yml -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/summernote/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/summernote/Gruntfile.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/summernote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/summernote/README.md -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/summernote/bs2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/summernote/bs2.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/summernote/elements.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/summernote/elements.less -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/summernote/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/summernote/index.html -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/summernote/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/summernote/package.json -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/summernote/summernote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/summernote/summernote.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/summernote/summernote.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/summernote/summernote.less -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/typeaheadjs/typeaheadjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/typeaheadjs/typeaheadjs.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/wysihtml5/wysihtml5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/wysihtml5/wysihtml5.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/x-editable/demo-mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/x-editable/demo-mock.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/x-editable/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/x-editable/demo.js -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/x-editable/img/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/x-editable/img/clear.png -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/assets/plugins/x-editable/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/assets/plugins/x-editable/img/loading.gif -------------------------------------------------------------------------------- /mytest-web/src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/mytest-web/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/pom.xml -------------------------------------------------------------------------------- /student.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamsongci/mytest_one/HEAD/student.sql --------------------------------------------------------------------------------