├── .classpath ├── .gitattributes ├── .gitignore ├── .project ├── .settings ├── org.eclipse.core.resources.prefs └── org.eclipse.m2e.core.prefs ├── .travis.yml ├── LICENSE.md ├── README.md ├── android_client ├── .classpath ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ └── demo.html ├── bin │ └── AndroidManifest.xml ├── libs │ ├── android-support-v4.jar │ └── zxing.jar ├── proguard.cfg ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── ic_action_search.png │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ ├── ic_action_search.png │ │ ├── ic_launcher.png │ │ └── navbar.9.png │ ├── drawable-xhdpi │ │ └── ic_action_search.png │ ├── layout │ │ ├── activity_main.xml │ │ └── camera.xml │ ├── raw │ │ ├── beep.ogg │ │ └── realm_properties │ └── values │ │ ├── colors.xml │ │ ├── ids.xml │ │ └── strings.xml └── src │ ├── com │ └── zxing │ │ ├── activity │ │ └── CaptureActivity.java │ │ ├── camera │ │ ├── AutoFocusCallback.java │ │ ├── CameraConfigurationManager.java │ │ ├── CameraManager.java │ │ ├── FlashlightManager.java │ │ ├── PlanarYUVLuminanceSource.java │ │ └── PreviewCallback.java │ │ ├── decoding │ │ ├── CaptureActivityHandler.java │ │ ├── DecodeFormatManager.java │ │ ├── DecodeHandler.java │ │ ├── DecodeThread.java │ │ ├── FinishListener.java │ │ ├── InactivityTimer.java │ │ └── Intents.java │ │ ├── encoding │ │ └── EncodingHandler.java │ │ └── view │ │ ├── ViewfinderResultPointCallback.java │ │ └── ViewfinderView.java │ └── lab │ └── s2jh │ └── android │ └── MainActivity.java ├── assets-resource ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.validation.prefs │ └── org.maven.ide.eclipse.prefs ├── pom.xml └── src │ ├── main │ ├── java │ │ └── placeholder.txt │ └── resources │ │ └── META-INF │ │ ├── MANIFEST.MF │ │ └── resources │ │ └── assets │ │ ├── extras │ │ ├── JSPinyin.js │ │ ├── bootstrap-contextmenu.js │ │ ├── joelpurra │ │ │ ├── emulatetab.joelpurra.js │ │ │ └── plusastab.joelpurra.js │ │ ├── jquery-jqgrid │ │ │ ├── css │ │ │ │ └── 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.11.0.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 │ │ ├── jquery-ztree │ │ │ ├── css │ │ │ │ ├── demo.css │ │ │ │ └── zTreeStyle │ │ │ │ │ ├── img │ │ │ │ │ ├── diy │ │ │ │ │ │ ├── 1_close.png │ │ │ │ │ │ ├── 1_open.png │ │ │ │ │ │ ├── 2.png │ │ │ │ │ │ ├── 3.png │ │ │ │ │ │ ├── 4.png │ │ │ │ │ │ ├── 5.png │ │ │ │ │ │ ├── 6.png │ │ │ │ │ │ ├── 7.png │ │ │ │ │ │ ├── 8.png │ │ │ │ │ │ └── 9.png │ │ │ │ │ ├── line_conn.gif │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── zTreeStandard.gif │ │ │ │ │ └── zTreeStandard.png │ │ │ │ │ └── zTreeStyle.css │ │ │ └── js │ │ │ │ ├── jquery-1.4.4.min.js │ │ │ │ ├── jquery.ztree.all-3.5.js │ │ │ │ ├── jquery.ztree.core-3.5.js │ │ │ │ ├── jquery.ztree.excheck-3.5.js │ │ │ │ ├── jquery.ztree.exedit-3.5.js │ │ │ │ └── jquery.ztree.exhide-3.5.js │ │ ├── jquery.address │ │ │ ├── jquery.address-1.5.js │ │ │ └── jquery.address-1.5.min.js │ │ ├── jquery.form.js │ │ ├── jquery.mobile │ │ │ ├── jquery.mobile-1.2.0.css │ │ │ └── jquery.mobile-1.2.0.js │ │ ├── kindeditor │ │ │ ├── jsp │ │ │ │ ├── README.txt │ │ │ │ ├── demo.jsp │ │ │ │ ├── file_manager_json.jsp │ │ │ │ └── upload_json.jsp │ │ │ ├── kindeditor-all-min.js │ │ │ ├── kindeditor-all.js │ │ │ ├── kindeditor-ext.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 │ │ ├── pinyin.js │ │ ├── taffydb │ │ │ ├── README.md │ │ │ ├── how-to-node.md │ │ │ ├── node-demo.js │ │ │ ├── package.json │ │ │ ├── taffy-min.js │ │ │ ├── taffy-test.html │ │ │ └── taffy.js │ │ └── tooltipster │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── css │ │ │ ├── themes │ │ │ │ ├── tooltipster-light.css │ │ │ │ ├── tooltipster-noir.css │ │ │ │ ├── tooltipster-punk.css │ │ │ │ └── tooltipster-shadow.css │ │ │ └── tooltipster.css │ │ │ ├── demo │ │ │ ├── index.html │ │ │ ├── map.png │ │ │ ├── reset.css │ │ │ └── style.css │ │ │ ├── doc │ │ │ ├── css │ │ │ │ ├── prettify.css │ │ │ │ ├── reset.css │ │ │ │ └── style.css │ │ │ ├── images │ │ │ │ ├── browser-chrome.png │ │ │ │ ├── browser-firefox.png │ │ │ │ ├── browser-ie.png │ │ │ │ ├── browser-opera.png │ │ │ │ ├── browser-safari.png │ │ │ │ ├── favicon.png │ │ │ │ ├── icons │ │ │ │ │ ├── icomoon.eot │ │ │ │ │ ├── icomoon.svg │ │ │ │ │ ├── icomoon.ttf │ │ │ │ │ ├── icomoon.woff │ │ │ │ │ └── icomoond41d.eot │ │ │ │ ├── large-background.jpg │ │ │ │ ├── pattern-navy.png │ │ │ │ ├── social.jpg │ │ │ │ ├── spiderman.png │ │ │ │ └── tooltipster.svg │ │ │ └── js │ │ │ │ ├── jquery.jgfeed.js │ │ │ │ ├── lang-css.js │ │ │ │ ├── prettify.js │ │ │ │ └── scripts.js │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── jquery.tooltipster.js │ │ │ └── jquery.tooltipster.min.js │ │ │ └── tooltipster.jquery.json │ │ ├── fonts │ │ ├── DXI1ORHCpsQm3Vp6mXoaTXhCUOGz7vYGh680lGh-uXM.woff │ │ ├── MTP_ySUJH_bn48VBG8sNSnhCUOGz7vYGh680lGh-uXM.woff │ │ ├── cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff │ │ ├── font.css │ │ └── k3k702ZOKiLJc3WVjuplzHhCUOGz7vYGh680lGh-uXM.woff │ │ ├── img │ │ ├── ajax-loading.gif │ │ ├── ajax-modal-loading.gif │ │ ├── arrow-down.png │ │ ├── avatar.png │ │ ├── avatar1.jpg │ │ ├── avatar1_small.jpg │ │ ├── avatar2.jpg │ │ ├── avatar3.jpg │ │ ├── avatar3_small.jpg │ │ ├── bg-opacity.png │ │ ├── bg-white-lock.png │ │ ├── bg-white.png │ │ ├── bg │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ └── 4.jpg │ │ ├── captcha_placeholder.jpg │ │ ├── datatable-row-openclose.png │ │ ├── flags │ │ │ ├── ad.png │ │ │ ├── ae.png │ │ │ ├── af.png │ │ │ ├── ag.png │ │ │ ├── ai.png │ │ │ ├── al.png │ │ │ ├── am.png │ │ │ ├── an.png │ │ │ ├── ao.png │ │ │ ├── ar.png │ │ │ ├── as.png │ │ │ ├── at.png │ │ │ ├── au.png │ │ │ ├── aw.png │ │ │ ├── ax.png │ │ │ ├── az.png │ │ │ ├── ba.png │ │ │ ├── bb.png │ │ │ ├── bd.png │ │ │ ├── be.png │ │ │ ├── bf.png │ │ │ ├── bg.png │ │ │ ├── bh.png │ │ │ ├── bi.png │ │ │ ├── bj.png │ │ │ ├── bm.png │ │ │ ├── bn.png │ │ │ ├── bo.png │ │ │ ├── br.png │ │ │ ├── bs.png │ │ │ ├── bt.png │ │ │ ├── bv.png │ │ │ ├── bw.png │ │ │ ├── by.png │ │ │ ├── bz.png │ │ │ ├── ca.png │ │ │ ├── catalonia.png │ │ │ ├── cc.png │ │ │ ├── cd.png │ │ │ ├── cf.png │ │ │ ├── cg.png │ │ │ ├── ch.png │ │ │ ├── ci.png │ │ │ ├── ck.png │ │ │ ├── cl.png │ │ │ ├── cm.png │ │ │ ├── cn.png │ │ │ ├── co.png │ │ │ ├── cr.png │ │ │ ├── cs.png │ │ │ ├── cu.png │ │ │ ├── cv.png │ │ │ ├── cx.png │ │ │ ├── cy.png │ │ │ ├── cz.png │ │ │ ├── de.png │ │ │ ├── dj.png │ │ │ ├── dk.png │ │ │ ├── dm.png │ │ │ ├── do.png │ │ │ ├── dz.png │ │ │ ├── ec.png │ │ │ ├── ee.png │ │ │ ├── eg.png │ │ │ ├── eh.png │ │ │ ├── england.png │ │ │ ├── er.png │ │ │ ├── es.png │ │ │ ├── et.png │ │ │ ├── europeanunion.png │ │ │ ├── fam.png │ │ │ ├── fi.png │ │ │ ├── fj.png │ │ │ ├── fk.png │ │ │ ├── fm.png │ │ │ ├── fo.png │ │ │ ├── fr.png │ │ │ ├── ga.png │ │ │ ├── gb.png │ │ │ ├── gd.png │ │ │ ├── ge.png │ │ │ ├── gf.png │ │ │ ├── gh.png │ │ │ ├── gi.png │ │ │ ├── gl.png │ │ │ ├── gm.png │ │ │ ├── gn.png │ │ │ ├── gp.png │ │ │ ├── gq.png │ │ │ ├── gr.png │ │ │ ├── gs.png │ │ │ ├── gt.png │ │ │ ├── gu.png │ │ │ ├── gw.png │ │ │ ├── gy.png │ │ │ ├── hk.png │ │ │ ├── hm.png │ │ │ ├── hn.png │ │ │ ├── hr.png │ │ │ ├── ht.png │ │ │ ├── hu.png │ │ │ ├── id.png │ │ │ ├── ie.png │ │ │ ├── il.png │ │ │ ├── in.png │ │ │ ├── io.png │ │ │ ├── iq.png │ │ │ ├── ir.png │ │ │ ├── is.png │ │ │ ├── it.png │ │ │ ├── jm.png │ │ │ ├── jo.png │ │ │ ├── jp.png │ │ │ ├── ke.png │ │ │ ├── kg.png │ │ │ ├── kh.png │ │ │ ├── ki.png │ │ │ ├── km.png │ │ │ ├── kn.png │ │ │ ├── kp.png │ │ │ ├── kr.png │ │ │ ├── kw.png │ │ │ ├── ky.png │ │ │ ├── kz.png │ │ │ ├── la.png │ │ │ ├── lb.png │ │ │ ├── lc.png │ │ │ ├── li.png │ │ │ ├── lk.png │ │ │ ├── lr.png │ │ │ ├── ls.png │ │ │ ├── lt.png │ │ │ ├── lu.png │ │ │ ├── lv.png │ │ │ ├── ly.png │ │ │ ├── ma.png │ │ │ ├── mc.png │ │ │ ├── md.png │ │ │ ├── me.png │ │ │ ├── mg.png │ │ │ ├── mh.png │ │ │ ├── mk.png │ │ │ ├── ml.png │ │ │ ├── mm.png │ │ │ ├── mn.png │ │ │ ├── mo.png │ │ │ ├── mp.png │ │ │ ├── mq.png │ │ │ ├── mr.png │ │ │ ├── ms.png │ │ │ ├── mt.png │ │ │ ├── mu.png │ │ │ ├── mv.png │ │ │ ├── mw.png │ │ │ ├── mx.png │ │ │ ├── my.png │ │ │ ├── mz.png │ │ │ ├── na.png │ │ │ ├── nc.png │ │ │ ├── ne.png │ │ │ ├── nf.png │ │ │ ├── ng.png │ │ │ ├── ni.png │ │ │ ├── nl.png │ │ │ ├── no.png │ │ │ ├── np.png │ │ │ ├── nr.png │ │ │ ├── nu.png │ │ │ ├── nz.png │ │ │ ├── om.png │ │ │ ├── pa.png │ │ │ ├── pe.png │ │ │ ├── pf.png │ │ │ ├── pg.png │ │ │ ├── ph.png │ │ │ ├── pk.png │ │ │ ├── pl.png │ │ │ ├── pm.png │ │ │ ├── pn.png │ │ │ ├── pr.png │ │ │ ├── ps.png │ │ │ ├── pt.png │ │ │ ├── pw.png │ │ │ ├── py.png │ │ │ ├── qa.png │ │ │ ├── re.png │ │ │ ├── readme.txt │ │ │ ├── ro.png │ │ │ ├── rs.png │ │ │ ├── ru.png │ │ │ ├── rw.png │ │ │ ├── sa.png │ │ │ ├── sb.png │ │ │ ├── sc.png │ │ │ ├── scotland.png │ │ │ ├── sd.png │ │ │ ├── se.png │ │ │ ├── sg.png │ │ │ ├── sh.png │ │ │ ├── si.png │ │ │ ├── sj.png │ │ │ ├── sk.png │ │ │ ├── sl.png │ │ │ ├── sm.png │ │ │ ├── sn.png │ │ │ ├── so.png │ │ │ ├── sr.png │ │ │ ├── st.png │ │ │ ├── sv.png │ │ │ ├── sy.png │ │ │ ├── sz.png │ │ │ ├── tc.png │ │ │ ├── td.png │ │ │ ├── tf.png │ │ │ ├── tg.png │ │ │ ├── th.png │ │ │ ├── tj.png │ │ │ ├── tk.png │ │ │ ├── tl.png │ │ │ ├── tm.png │ │ │ ├── tn.png │ │ │ ├── to.png │ │ │ ├── tr.png │ │ │ ├── tt.png │ │ │ ├── tv.png │ │ │ ├── tw.png │ │ │ ├── tz.png │ │ │ ├── ua.png │ │ │ ├── ug.png │ │ │ ├── um.png │ │ │ ├── us.png │ │ │ ├── uy.png │ │ │ ├── uz.png │ │ │ ├── va.png │ │ │ ├── vc.png │ │ │ ├── ve.png │ │ │ ├── vg.png │ │ │ ├── vi.png │ │ │ ├── vn.png │ │ │ ├── vu.png │ │ │ ├── wales.png │ │ │ ├── wf.png │ │ │ ├── ws.png │ │ │ ├── ye.png │ │ │ ├── yt.png │ │ │ ├── za.png │ │ │ ├── zm.png │ │ │ └── zw.png │ │ ├── hor-menu-red-arrow.png │ │ ├── hor-menu-search-close-white.png │ │ ├── hor-menu-search-close.png │ │ ├── hor-menu-search.jpg │ │ ├── hor-menu-search.png │ │ ├── icon-color-close.png │ │ ├── icon-color.png │ │ ├── icon-img-down.png │ │ ├── icon-img-up.png │ │ ├── inbox-nav-arrow-blue.png │ │ ├── input-spinner.gif │ │ ├── loading.gif │ │ ├── logo-big.png │ │ ├── logo.png │ │ ├── menu-toggler.png │ │ ├── overlay-icon.png │ │ ├── photo1.jpg │ │ ├── photo2.jpg │ │ ├── portlet-collapse-icon-white.png │ │ ├── portlet-collapse-icon.png │ │ ├── portlet-config-icon-white.png │ │ ├── portlet-config-icon.png │ │ ├── portlet-expand-icon-white.png │ │ ├── portlet-expand-icon.png │ │ ├── portlet-reload-icon-white.png │ │ ├── portlet-reload-icon.png │ │ ├── portlet-remove-icon-white.png │ │ ├── portlet-remove-icon.png │ │ ├── remove-icon-small.png │ │ ├── search-icon-blue.png │ │ ├── search-icon-brown.png │ │ ├── search-icon-purple.png │ │ ├── search-icon-red.png │ │ ├── search-icon-white.png │ │ ├── search-icon.png │ │ ├── select-caret.png │ │ ├── sidebar-menu-arrow-green-right.png │ │ ├── sidebar-menu-arrow-green.png │ │ ├── sidebar-menu-arrow-right.png │ │ ├── sidebar-menu-arrow-rtl.png │ │ ├── sidebar-menu-arrow.png │ │ ├── sidebar-search-close-blue.png │ │ ├── sidebar-search-close-brown.png │ │ ├── sidebar-search-close-light.png │ │ ├── sidebar-search-close-purple.png │ │ ├── sidebar-search-close.png │ │ ├── sidebar-toggler-blue.jpg │ │ ├── sidebar-toggler-brown.jpg │ │ ├── sidebar-toggler-light.jpg │ │ ├── sidebar-toggler-purple.jpg │ │ ├── sidebar-toggler.jpg │ │ ├── sidebar-toggler.png │ │ ├── social │ │ │ ├── Thumbs.db │ │ │ ├── amazon.png │ │ │ ├── behance.png │ │ │ ├── blogger.png │ │ │ ├── deviantart.png │ │ │ ├── dribbble.png │ │ │ ├── dropbox.png │ │ │ ├── evernote.png │ │ │ ├── facebook.png │ │ │ ├── forrst.png │ │ │ ├── github.png │ │ │ ├── googleplus.png │ │ │ ├── instagram.png │ │ │ ├── jolicloud.png │ │ │ ├── last-fm.png │ │ │ ├── linkedin.png │ │ │ ├── picasa.png │ │ │ ├── pintrest.png │ │ │ ├── reddit.png │ │ │ ├── rss.png │ │ │ ├── skype.png │ │ │ ├── spotify.png │ │ │ ├── stumbleupon.png │ │ │ ├── tumblr.png │ │ │ ├── twitter.png │ │ │ ├── vimeo.png │ │ │ ├── vk.png │ │ │ ├── wordpress.png │ │ │ ├── xing.png │ │ │ ├── yahoo.png │ │ │ └── youtube.png │ │ ├── syncfusion-icons-white.png │ │ └── syncfusion-icons.png │ │ └── plugins │ │ ├── backstretch │ │ ├── jquery.backstretch.js │ │ └── jquery.backstretch.min.js │ │ ├── bootbox │ │ ├── README.md │ │ └── bootbox.min.js │ │ ├── bootstrap-colorpicker │ │ ├── css │ │ │ └── colorpicker.css │ │ ├── img │ │ │ ├── alpha.png │ │ │ ├── hue.png │ │ │ └── saturation.png │ │ ├── js │ │ │ └── bootstrap-colorpicker.js │ │ └── less │ │ │ └── colorpicker.less │ │ ├── bootstrap-datepaginator │ │ ├── README.md │ │ ├── bootstrap-datepaginator.min.css │ │ └── bootstrap-datepaginator.min.js │ │ ├── bootstrap-datepicker │ │ ├── .hgignore │ │ ├── .hgtags │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── composer.json │ │ ├── css │ │ │ └── datepicker.css │ │ ├── js │ │ │ ├── bootstrap-datepicker.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datepicker.ar.js │ │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ │ ├── bootstrap-datepicker.cs.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.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.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 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── 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 │ │ ├── bootstrap-editable │ │ ├── CHANGELOG.txt │ │ ├── LICENSE-MIT │ │ ├── README.md │ │ ├── bootstrap-editable │ │ │ ├── css │ │ │ │ └── bootstrap-editable.css │ │ │ ├── img │ │ │ │ ├── clear.png │ │ │ │ └── loading.gif │ │ │ └── js │ │ │ │ ├── bootstrap-editable.js │ │ │ │ └── bootstrap-editable.min.js │ │ └── inputs-ext │ │ │ └── address │ │ │ ├── address.css │ │ │ └── address.js │ │ ├── bootstrap-fileupload │ │ ├── bootstrap-fileupload.css │ │ └── bootstrap-fileupload.js │ │ ├── bootstrap-hover-dropdown │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo.html │ │ ├── twitter-bootstrap-hover-dropdown.js │ │ └── twitter-bootstrap-hover-dropdown.min.js │ │ ├── bootstrap-markdown │ │ ├── README.md │ │ ├── bower.json │ │ ├── css │ │ │ └── bootstrap-markdown.min.css │ │ ├── js │ │ │ └── bootstrap-markdown.js │ │ ├── less │ │ │ └── bootstrap-markdown.less │ │ └── lib │ │ │ └── markdown.js │ │ ├── bootstrap-maxlength │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap-maxlength.jquery.json │ │ ├── bootstrap-maxlength.js │ │ ├── bootstrap-maxlength.min.js │ │ └── bower.json │ │ ├── bootstrap-modal │ │ ├── .gitattributes │ │ ├── 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-sessiontimeout │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── jquery.sessionTimeout.js │ │ ├── jquery.sessionTimeout.min.js │ │ └── package.json │ │ ├── bootstrap-switch │ │ ├── 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-metro.css │ │ │ ├── bootstrap-switch.css │ │ │ └── flat-ui-fonts.css │ │ ├── bootstrap-timepicker │ │ ├── README.md │ │ ├── compiled │ │ │ └── timepicker.css │ │ ├── js │ │ │ └── bootstrap-timepicker.js │ │ └── less │ │ │ └── timepicker.less │ │ ├── bootstrap-toastr │ │ ├── README.md │ │ ├── toastr-icon.png │ │ ├── toastr.css │ │ ├── toastr.js │ │ ├── toastr.less │ │ ├── toastr.min.css │ │ ├── toastr.min.js │ │ └── toastr.min.js.map │ │ ├── bootstrap-touchspin │ │ ├── LICENSE.md │ │ ├── README.md │ │ └── bootstrap.touchspin.js │ │ ├── bootstrap-wizard │ │ ├── MIT-LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── jquery.bootstrap.wizard.js │ │ └── jquery.bootstrap.wizard.min.js │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ └── 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 │ │ │ ├── bootstrap2-typeahead.js │ │ │ └── bootstrap2-typeahead.min.js │ │ ├── clockface │ │ ├── CHANGELOG.txt │ │ ├── LICENSE-MIT │ │ ├── README.md │ │ ├── css │ │ │ └── clockface.css │ │ └── js │ │ │ └── clockface.js │ │ ├── countdown │ │ ├── jquery.countdown.js │ │ └── plugin │ │ │ ├── countdownBasic.html │ │ │ ├── countdownGlowing.gif │ │ │ ├── countdownLED.png │ │ │ ├── jquery.countdown-ar.js │ │ │ ├── jquery.countdown-bg.js │ │ │ ├── jquery.countdown-bn.js │ │ │ ├── jquery.countdown-bs.js │ │ │ ├── jquery.countdown-ca.js │ │ │ ├── jquery.countdown-cs.js │ │ │ ├── jquery.countdown-cy.js │ │ │ ├── jquery.countdown-da.js │ │ │ ├── jquery.countdown-de.js │ │ │ ├── jquery.countdown-el.js │ │ │ ├── jquery.countdown-es.js │ │ │ ├── jquery.countdown-et.js │ │ │ ├── jquery.countdown-fa.js │ │ │ ├── jquery.countdown-fi.js │ │ │ ├── jquery.countdown-fr.js │ │ │ ├── jquery.countdown-gl.js │ │ │ ├── jquery.countdown-gu.js │ │ │ ├── jquery.countdown-he.js │ │ │ ├── jquery.countdown-hr.js │ │ │ ├── jquery.countdown-hu.js │ │ │ ├── jquery.countdown-hy.js │ │ │ ├── jquery.countdown-id.js │ │ │ ├── jquery.countdown-it.js │ │ │ ├── jquery.countdown-ja.js │ │ │ ├── jquery.countdown-kn.js │ │ │ ├── jquery.countdown-ko.js │ │ │ ├── jquery.countdown-lt.js │ │ │ ├── jquery.countdown-lv.js │ │ │ ├── jquery.countdown-ml.js │ │ │ ├── jquery.countdown-ms.js │ │ │ ├── jquery.countdown-my.js │ │ │ ├── jquery.countdown-nb.js │ │ │ ├── jquery.countdown-nl.js │ │ │ ├── jquery.countdown-pl.js │ │ │ ├── jquery.countdown-pt-BR.js │ │ │ ├── jquery.countdown-ro.js │ │ │ ├── jquery.countdown-ru.js │ │ │ ├── jquery.countdown-sk.js │ │ │ ├── jquery.countdown-sl.js │ │ │ ├── jquery.countdown-sq.js │ │ │ ├── jquery.countdown-sr-SR.js │ │ │ ├── jquery.countdown-sr.js │ │ │ ├── jquery.countdown-sv.js │ │ │ ├── jquery.countdown-th.js │ │ │ ├── jquery.countdown-tr.js │ │ │ ├── jquery.countdown-uk.js │ │ │ ├── jquery.countdown-uz.js │ │ │ ├── jquery.countdown-vi.js │ │ │ ├── jquery.countdown-zh-CN.js │ │ │ ├── jquery.countdown-zh-TW.js │ │ │ ├── jquery.countdown.css │ │ │ ├── jquery.countdown.js │ │ │ └── jquery.countdown.min.js │ │ ├── data-tables │ │ ├── DT_bootstrap.css │ │ ├── DT_bootstrap.js │ │ ├── images │ │ │ ├── sort_asc.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ └── sort_desc_disabled.png │ │ ├── jquery.dataTables.js │ │ └── jquery.dataTables.min.js │ │ ├── dropzone │ │ ├── css │ │ │ ├── basic.css │ │ │ ├── dropzone.css │ │ │ └── stylus │ │ │ │ ├── basic.styl │ │ │ │ └── dropzone.styl │ │ ├── dropzone.js │ │ ├── dropzone.min.js │ │ ├── images │ │ │ ├── spritemap.png │ │ │ └── spritemap@2x.png │ │ └── upload.php │ │ ├── excanvas.min.js │ │ ├── fancybox │ │ ├── .gitattributes │ │ ├── CHANGELOG.md │ │ ├── CHANGELOG.txt │ │ ├── README.md │ │ ├── README.txt │ │ ├── demo │ │ │ ├── 1_b.jpg │ │ │ ├── 1_s.jpg │ │ │ ├── 2_b.jpg │ │ │ ├── 2_s.jpg │ │ │ ├── 3_b.jpg │ │ │ ├── 3_s.jpg │ │ │ ├── 4_b.jpg │ │ │ ├── 4_s.jpg │ │ │ ├── 5_b.jpg │ │ │ ├── 5_s.jpg │ │ │ ├── ajax.txt │ │ │ ├── iframe.html │ │ │ └── index.html │ │ ├── lib │ │ │ ├── jquery-1.8.2.min.js │ │ │ └── jquery.mousewheel-3.0.6.pack.js │ │ └── source │ │ │ ├── blank.gif │ │ │ ├── fancybox_loading.gif │ │ │ ├── fancybox_overlay.png │ │ │ ├── fancybox_sprite.png │ │ │ ├── helpers │ │ │ ├── fancybox_buttons.png │ │ │ ├── jquery.fancybox-buttons.css │ │ │ ├── jquery.fancybox-buttons.js │ │ │ ├── jquery.fancybox-media.js │ │ │ ├── jquery.fancybox-thumbs.css │ │ │ └── jquery.fancybox-thumbs.js │ │ │ ├── jquery.fancybox.css │ │ │ ├── jquery.fancybox.js │ │ │ └── jquery.fancybox.pack.js │ │ ├── flot │ │ ├── API.md │ │ ├── CONTRIBUTING.md │ │ ├── FAQ.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── NEWS.md │ │ ├── PLUGINS.md │ │ ├── README.md │ │ ├── build.log │ │ ├── excanvas.js │ │ ├── excanvas.min.js │ │ ├── jquery.colorhelpers.js │ │ ├── jquery.colorhelpers.min.js │ │ ├── jquery.flot.axislabels.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 │ │ ├── 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 │ │ ├── fuelux │ │ ├── COPYING │ │ ├── README.md │ │ ├── css │ │ │ ├── tree-metronic.css │ │ │ └── tree.css │ │ ├── img │ │ │ └── tree-icons.png │ │ └── js │ │ │ ├── spinner.js │ │ │ ├── spinner.min.js │ │ │ ├── tree.js │ │ │ └── tree.min.js │ │ ├── fullcalendar │ │ ├── changelog.txt │ │ ├── demos │ │ │ ├── agenda-views.html │ │ │ ├── basic-views.html │ │ │ ├── default.html │ │ │ ├── external-dragging.html │ │ │ ├── gcal.html │ │ │ ├── json.html │ │ │ ├── json │ │ │ │ └── events.json │ │ │ ├── languages.html │ │ │ ├── php │ │ │ │ ├── get-events.php │ │ │ │ ├── get-timezones.php │ │ │ │ └── utils.php │ │ │ ├── selectable.html │ │ │ ├── theme.html │ │ │ └── timezones.html │ │ ├── fullcalendar.css │ │ ├── fullcalendar.js │ │ ├── fullcalendar.min.js │ │ ├── fullcalendar.print.css │ │ ├── gcal.js │ │ ├── lang-all.js │ │ ├── lang │ │ │ ├── ar-ma.js │ │ │ ├── ar-sa.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de-at.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── es.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sr-cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ ├── lib │ │ │ ├── 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 │ │ │ └── moment.min.js │ │ └── license.txt │ │ ├── gritter │ │ ├── README.markdown │ │ ├── css │ │ │ └── jquery.gritter.css │ │ ├── images │ │ │ ├── gritter-blue.png │ │ │ ├── gritter-brown.png │ │ │ ├── gritter-light.png │ │ │ ├── gritter-long.png │ │ │ ├── gritter-purple.png │ │ │ ├── gritter.png │ │ │ └── ie-spacer.gif │ │ ├── images_original │ │ │ ├── gritter-light.png │ │ │ ├── gritter-long.png │ │ │ ├── gritter.png │ │ │ ├── ie-spacer.gif │ │ │ └── trees.jpg │ │ ├── index.html │ │ └── js │ │ │ ├── jquery.gritter.js │ │ │ └── jquery.gritter.min.js │ │ ├── holder.js │ │ ├── ion.rangeslider │ │ ├── css │ │ │ ├── ion.rangeSlider.Metronic.css │ │ │ ├── ion.rangeSlider.css │ │ │ ├── ion.rangeSlider.skinNice.css │ │ │ ├── ion.rangeSlider.skinSimple.css │ │ │ └── normalize.min.css │ │ ├── img │ │ │ ├── sprite-skin-nice.png │ │ │ ├── sprite-skin-simple.png │ │ │ └── sprite-skin.psd │ │ └── js │ │ │ ├── ion-rangeSlider │ │ │ ├── ion.rangeSlider.js │ │ │ └── ion.rangeSlider.min.js │ │ │ └── vendor │ │ │ └── jquery-1.10.2.min.js │ │ ├── jcrop │ │ ├── MIT-LICENSE.txt │ │ ├── README.md │ │ ├── css │ │ │ ├── Jcrop.gif │ │ │ ├── jquery.Jcrop.css │ │ │ └── jquery.Jcrop.min.css │ │ └── js │ │ │ ├── jquery.Jcrop.js │ │ │ ├── jquery.Jcrop.min.js │ │ │ ├── jquery.color.js │ │ │ └── jquery.min.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── jquery-bootpag │ │ ├── jquery.bootpag.js │ │ └── jquery.bootpag.min.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.css │ │ └── jquery.easy-pie-chart.js │ │ ├── jquery-file-upload │ │ ├── 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 │ │ │ │ ├── canvas-to-blob.min.js │ │ │ │ ├── jquery.ui.widget.js │ │ │ │ ├── load-image.min.js │ │ │ │ └── tmpl.min.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 │ │ │ │ ├── package.json │ │ │ │ └── server.js │ │ │ └── php │ │ │ │ ├── UploadHandler.php │ │ │ │ ├── files │ │ │ │ └── notes.txt │ │ │ │ └── index.php │ │ └── test │ │ │ ├── index.html │ │ │ └── test.js │ │ ├── jquery-idle-timeout │ │ ├── README.markdown │ │ ├── jquery.idletimeout.js │ │ └── jquery.idletimer.js │ │ ├── jquery-inputmask │ │ ├── README.md │ │ ├── jquery.inputmask.bundle.js │ │ └── jquery.inputmask.bundle.min.js │ │ ├── jquery-knob │ │ ├── README.md │ │ ├── index.html │ │ ├── js │ │ │ └── jquery.knob.js │ │ └── knob.jquery.json │ │ ├── jquery-migrate-1.2.1.min.js │ │ ├── jquery-mixitup │ │ ├── README.md │ │ ├── bower.json │ │ ├── jquery.mixitup.min.js │ │ └── mixitup.jquery.json │ │ ├── jquery-multi-select │ │ ├── LICENSE.txt │ │ ├── README.markdown │ │ ├── bower.json │ │ ├── css │ │ │ └── multi-select.css │ │ ├── img │ │ │ ├── switch.png │ │ │ └── switch_original.png │ │ ├── js │ │ │ ├── jquery.multi-select.js │ │ │ └── jquery.quicksearch.js │ │ ├── multi-select.jquery.json │ │ └── test │ │ │ ├── SpecRunner.html │ │ │ ├── lib │ │ │ ├── jasmine-1.2.0 │ │ │ │ ├── MIT.LICENSE │ │ │ │ ├── jasmine-html.js │ │ │ │ ├── jasmine.css │ │ │ │ └── jasmine.js │ │ │ └── jasmine-jquery.js │ │ │ ├── spec │ │ │ ├── SpecHelper.js │ │ │ └── multiSelectSpec.js │ │ │ └── src │ │ │ └── jquery.js │ │ ├── jquery-nestable │ │ ├── README.md │ │ ├── index.html │ │ ├── jquery.nestable.css │ │ └── jquery.nestable.js │ │ ├── jquery-slimscroll │ │ ├── README.md │ │ ├── examples │ │ │ ├── allow-page-scroll.html │ │ │ ├── chaining.html │ │ │ ├── disable-fade-out.html │ │ │ ├── dynamic-content.html │ │ │ ├── height-width.html │ │ │ ├── index.html │ │ │ ├── libs │ │ │ │ └── prettify │ │ │ │ │ ├── prettify.css │ │ │ │ │ └── prettify.js │ │ │ ├── mouse-wheel.html │ │ │ ├── multiple-elements.html │ │ │ ├── navigation.html │ │ │ ├── nested.html │ │ │ ├── programmatic-scrolling.html │ │ │ ├── rail.html │ │ │ ├── scroll-events.html │ │ │ ├── scrollbar.html │ │ │ ├── start-position.html │ │ │ └── style.css │ │ ├── jquery.slimscroll.js │ │ ├── jquery.slimscroll.min.js │ │ └── slimScroll.jquery.json │ │ ├── jquery-tags-input │ │ ├── README.md │ │ ├── example.html │ │ ├── jquery.tagsinput.css │ │ ├── jquery.tagsinput.js │ │ ├── jquery.tagsinput.min.js │ │ └── test │ │ │ ├── fake_json_endpoint.html │ │ │ └── fake_plaintext_endpoint.html │ │ ├── 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.2.custom.min.js │ │ ├── jquery-ui-1.10.3.custom.js │ │ ├── jquery-ui-1.10.3.custom.min.css │ │ ├── jquery-ui-1.10.3.custom.min.js │ │ └── redmond │ │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ └── ui-icons_f9bd01_256x240.png │ │ │ ├── jquery-ui-1.10.3.custom.css │ │ │ └── jquery-ui-1.10.3.custom.min.css │ │ ├── jquery-validation │ │ ├── .gitattributes │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── changelog.txt │ │ ├── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.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 │ │ ├── todo │ │ └── validation.jquery.json │ │ ├── jquery.blockui.min.js │ │ ├── jquery.cookie.min.js │ │ ├── jquery.input-ip-address-control-1.0.min.js │ │ ├── jquery.mockjax.js │ │ ├── jquery.pulsate.min.js │ │ ├── jquery.pwstrength.bootstrap │ │ ├── GPL-LICENSE.txt │ │ ├── MIT-LICENSE.txt │ │ ├── README.md │ │ ├── src │ │ │ └── pwstrength.js │ │ └── test │ │ │ ├── bootstrap.css │ │ │ ├── index.html │ │ │ ├── pwstrength.js │ │ │ └── rules.html │ │ ├── jquery.sparkline.min.js │ │ ├── jqvmap │ │ ├── README.md │ │ ├── jqvmap │ │ │ ├── data │ │ │ │ └── jquery.vmap.sampledata.js │ │ │ ├── jquery.vmap.js │ │ │ ├── jquery.vmap.min.js │ │ │ ├── jquery.vmap.packed.js │ │ │ ├── jqvmap.css │ │ │ └── maps │ │ │ │ ├── jquery.vmap.europe.js │ │ │ │ ├── jquery.vmap.germany.js │ │ │ │ ├── jquery.vmap.russia.js │ │ │ │ ├── jquery.vmap.usa.js │ │ │ │ └── jquery.vmap.world.js │ │ └── samples │ │ │ ├── europe.html │ │ │ ├── germany.html │ │ │ ├── multi.html │ │ │ ├── russia.html │ │ │ ├── usa.html │ │ │ └── world.html │ │ ├── moment.min.js │ │ ├── nouislider │ │ ├── README.md │ │ ├── jquery.nouislider.css │ │ ├── jquery.nouislider.js │ │ └── nouislider.jquery.json │ │ ├── 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 │ │ ├── select2_metro.css │ │ └── select2x2.png │ │ └── uniform │ │ ├── README.textile │ │ ├── css │ │ ├── uniform.default.css │ │ ├── uniform.default.min.css │ │ └── uniform.default.scss │ │ ├── images │ │ ├── Thumbs.db │ │ ├── bg-input-focus.png │ │ ├── bg-input.png │ │ ├── sprite.png │ │ └── sprite_original.png │ │ ├── jquery.uniform.js │ │ └── jquery.uniform.min.js │ └── test │ └── java │ └── placeholder.txt ├── common-service ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.validation.prefs │ └── org.maven.ide.eclipse.prefs ├── generator │ ├── .gitignore │ ├── entity_list.properties │ ├── generator.bat │ └── generator.sh ├── pom.xml └── src │ ├── main │ ├── java │ │ └── lab │ │ │ └── s2jh │ │ │ ├── auth │ │ │ ├── dao │ │ │ │ ├── DepartmentDao.java │ │ │ │ ├── PrivilegeDao.java │ │ │ │ ├── RoleDao.java │ │ │ │ ├── RoleR2PrivilegeDao.java │ │ │ │ ├── SignupUserDao.java │ │ │ │ ├── UserDao.java │ │ │ │ ├── UserLogonLogDao.java │ │ │ │ ├── UserOauthDao.java │ │ │ │ └── UserR2RoleDao.java │ │ │ ├── entity │ │ │ │ ├── Department.java │ │ │ │ ├── PersistentLogin.java │ │ │ │ ├── Privilege.java │ │ │ │ ├── Role.java │ │ │ │ ├── RoleR2Privilege.java │ │ │ │ ├── SignupUser.java │ │ │ │ ├── User.java │ │ │ │ ├── UserLogonLog.java │ │ │ │ ├── UserOauth.java │ │ │ │ └── UserR2Role.java │ │ │ ├── security │ │ │ │ ├── AccessDecisionManagerImpl.java │ │ │ │ ├── AuthLogonHistRefreshListener.java │ │ │ │ ├── AuthUserDetailsService.java │ │ │ │ ├── AuthUserHolder.java │ │ │ │ ├── AuthenticationFailureHandler.java │ │ │ │ ├── AuthenticationSuccessHandler.java │ │ │ │ ├── ExtSecurityInterceptor.java │ │ │ │ ├── FilterInvocationSecurityMetadataSourceImpl.java │ │ │ │ └── cas │ │ │ │ │ └── CASAuthUserDetailsService.java │ │ │ ├── service │ │ │ │ ├── DepartmentService.java │ │ │ │ ├── PrivilegeService.java │ │ │ │ ├── RoleService.java │ │ │ │ ├── SignupUserService.java │ │ │ │ ├── UserLogonLogService.java │ │ │ │ └── UserService.java │ │ │ └── web │ │ │ │ └── action │ │ │ │ ├── DepartmentController.java │ │ │ │ ├── PrivilegeController.java │ │ │ │ ├── ProfileController.java │ │ │ │ ├── RoleController.java │ │ │ │ ├── SignupUserController.java │ │ │ │ ├── UserController.java │ │ │ │ ├── UserLogonLogController.java │ │ │ │ └── package-info.java │ │ │ ├── bpm │ │ │ ├── BpmTrackable.java │ │ │ ├── service │ │ │ │ └── ActivitiService.java │ │ │ └── web │ │ │ │ └── action │ │ │ │ ├── ActivitiController.java │ │ │ │ ├── BpmTaskController.java │ │ │ │ ├── ProcessInstanceController.java │ │ │ │ └── package-info.java │ │ │ ├── ctx │ │ │ ├── DynamicConfigService.java │ │ │ ├── ExtPropertyPlaceholderConfigurer.java │ │ │ ├── FreemarkerService.java │ │ │ └── MailService.java │ │ │ ├── profile │ │ │ ├── dao │ │ │ │ ├── ProfileParamDefDao.java │ │ │ │ ├── ProfileParamValDao.java │ │ │ │ └── SimpleParamValDao.java │ │ │ ├── entity │ │ │ │ ├── ProfileParamDef.java │ │ │ │ ├── ProfileParamVal.java │ │ │ │ └── SimpleParamVal.java │ │ │ ├── service │ │ │ │ ├── ProfileParamDefService.java │ │ │ │ ├── ProfileParamValService.java │ │ │ │ └── SimpleParamValService.java │ │ │ └── web │ │ │ │ └── action │ │ │ │ ├── ProfileParamDefController.java │ │ │ │ ├── ProfileParamValController.java │ │ │ │ ├── PubPostController.java │ │ │ │ ├── SimpleParamValController.java │ │ │ │ └── package-info.java │ │ │ ├── pub │ │ │ └── web │ │ │ │ └── action │ │ │ │ ├── DataController.java │ │ │ │ ├── GridController.java │ │ │ │ ├── SigninController.java │ │ │ │ ├── SignupController.java │ │ │ │ └── package-info.java │ │ │ ├── rpt │ │ │ ├── dao │ │ │ │ ├── ReportDefDao.java │ │ │ │ ├── ReportDefR2RoleDao.java │ │ │ │ └── ReportParamDao.java │ │ │ ├── entity │ │ │ │ ├── ReportDef.java │ │ │ │ ├── ReportDefR2Role.java │ │ │ │ └── ReportParam.java │ │ │ ├── service │ │ │ │ ├── ReportDefService.java │ │ │ │ └── ReportParamService.java │ │ │ └── web │ │ │ │ └── action │ │ │ │ ├── ReportDefController.java │ │ │ │ ├── ReportParamController.java │ │ │ │ └── package-info.java │ │ │ ├── schedule │ │ │ ├── BaseQuartzJobBean.java │ │ │ ├── ExtLoggingJobHistoryPlugin.java │ │ │ ├── ExtSchedulerFactoryBean.java │ │ │ ├── dao │ │ │ │ ├── JobBeanCfgDao.java │ │ │ │ └── JobRunHistDao.java │ │ │ ├── entity │ │ │ │ ├── JobBeanCfg.java │ │ │ │ └── JobRunHist.java │ │ │ ├── job │ │ │ │ ├── DatabaseMonitorJob.java │ │ │ │ └── ServerMonitorJob.java │ │ │ ├── service │ │ │ │ ├── JobBeanCfgService.java │ │ │ │ └── JobRunHistService.java │ │ │ └── web │ │ │ │ └── action │ │ │ │ ├── JobBeanCfgController.java │ │ │ │ ├── JobRunHistController.java │ │ │ │ └── package-info.java │ │ │ ├── sys │ │ │ ├── dao │ │ │ │ ├── AttachmentFileDao.java │ │ │ │ ├── ConfigPropertyDao.java │ │ │ │ ├── DataDictDao.java │ │ │ │ ├── LoggingEventDao.java │ │ │ │ ├── MenuDao.java │ │ │ │ ├── PubPostDao.java │ │ │ │ └── PubPostReadDao.java │ │ │ ├── entity │ │ │ │ ├── AttachmentFile.java │ │ │ │ ├── ConfigProperty.java │ │ │ │ ├── DataDict.java │ │ │ │ ├── LoggingEvent.java │ │ │ │ ├── LoggingEventException.java │ │ │ │ ├── LoggingEventExceptionId.java │ │ │ │ ├── LoggingEventProperty.java │ │ │ │ ├── LoggingEventPropertyId.java │ │ │ │ ├── Menu.java │ │ │ │ ├── PubPost.java │ │ │ │ └── PubPostRead.java │ │ │ ├── service │ │ │ │ ├── AttachmentFileService.java │ │ │ │ ├── ConfigPropertyService.java │ │ │ │ ├── DataDictService.java │ │ │ │ ├── LoggingEventService.java │ │ │ │ ├── MenuService.java │ │ │ │ ├── PubPostReadService.java │ │ │ │ ├── PubPostService.java │ │ │ │ └── SystemSechduleService.java │ │ │ ├── vo │ │ │ │ └── NavMenuVO.java │ │ │ └── web │ │ │ │ └── action │ │ │ │ ├── AttachmentFileController.java │ │ │ │ ├── ConfigPropertyController.java │ │ │ │ ├── DataDictController.java │ │ │ │ ├── LoggingEventController.java │ │ │ │ ├── MenuController.java │ │ │ │ ├── PubPostController.java │ │ │ │ ├── PubPostReadController.java │ │ │ │ ├── UtilController.java │ │ │ │ └── package-info.java │ │ │ └── web │ │ │ └── action │ │ │ ├── BaseController.java │ │ │ ├── LayoutController.java │ │ │ └── package-info.java │ └── resources │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── resources │ │ │ ├── assets │ │ │ ├── app │ │ │ │ ├── bootstrap-jqgrid.css │ │ │ │ ├── custom.css │ │ │ │ ├── dynamic-table.js │ │ │ │ ├── form-validation.js │ │ │ │ ├── global.js │ │ │ │ ├── grid.js │ │ │ │ ├── page.js │ │ │ │ └── util.js │ │ │ ├── css │ │ │ │ ├── animate.css │ │ │ │ ├── pages │ │ │ │ │ ├── about-us.css │ │ │ │ │ ├── blog.css │ │ │ │ │ ├── coming-soon.css │ │ │ │ │ ├── email.css │ │ │ │ │ ├── error.css │ │ │ │ │ ├── image-crop.css │ │ │ │ │ ├── inbox.css │ │ │ │ │ ├── invoice.css │ │ │ │ │ ├── lock.css │ │ │ │ │ ├── login-soft.css │ │ │ │ │ ├── login.css │ │ │ │ │ ├── news.css │ │ │ │ │ ├── portfolio.css │ │ │ │ │ ├── pricing-tables.css │ │ │ │ │ ├── profile.css │ │ │ │ │ ├── promo.css │ │ │ │ │ ├── search.css │ │ │ │ │ ├── tasks.css │ │ │ │ │ └── timeline.css │ │ │ │ ├── plugins.css │ │ │ │ ├── print.css │ │ │ │ ├── style-metronic.css │ │ │ │ ├── style-non-responsive.css │ │ │ │ ├── style-responsive.css │ │ │ │ ├── style.css │ │ │ │ └── themes │ │ │ │ │ ├── blue.css │ │ │ │ │ ├── brown.css │ │ │ │ │ ├── default.css │ │ │ │ │ ├── grey.css │ │ │ │ │ ├── light.css │ │ │ │ │ └── purple.css │ │ │ └── scripts │ │ │ │ ├── app.js │ │ │ │ ├── calendar.js │ │ │ │ ├── charts.js │ │ │ │ ├── coming-soon.js │ │ │ │ ├── contact-us.js │ │ │ │ ├── custom.js │ │ │ │ ├── form-components.js │ │ │ │ ├── form-dropzone.js │ │ │ │ ├── form-editable.js │ │ │ │ ├── form-fileupload.js │ │ │ │ ├── form-image-crop.js │ │ │ │ ├── form-samples.js │ │ │ │ ├── form-validation.js │ │ │ │ ├── form-wizard.js │ │ │ │ ├── idle-timeout.js │ │ │ │ ├── inbox.js │ │ │ │ ├── index.js │ │ │ │ ├── lock.js │ │ │ │ ├── login-soft.js │ │ │ │ ├── login.js │ │ │ │ ├── maps-google.js │ │ │ │ ├── maps-vector.js │ │ │ │ ├── portfolio.js │ │ │ │ ├── portlet-draggable.js │ │ │ │ ├── search.js │ │ │ │ ├── table-advanced.js │ │ │ │ ├── table-ajax.js │ │ │ │ ├── table-editable.js │ │ │ │ ├── table-managed.js │ │ │ │ ├── tasks.js │ │ │ │ ├── ui-bootbox.js │ │ │ │ ├── ui-datepaginator.js │ │ │ │ ├── ui-extended-modals.js │ │ │ │ ├── ui-general.js │ │ │ │ ├── ui-ion-sliders.js │ │ │ │ ├── ui-jqueryui-sliders.js │ │ │ │ ├── ui-knob.js │ │ │ │ ├── ui-nestable.js │ │ │ │ ├── ui-nouisliders.js │ │ │ │ ├── ui-toastr.js │ │ │ │ └── ui-tree.js │ │ │ ├── auth │ │ │ ├── department-index.js │ │ │ ├── department-index.jsp │ │ │ ├── department-inputBasic.jsp │ │ │ ├── department-inputTabs.jsp │ │ │ ├── department-users.jsp │ │ │ ├── privilege-index.js │ │ │ ├── privilege-index.jsp │ │ │ ├── privilege-inputBasic.jsp │ │ │ ├── privilege-inputTabs.jsp │ │ │ ├── privilege-roles.jsp │ │ │ ├── privilege-urls.js │ │ │ ├── privilege-urls.jsp │ │ │ ├── profile-passwd.jsp │ │ │ ├── role-index.jsp │ │ │ ├── role-inputTabs.jsp │ │ │ ├── role-privileges.jsp │ │ │ ├── role-users.jsp │ │ │ ├── signup-user-index.js │ │ │ ├── signup-user-index.jsp │ │ │ ├── signup-user-inputBasic.jsp │ │ │ ├── user-index.js │ │ │ ├── user-index.jsp │ │ │ ├── user-inputBasic.jsp │ │ │ ├── user-inputTabs.jsp │ │ │ ├── user-logon-log-index.js │ │ │ ├── user-logon-log-index.jsp │ │ │ ├── user-privileges.jsp │ │ │ └── user-roles.jsp │ │ │ ├── bpm │ │ │ ├── activiti-process-image.jsp │ │ │ ├── bpm-task-backActivity.jsp │ │ │ ├── bpm-task-form.jsp │ │ │ ├── bpm-task-list.js │ │ │ ├── bpm-task-list.jsp │ │ │ ├── bpm-task-show.jsp │ │ │ ├── bpm-task-variables.jsp │ │ │ ├── process-instance-index.js │ │ │ └── process-instance-index.jsp │ │ │ ├── common │ │ │ ├── ajax-footer.jsp │ │ │ ├── app-ver.jsp │ │ │ ├── errors.jsp │ │ │ └── taglibs.jsp │ │ │ ├── index.jsp │ │ │ ├── layout-dashboard.jsp │ │ │ ├── layout-start.jsp │ │ │ ├── profile │ │ │ ├── profile-param-def-index.js │ │ │ ├── profile-param-def-index.jsp │ │ │ ├── profile-param-val-inputBasic.js │ │ │ ├── profile-param-val-inputBasic.jsp │ │ │ ├── pub-post-list.jsp │ │ │ └── pub-post-view.jsp │ │ │ ├── pub │ │ │ ├── lb.jsp │ │ │ ├── signin-expired.jsp │ │ │ ├── signin-tips.jsp │ │ │ └── signin.jsp │ │ │ ├── rpt │ │ │ └── jasper-report-preview.jsp │ │ │ ├── schedule │ │ │ ├── job-bean-cfg-index.js │ │ │ ├── job-bean-cfg-index.jsp │ │ │ ├── job-bean-cfg-triggers.js │ │ │ ├── job-bean-cfg-triggers.jsp │ │ │ ├── job-run-hist-index.js │ │ │ ├── job-run-hist-index.jsp │ │ │ └── job-run-hist-viewBasic.jsp │ │ │ ├── sys │ │ │ ├── config-property-index.js │ │ │ ├── config-property-index.jsp │ │ │ ├── data-dict-index.js │ │ │ ├── data-dict-index.jsp │ │ │ ├── logging-event-index.js │ │ │ ├── logging-event-index.jsp │ │ │ ├── logging-event-inputBasic.jsp │ │ │ ├── menu-index.js │ │ │ ├── menu-index.jsp │ │ │ ├── pub-post-index.js │ │ │ ├── pub-post-index.jsp │ │ │ ├── pub-post-inputBasic.jsp │ │ │ ├── util-cache.jsp │ │ │ ├── util-dev.jsp │ │ │ ├── util-logger.jsp │ │ │ └── util-mgmt.jsp │ │ │ └── util │ │ │ └── revision │ │ │ ├── revision-compare.jsp │ │ │ └── revision-index.jsp │ │ └── sql │ │ └── ddl │ │ └── quartz │ │ ├── tables_cloudscape.sql │ │ ├── tables_cubrid.sql │ │ ├── tables_db2.sql │ │ ├── tables_db2_v72.sql │ │ ├── tables_db2_v8.sql │ │ ├── tables_db2_v95.sql │ │ ├── tables_derby.sql │ │ ├── tables_derby_previous.sql │ │ ├── tables_firebird.sql │ │ ├── tables_h2.sql │ │ ├── tables_hsqldb.sql │ │ ├── tables_hsqldb_old.sql │ │ ├── tables_informix.sql │ │ ├── tables_mysql.sql │ │ ├── tables_mysql_innodb.sql │ │ ├── tables_oracle.sql │ │ ├── tables_pointbase.sql │ │ ├── tables_postgres.sql │ │ ├── tables_sapdb.sql │ │ ├── tables_solid.sql │ │ ├── tables_sqlServer.sql │ │ └── tables_sybase.sql │ └── test │ ├── java │ └── lab │ │ └── s2jh │ │ ├── auth │ │ ├── dao │ │ │ └── test │ │ │ │ └── RoleR2PrivilegeDaoTest.java │ │ └── service │ │ │ └── test │ │ │ └── PrivilegeServiceTest.java │ │ ├── bpm │ │ └── test │ │ │ ├── ActivitiServiceTest.java │ │ │ ├── ProcessEngineTest.java │ │ │ └── ProcessTestS2jhBpmUt.java │ │ ├── ctx │ │ └── service │ │ │ └── test │ │ │ ├── BaseServiceTest.java │ │ │ ├── DynamicConfigServiceTest.java │ │ │ ├── MailServiceWithTransactionNoAutoTest.java │ │ │ └── MailServiceWithoutTransactionNoAutoTest.java │ │ ├── schedule │ │ └── service │ │ │ └── test │ │ │ └── JobBeanCfgServiceTest.java │ │ └── sys │ │ ├── dao │ │ └── test │ │ │ └── JpaMappingTest.java │ │ └── service │ │ └── test │ │ ├── DataDictServiceTest.java │ │ ├── MenuServiceTest.java │ │ ├── PubPostReadServiceTest.java │ │ └── PubPostServiceTest.java │ └── resources │ ├── application-test.properties │ ├── bpm │ ├── ActivitiServiceTest.bpmn │ └── s2jh_bpm_ut.bpmn │ ├── context │ ├── context-profiles.xml │ ├── spring-context.xml │ └── spring-security.xml │ ├── ehcache-config.xml │ ├── logback.xml │ ├── quartz-cluster.properties │ ├── quartz-ram.properties │ └── service │ ├── spring-bpm.xml │ ├── spring-mail.xml │ └── spring-schedule.xml ├── core-service ├── .classpath ├── .gitignore ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.validation.prefs │ └── org.maven.ide.eclipse.prefs ├── pom.xml └── src │ └── main │ ├── java │ ├── lab │ │ └── s2jh │ │ │ └── core │ │ │ ├── annotation │ │ │ └── MetaData.java │ │ │ ├── audit │ │ │ ├── SaveUpdateAuditListener.java │ │ │ └── envers │ │ │ │ ├── EntityRevision.java │ │ │ │ ├── EnversPreInsertEventListenerImpl.java │ │ │ │ ├── EnversPreUpdateEventListenerImpl.java │ │ │ │ ├── ExtDefaultRevisionEntity.java │ │ │ │ ├── ExtRevisionListener.java │ │ │ │ └── PreEnversIntegrator.java │ │ │ ├── cons │ │ │ └── TreeNodeConstant.java │ │ │ ├── context │ │ │ ├── SpringContextHolder.java │ │ │ └── async │ │ │ │ └── HandlingAsyncTaskExecutor.java │ │ │ ├── dao │ │ │ ├── BaseDao.java │ │ │ ├── h2 │ │ │ │ └── H2EmbeddedFileDatabaseConfigurer.java │ │ │ ├── jpa │ │ │ │ └── ExtPersistenceUnitPostProcessor.java │ │ │ └── log4jdbc │ │ │ │ ├── ExtResultSetCollectorPrinter.java │ │ │ │ └── ExtSlf4jSpyLogDelegator.java │ │ │ ├── entity │ │ │ ├── AttachmentableEntity.java │ │ │ ├── BaseEntity.java │ │ │ ├── BaseNativeEntity.java │ │ │ ├── BaseUuidEntity.java │ │ │ ├── PersistableEntity.java │ │ │ ├── annotation │ │ │ │ ├── EntityAutoCode.java │ │ │ │ ├── HibEventListeners.java │ │ │ │ └── SkipParamBind.java │ │ │ └── def │ │ │ │ ├── DefaultAuditable.java │ │ │ │ ├── DynamicParameterDef.java │ │ │ │ ├── DynamicParameterTypeEnum.java │ │ │ │ └── OperationAuditable.java │ │ │ ├── exception │ │ │ ├── BaseRuntimeException.java │ │ │ ├── DataAccessDeniedException.java │ │ │ ├── DataOperationDeniedException.java │ │ │ ├── DuplicateTokenException.java │ │ │ ├── ExceptionLogger.java │ │ │ ├── ServiceException.java │ │ │ ├── ValidationException.java │ │ │ └── WebException.java │ │ │ ├── pagination │ │ │ ├── GroupPropertyFilter.java │ │ │ └── PropertyFilter.java │ │ │ ├── security │ │ │ ├── AclService.java │ │ │ ├── AuthContextHolder.java │ │ │ └── AuthUserDetails.java │ │ │ ├── service │ │ │ ├── BaseService.java │ │ │ ├── PropertiesConfigService.java │ │ │ ├── R2OperationEnum.java │ │ │ └── Validation.java │ │ │ ├── util │ │ │ ├── DateUtils.java │ │ │ ├── EncoderUtils.java │ │ │ ├── EnumUtils.java │ │ │ ├── ExtStringUtils.java │ │ │ ├── IPAddrFetcher.java │ │ │ ├── MockEntityUtils.java │ │ │ ├── UidUtils.java │ │ │ └── reflection │ │ │ │ ├── ConvertUtils.java │ │ │ │ └── ReflectionUtils.java │ │ │ ├── validation │ │ │ ├── FormattedDate.java │ │ │ └── impl │ │ │ │ └── FormattedDateValidator.java │ │ │ └── web │ │ │ ├── EntityProcessCallbackHandler.java │ │ │ ├── PersistableController.java │ │ │ ├── SimpleController.java │ │ │ ├── annotation │ │ │ └── SecurityControlIgnore.java │ │ │ ├── captcha │ │ │ ├── BadCaptchaException.java │ │ │ ├── CustomCaptchaEngine.java │ │ │ ├── ImageCaptchaServlet.java │ │ │ └── JCaptchaFilter.java │ │ │ ├── convention │ │ │ ├── ExtDefaultResultMapBuilder.java │ │ │ └── ExtPackageBasedActionConfigBuilder.java │ │ │ ├── convert │ │ │ ├── BigDecimalConverter.java │ │ │ └── DateConverter.java │ │ │ ├── filter │ │ │ ├── HttpRequestLogFilter.java │ │ │ └── PostStrutsPrepareAndExecuteFilter.java │ │ │ ├── interceptor │ │ │ ├── ExtParametersInterceptor.java │ │ │ ├── ExtPrepareInterceptor.java │ │ │ ├── ExtTokenInterceptor.java │ │ │ └── SmartTokenInterceptor.java │ │ │ ├── json │ │ │ ├── DateJsonSerializer.java │ │ │ ├── DateTimeJsonSerializer.java │ │ │ ├── EntityIdDisplaySerializer.java │ │ │ ├── EntityIdSerializer.java │ │ │ ├── HibernateAwareObjectMapper.java │ │ │ ├── JodaDateJsonSerializer.java │ │ │ ├── JodaDateTimeJsonSerializer.java │ │ │ └── ValueLabelBean.java │ │ │ ├── listener │ │ │ ├── ApplicationContextLoaderListener.java │ │ │ ├── ApplicationContextPostListener.java │ │ │ └── ApplicationContextPreListener.java │ │ │ ├── rest │ │ │ ├── ExtRestActionMapper.java │ │ │ ├── Jackson2LibHandler.java │ │ │ ├── NegotiationContentTypeHandlerManager.java │ │ │ ├── NegotiationRestActionInvocation.java │ │ │ └── NegotiationRestActionProxyFactory.java │ │ │ ├── util │ │ │ └── ServletUtils.java │ │ │ └── view │ │ │ └── OperationResult.java │ └── org │ │ └── apache │ │ └── struts2 │ │ ├── components │ │ ├── Button.java │ │ ├── DynamicTable.java │ │ ├── File.java │ │ └── Files.java │ │ └── views │ │ └── jsp │ │ ├── S2PrivilegeTag.java │ │ └── ui │ │ ├── S3ButtonTag.java │ │ ├── S3DateTextFieldTag.java │ │ └── S3FilesFieldTag.java │ └── resources │ ├── META-INF │ └── struts3-tags.tld │ └── template │ ├── bootstrap3 │ ├── button-close.ftl │ ├── button.ftl │ ├── checkbox.ftl │ ├── checkboxlist.ftl │ ├── datetext.ftl │ ├── files-close.ftl │ ├── files.ftl │ ├── radiomap.ftl │ └── theme.properties │ └── simple │ └── common-attributes.ftl ├── core-test ├── .classpath ├── .gitignore ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.validation.prefs │ └── org.maven.ide.eclipse.prefs ├── pom.xml └── src │ └── main │ ├── java │ └── lab │ │ └── s2jh │ │ └── core │ │ └── test │ │ ├── SpringContextTestCase.java │ │ ├── SpringTransactionalTestCase.java │ │ └── TestObjectUtils.java │ └── resources │ └── placeholder.txt ├── crawl-service ├── .classpath ├── .gitignore ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.validation.prefs │ └── org.maven.ide.eclipse.prefs ├── pom.xml └── src │ ├── main │ └── java │ │ └── lab │ │ └── s2jh │ │ └── crawl │ │ ├── CrawlLogger.java │ │ ├── filter │ │ ├── AbstractParseFilter.java │ │ ├── ParseFilter.java │ │ └── ParseFilterChain.java │ │ ├── htmlunit │ │ ├── ExtHtmlunitCache.java │ │ └── RegexHttpWebConnection.java │ │ └── service │ │ ├── AsyncCrawlService.java │ │ ├── CrawlService.java │ │ └── HtmlunitService.java │ └── test │ ├── java │ └── lab │ │ └── s2jh │ │ └── crawl │ │ ├── demo │ │ ├── TMallCategoryParseFilter.java │ │ └── TMallSingleParseFilter.java │ │ └── service │ │ └── test │ │ └── CrawlServiceTest.java │ └── resources │ ├── logback.xml │ ├── spring-context.xml │ └── spring-crawl.xml ├── jasper-service ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.validation.prefs │ └── org.maven.ide.eclipse.prefs ├── pom.xml └── src │ └── main │ ├── java │ ├── lab │ │ └── s2jh │ │ │ └── rpt │ │ │ └── web │ │ │ └── action │ │ │ ├── JasperReportController.java │ │ │ └── package-info.java │ ├── net │ │ └── sf │ │ │ └── jasperreports │ │ │ └── swing │ │ │ ├── EditableJRViewer.java │ │ │ ├── EditableJRViewerPanel.java │ │ │ ├── InstallVerifyApplet.java │ │ │ └── PrintViewerApplet.java │ └── org │ │ └── apache │ │ └── struts2 │ │ └── views │ │ └── jasperreports │ │ └── ExtJasperReportsResult.java │ └── resources │ └── META-INF │ ├── MANIFEST.MF │ └── resources │ └── pub │ └── applet │ ├── .gitignore │ ├── images │ ├── guide_controlpanel.png │ ├── guide_firefox.png │ ├── guide_javaconfig.png │ └── guide_security.png │ ├── install.jsp │ ├── jasperreports.properties │ └── net │ └── sf │ └── jasperreports │ └── swing │ ├── EditableJRViewer.class │ ├── EditableJRViewerPanel$1.class │ ├── EditableJRViewerPanel.class │ ├── InstallVerifyApplet.class │ └── PrintViewerApplet.class ├── pom.xml ├── project-tools ├── .classpath ├── .gitignore ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.jdt.ui.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ ├── org.eclipse.wst.validation.prefs │ └── org.maven.ide.eclipse.prefs ├── jars │ ├── install-to-maven-repository.bat │ ├── itextasian-1.5.2.jar │ └── sqljdbc-4.0.2206.100.jar ├── pom.xml ├── src │ └── main │ │ ├── java │ │ └── lab │ │ │ └── s2jh │ │ │ └── tool │ │ │ └── builder │ │ │ ├── EntityCodeField.java │ │ │ └── SourceCodeFrameworkBuilder.java │ │ └── resources │ │ └── lab │ │ └── s2jh │ │ └── tool │ │ └── builder │ │ └── freemarker │ │ ├── Controller.ftl │ │ ├── Dao.ftl │ │ ├── Entity.ftl │ │ ├── JSP_Index.ftl │ │ ├── JSP_Input_Basic.ftl │ │ ├── JSP_Input_Tabs.ftl │ │ ├── JSP_View_Basic.ftl │ │ ├── JSP_View_Tabs.ftl │ │ ├── JS_Index.ftl │ │ ├── JS_Input_Basic.ftl │ │ ├── Service.ftl │ │ └── Test.ftl └── workspace │ └── sts3.1-e3.8.epf └── prototype ├── .classpath ├── .project ├── .settings ├── org.eclipse.core.resources.prefs ├── org.eclipse.jdt.core.prefs ├── org.eclipse.m2e.core.prefs ├── org.eclipse.wst.common.component ├── org.eclipse.wst.common.project.facet.core.xml └── org.eclipse.wst.validation.prefs ├── .springBeans ├── assembly └── assembly-standalone.xml ├── generator ├── .gitignore ├── entity_list.properties ├── generator.bat └── generator.sh ├── pom.xml ├── runtime ├── startup.bat └── startup.sh └── src ├── main ├── deploy │ ├── oschina │ │ └── resources │ │ │ ├── application_prd.properties │ │ │ ├── context │ │ │ └── context-profiles.xml │ │ │ ├── logback.xml │ │ │ └── struts.xml │ ├── paas │ │ └── resources │ │ │ ├── application_prd.properties │ │ │ ├── context │ │ │ └── context-profiles.xml │ │ │ ├── logback.xml │ │ │ └── struts.xml │ ├── production │ │ ├── resources │ │ │ ├── application_prd.properties │ │ │ └── logback.xml │ │ └── webResources │ │ │ └── META-INF │ │ │ └── context.xml │ └── standalone │ │ ├── resources │ │ ├── application_prd.properties │ │ └── logback.xml │ │ └── webResources │ │ └── META-INF │ │ └── context.xml ├── filter │ └── common │ │ ├── ajax-footer.jsp │ │ └── app-ver.jsp ├── java │ └── lab │ │ └── s2jh │ │ ├── MainExecutor.java │ │ └── biz │ │ ├── core │ │ ├── constant │ │ │ ├── VoucherStateEnum.java │ │ │ └── VoucherTypeEnum.java │ │ ├── entity │ │ │ └── BaseBizEntity.java │ │ ├── service │ │ │ └── VoucherNumGenerateService.java │ │ └── web │ │ │ └── BaseBizController.java │ │ ├── demo │ │ ├── dao │ │ │ └── DemoDao.java │ │ ├── entity │ │ │ └── Demo.java │ │ ├── service │ │ │ └── DemoService.java │ │ └── web │ │ │ └── action │ │ │ ├── DemoController.java │ │ │ └── package-info.java │ │ ├── finance │ │ ├── dao │ │ │ ├── AccountInOutDao.java │ │ │ ├── AccountSubjectDao.java │ │ │ └── BizTradeUnitDao.java │ │ ├── entity │ │ │ ├── AccountInOut.java │ │ │ ├── AccountSubject.java │ │ │ └── BizTradeUnit.java │ │ ├── service │ │ │ ├── AccountInOutService.java │ │ │ ├── AccountSubjectService.java │ │ │ └── BizTradeUnitService.java │ │ └── web │ │ │ └── action │ │ │ ├── AccountSubjectController.java │ │ │ ├── BizTradeUnitController.java │ │ │ └── package-info.java │ │ ├── md │ │ ├── dao │ │ │ └── CommodityDao.java │ │ ├── entity │ │ │ └── Commodity.java │ │ ├── service │ │ │ └── CommodityService.java │ │ └── web │ │ │ └── action │ │ │ ├── CommodityController.java │ │ │ └── package-info.java │ │ ├── purchase │ │ ├── dao │ │ │ ├── PurchaseOrderDao.java │ │ │ └── PurchaseOrderDetailDao.java │ │ ├── entity │ │ │ ├── PurchaseOrder.java │ │ │ └── PurchaseOrderDetail.java │ │ ├── service │ │ │ ├── PurchaseOrderDetailService.java │ │ │ └── PurchaseOrderService.java │ │ └── web │ │ │ └── action │ │ │ ├── PurchaseOrderController.java │ │ │ └── package-info.java │ │ ├── sale │ │ ├── dao │ │ │ ├── SaleDeliveryDao.java │ │ │ └── SaleDeliveryDetailDao.java │ │ ├── entity │ │ │ ├── SaleDelivery.java │ │ │ └── SaleDeliveryDetail.java │ │ ├── service │ │ │ ├── SaleDeliveryDetailService.java │ │ │ └── SaleDeliveryService.java │ │ └── web │ │ │ └── action │ │ │ ├── SaleDeliveryController.java │ │ │ ├── SaleDeliveryDetailController.java │ │ │ └── package-info.java │ │ ├── schedule │ │ └── CommodityMonitorJob.java │ │ ├── stock │ │ ├── dao │ │ │ ├── CommodityStockDao.java │ │ │ ├── StockInOutDao.java │ │ │ └── StorageLocationDao.java │ │ ├── entity │ │ │ ├── CommodityStock.java │ │ │ ├── StockInOut.java │ │ │ └── StorageLocation.java │ │ ├── service │ │ │ ├── CommodityStockService.java │ │ │ ├── StockInOutService.java │ │ │ └── StorageLocationService.java │ │ └── web │ │ │ └── action │ │ │ ├── CommodityStockController.java │ │ │ ├── StockInOutController.java │ │ │ ├── StorageLocationController.java │ │ │ └── package-info.java │ │ └── util │ │ └── MockDataGenerator.java ├── resources │ ├── META-INF │ │ └── MANIFEST.MF │ ├── application.properties │ ├── bpm │ │ └── BPM_PURCHASE_ORDER.bpmn │ ├── context │ │ ├── context-profiles.xml │ │ ├── spring-context.xml │ │ └── spring-security.xml │ ├── ehcache-config.xml │ ├── logback.xml │ ├── quartz-cluster.properties │ ├── quartz-ram.properties │ ├── service │ │ ├── spring-bpm.xml │ │ ├── spring-mail.xml │ │ └── spring-schedule.xml │ ├── sql │ │ └── data │ │ │ ├── biz_finance_account_subject.sql │ │ │ ├── t_auth_department.sql │ │ │ ├── t_auth_privilege.sql │ │ │ ├── t_auth_role.sql │ │ │ ├── t_auth_role_r2_privilege.sql │ │ │ ├── t_auth_user.sql │ │ │ ├── t_auth_user_r2_role.sql │ │ │ ├── t_sys_data_dict.sql │ │ │ ├── t_sys_menu.sql │ │ │ └── t_sys_pub_post.sql │ ├── struts.xml │ └── xwork-conversion.properties └── webapp │ ├── .gitignore │ ├── META-INF │ ├── MANIFEST.MF │ ├── context.xml │ └── weblogic-application.xml │ ├── WEB-INF │ ├── template │ │ ├── freemarker │ │ │ └── PASSWORD_RESET_NOTIFY_EMAIL.ftl │ │ └── jasper │ │ │ ├── COMMODITY_BARCODE_LIST.jrxml │ │ │ ├── EXPRESS_QUANFENG.jrxml │ │ │ └── SALE_DELIVERY_COMMODITY_LIST.jrxml │ ├── web.xml │ └── weblogic.xml │ ├── biz │ ├── finance │ │ ├── account-subject-index.js │ │ ├── account-subject-index.jsp │ │ ├── biz-trade-unit-index.js │ │ ├── biz-trade-unit-index.jsp │ │ ├── biz-trade-unit-selection.js │ │ └── biz-trade-unit-selection.jsp │ ├── md │ │ ├── commodity-index.js │ │ ├── commodity-index.jsp │ │ ├── commodity-inputBasic.js │ │ ├── commodity-inputBasic.jsp │ │ ├── commodity-inputTabs.jsp │ │ ├── commodity-selection.js │ │ └── commodity-selection.jsp │ ├── purchase │ │ ├── purchase-order-bpmDelivery.jsp │ │ ├── purchase-order-bpmInput.js │ │ ├── purchase-order-bpmInput.jsp │ │ ├── purchase-order-bpmLevel1Audit.jsp │ │ ├── purchase-order-bpmLevel2Audit.jsp │ │ ├── purchase-order-bpmPay.js │ │ ├── purchase-order-bpmPay.jsp │ │ ├── purchase-order-bpmPrice.js │ │ ├── purchase-order-bpmPrice.jsp │ │ ├── purchase-order-index.jsp │ │ ├── purchase-order-inputBasic.js │ │ ├── purchase-order-inputBasic.jsp │ │ ├── purchase-order-inputTabs.jsp │ │ └── purchase-order-viewBasic.jsp │ ├── sale │ │ ├── sale-delivery-detail-sum.js │ │ ├── sale-delivery-detail-sum.jsp │ │ ├── sale-delivery-index.js │ │ ├── sale-delivery-index.jsp │ │ ├── sale-delivery-inputBasic.js │ │ ├── sale-delivery-inputBasic.jsp │ │ ├── sale-delivery-inputTabs.jsp │ │ ├── sale-delivery-saler-sum.js │ │ ├── sale-delivery-saler-sum.jsp │ │ ├── sale-delivery-sum.js │ │ ├── sale-delivery-sum.jsp │ │ └── sale-delivery-sumTabs.jsp │ └── stock │ │ ├── commodity-stock-index.js │ │ ├── commodity-stock-index.jsp │ │ ├── commodity-stock-inventory-inputBasic.js │ │ ├── commodity-stock-inventory-inputBasic.jsp │ │ ├── commodity-stock-inventory.js │ │ ├── commodity-stock-inventory.jsp │ │ ├── commodity-stock-sumByCommodity.js │ │ ├── commodity-stock-sumByCommodity.jsp │ │ ├── commodity-stock-sumByStorageLocation.js │ │ ├── commodity-stock-sumByStorageLocation.jsp │ │ ├── stock-in-out-index.js │ │ ├── stock-in-out-index.jsp │ │ ├── storage-location-index.js │ │ └── storage-location-index.jsp │ ├── common │ ├── app-ver.jsp │ └── taglibs.jsp │ ├── pub │ └── android_client.apk │ └── resources │ ├── images │ ├── bg01_h.jpg │ ├── bg01_v.jpg │ ├── bg02_h.jpg │ ├── bg02_v.jpg │ ├── favicon.ico │ └── logo.png │ ├── js │ └── biz.js │ └── styles │ └── biz.css └── test ├── java └── lab │ └── s2jh │ └── biz │ ├── demo │ └── test │ │ └── service │ │ └── DemoServiceTest.java │ └── md │ └── test │ └── service │ └── CommodityServiceTest.java └── resources └── application-test.properties /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | build 3 | rebel.xml 4 | /prototype/runtime/work 5 | /prototype/runtime/h2 6 | /prototype/runtime/prototype.war 7 | *.jasper 8 | /*.war 9 | -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: java 2 | jdk: 3 | - openjdk6 4 | - openjdk7 5 | - oraclejdk7 -------------------------------------------------------------------------------- /android_client/.gitignore: -------------------------------------------------------------------------------- 1 | /gen 2 | /bin 3 | -------------------------------------------------------------------------------- /android_client/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /android_client/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/android_client/libs/android-support-v4.jar -------------------------------------------------------------------------------- /android_client/libs/zxing.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/android_client/libs/zxing.jar -------------------------------------------------------------------------------- /android_client/res/drawable-hdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/android_client/res/drawable-hdpi/ic_action_search.png -------------------------------------------------------------------------------- /android_client/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/android_client/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_client/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/android_client/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /android_client/res/drawable-mdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/android_client/res/drawable-mdpi/ic_action_search.png -------------------------------------------------------------------------------- /android_client/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/android_client/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_client/res/drawable-mdpi/navbar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/android_client/res/drawable-mdpi/navbar.9.png -------------------------------------------------------------------------------- /android_client/res/drawable-xhdpi/ic_action_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/android_client/res/drawable-xhdpi/ic_action_search.png -------------------------------------------------------------------------------- /android_client/res/raw/beep.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/android_client/res/raw/beep.ogg -------------------------------------------------------------------------------- /android_client/res/raw/realm_properties: -------------------------------------------------------------------------------- 1 | test: test 2 | admin: OBF:1u2a1toa1w8v1tok1u30,admin 3 | -------------------------------------------------------------------------------- /android_client/src/com/zxing/camera/CameraManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/android_client/src/com/zxing/camera/CameraManager.java -------------------------------------------------------------------------------- /android_client/src/com/zxing/camera/FlashlightManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/android_client/src/com/zxing/camera/FlashlightManager.java -------------------------------------------------------------------------------- /android_client/src/com/zxing/decoding/DecodeThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/android_client/src/com/zxing/decoding/DecodeThread.java -------------------------------------------------------------------------------- /assets-resource/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/main/resources=UTF-8 4 | encoding//src/test/java=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /assets-resource/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /assets-resource/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /assets-resource/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /assets-resource/src/main/java/placeholder.txt: -------------------------------------------------------------------------------- 1 | just test -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/jquery-ztree/css/zTreeStyle/img/diy/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/jquery-ztree/css/zTreeStyle/img/diy/2.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/jquery-ztree/css/zTreeStyle/img/diy/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/jquery-ztree/css/zTreeStyle/img/diy/3.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/jquery-ztree/css/zTreeStyle/img/diy/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/jquery-ztree/css/zTreeStyle/img/diy/4.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/jquery-ztree/css/zTreeStyle/img/diy/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/jquery-ztree/css/zTreeStyle/img/diy/5.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/jquery-ztree/css/zTreeStyle/img/diy/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/jquery-ztree/css/zTreeStyle/img/diy/6.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/jquery-ztree/css/zTreeStyle/img/diy/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/jquery-ztree/css/zTreeStyle/img/diy/7.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/jquery-ztree/css/zTreeStyle/img/diy/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/jquery-ztree/css/zTreeStyle/img/diy/8.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/jquery-ztree/css/zTreeStyle/img/diy/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/jquery-ztree/css/zTreeStyle/img/diy/9.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/0.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/1.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/10.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/11.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/12.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/13.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/14.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/15.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/16.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/17.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/18.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/19.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/2.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/20.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/21.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/22.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/23.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/24.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/25.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/26.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/27.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/28.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/29.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/3.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/30.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/31.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/32.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/33.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/34.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/35.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/36.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/37.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/38.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/39.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/4.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/40.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/41.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/42.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/43.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/44.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/plugins/emoticons/images/45.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/themes/common/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/themes/common/anchor.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/themes/common/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/themes/common/blank.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/themes/common/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/themes/common/flash.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/themes/common/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/themes/common/loading.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/themes/common/media.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/themes/common/media.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/themes/common/rm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/themes/common/rm.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/themes/default/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/themes/default/default.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/themes/qq/editor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/kindeditor/themes/qq/editor.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/taffydb/how-to-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/taffydb/how-to-node.md -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/tooltipster/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tooltipster", 3 | "version": "3.0.0", 4 | "main": ["js/jquery.tooltipster.min.js", "css/tooltipster.css"], 5 | "dependencies": { 6 | "jquery": ">=1.7" 7 | } 8 | } -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/tooltipster/demo/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/tooltipster/demo/map.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/tooltipster/doc/images/browser-ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/tooltipster/doc/images/browser-ie.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/tooltipster/doc/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/tooltipster/doc/images/favicon.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/tooltipster/doc/images/pattern-navy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/tooltipster/doc/images/pattern-navy.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/tooltipster/doc/images/social.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/tooltipster/doc/images/social.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/extras/tooltipster/doc/images/spiderman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/extras/tooltipster/doc/images/spiderman.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/ajax-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/ajax-loading.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/ajax-modal-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/ajax-modal-loading.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/arrow-down.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/avatar.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/avatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/avatar1.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/avatar1_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/avatar1_small.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/avatar2.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/avatar3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/avatar3.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/avatar3_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/avatar3_small.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/bg-opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/bg-opacity.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/bg-white-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/bg-white-lock.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/bg-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/bg-white.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/bg/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/bg/1.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/bg/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/bg/2.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/bg/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/bg/3.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/bg/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/bg/4.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/captcha_placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/captcha_placeholder.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/datatable-row-openclose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/datatable-row-openclose.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ad.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ae.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/af.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ag.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ai.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/al.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/am.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/an.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ao.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ar.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/as.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/at.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/au.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/aw.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ax.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/az.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ba.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bb.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bd.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/be.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bf.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bg.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bh.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bi.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bj.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bm.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bn.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bo.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/br.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bs.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bt.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bv.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bw.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/by.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/bz.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ca.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/catalonia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/catalonia.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cc.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cd.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cf.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cg.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ch.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ci.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ck.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cl.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cm.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cn.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/co.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cr.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cs.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cu.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cv.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cx.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cy.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/cz.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/de.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/dj.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/dk.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/dm.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/do.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/dz.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ec.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ee.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/eg.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/eh.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/england.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/england.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/er.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/es.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/et.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/europeanunion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/europeanunion.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/fam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/fam.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/fi.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/fj.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/fk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/fk.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/fm.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/fo.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/fr.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ga.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gb.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gd.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ge.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gf.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gh.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gi.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gl.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gm.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gn.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gp.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gq.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gr.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gs.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gt.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gu.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gw.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/gy.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/hk.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/hm.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/hn.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/hr.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ht.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/hu.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/id.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ie.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/il.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/in.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/io.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/iq.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ir.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/is.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/it.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/jm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/jm.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/jo.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/jp.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ke.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/kg.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/kh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/kh.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ki.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/km.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/kn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/kn.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/kp.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/kr.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/kw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/kw.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ky.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/kz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/kz.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/la.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/lb.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/lc.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/li.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/lk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/lk.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/lr.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ls.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/lt.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/lu.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/lv.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ly.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ma.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mc.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/md.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/me.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mg.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mh.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mk.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ml.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mm.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mn.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mo.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mp.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mq.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mr.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ms.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mt.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mu.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mv.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mw.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mx.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/my.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/mz.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/na.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/nc.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ne.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/nf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/nf.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ng.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ni.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/nl.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/no.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/np.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/nr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/nr.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/nu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/nu.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/nz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/nz.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/om.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/pa.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/pe.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/pf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/pf.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/pg.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ph.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/pk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/pk.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/pl.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/pm.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/pn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/pn.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/pr.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ps.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/pt.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/pw.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/py.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/qa.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/re.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ro.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/rs.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ru.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/rw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/rw.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sa.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sb.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sc.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/scotland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/scotland.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sd.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/se.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sg.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sh.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/si.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sj.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sk.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sl.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sm.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sn.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/so.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sr.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/st.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sv.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sy.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/sz.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tc.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/td.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tf.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tg.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/th.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tj.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tk.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tl.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tm.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tn.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/to.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tr.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tt.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tv.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tw.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/tz.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ua.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ug.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/um.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/um.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/us.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/uy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/uy.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/uz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/uz.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/va.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/vc.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ve.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/vg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/vg.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/vi.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/vn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/vn.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/vu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/vu.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/wales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/wales.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/wf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/wf.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ws.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/ye.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/yt.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/za.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/za.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/zm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/zm.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/flags/zw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/flags/zw.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/hor-menu-red-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/hor-menu-red-arrow.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/hor-menu-search-close-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/hor-menu-search-close-white.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/hor-menu-search-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/hor-menu-search-close.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/hor-menu-search.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/hor-menu-search.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/hor-menu-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/hor-menu-search.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/icon-color-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/icon-color-close.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/icon-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/icon-color.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/icon-img-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/icon-img-down.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/icon-img-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/icon-img-up.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/inbox-nav-arrow-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/inbox-nav-arrow-blue.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/input-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/input-spinner.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/loading.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/logo-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/logo-big.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/logo.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/menu-toggler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/menu-toggler.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/overlay-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/overlay-icon.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/photo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/photo1.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/photo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/photo2.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/portlet-collapse-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/portlet-collapse-icon-white.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/portlet-collapse-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/portlet-collapse-icon.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/portlet-config-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/portlet-config-icon-white.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/portlet-config-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/portlet-config-icon.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/portlet-expand-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/portlet-expand-icon-white.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/portlet-expand-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/portlet-expand-icon.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/portlet-reload-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/portlet-reload-icon-white.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/portlet-reload-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/portlet-reload-icon.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/portlet-remove-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/portlet-remove-icon-white.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/portlet-remove-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/portlet-remove-icon.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/remove-icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/remove-icon-small.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/search-icon-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/search-icon-blue.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/search-icon-brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/search-icon-brown.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/search-icon-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/search-icon-purple.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/search-icon-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/search-icon-red.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/search-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/search-icon-white.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/search-icon.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/select-caret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/select-caret.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-menu-arrow-green-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-menu-arrow-green-right.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-menu-arrow-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-menu-arrow-green.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-menu-arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-menu-arrow-right.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-menu-arrow-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-menu-arrow-rtl.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-menu-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-menu-arrow.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-search-close-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-search-close-blue.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-search-close-brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-search-close-brown.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-search-close-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-search-close-light.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-search-close-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-search-close-purple.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-search-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-search-close.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-toggler-blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-toggler-blue.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-toggler-brown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-toggler-brown.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-toggler-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-toggler-light.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-toggler-purple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-toggler-purple.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-toggler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-toggler.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-toggler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/sidebar-toggler.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/Thumbs.db -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/amazon.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/behance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/behance.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/blogger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/blogger.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/deviantart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/deviantart.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/dribbble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/dribbble.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/dropbox.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/evernote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/evernote.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/facebook.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/forrst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/forrst.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/github.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/googleplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/googleplus.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/instagram.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/jolicloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/jolicloud.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/last-fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/last-fm.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/linkedin.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/picasa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/picasa.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/pintrest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/pintrest.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/reddit.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/rss.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/skype.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/spotify.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/stumbleupon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/stumbleupon.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/tumblr.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/twitter.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/vimeo.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/vk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/vk.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/wordpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/wordpress.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/xing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/xing.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/yahoo.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/social/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/social/youtube.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/syncfusion-icons-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/syncfusion-icons-white.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/img/syncfusion-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/img/syncfusion-icons.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/bootstrap-colorpicker/img/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/bootstrap-colorpicker/img/alpha.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/bootstrap-colorpicker/img/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/bootstrap-colorpicker/img/hue.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/bootstrap-datepicker/.hgignore: -------------------------------------------------------------------------------- 1 | instrumented/ 2 | tests/coverage.html 3 | -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/bootstrap-datepicker/.travis.yml: -------------------------------------------------------------------------------- 1 | before_script: 2 | - cd ./tests 3 | - echo "new Date().toString();" | phantomjs 4 | script: phantomjs run-qunit.js tests.html 5 | -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/bootstrap-datepicker/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "eternicode/bootstrap-datepicker", 3 | "require": { 4 | "frameworks/jquery" : ">=1.7.1", 5 | "twitter/bootstrap" : ">=2.0.4, <3.0" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/bootstrap-editable/inputs-ext/address/address.css: -------------------------------------------------------------------------------- 1 | .editable-address { 2 | display: block; 3 | margin-bottom: 5px; 4 | } 5 | 6 | .editable-address span { 7 | width: 70px; 8 | display: inline-block; 9 | } -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/bootstrap-modal/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/bootstrap-modal/img/ajax-loader.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/bootstrap-toastr/toastr-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/bootstrap-toastr/toastr-icon.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/clockface/CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | Clockface changelog 2 | ============================= 3 | 4 | Version 1.0.0 Dec 18, 2012 5 | ----------------------------- 6 | Initial release. -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/countdown/plugin/countdownGlowing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/countdown/plugin/countdownGlowing.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/countdown/plugin/countdownLED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/countdown/plugin/countdownLED.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/data-tables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/data-tables/images/sort_asc.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/data-tables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/data-tables/images/sort_both.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/data-tables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/data-tables/images/sort_desc.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/dropzone/images/spritemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/dropzone/images/spritemap.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/dropzone/images/spritemap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/dropzone/images/spritemap@2x.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/dropzone/upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/dropzone/upload.php -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Denote all files that are truly binary and should not be modified. 5 | *.png binary 6 | *.jpg binary 7 | *.gif binary -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/demo/1_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/demo/1_b.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/demo/1_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/demo/1_s.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/demo/2_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/demo/2_b.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/demo/2_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/demo/2_s.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/demo/3_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/demo/3_b.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/demo/3_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/demo/3_s.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/demo/4_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/demo/4_b.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/demo/4_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/demo/4_s.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/demo/5_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/demo/5_b.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/demo/5_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/demo/5_s.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/source/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/source/blank.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/source/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/source/fancybox_loading.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/source/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/source/fancybox_overlay.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/source/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/fancybox/source/fancybox_sprite.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/flot/build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/flot/build.log -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/fuelux/img/tree-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/fuelux/img/tree-icons.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/gritter/images/gritter-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/gritter/images/gritter-blue.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/gritter/images/gritter-brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/gritter/images/gritter-brown.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/gritter/images/gritter-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/gritter/images/gritter-light.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/gritter/images/gritter-long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/gritter/images/gritter-long.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/gritter/images/gritter-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/gritter/images/gritter-purple.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/gritter/images/gritter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/gritter/images/gritter.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/gritter/images/ie-spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/gritter/images/ie-spacer.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/gritter/images_original/gritter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/gritter/images_original/gritter.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/gritter/images_original/ie-spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/gritter/images_original/ie-spacer.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/gritter/images_original/trees.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/gritter/images_original/trees.jpg -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/ion.rangeslider/img/sprite-skin.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/ion.rangeslider/img/sprite-skin.psd -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/jcrop/css/Jcrop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/jcrop/css/Jcrop.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/jquery-file-upload/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/jquery-file-upload/img/loading.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/jquery-file-upload/img/progressbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/jquery-file-upload/img/progressbar.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/jquery-file-upload/server/gae-go/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/jquery-file-upload/server/gae-python/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/jquery-mixitup/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mixitup", 3 | "version": "1.5.4", 4 | "main": "jquery.mixitup.min.js", 5 | "dependencies": { 6 | "jquery": ">=1.4" 7 | } 8 | } -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/jquery-multi-select/README.markdown: -------------------------------------------------------------------------------- 1 | # jquery.multi-select.js 2 | 3 | Usage and Demos [http://loudev.com](http://loudev.com "jquery.multi-select.js") 4 | -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/jquery-multi-select/img/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/jquery-multi-select/img/switch.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/jquery-tags-input/test/fake_plaintext_endpoint.html: -------------------------------------------------------------------------------- 1 | inky 2 | pinky 3 | blinky 4 | clyde 5 | -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/jquery-ui/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/jquery-ui/images/animated-overlay.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/jquery-validation/.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/jquery-validation/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | install: 5 | - npm install grunt-cli -g 6 | - npm install 7 | -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/jquery.pwstrength.bootstrap/test/pwstrength.js: -------------------------------------------------------------------------------- 1 | ../src/pwstrength.js -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/select2/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/select2/select2-spinner.gif -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/select2/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/select2/select2.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/select2/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/select2/select2x2.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/uniform/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/uniform/images/Thumbs.db -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/uniform/images/bg-input-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/uniform/images/bg-input-focus.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/uniform/images/bg-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/uniform/images/bg-input.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/uniform/images/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/uniform/images/sprite.png -------------------------------------------------------------------------------- /assets-resource/src/main/resources/META-INF/resources/assets/plugins/uniform/images/sprite_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/main/resources/META-INF/resources/assets/plugins/uniform/images/sprite_original.png -------------------------------------------------------------------------------- /assets-resource/src/test/java/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/assets-resource/src/test/java/placeholder.txt -------------------------------------------------------------------------------- /common-service/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/main/resources=UTF-8 4 | encoding//src/test/java=UTF-8 5 | encoding//src/test/resources=UTF-8 6 | encoding/=UTF-8 7 | -------------------------------------------------------------------------------- /common-service/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /common-service/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /common-service/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /common-service/generator/.gitignore: -------------------------------------------------------------------------------- 1 | /codes 2 | -------------------------------------------------------------------------------- /common-service/generator/generator.bat: -------------------------------------------------------------------------------- 1 | cd .. 2 | mvn exec:java -Dexec.mainClass="lab.s2jh.tool.builder.SourceCodeFrameworkBuilder" -Dexec.classpathScope=compile -Dexec.args="./generator/" -------------------------------------------------------------------------------- /common-service/generator/generator.sh: -------------------------------------------------------------------------------- 1 | cd .. 2 | 3 | mvn exec:java -Dexec.mainClass="lab.s2jh.tool.builder.SourceCodeFrameworkBuilder" -Dexec.classpathScope=compile -Dexec.args="./generator/" -------------------------------------------------------------------------------- /common-service/src/main/java/lab/s2jh/auth/web/action/package-info.java: -------------------------------------------------------------------------------- 1 | @Namespace("/auth") 2 | @MetaData(value = "权限模块") 3 | package lab.s2jh.auth.web.action; 4 | import lab.s2jh.core.annotation.MetaData; 5 | 6 | import org.apache.struts2.convention.annotation.Namespace; 7 | 8 | -------------------------------------------------------------------------------- /common-service/src/main/java/lab/s2jh/bpm/web/action/package-info.java: -------------------------------------------------------------------------------- 1 | @Namespace("/bpm") 2 | @MetaData(value = "工作流模块") 3 | package lab.s2jh.bpm.web.action; 4 | import lab.s2jh.core.annotation.MetaData; 5 | 6 | import org.apache.struts2.convention.annotation.Namespace; 7 | 8 | -------------------------------------------------------------------------------- /common-service/src/main/java/lab/s2jh/profile/web/action/package-info.java: -------------------------------------------------------------------------------- 1 | @Namespace("/profile") 2 | @MetaData(value = "用户配置模块") 3 | package lab.s2jh.profile.web.action; 4 | import lab.s2jh.core.annotation.MetaData; 5 | 6 | import org.apache.struts2.convention.annotation.Namespace; 7 | 8 | -------------------------------------------------------------------------------- /common-service/src/main/java/lab/s2jh/pub/web/action/package-info.java: -------------------------------------------------------------------------------- 1 | @Namespace("/pub") 2 | @MetaData(value = "公共功能模块") 3 | package lab.s2jh.pub.web.action; 4 | import lab.s2jh.core.annotation.MetaData; 5 | 6 | import org.apache.struts2.convention.annotation.Namespace; 7 | 8 | -------------------------------------------------------------------------------- /common-service/src/main/java/lab/s2jh/rpt/web/action/package-info.java: -------------------------------------------------------------------------------- 1 | @Namespace("/rpt") 2 | @MetaData(value = "报表模块") 3 | package lab.s2jh.rpt.web.action; 4 | import lab.s2jh.core.annotation.MetaData; 5 | 6 | import org.apache.struts2.convention.annotation.Namespace; 7 | 8 | -------------------------------------------------------------------------------- /common-service/src/main/java/lab/s2jh/schedule/web/action/package-info.java: -------------------------------------------------------------------------------- 1 | @Namespace("/schedule") 2 | @MetaData(value = "定时任务模块") 3 | package lab.s2jh.schedule.web.action; 4 | import lab.s2jh.core.annotation.MetaData; 5 | 6 | import org.apache.struts2.convention.annotation.Namespace; 7 | 8 | -------------------------------------------------------------------------------- /common-service/src/main/java/lab/s2jh/sys/web/action/package-info.java: -------------------------------------------------------------------------------- 1 | @Namespace("/sys") 2 | @MetaData(value = "系统模块") 3 | package lab.s2jh.sys.web.action; 4 | import lab.s2jh.core.annotation.MetaData; 5 | 6 | import org.apache.struts2.convention.annotation.Namespace; 7 | 8 | -------------------------------------------------------------------------------- /common-service/src/main/java/lab/s2jh/web/action/package-info.java: -------------------------------------------------------------------------------- 1 | @Namespace("/") 2 | @MetaData(value = "根模块") 3 | package lab.s2jh.web.action; 4 | 5 | import lab.s2jh.core.annotation.MetaData; 6 | 7 | import org.apache.struts2.convention.annotation.Namespace; 8 | 9 | -------------------------------------------------------------------------------- /common-service/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 -------------------------------------------------------------------------------- /common-service/src/main/resources/META-INF/resources/assets/css/pages/about-us.css: -------------------------------------------------------------------------------- 1 | .meet-our-team h3{margin-bottom:0;padding:0 10px 10px;background:#fcfcfc}.meet-our-team small{display:block;font-size:12px}.meet-our-team .team-info{padding:10px;overflow:hidden;background:#f5f5f5} -------------------------------------------------------------------------------- /common-service/src/main/resources/META-INF/resources/assets/scripts/custom.js: -------------------------------------------------------------------------------- 1 | var Custom=function(){var a=function(b){alert(b)};return{init:function(){},doSomeStuff:function(){a()}}}(); -------------------------------------------------------------------------------- /common-service/src/main/resources/META-INF/resources/assets/scripts/lock.js: -------------------------------------------------------------------------------- 1 | var Lock=function(){return{init:function(){$.backstretch(["assets/img/bg/1.jpg","assets/img/bg/2.jpg","assets/img/bg/3.jpg","assets/img/bg/4.jpg"],{fade:1000,duration:8000})}}}(); -------------------------------------------------------------------------------- /common-service/src/main/resources/META-INF/resources/assets/scripts/portfolio.js: -------------------------------------------------------------------------------- 1 | var Portfolio=function(){return{init:function(){$(".mix-grid").mixitup()}}}(); -------------------------------------------------------------------------------- /common-service/src/main/resources/META-INF/resources/assets/scripts/search.js: -------------------------------------------------------------------------------- 1 | var Search=function(){return{init:function(){if(jQuery().datepicker){$(".date-picker").datepicker()}App.initFancybox()}}}(); -------------------------------------------------------------------------------- /common-service/src/main/resources/META-INF/resources/assets/scripts/ui-knob.js: -------------------------------------------------------------------------------- 1 | var UIKnob=function(){return{init:function(){if(!jQuery().knob||App.isIE8()){return}$(".knob").knob({dynamicDraw:true,thickness:0.2,tickColorizeValues:true,skin:"tron"})}}}(); -------------------------------------------------------------------------------- /common-service/src/main/resources/META-INF/resources/common/app-ver.jsp: -------------------------------------------------------------------------------- 1 | <% 2 | pageContext.setAttribute("buildVersion", "${BUILD_ID}"); 3 | %> 4 | -------------------------------------------------------------------------------- /common-service/src/main/resources/META-INF/resources/common/taglibs.jsp: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="s" uri="/struts-tags"%> 2 | <%@ taglib prefix="s3" uri="/struts3-tags"%> 3 | <% 4 | pageContext.setAttribute("base", request.getContextPath()); 5 | %> -------------------------------------------------------------------------------- /common-service/src/main/resources/META-INF/resources/index.jsp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /core-service/.gitignore: -------------------------------------------------------------------------------- 1 | /pom-delivery.xml 2 | /proguard.conf 3 | -------------------------------------------------------------------------------- /core-service/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/main/resources=UTF-8 4 | encoding//src/test/java=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /core-service/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /core-service/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core-service/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /core-service/src/main/java/lab/s2jh/core/web/EntityProcessCallbackHandler.java: -------------------------------------------------------------------------------- 1 | package lab.s2jh.core.web; 2 | 3 | /** 4 | * 用于批量数据单一实体处理逻辑匿名回调接口 5 | * @param 6 | */ 7 | public interface EntityProcessCallbackHandler { 8 | void processEntity(T entity); 9 | } 10 | -------------------------------------------------------------------------------- /core-test/.gitignore: -------------------------------------------------------------------------------- 1 | /pom-delivery.xml 2 | /proguard.conf 3 | -------------------------------------------------------------------------------- /core-test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/main/resources=UTF-8 4 | encoding/=UTF-8 5 | -------------------------------------------------------------------------------- /core-test/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /core-test/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /core-test/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /core-test/src/main/resources/placeholder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/core-test/src/main/resources/placeholder.txt -------------------------------------------------------------------------------- /crawl-service/.gitignore: -------------------------------------------------------------------------------- 1 | /crawl-info.log 2 | -------------------------------------------------------------------------------- /crawl-service/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/test/java=UTF-8 4 | encoding//src/test/resources=UTF-8 5 | encoding/=UTF-8 6 | -------------------------------------------------------------------------------- /crawl-service/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /crawl-service/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /crawl-service/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /jasper-service/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/main/resources=UTF-8 4 | encoding//src/test/java=UTF-8 5 | encoding//src/test/resources=UTF-8 6 | encoding/=UTF-8 7 | -------------------------------------------------------------------------------- /jasper-service/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /jasper-service/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /jasper-service/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /jasper-service/src/main/java/lab/s2jh/rpt/web/action/package-info.java: -------------------------------------------------------------------------------- 1 | @Namespace("/rpt") 2 | @MetaData(value = "报表模块") 3 | package lab.s2jh.rpt.web.action; 4 | import lab.s2jh.core.annotation.MetaData; 5 | 6 | import org.apache.struts2.convention.annotation.Namespace; 7 | 8 | -------------------------------------------------------------------------------- /jasper-service/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 -------------------------------------------------------------------------------- /jasper-service/src/main/resources/META-INF/resources/pub/applet/.gitignore: -------------------------------------------------------------------------------- 1 | /*.jar 2 | -------------------------------------------------------------------------------- /jasper-service/src/main/resources/META-INF/resources/pub/applet/images/guide_controlpanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/jasper-service/src/main/resources/META-INF/resources/pub/applet/images/guide_controlpanel.png -------------------------------------------------------------------------------- /jasper-service/src/main/resources/META-INF/resources/pub/applet/images/guide_firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/jasper-service/src/main/resources/META-INF/resources/pub/applet/images/guide_firefox.png -------------------------------------------------------------------------------- /jasper-service/src/main/resources/META-INF/resources/pub/applet/images/guide_javaconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/jasper-service/src/main/resources/META-INF/resources/pub/applet/images/guide_javaconfig.png -------------------------------------------------------------------------------- /jasper-service/src/main/resources/META-INF/resources/pub/applet/images/guide_security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/jasper-service/src/main/resources/META-INF/resources/pub/applet/images/guide_security.png -------------------------------------------------------------------------------- /project-tools/.gitignore: -------------------------------------------------------------------------------- 1 | /linux 2 | -------------------------------------------------------------------------------- /project-tools/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/main/resources=UTF-8 4 | encoding/=UTF-8 5 | -------------------------------------------------------------------------------- /project-tools/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /project-tools/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /project-tools/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /project-tools/jars/itextasian-1.5.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/project-tools/jars/itextasian-1.5.2.jar -------------------------------------------------------------------------------- /project-tools/jars/sqljdbc-4.0.2206.100.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/project-tools/jars/sqljdbc-4.0.2206.100.jar -------------------------------------------------------------------------------- /project-tools/src/main/resources/lab/s2jh/tool/builder/freemarker/JS_Input_Basic.ftl: -------------------------------------------------------------------------------- 1 | $(function() { 2 | $(".form-${full_entity_name_field}-inputBasic").data("formOptions", { 3 | bindEvents : function() { 4 | var $form = $(this); 5 | } 6 | }); 7 | }); -------------------------------------------------------------------------------- /prototype/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/main/resources=UTF-8 4 | encoding//src/test/java=UTF-8 5 | encoding//src/test/resources=UTF-8 6 | encoding/=UTF-8 7 | -------------------------------------------------------------------------------- /prototype/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /prototype/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /prototype/generator/.gitignore: -------------------------------------------------------------------------------- 1 | /codes 2 | -------------------------------------------------------------------------------- /prototype/generator/entity_list.properties: -------------------------------------------------------------------------------- 1 | # \u9996\u5148\u5b9a\u4e49Entity Class\u7684\u5b8c\u6574\u7c7b\u8def\u5f84\uff0c\u7136\u540e\u5bf9\u9879\u76ee\u524d\u7f00\u4ee5\u65b9\u62ec\u53f7\u62ec\u8d77\u6765 2 | [lab.s2jh].biz.demo.entity.Demo -------------------------------------------------------------------------------- /prototype/generator/generator.bat: -------------------------------------------------------------------------------- 1 | cd .. 2 | mvn exec:java -Dexec.mainClass="lab.s2jh.tool.builder.SourceCodeFrameworkBuilder" -Dexec.classpathScope=compile -Dexec.args="./generator/" -------------------------------------------------------------------------------- /prototype/generator/generator.sh: -------------------------------------------------------------------------------- 1 | cd .. 2 | 3 | mvn exec:java -Dexec.mainClass="lab.s2jh.tool.builder.SourceCodeFrameworkBuilder" -Dexec.classpathScope=compile -Dexec.args="./generator/" -------------------------------------------------------------------------------- /prototype/src/main/deploy/production/webResources/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /prototype/src/main/deploy/standalone/webResources/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /prototype/src/main/filter/common/ajax-footer.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> 2 | -------------------------------------------------------------------------------- /prototype/src/main/filter/common/app-ver.jsp: -------------------------------------------------------------------------------- 1 | V ${BUILD_ID} -------------------------------------------------------------------------------- /prototype/src/main/java/lab/s2jh/biz/demo/web/action/package-info.java: -------------------------------------------------------------------------------- 1 | @Namespace("/biz/demo") 2 | @MetaData(value = "演示模块") 3 | package lab.s2jh.biz.demo.web.action; 4 | import lab.s2jh.core.annotation.MetaData; 5 | 6 | import org.apache.struts2.convention.annotation.Namespace; 7 | 8 | -------------------------------------------------------------------------------- /prototype/src/main/java/lab/s2jh/biz/md/web/action/package-info.java: -------------------------------------------------------------------------------- 1 | @Namespace("/biz/md") 2 | @MetaData(value = "主数据模块") 3 | package lab.s2jh.biz.md.web.action; 4 | 5 | import lab.s2jh.core.annotation.MetaData; 6 | 7 | import org.apache.struts2.convention.annotation.Namespace; 8 | 9 | -------------------------------------------------------------------------------- /prototype/src/main/java/lab/s2jh/biz/stock/web/action/package-info.java: -------------------------------------------------------------------------------- 1 | @Namespace("/biz/stock") 2 | @MetaData(value = "库存模块") 3 | package lab.s2jh.biz.stock.web.action; 4 | import lab.s2jh.core.annotation.MetaData; 5 | 6 | import org.apache.struts2.convention.annotation.Namespace; 7 | 8 | -------------------------------------------------------------------------------- /prototype/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 -------------------------------------------------------------------------------- /prototype/src/main/resources/sql/data/t_auth_department.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO tbl_auth_department (id, title, code,version) VALUES ('1cc7a4f1-44ee-41e2-b488-f0769fa6eca6','市场部','SCB',0); -------------------------------------------------------------------------------- /prototype/src/main/resources/sql/data/t_auth_role_r2_privilege.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/prototype/src/main/resources/sql/data/t_auth_role_r2_privilege.sql -------------------------------------------------------------------------------- /prototype/src/main/resources/sql/data/t_auth_user_r2_role.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO tbl_auth_user_r2_role (id, version, user_id, role_id) VALUES (0, 0, 1, '402880c53d23d99a013d23ed7e160003'); -------------------------------------------------------------------------------- /prototype/src/main/resources/xwork-conversion.properties: -------------------------------------------------------------------------------- 1 | java.math.BigDecimal=lab.s2jh.core.web.convert.BigDecimalConverter 2 | java.util.Date=lab.s2jh.core.web.convert.DateConverter -------------------------------------------------------------------------------- /prototype/src/main/webapp/.gitignore: -------------------------------------------------------------------------------- 1 | /components 2 | /assets 3 | -------------------------------------------------------------------------------- /prototype/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /prototype/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /prototype/src/main/webapp/common/app-ver.jsp: -------------------------------------------------------------------------------- 1 |   -------------------------------------------------------------------------------- /prototype/src/main/webapp/common/taglibs.jsp: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="s" uri="/struts-tags"%> 2 | <%@ taglib prefix="s3" uri="/struts3-tags"%> 3 | <% 4 | pageContext.setAttribute("base", request.getContextPath()); 5 | %> -------------------------------------------------------------------------------- /prototype/src/main/webapp/pub/android_client.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/prototype/src/main/webapp/pub/android_client.apk -------------------------------------------------------------------------------- /prototype/src/main/webapp/resources/images/bg01_h.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/prototype/src/main/webapp/resources/images/bg01_h.jpg -------------------------------------------------------------------------------- /prototype/src/main/webapp/resources/images/bg01_v.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/prototype/src/main/webapp/resources/images/bg01_v.jpg -------------------------------------------------------------------------------- /prototype/src/main/webapp/resources/images/bg02_h.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/prototype/src/main/webapp/resources/images/bg02_h.jpg -------------------------------------------------------------------------------- /prototype/src/main/webapp/resources/images/bg02_v.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/prototype/src/main/webapp/resources/images/bg02_v.jpg -------------------------------------------------------------------------------- /prototype/src/main/webapp/resources/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/prototype/src/main/webapp/resources/images/favicon.ico -------------------------------------------------------------------------------- /prototype/src/main/webapp/resources/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/prototype/src/main/webapp/resources/images/logo.png -------------------------------------------------------------------------------- /prototype/src/main/webapp/resources/styles/biz.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xautlx/s2jh/ab5cbe067d9618ec69f346f62143b40676ecbad8/prototype/src/main/webapp/resources/styles/biz.css --------------------------------------------------------------------------------