From 00c603f0f50adf55609b01f4ceedb3aac33152c7 Mon Sep 17 00:00:00 2001 From: kindlm Date: Mon, 9 Nov 2015 15:01:22 +0100 Subject: [PATCH 1/5] =?UTF-8?q?Eigene=20Berechtigung=20ob=20Unoconv-Dokume?= =?UTF-8?q?nte=20aus=20dem=20FAS=20als=20Nicht-PDF=20exportiert=20werden?= =?UTF-8?q?=20d=C3=BCrfen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Neue Spalte lgart_biscode --- system/checksystem.php | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/system/checksystem.php b/system/checksystem.php index 75a92fff8..a3425eb49 100644 --- a/system/checksystem.php +++ b/system/checksystem.php @@ -3756,6 +3756,34 @@ if($result = @$db->db_query("SELECT * FROM information_schema.tables WHERE table } } +// Eigene Berechtigung ob Unoconv-Dokumente aus dem FAS als Nicht-PDF exportiert werden dürfen +if($result = @$db->db_query("SELECT 1 FROM system.tbl_berechtigung WHERE berechtigung_kurzbz='system/change_outputformat' LIMIT 1")) +{ + if($db->db_num_rows($result)==0) + { + $qry = " + INSERT INTO system.tbl_berechtigung(berechtigung_kurzbz, beschreibung) VALUES('system/change_outputformat','Recht, um Dokumente aus dem FAS als Nicht-PDF exportieren zu duerfen (mittels UMSCHALT- oder STRG-Taste)'); + "; + + if(!$db->db_query($qry)) + echo 'system.tbl_berechtigung '.$db->db_last_error().'
'; + else + echo '
system.tbl_berechtigung: Eigene Berechtigung system/change_outputformat um Dokumente aus dem FAS als Nicht-PDF exportieren zu duerfen (mittels UMSCHALT- oder STRG-Taste) hinzugefuegt!'; + } +} + +// Neue Spalte lgart_biscode +if(!@$db->db_query("SELECT lgart_biscode FROM bis.tbl_lgartcode LIMIT 1")) +{ + $qry = " + ALTER TABLE bis.tbl_lgartcode ADD COLUMN lgart_biscode integer; + "; + + if(!$db->db_query($qry)) + echo 'bis.tbl_lgartcode '.$db->db_last_error().'
'; + else + echo '
Spalte lgart_biscode hinzugefügt'; +} echo '


'; @@ -3774,7 +3802,7 @@ $tabellen=array( "bis.tbl_entwicklungsteam" => array("mitarbeiter_uid","studiengang_kz","besqualcode","beginn","ende","updateamum","updatevon","insertamum","insertvon","ext_id"), "bis.tbl_gemeinde" => array("gemeinde_id","plz","name","ortschaftskennziffer","ortschaftsname","bulacode","bulabez","kennziffer"), "bis.tbl_hauptberuf" => array("hauptberufcode","bezeichnung"), - "bis.tbl_lgartcode" => array("lgartcode","kurzbz","bezeichnung","beantragung"), + "bis.tbl_lgartcode" => array("lgartcode","kurzbz","bezeichnung","beantragung","lgart_biscode"), "bis.tbl_mobilitaetsprogramm" => array("mobilitaetsprogramm_code","kurzbz","beschreibung","sichtbar","sichtbar_outgoing"), "bis.tbl_nation" => array("nation_code","entwicklungsstand","eu","ewr","kontinent","kurztext","langtext","engltext","sperre"), "bis.tbl_orgform" => array("orgform_kurzbz","code","bezeichnung","rolle"), From ed7c62c648a79bd5b194afc28bc970c5c7273a65 Mon Sep 17 00:00:00 2001 From: oesi Date: Tue, 10 Nov 2015 10:27:58 +0100 Subject: [PATCH 2/5] =?UTF-8?q?DoubleDegree=20Studierende=20in=20reinen=20?= =?UTF-8?q?Vollzeitstudieng=C3=A4ngen=20werden=20nun=20als=20VZ=20gemeldet?= =?UTF-8?q?=20anstatt=20als=20BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vilesci/bis/studentenmeldung.php | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/vilesci/bis/studentenmeldung.php b/vilesci/bis/studentenmeldung.php index 0154dc736..b60ce0a39 100644 --- a/vilesci/bis/studentenmeldung.php +++ b/vilesci/bis/studentenmeldung.php @@ -148,12 +148,6 @@ if($result = $db->db_query($qry)) } //Studiengangsdaten auslesen -$qry=" - SELECT - * - FROM - public.tbl_studiengang - WHERE studiengang_kz=".$db->db_add_param($stg_kz); $stg_obj = new studiengang(); if($stg_obj->load($stg_kz)) { @@ -175,6 +169,11 @@ if($stg_obj->load($stg_kz)) default: die('

Dieser Studiengangstyp kann nicht gemeldet werden. Typ muss (b, m, d oder e) sein

'); break; } + // DoubleDegree Studierende werden per Default aus BB gemeldet. + // Wenn es ein reiner VZ Studiengang ist, dann sollen diese aber als VZ gemeldet werden. + if($stg_obj->orgform_kurzbz=='VZ') + $orgform_code_array['DDP']=$orgform_code_array['VZ']; + $orgform_code = $orgform_code_array[$stg_obj->orgform_kurzbz]; $orgform_kurzbz=$stg_obj->orgform_kurzbz; } @@ -830,7 +829,7 @@ function GenerateXMLStudentBlock($row) die("\nQry Failed:".$qry_ap); } } - if($storgform!='VZ') + if($orgform_code_array[$storgform]!=1) // Wenn nicht Vollzeit { if($row->berufstaetigkeit_code=='' || $row->berufstaetigkeit_code==null) { @@ -981,7 +980,7 @@ function GenerateXMLStudentBlock($row) $datei.=" ".$status.""; - if($storgform!='VZ' && !$ausserordentlich) + if($orgform_code_array[$storgform]!=1 && !$ausserordentlich) // Wenn nicht Vollzeit und nicht Ausserordentlich { $datei.=" ".$row->berufstaetigkeit_code.""; @@ -1211,4 +1210,4 @@ function GenerateXMLBewerberBlock($orgformcode=null) } return $datei; } -?> \ No newline at end of file +?> From ad0062fd40e207a24b1d943cdd98bd1da1309664 Mon Sep 17 00:00:00 2001 From: Andreas Moik Date: Wed, 11 Nov 2015 10:49:31 +0100 Subject: [PATCH 3/5] =?UTF-8?q?jQuery=20EasyUI=20=09-jQuery=20EasyUI=20in?= =?UTF-8?q?=20/include/js=20eingef=C3=BCgt=20=09-Metainclude=20f=C3=BCr=20?= =?UTF-8?q?jQuery=20EasyUI=20in=20/include/meta=20angelegt=20welche=20alle?= =?UTF-8?q?=20n=C3=B6tigen=20jQuery=20EasyUI=20Dateien=20und=20die=20unter?= =?UTF-8?q?halb=20beschriebene=20custom=20css=20als=20html=20Import=20bere?= =?UTF-8?q?itstellt=20=09-Custom=20css=20Datei=20f=C3=BCr=20jQuery=20EasyU?= =?UTF-8?q?I=20in=20/include/vendor=5Fcustom/easyui=20angelegt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/js/easyui-vilesci-theme/easyui.css | 2870 ++++ .../images/accordion_arrows.png | Bin 0 -> 122 bytes .../js/easyui-vilesci-theme/images/blank.gif | Bin 0 -> 43 bytes .../images/calendar_arrows.png | Bin 0 -> 173 bytes .../images/combo_arrow.png | Bin 0 -> 100 bytes .../images/datagrid_icons.png | Bin 0 -> 300 bytes .../images/datebox_arrow.png | Bin 0 -> 626 bytes .../images/layout_arrows.png | Bin 0 -> 179 bytes .../images/linkbutton_bg.png | Bin 0 -> 1274 bytes .../easyui-vilesci-theme/images/loading.gif | Bin 0 -> 1737 bytes .../images/menu_arrows.png | Bin 0 -> 134 bytes .../images/messager_icons.png | Bin 0 -> 6116 bytes .../images/pagination_icons.png | Bin 0 -> 339 bytes .../images/panel_tools.png | Bin 0 -> 184 bytes .../images/searchbox_button.png | Bin 0 -> 813 bytes .../images/slider_handle.png | Bin 0 -> 863 bytes .../images/spinner_arrows.png | Bin 0 -> 112 bytes .../images/tabs_icons.png | Bin 0 -> 144 bytes .../images/tree_icons.png | Bin 0 -> 3086 bytes .../images/validatebox_warning.png | Bin 0 -> 921 bytes include/js/easyui/changelog.txt | 491 + .../demo-mobile/accordion/_content.html | 18 + .../easyui/demo-mobile/accordion/basic.html | 1 + .../easyui/demo-mobile/accordion/header.html | 1 + .../easyui/demo-mobile/animation/basic.html | 1 + .../js/easyui/demo-mobile/animation/fade.html | 1 + .../js/easyui/demo-mobile/animation/pop.html | 1 + .../easyui/demo-mobile/animation/slide.html | 1 + .../js/easyui/demo-mobile/badge/basic.html | 1 + .../js/easyui/demo-mobile/badge/button.html | 1 + include/js/easyui/demo-mobile/badge/list.html | 1 + include/js/easyui/demo-mobile/badge/tabs.html | 1 + .../js/easyui/demo-mobile/button/basic.html | 1 + .../js/easyui/demo-mobile/button/group.html | 1 + .../js/easyui/demo-mobile/button/style.html | 1 + .../js/easyui/demo-mobile/button/switch.html | 1 + .../js/easyui/demo-mobile/datagrid/basic.html | 1 + .../demo-mobile/datagrid/rowediting.html | 104 + .../js/easyui/demo-mobile/datalist/basic.html | 1 + .../js/easyui/demo-mobile/datalist/group.html | 1 + .../demo-mobile/datalist/selection.html | 1 + .../js/easyui/demo-mobile/dialog/basic.html | 46 + .../js/easyui/demo-mobile/dialog/message.html | 41 + include/js/easyui/demo-mobile/form/basic.html | 54 + .../js/easyui/demo-mobile/images/login1.jpg | Bin 0 -> 25789 bytes .../js/easyui/demo-mobile/images/modem.png | Bin 0 -> 1633 bytes include/js/easyui/demo-mobile/images/more.png | Bin 0 -> 110 bytes include/js/easyui/demo-mobile/images/pda.png | Bin 0 -> 1787 bytes .../js/easyui/demo-mobile/images/scanner.png | Bin 0 -> 2600 bytes .../js/easyui/demo-mobile/images/tablet.png | Bin 0 -> 2505 bytes .../demo-mobile/input/numberspinner.html | 1 + .../js/easyui/demo-mobile/input/textbox.html | 1 + .../js/easyui/demo-mobile/layout/basic.html | 32 + include/js/easyui/demo-mobile/menu/basic.html | 39 + .../js/easyui/demo-mobile/menu/menubar.html | 45 + .../js/easyui/demo-mobile/panel/_content.html | 18 + include/js/easyui/demo-mobile/panel/ajax.html | 1 + .../js/easyui/demo-mobile/panel/basic.html | 1 + include/js/easyui/demo-mobile/panel/nav.html | 39 + .../easyui/demo-mobile/simplelist/basic.html | 1 + .../easyui/demo-mobile/simplelist/button.html | 1 + .../easyui/demo-mobile/simplelist/group.html | 1 + .../easyui/demo-mobile/simplelist/image.html | 1 + .../easyui/demo-mobile/simplelist/link.html | 1 + include/js/easyui/demo-mobile/tabs/basic.html | 1 + include/js/easyui/demo-mobile/tabs/nav.html | 1 + include/js/easyui/demo-mobile/tabs/pill.html | 1 + .../js/easyui/demo-mobile/toolbar/basic.html | 63 + .../js/easyui/demo-mobile/toolbar/button.html | 45 + .../js/easyui/demo-mobile/toolbar/menu.html | 76 + include/js/easyui/demo-mobile/tree/basic.html | 56 + include/js/easyui/demo-mobile/tree/dnd.html | 56 + .../js/easyui/demo/accordion/_content.html | 18 + include/js/easyui/demo/accordion/actions.html | 51 + include/js/easyui/demo/accordion/ajax.html | 28 + include/js/easyui/demo/accordion/basic.html | 52 + .../easyui/demo/accordion/datagrid_data1.json | 12 + .../js/easyui/demo/accordion/expandable.html | 33 + include/js/easyui/demo/accordion/fluid.html | 33 + .../js/easyui/demo/accordion/multiple.html | 34 + include/js/easyui/demo/accordion/tools.html | 48 + include/js/easyui/demo/calendar/basic.html | 19 + include/js/easyui/demo/calendar/custom.html | 46 + .../js/easyui/demo/calendar/disabledate.html | 28 + include/js/easyui/demo/calendar/firstday.html | 30 + include/js/easyui/demo/calendar/fluid.html | 23 + include/js/easyui/demo/combo/animation.html | 37 + include/js/easyui/demo/combo/basic.html | 42 + include/js/easyui/demo/combobox/actions.html | 86 + include/js/easyui/demo/combobox/basic.html | 71 + .../easyui/demo/combobox/combobox_data1.json | 22 + .../easyui/demo/combobox/combobox_data2.json | 47 + .../js/easyui/demo/combobox/customformat.html | 33 + .../js/easyui/demo/combobox/dynamicdata.html | 23 + include/js/easyui/demo/combobox/fluid.html | 36 + include/js/easyui/demo/combobox/group.html | 26 + include/js/easyui/demo/combobox/icons.html | 32 + .../js/easyui/demo/combobox/multiline.html | 71 + include/js/easyui/demo/combobox/multiple.html | 29 + .../js/easyui/demo/combobox/navigation.html | 73 + .../js/easyui/demo/combobox/remotedata.html | 27 + .../js/easyui/demo/combobox/remotejsonp.html | 48 + include/js/easyui/demo/combogrid/actions.html | 53 + include/js/easyui/demo/combogrid/basic.html | 34 + .../easyui/demo/combogrid/datagrid_data1.json | 12 + include/js/easyui/demo/combogrid/fluid.html | 54 + .../js/easyui/demo/combogrid/initvalue.html | 33 + .../js/easyui/demo/combogrid/multiple.html | 37 + .../js/easyui/demo/combogrid/navigation.html | 38 + .../js/easyui/demo/combogrid/setvalue.html | 52 + include/js/easyui/demo/combotree/actions.html | 39 + include/js/easyui/demo/combotree/basic.html | 19 + include/js/easyui/demo/combotree/fluid.html | 22 + .../js/easyui/demo/combotree/initvalue.html | 19 + .../js/easyui/demo/combotree/multiple.html | 22 + .../js/easyui/demo/combotree/tree_data1.json | 49 + .../js/easyui/demo/datagrid/aligncolumns.html | 32 + include/js/easyui/demo/datagrid/basic.html | 32 + .../js/easyui/demo/datagrid/cacheeditor.html | 149 + .../js/easyui/demo/datagrid/cellediting.html | 94 + .../js/easyui/demo/datagrid/cellstyle.html | 42 + include/js/easyui/demo/datagrid/checkbox.html | 42 + .../demo/datagrid/clientpagination.html | 160 + .../js/easyui/demo/datagrid/columngroup.html | 34 + .../easyui/demo/datagrid/complextoolbar.html | 50 + .../js/easyui/demo/datagrid/contextmenu.html | 81 + .../js/easyui/demo/datagrid/custompager.html | 53 + .../easyui/demo/datagrid/datagrid_data1.json | 12 + .../easyui/demo/datagrid/datagrid_data2.json | 15 + include/js/easyui/demo/datagrid/fluid.html | 32 + include/js/easyui/demo/datagrid/footer.html | 38 + .../easyui/demo/datagrid/formatcolumns.html | 39 + .../easyui/demo/datagrid/frozencolumns.html | 35 + .../js/easyui/demo/datagrid/frozenrows.html | 44 + .../js/easyui/demo/datagrid/mergecells.html | 58 + .../js/easyui/demo/datagrid/multisorting.html | 37 + include/js/easyui/demo/datagrid/products.json | 9 + .../js/easyui/demo/datagrid/rowborder.html | 60 + .../js/easyui/demo/datagrid/rowediting.html | 118 + include/js/easyui/demo/datagrid/rowstyle.html | 41 + .../js/easyui/demo/datagrid/selection.html | 57 + .../easyui/demo/datagrid/simpletoolbar.html | 45 + .../js/easyui/demo/datagrid/transform.html | 46 + include/js/easyui/demo/datalist/basic.html | 69 + include/js/easyui/demo/datalist/checkbox.html | 25 + .../easyui/demo/datalist/datalist_data1.json | 18 + include/js/easyui/demo/datalist/group.html | 23 + .../js/easyui/demo/datalist/multiselect.html | 23 + .../js/easyui/demo/datalist/remotedata.html | 22 + include/js/easyui/demo/datebox/basic.html | 18 + include/js/easyui/demo/datebox/buttons.html | 28 + include/js/easyui/demo/datebox/clone.html | 27 + .../js/easyui/demo/datebox/dateformat.html | 39 + include/js/easyui/demo/datebox/events.html | 27 + include/js/easyui/demo/datebox/fluid.html | 21 + include/js/easyui/demo/datebox/restrict.html | 30 + .../easyui/demo/datebox/sharedcalendar.html | 30 + include/js/easyui/demo/datebox/validate.html | 30 + include/js/easyui/demo/datetimebox/basic.html | 18 + include/js/easyui/demo/datetimebox/fluid.html | 21 + .../js/easyui/demo/datetimebox/initvalue.html | 19 + .../easyui/demo/datetimebox/showseconds.html | 22 + .../js/easyui/demo/datetimespinner/basic.html | 18 + .../demo/datetimespinner/clearicon.html | 28 + .../js/easyui/demo/datetimespinner/fluid.html | 21 + .../easyui/demo/datetimespinner/format.html | 50 + include/js/easyui/demo/demo.css | 21 + include/js/easyui/demo/dialog/basic.html | 23 + .../js/easyui/demo/dialog/complextoolbar.html | 46 + include/js/easyui/demo/dialog/fluid.html | 24 + .../js/easyui/demo/dialog/toolbarbuttons.html | 52 + include/js/easyui/demo/draggable/basic.html | 21 + .../js/easyui/demo/draggable/constrain.html | 35 + include/js/easyui/demo/draggable/snap.html | 37 + include/js/easyui/demo/droppable/accept.html | 78 + include/js/easyui/demo/droppable/basic.html | 77 + include/js/easyui/demo/droppable/sort.html | 71 + include/js/easyui/demo/easyloader/basic.html | 75 + include/js/easyui/demo/filebox/basic.html | 34 + .../js/easyui/demo/filebox/buttonalign.html | 29 + include/js/easyui/demo/filebox/fluid.html | 21 + include/js/easyui/demo/form/basic.html | 59 + include/js/easyui/demo/form/form_data1.json | 7 + include/js/easyui/demo/form/load.html | 68 + .../js/easyui/demo/form/validateonsubmit.html | 63 + include/js/easyui/demo/layout/_content.html | 18 + include/js/easyui/demo/layout/addremove.html | 53 + include/js/easyui/demo/layout/autoheight.html | 59 + include/js/easyui/demo/layout/basic.html | 39 + .../js/easyui/demo/layout/collapsetitle.html | 39 + include/js/easyui/demo/layout/complex.html | 57 + .../demo/layout/customcollapsetitle.html | 51 + .../js/easyui/demo/layout/datagrid_data1.json | 12 + include/js/easyui/demo/layout/fluid.html | 24 + include/js/easyui/demo/layout/full.html | 19 + .../js/easyui/demo/layout/nestedlayout.html | 31 + .../js/easyui/demo/layout/nocollapsible.html | 34 + .../demo/layout/propertygrid_data1.json | 20 + include/js/easyui/demo/layout/tree_data1.json | 49 + include/js/easyui/demo/linkbutton/basic.html | 33 + include/js/easyui/demo/linkbutton/fluid.html | 33 + include/js/easyui/demo/linkbutton/group.html | 33 + .../js/easyui/demo/linkbutton/iconalign.html | 32 + include/js/easyui/demo/linkbutton/plain.html | 28 + include/js/easyui/demo/linkbutton/size.html | 34 + include/js/easyui/demo/linkbutton/style.html | 31 + include/js/easyui/demo/linkbutton/toggle.html | 25 + include/js/easyui/demo/menu/basic.html | 68 + include/js/easyui/demo/menu/customitem.html | 55 + include/js/easyui/demo/menu/events.html | 40 + include/js/easyui/demo/menu/inline.html | 59 + include/js/easyui/demo/menu/nav.html | 132 + .../js/easyui/demo/menubutton/actions.html | 58 + .../js/easyui/demo/menubutton/alignment.html | 69 + include/js/easyui/demo/menubutton/basic.html | 54 + include/js/easyui/demo/menubutton/nav.html | 152 + include/js/easyui/demo/messager/alert.html | 40 + include/js/easyui/demo/messager/basic.html | 56 + .../js/easyui/demo/messager/interactive.html | 36 + include/js/easyui/demo/messager/position.html | 140 + include/js/easyui/demo/numberbox/basic.html | 28 + include/js/easyui/demo/numberbox/fluid.html | 28 + include/js/easyui/demo/numberbox/format.html | 40 + include/js/easyui/demo/numberbox/range.html | 31 + .../js/easyui/demo/numberspinner/basic.html | 25 + .../js/easyui/demo/numberspinner/fluid.html | 21 + .../easyui/demo/numberspinner/increment.html | 18 + .../js/easyui/demo/numberspinner/range.html | 18 + .../js/easyui/demo/pagination/attaching.html | 32 + include/js/easyui/demo/pagination/basic.html | 20 + .../easyui/demo/pagination/custombuttons.html | 38 + include/js/easyui/demo/pagination/layout.html | 62 + include/js/easyui/demo/pagination/links.html | 23 + include/js/easyui/demo/pagination/simple.html | 25 + include/js/easyui/demo/panel/_content.html | 18 + include/js/easyui/demo/panel/basic.html | 31 + include/js/easyui/demo/panel/customtools.html | 35 + include/js/easyui/demo/panel/fluid.html | 21 + include/js/easyui/demo/panel/footer.html | 22 + include/js/easyui/demo/panel/loadcontent.html | 27 + include/js/easyui/demo/panel/nestedpanel.html | 30 + include/js/easyui/demo/panel/paneltools.html | 37 + include/js/easyui/demo/progressbar/basic.html | 30 + include/js/easyui/demo/progressbar/fluid.html | 21 + .../js/easyui/demo/propertygrid/basic.html | 61 + .../demo/propertygrid/customcolumns.html | 31 + .../easyui/demo/propertygrid/groupformat.html | 30 + .../demo/propertygrid/propertygrid_data1.json | 20 + include/js/easyui/demo/resizable/basic.html | 24 + include/js/easyui/demo/searchbox/basic.html | 23 + .../js/easyui/demo/searchbox/category.html | 28 + include/js/easyui/demo/searchbox/fluid.html | 25 + include/js/easyui/demo/slider/basic.html | 18 + include/js/easyui/demo/slider/fluid.html | 21 + include/js/easyui/demo/slider/formattip.html | 28 + include/js/easyui/demo/slider/nonlinear.html | 58 + include/js/easyui/demo/slider/range.html | 23 + include/js/easyui/demo/slider/rule.html | 21 + include/js/easyui/demo/slider/vertical.html | 25 + .../js/easyui/demo/splitbutton/actions.html | 64 + include/js/easyui/demo/splitbutton/basic.html | 61 + .../js/easyui/demo/switchbutton/action.html | 24 + .../js/easyui/demo/switchbutton/basic.html | 32 + include/js/easyui/demo/tabs/_content.html | 18 + include/js/easyui/demo/tabs/autoheight.html | 36 + include/js/easyui/demo/tabs/basic.html | 36 + include/js/easyui/demo/tabs/dropdown.html | 55 + include/js/easyui/demo/tabs/fixedwidth.html | 37 + include/js/easyui/demo/tabs/fluid.html | 24 + include/js/easyui/demo/tabs/hover.html | 46 + include/js/easyui/demo/tabs/images/modem.png | Bin 0 -> 1633 bytes include/js/easyui/demo/tabs/images/pda.png | Bin 0 -> 1787 bytes .../js/easyui/demo/tabs/images/scanner.png | Bin 0 -> 2600 bytes include/js/easyui/demo/tabs/images/tablet.png | Bin 0 -> 2505 bytes include/js/easyui/demo/tabs/nestedtabs.html | 54 + include/js/easyui/demo/tabs/striptools.html | 39 + include/js/easyui/demo/tabs/style.html | 51 + include/js/easyui/demo/tabs/tabimage.html | 41 + include/js/easyui/demo/tabs/tabposition.html | 45 + include/js/easyui/demo/tabs/tabstools.html | 41 + include/js/easyui/demo/tabs/tree_data1.json | 49 + include/js/easyui/demo/textbox/basic.html | 39 + include/js/easyui/demo/textbox/button.html | 23 + include/js/easyui/demo/textbox/clearicon.html | 61 + include/js/easyui/demo/textbox/custom.html | 34 + include/js/easyui/demo/textbox/fluid.html | 21 + include/js/easyui/demo/textbox/icons.html | 45 + include/js/easyui/demo/textbox/multiline.html | 18 + include/js/easyui/demo/textbox/size.html | 29 + .../js/easyui/demo/timespinner/actions.html | 38 + include/js/easyui/demo/timespinner/basic.html | 18 + include/js/easyui/demo/timespinner/fluid.html | 21 + include/js/easyui/demo/timespinner/range.html | 20 + include/js/easyui/demo/tooltip/_content.html | 18 + include/js/easyui/demo/tooltip/_dialog.html | 23 + include/js/easyui/demo/tooltip/ajax.html | 32 + include/js/easyui/demo/tooltip/basic.html | 20 + .../js/easyui/demo/tooltip/customcontent.html | 32 + .../js/easyui/demo/tooltip/customstyle.html | 52 + include/js/easyui/demo/tooltip/position.html | 34 + include/js/easyui/demo/tooltip/toolbar.html | 40 + .../js/easyui/demo/tooltip/tooltipdialog.html | 44 + include/js/easyui/demo/tree/actions.html | 47 + include/js/easyui/demo/tree/animation.html | 20 + include/js/easyui/demo/tree/basic.html | 53 + include/js/easyui/demo/tree/checkbox.html | 37 + include/js/easyui/demo/tree/contextmenu.html | 65 + include/js/easyui/demo/tree/dnd.html | 20 + include/js/easyui/demo/tree/editable.html | 27 + include/js/easyui/demo/tree/formatting.html | 32 + include/js/easyui/demo/tree/icons.html | 20 + include/js/easyui/demo/tree/lazyload.html | 82 + include/js/easyui/demo/tree/lines.html | 20 + include/js/easyui/demo/tree/tree_data1.json | 49 + include/js/easyui/demo/tree/tree_data2.json | 61 + include/js/easyui/demo/treegrid/actions.html | 64 + include/js/easyui/demo/treegrid/basic.html | 34 + .../demo/treegrid/clientpagination.html | 189 + .../js/easyui/demo/treegrid/contextmenu.html | 106 + include/js/easyui/demo/treegrid/editable.html | 93 + include/js/easyui/demo/treegrid/fluid.html | 33 + include/js/easyui/demo/treegrid/footer.html | 55 + include/js/easyui/demo/treegrid/lines.html | 35 + include/js/easyui/demo/treegrid/reports.html | 49 + .../easyui/demo/treegrid/treegrid_data1.json | 73 + .../easyui/demo/treegrid/treegrid_data2.json | 11 + .../easyui/demo/treegrid/treegrid_data3.json | 13 + include/js/easyui/demo/validatebox/basic.html | 50 + .../demo/validatebox/customtooltip.html | 95 + .../demo/validatebox/validateonblur.html | 57 + include/js/easyui/demo/window/basic.html | 23 + .../js/easyui/demo/window/customtools.html | 30 + include/js/easyui/demo/window/fluid.html | 24 + include/js/easyui/demo/window/footer.html | 24 + .../js/easyui/demo/window/inlinewindow.html | 26 + .../js/easyui/demo/window/modalwindow.html | 24 + .../js/easyui/demo/window/windowlayout.html | 33 + include/js/easyui/easyloader.js | 190 + include/js/easyui/jquery.easyui.min.js | 14299 ++++++++++++++++ include/js/easyui/jquery.easyui.mobile.js | 137 + include/js/easyui/jquery.min.js | 5 + include/js/easyui/license_freeware.txt | 14 + include/js/easyui/locale/easyui-lang-af.js | 44 + include/js/easyui/locale/easyui-lang-am.js | 46 + include/js/easyui/locale/easyui-lang-ar.js | 45 + include/js/easyui/locale/easyui-lang-bg.js | 44 + include/js/easyui/locale/easyui-lang-ca.js | 44 + include/js/easyui/locale/easyui-lang-cs.js | 44 + include/js/easyui/locale/easyui-lang-cz.js | 44 + include/js/easyui/locale/easyui-lang-da.js | 44 + include/js/easyui/locale/easyui-lang-de.js | 63 + include/js/easyui/locale/easyui-lang-el.js | 45 + include/js/easyui/locale/easyui-lang-en.js | 45 + include/js/easyui/locale/easyui-lang-es.js | 45 + include/js/easyui/locale/easyui-lang-fr.js | 44 + include/js/easyui/locale/easyui-lang-it.js | 45 + include/js/easyui/locale/easyui-lang-jp.js | 45 + include/js/easyui/locale/easyui-lang-nl.js | 44 + include/js/easyui/locale/easyui-lang-pl.js | 45 + include/js/easyui/locale/easyui-lang-pt_BR.js | 45 + include/js/easyui/locale/easyui-lang-ru.js | 46 + include/js/easyui/locale/easyui-lang-sv_SE.js | 45 + include/js/easyui/locale/easyui-lang-tr.js | 59 + include/js/easyui/locale/easyui-lang-zh_CN.js | 66 + include/js/easyui/locale/easyui-lang-zh_TW.js | 48 + include/js/easyui/plugins/jquery.accordion.js | 320 + include/js/easyui/plugins/jquery.calendar.js | 389 + include/js/easyui/plugins/jquery.combo.js | 363 + include/js/easyui/plugins/jquery.combobox.js | 456 + include/js/easyui/plugins/jquery.combogrid.js | 320 + include/js/easyui/plugins/jquery.combotree.js | 191 + include/js/easyui/plugins/jquery.datagrid.js | 2479 +++ include/js/easyui/plugins/jquery.datalist.js | 136 + include/js/easyui/plugins/jquery.datebox.js | 212 + .../js/easyui/plugins/jquery.datetimebox.js | 178 + .../easyui/plugins/jquery.datetimespinner.js | 61 + include/js/easyui/plugins/jquery.dialog.js | 136 + include/js/easyui/plugins/jquery.draggable.js | 304 + include/js/easyui/plugins/jquery.droppable.js | 62 + include/js/easyui/plugins/jquery.filebox.js | 82 + include/js/easyui/plugins/jquery.form.js | 329 + include/js/easyui/plugins/jquery.layout.js | 483 + .../js/easyui/plugins/jquery.linkbutton.js | 184 + include/js/easyui/plugins/jquery.menu.js | 504 + .../js/easyui/plugins/jquery.menubutton.js | 128 + include/js/easyui/plugins/jquery.messager.js | 179 + include/js/easyui/plugins/jquery.mobile.js | 137 + include/js/easyui/plugins/jquery.numberbox.js | 174 + .../js/easyui/plugins/jquery.numberspinner.js | 58 + .../js/easyui/plugins/jquery.pagination.js | 286 + include/js/easyui/plugins/jquery.panel.js | 613 + include/js/easyui/plugins/jquery.parser.js | 325 + .../js/easyui/plugins/jquery.progressbar.js | 84 + .../js/easyui/plugins/jquery.propertygrid.js | 330 + include/js/easyui/plugins/jquery.resizable.js | 170 + include/js/easyui/plugins/jquery.searchbox.js | 132 + include/js/easyui/plugins/jquery.slider.js | 339 + include/js/easyui/plugins/jquery.spinner.js | 74 + .../js/easyui/plugins/jquery.splitbutton.js | 49 + .../js/easyui/plugins/jquery.switchbutton.js | 193 + include/js/easyui/plugins/jquery.tabs.js | 704 + include/js/easyui/plugins/jquery.textbox.js | 396 + .../js/easyui/plugins/jquery.timespinner.js | 176 + include/js/easyui/plugins/jquery.tooltip.js | 232 + include/js/easyui/plugins/jquery.tree.js | 1249 ++ include/js/easyui/plugins/jquery.treegrid.js | 1116 ++ .../js/easyui/plugins/jquery.validatebox.js | 255 + include/js/easyui/plugins/jquery.window.js | 258 + include/js/easyui/readme.txt | 4 + include/js/easyui/src/easyloader.js | 426 + include/js/easyui/src/jquery.accordion.js | 413 + include/js/easyui/src/jquery.calendar.js | 438 + include/js/easyui/src/jquery.combobox.js | 566 + include/js/easyui/src/jquery.datebox.js | 285 + include/js/easyui/src/jquery.draggable.js | 395 + include/js/easyui/src/jquery.droppable.js | 81 + include/js/easyui/src/jquery.form.js | 387 + include/js/easyui/src/jquery.linkbutton.js | 242 + include/js/easyui/src/jquery.menu.js | 637 + include/js/easyui/src/jquery.parser.js | 359 + include/js/easyui/src/jquery.progressbar.js | 107 + include/js/easyui/src/jquery.propertygrid.js | 420 + include/js/easyui/src/jquery.resizable.js | 247 + include/js/easyui/src/jquery.slider.js | 443 + include/js/easyui/src/jquery.tabs.js | 884 + include/js/easyui/src/jquery.window.js | 374 + include/js/easyui/themes/black/accordion.css | 41 + include/js/easyui/themes/black/calendar.css | 197 + include/js/easyui/themes/black/combo.css | 60 + include/js/easyui/themes/black/combobox.css | 24 + include/js/easyui/themes/black/datagrid.css | 276 + include/js/easyui/themes/black/datalist.css | 95 + include/js/easyui/themes/black/datebox.css | 36 + include/js/easyui/themes/black/dialog.css | 32 + include/js/easyui/themes/black/easyui.css | 2869 ++++ include/js/easyui/themes/black/filebox.css | 20 + .../themes/black/images/accordion_arrows.png | Bin 0 -> 122 bytes .../js/easyui/themes/black/images/blank.gif | Bin 0 -> 43 bytes .../themes/black/images/calendar_arrows.png | Bin 0 -> 173 bytes .../themes/black/images/combo_arrow.png | Bin 0 -> 100 bytes .../themes/black/images/datagrid_icons.png | Bin 0 -> 300 bytes .../themes/black/images/datebox_arrow.png | Bin 0 -> 626 bytes .../themes/black/images/layout_arrows.png | Bin 0 -> 179 bytes .../themes/black/images/linkbutton_bg.png | Bin 0 -> 1274 bytes .../js/easyui/themes/black/images/loading.gif | Bin 0 -> 1737 bytes .../themes/black/images/menu_arrows.png | Bin 0 -> 134 bytes .../themes/black/images/messager_icons.png | Bin 0 -> 6116 bytes .../themes/black/images/pagination_icons.png | Bin 0 -> 339 bytes .../themes/black/images/panel_tools.png | Bin 0 -> 184 bytes .../themes/black/images/searchbox_button.png | Bin 0 -> 813 bytes .../themes/black/images/slider_handle.png | Bin 0 -> 863 bytes .../themes/black/images/spinner_arrows.png | Bin 0 -> 112 bytes .../easyui/themes/black/images/tabs_icons.png | Bin 0 -> 144 bytes .../easyui/themes/black/images/tree_icons.png | Bin 0 -> 3086 bytes .../black/images/validatebox_warning.png | Bin 0 -> 921 bytes include/js/easyui/themes/black/layout.css | 133 + include/js/easyui/themes/black/linkbutton.css | 203 + include/js/easyui/themes/black/menu.css | 119 + include/js/easyui/themes/black/menubutton.css | 94 + include/js/easyui/themes/black/messager.css | 40 + include/js/easyui/themes/black/numberbox.css | 9 + include/js/easyui/themes/black/pagination.css | 71 + include/js/easyui/themes/black/panel.css | 142 + .../js/easyui/themes/black/progressbar.css | 32 + .../js/easyui/themes/black/propertygrid.css | 28 + include/js/easyui/themes/black/searchbox.css | 90 + include/js/easyui/themes/black/slider.css | 101 + include/js/easyui/themes/black/spinner.css | 72 + .../js/easyui/themes/black/splitbutton.css | 12 + .../js/easyui/themes/black/switchbutton.css | 77 + include/js/easyui/themes/black/tabs.css | 413 + include/js/easyui/themes/black/textbox.css | 90 + include/js/easyui/themes/black/tooltip.css | 103 + include/js/easyui/themes/black/tree.css | 160 + .../js/easyui/themes/black/validatebox.css | 5 + include/js/easyui/themes/black/window.css | 94 + .../js/easyui/themes/bootstrap/accordion.css | 41 + .../js/easyui/themes/bootstrap/calendar.css | 197 + include/js/easyui/themes/bootstrap/combo.css | 60 + .../js/easyui/themes/bootstrap/combobox.css | 24 + .../js/easyui/themes/bootstrap/datagrid.css | 276 + .../js/easyui/themes/bootstrap/datalist.css | 95 + .../js/easyui/themes/bootstrap/datebox.css | 36 + include/js/easyui/themes/bootstrap/dialog.css | 32 + include/js/easyui/themes/bootstrap/easyui.css | 2888 ++++ .../js/easyui/themes/bootstrap/filebox.css | 20 + .../bootstrap/images/accordion_arrows.png | Bin 0 -> 184 bytes .../easyui/themes/bootstrap/images/blank.gif | Bin 0 -> 43 bytes .../bootstrap/images/calendar_arrows.png | Bin 0 -> 173 bytes .../themes/bootstrap/images/combo_arrow.png | Bin 0 -> 117 bytes .../bootstrap/images/datagrid_icons.png | Bin 0 -> 307 bytes .../themes/bootstrap/images/datebox_arrow.png | Bin 0 -> 626 bytes .../themes/bootstrap/images/layout_arrows.png | Bin 0 -> 319 bytes .../themes/bootstrap/images/linkbutton_bg.png | Bin 0 -> 1274 bytes .../themes/bootstrap/images/loading.gif | Bin 0 -> 1737 bytes .../themes/bootstrap/images/menu_arrows.png | Bin 0 -> 160 bytes .../bootstrap/images/messager_icons.png | Bin 0 -> 6116 bytes .../bootstrap/images/pagination_icons.png | Bin 0 -> 628 bytes .../themes/bootstrap/images/panel_tools.png | Bin 0 -> 194 bytes .../bootstrap/images/searchbox_button.png | Bin 0 -> 813 bytes .../themes/bootstrap/images/slider_handle.png | Bin 0 -> 863 bytes .../bootstrap/images/spinner_arrows.png | Bin 0 -> 115 bytes .../themes/bootstrap/images/tabs_icons.png | Bin 0 -> 150 bytes .../themes/bootstrap/images/tree_icons.png | Bin 0 -> 3115 bytes .../bootstrap/images/validatebox_warning.png | Bin 0 -> 921 bytes include/js/easyui/themes/bootstrap/layout.css | 133 + .../js/easyui/themes/bootstrap/linkbutton.css | 203 + include/js/easyui/themes/bootstrap/menu.css | 119 + .../js/easyui/themes/bootstrap/menubutton.css | 94 + .../js/easyui/themes/bootstrap/messager.css | 40 + .../js/easyui/themes/bootstrap/numberbox.css | 9 + .../js/easyui/themes/bootstrap/pagination.css | 71 + include/js/easyui/themes/bootstrap/panel.css | 142 + .../easyui/themes/bootstrap/progressbar.css | 32 + .../easyui/themes/bootstrap/propertygrid.css | 28 + .../js/easyui/themes/bootstrap/searchbox.css | 90 + include/js/easyui/themes/bootstrap/slider.css | 101 + .../js/easyui/themes/bootstrap/spinner.css | 72 + .../easyui/themes/bootstrap/splitbutton.css | 12 + .../easyui/themes/bootstrap/switchbutton.css | 77 + include/js/easyui/themes/bootstrap/tabs.css | 413 + .../js/easyui/themes/bootstrap/textbox.css | 90 + .../js/easyui/themes/bootstrap/tooltip.css | 103 + include/js/easyui/themes/bootstrap/tree.css | 160 + .../easyui/themes/bootstrap/validatebox.css | 5 + include/js/easyui/themes/bootstrap/window.css | 94 + include/js/easyui/themes/color.css | 112 + .../js/easyui/themes/default/accordion.css | 41 + include/js/easyui/themes/default/calendar.css | 197 + include/js/easyui/themes/default/combo.css | 60 + include/js/easyui/themes/default/combobox.css | 24 + include/js/easyui/themes/default/datagrid.css | 276 + include/js/easyui/themes/default/datalist.css | 95 + include/js/easyui/themes/default/datebox.css | 36 + include/js/easyui/themes/default/dialog.css | 32 + include/js/easyui/themes/default/easyui.css | 2869 ++++ include/js/easyui/themes/default/filebox.css | 20 + .../default/images/accordion_arrows.png | Bin 0 -> 184 bytes .../js/easyui/themes/default/images/blank.gif | Bin 0 -> 43 bytes .../themes/default/images/calendar_arrows.png | Bin 0 -> 173 bytes .../themes/default/images/combo_arrow.png | Bin 0 -> 117 bytes .../themes/default/images/datagrid_icons.png | Bin 0 -> 307 bytes .../themes/default/images/datebox_arrow.png | Bin 0 -> 626 bytes .../themes/default/images/layout_arrows.png | Bin 0 -> 319 bytes .../themes/default/images/linkbutton_bg.png | Bin 0 -> 1274 bytes .../easyui/themes/default/images/loading.gif | Bin 0 -> 1737 bytes .../themes/default/images/menu_arrows.png | Bin 0 -> 160 bytes .../themes/default/images/messager_icons.png | Bin 0 -> 6116 bytes .../default/images/pagination_icons.png | Bin 0 -> 628 bytes .../themes/default/images/panel_tools.png | Bin 0 -> 852 bytes .../default/images/searchbox_button.png | Bin 0 -> 813 bytes .../themes/default/images/slider_handle.png | Bin 0 -> 863 bytes .../themes/default/images/spinner_arrows.png | Bin 0 -> 115 bytes .../themes/default/images/tabs_icons.png | Bin 0 -> 150 bytes .../themes/default/images/tree_icons.png | Bin 0 -> 3115 bytes .../default/images/validatebox_warning.png | Bin 0 -> 921 bytes include/js/easyui/themes/default/layout.css | 133 + .../js/easyui/themes/default/linkbutton.css | 203 + include/js/easyui/themes/default/menu.css | 119 + .../js/easyui/themes/default/menubutton.css | 94 + include/js/easyui/themes/default/messager.css | 40 + .../js/easyui/themes/default/numberbox.css | 9 + .../js/easyui/themes/default/pagination.css | 71 + include/js/easyui/themes/default/panel.css | 142 + .../js/easyui/themes/default/progressbar.css | 32 + .../js/easyui/themes/default/propertygrid.css | 28 + .../js/easyui/themes/default/searchbox.css | 90 + include/js/easyui/themes/default/slider.css | 101 + include/js/easyui/themes/default/spinner.css | 72 + .../js/easyui/themes/default/splitbutton.css | 12 + .../js/easyui/themes/default/switchbutton.css | 77 + include/js/easyui/themes/default/tabs.css | 413 + include/js/easyui/themes/default/textbox.css | 90 + include/js/easyui/themes/default/tooltip.css | 103 + include/js/easyui/themes/default/tree.css | 160 + .../js/easyui/themes/default/validatebox.css | 5 + include/js/easyui/themes/default/window.css | 94 + include/js/easyui/themes/gray/accordion.css | 41 + include/js/easyui/themes/gray/calendar.css | 197 + include/js/easyui/themes/gray/combo.css | 60 + include/js/easyui/themes/gray/combobox.css | 24 + include/js/easyui/themes/gray/datagrid.css | 276 + include/js/easyui/themes/gray/datalist.css | 95 + include/js/easyui/themes/gray/datebox.css | 36 + include/js/easyui/themes/gray/dialog.css | 32 + include/js/easyui/themes/gray/easyui.css | 2869 ++++ include/js/easyui/themes/gray/filebox.css | 20 + .../themes/gray/images/accordion_arrows.png | Bin 0 -> 125 bytes .../js/easyui/themes/gray/images/blank.gif | Bin 0 -> 43 bytes .../themes/gray/images/calendar_arrows.png | Bin 0 -> 173 bytes .../easyui/themes/gray/images/combo_arrow.png | Bin 0 -> 103 bytes .../themes/gray/images/datagrid_icons.png | Bin 0 -> 330 bytes .../themes/gray/images/datebox_arrow.png | Bin 0 -> 626 bytes .../themes/gray/images/layout_arrows.png | Bin 0 -> 181 bytes .../themes/gray/images/linkbutton_bg.png | Bin 0 -> 1274 bytes .../js/easyui/themes/gray/images/loading.gif | Bin 0 -> 1737 bytes .../easyui/themes/gray/images/menu_arrows.png | Bin 0 -> 160 bytes .../themes/gray/images/messager_icons.png | Bin 0 -> 6116 bytes .../themes/gray/images/pagination_icons.png | Bin 0 -> 466 bytes .../easyui/themes/gray/images/panel_tools.png | Bin 0 -> 191 bytes .../themes/gray/images/searchbox_button.png | Bin 0 -> 813 bytes .../themes/gray/images/slider_handle.png | Bin 0 -> 863 bytes .../themes/gray/images/spinner_arrows.png | Bin 0 -> 141 bytes .../easyui/themes/gray/images/tabs_icons.png | Bin 0 -> 144 bytes .../easyui/themes/gray/images/tree_icons.png | Bin 0 -> 3115 bytes .../gray/images/validatebox_warning.png | Bin 0 -> 921 bytes include/js/easyui/themes/gray/layout.css | 133 + include/js/easyui/themes/gray/linkbutton.css | 203 + include/js/easyui/themes/gray/menu.css | 119 + include/js/easyui/themes/gray/menubutton.css | 94 + include/js/easyui/themes/gray/messager.css | 40 + include/js/easyui/themes/gray/numberbox.css | 9 + include/js/easyui/themes/gray/pagination.css | 71 + include/js/easyui/themes/gray/panel.css | 142 + include/js/easyui/themes/gray/progressbar.css | 32 + .../js/easyui/themes/gray/propertygrid.css | 28 + include/js/easyui/themes/gray/searchbox.css | 90 + include/js/easyui/themes/gray/slider.css | 101 + include/js/easyui/themes/gray/spinner.css | 72 + include/js/easyui/themes/gray/splitbutton.css | 12 + .../js/easyui/themes/gray/switchbutton.css | 77 + include/js/easyui/themes/gray/tabs.css | 413 + include/js/easyui/themes/gray/textbox.css | 90 + include/js/easyui/themes/gray/tooltip.css | 103 + include/js/easyui/themes/gray/tree.css | 160 + include/js/easyui/themes/gray/validatebox.css | 5 + include/js/easyui/themes/gray/window.css | 94 + include/js/easyui/themes/icon.css | 96 + include/js/easyui/themes/icons/back.png | Bin 0 -> 912 bytes include/js/easyui/themes/icons/blank.gif | Bin 0 -> 43 bytes include/js/easyui/themes/icons/cancel.png | Bin 0 -> 1133 bytes include/js/easyui/themes/icons/clear.png | Bin 0 -> 779 bytes include/js/easyui/themes/icons/cut.png | Bin 0 -> 1024 bytes include/js/easyui/themes/icons/edit_add.png | Bin 0 -> 1088 bytes .../js/easyui/themes/icons/edit_remove.png | Bin 0 -> 625 bytes include/js/easyui/themes/icons/filesave.png | Bin 0 -> 898 bytes include/js/easyui/themes/icons/filter.png | Bin 0 -> 305 bytes include/js/easyui/themes/icons/help.png | Bin 0 -> 1187 bytes .../js/easyui/themes/icons/large_chart.png | Bin 0 -> 1669 bytes .../js/easyui/themes/icons/large_clipart.png | Bin 0 -> 1727 bytes .../js/easyui/themes/icons/large_picture.png | Bin 0 -> 1667 bytes .../js/easyui/themes/icons/large_shapes.png | Bin 0 -> 1318 bytes .../js/easyui/themes/icons/large_smartart.png | Bin 0 -> 1336 bytes include/js/easyui/themes/icons/lock.png | Bin 0 -> 311 bytes include/js/easyui/themes/icons/man.png | Bin 0 -> 244 bytes include/js/easyui/themes/icons/mini_add.png | Bin 0 -> 244 bytes include/js/easyui/themes/icons/mini_edit.png | Bin 0 -> 161 bytes .../js/easyui/themes/icons/mini_refresh.png | Bin 0 -> 160 bytes include/js/easyui/themes/icons/more.png | Bin 0 -> 110 bytes include/js/easyui/themes/icons/no.png | Bin 0 -> 922 bytes include/js/easyui/themes/icons/ok.png | Bin 0 -> 883 bytes include/js/easyui/themes/icons/pencil.png | Bin 0 -> 713 bytes include/js/easyui/themes/icons/print.png | Bin 0 -> 1057 bytes include/js/easyui/themes/icons/redo.png | Bin 0 -> 708 bytes include/js/easyui/themes/icons/reload.png | Bin 0 -> 1045 bytes include/js/easyui/themes/icons/search.png | Bin 0 -> 813 bytes include/js/easyui/themes/icons/sum.png | Bin 0 -> 289 bytes include/js/easyui/themes/icons/tip.png | Bin 0 -> 743 bytes include/js/easyui/themes/icons/undo.png | Bin 0 -> 707 bytes include/js/easyui/themes/metro/accordion.css | 41 + include/js/easyui/themes/metro/calendar.css | 197 + include/js/easyui/themes/metro/combo.css | 60 + include/js/easyui/themes/metro/combobox.css | 24 + include/js/easyui/themes/metro/datagrid.css | 270 + include/js/easyui/themes/metro/datalist.css | 95 + include/js/easyui/themes/metro/datebox.css | 36 + include/js/easyui/themes/metro/dialog.css | 32 + include/js/easyui/themes/metro/easyui.css | 2815 +++ include/js/easyui/themes/metro/filebox.css | 20 + .../themes/metro/images/accordion_arrows.png | Bin 0 -> 184 bytes .../js/easyui/themes/metro/images/blank.gif | Bin 0 -> 43 bytes .../themes/metro/images/calendar_arrows.png | Bin 0 -> 173 bytes .../themes/metro/images/combo_arrow.png | Bin 0 -> 117 bytes .../themes/metro/images/datagrid_icons.png | Bin 0 -> 307 bytes .../themes/metro/images/datebox_arrow.png | Bin 0 -> 626 bytes .../themes/metro/images/layout_arrows.png | Bin 0 -> 319 bytes .../themes/metro/images/linkbutton_bg.png | Bin 0 -> 1274 bytes .../js/easyui/themes/metro/images/loading.gif | Bin 0 -> 1737 bytes .../themes/metro/images/menu_arrows.png | Bin 0 -> 160 bytes .../themes/metro/images/messager_icons.png | Bin 0 -> 6116 bytes .../themes/metro/images/pagination_icons.png | Bin 0 -> 628 bytes .../themes/metro/images/panel_tools.png | Bin 0 -> 194 bytes .../themes/metro/images/searchbox_button.png | Bin 0 -> 813 bytes .../themes/metro/images/slider_handle.png | Bin 0 -> 863 bytes .../themes/metro/images/spinner_arrows.png | Bin 0 -> 115 bytes .../easyui/themes/metro/images/tabs_icons.png | Bin 0 -> 150 bytes .../easyui/themes/metro/images/tree_icons.png | Bin 0 -> 3115 bytes .../metro/images/validatebox_warning.png | Bin 0 -> 921 bytes include/js/easyui/themes/metro/layout.css | 133 + include/js/easyui/themes/metro/linkbutton.css | 203 + include/js/easyui/themes/metro/menu.css | 119 + include/js/easyui/themes/metro/menubutton.css | 94 + include/js/easyui/themes/metro/messager.css | 40 + include/js/easyui/themes/metro/numberbox.css | 9 + include/js/easyui/themes/metro/pagination.css | 71 + include/js/easyui/themes/metro/panel.css | 136 + .../js/easyui/themes/metro/progressbar.css | 32 + .../js/easyui/themes/metro/propertygrid.css | 28 + include/js/easyui/themes/metro/searchbox.css | 90 + include/js/easyui/themes/metro/slider.css | 101 + include/js/easyui/themes/metro/spinner.css | 72 + .../js/easyui/themes/metro/splitbutton.css | 12 + .../js/easyui/themes/metro/switchbutton.css | 77 + include/js/easyui/themes/metro/tabs.css | 377 + include/js/easyui/themes/metro/textbox.css | 90 + include/js/easyui/themes/metro/tooltip.css | 103 + include/js/easyui/themes/metro/tree.css | 160 + .../js/easyui/themes/metro/validatebox.css | 5 + include/js/easyui/themes/metro/window.css | 88 + include/js/easyui/themes/mobile.css | 377 + include/js/easyui/themes/vilesci | 0 include/meta/easyui.php | 29 + include/vendor_custom/easyui/icon.css | 12 + skin/images/Graphs_clip_art.svg | 2043 +++ skin/images/x-office-presentation.svg | 567 + skin/images/x-office-spreadsheet.svg | 704 + vilesci/lehre/studienordnung.js | 2 +- 717 files changed, 84432 insertions(+), 1 deletion(-) create mode 100644 include/js/easyui-vilesci-theme/easyui.css create mode 100755 include/js/easyui-vilesci-theme/images/accordion_arrows.png create mode 100755 include/js/easyui-vilesci-theme/images/blank.gif create mode 100755 include/js/easyui-vilesci-theme/images/calendar_arrows.png create mode 100755 include/js/easyui-vilesci-theme/images/combo_arrow.png create mode 100755 include/js/easyui-vilesci-theme/images/datagrid_icons.png create mode 100755 include/js/easyui-vilesci-theme/images/datebox_arrow.png create mode 100755 include/js/easyui-vilesci-theme/images/layout_arrows.png create mode 100755 include/js/easyui-vilesci-theme/images/linkbutton_bg.png create mode 100755 include/js/easyui-vilesci-theme/images/loading.gif create mode 100755 include/js/easyui-vilesci-theme/images/menu_arrows.png create mode 100755 include/js/easyui-vilesci-theme/images/messager_icons.png create mode 100755 include/js/easyui-vilesci-theme/images/pagination_icons.png create mode 100755 include/js/easyui-vilesci-theme/images/panel_tools.png create mode 100755 include/js/easyui-vilesci-theme/images/searchbox_button.png create mode 100755 include/js/easyui-vilesci-theme/images/slider_handle.png create mode 100755 include/js/easyui-vilesci-theme/images/spinner_arrows.png create mode 100755 include/js/easyui-vilesci-theme/images/tabs_icons.png create mode 100755 include/js/easyui-vilesci-theme/images/tree_icons.png create mode 100755 include/js/easyui-vilesci-theme/images/validatebox_warning.png create mode 100755 include/js/easyui/changelog.txt create mode 100755 include/js/easyui/demo-mobile/accordion/_content.html create mode 100755 include/js/easyui/demo-mobile/accordion/basic.html create mode 100755 include/js/easyui/demo-mobile/accordion/header.html create mode 100755 include/js/easyui/demo-mobile/animation/basic.html create mode 100755 include/js/easyui/demo-mobile/animation/fade.html create mode 100755 include/js/easyui/demo-mobile/animation/pop.html create mode 100755 include/js/easyui/demo-mobile/animation/slide.html create mode 100755 include/js/easyui/demo-mobile/badge/basic.html create mode 100755 include/js/easyui/demo-mobile/badge/button.html create mode 100755 include/js/easyui/demo-mobile/badge/list.html create mode 100755 include/js/easyui/demo-mobile/badge/tabs.html create mode 100755 include/js/easyui/demo-mobile/button/basic.html create mode 100755 include/js/easyui/demo-mobile/button/group.html create mode 100755 include/js/easyui/demo-mobile/button/style.html create mode 100755 include/js/easyui/demo-mobile/button/switch.html create mode 100755 include/js/easyui/demo-mobile/datagrid/basic.html create mode 100755 include/js/easyui/demo-mobile/datagrid/rowediting.html create mode 100755 include/js/easyui/demo-mobile/datalist/basic.html create mode 100755 include/js/easyui/demo-mobile/datalist/group.html create mode 100755 include/js/easyui/demo-mobile/datalist/selection.html create mode 100755 include/js/easyui/demo-mobile/dialog/basic.html create mode 100755 include/js/easyui/demo-mobile/dialog/message.html create mode 100755 include/js/easyui/demo-mobile/form/basic.html create mode 100755 include/js/easyui/demo-mobile/images/login1.jpg create mode 100755 include/js/easyui/demo-mobile/images/modem.png create mode 100755 include/js/easyui/demo-mobile/images/more.png create mode 100755 include/js/easyui/demo-mobile/images/pda.png create mode 100755 include/js/easyui/demo-mobile/images/scanner.png create mode 100755 include/js/easyui/demo-mobile/images/tablet.png create mode 100755 include/js/easyui/demo-mobile/input/numberspinner.html create mode 100755 include/js/easyui/demo-mobile/input/textbox.html create mode 100755 include/js/easyui/demo-mobile/layout/basic.html create mode 100755 include/js/easyui/demo-mobile/menu/basic.html create mode 100755 include/js/easyui/demo-mobile/menu/menubar.html create mode 100755 include/js/easyui/demo-mobile/panel/_content.html create mode 100755 include/js/easyui/demo-mobile/panel/ajax.html create mode 100755 include/js/easyui/demo-mobile/panel/basic.html create mode 100755 include/js/easyui/demo-mobile/panel/nav.html create mode 100755 include/js/easyui/demo-mobile/simplelist/basic.html create mode 100755 include/js/easyui/demo-mobile/simplelist/button.html create mode 100755 include/js/easyui/demo-mobile/simplelist/group.html create mode 100755 include/js/easyui/demo-mobile/simplelist/image.html create mode 100755 include/js/easyui/demo-mobile/simplelist/link.html create mode 100755 include/js/easyui/demo-mobile/tabs/basic.html create mode 100755 include/js/easyui/demo-mobile/tabs/nav.html create mode 100755 include/js/easyui/demo-mobile/tabs/pill.html create mode 100755 include/js/easyui/demo-mobile/toolbar/basic.html create mode 100755 include/js/easyui/demo-mobile/toolbar/button.html create mode 100755 include/js/easyui/demo-mobile/toolbar/menu.html create mode 100755 include/js/easyui/demo-mobile/tree/basic.html create mode 100755 include/js/easyui/demo-mobile/tree/dnd.html create mode 100755 include/js/easyui/demo/accordion/_content.html create mode 100755 include/js/easyui/demo/accordion/actions.html create mode 100755 include/js/easyui/demo/accordion/ajax.html create mode 100755 include/js/easyui/demo/accordion/basic.html create mode 100755 include/js/easyui/demo/accordion/datagrid_data1.json create mode 100755 include/js/easyui/demo/accordion/expandable.html create mode 100755 include/js/easyui/demo/accordion/fluid.html create mode 100755 include/js/easyui/demo/accordion/multiple.html create mode 100755 include/js/easyui/demo/accordion/tools.html create mode 100755 include/js/easyui/demo/calendar/basic.html create mode 100755 include/js/easyui/demo/calendar/custom.html create mode 100755 include/js/easyui/demo/calendar/disabledate.html create mode 100755 include/js/easyui/demo/calendar/firstday.html create mode 100755 include/js/easyui/demo/calendar/fluid.html create mode 100755 include/js/easyui/demo/combo/animation.html create mode 100755 include/js/easyui/demo/combo/basic.html create mode 100755 include/js/easyui/demo/combobox/actions.html create mode 100755 include/js/easyui/demo/combobox/basic.html create mode 100755 include/js/easyui/demo/combobox/combobox_data1.json create mode 100755 include/js/easyui/demo/combobox/combobox_data2.json create mode 100755 include/js/easyui/demo/combobox/customformat.html create mode 100755 include/js/easyui/demo/combobox/dynamicdata.html create mode 100755 include/js/easyui/demo/combobox/fluid.html create mode 100755 include/js/easyui/demo/combobox/group.html create mode 100755 include/js/easyui/demo/combobox/icons.html create mode 100755 include/js/easyui/demo/combobox/multiline.html create mode 100755 include/js/easyui/demo/combobox/multiple.html create mode 100755 include/js/easyui/demo/combobox/navigation.html create mode 100755 include/js/easyui/demo/combobox/remotedata.html create mode 100755 include/js/easyui/demo/combobox/remotejsonp.html create mode 100755 include/js/easyui/demo/combogrid/actions.html create mode 100755 include/js/easyui/demo/combogrid/basic.html create mode 100755 include/js/easyui/demo/combogrid/datagrid_data1.json create mode 100755 include/js/easyui/demo/combogrid/fluid.html create mode 100755 include/js/easyui/demo/combogrid/initvalue.html create mode 100755 include/js/easyui/demo/combogrid/multiple.html create mode 100755 include/js/easyui/demo/combogrid/navigation.html create mode 100755 include/js/easyui/demo/combogrid/setvalue.html create mode 100755 include/js/easyui/demo/combotree/actions.html create mode 100755 include/js/easyui/demo/combotree/basic.html create mode 100755 include/js/easyui/demo/combotree/fluid.html create mode 100755 include/js/easyui/demo/combotree/initvalue.html create mode 100755 include/js/easyui/demo/combotree/multiple.html create mode 100755 include/js/easyui/demo/combotree/tree_data1.json create mode 100755 include/js/easyui/demo/datagrid/aligncolumns.html create mode 100755 include/js/easyui/demo/datagrid/basic.html create mode 100755 include/js/easyui/demo/datagrid/cacheeditor.html create mode 100755 include/js/easyui/demo/datagrid/cellediting.html create mode 100755 include/js/easyui/demo/datagrid/cellstyle.html create mode 100755 include/js/easyui/demo/datagrid/checkbox.html create mode 100755 include/js/easyui/demo/datagrid/clientpagination.html create mode 100755 include/js/easyui/demo/datagrid/columngroup.html create mode 100755 include/js/easyui/demo/datagrid/complextoolbar.html create mode 100755 include/js/easyui/demo/datagrid/contextmenu.html create mode 100755 include/js/easyui/demo/datagrid/custompager.html create mode 100755 include/js/easyui/demo/datagrid/datagrid_data1.json create mode 100755 include/js/easyui/demo/datagrid/datagrid_data2.json create mode 100755 include/js/easyui/demo/datagrid/fluid.html create mode 100755 include/js/easyui/demo/datagrid/footer.html create mode 100755 include/js/easyui/demo/datagrid/formatcolumns.html create mode 100755 include/js/easyui/demo/datagrid/frozencolumns.html create mode 100755 include/js/easyui/demo/datagrid/frozenrows.html create mode 100755 include/js/easyui/demo/datagrid/mergecells.html create mode 100755 include/js/easyui/demo/datagrid/multisorting.html create mode 100755 include/js/easyui/demo/datagrid/products.json create mode 100755 include/js/easyui/demo/datagrid/rowborder.html create mode 100755 include/js/easyui/demo/datagrid/rowediting.html create mode 100755 include/js/easyui/demo/datagrid/rowstyle.html create mode 100755 include/js/easyui/demo/datagrid/selection.html create mode 100755 include/js/easyui/demo/datagrid/simpletoolbar.html create mode 100755 include/js/easyui/demo/datagrid/transform.html create mode 100644 include/js/easyui/demo/datalist/basic.html create mode 100644 include/js/easyui/demo/datalist/checkbox.html create mode 100644 include/js/easyui/demo/datalist/datalist_data1.json create mode 100644 include/js/easyui/demo/datalist/group.html create mode 100644 include/js/easyui/demo/datalist/multiselect.html create mode 100644 include/js/easyui/demo/datalist/remotedata.html create mode 100755 include/js/easyui/demo/datebox/basic.html create mode 100755 include/js/easyui/demo/datebox/buttons.html create mode 100755 include/js/easyui/demo/datebox/clone.html create mode 100755 include/js/easyui/demo/datebox/dateformat.html create mode 100755 include/js/easyui/demo/datebox/events.html create mode 100755 include/js/easyui/demo/datebox/fluid.html create mode 100755 include/js/easyui/demo/datebox/restrict.html create mode 100644 include/js/easyui/demo/datebox/sharedcalendar.html create mode 100755 include/js/easyui/demo/datebox/validate.html create mode 100755 include/js/easyui/demo/datetimebox/basic.html create mode 100755 include/js/easyui/demo/datetimebox/fluid.html create mode 100755 include/js/easyui/demo/datetimebox/initvalue.html create mode 100755 include/js/easyui/demo/datetimebox/showseconds.html create mode 100644 include/js/easyui/demo/datetimespinner/basic.html create mode 100644 include/js/easyui/demo/datetimespinner/clearicon.html create mode 100644 include/js/easyui/demo/datetimespinner/fluid.html create mode 100644 include/js/easyui/demo/datetimespinner/format.html create mode 100755 include/js/easyui/demo/demo.css create mode 100755 include/js/easyui/demo/dialog/basic.html create mode 100755 include/js/easyui/demo/dialog/complextoolbar.html create mode 100755 include/js/easyui/demo/dialog/fluid.html create mode 100755 include/js/easyui/demo/dialog/toolbarbuttons.html create mode 100755 include/js/easyui/demo/draggable/basic.html create mode 100755 include/js/easyui/demo/draggable/constrain.html create mode 100755 include/js/easyui/demo/draggable/snap.html create mode 100755 include/js/easyui/demo/droppable/accept.html create mode 100755 include/js/easyui/demo/droppable/basic.html create mode 100755 include/js/easyui/demo/droppable/sort.html create mode 100755 include/js/easyui/demo/easyloader/basic.html create mode 100644 include/js/easyui/demo/filebox/basic.html create mode 100644 include/js/easyui/demo/filebox/buttonalign.html create mode 100644 include/js/easyui/demo/filebox/fluid.html create mode 100755 include/js/easyui/demo/form/basic.html create mode 100755 include/js/easyui/demo/form/form_data1.json create mode 100755 include/js/easyui/demo/form/load.html create mode 100755 include/js/easyui/demo/form/validateonsubmit.html create mode 100755 include/js/easyui/demo/layout/_content.html create mode 100755 include/js/easyui/demo/layout/addremove.html create mode 100755 include/js/easyui/demo/layout/autoheight.html create mode 100755 include/js/easyui/demo/layout/basic.html create mode 100755 include/js/easyui/demo/layout/collapsetitle.html create mode 100755 include/js/easyui/demo/layout/complex.html create mode 100755 include/js/easyui/demo/layout/customcollapsetitle.html create mode 100755 include/js/easyui/demo/layout/datagrid_data1.json create mode 100755 include/js/easyui/demo/layout/fluid.html create mode 100755 include/js/easyui/demo/layout/full.html create mode 100755 include/js/easyui/demo/layout/nestedlayout.html create mode 100755 include/js/easyui/demo/layout/nocollapsible.html create mode 100755 include/js/easyui/demo/layout/propertygrid_data1.json create mode 100755 include/js/easyui/demo/layout/tree_data1.json create mode 100755 include/js/easyui/demo/linkbutton/basic.html create mode 100755 include/js/easyui/demo/linkbutton/fluid.html create mode 100755 include/js/easyui/demo/linkbutton/group.html create mode 100755 include/js/easyui/demo/linkbutton/iconalign.html create mode 100755 include/js/easyui/demo/linkbutton/plain.html create mode 100755 include/js/easyui/demo/linkbutton/size.html create mode 100755 include/js/easyui/demo/linkbutton/style.html create mode 100755 include/js/easyui/demo/linkbutton/toggle.html create mode 100755 include/js/easyui/demo/menu/basic.html create mode 100755 include/js/easyui/demo/menu/customitem.html create mode 100755 include/js/easyui/demo/menu/events.html create mode 100755 include/js/easyui/demo/menu/inline.html create mode 100755 include/js/easyui/demo/menu/nav.html create mode 100755 include/js/easyui/demo/menubutton/actions.html create mode 100755 include/js/easyui/demo/menubutton/alignment.html create mode 100755 include/js/easyui/demo/menubutton/basic.html create mode 100755 include/js/easyui/demo/menubutton/nav.html create mode 100755 include/js/easyui/demo/messager/alert.html create mode 100755 include/js/easyui/demo/messager/basic.html create mode 100755 include/js/easyui/demo/messager/interactive.html create mode 100755 include/js/easyui/demo/messager/position.html create mode 100755 include/js/easyui/demo/numberbox/basic.html create mode 100755 include/js/easyui/demo/numberbox/fluid.html create mode 100755 include/js/easyui/demo/numberbox/format.html create mode 100755 include/js/easyui/demo/numberbox/range.html create mode 100755 include/js/easyui/demo/numberspinner/basic.html create mode 100755 include/js/easyui/demo/numberspinner/fluid.html create mode 100755 include/js/easyui/demo/numberspinner/increment.html create mode 100755 include/js/easyui/demo/numberspinner/range.html create mode 100755 include/js/easyui/demo/pagination/attaching.html create mode 100755 include/js/easyui/demo/pagination/basic.html create mode 100755 include/js/easyui/demo/pagination/custombuttons.html create mode 100755 include/js/easyui/demo/pagination/layout.html create mode 100755 include/js/easyui/demo/pagination/links.html create mode 100755 include/js/easyui/demo/pagination/simple.html create mode 100755 include/js/easyui/demo/panel/_content.html create mode 100755 include/js/easyui/demo/panel/basic.html create mode 100755 include/js/easyui/demo/panel/customtools.html create mode 100755 include/js/easyui/demo/panel/fluid.html create mode 100755 include/js/easyui/demo/panel/footer.html create mode 100755 include/js/easyui/demo/panel/loadcontent.html create mode 100755 include/js/easyui/demo/panel/nestedpanel.html create mode 100755 include/js/easyui/demo/panel/paneltools.html create mode 100755 include/js/easyui/demo/progressbar/basic.html create mode 100755 include/js/easyui/demo/progressbar/fluid.html create mode 100755 include/js/easyui/demo/propertygrid/basic.html create mode 100755 include/js/easyui/demo/propertygrid/customcolumns.html create mode 100755 include/js/easyui/demo/propertygrid/groupformat.html create mode 100755 include/js/easyui/demo/propertygrid/propertygrid_data1.json create mode 100755 include/js/easyui/demo/resizable/basic.html create mode 100755 include/js/easyui/demo/searchbox/basic.html create mode 100755 include/js/easyui/demo/searchbox/category.html create mode 100755 include/js/easyui/demo/searchbox/fluid.html create mode 100755 include/js/easyui/demo/slider/basic.html create mode 100755 include/js/easyui/demo/slider/fluid.html create mode 100755 include/js/easyui/demo/slider/formattip.html create mode 100755 include/js/easyui/demo/slider/nonlinear.html create mode 100755 include/js/easyui/demo/slider/range.html create mode 100755 include/js/easyui/demo/slider/rule.html create mode 100755 include/js/easyui/demo/slider/vertical.html create mode 100755 include/js/easyui/demo/splitbutton/actions.html create mode 100755 include/js/easyui/demo/splitbutton/basic.html create mode 100644 include/js/easyui/demo/switchbutton/action.html create mode 100644 include/js/easyui/demo/switchbutton/basic.html create mode 100755 include/js/easyui/demo/tabs/_content.html create mode 100755 include/js/easyui/demo/tabs/autoheight.html create mode 100755 include/js/easyui/demo/tabs/basic.html create mode 100755 include/js/easyui/demo/tabs/dropdown.html create mode 100755 include/js/easyui/demo/tabs/fixedwidth.html create mode 100755 include/js/easyui/demo/tabs/fluid.html create mode 100755 include/js/easyui/demo/tabs/hover.html create mode 100755 include/js/easyui/demo/tabs/images/modem.png create mode 100755 include/js/easyui/demo/tabs/images/pda.png create mode 100755 include/js/easyui/demo/tabs/images/scanner.png create mode 100755 include/js/easyui/demo/tabs/images/tablet.png create mode 100755 include/js/easyui/demo/tabs/nestedtabs.html create mode 100755 include/js/easyui/demo/tabs/striptools.html create mode 100755 include/js/easyui/demo/tabs/style.html create mode 100755 include/js/easyui/demo/tabs/tabimage.html create mode 100755 include/js/easyui/demo/tabs/tabposition.html create mode 100755 include/js/easyui/demo/tabs/tabstools.html create mode 100755 include/js/easyui/demo/tabs/tree_data1.json create mode 100644 include/js/easyui/demo/textbox/basic.html create mode 100644 include/js/easyui/demo/textbox/button.html create mode 100644 include/js/easyui/demo/textbox/clearicon.html create mode 100644 include/js/easyui/demo/textbox/custom.html create mode 100644 include/js/easyui/demo/textbox/fluid.html create mode 100644 include/js/easyui/demo/textbox/icons.html create mode 100644 include/js/easyui/demo/textbox/multiline.html create mode 100644 include/js/easyui/demo/textbox/size.html create mode 100755 include/js/easyui/demo/timespinner/actions.html create mode 100755 include/js/easyui/demo/timespinner/basic.html create mode 100755 include/js/easyui/demo/timespinner/fluid.html create mode 100755 include/js/easyui/demo/timespinner/range.html create mode 100755 include/js/easyui/demo/tooltip/_content.html create mode 100755 include/js/easyui/demo/tooltip/_dialog.html create mode 100755 include/js/easyui/demo/tooltip/ajax.html create mode 100755 include/js/easyui/demo/tooltip/basic.html create mode 100755 include/js/easyui/demo/tooltip/customcontent.html create mode 100755 include/js/easyui/demo/tooltip/customstyle.html create mode 100755 include/js/easyui/demo/tooltip/position.html create mode 100755 include/js/easyui/demo/tooltip/toolbar.html create mode 100755 include/js/easyui/demo/tooltip/tooltipdialog.html create mode 100755 include/js/easyui/demo/tree/actions.html create mode 100755 include/js/easyui/demo/tree/animation.html create mode 100755 include/js/easyui/demo/tree/basic.html create mode 100755 include/js/easyui/demo/tree/checkbox.html create mode 100755 include/js/easyui/demo/tree/contextmenu.html create mode 100755 include/js/easyui/demo/tree/dnd.html create mode 100755 include/js/easyui/demo/tree/editable.html create mode 100755 include/js/easyui/demo/tree/formatting.html create mode 100755 include/js/easyui/demo/tree/icons.html create mode 100755 include/js/easyui/demo/tree/lazyload.html create mode 100755 include/js/easyui/demo/tree/lines.html create mode 100755 include/js/easyui/demo/tree/tree_data1.json create mode 100755 include/js/easyui/demo/tree/tree_data2.json create mode 100755 include/js/easyui/demo/treegrid/actions.html create mode 100755 include/js/easyui/demo/treegrid/basic.html create mode 100755 include/js/easyui/demo/treegrid/clientpagination.html create mode 100755 include/js/easyui/demo/treegrid/contextmenu.html create mode 100755 include/js/easyui/demo/treegrid/editable.html create mode 100755 include/js/easyui/demo/treegrid/fluid.html create mode 100755 include/js/easyui/demo/treegrid/footer.html create mode 100755 include/js/easyui/demo/treegrid/lines.html create mode 100755 include/js/easyui/demo/treegrid/reports.html create mode 100755 include/js/easyui/demo/treegrid/treegrid_data1.json create mode 100755 include/js/easyui/demo/treegrid/treegrid_data2.json create mode 100755 include/js/easyui/demo/treegrid/treegrid_data3.json create mode 100755 include/js/easyui/demo/validatebox/basic.html create mode 100755 include/js/easyui/demo/validatebox/customtooltip.html create mode 100755 include/js/easyui/demo/validatebox/validateonblur.html create mode 100755 include/js/easyui/demo/window/basic.html create mode 100755 include/js/easyui/demo/window/customtools.html create mode 100755 include/js/easyui/demo/window/fluid.html create mode 100755 include/js/easyui/demo/window/footer.html create mode 100755 include/js/easyui/demo/window/inlinewindow.html create mode 100755 include/js/easyui/demo/window/modalwindow.html create mode 100755 include/js/easyui/demo/window/windowlayout.html create mode 100755 include/js/easyui/easyloader.js create mode 100755 include/js/easyui/jquery.easyui.min.js create mode 100644 include/js/easyui/jquery.easyui.mobile.js create mode 100644 include/js/easyui/jquery.min.js create mode 100755 include/js/easyui/license_freeware.txt create mode 100755 include/js/easyui/locale/easyui-lang-af.js create mode 100644 include/js/easyui/locale/easyui-lang-am.js create mode 100755 include/js/easyui/locale/easyui-lang-ar.js create mode 100755 include/js/easyui/locale/easyui-lang-bg.js create mode 100755 include/js/easyui/locale/easyui-lang-ca.js create mode 100755 include/js/easyui/locale/easyui-lang-cs.js create mode 100755 include/js/easyui/locale/easyui-lang-cz.js create mode 100755 include/js/easyui/locale/easyui-lang-da.js create mode 100755 include/js/easyui/locale/easyui-lang-de.js create mode 100755 include/js/easyui/locale/easyui-lang-el.js create mode 100755 include/js/easyui/locale/easyui-lang-en.js create mode 100755 include/js/easyui/locale/easyui-lang-es.js create mode 100755 include/js/easyui/locale/easyui-lang-fr.js create mode 100755 include/js/easyui/locale/easyui-lang-it.js create mode 100755 include/js/easyui/locale/easyui-lang-jp.js create mode 100755 include/js/easyui/locale/easyui-lang-nl.js create mode 100755 include/js/easyui/locale/easyui-lang-pl.js create mode 100755 include/js/easyui/locale/easyui-lang-pt_BR.js create mode 100755 include/js/easyui/locale/easyui-lang-ru.js create mode 100755 include/js/easyui/locale/easyui-lang-sv_SE.js create mode 100755 include/js/easyui/locale/easyui-lang-tr.js create mode 100755 include/js/easyui/locale/easyui-lang-zh_CN.js create mode 100755 include/js/easyui/locale/easyui-lang-zh_TW.js create mode 100755 include/js/easyui/plugins/jquery.accordion.js create mode 100755 include/js/easyui/plugins/jquery.calendar.js create mode 100755 include/js/easyui/plugins/jquery.combo.js create mode 100755 include/js/easyui/plugins/jquery.combobox.js create mode 100755 include/js/easyui/plugins/jquery.combogrid.js create mode 100755 include/js/easyui/plugins/jquery.combotree.js create mode 100755 include/js/easyui/plugins/jquery.datagrid.js create mode 100644 include/js/easyui/plugins/jquery.datalist.js create mode 100755 include/js/easyui/plugins/jquery.datebox.js create mode 100755 include/js/easyui/plugins/jquery.datetimebox.js create mode 100644 include/js/easyui/plugins/jquery.datetimespinner.js create mode 100755 include/js/easyui/plugins/jquery.dialog.js create mode 100755 include/js/easyui/plugins/jquery.draggable.js create mode 100755 include/js/easyui/plugins/jquery.droppable.js create mode 100644 include/js/easyui/plugins/jquery.filebox.js create mode 100755 include/js/easyui/plugins/jquery.form.js create mode 100755 include/js/easyui/plugins/jquery.layout.js create mode 100755 include/js/easyui/plugins/jquery.linkbutton.js create mode 100755 include/js/easyui/plugins/jquery.menu.js create mode 100755 include/js/easyui/plugins/jquery.menubutton.js create mode 100755 include/js/easyui/plugins/jquery.messager.js create mode 100644 include/js/easyui/plugins/jquery.mobile.js create mode 100755 include/js/easyui/plugins/jquery.numberbox.js create mode 100755 include/js/easyui/plugins/jquery.numberspinner.js create mode 100755 include/js/easyui/plugins/jquery.pagination.js create mode 100755 include/js/easyui/plugins/jquery.panel.js create mode 100755 include/js/easyui/plugins/jquery.parser.js create mode 100755 include/js/easyui/plugins/jquery.progressbar.js create mode 100755 include/js/easyui/plugins/jquery.propertygrid.js create mode 100755 include/js/easyui/plugins/jquery.resizable.js create mode 100755 include/js/easyui/plugins/jquery.searchbox.js create mode 100755 include/js/easyui/plugins/jquery.slider.js create mode 100755 include/js/easyui/plugins/jquery.spinner.js create mode 100755 include/js/easyui/plugins/jquery.splitbutton.js create mode 100644 include/js/easyui/plugins/jquery.switchbutton.js create mode 100755 include/js/easyui/plugins/jquery.tabs.js create mode 100644 include/js/easyui/plugins/jquery.textbox.js create mode 100755 include/js/easyui/plugins/jquery.timespinner.js create mode 100755 include/js/easyui/plugins/jquery.tooltip.js create mode 100755 include/js/easyui/plugins/jquery.tree.js create mode 100755 include/js/easyui/plugins/jquery.treegrid.js create mode 100755 include/js/easyui/plugins/jquery.validatebox.js create mode 100755 include/js/easyui/plugins/jquery.window.js create mode 100755 include/js/easyui/readme.txt create mode 100644 include/js/easyui/src/easyloader.js create mode 100644 include/js/easyui/src/jquery.accordion.js create mode 100644 include/js/easyui/src/jquery.calendar.js create mode 100644 include/js/easyui/src/jquery.combobox.js create mode 100644 include/js/easyui/src/jquery.datebox.js create mode 100644 include/js/easyui/src/jquery.draggable.js create mode 100644 include/js/easyui/src/jquery.droppable.js create mode 100644 include/js/easyui/src/jquery.form.js create mode 100644 include/js/easyui/src/jquery.linkbutton.js create mode 100644 include/js/easyui/src/jquery.menu.js create mode 100644 include/js/easyui/src/jquery.parser.js create mode 100644 include/js/easyui/src/jquery.progressbar.js create mode 100644 include/js/easyui/src/jquery.propertygrid.js create mode 100644 include/js/easyui/src/jquery.resizable.js create mode 100644 include/js/easyui/src/jquery.slider.js create mode 100644 include/js/easyui/src/jquery.tabs.js create mode 100644 include/js/easyui/src/jquery.window.js create mode 100644 include/js/easyui/themes/black/accordion.css create mode 100644 include/js/easyui/themes/black/calendar.css create mode 100644 include/js/easyui/themes/black/combo.css create mode 100644 include/js/easyui/themes/black/combobox.css create mode 100644 include/js/easyui/themes/black/datagrid.css create mode 100644 include/js/easyui/themes/black/datalist.css create mode 100644 include/js/easyui/themes/black/datebox.css create mode 100644 include/js/easyui/themes/black/dialog.css create mode 100644 include/js/easyui/themes/black/easyui.css create mode 100644 include/js/easyui/themes/black/filebox.css create mode 100755 include/js/easyui/themes/black/images/accordion_arrows.png create mode 100755 include/js/easyui/themes/black/images/blank.gif create mode 100755 include/js/easyui/themes/black/images/calendar_arrows.png create mode 100755 include/js/easyui/themes/black/images/combo_arrow.png create mode 100755 include/js/easyui/themes/black/images/datagrid_icons.png create mode 100755 include/js/easyui/themes/black/images/datebox_arrow.png create mode 100755 include/js/easyui/themes/black/images/layout_arrows.png create mode 100755 include/js/easyui/themes/black/images/linkbutton_bg.png create mode 100755 include/js/easyui/themes/black/images/loading.gif create mode 100755 include/js/easyui/themes/black/images/menu_arrows.png create mode 100755 include/js/easyui/themes/black/images/messager_icons.png create mode 100755 include/js/easyui/themes/black/images/pagination_icons.png create mode 100755 include/js/easyui/themes/black/images/panel_tools.png create mode 100755 include/js/easyui/themes/black/images/searchbox_button.png create mode 100755 include/js/easyui/themes/black/images/slider_handle.png create mode 100755 include/js/easyui/themes/black/images/spinner_arrows.png create mode 100755 include/js/easyui/themes/black/images/tabs_icons.png create mode 100755 include/js/easyui/themes/black/images/tree_icons.png create mode 100755 include/js/easyui/themes/black/images/validatebox_warning.png create mode 100644 include/js/easyui/themes/black/layout.css create mode 100644 include/js/easyui/themes/black/linkbutton.css create mode 100644 include/js/easyui/themes/black/menu.css create mode 100644 include/js/easyui/themes/black/menubutton.css create mode 100644 include/js/easyui/themes/black/messager.css create mode 100644 include/js/easyui/themes/black/numberbox.css create mode 100644 include/js/easyui/themes/black/pagination.css create mode 100644 include/js/easyui/themes/black/panel.css create mode 100644 include/js/easyui/themes/black/progressbar.css create mode 100644 include/js/easyui/themes/black/propertygrid.css create mode 100644 include/js/easyui/themes/black/searchbox.css create mode 100644 include/js/easyui/themes/black/slider.css create mode 100644 include/js/easyui/themes/black/spinner.css create mode 100644 include/js/easyui/themes/black/splitbutton.css create mode 100644 include/js/easyui/themes/black/switchbutton.css create mode 100644 include/js/easyui/themes/black/tabs.css create mode 100644 include/js/easyui/themes/black/textbox.css create mode 100644 include/js/easyui/themes/black/tooltip.css create mode 100644 include/js/easyui/themes/black/tree.css create mode 100644 include/js/easyui/themes/black/validatebox.css create mode 100644 include/js/easyui/themes/black/window.css create mode 100644 include/js/easyui/themes/bootstrap/accordion.css create mode 100644 include/js/easyui/themes/bootstrap/calendar.css create mode 100644 include/js/easyui/themes/bootstrap/combo.css create mode 100644 include/js/easyui/themes/bootstrap/combobox.css create mode 100644 include/js/easyui/themes/bootstrap/datagrid.css create mode 100644 include/js/easyui/themes/bootstrap/datalist.css create mode 100644 include/js/easyui/themes/bootstrap/datebox.css create mode 100644 include/js/easyui/themes/bootstrap/dialog.css create mode 100644 include/js/easyui/themes/bootstrap/easyui.css create mode 100644 include/js/easyui/themes/bootstrap/filebox.css create mode 100755 include/js/easyui/themes/bootstrap/images/accordion_arrows.png create mode 100755 include/js/easyui/themes/bootstrap/images/blank.gif create mode 100755 include/js/easyui/themes/bootstrap/images/calendar_arrows.png create mode 100755 include/js/easyui/themes/bootstrap/images/combo_arrow.png create mode 100755 include/js/easyui/themes/bootstrap/images/datagrid_icons.png create mode 100755 include/js/easyui/themes/bootstrap/images/datebox_arrow.png create mode 100755 include/js/easyui/themes/bootstrap/images/layout_arrows.png create mode 100755 include/js/easyui/themes/bootstrap/images/linkbutton_bg.png create mode 100755 include/js/easyui/themes/bootstrap/images/loading.gif create mode 100755 include/js/easyui/themes/bootstrap/images/menu_arrows.png create mode 100755 include/js/easyui/themes/bootstrap/images/messager_icons.png create mode 100755 include/js/easyui/themes/bootstrap/images/pagination_icons.png create mode 100755 include/js/easyui/themes/bootstrap/images/panel_tools.png create mode 100755 include/js/easyui/themes/bootstrap/images/searchbox_button.png create mode 100755 include/js/easyui/themes/bootstrap/images/slider_handle.png create mode 100755 include/js/easyui/themes/bootstrap/images/spinner_arrows.png create mode 100755 include/js/easyui/themes/bootstrap/images/tabs_icons.png create mode 100755 include/js/easyui/themes/bootstrap/images/tree_icons.png create mode 100755 include/js/easyui/themes/bootstrap/images/validatebox_warning.png create mode 100644 include/js/easyui/themes/bootstrap/layout.css create mode 100644 include/js/easyui/themes/bootstrap/linkbutton.css create mode 100644 include/js/easyui/themes/bootstrap/menu.css create mode 100644 include/js/easyui/themes/bootstrap/menubutton.css create mode 100644 include/js/easyui/themes/bootstrap/messager.css create mode 100644 include/js/easyui/themes/bootstrap/numberbox.css create mode 100644 include/js/easyui/themes/bootstrap/pagination.css create mode 100644 include/js/easyui/themes/bootstrap/panel.css create mode 100644 include/js/easyui/themes/bootstrap/progressbar.css create mode 100644 include/js/easyui/themes/bootstrap/propertygrid.css create mode 100644 include/js/easyui/themes/bootstrap/searchbox.css create mode 100644 include/js/easyui/themes/bootstrap/slider.css create mode 100644 include/js/easyui/themes/bootstrap/spinner.css create mode 100644 include/js/easyui/themes/bootstrap/splitbutton.css create mode 100644 include/js/easyui/themes/bootstrap/switchbutton.css create mode 100644 include/js/easyui/themes/bootstrap/tabs.css create mode 100644 include/js/easyui/themes/bootstrap/textbox.css create mode 100644 include/js/easyui/themes/bootstrap/tooltip.css create mode 100644 include/js/easyui/themes/bootstrap/tree.css create mode 100644 include/js/easyui/themes/bootstrap/validatebox.css create mode 100644 include/js/easyui/themes/bootstrap/window.css create mode 100755 include/js/easyui/themes/color.css create mode 100644 include/js/easyui/themes/default/accordion.css create mode 100644 include/js/easyui/themes/default/calendar.css create mode 100644 include/js/easyui/themes/default/combo.css create mode 100644 include/js/easyui/themes/default/combobox.css create mode 100644 include/js/easyui/themes/default/datagrid.css create mode 100644 include/js/easyui/themes/default/datalist.css create mode 100644 include/js/easyui/themes/default/datebox.css create mode 100644 include/js/easyui/themes/default/dialog.css create mode 100644 include/js/easyui/themes/default/easyui.css create mode 100644 include/js/easyui/themes/default/filebox.css create mode 100755 include/js/easyui/themes/default/images/accordion_arrows.png create mode 100755 include/js/easyui/themes/default/images/blank.gif create mode 100755 include/js/easyui/themes/default/images/calendar_arrows.png create mode 100755 include/js/easyui/themes/default/images/combo_arrow.png create mode 100755 include/js/easyui/themes/default/images/datagrid_icons.png create mode 100755 include/js/easyui/themes/default/images/datebox_arrow.png create mode 100755 include/js/easyui/themes/default/images/layout_arrows.png create mode 100755 include/js/easyui/themes/default/images/linkbutton_bg.png create mode 100755 include/js/easyui/themes/default/images/loading.gif create mode 100755 include/js/easyui/themes/default/images/menu_arrows.png create mode 100755 include/js/easyui/themes/default/images/messager_icons.png create mode 100755 include/js/easyui/themes/default/images/pagination_icons.png create mode 100755 include/js/easyui/themes/default/images/panel_tools.png create mode 100755 include/js/easyui/themes/default/images/searchbox_button.png create mode 100755 include/js/easyui/themes/default/images/slider_handle.png create mode 100755 include/js/easyui/themes/default/images/spinner_arrows.png create mode 100755 include/js/easyui/themes/default/images/tabs_icons.png create mode 100755 include/js/easyui/themes/default/images/tree_icons.png create mode 100755 include/js/easyui/themes/default/images/validatebox_warning.png create mode 100644 include/js/easyui/themes/default/layout.css create mode 100644 include/js/easyui/themes/default/linkbutton.css create mode 100644 include/js/easyui/themes/default/menu.css create mode 100644 include/js/easyui/themes/default/menubutton.css create mode 100644 include/js/easyui/themes/default/messager.css create mode 100644 include/js/easyui/themes/default/numberbox.css create mode 100644 include/js/easyui/themes/default/pagination.css create mode 100644 include/js/easyui/themes/default/panel.css create mode 100644 include/js/easyui/themes/default/progressbar.css create mode 100644 include/js/easyui/themes/default/propertygrid.css create mode 100644 include/js/easyui/themes/default/searchbox.css create mode 100644 include/js/easyui/themes/default/slider.css create mode 100644 include/js/easyui/themes/default/spinner.css create mode 100644 include/js/easyui/themes/default/splitbutton.css create mode 100644 include/js/easyui/themes/default/switchbutton.css create mode 100644 include/js/easyui/themes/default/tabs.css create mode 100644 include/js/easyui/themes/default/textbox.css create mode 100644 include/js/easyui/themes/default/tooltip.css create mode 100644 include/js/easyui/themes/default/tree.css create mode 100644 include/js/easyui/themes/default/validatebox.css create mode 100644 include/js/easyui/themes/default/window.css create mode 100644 include/js/easyui/themes/gray/accordion.css create mode 100644 include/js/easyui/themes/gray/calendar.css create mode 100644 include/js/easyui/themes/gray/combo.css create mode 100644 include/js/easyui/themes/gray/combobox.css create mode 100644 include/js/easyui/themes/gray/datagrid.css create mode 100644 include/js/easyui/themes/gray/datalist.css create mode 100644 include/js/easyui/themes/gray/datebox.css create mode 100644 include/js/easyui/themes/gray/dialog.css create mode 100644 include/js/easyui/themes/gray/easyui.css create mode 100644 include/js/easyui/themes/gray/filebox.css create mode 100755 include/js/easyui/themes/gray/images/accordion_arrows.png create mode 100755 include/js/easyui/themes/gray/images/blank.gif create mode 100755 include/js/easyui/themes/gray/images/calendar_arrows.png create mode 100755 include/js/easyui/themes/gray/images/combo_arrow.png create mode 100755 include/js/easyui/themes/gray/images/datagrid_icons.png create mode 100755 include/js/easyui/themes/gray/images/datebox_arrow.png create mode 100755 include/js/easyui/themes/gray/images/layout_arrows.png create mode 100755 include/js/easyui/themes/gray/images/linkbutton_bg.png create mode 100755 include/js/easyui/themes/gray/images/loading.gif create mode 100755 include/js/easyui/themes/gray/images/menu_arrows.png create mode 100755 include/js/easyui/themes/gray/images/messager_icons.png create mode 100755 include/js/easyui/themes/gray/images/pagination_icons.png create mode 100755 include/js/easyui/themes/gray/images/panel_tools.png create mode 100755 include/js/easyui/themes/gray/images/searchbox_button.png create mode 100755 include/js/easyui/themes/gray/images/slider_handle.png create mode 100755 include/js/easyui/themes/gray/images/spinner_arrows.png create mode 100755 include/js/easyui/themes/gray/images/tabs_icons.png create mode 100755 include/js/easyui/themes/gray/images/tree_icons.png create mode 100755 include/js/easyui/themes/gray/images/validatebox_warning.png create mode 100644 include/js/easyui/themes/gray/layout.css create mode 100644 include/js/easyui/themes/gray/linkbutton.css create mode 100644 include/js/easyui/themes/gray/menu.css create mode 100644 include/js/easyui/themes/gray/menubutton.css create mode 100644 include/js/easyui/themes/gray/messager.css create mode 100644 include/js/easyui/themes/gray/numberbox.css create mode 100644 include/js/easyui/themes/gray/pagination.css create mode 100644 include/js/easyui/themes/gray/panel.css create mode 100644 include/js/easyui/themes/gray/progressbar.css create mode 100644 include/js/easyui/themes/gray/propertygrid.css create mode 100644 include/js/easyui/themes/gray/searchbox.css create mode 100644 include/js/easyui/themes/gray/slider.css create mode 100644 include/js/easyui/themes/gray/spinner.css create mode 100644 include/js/easyui/themes/gray/splitbutton.css create mode 100644 include/js/easyui/themes/gray/switchbutton.css create mode 100644 include/js/easyui/themes/gray/tabs.css create mode 100644 include/js/easyui/themes/gray/textbox.css create mode 100644 include/js/easyui/themes/gray/tooltip.css create mode 100644 include/js/easyui/themes/gray/tree.css create mode 100644 include/js/easyui/themes/gray/validatebox.css create mode 100644 include/js/easyui/themes/gray/window.css create mode 100755 include/js/easyui/themes/icon.css create mode 100755 include/js/easyui/themes/icons/back.png create mode 100755 include/js/easyui/themes/icons/blank.gif create mode 100755 include/js/easyui/themes/icons/cancel.png create mode 100644 include/js/easyui/themes/icons/clear.png create mode 100755 include/js/easyui/themes/icons/cut.png create mode 100755 include/js/easyui/themes/icons/edit_add.png create mode 100755 include/js/easyui/themes/icons/edit_remove.png create mode 100755 include/js/easyui/themes/icons/filesave.png create mode 100755 include/js/easyui/themes/icons/filter.png create mode 100755 include/js/easyui/themes/icons/help.png create mode 100644 include/js/easyui/themes/icons/large_chart.png create mode 100644 include/js/easyui/themes/icons/large_clipart.png create mode 100644 include/js/easyui/themes/icons/large_picture.png create mode 100644 include/js/easyui/themes/icons/large_shapes.png create mode 100644 include/js/easyui/themes/icons/large_smartart.png create mode 100644 include/js/easyui/themes/icons/lock.png create mode 100644 include/js/easyui/themes/icons/man.png create mode 100755 include/js/easyui/themes/icons/mini_add.png create mode 100755 include/js/easyui/themes/icons/mini_edit.png create mode 100755 include/js/easyui/themes/icons/mini_refresh.png create mode 100755 include/js/easyui/themes/icons/more.png create mode 100755 include/js/easyui/themes/icons/no.png create mode 100755 include/js/easyui/themes/icons/ok.png create mode 100755 include/js/easyui/themes/icons/pencil.png create mode 100755 include/js/easyui/themes/icons/print.png create mode 100755 include/js/easyui/themes/icons/redo.png create mode 100755 include/js/easyui/themes/icons/reload.png create mode 100755 include/js/easyui/themes/icons/search.png create mode 100755 include/js/easyui/themes/icons/sum.png create mode 100755 include/js/easyui/themes/icons/tip.png create mode 100755 include/js/easyui/themes/icons/undo.png create mode 100644 include/js/easyui/themes/metro/accordion.css create mode 100644 include/js/easyui/themes/metro/calendar.css create mode 100644 include/js/easyui/themes/metro/combo.css create mode 100644 include/js/easyui/themes/metro/combobox.css create mode 100644 include/js/easyui/themes/metro/datagrid.css create mode 100644 include/js/easyui/themes/metro/datalist.css create mode 100644 include/js/easyui/themes/metro/datebox.css create mode 100644 include/js/easyui/themes/metro/dialog.css create mode 100644 include/js/easyui/themes/metro/easyui.css create mode 100644 include/js/easyui/themes/metro/filebox.css create mode 100755 include/js/easyui/themes/metro/images/accordion_arrows.png create mode 100755 include/js/easyui/themes/metro/images/blank.gif create mode 100755 include/js/easyui/themes/metro/images/calendar_arrows.png create mode 100755 include/js/easyui/themes/metro/images/combo_arrow.png create mode 100755 include/js/easyui/themes/metro/images/datagrid_icons.png create mode 100755 include/js/easyui/themes/metro/images/datebox_arrow.png create mode 100755 include/js/easyui/themes/metro/images/layout_arrows.png create mode 100755 include/js/easyui/themes/metro/images/linkbutton_bg.png create mode 100755 include/js/easyui/themes/metro/images/loading.gif create mode 100755 include/js/easyui/themes/metro/images/menu_arrows.png create mode 100755 include/js/easyui/themes/metro/images/messager_icons.png create mode 100755 include/js/easyui/themes/metro/images/pagination_icons.png create mode 100755 include/js/easyui/themes/metro/images/panel_tools.png create mode 100755 include/js/easyui/themes/metro/images/searchbox_button.png create mode 100755 include/js/easyui/themes/metro/images/slider_handle.png create mode 100755 include/js/easyui/themes/metro/images/spinner_arrows.png create mode 100755 include/js/easyui/themes/metro/images/tabs_icons.png create mode 100755 include/js/easyui/themes/metro/images/tree_icons.png create mode 100755 include/js/easyui/themes/metro/images/validatebox_warning.png create mode 100644 include/js/easyui/themes/metro/layout.css create mode 100644 include/js/easyui/themes/metro/linkbutton.css create mode 100644 include/js/easyui/themes/metro/menu.css create mode 100644 include/js/easyui/themes/metro/menubutton.css create mode 100644 include/js/easyui/themes/metro/messager.css create mode 100644 include/js/easyui/themes/metro/numberbox.css create mode 100644 include/js/easyui/themes/metro/pagination.css create mode 100644 include/js/easyui/themes/metro/panel.css create mode 100644 include/js/easyui/themes/metro/progressbar.css create mode 100644 include/js/easyui/themes/metro/propertygrid.css create mode 100644 include/js/easyui/themes/metro/searchbox.css create mode 100644 include/js/easyui/themes/metro/slider.css create mode 100644 include/js/easyui/themes/metro/spinner.css create mode 100644 include/js/easyui/themes/metro/splitbutton.css create mode 100644 include/js/easyui/themes/metro/switchbutton.css create mode 100644 include/js/easyui/themes/metro/tabs.css create mode 100644 include/js/easyui/themes/metro/textbox.css create mode 100644 include/js/easyui/themes/metro/tooltip.css create mode 100644 include/js/easyui/themes/metro/tree.css create mode 100644 include/js/easyui/themes/metro/validatebox.css create mode 100644 include/js/easyui/themes/metro/window.css create mode 100644 include/js/easyui/themes/mobile.css create mode 100644 include/js/easyui/themes/vilesci create mode 100644 include/meta/easyui.php create mode 100755 include/vendor_custom/easyui/icon.css create mode 100644 skin/images/Graphs_clip_art.svg create mode 100644 skin/images/x-office-presentation.svg create mode 100644 skin/images/x-office-spreadsheet.svg mode change 100644 => 100755 vilesci/lehre/studienordnung.js diff --git a/include/js/easyui-vilesci-theme/easyui.css b/include/js/easyui-vilesci-theme/easyui.css new file mode 100644 index 000000000..a340efeb0 --- /dev/null +++ b/include/js/easyui-vilesci-theme/easyui.css @@ -0,0 +1,2870 @@ +.panel { + overflow: hidden; + text-align: left; + margin: 0; + border: 0; + -moz-border-radius: 0 0 0 0; + -webkit-border-radius: 0 0 0 0; + border-radius: 0 0 0 0; +} +.panel-header, +.panel-body { + border-width: 1px; + border-style: solid; +} +.panel-header { + padding: 5px; + position: relative; +} +.panel-title { + background: url('images/blank.gif') no-repeat; +} +.panel-header-noborder { + border-width: 0 0 1px 0; +} +.panel-body { + overflow: auto; + border-top-width: 0; + padding: 0; + border-radius:10px; +} +.panel-body-noheader { + border-top-width: 1px; +} +.panel-body-noborder { + border-width: 0px; +} +.panel-body-nobottom { + border-bottom-width: 0; +} +.panel-with-icon { + padding-left: 18px; +} +.panel-icon, +.panel-tool { + position: absolute; + top: 50%; + margin-top: -8px; + height: 16px; + overflow: hidden; +} +.panel-icon { + left: 5px; + width: 16px; +} +.panel-tool { + right: 5px; + width: auto; +} +.panel-tool a { + display: inline-block; + width: 16px; + height: 16px; + opacity: 0.6; + filter: alpha(opacity=60); + margin: 0 0 0 2px; + vertical-align: top; +} +.panel-tool a:hover { + opacity: 1; + filter: alpha(opacity=100); + background-color: #777; + -moz-border-radius: 3px 3px 3px 3px; + -webkit-border-radius: 3px 3px 3px 3px; + border-radius: 3px 3px 3px 3px; +} +.panel-loading { + padding: 11px 0px 10px 30px; +} +.panel-noscroll { + overflow: hidden; +} +.panel-fit, +.panel-fit body { + height: 100%; + margin: 0; + padding: 0; + border: 0; + overflow: hidden; +} +.panel-loading { + background: url('images/loading.gif') no-repeat 10px 10px; +} +.panel-tool-close { + background: url('images/panel_tools.png') no-repeat -16px 0px; +} +.panel-tool-min { + background: url('images/panel_tools.png') no-repeat 0px 0px; +} +.panel-tool-max { + background: url('images/panel_tools.png') no-repeat 0px -16px; +} +.panel-tool-restore { + background: url('images/panel_tools.png') no-repeat -16px -16px; +} +.panel-tool-collapse { + background: url('images/panel_tools.png') no-repeat -32px 0; +} +.panel-tool-expand { + background: url('images/panel_tools.png') no-repeat -32px -16px; +} +.panel-header, +.panel-body { + border-color: #000; +} +.panel-header { + background-color: #3d3d3d; + background: -webkit-linear-gradient(top,#454545 0,#383838 100%); + background: -moz-linear-gradient(top,#454545 0,#383838 100%); + background: -o-linear-gradient(top,#454545 0,#383838 100%); + background: linear-gradient(to bottom,#454545 0,#383838 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#454545,endColorstr=#383838,GradientType=0); +} +.panel-body { + background-color: #EEE; + color: #333; + font-size: 12px; +} +.panel-title { + font-size: 12px; + font-weight: bold; + color: #fff; + height: 16px; + line-height: 16px; +} +.panel-footer { + border: 1px solid #444; + overflow: hidden; + background: #555; +} +.panel-footer-noborder { + border-width: 1px 0 0 0; +} +.accordion { + overflow: hidden; + border-width: 1px; + border-style: solid; +} +.accordion .accordion-header { + border-width: 0 0 1px; + cursor: pointer; +} +.accordion .accordion-body { + border-width: 0 0 1px; +} +.accordion-noborder { + border-width: 0; +} +.accordion-noborder .accordion-header { + border-width: 0 0 1px; +} +.accordion-noborder .accordion-body { + border-width: 0 0 1px; +} +.accordion-collapse { + background: url('images/accordion_arrows.png') no-repeat 0 0; +} +.accordion-expand { + background: url('images/accordion_arrows.png') no-repeat -16px 0; +} +.accordion { + background: #666; + border-color: #000; +} +.accordion .accordion-header { + background: #3d3d3d; + filter: none; +} +.accordion .accordion-header-selected { + background: #0052A3; +} +.accordion .accordion-header-selected .panel-title { + color: #fff; +} +.window { + overflow: hidden; + padding: 5px; + border-width: 1px; + border-style: solid; +} +.window .window-header { + background: transparent; + padding: 0px 0px 6px 0px; +} +.window .window-body { + border-width: 1px; + border-style: solid; + border-top-width: 0px; +} +.window .window-body-noheader { + border-top-width: 1px; +} +.window .panel-body-nobottom { + border-bottom-width: 0; +} +.window .window-header .panel-icon, +.window .window-header .panel-tool { + top: 50%; + margin-top: -11px; +} +.window .window-header .panel-icon { + left: 1px; +} +.window .window-header .panel-tool { + right: 1px; +} +.window .window-header .panel-with-icon { + padding-left: 18px; +} +.window-proxy { + position: absolute; + overflow: hidden; +} +.window-proxy-mask { + position: absolute; + filter: alpha(opacity=5); + opacity: 0.05; +} +.window-mask { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + filter: alpha(opacity=40); + opacity: 0.40; + font-size: 1px; + overflow: hidden; +} +.window, +.window-shadow { + position: absolute; + -moz-border-radius: 5px 5px 5px 5px; + -webkit-border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; +} +.window-shadow { + background: #777; + -moz-box-shadow: 2px 2px 3px #787878; + -webkit-box-shadow: 2px 2px 3px #787878; + box-shadow: 2px 2px 3px #787878; + filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); +} +.window, +.window .window-body { + border-color: #000; +} +.window { + background-color: #3d3d3d; + background: -webkit-linear-gradient(top,#454545 0,#383838 20%); + background: -moz-linear-gradient(top,#454545 0,#383838 20%); + background: -o-linear-gradient(top,#454545 0,#383838 20%); + background: linear-gradient(to bottom,#454545 0,#383838 20%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#454545,endColorstr=#383838,GradientType=0); +} +.window-proxy { + border: 1px dashed #000; +} +.window-proxy-mask, +.window-mask { + background: #000; +} +.window .panel-footer { + border: 1px solid #000; + position: relative; + top: -1px; +} +.dialog-content { + overflow: auto; +} +.dialog-toolbar { + padding: 2px 5px; +} +.dialog-tool-separator { + float: left; + height: 24px; + border-left: 1px solid #444; + border-right: 1px solid #777; + margin: 2px 1px; +} +.dialog-button { + padding: 5px; + text-align: right; +} +.dialog-button .l-btn { + margin-left: 5px; +} +.dialog-toolbar, +.dialog-button { + background: #555; + border-width: 1px; + border-style: solid; +} +.dialog-toolbar { + border-color: #000 #000 #222 #000; +} +.dialog-button { + border-color: #222 #000 #000 #000; +} +.l-btn { + text-decoration: none; + display: inline-block; + overflow: hidden; + margin: 0; + padding: 0; + cursor: pointer; + outline: none; + text-align: center; + vertical-align: middle; + line-height: normal; +} +.l-btn-plain { + border-width: 0; + padding: 1px; +} +.l-btn-left { + display: inline-block; + position: relative; + overflow: hidden; + margin: 0; + padding: 0; + vertical-align: top; +} +.l-btn-text { + display: inline-block; + vertical-align: top; + width: auto; + line-height: 24px; + font-size: 12px; + padding: 0; + margin: 0 4px; +} +.l-btn-icon { + display: inline-block; + width: 16px; + height: 16px; + line-height: 16px; + position: absolute; + top: 50%; + margin-top: -8px; + font-size: 1px; +} +.l-btn span span .l-btn-empty { + display: inline-block; + margin: 0; + width: 16px; + height: 24px; + font-size: 1px; + vertical-align: top; +} +.l-btn span .l-btn-icon-left { + padding: 0 0 0 20px; + background-position: left center; +} +.l-btn span .l-btn-icon-right { + padding: 0 20px 0 0; + background-position: right center; +} +.l-btn-icon-left .l-btn-text { + margin: 0 4px 0 24px; +} +.l-btn-icon-left .l-btn-icon { + left: 4px; +} +.l-btn-icon-right .l-btn-text { + margin: 0 24px 0 4px; +} +.l-btn-icon-right .l-btn-icon { + right: 4px; +} +.l-btn-icon-top .l-btn-text { + margin: 20px 4px 0 4px; +} +.l-btn-icon-top .l-btn-icon { + top: 4px; + left: 50%; + margin: 0 0 0 -8px; +} +.l-btn-icon-bottom .l-btn-text { + margin: 0 4px 20px 4px; +} +.l-btn-icon-bottom .l-btn-icon { + top: auto; + bottom: 4px; + left: 50%; + margin: 0 0 0 -8px; +} +.l-btn-left .l-btn-empty { + margin: 0 4px; + width: 16px; +} +.l-btn-plain:hover { + padding: 0; +} +.l-btn-focus { + outline: #0000FF dotted thin; +} +.l-btn-large .l-btn-text { + line-height: 40px; +} +.l-btn-large .l-btn-icon { + width: 32px; + height: 32px; + line-height: 32px; + margin-top: -16px; +} +.l-btn-large .l-btn-icon-left .l-btn-text { + margin-left: 40px; +} +.l-btn-large .l-btn-icon-right .l-btn-text { + margin-right: 40px; +} +.l-btn-large .l-btn-icon-top .l-btn-text { + margin-top: 36px; + line-height: 24px; + min-width: 32px; +} +.l-btn-large .l-btn-icon-top .l-btn-icon { + margin: 0 0 0 -16px; +} +.l-btn-large .l-btn-icon-bottom .l-btn-text { + margin-bottom: 36px; + line-height: 24px; + min-width: 32px; +} +.l-btn-large .l-btn-icon-bottom .l-btn-icon { + margin: 0 0 0 -16px; +} +.l-btn-large .l-btn-left .l-btn-empty { + margin: 0 4px; + width: 32px; +} +.l-btn { + color: #fff; + background: #777; + background-repeat: repeat-x; + border: 1px solid #555; + background: -webkit-linear-gradient(top,#919191 0,#6a6a6a 100%); + background: -moz-linear-gradient(top,#919191 0,#6a6a6a 100%); + background: -o-linear-gradient(top,#919191 0,#6a6a6a 100%); + background: linear-gradient(to bottom,#919191 0,#6a6a6a 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#919191,endColorstr=#6a6a6a,GradientType=0); + -moz-border-radius: 5px 5px 5px 5px; + -webkit-border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; +} +.l-btn:hover { + background: #777; + color: #fff; + border: 1px solid #555; + filter: none; +} +.l-btn-plain { + background: transparent; + border-width: 0; + filter: none; +} +.l-btn-outline { + border-width: 1px; + border-color: #555; + padding: 0; +} +.l-btn-plain:hover { + background: #777; + color: #fff; + border: 1px solid #555; + -moz-border-radius: 5px 5px 5px 5px; + -webkit-border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; +} +.l-btn-disabled, +.l-btn-disabled:hover { + opacity: 0.5; + cursor: default; + background: #777; + color: #fff; + background: -webkit-linear-gradient(top,#919191 0,#6a6a6a 100%); + background: -moz-linear-gradient(top,#919191 0,#6a6a6a 100%); + background: -o-linear-gradient(top,#919191 0,#6a6a6a 100%); + background: linear-gradient(to bottom,#919191 0,#6a6a6a 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#919191,endColorstr=#6a6a6a,GradientType=0); +} +.l-btn-disabled .l-btn-text, +.l-btn-disabled .l-btn-icon { + filter: alpha(opacity=50); +} +.l-btn-plain-disabled, +.l-btn-plain-disabled:hover { + background: transparent; + filter: alpha(opacity=50); +} +.l-btn-selected, +.l-btn-selected:hover { + background: #000; + filter: none; +} +.l-btn-plain-selected, +.l-btn-plain-selected:hover { + background: #000; +} +.textbox { + position: relative; + border: 1px solid #000; + background-color: #fff; + vertical-align: middle; + display: inline-block; + overflow: hidden; + white-space: nowrap; + margin: 0; + padding: 0; + -moz-border-radius: 5px 5px 5px 5px; + -webkit-border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; +} +.textbox .textbox-text { + font-size: 12px; + border: 0; + margin: 0; + padding: 4px; + white-space: normal; + vertical-align: top; + outline-style: none; + resize: none; + -moz-border-radius: 5px 5px 5px 5px; + -webkit-border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; +} +.textbox textarea.textbox-text { + white-space: pre-wrap; +} +.textbox .textbox-prompt { + font-size: 12px; + color: #aaa; +} +.textbox .textbox-button, +.textbox .textbox-button:hover { + position: absolute; + top: 0; + padding: 0; + vertical-align: top; + -moz-border-radius: 0 0 0 0; + -webkit-border-radius: 0 0 0 0; + border-radius: 0 0 0 0; +} +.textbox-button-right, +.textbox-button-right:hover { + border-width: 0 0 0 1px; +} +.textbox-button-left, +.textbox-button-left:hover { + border-width: 0 1px 0 0; +} +.textbox-addon { + position: absolute; + top: 0; +} +.textbox-icon { + display: inline-block; + width: 18px; + height: 20px; + overflow: hidden; + vertical-align: top; + background-position: center center; + cursor: pointer; + opacity: 0.6; + filter: alpha(opacity=60); + text-decoration: none; + outline-style: none; +} +.textbox-icon-disabled, +.textbox-icon-readonly { + cursor: default; +} +.textbox-icon:hover { + opacity: 1.0; + filter: alpha(opacity=100); +} +.textbox-icon-disabled:hover { + opacity: 0.6; + filter: alpha(opacity=60); +} +.textbox-focused { + -moz-box-shadow: 0 0 3px 0 #000; + -webkit-box-shadow: 0 0 3px 0 #000; + box-shadow: 0 0 3px 0 #000; +} +.textbox-invalid { + border-color: #ffa8a8; + background-color: #fff3f3; +} +.filebox .textbox-value { + vertical-align: top; + position: absolute; + top: 0; + left: -5000px; +} +.filebox-label { + display: inline-block; + position: absolute; + width: 100%; + height: 100%; + cursor: pointer; + left: 0; + top: 0; + z-index: 10; + background: url('images/blank.gif') no-repeat; +} +.l-btn-disabled .filebox-label { + cursor: default; +} +.combo { + display: inline-block; + white-space: nowrap; + margin: 0; + padding: 0; + border-width: 1px; + border-style: solid; + overflow: hidden; + vertical-align: middle; +} +.combo .combo-text { + font-size: 12px; + border: 0px; + margin: 0; + padding: 0px 2px; + vertical-align: baseline; +} +.combo-arrow { + width: 18px; + height: 20px; + overflow: hidden; + display: inline-block; + vertical-align: top; + cursor: pointer; + opacity: 0.6; + filter: alpha(opacity=60); +} +.combo-arrow-hover { + opacity: 1.0; + filter: alpha(opacity=100); +} +.combo-panel { + overflow: auto; +} +.combo-arrow { + background: url('images/combo_arrow.png') no-repeat center center; +} +.combo-panel { + background-color: #666; +} +.combo { + border-color: #000; + background-color: #fff; +} +.combo-arrow { + background-color: #3d3d3d; +} +.combo-arrow-hover { + background-color: #777; +} +.combo-arrow:hover { + background-color: #777; +} +.combo .textbox-icon-disabled:hover { + cursor: default; +} +.textbox-invalid { + border-color: #ffa8a8; + background-color: #fff3f3; +} +.combobox-item, +.combobox-group { + font-size: 12px; + padding: 3px; + padding-right: 0px; +} +.combobox-item-disabled { + opacity: 0.5; + filter: alpha(opacity=50); +} +.combobox-gitem { + padding-left: 10px; +} +.combobox-group { + font-weight: bold; +} +.combobox-item-hover { + background-color: #777; + color: #fff; +} +.combobox-item-selected { + background-color: #0052A3; + color: #fff; +} +.layout { + position: relative; + overflow: hidden; + margin: 0; + padding: 0; + z-index: 0; +} +.layout-panel { + position: absolute; + overflow: hidden; +} +.layout-body { + min-width: 1px; + min-height: 1px; +} +.layout-panel-east, +.layout-panel-west { + z-index: 2; +} +.layout-panel-north, +.layout-panel-south { + z-index: 3; +} +.layout-expand { + position: absolute; + padding: 0px; + font-size: 1px; + cursor: pointer; + z-index: 1; +} +.layout-expand .panel-header, +.layout-expand .panel-body { + background: transparent; + filter: none; + overflow: hidden; +} +.layout-expand .panel-header { + border-bottom-width: 0px; +} +.layout-expand .panel-body { + position: relative; +} +.layout-expand .panel-body .panel-icon { + margin-top: 0; + top: 0; + left: 50%; + margin-left: -8px; +} +.layout-expand-west .panel-header .panel-icon, +.layout-expand-east .panel-header .panel-icon { + display: none; +} +.layout-expand-title { + position: absolute; + top: 0; + left: 21px; + white-space: nowrap; + word-wrap: normal; + -webkit-transform: rotate(90deg); + -webkit-transform-origin: 0 0; + -moz-transform: rotate(90deg); + -moz-transform-origin: 0 0; + -o-transform: rotate(90deg); + -o-transform-origin: 0 0; + transform: rotate(90deg); + transform-origin: 0 0; +} +.layout-expand-with-icon { + top: 18px; +} +.layout-expand .panel-body-noheader .layout-expand-title, +.layout-expand .panel-body-noheader .panel-icon { + top: 5px; +} +.layout-expand .panel-body-noheader .layout-expand-with-icon { + top: 23px; +} +.layout-split-proxy-h, +.layout-split-proxy-v { + position: absolute; + font-size: 1px; + display: none; + z-index: 5; +} +.layout-split-proxy-h { + width: 5px; + cursor: e-resize; +} +.layout-split-proxy-v { + height: 5px; + cursor: n-resize; +} +.layout-mask { + position: absolute; + background: #fafafa; + filter: alpha(opacity=10); + opacity: 0.10; + z-index: 4; +} +.layout-button-up { + background: url('images/layout_arrows.png') no-repeat -16px -16px; +} +.layout-button-down { + background: url('images/layout_arrows.png') no-repeat -16px 0; +} +.layout-button-left { + background: url('images/layout_arrows.png') no-repeat 0 0; +} +.layout-button-right { + background: url('images/layout_arrows.png') no-repeat 0 -16px; +} +.layout-split-proxy-h, +.layout-split-proxy-v { + background-color: #cccccc; +} +.layout-split-north { + border-bottom: 5px solid #444; +} +.layout-split-south { + border-top: 5px solid #444; +} +.layout-split-east { + border-left: 5px solid #444; +} +.layout-split-west { + border-right: 5px solid #444; +} +.layout-expand { + background-color: #3d3d3d; +} +.layout-expand-over { + background-color: #3d3d3d; +} +.tabs-container { + overflow: hidden; +} +.tabs-header { + border-width: 1px; + border-style: solid; + border-bottom-width: 0; + position: relative; + padding: 0; + padding-top: 2px; + overflow: hidden; +} +.tabs-scroller-left, +.tabs-scroller-right { + position: absolute; + top: auto; + bottom: 0; + width: 18px; + font-size: 1px; + display: none; + cursor: pointer; + border-width: 1px; + border-style: solid; +} +.tabs-scroller-left { + left: 0; +} +.tabs-scroller-right { + right: 0; +} +.tabs-tool { + position: absolute; + bottom: 0; + padding: 1px; + overflow: hidden; + border-width: 1px; + border-style: solid; +} +.tabs-header-plain .tabs-tool { + padding: 0 1px; +} +.tabs-wrap { + position: relative; + left: 0; + overflow: hidden; + width: 100%; + margin: 0; + padding: 0; +} +.tabs-scrolling { + margin-left: 18px; + margin-right: 18px; +} +.tabs-disabled { + opacity: 0.3; + filter: alpha(opacity=30); +} +.tabs { + list-style-type: none; + height: 26px; + margin: 0px; + padding: 0px; + padding-left: 4px; + width: 50000px; + border-style: solid; + border-width: 0 0 1px 0; +} +.tabs li { + float: left; + display: inline-block; + margin: 0 4px -1px 0; + padding: 0; + position: relative; + border: 0; +} +.tabs li a.tabs-inner { + display: inline-block; + text-decoration: none; + margin: 0; + padding: 0 10px; + height: 25px; + line-height: 25px; + text-align: center; + white-space: nowrap; + border-width: 1px; + border-style: solid; + -moz-border-radius: 5px 5px 0 0; + -webkit-border-radius: 5px 5px 0 0; + border-radius: 5px 5px 0 0; +} +.tabs li.tabs-selected a.tabs-inner { + font-weight: bold; + outline: none; +} +.tabs li.tabs-selected a:hover.tabs-inner { + cursor: default; + pointer: default; +} +.tabs li a.tabs-close, +.tabs-p-tool { + position: absolute; + font-size: 1px; + display: block; + height: 12px; + padding: 0; + top: 50%; + margin-top: -6px; + overflow: hidden; +} +.tabs li a.tabs-close { + width: 12px; + right: 5px; + opacity: 0.6; + filter: alpha(opacity=60); +} +.tabs-p-tool { + right: 16px; +} +.tabs-p-tool a { + display: inline-block; + font-size: 1px; + width: 12px; + height: 12px; + margin: 0; + opacity: 0.6; + filter: alpha(opacity=60); +} +.tabs li a:hover.tabs-close, +.tabs-p-tool a:hover { + opacity: 1; + filter: alpha(opacity=100); + cursor: hand; + cursor: pointer; +} +.tabs-with-icon { + padding-left: 18px; +} +.tabs-icon { + position: absolute; + width: 16px; + height: 16px; + left: 10px; + top: 50%; + margin-top: -8px; +} +.tabs-title { + font-size: 12px; +} +.tabs-closable { + padding-right: 8px; +} +.tabs-panels { + margin: 0px; + padding: 0px; + border-width: 1px; + border-style: solid; + border-top-width: 0; + overflow: hidden; +} +.tabs-header-bottom { + border-width: 0 1px 1px 1px; + padding: 0 0 2px 0; +} +.tabs-header-bottom .tabs { + border-width: 1px 0 0 0; +} +.tabs-header-bottom .tabs li { + margin: -1px 4px 0 0; +} +.tabs-header-bottom .tabs li a.tabs-inner { + -moz-border-radius: 0 0 5px 5px; + -webkit-border-radius: 0 0 5px 5px; + border-radius: 0 0 5px 5px; +} +.tabs-header-bottom .tabs-tool { + top: 0; +} +.tabs-header-bottom .tabs-scroller-left, +.tabs-header-bottom .tabs-scroller-right { + top: 0; + bottom: auto; +} +.tabs-panels-top { + border-width: 1px 1px 0 1px; +} +.tabs-header-left { + float: left; + border-width: 1px 0 1px 1px; + padding: 0; +} +.tabs-header-right { + float: right; + border-width: 1px 1px 1px 0; + padding: 0; +} +.tabs-header-left .tabs-wrap, +.tabs-header-right .tabs-wrap { + height: 100%; +} +.tabs-header-left .tabs { + height: 100%; + padding: 4px 0 0 2px; + border-width: 0 1px 0 0; +} +.tabs-header-right .tabs { + height: 100%; + padding: 4px 2px 0 0; + border-width: 0 0 0 1px; +} +.tabs-header-left .tabs li, +.tabs-header-right .tabs li { + display: block; + width: 100%; + position: relative; +} +.tabs-header-left .tabs li { + left: auto; + right: 0; + margin: 0 -1px 4px 0; + float: right; +} +.tabs-header-right .tabs li { + left: 0; + right: auto; + margin: 0 0 4px -1px; + float: left; +} +.tabs-justified li a.tabs-inner { + padding-left: 0; + padding-right: 0; +} +.tabs-header-left .tabs li a.tabs-inner { + display: block; + text-align: left; + padding-left: 10px; + padding-right: 10px; + -moz-border-radius: 5px 0 0 5px; + -webkit-border-radius: 5px 0 0 5px; + border-radius: 5px 0 0 5px; +} +.tabs-header-right .tabs li a.tabs-inner { + display: block; + text-align: left; + padding-left: 10px; + padding-right: 10px; + -moz-border-radius: 0 5px 5px 0; + -webkit-border-radius: 0 5px 5px 0; + border-radius: 0 5px 5px 0; +} +.tabs-panels-right { + float: right; + border-width: 1px 1px 1px 0; +} +.tabs-panels-left { + float: left; + border-width: 1px 0 1px 1px; +} +.tabs-header-noborder, +.tabs-panels-noborder { + border: 0px; +} +.tabs-header-plain { + border: 0px; + background: transparent; +} +.tabs-pill { + padding-bottom: 3px; +} +.tabs-header-bottom .tabs-pill { + padding-top: 3px; + padding-bottom: 0; +} +.tabs-header-left .tabs-pill { + padding-right: 3px; +} +.tabs-header-right .tabs-pill { + padding-left: 3px; +} +.tabs-header .tabs-pill li a.tabs-inner { + -moz-border-radius: 5px 5px 5px 5px; + -webkit-border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; +} +.tabs-header-narrow, +.tabs-header-narrow .tabs-narrow { + padding: 0; +} +.tabs-narrow li, +.tabs-header-bottom .tabs-narrow li { + margin-left: 0; + margin-right: -1px; +} +.tabs-narrow li.tabs-last, +.tabs-header-bottom .tabs-narrow li.tabs-last { + margin-right: 0; +} +.tabs-header-left .tabs-narrow, +.tabs-header-right .tabs-narrow { + padding-top: 0; +} +.tabs-header-left .tabs-narrow li { + margin-bottom: -1px; + margin-right: -1px; +} +.tabs-header-left .tabs-narrow li.tabs-last, +.tabs-header-right .tabs-narrow li.tabs-last { + margin-bottom: 0; +} +.tabs-header-right .tabs-narrow li { + margin-bottom: -1px; + margin-left: -1px; +} +.tabs-scroller-left { + background: #3d3d3d url('images/tabs_icons.png') no-repeat 1px center; +} +.tabs-scroller-right { + background: #3d3d3d url('images/tabs_icons.png') no-repeat -15px center; +} +.tabs li a.tabs-close { + background: url('images/tabs_icons.png') no-repeat -34px center; +} +.tabs li a.tabs-inner:hover { + background: #777; + color: #fff; + filter: none; +} +.tabs li.tabs-selected a.tabs-inner { + background-color: #666; + color: #fff; + background: -webkit-linear-gradient(top,#454545 0,#666 100%); + background: -moz-linear-gradient(top,#454545 0,#666 100%); + background: -o-linear-gradient(top,#454545 0,#666 100%); + background: linear-gradient(to bottom,#454545 0,#666 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#454545,endColorstr=#666,GradientType=0); +} +.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner { + background: -webkit-linear-gradient(top,#666 0,#454545 100%); + background: -moz-linear-gradient(top,#666 0,#454545 100%); + background: -o-linear-gradient(top,#666 0,#454545 100%); + background: linear-gradient(to bottom,#666 0,#454545 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#666,endColorstr=#454545,GradientType=0); +} +.tabs-header-left .tabs li.tabs-selected a.tabs-inner { + background: -webkit-linear-gradient(left,#454545 0,#666 100%); + background: -moz-linear-gradient(left,#454545 0,#666 100%); + background: -o-linear-gradient(left,#454545 0,#666 100%); + background: linear-gradient(to right,#454545 0,#666 100%); + background-repeat: repeat-y; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#454545,endColorstr=#666,GradientType=1); +} +.tabs-header-right .tabs li.tabs-selected a.tabs-inner { + background: -webkit-linear-gradient(left,#666 0,#454545 100%); + background: -moz-linear-gradient(left,#666 0,#454545 100%); + background: -o-linear-gradient(left,#666 0,#454545 100%); + background: linear-gradient(to right,#666 0,#454545 100%); + background-repeat: repeat-y; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#666,endColorstr=#454545,GradientType=1); +} +.tabs li a.tabs-inner { + color: #fff; + background-color: #3d3d3d; + background: -webkit-linear-gradient(top,#454545 0,#383838 100%); + background: -moz-linear-gradient(top,#454545 0,#383838 100%); + background: -o-linear-gradient(top,#454545 0,#383838 100%); + background: linear-gradient(to bottom,#454545 0,#383838 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#454545,endColorstr=#383838,GradientType=0); +} +.tabs-header, +.tabs-tool { + background-color: #3d3d3d; +} +.tabs-header-plain { + background: transparent; +} +.tabs-header, +.tabs-scroller-left, +.tabs-scroller-right, +.tabs-tool, +.tabs, +.tabs-panels, +.tabs li a.tabs-inner, +.tabs li.tabs-selected a.tabs-inner, +.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner, +.tabs-header-left .tabs li.tabs-selected a.tabs-inner, +.tabs-header-right .tabs li.tabs-selected a.tabs-inner { + border-color: #000; +} +.tabs-p-tool a:hover, +.tabs li a:hover.tabs-close, +.tabs-scroller-over { + background-color: #777; +} +.tabs li.tabs-selected a.tabs-inner { + border-bottom: 1px solid #666; +} +.tabs-header-bottom .tabs li.tabs-selected a.tabs-inner { + border-top: 1px solid #666; +} +.tabs-header-left .tabs li.tabs-selected a.tabs-inner { + border-right: 1px solid #666; +} +.tabs-header-right .tabs li.tabs-selected a.tabs-inner { + border-left: 1px solid #666; +} +.tabs-header .tabs-pill li.tabs-selected a.tabs-inner { + background: #0052A3; + color: #fff; + filter: none; + border-color: #000; +} +.datagrid .panel-body { + overflow: hidden; + position: relative; +} +.datagrid-view { + position: relative; + overflow: hidden; +} +.datagrid-view1, +.datagrid-view2 { + position: absolute; + overflow: hidden; + top: 0; +} +.datagrid-view1 { + left: 0; +} +.datagrid-view2 { + right: 0; +} +.datagrid-mask { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + opacity: 0.3; + filter: alpha(opacity=30); + display: none; +} +.datagrid-mask-msg { + position: absolute; + top: 50%; + margin-top: -20px; + padding: 10px 5px 10px 30px; + width: auto; + height: 16px; + border-width: 2px; + border-style: solid; + display: none; +} +.datagrid-sort-icon { + padding: 0; + display: none; +} +.datagrid-toolbar { + height: auto; + padding: 1px 2px; + border-width: 0 0 1px 0; + border-style: solid; +} +.datagrid-btn-separator { + float: left; + height: 24px; + border-left: 1px solid #444; + border-right: 1px solid #777; + margin: 2px 1px; +} +.datagrid .datagrid-pager { + display: block; + margin: 0; + border-width: 1px 0 0 0; + border-style: solid; +} +.datagrid .datagrid-pager-top { + border-width: 0 0 1px 0; +} +.datagrid-header { + overflow: hidden; + cursor: default; + border-width: 0 0 1px 0; + border-style: solid; +} +.datagrid-header-inner { + float: left; + width: 10000px; +} +.datagrid-header-row, +.datagrid-row { + height: 25px; +} +.datagrid-header td, +.datagrid-body td, +.datagrid-footer td { + border-width: 0 1px 1px 0; + border-style: dotted; + margin: 0; + padding: 0; +} +.datagrid-cell, +.datagrid-cell-group, +.datagrid-header-rownumber, +.datagrid-cell-rownumber { + margin: 0; + padding: 0 4px; + white-space: nowrap; + word-wrap: normal; + overflow: hidden; + height: 18px; + line-height: 18px; + font-size: 12px; +} +.datagrid-header .datagrid-cell { + height: auto; +} +.datagrid-header .datagrid-cell span { + font-size: 12px; +} +.datagrid-cell-group { + text-align: center; + text-overflow: ellipsis; +} +.datagrid-header-rownumber, +.datagrid-cell-rownumber { + width: 30px; + text-align: center; + margin: 0; + padding: 0; +} +.datagrid-body { + margin: 0; + padding: 0; + overflow: auto; + zoom: 1; +} +.datagrid-view1 .datagrid-body-inner { + padding-bottom: 20px; +} +.datagrid-view1 .datagrid-body { + overflow: hidden; +} +.datagrid-footer { + overflow: hidden; +} +.datagrid-footer-inner { + border-width: 1px 0 0 0; + border-style: solid; + width: 10000px; + float: left; +} +.datagrid-row-editing .datagrid-cell { + height: auto; +} +.datagrid-header-check, +.datagrid-cell-check { + padding: 0; + width: 27px; + height: 18px; + font-size: 1px; + text-align: center; + overflow: hidden; +} +.datagrid-header-check input, +.datagrid-cell-check input { + margin: 0; + padding: 0; + width: 15px; + height: 18px; +} +.datagrid-resize-proxy { + position: absolute; + width: 1px; + height: 10000px; + top: 0; + cursor: e-resize; + display: none; +} +.datagrid-body .datagrid-editable { + margin: 0; + padding: 0; +} +.datagrid-body .datagrid-editable table { + width: 100%; + height: 100%; +} +.datagrid-body .datagrid-editable td { + border: 0; + margin: 0; + padding: 0; +} +.datagrid-view .datagrid-editable-input { + margin: 0; + padding: 2px 4px; + border: 1px solid #000; + font-size: 12px; + outline-style: none; + -moz-border-radius: 0 0 0 0; + -webkit-border-radius: 0 0 0 0; + border-radius: 0 0 0 0; +} +.datagrid-sort .datagrid-sort-icon { + display: inline; + padding: 0 13px 0 0; + background: url('images/datagrid_icons.png') no-repeat -64px center; +} +.datagrid-sort-desc .datagrid-sort-icon { + display: inline; + padding: 0 13px 0 0; + background: url('images/datagrid_icons.png') no-repeat -16px center; +} +.datagrid-sort-asc .datagrid-sort-icon { + display: inline; + padding: 0 13px 0 0; + background: url('images/datagrid_icons.png') no-repeat 0px center; +} +.datagrid-row-collapse { + background: url('images/datagrid_icons.png') no-repeat -48px center; +} +.datagrid-row-expand { + background: url('images/datagrid_icons.png') no-repeat -32px center; +} +.datagrid-mask-msg { + background: #666 url('images/loading.gif') no-repeat scroll 5px center; +} +.datagrid-header, +.datagrid-td-rownumber { + background-color: #444; + background: -webkit-linear-gradient(top,#4c4c4c 0,#3f3f3f 100%); + background: -moz-linear-gradient(top,#4c4c4c 0,#3f3f3f 100%); + background: -o-linear-gradient(top,#4c4c4c 0,#3f3f3f 100%); + background: linear-gradient(to bottom,#4c4c4c 0,#3f3f3f 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4c4c4c,endColorstr=#3f3f3f,GradientType=0); +} +.datagrid-cell-rownumber { + color: #fff; +} +.datagrid-resize-proxy { + background: #cccccc; +} +.datagrid-mask { + background: #000; +} +.datagrid-mask-msg { + border-color: #000; +} +.datagrid-toolbar, +.datagrid-pager { + background: #555; +} +.datagrid-header, +.datagrid-toolbar, +.datagrid-pager, +.datagrid-footer-inner { + border-color: #222; +} +.datagrid-header td, +.datagrid-body td, +.datagrid-footer td { + border-color: #222; +} +.datagrid-htable, +.datagrid-btable, +.datagrid-ftable { + color: #fff; + border-collapse: separate; +} +.datagrid-row-alt { + background: #555; +} +.datagrid-row-over, +.datagrid-header td.datagrid-header-over { + background: #777; + color: #fff; + cursor: default; +} +.datagrid-row-selected { + background: #0052A3; + color: #fff; +} +.datagrid-row-editing .textbox, +.datagrid-row-editing .textbox-text { + -moz-border-radius: 0 0 0 0; + -webkit-border-radius: 0 0 0 0; + border-radius: 0 0 0 0; +} +.propertygrid .datagrid-view1 .datagrid-body td { + padding-bottom: 1px; + border-width: 0 1px 0 0; +} +.propertygrid .datagrid-group { + height: 21px; + overflow: hidden; + border-width: 0 0 1px 0; + border-style: solid; +} +.propertygrid .datagrid-group span { + font-weight: bold; +} +.propertygrid .datagrid-view1 .datagrid-body td { + border-color: #222; +} +.propertygrid .datagrid-view1 .datagrid-group { + border-color: #3d3d3d; +} +.propertygrid .datagrid-view2 .datagrid-group { + border-color: #222; +} +.propertygrid .datagrid-group, +.propertygrid .datagrid-view1 .datagrid-body, +.propertygrid .datagrid-view1 .datagrid-row-over, +.propertygrid .datagrid-view1 .datagrid-row-selected { + background: #3d3d3d; +} +.datalist .datagrid-header { + border-width: 0; +} +.datalist .datagrid-group, +.m-list .m-list-group { + height: 25px; + line-height: 25px; + font-weight: bold; + overflow: hidden; + background-color: #444; + border-style: solid; + border-width: 0 0 1px 0; + border-color: #222; +} +.datalist .datagrid-group-expander { + display: none; +} +.datalist .datagrid-group-title { + padding: 0 4px; +} +.datalist .datagrid-btable { + width: 100%; + table-layout: fixed; +} +.datalist .datagrid-row td { + border-style: solid; + border-left-color: transparent; + border-right-color: transparent; + border-bottom-width: 0; +} +.datalist-lines .datagrid-row td { + border-bottom-width: 1px; +} +.datalist .datagrid-cell, +.m-list li { + width: auto; + height: auto; + padding: 2px 4px; + line-height: 18px; + position: relative; + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; +} +.datalist-link, +.m-list li>a { + display: block; + position: relative; + cursor: pointer; + color: #fff; + text-decoration: none; + overflow: hidden; + margin: -2px -4px; + padding: 2px 4px; + padding-right: 16px; + line-height: 18px; + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; +} +.datalist-link::after, +.m-list li>a::after { + position: absolute; + display: block; + width: 8px; + height: 8px; + content: ''; + right: 6px; + top: 50%; + margin-top: -4px; + border-style: solid; + border-width: 1px 1px 0 0; + -ms-transform: rotate(45deg); + -moz-transform: rotate(45deg); + -webkit-transform: rotate(45deg); + -o-transform: rotate(45deg); + transform: rotate(45deg); +} +.m-list { + margin: 0; + padding: 0; + list-style: none; +} +.m-list li { + border-style: solid; + border-width: 0 0 1px 0; + border-color: #222; +} +.m-list li>a:hover { + background: #777; + color: #fff; +} +.m-list .m-list-group { + padding: 0 4px; +} +.pagination { + zoom: 1; +} +.pagination table { + float: left; + height: 30px; +} +.pagination td { + border: 0; +} +.pagination-btn-separator { + float: left; + height: 24px; + border-left: 1px solid #444; + border-right: 1px solid #777; + margin: 3px 1px; +} +.pagination .pagination-num { + border-width: 1px; + border-style: solid; + margin: 0 2px; + padding: 2px; + width: 2em; + height: auto; +} +.pagination-page-list { + margin: 0px 6px; + padding: 1px 2px; + width: auto; + height: auto; + border-width: 1px; + border-style: solid; +} +.pagination-info { + float: right; + margin: 0 6px 0 0; + padding: 0; + height: 30px; + line-height: 30px; + font-size: 12px; +} +.pagination span { + font-size: 12px; +} +.pagination-link .l-btn-text { + width: 24px; + text-align: center; + margin: 0; +} +.pagination-first { + background: url('images/pagination_icons.png') no-repeat 0 center; +} +.pagination-prev { + background: url('images/pagination_icons.png') no-repeat -16px center; +} +.pagination-next { + background: url('images/pagination_icons.png') no-repeat -32px center; +} +.pagination-last { + background: url('images/pagination_icons.png') no-repeat -48px center; +} +.pagination-load { + background: url('images/pagination_icons.png') no-repeat -64px center; +} +.pagination-loading { + background: url('images/loading.gif') no-repeat center center; +} +.pagination-page-list, +.pagination .pagination-num { + border-color: #000; +} +.calendar { + border-width: 1px; + border-style: solid; + padding: 1px; + overflow: hidden; +} +.calendar table { + table-layout: fixed; + border-collapse: separate; + font-size: 12px; + width: 100%; + height: 100%; +} +.calendar table td, +.calendar table th { + font-size: 12px; +} +.calendar-noborder { + border: 0; +} +.calendar-header { + position: relative; + height: 22px; +} +.calendar-title { + text-align: center; + height: 22px; +} +.calendar-title span { + position: relative; + display: inline-block; + top: 2px; + padding: 0 3px; + height: 18px; + line-height: 18px; + font-size: 12px; + cursor: pointer; + -moz-border-radius: 5px 5px 5px 5px; + -webkit-border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; +} +.calendar-prevmonth, +.calendar-nextmonth, +.calendar-prevyear, +.calendar-nextyear { + position: absolute; + top: 50%; + margin-top: -7px; + width: 14px; + height: 14px; + cursor: pointer; + font-size: 1px; + -moz-border-radius: 5px 5px 5px 5px; + -webkit-border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; +} +.calendar-prevmonth { + left: 20px; + background: url('images/calendar_arrows.png') no-repeat -18px -2px; +} +.calendar-nextmonth { + right: 20px; + background: url('images/calendar_arrows.png') no-repeat -34px -2px; +} +.calendar-prevyear { + left: 3px; + background: url('images/calendar_arrows.png') no-repeat -1px -2px; +} +.calendar-nextyear { + right: 3px; + background: url('images/calendar_arrows.png') no-repeat -49px -2px; +} +.calendar-body { + position: relative; +} +.calendar-body th, +.calendar-body td { + text-align: center; +} +.calendar-day { + border: 0; + padding: 1px; + cursor: pointer; + -moz-border-radius: 5px 5px 5px 5px; + -webkit-border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; +} +.calendar-other-month { + opacity: 0.3; + filter: alpha(opacity=30); +} +.calendar-disabled { + opacity: 0.6; + filter: alpha(opacity=60); + cursor: default; +} +.calendar-menu { + position: absolute; + top: 0; + left: 0; + width: 180px; + height: 150px; + padding: 5px; + font-size: 12px; + display: none; + overflow: hidden; +} +.calendar-menu-year-inner { + text-align: center; + padding-bottom: 5px; +} +.calendar-menu-year { + width: 40px; + text-align: center; + border-width: 1px; + border-style: solid; + margin: 0; + padding: 2px; + font-weight: bold; + font-size: 12px; +} +.calendar-menu-prev, +.calendar-menu-next { + display: inline-block; + width: 21px; + height: 21px; + vertical-align: top; + cursor: pointer; + -moz-border-radius: 5px 5px 5px 5px; + -webkit-border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; +} +.calendar-menu-prev { + margin-right: 10px; + background: url('images/calendar_arrows.png') no-repeat 2px 2px; +} +.calendar-menu-next { + margin-left: 10px; + background: url('images/calendar_arrows.png') no-repeat -45px 2px; +} +.calendar-menu-month { + text-align: center; + cursor: pointer; + font-weight: bold; + -moz-border-radius: 5px 5px 5px 5px; + -webkit-border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; +} +.calendar-body th, +.calendar-menu-month { + color: #ffffff; +} +.calendar-day { + color: #fff; +} +.calendar-sunday { + color: #CC2222; +} +.calendar-saturday { + color: #00ee00; +} +.calendar-today { + color: #0000ff; +} +.calendar-menu-year { + border-color: #000; +} +.calendar { + border-color: #000; +} +.calendar-header { + background: #3d3d3d; +} +.calendar-body, +.calendar-menu { + background: #666; +} +.calendar-body th { + background: #555; + padding: 2px 0; +} +.calendar-hover, +.calendar-nav-hover, +.calendar-menu-hover { + background-color: #777; + color: #fff; +} +.calendar-hover { + border: 1px solid #555; + padding: 0; +} +.calendar-selected { + background-color: #0052A3; + color: #fff; + border: 1px solid #00458a; + padding: 0; +} +.datebox-calendar-inner { + height: 180px; +} +.datebox-button { + height: 18px; + padding: 2px 5px; + text-align: center; +} +.datebox-button a { + font-size: 12px; + font-weight: bold; + text-decoration: none; + opacity: 0.6; + filter: alpha(opacity=60); +} +.datebox-button a:hover { + opacity: 1.0; + filter: alpha(opacity=100); +} +.datebox-current, +.datebox-close { + float: left; +} +.datebox-close { + float: right; +} +.datebox .combo-arrow { + background-image: url('images/datebox_arrow.png'); + background-position: center center; +} +.datebox-button { + background-color: #555; +} +.datebox-button a { + color: #fff; +} +.numberbox { + border: 1px solid #000; + margin: 0; + padding: 0 2px; + vertical-align: middle; +} +.textbox { + padding: 0; +} +.spinner { + display: inline-block; + white-space: nowrap; + margin: 0; + padding: 0; + border-width: 1px; + border-style: solid; + overflow: hidden; + vertical-align: middle; +} +.spinner .spinner-text { + font-size: 12px; + border: 0px; + margin: 0; + padding: 0 2px; + vertical-align: baseline; +} +.spinner-arrow { + background-color: #3d3d3d; + display: inline-block; + overflow: hidden; + vertical-align: top; + margin: 0; + padding: 0; + opacity: 1.0; + filter: alpha(opacity=100); + width: 18px; +} +.spinner-arrow-up, +.spinner-arrow-down { + opacity: 0.6; + filter: alpha(opacity=60); + display: block; + font-size: 1px; + width: 18px; + height: 10px; + width: 100%; + height: 50%; + color: #fff; + outline-style: none; +} +.spinner-arrow-hover { + background-color: #777; + opacity: 1.0; + filter: alpha(opacity=100); +} +.spinner-arrow-up:hover, +.spinner-arrow-down:hover { + opacity: 1.0; + filter: alpha(opacity=100); + background-color: #777; +} +.textbox-icon-disabled .spinner-arrow-up:hover, +.textbox-icon-disabled .spinner-arrow-down:hover { + opacity: 0.6; + filter: alpha(opacity=60); + background-color: #3d3d3d; + cursor: default; +} +.spinner .textbox-icon-disabled { + opacity: 0.6; + filter: alpha(opacity=60); +} +.spinner-arrow-up { + background: url('images/spinner_arrows.png') no-repeat 1px center; +} +.spinner-arrow-down { + background: url('images/spinner_arrows.png') no-repeat -15px center; +} +.spinner { + border-color: #000; +} +.progressbar { + border-width: 1px; + border-style: solid; + -moz-border-radius: 5px 5px 5px 5px; + -webkit-border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; + overflow: hidden; + position: relative; +} +.progressbar-text { + text-align: center; + position: absolute; +} +.progressbar-value { + position: relative; + overflow: hidden; + width: 0; + -moz-border-radius: 5px 0 0 5px; + -webkit-border-radius: 5px 0 0 5px; + border-radius: 5px 0 0 5px; +} +.progressbar { + border-color: #000; +} +.progressbar-text { + color: #fff; + font-size: 12px; +} +.progressbar-value .progressbar-text { + background-color: #0052A3; + color: #fff; +} +.searchbox { + display: inline-block; + white-space: nowrap; + margin: 0; + padding: 0; + border-width: 1px; + border-style: solid; + overflow: hidden; + vertical-align: middle; +} +.searchbox .searchbox-text { + font-size: 12px; + border: 0; + margin: 0; + padding: 0 2px; + vertical-align: top; +} +.searchbox .searchbox-prompt { + font-size: 12px; + color: #ccc; +} +.searchbox-button { + width: 18px; + height: 20px; + overflow: hidden; + display: inline-block; + vertical-align: top; + cursor: pointer; + opacity: 0.6; + filter: alpha(opacity=60); +} +.searchbox-button-hover { + opacity: 1.0; + filter: alpha(opacity=100); +} +.searchbox .l-btn-plain { + border: 0; + padding: 0; + vertical-align: top; + opacity: 0.6; + filter: alpha(opacity=60); + -moz-border-radius: 0 0 0 0; + -webkit-border-radius: 0 0 0 0; + border-radius: 0 0 0 0; +} +.searchbox .l-btn-plain:hover { + border: 0; + padding: 0; + opacity: 1.0; + filter: alpha(opacity=100); + -moz-border-radius: 0 0 0 0; + -webkit-border-radius: 0 0 0 0; + border-radius: 0 0 0 0; +} +.searchbox a.m-btn-plain-active { + -moz-border-radius: 0 0 0 0; + -webkit-border-radius: 0 0 0 0; + border-radius: 0 0 0 0; +} +.searchbox .m-btn-active { + border-width: 0 1px 0 0; + -moz-border-radius: 0 0 0 0; + -webkit-border-radius: 0 0 0 0; + border-radius: 0 0 0 0; +} +.searchbox .textbox-button-right { + border-width: 0 0 0 1px; +} +.searchbox .textbox-button-left { + border-width: 0 1px 0 0; +} +.searchbox-button { + background: url('images/searchbox_button.png') no-repeat center center; +} +.searchbox { + border-color: #000; + background-color: #fff; +} +.searchbox .l-btn-plain { + background: #3d3d3d; +} +.searchbox .l-btn-plain-disabled, +.searchbox .l-btn-plain-disabled:hover { + opacity: 0.5; + filter: alpha(opacity=50); +} +.textbox-invalid { + border-color: #ffa8a8; + background-color: #fff3f3; +} +.slider-disabled { + opacity: 0.5; + filter: alpha(opacity=50); +} +.slider-h { + height: 22px; +} +.slider-v { + width: 22px; +} +.slider-inner { + position: relative; + height: 6px; + top: 7px; + border-width: 1px; + border-style: solid; + border-radius: 5px; +} +.slider-handle { + position: absolute; + display: block; + outline: none; + width: 20px; + height: 20px; + top: 50%; + margin-top: -10px; + margin-left: -10px; +} +.slider-tip { + position: absolute; + display: inline-block; + line-height: 12px; + font-size: 12px; + white-space: nowrap; + top: -22px; +} +.slider-rule { + position: relative; + top: 15px; +} +.slider-rule span { + position: absolute; + display: inline-block; + font-size: 0; + height: 5px; + border-width: 0 0 0 1px; + border-style: solid; +} +.slider-rulelabel { + position: relative; + top: 20px; +} +.slider-rulelabel span { + position: absolute; + display: inline-block; + font-size: 12px; +} +.slider-v .slider-inner { + width: 6px; + left: 7px; + top: 0; + float: left; +} +.slider-v .slider-handle { + left: 50%; + margin-top: -10px; +} +.slider-v .slider-tip { + left: -10px; + margin-top: -6px; +} +.slider-v .slider-rule { + float: left; + top: 0; + left: 16px; +} +.slider-v .slider-rule span { + width: 5px; + height: 'auto'; + border-left: 0; + border-width: 1px 0 0 0; + border-style: solid; +} +.slider-v .slider-rulelabel { + float: left; + top: 0; + left: 23px; +} +.slider-handle { + background: url('images/slider_handle.png') no-repeat; +} +.slider-inner { + border-color: #000; + background: #3d3d3d; +} +.slider-rule span { + border-color: #000; +} +.slider-rulelabel span { + color: #fff; +} +.menu { + position: absolute; + margin: 0; + padding: 2px; + border-width: 1px; + border-style: solid; + overflow: hidden; +} +.menu-inline { + position: relative; +} +.menu-item { + position: relative; + margin: 0; + padding: 0; + overflow: hidden; + white-space: nowrap; + cursor: pointer; + border-width: 1px; + border-style: solid; +} +.menu-text { + height: 20px; + line-height: 20px; + float: left; + padding-left: 28px; +} +.menu-icon { + position: absolute; + width: 16px; + height: 16px; + left: 2px; + top: 50%; + margin-top: -8px; +} +.menu-rightarrow { + position: absolute; + width: 16px; + height: 16px; + right: 0; + top: 50%; + margin-top: -8px; +} +.menu-line { + position: absolute; + left: 26px; + top: 0; + height: 2000px; + font-size: 1px; +} +.menu-sep { + margin: 3px 0px 3px 25px; + font-size: 1px; +} +.menu-noline .menu-line { + display: none; +} +.menu-noline .menu-sep { + margin-left: 0; + margin-right: 0; +} +.menu-active { + -moz-border-radius: 5px 5px 5px 5px; + -webkit-border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; +} +.menu-item-disabled { + opacity: 0.5; + filter: alpha(opacity=50); + cursor: default; +} +.menu-text, +.menu-text span { + font-size: 12px; +} +.menu-shadow { + position: absolute; + -moz-border-radius: 5px 5px 5px 5px; + -webkit-border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; + background: #777; + -moz-box-shadow: 2px 2px 3px #787878; + -webkit-box-shadow: 2px 2px 3px #787878; + box-shadow: 2px 2px 3px #787878; + filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2); +} +.menu-rightarrow { + background: url('images/menu_arrows.png') no-repeat -32px center; +} +.menu-line { + border-left: 1px solid #444; + border-right: 1px solid #777; +} +.menu-sep { + border-top: 1px solid #444; + border-bottom: 1px solid #777; +} +.menu { + background-color: #666; + border-color: #444; + color: #fff; +} +.menu-content { + background: #666; +} +.menu-item { + border-color: transparent; + _border-color: #666; +} +.menu-active { + border-color: #555; + color: #fff; + background: #777; +} +.menu-active-disabled { + border-color: transparent; + background: transparent; + color: #fff; +} +.m-btn-downarrow, +.s-btn-downarrow { + display: inline-block; + position: absolute; + width: 16px; + height: 16px; + font-size: 1px; + right: 0; + top: 50%; + margin-top: -8px; +} +.m-btn-active, +.s-btn-active { + background: #777; + color: #fff; + border: 1px solid #555; + filter: none; +} +.m-btn-plain-active, +.s-btn-plain-active { + background: transparent; + padding: 0; + border-width: 1px; + border-style: solid; + -moz-border-radius: 5px 5px 5px 5px; + -webkit-border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; +} +.m-btn .l-btn-left .l-btn-text { + margin-right: 20px; +} +.m-btn .l-btn-icon-right .l-btn-text { + margin-right: 40px; +} +.m-btn .l-btn-icon-right .l-btn-icon { + right: 20px; +} +.m-btn .l-btn-icon-top .l-btn-text { + margin-right: 4px; + margin-bottom: 14px; +} +.m-btn .l-btn-icon-bottom .l-btn-text { + margin-right: 4px; + margin-bottom: 34px; +} +.m-btn .l-btn-icon-bottom .l-btn-icon { + top: auto; + bottom: 20px; +} +.m-btn .l-btn-icon-top .m-btn-downarrow, +.m-btn .l-btn-icon-bottom .m-btn-downarrow { + top: auto; + bottom: 0px; + left: 50%; + margin-left: -8px; +} +.m-btn-line { + display: inline-block; + position: absolute; + font-size: 1px; + display: none; +} +.m-btn .l-btn-left .m-btn-line { + right: 0; + width: 16px; + height: 500px; + border-style: solid; + border-color: #cccccc; + border-width: 0 0 0 1px; +} +.m-btn .l-btn-icon-top .m-btn-line, +.m-btn .l-btn-icon-bottom .m-btn-line { + left: 0; + bottom: 0; + width: 500px; + height: 16px; + border-width: 1px 0 0 0; +} +.m-btn-large .l-btn-icon-right .l-btn-text { + margin-right: 56px; +} +.m-btn-large .l-btn-icon-bottom .l-btn-text { + margin-bottom: 50px; +} +.m-btn-downarrow, +.s-btn-downarrow { + background: url('images/menu_arrows.png') no-repeat 0 center; +} +.m-btn-plain-active, +.s-btn-plain-active { + border-color: #555; + background-color: #777; + color: #fff; +} +.s-btn:hover .m-btn-line, +.s-btn-active .m-btn-line, +.s-btn-plain-active .m-btn-line { + display: inline-block; +} +.l-btn:hover .s-btn-downarrow, +.s-btn-active .s-btn-downarrow, +.s-btn-plain-active .s-btn-downarrow { + border-style: solid; + border-color: #cccccc; + border-width: 0 0 0 1px; +} +.messager-body { + padding: 10px; + overflow: auto; +} +.messager-button { + text-align: center; + padding: 5px; +} +.messager-button .l-btn { + width: 70px; +} +.messager-icon { + float: left; + width: 32px; + height: 32px; + margin: 0 10px 10px 0; +} +.messager-error { + background: url('images/messager_icons.png') no-repeat scroll -64px 0; +} +.messager-info { + background: url('images/messager_icons.png') no-repeat scroll 0 0; +} +.messager-question { + background: url('images/messager_icons.png') no-repeat scroll -32px 0; +} +.messager-warning { + background: url('images/messager_icons.png') no-repeat scroll -96px 0; +} +.messager-progress { + padding: 10px; +} +.messager-p-msg { + margin-bottom: 5px; +} +.messager-body .messager-input { + width: 100%; + padding: 1px 0; + border: 1px solid #000; +} +.tree { + margin: 0; + padding: 0; + list-style-type: none; +} +.tree li { + white-space: nowrap; +} +.tree li ul { + list-style-type: none; + margin: 0; + padding: 0; +} +.tree-node { + height: 18px; + white-space: nowrap; + cursor: pointer; +} +.tree-hit { + cursor: pointer; +} +.tree-expanded, +.tree-collapsed, +.tree-folder, +.tree-file, +.tree-checkbox, +.tree-indent { + display: inline-block; + width: 16px; + height: 18px; + vertical-align: top; + overflow: hidden; +} +.tree-expanded { + background: url('images/tree_icons.png') no-repeat -18px 0px; +} +.tree-expanded-hover { + background: url('images/tree_icons.png') no-repeat -50px 0px; +} +.tree-collapsed { + background: url('images/tree_icons.png') no-repeat 0px 0px; +} +.tree-collapsed-hover { + background: url('images/tree_icons.png') no-repeat -32px 0px; +} +.tree-lines .tree-expanded, +.tree-lines .tree-root-first .tree-expanded { + background: url('images/tree_icons.png') no-repeat -144px 0; +} +.tree-lines .tree-collapsed, +.tree-lines .tree-root-first .tree-collapsed { + background: url('images/tree_icons.png') no-repeat -128px 0; +} +.tree-lines .tree-node-last .tree-expanded, +.tree-lines .tree-root-one .tree-expanded { + background: url('images/tree_icons.png') no-repeat -80px 0; +} +.tree-lines .tree-node-last .tree-collapsed, +.tree-lines .tree-root-one .tree-collapsed { + background: url('images/tree_icons.png') no-repeat -64px 0; +} +.tree-line { + background: url('images/tree_icons.png') no-repeat -176px 0; +} +.tree-join { + background: url('images/tree_icons.png') no-repeat -192px 0; +} +.tree-joinbottom { + background: url('images/tree_icons.png') no-repeat -160px 0; +} +.tree-folder { + background: url('images/tree_icons.png') no-repeat -208px 0; +} +.tree-folder-open { + background: url('images/tree_icons.png') no-repeat -224px 0; +} +.tree-file { + background: url('images/tree_icons.png') no-repeat -240px 0; +} +.tree-loading { + background: url('images/loading.gif') no-repeat center center; +} +.tree-checkbox0 { + background: url('images/tree_icons.png') no-repeat -208px -18px; +} +.tree-checkbox1 { + background: url('images/tree_icons.png') no-repeat -224px -18px; +} +.tree-checkbox2 { + background: url('images/tree_icons.png') no-repeat -240px -18px; +} +.tree-title { + font-size: 12px; + display: inline-block; + text-decoration: none; + vertical-align: top; + white-space: nowrap; + padding: 0 2px; + height: 18px; + line-height: 18px; +} +.tree-node-proxy { + font-size: 12px; + line-height: 20px; + padding: 0 2px 0 20px; + border-width: 1px; + border-style: solid; + z-index: 9900000; +} +.tree-dnd-icon { + display: inline-block; + position: absolute; + width: 16px; + height: 18px; + left: 2px; + top: 50%; + margin-top: -9px; +} +.tree-dnd-yes { + background: url('images/tree_icons.png') no-repeat -256px 0; +} +.tree-dnd-no { + background: url('images/tree_icons.png') no-repeat -256px -18px; +} +.tree-node-top { + border-top: 1px dotted red; +} +.tree-node-bottom { + border-bottom: 1px dotted red; +} +.tree-node-append .tree-title { + border: 1px dotted red; +} +.tree-editor { + border: 1px solid #ccc; + font-size: 12px; + height: 14px !important; + height: 18px; + line-height: 14px; + padding: 1px 2px; + width: 80px; + position: absolute; + top: 0; +} +.tree-node-proxy { + background-color: #666; + color: #fff; + border-color: #000; +} +.tree-node-hover { + background: #777; + color: #fff; +} +.tree-node-selected { + background: #0052A3; + color: #fff; +} +.tree-node-hidden { + display: none; +} +.validatebox-invalid { + border-color: #ffa8a8; + background-color: #fff3f3; + color: #000; +} +.tooltip { + position: absolute; + display: none; + z-index: 9900000; + outline: none; + opacity: 1; + filter: alpha(opacity=100); + padding: 5px; + border-width: 1px; + border-style: solid; + border-radius: 5px; + -moz-border-radius: 5px 5px 5px 5px; + -webkit-border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; +} +.tooltip-content { + font-size: 12px; +} +.tooltip-arrow-outer, +.tooltip-arrow { + position: absolute; + width: 0; + height: 0; + line-height: 0; + font-size: 0; + border-style: solid; + border-width: 6px; + border-color: transparent; + _border-color: tomato; + _filter: chroma(color=tomato); +} +.tooltip-arrow { + display: none \9; +} +.tooltip-right .tooltip-arrow-outer { + left: 0; + top: 50%; + margin: -6px 0 0 -13px; +} +.tooltip-right .tooltip-arrow { + left: 0; + top: 50%; + margin: -6px 0 0 -12px; +} +.tooltip-left .tooltip-arrow-outer { + right: 0; + top: 50%; + margin: -6px -13px 0 0; +} +.tooltip-left .tooltip-arrow { + right: 0; + top: 50%; + margin: -6px -12px 0 0; +} +.tooltip-top .tooltip-arrow-outer { + bottom: 0; + left: 50%; + margin: 0 0 -13px -6px; +} +.tooltip-top .tooltip-arrow { + bottom: 0; + left: 50%; + margin: 0 0 -12px -6px; +} +.tooltip-bottom .tooltip-arrow-outer { + top: 0; + left: 50%; + margin: -13px 0 0 -6px; +} +.tooltip-bottom .tooltip-arrow { + top: 0; + left: 50%; + margin: -12px 0 0 -6px; +} +.tooltip { + background-color: #666; + border-color: #000; + color: #fff; +} +.tooltip-right .tooltip-arrow-outer { + border-right-color: #000; +} +.tooltip-right .tooltip-arrow { + border-right-color: #666; +} +.tooltip-left .tooltip-arrow-outer { + border-left-color: #000; +} +.tooltip-left .tooltip-arrow { + border-left-color: #666; +} +.tooltip-top .tooltip-arrow-outer { + border-top-color: #000; +} +.tooltip-top .tooltip-arrow { + border-top-color: #666; +} +.tooltip-bottom .tooltip-arrow-outer { + border-bottom-color: #000; +} +.tooltip-bottom .tooltip-arrow { + border-bottom-color: #666; +} +.switchbutton { + text-decoration: none; + display: inline-block; + overflow: hidden; + vertical-align: middle; + margin: 0; + padding: 0; + cursor: pointer; + background: #555; + border: 1px solid #555; + -moz-border-radius: 5px 5px 5px 5px; + -webkit-border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; +} +.switchbutton-inner { + display: inline-block; + overflow: hidden; + position: relative; + top: -1px; + left: -1px; +} +.switchbutton-on, +.switchbutton-off, +.switchbutton-handle { + display: inline-block; + text-align: center; + height: 100%; + float: left; + font-size: 12px; + -moz-border-radius: 5px 5px 5px 5px; + -webkit-border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; +} +.switchbutton-on { + background: #0052A3; + color: #fff; +} +.switchbutton-off { + background-color: #666; + color: #fff; +} +.switchbutton-on, +.switchbutton-reversed .switchbutton-off { + -moz-border-radius: 5px 0 0 5px; + -webkit-border-radius: 5px 0 0 5px; + border-radius: 5px 0 0 5px; +} +.switchbutton-off, +.switchbutton-reversed .switchbutton-on { + -moz-border-radius: 0 5px 5px 0; + -webkit-border-radius: 0 5px 5px 0; + border-radius: 0 5px 5px 0; +} +.switchbutton-handle { + position: absolute; + top: 0; + left: 50%; + background-color: #666; + color: #fff; + border: 1px solid #555; + -moz-box-shadow: 0 0 3px 0 #555; + -webkit-box-shadow: 0 0 3px 0 #555; + box-shadow: 0 0 3px 0 #555; +} +.switchbutton-value { + position: absolute; + top: 0; + left: -5000px; +} +.switchbutton-disabled { + opacity: 0.5; + filter: alpha(opacity=50); +} +.switchbutton-disabled, +.switchbutton-readonly { + cursor: default; +} diff --git a/include/js/easyui-vilesci-theme/images/accordion_arrows.png b/include/js/easyui-vilesci-theme/images/accordion_arrows.png new file mode 100755 index 0000000000000000000000000000000000000000..45fd44aa30476e107428feeea74273a354d3b003 GIT binary patch literal 122 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYel%uDMV@SoVN1z5L3B> xDW~hhNx=}0EonJY9@lzK3(R79rLjPWf#H~1{zPk!fAK(V44$rjF6*2Ung9evL?JRtAPgomjiGH|9{f$n(B`$j zEeb&pg!EKZW!#K$4@xNm$yT6c41rc&wh}>_*7}p71!8&8673tn-QQiFh646*YwHT+ z)EV#dB}QIviTL0tB!=YS+5%Rf3nh>uG`~OIR&I9Pb&1#X>AvnQFNH)(9OKtKv|Z?jXgA8=g#}$o8PwWf~s)v4TOWbIh-FayvCIQ*!i4(A|Z*a`pRGU y`z_2`-mf|ief_$wXW7b|3Y(^xL#4%pFkRlNzMe3nx0Htf00005OC%H;f`~O(q$Q#t2<^v$A>fbmv%e#dKTwK=Ku{5lS|}<-`a#7b zzTCOnnT>at)D}AMFuOZ5&%EqFN(lyumd$2ASF6=;nM~%2?gqc@U=#|4PqkX@EBo-9 z7pD#bO_RUa>*faM`8;MYfVi$JnB-zcBFc6gjl$d!bF98Q!!!(Z1_R~P?e!pt#6CHJ9S&n_n&@=9 z%GP;!@Co4c*at+6vNz7o(6en^Q1%qHrc;1)9IRaz-$@S$Z-qdC^ds3X0NvQH;KS)D z-dh&rW&@X;1cS(45z)J&BVt+tv&GMVJ%!EiW) zLBGZW)#Z+gl-Lih&?>X3SS-S#ujQ;9JRXmIB7X)8`d6ETj)D#Q2+$s|<_b7-B9Xvq zwNfqlEp%y3$uY`h{Y$(Gn5@}sqEsq95lpAkFO5dyBmP6^H-51G4J|rN2Ujt<`2YX_ M07*qoM6N<$f3kcwMx!yWk;1b9CG_kXOx zmzFK*Ssi^NN-27((w?4M8@u`^_qP=9nfy4m{lwb6;U^wS@qDtp9?C45@HGEwayQ3S z%Ua=ZSB3W+c`gDw6;3c4*f@AGFEUxQKH4x2D*a5)78&qol`;+03qN((f|Me literal 0 HcmV?d00001 diff --git a/include/js/easyui-vilesci-theme/images/linkbutton_bg.png b/include/js/easyui-vilesci-theme/images/linkbutton_bg.png new file mode 100755 index 0000000000000000000000000000000000000000..fc66bd2cd24047b8377342365a1df3846327ecde GIT binary patch literal 1274 zcmVc6j2;SWMDuL>F^vlqEUI{oOgO!xNf*11TukM z6kTZ3V2qd3<~<$H&Lrt?SpXUxF5Zb^}(={r!EHE+$QMdH|XZ zSYbMyc0tQc3qbP$tG{U_Jyg>I(0srOscEGU?-T)4AzuS$_2J>6`+BJ50YDY<^>2vV z+uI880P2ui(hyHiPrK$)CkbHg=kD&V3^8pD z0v3QOB&8eT@87?rgaGPrb#+ySxU;jP=nkL`nZ_{0e*BD+1Tc5b&d$oLo}8R$90gF1 z^ij>~#>R%HIRNUB_kgpQ+Lg!80Gbb2saY8>1EBeUm7A3TegK*dSciv)Wqp0!h-3im z1+1f^qq4iZ+ZEMUS63~e0I+zh`2rwd0l@!F(!7sM%_`|&0+*B!z{1(u+A9BIU&~T- z2he=L>dmc7TLXZFkeTeCHMcE|qX51{z>0ZC=xGjss*FaXGOMX+dHf8Z8hL6ntGQ_z zF9V<&dwY9jh`D7czyqj4g3S=~)zFA!0980RI4DC*Ez1%L09D8%=OHF&S@Q*;3bRfe zeL2-ZzyeT(Av4`$>R3`j096>WH7BOELD3yR70%Dk%Mk4)1W=73OH{L_UgIc$YFu7k zmRaq`&NxK?Rk*skDzlhL4IV!OsLJ*Ab@{BRT^TO}pgQC6xO~R6G8o_oU?C)>`xlc2 zriH~zU-;g$PyPA_&X!OBSU6SIeB~eKNAhF&(fs&F|1n9<+Yj^2T+4Dj%UFjr zZ%rnX^7Qmn0ANwP308gILtaQfK0Z1j0Br`Wq<=~Ka+?BxW&>7kRtZ+q>C~wJXg6S` zW|cJ1%?d#C0V@Ue)T{uY>425ig?tTsczEc(0+M8_c7^t|!sm-1Nw(}#nnLr?FgGlc zY}ut0+w(d)Uk6FDWtY;*aCdjteIX>tmhA#o+8PqHNU~+SlrTfyKRaNHBx~Ch-FJ3& z%B(Y&NwStp{rH$6Yj{YqhR=Gk~Mtw_&K$#yeTBf z7JV~bCN(VwL$c|B^>Topn-X{+7;S!yV~2^ zBgv-iMkME}U;-COwrsbABDvwg!2wA&ZMWttf5^jTl5E*7V41=|@=Hu>NJ^O8(7b4p z&ChgC(LF5>Md#{+4LgS{%KA|H(Xv`l4P^KdiBKB*_;1&m|Q7!{|O$ k%vVK{T!hwqk^D0L0mO==@4IV9lK=n!07*qoM6N<$f|Ge;n*aa+ literal 0 HcmV?d00001 diff --git a/include/js/easyui-vilesci-theme/images/loading.gif b/include/js/easyui-vilesci-theme/images/loading.gif new file mode 100755 index 0000000000000000000000000000000000000000..68f01d04813c1f622810864a3aaa04b4a17ac8f9 GIT binary patch literal 1737 zcmaKsX;2e)7>CzDa{xjjy99|1A!tC(kfocDi)<1$AxHpOQ4k^l!Vx1W6x7<&|FYXU zqO4jEiU-!VR1p+Xj1?4-iuI_J;!&?!+ghg|JJad3U)pMGzcKxNeCM6tJnuX+uPvX@ zZY|=AHdxt2Xr2y*)5|c6#FSEuyJ+Y3Z&l z2hJWo`9;lJ$6wzSoW60tqkB|d$oiO*d-^85^ojn{*NR{MP*%{@H*#gihZ8BKyB68E z-MIbjgNNV0y5khpJ^Jv`51aR%={<4jhaVq5e*9D5+*hL)XCHn4{^d%hPu@?KpKbc=eN!D=XUjDmH#n{YHNS zHCX6BV)yn2CuTNujhN~V+`RKpyXO6^ht92eqhIIlQLfz6eeCnH_C7`NPNrw9ks366 z4xX9(`s~z=+1uX^ocZ$2_fBs=JihPfWYufOIuD&AU-@`>>qn~cy$1)T7CU!5z2(U8 z)9Kt9)l`f6?NU41j6XbXfR{OHwm|T4}&24tIf+!C-g~6cQfY2^n$?AT&ZW zgqm`}3-jS2NS6n=k;sr5Hv(Q%%n)qW0X|neWVBd;Ko}d(=u%?{O0-a>kSI}shOd9n z5top}%gUCf=>?tg;*;#7!^HOL3k$fMxd=O-6Y4@%u8LS)C1D_a?27R6^vcC+6tttL z)GmTahbyJB!xmcHL#ya8ZXyfRl)a!N0BJE0y3BBfAV5;#=K&Z2VkaKZ)?9`1h5P_% znt*b}%j1|#j`b|aQDx@~wA#$PYRN2xE6UO;;vE(@$&xww-s8fZ5HmJ(eJ*rQrDbaawDbrfe_8F(wq{ge?)qQG`aXV;r(*6EM|ESje;52aFmrX!f=Pw^2oGQX$1|o4yts|b_5@w_kNwtl{wDP#JGMvIp#!SYX?Wq9S&`&_ZwkgGH5CLB7DEGJ6=R4J~p3Z4i^A}hs=-uZeD zs92l6u@**R$~L()G{5N8*7cE5-q$SCo`q4|NSVF*+A7&xZnypm$EdXgf)E%(VJHFD zSgi(H!D!(;9Zcc#GrCCJh=RlvXBQ-hv4Vodse`a32ZUFWgP5ZhM5LeV(#D^H8p@Lg ztra5R32z@1rQv{6u&RZL5%Z@Ye{q|t#6aM_1hIrpl@)oH6}os*cbAQywa{5<`ekzW O1il%9bk82&KlvLjD^%40 literal 0 HcmV?d00001 diff --git a/include/js/easyui-vilesci-theme/images/menu_arrows.png b/include/js/easyui-vilesci-theme/images/menu_arrows.png new file mode 100755 index 0000000000000000000000000000000000000000..2a984941d6590c78d67ee68d2087d8cc88efbac6 GIT binary patch literal 134 zcmeAS@N?(olHy`uVBq!ia0vp^4nQox!3HFkJ+IURQof!pjv*Dd-d;V(%b>u);`l3H z>g53sy@tf+`c*Dhco^6|8Eg#8WENqsU-wu%RB=*I5D$X7F_Nb6Mw<&;$S;RV&B< literal 0 HcmV?d00001 diff --git a/include/js/easyui-vilesci-theme/images/messager_icons.png b/include/js/easyui-vilesci-theme/images/messager_icons.png new file mode 100755 index 0000000000000000000000000000000000000000..62c18c135860351063ebaabe8c0f4df7664b8f65 GIT binary patch literal 6116 zcmV4ipNH~GQlZq-E3cpkxw(Z%$u2@caXAbn6(}n&uLHV9 zeNxi1kd>9kQ0nnzI23^L1q<=Vn6aoDF%s3ohok!Aj~SQ$`x!2NI~x~v?M6;^e!bq; z(yQQH2Fglz{=N4)aWWYxXLE7&Y9;>o<2T&6UWHrL)n-B0%fq!al> zED?O^kKb{*@(M0j-NawFs_P!l&x5Wsy=;C-LD_2Cr$+B z%mHj|RV-S>@98`V;?`TeQT5tuFpQgkwCK3MjU2=Ia8%!VQb0jfRbQMvlUu*{%FZul z*Gp2(5g!~LhrI`mu{iYSiF~~fJP$_Teq5hp&=D_4mPFqP)bF>;RV)Phj>y;)76J+C zUjBw+Pw%?KuU!kcxdHC(DyU88NC?xX1EWWCB9IU&+qOmg-0x8T&d*0>rGgt(3JZV` z7xx@CtUvnT_d1tvz-bZnB^NHR<4wtx=sSGAxY^r`hVB1rRv?$E{$x-)Fe)8~L+|Ve z8TE$qMNB?9`ff-!hq5cTSOiouf@3of6c&HiX+Tkb>(y78OeU5Hc51fL8ag5}E(J=lGyh8qk97Jwwr6mcmOH~pcs z{ZYUk%0meJKHGY(VY!oZsN-8;rXppImH-+?cddEOU*=taVXX;1q%Fey7;& z=F;GN`DHE%p{KIp=N}~EGW)jwq>8E2jpVcQiF_iN1Rx<@uay8vKKIuIK*@ogJy`^a z0>?s*qkihX!oW2vA%Lks^tHgk(n>$?n(v1DeuGaLGNswE5g^zn9vsnZ=+2`u~kwiWv5INS=`Im31M-s&s z-}^v$ei>dK=80EE?t#*7E|jOg#1pUDVA6I6BVh~Q_RMc9eR2NFSf$s`mND7aK61aPaJ z5P-G7v&M2TV894Wn6&-g?~!z-5ZO6-T=(_lOX3N1UJ|=9Y~k#Sf1$^4XDFTK zKavmknc%QWrF1UzurWAT;hF;pwys%aN|lN9t4v6QQaBU zS5*NV4|)cVJ@Gx_V$*R?b)RBAH}{+|t|g(ej#Hb+(>q)CF-N}Pat&l35&+?3W;twr zaKY)M49MuG5j)2}x&NjK`7{6&Mkn^+G(et*~p*dI{2}J5cUA{+ySJtu!-Wub{*IoTnIRRJzA_boPa3iM!eI`%biy*%z zx!^MPg{Ncd{xJCZ_!&z=CKKf)NQp?k53cKm9b;KhYfSyFBhm0Qvd(knXR(q!+^N2}jUepB8y!+?z(Z6v8xHFLZcgCSDn^0@g!T;>n&iP+APZ zPg_IP0iQ-bk(_<8+6X#NpHD8n#UeOxG7n$Ou;+CGa->lJCZwBU>Z%ZQ9_EYQGvYCS zb3D7-!6U9l03sP)8tlqM6Y=DFf)qhg@t-&tl?mTt$=K|&4KdO2ssOrnV*yYC$k^T? z>i(g#XHhMLPB>9ez#`BSFWW@^tj|7U@@0R|j0_x~JsVZco1;Jof!u#eAW|g7Ga*Nk(3#}L2*uv`@K9{&}TI~0z=_*swgh0B6#=RPcd`WU8ca1@C3C4Xf;|N;j%3S zuzE)f8og=@<*`NT44|U}l%_WL!TAIWz?67GYMBayCIBh{At^<8qrVLg2m_;1xCBs* z){`$ITn{2MIK2{)IaS=I{$m#H<>-I-%`Gf~&ld+7`w~)1YeYcpu=G+EfYbK9@E3Le zTv!x4lLerQ?ToL!LU>*tt_XigQt3UV0uf%Sk)I;kKa3fR-NN;HJRTih$V#{EP(p{dec9If%ipss2u&;)R3Pe-(DwG64LS-2|!M8&5gtGKdG z{gyGVujhn+eCPz_g^fHDpy}YkEwQx(AW7GQu95qRd_o87(XiX-iGZ*KL?mXi08ELe z*eBxT(Nqu=^=<*Y}O2!g82BRO<4eh z4dT0J%&@tuWn*%GQCjWVuR8xJST%TG9RH1>Z@;3g42pr_MO7&8z4IC7&G)-I0ffe6 zFgYXueeI?r5lZcxOE8LH(AT@vbpV|JC?WLZliTG{w&TuMBQWti3!qKcPw}JuPF|p) zGC%_~B2^MDT`SwBpld7KQ=t4~DXhnbV|~Ci#GkKA{HYQ!s7=@P0$93iCA*Z|$tfTP zag`E}Kdw5we}ANwm)8Vsp5b0`HCAVpaguNB+Z!blGMC$|yo_vH%ED0F(ff4kK{&9sYfS;V*G5?3fNcv|lj%5-7MRnPePcq242Ccp) zzWsI`5l~zI-WdC077_o@Lo5IyULrya6p8%9k30f@an1UL7ep=hzAZUr=a#7M&l2Qb z{XgT#|MS7k#OJ!A!y^MZ1w7V0X`B(z0@0sEY6^7gJ|0V#@4vkOypP22QZ232S*qU> zJfO2609oVdA5Bh=)Bf@Lc4Ss14ksAkbFvUtua0B^?D;j0#{qF!6}KhZ6f_o~nm>MZ zjIq8;!Yv^p=Q;~uTRd}h;G-O1walZw-WIZGUf>h@4d$&FeO|sh`a#>c#$t_U@kQ72=fM+rE-HrH<^^{E3Y-o_=W-Rc@o5r~Wy${K)P5kXZi9z=#_kZW$g~^krVUL#&j)}paQ3OPoF1GdL6N!Fyb||}c z&1?e1I5}}2OQ6`_C&+hi)QD4n1h9U+qeWs$Qd+S9IR1&yvc`ZG?L_p8tvh4d=palS z+Cz0ekzb^xfDpmWJXI9VYhJ_iudKAZWlVE%uM-(8g2S=-OroB6>1Y|_G!8H)06H(p z4lPvM!MV4%O~<{l7x+FK52vA1pBd=+?@2rjq#3{_?@%rU6wg$r^~CE*m+mHP*q@E* zcE@=jNJ7w)eY^k+Ixmkt@#Xj>_zc$WOTg%Fe#G3l^LR-(%(@3VlU!*Ofq-5Bbd6R6 zX+g+R3CO;31-or+xvyFB1?e7|0Je+wZNxakk^o9`*QxHOXfIOTPi|&{wG{aDKOMwp z7s1EzX*B@~G!!>hr-ULku4k*~I=?sx>((8#oB|s>!{B)|oDUr{7NZtLSwUnB8EwkcHd&tjurEao~N!N-G#!FiJlKPM0)W&yG; zOY&shmgIjob}W3NqAZfHpCWD&(?a<@K^jN^6#Yaz!A`VWw{DHin}0S-N=51us{7N) z#Vu6#OM;730jyovUVL^s68)N}2~eaH0qqnD+{kFaf{`hZlXK3z2xuvI#jfLU^$W*t z;Y4yPjo8fz;K=k)@hqa^?5BdKsYcnWjePT=v*!_c+w zM7V6*Z`>86hc=eE9p)sEA~1Ee-rfKF)Rou&d0(K@96V~h7~ZF@))GKK)-48+zcpCY zeeWnN+!2ocBgb+4A3qkx;!9q(oTp_Z0)LHgS<9*Y&8Sgk7kOxAaAxRG;}}4mr*(t% zHa5oZqSz<$cM7;_BCrwY(4hmiZmqj>SIhkcP1N|$Ra9sMQyDnv+YApYA8|jf{{>1- zKS}}GB%;sfszQ3@)$!Q4@mI?!Ku_-2`$WQdUj*C^#dEzpdiJVO0I8MW(LSyGDKEOA z&EQaU`6_`y?S|dgW7(c8WAyJ$xe52kB943_fBr8gIr^#g+bnRZ^|%;q2>Av?un0DK zg>apw`%~T4$GD94e$&;}zbD?=iM9iMc{;c^xvCcN`%-RTceHS1z*#1L(bfb+(2} zbL^OWc7J{|HU5drObz-Z5TqX8(XuA`b9H?(we&z2!0;%l)7A4Yb(sif=Rn+cYuM4% z4-;1T8q;8-Ujj!s)o&>V5&)$G5idc+Zx2%)Z@)L5vBEnJqn7SP^A|_3^G8lt4sX9u zvk!!DDH6o|yu%yc*n4pr5P4L$X~&OZd{?-EBc0q%AhM+}s03^eFNU)a-dew8qw6Qz z@58{)zh>vtw2wA`OrH<*7ozaj>hn&`wcg#j;Y310EmFz(rsT`feL%l{yh5lK%l;lc zn0Ru&opv0d)&C_+meu(mltnkjg(wBrk{SXPt(ZI``FastRE#Tr?EVs^wooK4TdAvq zDXK`eujzv4Ut4|q6d-c8dj#-q-30qXJT@RP5a?kGB9+KpdnlC&r>OTlRmqMgvCuW@ z_l4b2c73x>L(r+`XiWQVJq`wh^Mfb1Tl}CTpr>|bE_Z>Ay$_SP@)s5Ky(_&FcqC8J zPK1*Pyb`aly@6HRwO|Gko#Ycx>CYg9m-44}!>-?{l450IpiSCir&g zViW*5pU&;mL6R?H{z(7+M)E0D9CYLpYz3MLyxqGG_WRWym6v4NpvFxyM*p#^(dUa*7_-Ek%Yy_9Ly)~SvVvi^KaHdQo$>4N(nkyNu+{s#;WK#jLf-TV zi%7WZ-7l)oG)SY(nsGC2@zs1M7Q+IUKrRtSmXY+88u8SALv#PU z@4m0|P)J2w2Na)Ba4A+0XJ{@Q-NZ;_4WX(4I$O!@U@P7YT<~Qlbtf>rE>J3xaA?r-5JSGa1$c=VI0df1?0)#a+cRk3?AY zn!t6QM)}mAR{8>iqWFQ6`*}i{NFyQqvSSx-+}O;s#iW@FF>S#b76Q55ImEyMpkx?1 zWdT0^Xb_L`iTJ=@gSg(`?bETfe{*yH^5n573{(X`L=kCb-K-_Rptqjk?cmmp zC*as2AaL6dbugG|Aq7}ajd3+b?epp2!RYD2cl;uT#2|n6MfIHK^(%dnu=zwO=Il&n0gyoMhj{%xei|~AN!PpC&O{K7 zy7zWwh_}@+L?gfJYhB^6b{#U$=G6Jyile$9@34ZRAl0E)qcy~6(AqcRq^lMDIIR=D zA2$mAE`9hMT{G>k2Yv7FC)Cfco!1jho|uK;poIJ9Y0usuCY%O)I}v!ttqJjTZnpSr zcP;kG`Sx}WIFn&M5la)NB7L8NtOE)QA@7i7oYRCtg#RU`i>tE-?`>+7wJsRTF zZl&Il;iHPdcE;;y)^ZNocbs-_;{c04C`rl?gR)KNJ$@4>0tvvZHh0orCbulT#ax#_r5?!&GEF%OHcePw_U-5*t@-#r`Hkm z{@2&A?lzXUaqA1#-N&L=k1u%&_;{XKtbAL0?o7LV}O;_fHn3fykv;@7Aq5*LFJ6dpbX5@>H(%M~{XeC+FV(!O_tf q*!=TRhMQYZy@Oouu{+c_4g7y7m@TUq;8eW;0000P2Jv3>80t+5#NSCz>DdY1?+6=lRq-0N)F#H;wIQi`C_sJ!SVT`Wft}8_wH~Q%XA*9t9fT|c lGy-mR literal 0 HcmV?d00001 diff --git a/include/js/easyui-vilesci-theme/images/panel_tools.png b/include/js/easyui-vilesci-theme/images/panel_tools.png new file mode 100755 index 0000000000000000000000000000000000000000..f97761eb393def3b5f61774142413e740fe8fe8b GIT binary patch literal 184 zcmeAS@N?(olHy`uVBq!ia0vp^20*O9!3HEluKbn(QuUrLjv*Dd-p+93Yfuni{`r6T z$48CLf{EOzXU|M@xy0GMavBpu(5ti8zb3QZ+Tfp^siO37?WI*8%sM?7u5w1XttgAw z*Z5axHOr-aZj1~Mw;UHx3vIVCg!0FXpSG5`Po literal 0 HcmV?d00001 diff --git a/include/js/easyui-vilesci-theme/images/searchbox_button.png b/include/js/easyui-vilesci-theme/images/searchbox_button.png new file mode 100755 index 0000000000000000000000000000000000000000..6dd1931589b453f6cc9772fd1851d8705d6b6631 GIT binary patch literal 813 zcmV+|1JeA7P)lXvaa)1B=8vtU6i;3jw7+Lm8D5$Z@i10EnF)=bcefw4K z$^E-CUfjQG`svfBbfD6|R#sLFj6lo3FG$G6@;ee>>~6i|H^5OY8c00W#fi<*1vzh{0&qu3dB`V0{{XDY`}(1n>S9M(9!zw#!&`A z#;*+0{6GVMSeWGp!`o{o8NPge#o%jgs54WT$qnQYpsyGNpauX05F;oJfZ`Pdw6!$j zynTH0RMa&!n3$Pa9zVGEY{&L(3qnPBl_DG6<9Xk0`Fl3`LiD4@pH{vDsxJWQ1qdJp zEJ>M}osCtQlY?CgW>F{;gVK#SmgoOZnEn5J%EtIXaWQXAO>Rdf)WFR;gt~f zXaA3z{{L{q=l48y!32yJ3i0hJ2BS=^}@sXzH{F9Iq&OW375;I7CG-}Vr|aF#l<(fySwu2>`YdxRW*W0f#2un=W5Jmvoe`XCK%I_Y++#`fwE+= zSd{sEULGDE%A=#BOW<6gP*6VfMa^fr8qe`5w%)P0a^Y9WGTw! zvI^|$>l@1Da^Ke1*T3RdY7KqM%gaBb(P+oP!GW;b?ZRfW3Bxc1H@GCaHK#XhZ*Lc= zRBC@>V&W#x&B5%(#>OW5`};d6I5Qw218EG_q@1gtr!Nl*v7yn?(MPMRt4SNy%--JK zanm#f^bw^}Nr7b(EUg}TUi(2;)deX10lAo=83+VA(QksJI6(zwptET-y~avN=J9w$ zI2`W5lG|aOkjY7(&!@;Jx*nUA>~J`Q)9L&(G8y=g$3a4YgD7z)5>gXQNKhw=uR0zF z#jHruh)gDv=bj|2ZES4(fEM?I!JyKqo=}sj-fBYTcDt4KXq)eFQH}wW`vh%Mla}#@ z@Mb`C)x@YkK{xd2>8ZLg+E!Lps$Q@6DY-~!0=Gs+Mm~_JnW1EbX2uxClEdN>Y@I78 z=ke_9?7sX@o0*x}M{JB77MIXj_MmNE%+1Xe{*{crh)9={dR(U;y-{jrxUXmG%Gt002ovPDHLkV1hy(sXhPz literal 0 HcmV?d00001 diff --git a/include/js/easyui-vilesci-theme/images/spinner_arrows.png b/include/js/easyui-vilesci-theme/images/spinner_arrows.png new file mode 100755 index 0000000000000000000000000000000000000000..25ee848d772e71e591fdf4e4d07409b94e58fc92 GIT binary patch literal 112 zcmeAS@N?(olHy`uVBq!ia0vp^3P3Et!3HGD8EPYel)0yiV@SoV}ezCPaUb%ArQw1m64&Nzopr0N{TzyZ`_I literal 0 HcmV?d00001 diff --git a/include/js/easyui-vilesci-theme/images/tree_icons.png b/include/js/easyui-vilesci-theme/images/tree_icons.png new file mode 100755 index 0000000000000000000000000000000000000000..2b4fd2025c7588c84df27d89466b470e273f5c06 GIT binary patch literal 3086 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 literal 0 HcmV?d00001 diff --git a/include/js/easyui-vilesci-theme/images/validatebox_warning.png b/include/js/easyui-vilesci-theme/images/validatebox_warning.png new file mode 100755 index 0000000000000000000000000000000000000000..2b3d4f05babf3f82b146350e96570fac02075de0 GIT binary patch literal 921 zcmV;K17`e*P)nRv1_mBsMY*-M^XCf)eflW5 z|MC^)Hw+AW{sHCCF+cz@{fF8J!+#-kxoSv=7^|!zgOQUngSQ}mDo|J)n+pH}hzZ#= zr~y18$_m-?9v%$;?mu8);}>9vFgFvDXJDwrW&l6{p}625M66yTFhGz^K$w9^O$BHi zFN2Ym7DIple*#cW4BY^L0Al(Jbv6k9U|^6IQBp{hx3XdQ&CJ4Z_|YSVr@XujY(PVT zlok1<85nBO4FCurumK>O|A07*jFlSRUcxLAQVcIR*co#3@)&jj4Pj7KXRri%#h;fa z4ya5O*#Lk5Vq!q}T~=CGH(uV-hJk^fkAYoGjN#AMuMF($>N=giWG}IXse|=+c=i>7HEg>%*E%fLD!-uy|85n^6W?^Dt(9zXp5EB&z+w>_knBmdiKMbzi z?A!`WOl>e100a=&05*1xZdFls?*HtZ48H?o7=HW%ivIu45E2~BASWx!@DIpmv9e}h zaPwji|L}pqor@y`=yxrU0RRES^qYY}O;TRcU+DKIhL4`%3_nyf8U6tS<<-ZJ40D$( zWjJ%`G6NIPHNP2{7am*Fp% z{>ShK#0G`~kjd~57_BU