├── .gitignore ├── Common ├── Comm │ ├── fields.php │ └── function.php ├── common.php ├── dbBackup.class.php └── recaptchalib.php ├── Conf ├── columns.php ├── config.php ├── page.sql ├── pill.php ├── query.php └── system.php ├── Data └── commlib.sql ├── Denglu.php ├── Lib ├── Action │ └── Comm │ │ ├── APIAction.class.php │ │ ├── AccountAction.class.php │ │ ├── ArticleAction.class.php │ │ ├── AuthorityAction.class.php │ │ ├── BroadbandAction.class.php │ │ ├── CodeAction.class.php │ │ ├── CommAction.class.php │ │ ├── CronAction.class.php │ │ ├── DatabaseAction.class.php │ │ ├── EmptyAction.class.php │ │ ├── IndexAction.class.php │ │ ├── ListAction.class.php │ │ ├── LogAction.class.php │ │ ├── LoginAction.class.php │ │ ├── MenuAction.class.php │ │ ├── Module_referAction.class.php │ │ ├── UserAction.class.php │ │ └── User_roleAction.class.php ├── Behavior │ └── Comm │ │ ├── Action.class.php │ │ └── AuthCheckBehavior.class.php ├── Model │ └── Comm │ │ ├── AccountModel.class.php │ │ ├── AtestModel.class.php │ │ ├── BroadbandModel.class.php │ │ ├── CronModel.class.php │ │ ├── LogModel.class.php │ │ ├── Module_referModel.class.php │ │ ├── UserModel.class.php │ │ └── User_roleModel.class.php └── Widget │ ├── Menu │ ├── left.html │ ├── tab.html │ └── top.html │ ├── MenuWidget.class.php │ ├── NavWidget.class.php │ ├── Parameter │ └── Parameter.html │ ├── ParameterWidget.class.php │ ├── Sidebar │ └── Sidebar.html │ └── SidebarWidget.class.php ├── Public └── include │ ├── bootstrap-datetimepicker │ ├── css │ │ └── datepicker.css │ └── js │ │ └── bootstrap-datepicker.js │ ├── bootstrap-modal │ ├── css │ │ └── bootstrap-modal.css │ ├── img │ │ └── ajax-loader.gif │ └── js │ │ ├── bootstrap-modal.js │ │ └── bootstrap-modalmanager.js │ ├── bootstrap │ ├── css │ │ ├── bootstrap-fullcalendar.css │ │ ├── bootstrap-ie6.less │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ └── js │ │ ├── bootstrap-alert.js │ │ ├── bootstrap-button.js │ │ ├── bootstrap-carousel.js │ │ ├── bootstrap-collapse.js │ │ ├── bootstrap-dropdown.js │ │ ├── bootstrap-modal.js │ │ ├── bootstrap-popover.js │ │ ├── bootstrap-scrollspy.js │ │ ├── bootstrap-tab.js │ │ ├── bootstrap-tooltip.js │ │ ├── bootstrap-typeahead.js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ ├── ckeditor │ ├── build-config.js │ ├── ckeditor.js │ ├── config.js │ ├── contents.css │ ├── lang │ │ ├── en.js │ │ └── zh-cn.js │ ├── plugins │ │ ├── a11yhelp │ │ │ └── dialogs │ │ │ │ ├── a11yhelp.js │ │ │ │ └── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── it.js │ │ │ │ ├── mk.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── ro.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── vi.js │ │ │ │ └── zh-cn.js │ │ ├── about │ │ │ └── dialogs │ │ │ │ ├── about.js │ │ │ │ └── logo_ckeditor.png │ │ ├── clipboard │ │ │ └── dialogs │ │ │ │ └── paste.js │ │ ├── colordialog │ │ │ └── dialogs │ │ │ │ └── colordialog.js │ │ ├── dialog │ │ │ └── dialogDefinition.js │ │ ├── div │ │ │ └── dialogs │ │ │ │ └── div.js │ │ ├── fakeobjects │ │ │ └── images │ │ │ │ └── spacer.gif │ │ ├── find │ │ │ └── dialogs │ │ │ │ └── find.js │ │ ├── flash │ │ │ ├── dialogs │ │ │ │ └── flash.js │ │ │ └── images │ │ │ │ └── placeholder.png │ │ ├── forms │ │ │ ├── dialogs │ │ │ │ ├── button.js │ │ │ │ ├── checkbox.js │ │ │ │ ├── form.js │ │ │ │ ├── hiddenfield.js │ │ │ │ ├── radio.js │ │ │ │ ├── select.js │ │ │ │ ├── textarea.js │ │ │ │ └── textfield.js │ │ │ └── images │ │ │ │ └── hiddenfield.gif │ │ ├── icons.png │ │ ├── iframe │ │ │ ├── dialogs │ │ │ │ └── iframe.js │ │ │ └── images │ │ │ │ └── placeholder.png │ │ ├── image │ │ │ ├── dialogs │ │ │ │ └── image.js │ │ │ └── images │ │ │ │ └── noimage.png │ │ ├── link │ │ │ ├── dialogs │ │ │ │ ├── anchor.js │ │ │ │ └── link.js │ │ │ └── images │ │ │ │ └── anchor.png │ │ ├── liststyle │ │ │ └── dialogs │ │ │ │ └── liststyle.js │ │ ├── magicline │ │ │ └── images │ │ │ │ └── icon.png │ │ ├── pagebreak │ │ │ └── images │ │ │ │ └── pagebreak.gif │ │ ├── pastefromword │ │ │ └── filter │ │ │ │ └── default.js │ │ ├── preview │ │ │ └── preview.html │ │ ├── scayt │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── dialogs │ │ │ │ ├── options.js │ │ │ │ └── toolbar.css │ │ ├── showblocks │ │ │ └── images │ │ │ │ ├── block_address.png │ │ │ │ ├── block_blockquote.png │ │ │ │ ├── block_div.png │ │ │ │ ├── block_h1.png │ │ │ │ ├── block_h2.png │ │ │ │ ├── block_h3.png │ │ │ │ ├── block_h4.png │ │ │ │ ├── block_h5.png │ │ │ │ ├── block_h6.png │ │ │ │ ├── block_p.png │ │ │ │ └── block_pre.png │ │ ├── smiley │ │ │ ├── dialogs │ │ │ │ └── smiley.js │ │ │ └── images │ │ │ │ ├── angel_smile.gif │ │ │ │ ├── angry_smile.gif │ │ │ │ ├── broken_heart.gif │ │ │ │ ├── confused_smile.gif │ │ │ │ ├── cry_smile.gif │ │ │ │ ├── devil_smile.gif │ │ │ │ ├── embaressed_smile.gif │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ ├── envelope.gif │ │ │ │ ├── heart.gif │ │ │ │ ├── kiss.gif │ │ │ │ ├── lightbulb.gif │ │ │ │ ├── omg_smile.gif │ │ │ │ ├── regular_smile.gif │ │ │ │ ├── sad_smile.gif │ │ │ │ ├── shades_smile.gif │ │ │ │ ├── teeth_smile.gif │ │ │ │ ├── thumbs_down.gif │ │ │ │ ├── thumbs_up.gif │ │ │ │ ├── tongue_smile.gif │ │ │ │ ├── tounge_smile.gif │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ └── wink_smile.gif │ │ ├── specialchar │ │ │ └── dialogs │ │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── it.js │ │ │ │ ├── ku.js │ │ │ │ ├── lv.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── sk.js │ │ │ │ ├── sv.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ └── zh-cn.js │ │ │ │ └── specialchar.js │ │ ├── table │ │ │ └── dialogs │ │ │ │ └── table.js │ │ ├── tabletools │ │ │ └── dialogs │ │ │ │ └── tableCell.js │ │ ├── templates │ │ │ ├── dialogs │ │ │ │ ├── templates.css │ │ │ │ └── templates.js │ │ │ └── templates │ │ │ │ ├── default.js │ │ │ │ └── images │ │ │ │ ├── template1.gif │ │ │ │ ├── template2.gif │ │ │ │ └── template3.gif │ │ └── wsc │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── dialogs │ │ │ ├── ciframe.html │ │ │ ├── tmpFrameset.html │ │ │ ├── wsc.css │ │ │ └── wsc.js │ ├── skins │ │ └── moono │ │ │ ├── dialog.css │ │ │ ├── dialog_ie.css │ │ │ ├── dialog_ie7.css │ │ │ ├── dialog_ie8.css │ │ │ ├── dialog_iequirks.css │ │ │ ├── dialog_opera.css │ │ │ ├── editor.css │ │ │ ├── editor_gecko.css │ │ │ ├── editor_ie.css │ │ │ ├── editor_ie7.css │ │ │ ├── editor_ie8.css │ │ │ ├── editor_iequirks.css │ │ │ ├── icons.png │ │ │ ├── icons.png.r0 │ │ │ ├── icons.png.r209 │ │ │ ├── images │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ └── mini.png │ │ │ └── readme.md │ └── styles.js │ ├── ckplayer │ ├── 1.mp4 │ ├── assets │ │ ├── Preview.swf │ │ ├── adjustment.swf │ │ ├── buffer.swf │ │ ├── cklogo1.png │ │ ├── images_Fashf_on.png │ │ ├── images_Fashf_out.png │ │ ├── images_Fashr_on.png │ │ ├── images_Fashr_out.png │ │ ├── images_Full_on.png │ │ ├── images_Full_out.png │ │ ├── images_General_on.png │ │ ├── images_General_out.png │ │ ├── images_Mute_on.png │ │ ├── images_Mute_out.png │ │ ├── images_Pause_Scgedyke.png │ │ ├── images_Pause_Scgedyke_on.png │ │ ├── images_Pause_on.png │ │ ├── images_Pause_out.png │ │ ├── images_Play_on.png │ │ ├── images_Play_out.png │ │ ├── images_Schedule.png │ │ ├── images_Schedule_bg.png │ │ ├── images_Schedule_load.png │ │ ├── images_Schedule_play.png │ │ ├── images_Sound_on.png │ │ ├── images_Sound_out.png │ │ ├── images_Volume_Float.png │ │ ├── images_Volume_back.png │ │ ├── images_Volume_on.png │ │ ├── images_adv_skip.png │ │ ├── images_buttom_bg.png │ │ ├── images_close_adv.png │ │ ├── images_v_off.png │ │ ├── images_v_on.png │ │ ├── logo.swf │ │ ├── mylogo.swf │ │ ├── related.swf │ │ ├── right.swf │ │ ├── sch_lr.png │ │ └── share.swf │ ├── ckplayer.js │ ├── ckplayer.swf │ ├── ckplayer.txt │ ├── ckplayer.xml │ ├── expressInstall.swf │ ├── related.xml │ ├── share.xml │ └── share │ │ ├── feixin.png │ │ ├── google.png │ │ ├── kaixin001.png │ │ ├── msn.png │ │ ├── qq.png │ │ ├── qq2.png │ │ ├── qzone.png │ │ ├── rr.png │ │ ├── sina.png │ │ ├── sohu.png │ │ └── tianya.png │ ├── code-prettify │ ├── lang-apollo.js │ ├── lang-clj.js │ ├── lang-css.js │ ├── lang-go.js │ ├── lang-hs.js │ ├── lang-lisp.js │ ├── lang-lua.js │ ├── lang-ml.js │ ├── lang-n.js │ ├── lang-proto.js │ ├── lang-scala.js │ ├── lang-sql.js │ ├── lang-tex.js │ ├── lang-vb.js │ ├── lang-vhdl.js │ ├── lang-wiki.js │ ├── lang-xq.js │ ├── lang-yaml.js │ ├── prettify.css │ └── prettify.js │ ├── css │ ├── datepicker.css │ ├── fileuploader.css │ ├── fullcalendar.css │ ├── fullcalendar.print.css │ ├── jquery.fileupload-ui-noscript.css │ ├── jquery.fileupload-ui.css │ ├── style.css │ └── zTreeStyle.css │ ├── datatable │ ├── css │ │ ├── demo_page.css │ │ ├── demo_table.css │ │ ├── demo_table_jui.css │ │ ├── jquery.dataTables.css │ │ └── jquery.dataTables_themeroller.css │ ├── images │ │ ├── Sorting icons.psd │ │ ├── back_disabled.png │ │ ├── back_enabled.png │ │ ├── back_enabled_hover.png │ │ ├── favicon.ico │ │ ├── forward_disabled.png │ │ ├── forward_enabled.png │ │ ├── forward_enabled_hover.png │ │ ├── sort_asc.png │ │ ├── sort_asc_disabled.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ └── sort_desc_disabled.png │ └── js │ │ ├── dataTables.bootstrap.js │ │ ├── jquery.dataTables.js │ │ ├── jquery.dataTables.min.js │ │ └── jquery.js │ ├── highcharts │ ├── gfx │ │ └── vml-radial-gradient.png │ ├── graphics │ │ ├── skies.jpg │ │ ├── snow.png │ │ └── sun.png │ └── js │ │ ├── adapters │ │ ├── mootools-adapter.js │ │ ├── mootools-adapter.src.js │ │ ├── prototype-adapter.js │ │ └── prototype-adapter.src.js │ │ ├── highcharts-more.js │ │ ├── highcharts-more.src.js │ │ ├── highcharts.js │ │ ├── highcharts.src.js │ │ ├── modules │ │ ├── canvas-tools.js │ │ ├── canvas-tools.src.js │ │ ├── data.js │ │ ├── data.src.js │ │ ├── exporting.js │ │ └── exporting.src.js │ │ └── themes │ │ ├── dark-blue.js │ │ ├── dark-green.js │ │ ├── gray.js │ │ ├── grid.js │ │ └── skies.js │ ├── icheck │ ├── jquery.icheck.js │ ├── jquery.icheck.min.js │ └── skins │ │ ├── all.css │ │ ├── flat │ │ ├── _all.css │ │ ├── aero.css │ │ ├── aero.png │ │ ├── aero@2x.png │ │ ├── blue.css │ │ ├── blue.png │ │ ├── blue@2x.png │ │ ├── flat.css │ │ ├── flat.png │ │ ├── flat@2x.png │ │ ├── green.css │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── grey.css │ │ ├── grey.png │ │ ├── grey@2x.png │ │ ├── orange.css │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── pink.css │ │ ├── pink.png │ │ ├── pink@2x.png │ │ ├── purple.css │ │ ├── purple.png │ │ ├── purple@2x.png │ │ ├── red.css │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── yellow.css │ │ ├── yellow.png │ │ └── yellow@2x.png │ │ ├── futurico │ │ ├── futurico.css │ │ ├── futurico.png │ │ └── futurico@2x.png │ │ ├── line │ │ ├── _all.css │ │ ├── aero.css │ │ ├── blue.css │ │ ├── green.css │ │ ├── grey.css │ │ ├── line.css │ │ ├── line.png │ │ ├── line@2x.png │ │ ├── orange.css │ │ ├── pink.css │ │ ├── purple.css │ │ ├── red.css │ │ └── yellow.css │ │ ├── minimal │ │ ├── _all.css │ │ ├── aero.css │ │ ├── aero.png │ │ ├── aero@2x.png │ │ ├── blue.css │ │ ├── blue.png │ │ ├── blue@2x.png │ │ ├── green.css │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── grey.css │ │ ├── grey.png │ │ ├── grey@2x.png │ │ ├── minimal.css │ │ ├── minimal.png │ │ ├── minimal@2x.png │ │ ├── orange.css │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── pink.css │ │ ├── pink.png │ │ ├── pink@2x.png │ │ ├── purple.css │ │ ├── purple.png │ │ ├── purple@2x.png │ │ ├── red.css │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── yellow.css │ │ ├── yellow.png │ │ └── yellow@2x.png │ │ ├── polaris │ │ ├── polaris.css │ │ ├── polaris.png │ │ └── polaris@2x.png │ │ └── square │ │ ├── _all.css │ │ ├── aero.css │ │ ├── aero.png │ │ ├── aero@2x.png │ │ ├── blue.css │ │ ├── blue.png │ │ ├── blue@2x.png │ │ ├── green.css │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── grey.css │ │ ├── grey.png │ │ ├── grey@2x.png │ │ ├── orange.css │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── pink.css │ │ ├── pink.png │ │ ├── pink@2x.png │ │ ├── purple.css │ │ ├── purple.png │ │ ├── purple@2x.png │ │ ├── red.css │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── square.css │ │ ├── square.png │ │ ├── square@2x.png │ │ ├── yellow.css │ │ ├── yellow.png │ │ └── yellow@2x.png │ ├── img │ ├── 100x100.gif │ ├── 140x100.gif │ ├── 200x200.gif │ ├── 250x200.gif │ ├── 300x200.gif │ ├── 32x32.gif │ ├── 360x360.gif │ ├── 600x400.gif │ ├── 64x64.gif │ ├── footbg.png │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.png │ ├── guide.png │ ├── loadinfo.net.gif │ ├── loading.gif │ ├── loading1.gif │ ├── loadings.gif │ ├── progressbar.gif │ ├── title.gif │ └── twitter_web_sprite_bgs.png │ ├── jquery-validation │ └── js │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.form.js │ │ ├── jquery.metadata.js │ │ ├── jquery.mockjax.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ ├── js │ ├── adapters │ │ ├── mootools-adapter.js │ │ ├── mootools-adapter.src.js │ │ ├── prototype-adapter.js │ │ └── prototype-adapter.src.js │ ├── additional-methods.min.js │ ├── bootstrap-datepicker.js │ ├── comm.js │ ├── cors │ │ ├── jquery.postmessage-transport.js │ │ └── jquery.xdr-transport.js │ ├── fileuploader.js │ ├── fileuploader.min.js │ ├── fullcalendar.js │ ├── fullcalendar.min.js │ ├── gcal.js │ ├── get36.js │ ├── head.js │ ├── head.load.min.js │ ├── jquery-ui-1.8.23.custom.min.js │ ├── jquery.fileupload-fp.js │ ├── jquery.fileupload-ui.js │ ├── jquery.fileupload.js │ ├── jquery.form.js │ ├── jquery.iframe-transport.js │ ├── jquery.js │ ├── jquery.metadata.js │ ├── jquery.min.js │ ├── jquery.prettydate.js │ ├── jquery.validate.method.js │ ├── jquery.validate.min.js │ ├── light-table-filter.js │ ├── light-table-filter.min.js │ ├── loads.js │ ├── main.js │ ├── messages_zh.js │ ├── modules │ │ ├── canvas-tools.js │ │ ├── canvas-tools.src.js │ │ ├── data.js │ │ ├── data.src.js │ │ ├── exporting.js │ │ └── exporting.src.js │ ├── offlights.js │ ├── tag - 副本.js │ ├── tag.js │ ├── themes │ │ ├── dark-blue.js │ │ ├── dark-green.js │ │ ├── gray.js │ │ ├── grid.js │ │ └── skies.js │ ├── tree.js │ ├── tree1.js │ └── vendor │ │ └── jquery.ui.widget.js │ ├── syntaxhighlighter │ ├── index.html │ ├── scripts │ │ ├── shAutoloader.js │ │ ├── shBrushAS3.js │ │ ├── shBrushAppleScript.js │ │ ├── shBrushBash.js │ │ ├── shBrushCSharp.js │ │ ├── shBrushColdFusion.js │ │ ├── shBrushCpp.js │ │ ├── shBrushCss.js │ │ ├── shBrushDelphi.js │ │ ├── shBrushDiff.js │ │ ├── shBrushErlang.js │ │ ├── shBrushGroovy.js │ │ ├── shBrushJScript.js │ │ ├── shBrushJava.js │ │ ├── shBrushJavaFX.js │ │ ├── shBrushPerl.js │ │ ├── shBrushPhp.js │ │ ├── shBrushPlain.js │ │ ├── shBrushPowerShell.js │ │ ├── shBrushPython.js │ │ ├── shBrushRuby.js │ │ ├── shBrushSass.js │ │ ├── shBrushScala.js │ │ ├── shBrushSql.js │ │ ├── shBrushVb.js │ │ ├── shBrushXml.js │ │ ├── shCore.js │ │ └── shLegacy.js │ └── styles │ │ ├── shCore.css │ │ ├── shCoreDefault.css │ │ ├── shCoreDjango.css │ │ ├── shCoreEclipse.css │ │ ├── shCoreEmacs.css │ │ ├── shCoreFadeToGrey.css │ │ ├── shCoreMDUltra.css │ │ ├── shCoreMidnight.css │ │ ├── shCoreRDark.css │ │ ├── shThemeDefault.css │ │ ├── shThemeDjango.css │ │ ├── shThemeEclipse.css │ │ ├── shThemeEmacs.css │ │ ├── shThemeFadeToGrey.css │ │ ├── shThemeMDUltra.css │ │ ├── shThemeMidnight.css │ │ └── shThemeRDark.css │ ├── tablesorter │ ├── addons │ │ └── pager │ │ │ ├── icons │ │ │ ├── first.png │ │ │ ├── last.png │ │ │ ├── loading.gif │ │ │ ├── next.png │ │ │ └── prev.png │ │ │ ├── jquery.tablesorter.pager.css │ │ │ ├── jquery.tablesorter.pager.js │ │ │ └── jquery.tablesorter.pager.min.js │ ├── css │ │ ├── filter.formatter.css │ │ ├── images │ │ │ ├── black-asc.gif │ │ │ ├── black-desc.gif │ │ │ ├── black-unsorted.gif │ │ │ ├── dropbox-asc-hovered.png │ │ │ ├── dropbox-asc.png │ │ │ ├── dropbox-desc-hovered.png │ │ │ ├── dropbox-desc.png │ │ │ ├── green-asc.gif │ │ │ ├── green-desc.gif │ │ │ ├── green-header.gif │ │ │ ├── green-unsorted.gif │ │ │ ├── ice-asc.gif │ │ │ ├── ice-desc.gif │ │ │ ├── ice-unsorted.gif │ │ │ ├── white-asc.gif │ │ │ ├── white-desc.gif │ │ │ └── white-unsorted.gif │ │ ├── psd │ │ │ ├── green-asc.psd │ │ │ ├── green-desc.psd │ │ │ └── green-unsorted.psd │ │ ├── theme.black-ice.css │ │ ├── theme.blue.css │ │ ├── theme.bootstrap.css │ │ ├── theme.dark.css │ │ ├── theme.default.css │ │ ├── theme.dropbox.css │ │ ├── theme.green.css │ │ ├── theme.grey.css │ │ ├── theme.ice.css │ │ ├── theme.jui.css │ │ └── theme.less │ └── js │ │ ├── jquery.metadata.js │ │ ├── jquery.tablesorter.js │ │ ├── jquery.tablesorter.min.js │ │ ├── jquery.tablesorter.widgets-filter-formatter.js │ │ ├── jquery.tablesorter.widgets-filter-formatter.min.js │ │ ├── jquery.tablesorter.widgets.js │ │ ├── jquery.tablesorter.widgets.min.js │ │ ├── parsers │ │ ├── parser-date-iso8601.js │ │ ├── parser-date-month.js │ │ ├── parser-date-two-digit-year.js │ │ ├── parser-date-weekday.js │ │ ├── parser-date.js │ │ ├── parser-feet-inch-fraction.js │ │ ├── parser-ignore-articles.js │ │ ├── parser-input-select.js │ │ └── parser-metric.js │ │ └── widgets │ │ ├── widget-editable.js │ │ ├── widget-grouping.js │ │ ├── widget-repeatheaders.js │ │ └── widget-scroller.js │ └── zTree │ ├── css │ ├── demo.css │ └── zTreeStyle │ │ ├── img │ │ ├── diy │ │ │ ├── 1_close.png │ │ │ ├── 1_open.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── line_conn.gif │ │ ├── loading.gif │ │ ├── zTreeStandard.gif │ │ └── zTreeStandard.png │ │ └── zTreeStyle.css │ └── js │ ├── jquery-1.4.4.min.js │ ├── jquery.ztree.all-3.5.js │ ├── jquery.ztree.all-3.5.min.js │ ├── jquery.ztree.core-3.5.js │ ├── jquery.ztree.core-3.5.min.js │ ├── jquery.ztree.excheck-3.5.js │ ├── jquery.ztree.excheck-3.5.min.js │ ├── jquery.ztree.exedit-3.5.js │ ├── jquery.ztree.exedit-3.5.min.js │ ├── jquery.ztree.exhide-3.5.js │ └── jquery.ztree.exhide-3.5.min.js ├── README.md ├── ThinkPHP ├── Common │ ├── common.php │ ├── functions.php │ └── runtime.php ├── Conf │ ├── alias.php │ ├── convention.php │ ├── debug.php │ ├── mode.php │ └── tags.php ├── Extend │ ├── Action │ │ └── RestAction.class.php │ ├── Behavior │ │ ├── AgentCheckBehavior.class.php │ │ ├── BrowserCheckBehavior.class.php │ │ ├── CheckActionRouteBehavior.class.php │ │ ├── CheckLangBehavior.class.php │ │ ├── CronRunBehavior.class.php │ │ ├── FireShowPageTraceBehavior.class.php │ │ ├── RobotCheckBehavior.class.php │ │ └── UpgradeNoticeBehavior.class.php │ ├── Driver │ │ ├── Cache │ │ │ ├── CacheApachenote.class.php │ │ │ ├── CacheApc.class.php │ │ │ ├── CacheDb.class.php │ │ │ ├── CacheEaccelerator.class.php │ │ │ ├── CacheMemcache.class.php │ │ │ ├── CacheRedis.class.php │ │ │ ├── CacheShmop.class.php │ │ │ ├── CacheSqlite.class.php │ │ │ ├── CacheWincache.class.php │ │ │ └── CacheXcache.class.php │ │ ├── Db │ │ │ ├── DbIbase.class.php │ │ │ ├── DbMongo.class.php │ │ │ ├── DbMssql.class.php │ │ │ ├── DbOracle.class.php │ │ │ ├── DbPdo.class.php │ │ │ ├── DbPgsql.class.php │ │ │ ├── DbSqlite.class.php │ │ │ └── DbSqlsrv.class.php │ │ ├── Session │ │ │ └── SessionDb.class.php │ │ ├── TagLib │ │ │ └── TagLibHtml.class.php │ │ └── Template │ │ │ ├── TemplateEase.class.php │ │ │ ├── TemplateLite.class.php │ │ │ ├── TemplateMobile.class.php │ │ │ ├── TemplateSmart.class.php │ │ │ └── TemplateSmarty.class.php │ ├── Engine │ │ ├── Cluster │ │ │ ├── Common │ │ │ │ ├── functions.php │ │ │ │ └── runtime.php │ │ │ ├── Conf │ │ │ │ ├── alias.php │ │ │ │ └── tags.php │ │ │ ├── DefaultApp │ │ │ │ ├── Common │ │ │ │ │ └── index.html │ │ │ │ ├── Conf │ │ │ │ │ ├── config.php │ │ │ │ │ ├── config_bae.php │ │ │ │ │ └── config_sae.php │ │ │ │ ├── IO │ │ │ │ │ ├── ace.php │ │ │ │ │ ├── auto.php │ │ │ │ │ ├── bae.php │ │ │ │ │ ├── sae.php │ │ │ │ │ └── sample.php │ │ │ │ ├── Lang │ │ │ │ │ └── index.html │ │ │ │ ├── Lib │ │ │ │ │ ├── Action │ │ │ │ │ │ └── IndexAction.class.php │ │ │ │ │ ├── Behavior │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Model │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ORG │ │ │ │ │ │ ├── Image.class.php │ │ │ │ │ │ └── UploadFile.class.php │ │ │ │ │ └── Widget │ │ │ │ │ │ └── index.html │ │ │ │ └── Tpl │ │ │ │ │ └── index.html │ │ │ ├── Lib │ │ │ │ ├── Behavior │ │ │ │ │ ├── ParseTemplateBehavior.class.php │ │ │ │ │ ├── ReadHtmlCacheBehavior.class.php │ │ │ │ │ └── WriteHtmlCacheBehavior.class.php │ │ │ │ ├── Core │ │ │ │ │ ├── Action.class.php │ │ │ │ │ ├── Log.class.php │ │ │ │ │ ├── Think.class.php │ │ │ │ │ └── ThinkFS.class.php │ │ │ │ ├── Driver │ │ │ │ │ └── Cache │ │ │ │ │ │ └── CacheFile.class.php │ │ │ │ └── Template │ │ │ │ │ └── ThinkTemplate.class.php │ │ │ └── build_first_app.php │ │ ├── Sae.php │ │ ├── Sae │ │ │ ├── Common │ │ │ │ ├── common.php │ │ │ │ ├── functions.php │ │ │ │ ├── runtime.php │ │ │ │ ├── sae_common.php │ │ │ │ └── sae_functions.php │ │ │ ├── Conf │ │ │ │ ├── alias.php │ │ │ │ ├── convention_sae.php │ │ │ │ └── tags.php │ │ │ ├── DefaultApp │ │ │ │ ├── Common │ │ │ │ │ ├── common.php │ │ │ │ │ └── index.html │ │ │ │ ├── Conf │ │ │ │ │ ├── config.php │ │ │ │ │ └── config_sae.php │ │ │ │ ├── Lang │ │ │ │ │ └── index.html │ │ │ │ ├── Lib │ │ │ │ │ ├── Action │ │ │ │ │ │ └── IndexAction.class.php │ │ │ │ │ ├── Behavior │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── Model │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── ORG │ │ │ │ │ │ ├── Image.class.php │ │ │ │ │ │ ├── String.class.php │ │ │ │ │ │ └── UploadFile.class.php │ │ │ │ │ └── Widget │ │ │ │ │ │ └── index.html │ │ │ │ └── Tpl │ │ │ │ │ └── Index │ │ │ │ │ ├── index.html │ │ │ │ │ └── upload.html │ │ │ ├── Lib │ │ │ │ ├── Behavior │ │ │ │ │ ├── ParseTemplateBehavior.class.php │ │ │ │ │ ├── ReadHtmlCacheBehavior.class.php │ │ │ │ │ ├── UpgradeNoticeBehavior.class.php │ │ │ │ │ └── WriteHtmlCacheBehavior.class.php │ │ │ │ ├── Core │ │ │ │ │ ├── Action.class.php │ │ │ │ │ ├── Log.class.php │ │ │ │ │ ├── SaeMC.class.php │ │ │ │ │ ├── Sms.class.php │ │ │ │ │ └── Think.class.php │ │ │ │ ├── Driver │ │ │ │ │ └── Db │ │ │ │ │ │ ├── DbMysql.class.php │ │ │ │ │ │ └── DbMysqli.class.php │ │ │ │ ├── Extend │ │ │ │ │ ├── Driver │ │ │ │ │ │ └── Cache │ │ │ │ │ │ │ ├── CacheMemcache.class.php │ │ │ │ │ │ │ └── CacheMemcache_sae.class.php │ │ │ │ │ ├── Library │ │ │ │ │ │ └── ORG │ │ │ │ │ │ │ ├── Net │ │ │ │ │ │ │ └── UploadFile_sae.class.php │ │ │ │ │ │ │ └── Util │ │ │ │ │ │ │ └── Image_sae.class.php │ │ │ │ │ └── Tool │ │ │ │ │ │ └── SaeCacheBuilder │ │ │ │ │ │ ├── Think.class.php │ │ │ │ │ │ └── runtime.php │ │ │ │ └── Template │ │ │ │ │ └── ThinkTemplate.class.php │ │ │ ├── SaeImit.php │ │ │ ├── SaeImit │ │ │ │ ├── ImitSqlite.class.php │ │ │ │ ├── Lang.php │ │ │ │ ├── Memcache.class.php │ │ │ │ ├── SaeCounter.class.php │ │ │ │ ├── SaeFetchurl.class.php │ │ │ │ ├── SaeImage.class.php │ │ │ │ ├── SaeKV.class.php │ │ │ │ ├── SaeKVClient.class.php │ │ │ │ ├── SaeMail.class.php │ │ │ │ ├── SaeMysql.class.php │ │ │ │ ├── SaeObject.class.php │ │ │ │ ├── SaeRank.class.php │ │ │ │ ├── SaeStorage.class.php │ │ │ │ ├── SaeTaskQueue.class.php │ │ │ │ ├── config.php │ │ │ │ ├── defines.php │ │ │ │ ├── imit_functions.php │ │ │ │ ├── sae.db │ │ │ │ ├── sae.sql │ │ │ │ └── sae_functions.php │ │ │ └── build_first_app.php │ │ └── cluster.php │ ├── Function │ │ └── extend.php │ ├── Library │ │ └── ORG │ │ │ ├── Crypt │ │ │ ├── Base64.class.php │ │ │ ├── Crypt.class.php │ │ │ ├── Des.class.php │ │ │ ├── Hmac.class.php │ │ │ ├── Rsa.class.php │ │ │ └── Xxtea.class.php │ │ │ ├── Net │ │ │ ├── Http.class.php │ │ │ ├── IpLocation.class.php │ │ │ └── UploadFile.class.php │ │ │ └── Util │ │ │ ├── ArrayList.class.php │ │ │ ├── Authority.class.php │ │ │ ├── CodeSwitch.class.php │ │ │ ├── Cookie.class.php │ │ │ ├── Date.class.php │ │ │ ├── Debug.class.php │ │ │ ├── HtmlExtractor.class.php │ │ │ ├── Image.class.php │ │ │ ├── Image │ │ │ ├── Driver │ │ │ │ ├── GIF.class.php │ │ │ │ ├── ImageGd.class.php │ │ │ │ └── ImageImagick.class.php │ │ │ ├── ThinkImage.class.php │ │ │ └── readme.md │ │ │ ├── Input.class.php │ │ │ ├── Page.class.php │ │ │ ├── RBAC.class.php │ │ │ ├── Session.class.php │ │ │ ├── Socket.class.php │ │ │ ├── Stack.class.php │ │ │ └── String.class.php │ ├── Mode │ │ ├── Amf │ │ │ ├── Action.class.php │ │ │ ├── App.class.php │ │ │ ├── Db.class.php │ │ │ └── Model.class.php │ │ ├── Cli │ │ │ ├── Action.class.php │ │ │ ├── App.class.php │ │ │ ├── Db.class.php │ │ │ ├── Log.class.php │ │ │ ├── Model.class.php │ │ │ └── functions.php │ │ ├── Lite │ │ │ ├── Action.class.php │ │ │ ├── App.class.php │ │ │ ├── Db.class.php │ │ │ ├── Dispatcher.class.php │ │ │ ├── Model.class.php │ │ │ └── tags.php │ │ ├── Phprpc │ │ │ ├── Action.class.php │ │ │ ├── App.class.php │ │ │ ├── Db.class.php │ │ │ ├── Model.class.php │ │ │ └── alias.php │ │ ├── Rest │ │ │ ├── Action.class.php │ │ │ ├── Behavior │ │ │ │ ├── CheckRestRouteBehavior.class.php │ │ │ │ └── CheckUrlExtBehavior.class.php │ │ │ ├── config.php │ │ │ └── tags.php │ │ ├── Thin │ │ │ ├── Action.class.php │ │ │ ├── App.class.php │ │ │ ├── Db.class.php │ │ │ └── Model.class.php │ │ ├── amf.php │ │ ├── cli.php │ │ ├── lite.php │ │ ├── phprpc.php │ │ ├── rest.php │ │ └── thin.php │ ├── Model │ │ ├── AdvModel.class.php │ │ ├── MongoModel.class.php │ │ ├── RelationModel.class.php │ │ └── ViewModel.class.php │ ├── README.txt │ ├── Tool │ │ ├── Requirements-Checker │ │ │ ├── .htaccess │ │ │ ├── assets │ │ │ │ ├── checker.phtml │ │ │ │ ├── denied │ │ │ │ │ ├── .htaccess │ │ │ │ │ ├── checker.js │ │ │ │ │ └── web.config │ │ │ │ ├── failed.gif │ │ │ │ ├── info.gif │ │ │ │ ├── logo.png │ │ │ │ ├── passed.gif │ │ │ │ ├── rewrite │ │ │ │ │ ├── .htaccess │ │ │ │ │ ├── checker.js │ │ │ │ │ └── web.config │ │ │ │ └── warning.gif │ │ │ └── checker.php │ │ ├── phpunit.php │ │ └── thinkeditor │ │ │ ├── ThinkEditor.js │ │ │ ├── jquery-1.6.2.min.js │ │ │ ├── plugins │ │ │ ├── myplugins.js │ │ │ ├── system.js │ │ │ └── upload_interface.js │ │ │ └── skins │ │ │ ├── default │ │ │ ├── config.js │ │ │ ├── dialog │ │ │ │ ├── css │ │ │ │ │ ├── base.css │ │ │ │ │ └── te_dialog.css │ │ │ │ └── dialog.html │ │ │ ├── img │ │ │ │ ├── bg_img.jpg │ │ │ │ ├── bg_img.png │ │ │ │ ├── resize_center.jpg │ │ │ │ ├── resize_leftjpg.jpg │ │ │ │ └── spacer.gif │ │ │ ├── style.css │ │ │ └── styles.css │ │ │ └── qq_face │ │ │ ├── qq_face.gif │ │ │ ├── qq_face_0.gif │ │ │ ├── qq_face_1.gif │ │ │ ├── qq_face_10.gif │ │ │ ├── qq_face_100.gif │ │ │ ├── qq_face_101.gif │ │ │ ├── qq_face_102.gif │ │ │ ├── qq_face_103.gif │ │ │ ├── qq_face_104.gif │ │ │ ├── qq_face_11.gif │ │ │ ├── qq_face_12.gif │ │ │ ├── qq_face_13.gif │ │ │ ├── qq_face_14.gif │ │ │ ├── qq_face_15.gif │ │ │ ├── qq_face_16.gif │ │ │ ├── qq_face_17.gif │ │ │ ├── qq_face_18.gif │ │ │ ├── qq_face_19.gif │ │ │ ├── qq_face_2.gif │ │ │ ├── qq_face_20.gif │ │ │ ├── qq_face_21.gif │ │ │ ├── qq_face_22.gif │ │ │ ├── qq_face_23.gif │ │ │ ├── qq_face_24.gif │ │ │ ├── qq_face_25.gif │ │ │ ├── qq_face_26.gif │ │ │ ├── qq_face_27.gif │ │ │ ├── qq_face_28.gif │ │ │ ├── qq_face_29.gif │ │ │ ├── qq_face_3.gif │ │ │ ├── qq_face_30.gif │ │ │ ├── qq_face_31.gif │ │ │ ├── qq_face_32.gif │ │ │ ├── qq_face_33.gif │ │ │ ├── qq_face_34.gif │ │ │ ├── qq_face_35.gif │ │ │ ├── qq_face_36.gif │ │ │ ├── qq_face_37.gif │ │ │ ├── qq_face_38.gif │ │ │ ├── qq_face_39.gif │ │ │ ├── qq_face_4.gif │ │ │ ├── qq_face_40.gif │ │ │ ├── qq_face_41.gif │ │ │ ├── qq_face_42.gif │ │ │ ├── qq_face_43.gif │ │ │ ├── qq_face_44.gif │ │ │ ├── qq_face_45.gif │ │ │ ├── qq_face_46.gif │ │ │ ├── qq_face_47.gif │ │ │ ├── qq_face_48.gif │ │ │ ├── qq_face_49.gif │ │ │ ├── qq_face_5.gif │ │ │ ├── qq_face_50.gif │ │ │ ├── qq_face_51.gif │ │ │ ├── qq_face_52.gif │ │ │ ├── qq_face_53.gif │ │ │ ├── qq_face_54.gif │ │ │ ├── qq_face_55.gif │ │ │ ├── qq_face_56.gif │ │ │ ├── qq_face_57.gif │ │ │ ├── qq_face_58.gif │ │ │ ├── qq_face_59.gif │ │ │ ├── qq_face_6.gif │ │ │ ├── qq_face_60.gif │ │ │ ├── qq_face_61.gif │ │ │ ├── qq_face_62.gif │ │ │ ├── qq_face_63.gif │ │ │ ├── qq_face_64.gif │ │ │ ├── qq_face_65.gif │ │ │ ├── qq_face_66.gif │ │ │ ├── qq_face_67.gif │ │ │ ├── qq_face_68.gif │ │ │ ├── qq_face_69.gif │ │ │ ├── qq_face_7.gif │ │ │ ├── qq_face_70.gif │ │ │ ├── qq_face_71.gif │ │ │ ├── qq_face_72.gif │ │ │ ├── qq_face_73.gif │ │ │ ├── qq_face_74.gif │ │ │ ├── qq_face_75.gif │ │ │ ├── qq_face_76.gif │ │ │ ├── qq_face_77.gif │ │ │ ├── qq_face_78.gif │ │ │ ├── qq_face_79.gif │ │ │ ├── qq_face_8.gif │ │ │ ├── qq_face_80.gif │ │ │ ├── qq_face_81.gif │ │ │ ├── qq_face_82.gif │ │ │ ├── qq_face_83.gif │ │ │ ├── qq_face_84.gif │ │ │ ├── qq_face_85.gif │ │ │ ├── qq_face_86.gif │ │ │ ├── qq_face_87.gif │ │ │ ├── qq_face_88.gif │ │ │ ├── qq_face_89.gif │ │ │ ├── qq_face_9.gif │ │ │ ├── qq_face_90.gif │ │ │ ├── qq_face_91.gif │ │ │ ├── qq_face_92.gif │ │ │ ├── qq_face_93.gif │ │ │ ├── qq_face_94.gif │ │ │ ├── qq_face_95.gif │ │ │ ├── qq_face_96.gif │ │ │ ├── qq_face_97.gif │ │ │ ├── qq_face_98.gif │ │ │ └── qq_face_99.gif │ └── Vendor │ │ ├── EaseTemplate │ │ ├── template.core.php │ │ └── template.ease.php │ │ ├── PHPExcel │ │ ├── PHPExcel.php │ │ └── PHPExcel │ │ │ ├── Autoloader.php │ │ │ ├── CachedObjectStorage │ │ │ ├── APC.php │ │ │ ├── CacheBase.php │ │ │ ├── DiscISAM.php │ │ │ ├── ICache.php │ │ │ ├── Igbinary.php │ │ │ ├── Memcache.php │ │ │ ├── Memory.php │ │ │ ├── MemoryGZip.php │ │ │ ├── MemorySerialized.php │ │ │ ├── PHPTemp.php │ │ │ ├── SQLite.php │ │ │ ├── SQLite3.php │ │ │ └── Wincache.php │ │ │ ├── CachedObjectStorageFactory.php │ │ │ ├── Calculation.php │ │ │ ├── Calculation │ │ │ ├── Database.php │ │ │ ├── DateTime.php │ │ │ ├── Engineering.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionHandler.php │ │ │ ├── Financial.php │ │ │ ├── FormulaParser.php │ │ │ ├── FormulaToken.php │ │ │ ├── Function.php │ │ │ ├── Functions.php │ │ │ ├── Logical.php │ │ │ ├── LookupRef.php │ │ │ ├── MathTrig.php │ │ │ ├── Statistical.php │ │ │ ├── TextData.php │ │ │ ├── Token │ │ │ │ └── Stack.php │ │ │ └── functionlist.txt │ │ │ ├── Cell.php │ │ │ ├── Cell │ │ │ ├── AdvancedValueBinder.php │ │ │ ├── DataType.php │ │ │ ├── DataValidation.php │ │ │ ├── DefaultValueBinder.php │ │ │ ├── Hyperlink.php │ │ │ └── IValueBinder.php │ │ │ ├── Chart.php │ │ │ ├── Chart │ │ │ ├── DataSeries.php │ │ │ ├── DataSeriesValues.php │ │ │ ├── Exception.php │ │ │ ├── Layout.php │ │ │ ├── Legend.php │ │ │ ├── PlotArea.php │ │ │ ├── Renderer │ │ │ │ ├── PHP Charting Libraries.txt │ │ │ │ └── jpgraph.php │ │ │ └── Title.php │ │ │ ├── Comment.php │ │ │ ├── DocumentProperties.php │ │ │ ├── DocumentSecurity.php │ │ │ ├── Exception.php │ │ │ ├── HashTable.php │ │ │ ├── IComparable.php │ │ │ ├── IOFactory.php │ │ │ ├── NamedRange.php │ │ │ ├── Reader │ │ │ ├── CSV.php │ │ │ ├── DefaultReadFilter.php │ │ │ ├── Excel2003XML.php │ │ │ ├── Excel2007.php │ │ │ ├── Excel2007 │ │ │ │ ├── Chart.php │ │ │ │ └── Theme.php │ │ │ ├── Excel5.php │ │ │ ├── Excel5 │ │ │ │ └── Escher.php │ │ │ ├── Gnumeric.php │ │ │ ├── HTML.php │ │ │ ├── IReadFilter.php │ │ │ ├── IReader.php │ │ │ ├── OOCalc.php │ │ │ └── SYLK.php │ │ │ ├── ReferenceHelper.php │ │ │ ├── RichText.php │ │ │ ├── RichText │ │ │ ├── ITextElement.php │ │ │ ├── Run.php │ │ │ └── TextElement.php │ │ │ ├── Settings.php │ │ │ ├── Shared │ │ │ ├── CodePage.php │ │ │ ├── Date.php │ │ │ ├── Drawing.php │ │ │ ├── Escher.php │ │ │ ├── Escher │ │ │ │ ├── DgContainer.php │ │ │ │ ├── DgContainer │ │ │ │ │ ├── SpgrContainer.php │ │ │ │ │ └── SpgrContainer │ │ │ │ │ │ └── SpContainer.php │ │ │ │ ├── DggContainer.php │ │ │ │ └── DggContainer │ │ │ │ │ ├── BstoreContainer.php │ │ │ │ │ └── BstoreContainer │ │ │ │ │ ├── BSE.php │ │ │ │ │ └── BSE │ │ │ │ │ └── Blip.php │ │ │ ├── Excel5.php │ │ │ ├── File.php │ │ │ ├── Font.php │ │ │ ├── JAMA │ │ │ │ ├── CHANGELOG.TXT │ │ │ │ ├── CholeskyDecomposition.php │ │ │ │ ├── EigenvalueDecomposition.php │ │ │ │ ├── LUDecomposition.php │ │ │ │ ├── Matrix.php │ │ │ │ ├── QRDecomposition.php │ │ │ │ ├── SingularValueDecomposition.php │ │ │ │ ├── examples │ │ │ │ │ ├── LMQuadTest.php │ │ │ │ │ ├── LagrangeInterpolation.php │ │ │ │ │ ├── LagrangeInterpolation2.php │ │ │ │ │ ├── LevenbergMarquardt.php │ │ │ │ │ ├── MagicSquareExample.php │ │ │ │ │ ├── Stats.php │ │ │ │ │ ├── benchmark.php │ │ │ │ │ ├── polyfit.php │ │ │ │ │ └── tile.php │ │ │ │ ├── tests │ │ │ │ │ └── TestMatrix.php │ │ │ │ └── utils │ │ │ │ │ ├── Error.php │ │ │ │ │ └── Maths.php │ │ │ ├── OLE.php │ │ │ ├── OLE │ │ │ │ ├── ChainedBlockStream.php │ │ │ │ ├── PPS.php │ │ │ │ └── PPS │ │ │ │ │ ├── File.php │ │ │ │ │ └── Root.php │ │ │ ├── OLERead.php │ │ │ ├── PCLZip │ │ │ │ ├── gnu-lgpl.txt │ │ │ │ ├── pclzip.lib.php │ │ │ │ └── readme.txt │ │ │ ├── PasswordHasher.php │ │ │ ├── String.php │ │ │ ├── XMLWriter.php │ │ │ ├── ZipArchive.php │ │ │ ├── ZipStreamWrapper.php │ │ │ └── trend │ │ │ │ ├── bestFitClass.php │ │ │ │ ├── exponentialBestFitClass.php │ │ │ │ ├── linearBestFitClass.php │ │ │ │ ├── logarithmicBestFitClass.php │ │ │ │ ├── polynomialBestFitClass.php │ │ │ │ ├── powerBestFitClass.php │ │ │ │ └── trendClass.php │ │ │ ├── Style.php │ │ │ ├── Style │ │ │ ├── Alignment.php │ │ │ ├── Border.php │ │ │ ├── Borders.php │ │ │ ├── Color.php │ │ │ ├── Conditional.php │ │ │ ├── Fill.php │ │ │ ├── Font.php │ │ │ ├── NumberFormat.php │ │ │ └── Protection.php │ │ │ ├── Worksheet.php │ │ │ ├── Worksheet │ │ │ ├── AutoFilter.php │ │ │ ├── AutoFilter │ │ │ │ ├── Column.php │ │ │ │ └── Column │ │ │ │ │ └── Rule.php │ │ │ ├── BaseDrawing.php │ │ │ ├── CellIterator.php │ │ │ ├── ColumnDimension.php │ │ │ ├── Drawing.php │ │ │ ├── Drawing │ │ │ │ └── Shadow.php │ │ │ ├── HeaderFooter.php │ │ │ ├── HeaderFooterDrawing.php │ │ │ ├── MemoryDrawing.php │ │ │ ├── PageMargins.php │ │ │ ├── PageSetup.php │ │ │ ├── Protection.php │ │ │ ├── Row.php │ │ │ ├── RowDimension.php │ │ │ ├── RowIterator.php │ │ │ └── SheetView.php │ │ │ ├── WorksheetIterator.php │ │ │ ├── Writer │ │ │ ├── CSV.php │ │ │ ├── Excel2007.php │ │ │ ├── Excel2007 │ │ │ │ ├── Chart.php │ │ │ │ ├── Comments.php │ │ │ │ ├── ContentTypes.php │ │ │ │ ├── DocProps.php │ │ │ │ ├── Drawing.php │ │ │ │ ├── Rels.php │ │ │ │ ├── StringTable.php │ │ │ │ ├── Style.php │ │ │ │ ├── Theme.php │ │ │ │ ├── Workbook.php │ │ │ │ ├── Worksheet.php │ │ │ │ └── WriterPart.php │ │ │ ├── Excel5.php │ │ │ ├── Excel5 │ │ │ │ ├── BIFFwriter.php │ │ │ │ ├── Escher.php │ │ │ │ ├── Font.php │ │ │ │ ├── Parser.php │ │ │ │ ├── Workbook.php │ │ │ │ ├── Worksheet.php │ │ │ │ └── Xf.php │ │ │ ├── HTML.php │ │ │ ├── IWriter.php │ │ │ ├── PDF.php │ │ │ └── PDF │ │ │ │ ├── Core.php │ │ │ │ ├── DomPDF.php │ │ │ │ ├── mPDF.php │ │ │ │ └── tcPDF.php │ │ │ └── locale │ │ │ ├── cs │ │ │ ├── config │ │ │ └── functions │ │ │ ├── da │ │ │ ├── config │ │ │ └── functions │ │ │ ├── de │ │ │ ├── config │ │ │ └── functions │ │ │ ├── en │ │ │ └── uk │ │ │ │ └── config │ │ │ ├── es │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fi │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fr │ │ │ ├── config │ │ │ └── functions │ │ │ ├── hu │ │ │ ├── config │ │ │ └── functions │ │ │ ├── it │ │ │ ├── config │ │ │ └── functions │ │ │ ├── nl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── no │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pt │ │ │ ├── br │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ ├── config │ │ │ └── functions │ │ │ ├── ru │ │ │ ├── config │ │ │ └── functions │ │ │ ├── sv │ │ │ ├── config │ │ │ └── functions │ │ │ └── tr │ │ │ ├── config │ │ │ └── functions │ │ ├── SmartTemplate │ │ ├── class.smarttemplate.php │ │ ├── class.smarttemplatedebugger.php │ │ └── class.smarttemplateparser.php │ │ ├── Smarty │ │ ├── Smarty.class.php │ │ ├── SmartyBC.class.php │ │ ├── debug.tpl │ │ ├── plugins │ │ │ ├── block.textformat.php │ │ │ ├── function.counter.php │ │ │ ├── function.cycle.php │ │ │ ├── function.fetch.php │ │ │ ├── function.html_checkboxes.php │ │ │ ├── function.html_image.php │ │ │ ├── function.html_options.php │ │ │ ├── function.html_radios.php │ │ │ ├── function.html_select_date.php │ │ │ ├── function.html_select_time.php │ │ │ ├── function.html_table.php │ │ │ ├── function.mailto.php │ │ │ ├── function.math.php │ │ │ ├── modifier.capitalize.php │ │ │ ├── modifier.date_format.php │ │ │ ├── modifier.debug_print_var.php │ │ │ ├── modifier.escape.php │ │ │ ├── modifier.regex_replace.php │ │ │ ├── modifier.replace.php │ │ │ ├── modifier.spacify.php │ │ │ ├── modifier.truncate.php │ │ │ ├── modifiercompiler.cat.php │ │ │ ├── modifiercompiler.count_characters.php │ │ │ ├── modifiercompiler.count_paragraphs.php │ │ │ ├── modifiercompiler.count_sentences.php │ │ │ ├── modifiercompiler.count_words.php │ │ │ ├── modifiercompiler.default.php │ │ │ ├── modifiercompiler.escape.php │ │ │ ├── modifiercompiler.from_charset.php │ │ │ ├── modifiercompiler.indent.php │ │ │ ├── modifiercompiler.lower.php │ │ │ ├── modifiercompiler.noprint.php │ │ │ ├── modifiercompiler.string_format.php │ │ │ ├── modifiercompiler.strip.php │ │ │ ├── modifiercompiler.strip_tags.php │ │ │ ├── modifiercompiler.to_charset.php │ │ │ ├── modifiercompiler.unescape.php │ │ │ ├── modifiercompiler.upper.php │ │ │ ├── modifiercompiler.wordwrap.php │ │ │ ├── outputfilter.trimwhitespace.php │ │ │ ├── shared.escape_special_chars.php │ │ │ ├── shared.literal_compiler_param.php │ │ │ ├── shared.make_timestamp.php │ │ │ ├── shared.mb_str_replace.php │ │ │ ├── shared.mb_unicode.php │ │ │ ├── shared.mb_wordwrap.php │ │ │ └── variablefilter.htmlspecialchars.php │ │ └── sysplugins │ │ │ ├── smarty_cacheresource.php │ │ │ ├── smarty_cacheresource_custom.php │ │ │ ├── smarty_cacheresource_keyvaluestore.php │ │ │ ├── smarty_config_source.php │ │ │ ├── smarty_internal_cacheresource_file.php │ │ │ ├── smarty_internal_compile_append.php │ │ │ ├── smarty_internal_compile_assign.php │ │ │ ├── smarty_internal_compile_block.php │ │ │ ├── smarty_internal_compile_break.php │ │ │ ├── smarty_internal_compile_call.php │ │ │ ├── smarty_internal_compile_capture.php │ │ │ ├── smarty_internal_compile_config_load.php │ │ │ ├── smarty_internal_compile_continue.php │ │ │ ├── smarty_internal_compile_debug.php │ │ │ ├── smarty_internal_compile_eval.php │ │ │ ├── smarty_internal_compile_extends.php │ │ │ ├── smarty_internal_compile_for.php │ │ │ ├── smarty_internal_compile_foreach.php │ │ │ ├── smarty_internal_compile_function.php │ │ │ ├── smarty_internal_compile_if.php │ │ │ ├── smarty_internal_compile_include.php │ │ │ ├── smarty_internal_compile_include_php.php │ │ │ ├── smarty_internal_compile_insert.php │ │ │ ├── smarty_internal_compile_ldelim.php │ │ │ ├── smarty_internal_compile_nocache.php │ │ │ ├── smarty_internal_compile_private_block_plugin.php │ │ │ ├── smarty_internal_compile_private_function_plugin.php │ │ │ ├── smarty_internal_compile_private_modifier.php │ │ │ ├── smarty_internal_compile_private_object_block_function.php │ │ │ ├── smarty_internal_compile_private_object_function.php │ │ │ ├── smarty_internal_compile_private_print_expression.php │ │ │ ├── smarty_internal_compile_private_registered_block.php │ │ │ ├── smarty_internal_compile_private_registered_function.php │ │ │ ├── smarty_internal_compile_private_special_variable.php │ │ │ ├── smarty_internal_compile_rdelim.php │ │ │ ├── smarty_internal_compile_section.php │ │ │ ├── smarty_internal_compile_setfilter.php │ │ │ ├── smarty_internal_compile_while.php │ │ │ ├── smarty_internal_compilebase.php │ │ │ ├── smarty_internal_config.php │ │ │ ├── smarty_internal_config_file_compiler.php │ │ │ ├── smarty_internal_configfilelexer.php │ │ │ ├── smarty_internal_configfileparser.php │ │ │ ├── smarty_internal_data.php │ │ │ ├── smarty_internal_debug.php │ │ │ ├── smarty_internal_filter_handler.php │ │ │ ├── smarty_internal_function_call_handler.php │ │ │ ├── smarty_internal_get_include_path.php │ │ │ ├── smarty_internal_nocache_insert.php │ │ │ ├── smarty_internal_parsetree.php │ │ │ ├── smarty_internal_resource_eval.php │ │ │ ├── smarty_internal_resource_extends.php │ │ │ ├── smarty_internal_resource_file.php │ │ │ ├── smarty_internal_resource_php.php │ │ │ ├── smarty_internal_resource_registered.php │ │ │ ├── smarty_internal_resource_stream.php │ │ │ ├── smarty_internal_resource_string.php │ │ │ ├── smarty_internal_smartytemplatecompiler.php │ │ │ ├── smarty_internal_template.php │ │ │ ├── smarty_internal_templatebase.php │ │ │ ├── smarty_internal_templatecompilerbase.php │ │ │ ├── smarty_internal_templatelexer.php │ │ │ ├── smarty_internal_templateparser.php │ │ │ ├── smarty_internal_utility.php │ │ │ ├── smarty_internal_write_file.php │ │ │ ├── smarty_resource.php │ │ │ ├── smarty_resource_custom.php │ │ │ ├── smarty_resource_recompiled.php │ │ │ ├── smarty_resource_uncompiled.php │ │ │ └── smarty_security.php │ │ ├── TemplateLite │ │ ├── class.compiler.php │ │ ├── class.config.php │ │ ├── class.template.php │ │ └── internal │ │ │ ├── compile.compile_config.php │ │ │ ├── compile.compile_custom_block.php │ │ │ ├── compile.compile_custom_function.php │ │ │ ├── compile.compile_if.php │ │ │ ├── compile.generate_compiler_debug_output.php │ │ │ ├── compile.include.php │ │ │ ├── compile.parse_is_expr.php │ │ │ ├── compile.section_start.php │ │ │ ├── debug.tpl │ │ │ ├── template.build_dir.php │ │ │ ├── template.config_loader.php │ │ │ ├── template.destroy_dir.php │ │ │ ├── template.fetch_compile_include.php │ │ │ └── template.generate_debug_output.php │ │ ├── Zend │ │ ├── Amf │ │ │ ├── Adobe │ │ │ │ ├── Auth.php │ │ │ │ ├── DbInspector.php │ │ │ │ └── Introspector.php │ │ │ ├── Auth │ │ │ │ └── Abstract.php │ │ │ ├── Constants.php │ │ │ ├── Exception.php │ │ │ ├── Parse │ │ │ │ ├── Amf0 │ │ │ │ │ ├── Deserializer.php │ │ │ │ │ └── Serializer.php │ │ │ │ ├── Amf3 │ │ │ │ │ ├── Deserializer.php │ │ │ │ │ └── Serializer.php │ │ │ │ ├── Deserializer.php │ │ │ │ ├── InputStream.php │ │ │ │ ├── OutputStream.php │ │ │ │ ├── Resource │ │ │ │ │ ├── MysqlResult.php │ │ │ │ │ ├── MysqliResult.php │ │ │ │ │ └── Stream.php │ │ │ │ ├── Serializer.php │ │ │ │ └── TypeLoader.php │ │ │ ├── Request.php │ │ │ ├── Request │ │ │ │ └── Http.php │ │ │ ├── Response.php │ │ │ ├── Response │ │ │ │ └── Http.php │ │ │ ├── Server.php │ │ │ ├── Server │ │ │ │ └── Exception.php │ │ │ ├── Util │ │ │ │ └── BinaryStream.php │ │ │ └── Value │ │ │ │ ├── ByteArray.php │ │ │ │ ├── MessageBody.php │ │ │ │ ├── MessageHeader.php │ │ │ │ ├── Messaging │ │ │ │ ├── AbstractMessage.php │ │ │ │ ├── AcknowledgeMessage.php │ │ │ │ ├── ArrayCollection.php │ │ │ │ ├── AsyncMessage.php │ │ │ │ ├── CommandMessage.php │ │ │ │ ├── ErrorMessage.php │ │ │ │ └── RemotingMessage.php │ │ │ │ └── TraitsInfo.php │ │ ├── Auth.php │ │ ├── Date.php │ │ ├── Date │ │ │ ├── Cities.php │ │ │ ├── DateObject.php │ │ │ └── Exception.php │ │ ├── Exception.php │ │ ├── Loader.php │ │ ├── Loader │ │ │ ├── Autoloader.php │ │ │ ├── Autoloader │ │ │ │ ├── Interface.php │ │ │ │ └── Resource.php │ │ │ ├── Exception.php │ │ │ ├── PluginLoader.php │ │ │ └── PluginLoader │ │ │ │ ├── Exception.php │ │ │ │ └── Interface.php │ │ ├── Server │ │ │ ├── Abstract.php │ │ │ ├── Cache.php │ │ │ ├── Definition.php │ │ │ ├── Exception.php │ │ │ ├── Interface.php │ │ │ ├── Method │ │ │ │ ├── Callback.php │ │ │ │ ├── Definition.php │ │ │ │ ├── Parameter.php │ │ │ │ └── Prototype.php │ │ │ ├── Reflection.php │ │ │ └── Reflection │ │ │ │ ├── Class.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Function.php │ │ │ │ ├── Function │ │ │ │ └── Abstract.php │ │ │ │ ├── Method.php │ │ │ │ ├── Node.php │ │ │ │ ├── Parameter.php │ │ │ │ ├── Prototype.php │ │ │ │ └── ReturnValue.php │ │ └── Version.php │ │ ├── delicious.php │ │ ├── phpRPC │ │ ├── bigint.php │ │ ├── compat.php │ │ ├── dhparams.php │ │ ├── dhparams │ │ │ ├── 1024.dhp │ │ │ ├── 128.dhp │ │ │ ├── 1536.dhp │ │ │ ├── 160.dhp │ │ │ ├── 192.dhp │ │ │ ├── 2048.dhp │ │ │ ├── 256.dhp │ │ │ ├── 3072.dhp │ │ │ ├── 4096.dhp │ │ │ ├── 512.dhp │ │ │ ├── 768.dhp │ │ │ └── 96.dhp │ │ ├── pecl │ │ │ └── xxtea │ │ │ │ ├── CREDITS │ │ │ │ ├── INSTALL │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── config.m4 │ │ │ │ ├── config.w32 │ │ │ │ ├── php_xxtea.c │ │ │ │ ├── php_xxtea.dsp │ │ │ │ ├── php_xxtea.h │ │ │ │ ├── php_xxtea.sln │ │ │ │ ├── php_xxtea.vcproj │ │ │ │ ├── test │ │ │ │ └── test.php │ │ │ │ ├── xxtea.c │ │ │ │ └── xxtea.h │ │ ├── phprpc_client.php │ │ ├── phprpc_date.php │ │ ├── phprpc_server.php │ │ └── xxtea.php │ │ └── readme.txt ├── LICENSE.txt ├── Lang │ ├── en-us.php │ └── zh-cn.php ├── Lib │ ├── Behavior │ │ ├── CheckRouteBehavior.class.php │ │ ├── ContentReplaceBehavior.class.php │ │ ├── LocationTemplateBehavior.class.php │ │ ├── ParseTemplateBehavior.class.php │ │ ├── ReadHtmlCacheBehavior.class.php │ │ ├── ShowPageTraceBehavior.class.php │ │ ├── ShowRuntimeBehavior.class.php │ │ ├── TokenBuildBehavior.class.php │ │ └── WriteHtmlCacheBehavior.class.php │ ├── Core │ │ ├── Action.class.php │ │ ├── App.class.php │ │ ├── Behavior.class.php │ │ ├── Cache.class.php │ │ ├── Db.class.php │ │ ├── Dispatcher.class.php │ │ ├── Log.class.php │ │ ├── Model.class.php │ │ ├── Think.class.php │ │ ├── ThinkException.class.php │ │ ├── View.class.php │ │ └── Widget.class.php │ ├── Driver │ │ ├── Cache │ │ │ └── CacheFile.class.php │ │ ├── Db │ │ │ ├── DbMysql.class.php │ │ │ └── DbMysqli.class.php │ │ └── TagLib │ │ │ └── TagLibCx.class.php │ └── Template │ │ ├── TagLib.class.php │ │ └── ThinkTemplate.class.php ├── README.txt ├── ThinkPHP.php ├── Tpl │ ├── default_index.tpl │ ├── dispatch_jump.tpl │ ├── page_trace.tpl │ └── think_exception.tpl ├── favicon.ico └── logo.png ├── Tpl └── Comm │ ├── API │ ├── delicious.html │ ├── pocket.html │ └── pocketv2.html │ ├── Account │ ├── add.html │ └── edit.html │ ├── Article │ ├── add.html │ ├── add1.html │ ├── article.html │ ├── article_detail.html │ ├── article_info.html │ ├── article_nav.html │ ├── article_related.html │ ├── article_relation.html │ ├── article_topic.html │ ├── comments.html │ ├── editor.html │ ├── select.html │ ├── share.html │ ├── tag.html │ └── toolbar.html │ ├── Atest │ ├── add.html │ └── edit.html │ ├── Authority │ ├── authority.html │ ├── role.html │ ├── toolbar.html │ └── tree.html │ ├── Broadband │ ├── add.html │ └── edit.html │ ├── Broadband_cat │ ├── add.html │ └── edit.html │ ├── Code │ ├── action.html │ ├── add.html │ ├── add1.html │ ├── design.html │ ├── edit.html │ ├── index.html │ ├── model.html │ ├── refer.html │ ├── refer1.html │ ├── relation.html │ ├── show.html │ ├── toolbar.html │ └── view.html │ ├── Config │ ├── add.html │ ├── index - 副本.html │ └── index2.html │ ├── Cron │ ├── add.html │ └── edit.html │ ├── Document │ └── status.html │ ├── Index │ ├── btn.html │ ├── calendar.html │ ├── chart.html │ ├── footer.html │ ├── gallery.html │ ├── header.html │ ├── hero.html │ ├── home.html │ ├── img.html │ ├── list.html │ ├── modal.html │ ├── modal1.html │ ├── msg.html │ ├── nav.html │ ├── navcur.html │ ├── pager.html │ ├── pill.html │ ├── player.html │ ├── select.html │ ├── sidebar.html │ ├── summary.html │ ├── tab.html │ ├── table-admin.html │ ├── table-operate.html │ ├── table-query.html │ ├── table-searchbar.html │ ├── table-toolbar-tr.html │ ├── table-toolbar.html │ ├── table.html │ ├── toolbar.html │ ├── tree.html │ ├── treeedit.html │ ├── upload.html │ ├── upload0.html │ ├── upload1.html │ ├── upload2.html │ ├── upload3.html │ └── uploads.html │ ├── Log │ ├── add.html │ └── edit.html │ ├── Login │ ├── OtherLogin.html │ ├── index.html │ ├── nav.html │ ├── recaptcha.html │ └── signup.html │ ├── Menu │ ├── add.html │ └── edit.html │ ├── Module │ └── add.html │ ├── Module_refer │ ├── add.html │ └── edit.html │ ├── Passport │ ├── add.html │ └── edit.html │ ├── Role │ └── add.html │ ├── User │ ├── add.html │ ├── add1.html │ └── changepwd.html │ ├── User_role │ ├── add.html │ └── edit.html │ ├── layout.html │ └── roleauthority.html ├── dl_receiver.php ├── index.php └── receiver.php /.gitignore: -------------------------------------------------------------------------------- 1 | # Numerous always-ignore extensions 2 | *.diff 3 | *.err 4 | *.orig 5 | *.log 6 | *.rej 7 | *.swo 8 | *.swp 9 | *.zip 10 | *.vi 11 | *~ 12 | *.sass-cache 13 | 14 | # OS or Editor folders 15 | .DS_Store 16 | ._* 17 | Thumbs.db 18 | .cache 19 | .project 20 | .settings 21 | .tmproj 22 | *.esproj 23 | nbproject 24 | *.sublime-project 25 | *.sublime-workspace 26 | 27 | # Komodo 28 | *.komodoproject 29 | .komodotools 30 | 31 | # Folders to ignore 32 | .hg 33 | .svn 34 | .CVS 35 | .idea 36 | node_modules 37 | dist 38 | 39 | 40 | #TinkPHP Compile directory 41 | Runtime 42 | #sync copy 43 | *conflicted copy*.* 44 | -------------------------------------------------------------------------------- /Common/Comm/fields.php: -------------------------------------------------------------------------------- 1 | array( 3 | 'user' => array("username"=>"用户名","password"=>"密码","displayname"=>"名称","email"=>"email","registered"=>"注册时间") 4 | ,'role' => array("numb"=>"编号","name"=>"名称","status"=>"状态") 5 | ) -------------------------------------------------------------------------------- /Common/Comm/function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Common/Comm/function.php -------------------------------------------------------------------------------- /Conf/pill.php: -------------------------------------------------------------------------------- 1 | array ( 'Role' => array('status=1'=>'已启用','stauts=0'=>'已禁用',), ),);?> -------------------------------------------------------------------------------- /Conf/system.php: -------------------------------------------------------------------------------- 1 | error('Unknow handle.',U('Index/index')); 17 | } 18 | 19 | } -------------------------------------------------------------------------------- /Lib/Action/Comm/IndexAction.class.php: -------------------------------------------------------------------------------- 1 | display('hero'); 6 | } 7 | else{ 8 | redirect(U('Login/index')); 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /Lib/Action/Comm/LogAction.class.php: -------------------------------------------------------------------------------- 1 | true, 5 | 'USER_AUTH_ID' => 'user_id', 6 | ); 7 | public function run(&$return){ 8 | if(C('USER_AUTH_ON')) { 9 | if(empty(session('username')){ 10 | $this -> redirect(U("Login/index")); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /Lib/Behavior/Comm/AuthCheckBehavior.class.php: -------------------------------------------------------------------------------- 1 | true, 5 | 'USER_AUTH_ID' => 'userid', 6 | ); 7 | public function run(&$return){ 8 | //if(C('USER_AUTH_ON')) { 9 | $username=session('usernam'); 10 | //if(empty($username)){ 11 | header("Login/index"); 12 | //} 13 | // } 14 | } 15 | } -------------------------------------------------------------------------------- /Lib/Model/Comm/AtestModel.class.php: -------------------------------------------------------------------------------- 1 | '表单字段' 19 | protected $_map = array( 20 | 21 | ); 22 | 23 | protected $_scope = array( 24 | 'default'=>array( 25 | 'where'=>array('is_deleted'=>'0'), 26 | 'order'=>'id DESC', 27 | 28 | ), 29 | 'latest'=>array( 30 | 'where'=>array('is_deleted'=>'0'), 31 | 'order'=>'update_time DESC', 32 | ), 33 | 34 | 35 | ); 36 | } -------------------------------------------------------------------------------- /Lib/Model/Comm/CronModel.class.php: -------------------------------------------------------------------------------- 1 | '表单字段' 19 | protected $_map = array( 20 | 21 | ); 22 | 23 | protected $_scope = array( 24 | 'default'=>array( 25 | 'where'=>array('is_deleted'=>'0'), 26 | 'order'=>'id DESC', 27 | 28 | ), 29 | 'latest'=>array( 30 | 'where'=>array('is_deleted'=>'0'), 31 | 'order'=>'update_time DESC', 32 | ), 33 | 34 | 35 | ); 36 | } -------------------------------------------------------------------------------- /Lib/Model/Comm/LogModel.class.php: -------------------------------------------------------------------------------- 1 | '表单字段' 19 | protected $_map = array( 20 | 21 | ); 22 | 23 | protected $_scope = array( 24 | 'default'=>array( 25 | 'where'=>array('is_deleted'=>'0'), 26 | 'order'=>'id DESC', 27 | "join"=>array("join user on log.update_user=user.id "), 28 | "field"=>"log.*,user.username", 29 | ), 30 | 'latest'=>array( 31 | 'where'=>array('is_deleted'=>'0'), 32 | 'order'=>'update_time DESC', 33 | ), 34 | 35 | 36 | ); 37 | } -------------------------------------------------------------------------------- /Lib/Model/Comm/UserModel.class.php: -------------------------------------------------------------------------------- 1 | 'username', // 把表单中name映射到数据表的username字段 5 | 'mail' =>'email', // 把表单中的mail映射到数据表的email字段 6 | 'pwd' =>'password' 7 | ); 8 | protected $readonlyField = array('username', 'email'); 9 | 10 | } -------------------------------------------------------------------------------- /Lib/Model/Comm/User_roleModel.class.php: -------------------------------------------------------------------------------- 1 | '表单字段' 19 | protected $_map = array( 20 | 21 | ); 22 | 23 | protected $_scope = array( 24 | 'default'=>array( 25 | 'where'=>array('is_deleted'=>'0'), 26 | 'order'=>'id DESC', 27 | "join"=>array("join role on user_role.rid=role.id ","join user on user_role.uid=user.id "), 28 | "field"=>"user_role.*,role.name,user.username", 29 | ), 30 | 'latest'=>array( 31 | 'where'=>array('is_deleted'=>'0'), 32 | 'order'=>'update_time DESC', 33 | ), 34 | 35 | 36 | ); 37 | } -------------------------------------------------------------------------------- /Lib/Widget/Menu/tab.html: -------------------------------------------------------------------------------- 1 | {__NOLAYOUT__} 2 |
-------------------------------------------------------------------------------- /Lib/Widget/MenuWidget.class.php: -------------------------------------------------------------------------------- 1 | $data['level'],'status'=>'1','is_deleted'=>0); 6 | if($data['level']==2){ 7 | $cond=array('link' => MODULE_NAME.'/'.ACTION_NAME,'level'=>2 ); 8 | $pid=$M->where($cond)->getField('pid'); 9 | if(empty($pid))$pid=0; 10 | $condition['pid']=$pid; 11 | } 12 | $result['data']=$M->field("id,level,pid,name,title,link,target")->where($condition)->order('pid,`order` asc')->select(); 13 | $content = $this->renderFile($data['location'],$result); 14 | 15 | return $content.$results; 16 | } 17 | } -------------------------------------------------------------------------------- /Lib/Widget/NavWidget.class.php: -------------------------------------------------------------------------------- 1 | $data['link'],'level'=>$data['level'],'status'=>'1','is_deleted'=>0 ); 6 | $result=$M->field("id,level,pid,name,title,link,target")->where($condition)->find(); 7 | $content=$result[$data['type']]; 8 | return $content; 9 | } 10 | 11 | } -------------------------------------------------------------------------------- /Lib/Widget/Parameter/Parameter.html: -------------------------------------------------------------------------------- 1 | {$content} -------------------------------------------------------------------------------- /Lib/Widget/ParameterWidget.class.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | var doc = document; 4 | doc.open(); 5 | doc.write( window.opener._cke_htmlToLoad ); 6 | doc.close(); 7 | 8 | delete window.opener._cke_htmlToLoad; 9 | 10 | 11 | -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/scayt/README.md: -------------------------------------------------------------------------------- 1 | CKEditor SCAYT Plugin 2 | ===================== 3 | 4 | This plugin brings Spell Check As You Type (SCAYT) into CKEditor. 5 | 6 | SCAYT is a "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution. 7 | 8 | Installation 9 | ------------ 10 | 11 | 1. Clone/copy this repository contents in a new "plugins/scayt" folder in your CKEditor installation. 12 | 2. Enable the "scayt" plugin in the CKEditor configuration file (config.js): 13 | 14 | config.extraPlugins = 'scayt'; 15 | 16 | That's all. SCAYT will appear on the editor toolbar and will be ready to use. 17 | 18 | License 19 | ------- 20 | 21 | Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). 22 | 23 | See LICENSE.md for more information. 24 | 25 | Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/). 26 | -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/smiley/images/embarrassed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/smiley/images/embarrassed_smile.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/smiley/images/tongue_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/smiley/images/tongue_smile.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.html or http://ckeditor.com/license 3 | 4 | cs.js Found: 118 Missing: 0 5 | cy.js Found: 118 Missing: 0 6 | de.js Found: 118 Missing: 0 7 | el.js Found: 16 Missing: 102 8 | eo.js Found: 118 Missing: 0 9 | et.js Found: 31 Missing: 87 10 | fa.js Found: 24 Missing: 94 11 | fi.js Found: 23 Missing: 95 12 | fr.js Found: 118 Missing: 0 13 | hr.js Found: 23 Missing: 95 14 | it.js Found: 118 Missing: 0 15 | nb.js Found: 118 Missing: 0 16 | nl.js Found: 118 Missing: 0 17 | no.js Found: 118 Missing: 0 18 | tr.js Found: 118 Missing: 0 19 | ug.js Found: 39 Missing: 79 20 | zh-cn.js Found: 118 Missing: 0 21 | -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /Public/include/ckeditor/plugins/wsc/README.md: -------------------------------------------------------------------------------- 1 | CKEditor WebSpellChecker Plugin 2 | =============================== 3 | 4 | This plugin brings Web Spell Checker (WSC) into CKEditor. 5 | 6 | WSC is "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution. 7 | 8 | Installation 9 | ------------ 10 | 11 | 1. Clone/copy this repository contents in a new "plugins/wsc" folder in your CKEditor installation. 12 | 2. Enable the "wsc" plugin in the CKEditor configuration file (config.js): 13 | 14 | config.extraPlugins = 'wsc'; 15 | 16 | That's all. WSC will appear on the editor toolbar and will be ready to use. 17 | 18 | License 19 | ------- 20 | 21 | Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). 22 | 23 | See LICENSE.md for more information. 24 | 25 | Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/). 26 | -------------------------------------------------------------------------------- /Public/include/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /Public/include/ckeditor/skins/moono/icons.png.r0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/skins/moono/icons.png.r0 -------------------------------------------------------------------------------- /Public/include/ckeditor/skins/moono/icons.png.r209: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/skins/moono/icons.png.r209 -------------------------------------------------------------------------------- /Public/include/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /Public/include/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /Public/include/ckeditor/skins/moono/images/mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckeditor/skins/moono/images/mini.png -------------------------------------------------------------------------------- /Public/include/ckplayer/1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/1.mp4 -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/Preview.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/Preview.swf -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/adjustment.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/adjustment.swf -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/buffer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/buffer.swf -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/cklogo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/cklogo1.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_Fashf_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_Fashf_on.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_Fashf_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_Fashf_out.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_Fashr_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_Fashr_on.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_Fashr_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_Fashr_out.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_Full_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_Full_on.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_Full_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_Full_out.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_General_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_General_on.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_General_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_General_out.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_Mute_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_Mute_on.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_Mute_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_Mute_out.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_Pause_Scgedyke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_Pause_Scgedyke.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_Pause_Scgedyke_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_Pause_Scgedyke_on.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_Pause_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_Pause_on.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_Pause_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_Pause_out.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_Play_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_Play_on.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_Play_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_Play_out.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_Schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_Schedule.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_Schedule_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_Schedule_bg.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_Schedule_load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_Schedule_load.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_Schedule_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_Schedule_play.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_Sound_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_Sound_on.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_Sound_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_Sound_out.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_Volume_Float.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_Volume_Float.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_Volume_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_Volume_back.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_Volume_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_Volume_on.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_adv_skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_adv_skip.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_buttom_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_buttom_bg.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_close_adv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_close_adv.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_v_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_v_off.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/images_v_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/images_v_on.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/logo.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/logo.swf -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/mylogo.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/mylogo.swf -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/related.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/related.swf -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/right.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/right.swf -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/sch_lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/sch_lr.png -------------------------------------------------------------------------------- /Public/include/ckplayer/assets/share.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/assets/share.swf -------------------------------------------------------------------------------- /Public/include/ckplayer/ckplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/ckplayer.swf -------------------------------------------------------------------------------- /Public/include/ckplayer/ckplayer.txt: -------------------------------------------------------------------------------- 1 | {s->0}{b->0x000000}{x->ckplayer/ckplayer.xml}{p->1} -------------------------------------------------------------------------------- /Public/include/ckplayer/expressInstall.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/expressInstall.swf -------------------------------------------------------------------------------- /Public/include/ckplayer/share/feixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/share/feixin.png -------------------------------------------------------------------------------- /Public/include/ckplayer/share/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/share/google.png -------------------------------------------------------------------------------- /Public/include/ckplayer/share/kaixin001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/share/kaixin001.png -------------------------------------------------------------------------------- /Public/include/ckplayer/share/msn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/share/msn.png -------------------------------------------------------------------------------- /Public/include/ckplayer/share/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/share/qq.png -------------------------------------------------------------------------------- /Public/include/ckplayer/share/qq2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/share/qq2.png -------------------------------------------------------------------------------- /Public/include/ckplayer/share/qzone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/share/qzone.png -------------------------------------------------------------------------------- /Public/include/ckplayer/share/rr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/share/rr.png -------------------------------------------------------------------------------- /Public/include/ckplayer/share/sina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/share/sina.png -------------------------------------------------------------------------------- /Public/include/ckplayer/share/sohu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/share/sohu.png -------------------------------------------------------------------------------- /Public/include/ckplayer/share/tianya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/ckplayer/share/tianya.png -------------------------------------------------------------------------------- /Public/include/code-prettify/lang-apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/code-prettify/lang-apollo.js -------------------------------------------------------------------------------- /Public/include/code-prettify/lang-css.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\f\r ]+/,null," \t\r\n"]],[["str",/^"(?:[^\n\f\r"\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*"/,null],["str",/^'(?:[^\n\f\r'\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*'/,null],["lang-css-str",/^url\(([^"')]*)\)/i],["kwd",/^(?:url|rgb|!important|@import|@page|@media|@charset|inherit)(?=[^\w-]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*)\s*:/i],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//],["com", 2 | /^(?:<\!--|--\>)/],["lit",/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],["lit",/^#[\da-f]{3,6}/i],["pln",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i],["pun",/^[^\s\w"']+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[["kwd",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[["str",/^[^"')]+/]]),["css-str"]); 3 | -------------------------------------------------------------------------------- /Public/include/code-prettify/lang-go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/code-prettify/lang-go.js -------------------------------------------------------------------------------- /Public/include/code-prettify/lang-hs.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t-\r ]+/,null,"\t\n\r "],["str",/^"(?:[^\n\f\r"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["str",/^'(?:[^\n\f\r'\\]|\\[^&])'?/,null,"'"],["lit",/^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)/i,null,"0123456789"]],[["com",/^(?:--+[^\n\f\r]*|{-(?:[^-]|-+[^}-])*-})/],["kwd",/^(?:case|class|data|default|deriving|do|else|if|import|in|infix|infixl|infixr|instance|let|module|newtype|of|then|type|where|_)(?=[^\d'A-Za-z]|$)/, 2 | null],["pln",/^(?:[A-Z][\w']*\.)*[A-Za-z][\w']*/],["pun",/^[^\d\t-\r "'A-Za-z]+/]]),["hs"]); 3 | -------------------------------------------------------------------------------- /Public/include/code-prettify/lang-lisp.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["opn",/^\(+/,a,"("],["clo",/^\)+/,a,")"],["com",/^;[^\n\r]*/,a,";"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \xa0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:block|c[ad]+r|catch|con[ds]|def(?:ine|un)|do|eq|eql|equal|equalp|eval-when|flet|format|go|if|labels|lambda|let|load-time-value|locally|macrolet|multiple-value-call|nil|progn|progv|quote|require|return-from|setq|symbol-macrolet|t|tagbody|the|throw|unwind)\b/,a], 3 | ["lit",/^[+-]?(?:[#0]x[\da-f]+|\d+\/\d+|(?:\.\d+|\d+(?:\.\d*)?)(?:[de][+-]?\d+)?)/i],["lit",/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[_a-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/i],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["cl","el","lisp","scm"]); 4 | -------------------------------------------------------------------------------- /Public/include/code-prettify/lang-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/code-prettify/lang-lua.js -------------------------------------------------------------------------------- /Public/include/code-prettify/lang-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/code-prettify/lang-ml.js -------------------------------------------------------------------------------- /Public/include/code-prettify/lang-proto.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.sourceDecorator({keywords:"bytes,default,double,enum,extend,extensions,false,group,import,max,message,option,optional,package,repeated,required,returns,rpc,service,syntax,to,true",types:/^(bool|(double|s?fixed|[su]?int)(32|64)|float|string)\b/,cStyleComments:!0}),["proto"]); 2 | -------------------------------------------------------------------------------- /Public/include/code-prettify/lang-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/code-prettify/lang-scala.js -------------------------------------------------------------------------------- /Public/include/code-prettify/lang-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/code-prettify/lang-sql.js -------------------------------------------------------------------------------- /Public/include/code-prettify/lang-tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/code-prettify/lang-tex.js -------------------------------------------------------------------------------- /Public/include/code-prettify/lang-vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/code-prettify/lang-vb.js -------------------------------------------------------------------------------- /Public/include/code-prettify/lang-vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/code-prettify/lang-vhdl.js -------------------------------------------------------------------------------- /Public/include/code-prettify/lang-wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/code-prettify/lang-wiki.js -------------------------------------------------------------------------------- /Public/include/code-prettify/lang-yaml.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["pun",/^[:>?|]+/,a,":|>?"],["dec",/^%(?:YAML|TAG)[^\n\r#]+/,a,"%"],["typ",/^&\S+/,a,"&"],["typ",/^!\S*/,a,"!"],["str",/^"(?:[^"\\]|\\.)*(?:"|$)/,a,'"'],["str",/^'(?:[^']|'')*(?:'|$)/,a,"'"],["com",/^#[^\n\r]*/,a,"#"],["pln",/^\s+/,a," \t\r\n"]],[["dec",/^(?:---|\.\.\.)(?:[\n\r]|$)/],["pun",/^-/],["kwd",/^\w+:[\n\r ]/],["pln",/^\w+/]]),["yaml","yml"]); 3 | -------------------------------------------------------------------------------- /Public/include/code-prettify/prettify.css: -------------------------------------------------------------------------------- 1 | .com { color: #93a1a1; } 2 | .lit { color: #195f91; } 3 | .pun, .opn, .clo { color: #93a1a1; } 4 | .fun { color: #dc322f; } 5 | .str, .atv { color: #D14; } 6 | .kwd, .prettyprint .tag { color: #1e347b; } 7 | .typ, .atn, .dec, .var { color: teal; } 8 | .pln { color: #48484c; } 9 | 10 | .prettyprint { 11 | padding: 8px; 12 | background-color: #f7f7f9; 13 | border: 1px solid #e1e1e8; 14 | } 15 | .prettyprint.linenums { 16 | -webkit-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; 17 | -moz-box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; 18 | box-shadow: inset 40px 0 0 #fbfbfc, inset 41px 0 0 #ececf0; 19 | } 20 | 21 | /* Specify class=linenums on a pre to get line numbering */ 22 | ol.linenums { 23 | margin: 0 0 0 33px; /* IE indents via margin-left */ 24 | } 25 | ol.linenums li { 26 | padding-left: 12px; 27 | color: #bebec5; 28 | line-height: 20px; 29 | text-shadow: 0 1px 0 #fff; 30 | } -------------------------------------------------------------------------------- /Public/include/css/jquery.fileupload-ui-noscript.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | /* 3 | * jQuery File Upload UI Plugin NoScript CSS 1.0 4 | * https://github.com/blueimp/jQuery-File-Upload 5 | * 6 | * Copyright 2012, Sebastian Tschan 7 | * https://blueimp.net 8 | * 9 | * Licensed under the MIT license: 10 | * http://www.opensource.org/licenses/MIT 11 | */ 12 | 13 | .fileinput-button input { 14 | position: static; 15 | opacity: 1; 16 | filter: none; 17 | transform: none; 18 | font-size: inherit; 19 | direction: inherit; 20 | } 21 | 22 | .fileinput-button span, 23 | .fileinput-button i, 24 | .fileupload-buttonbar .delete, 25 | .fileupload-buttonbar .toggle { 26 | display: none; 27 | } 28 | -------------------------------------------------------------------------------- /Public/include/datatable/images/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/datatable/images/Sorting icons.psd -------------------------------------------------------------------------------- /Public/include/datatable/images/back_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/datatable/images/back_disabled.png -------------------------------------------------------------------------------- /Public/include/datatable/images/back_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/datatable/images/back_enabled.png -------------------------------------------------------------------------------- /Public/include/datatable/images/back_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/datatable/images/back_enabled_hover.png -------------------------------------------------------------------------------- /Public/include/datatable/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/datatable/images/favicon.ico -------------------------------------------------------------------------------- /Public/include/datatable/images/forward_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/datatable/images/forward_disabled.png -------------------------------------------------------------------------------- /Public/include/datatable/images/forward_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/datatable/images/forward_enabled.png -------------------------------------------------------------------------------- /Public/include/datatable/images/forward_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/datatable/images/forward_enabled_hover.png -------------------------------------------------------------------------------- /Public/include/datatable/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/datatable/images/sort_asc.png -------------------------------------------------------------------------------- /Public/include/datatable/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/datatable/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /Public/include/datatable/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/datatable/images/sort_both.png -------------------------------------------------------------------------------- /Public/include/datatable/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/datatable/images/sort_desc.png -------------------------------------------------------------------------------- /Public/include/datatable/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/datatable/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /Public/include/highcharts/gfx/vml-radial-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/highcharts/gfx/vml-radial-gradient.png -------------------------------------------------------------------------------- /Public/include/highcharts/graphics/skies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/highcharts/graphics/skies.jpg -------------------------------------------------------------------------------- /Public/include/highcharts/graphics/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/highcharts/graphics/snow.png -------------------------------------------------------------------------------- /Public/include/highcharts/graphics/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/highcharts/graphics/sun.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/flat/aero.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/flat/aero@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/flat/blue.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/flat/blue@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/flat/flat.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/flat/flat@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/flat/green.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/flat/green@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/flat/grey.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/flat/grey@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/flat/orange.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/flat/orange@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/flat/pink.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/flat/pink@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/flat/purple.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/flat/purple@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/flat/red.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/flat/red@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/flat/yellow.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/flat/yellow@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/futurico/futurico.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/futurico/futurico@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/line/line.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/line/line@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/minimal/aero.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/minimal/aero@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/minimal/blue.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/minimal/blue@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/minimal/green.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/minimal/green@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/minimal/grey.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/minimal/grey@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/minimal/minimal.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/minimal/minimal@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/minimal/orange.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/minimal/orange@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/minimal/pink.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/minimal/pink@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/minimal/purple.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/minimal/purple@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/minimal/red.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/minimal/red@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/minimal/yellow.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/minimal/yellow@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/polaris/polaris.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/polaris/polaris@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/square/aero.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/square/aero@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/square/blue.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/square/blue@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/square/green.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/square/green@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/square/grey.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/square/grey@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/square/orange.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/square/orange@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/square/pink.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/square/pink@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/square/purple.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/square/purple@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/square/red.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/square/red@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/square/square.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/square/square@2x.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/square/yellow.png -------------------------------------------------------------------------------- /Public/include/icheck/skins/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/icheck/skins/square/yellow@2x.png -------------------------------------------------------------------------------- /Public/include/img/100x100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/img/100x100.gif -------------------------------------------------------------------------------- /Public/include/img/140x100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/img/140x100.gif -------------------------------------------------------------------------------- /Public/include/img/200x200.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/img/200x200.gif -------------------------------------------------------------------------------- /Public/include/img/250x200.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/img/250x200.gif -------------------------------------------------------------------------------- /Public/include/img/300x200.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/img/300x200.gif -------------------------------------------------------------------------------- /Public/include/img/32x32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/img/32x32.gif -------------------------------------------------------------------------------- /Public/include/img/360x360.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/img/360x360.gif -------------------------------------------------------------------------------- /Public/include/img/600x400.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/img/600x400.gif -------------------------------------------------------------------------------- /Public/include/img/64x64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/img/64x64.gif -------------------------------------------------------------------------------- /Public/include/img/footbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/img/footbg.png -------------------------------------------------------------------------------- /Public/include/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /Public/include/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /Public/include/img/guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/img/guide.png -------------------------------------------------------------------------------- /Public/include/img/loadinfo.net.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/img/loadinfo.net.gif -------------------------------------------------------------------------------- /Public/include/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/img/loading.gif -------------------------------------------------------------------------------- /Public/include/img/loading1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/img/loading1.gif -------------------------------------------------------------------------------- /Public/include/img/loadings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/img/loadings.gif -------------------------------------------------------------------------------- /Public/include/img/progressbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/img/progressbar.gif -------------------------------------------------------------------------------- /Public/include/img/title.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/img/title.gif -------------------------------------------------------------------------------- /Public/include/img/twitter_web_sprite_bgs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/img/twitter_web_sprite_bgs.png -------------------------------------------------------------------------------- /Public/include/js/light-table-filter.min.js: -------------------------------------------------------------------------------- 1 | (function(a){"use strict";var b=function(b){function d(d){c=d.target;var f=a.getElementsByClassName(c.getAttribute("data-table"));b.forEach.call(f,function(a){b.forEach.call(a.tBodies,function(a){b.forEach.call(a.rows,e)})})}function e(a){var b=a.textContent.toLowerCase(),d=c.value.toLowerCase();a.style.display=-1===b.indexOf(d)?"none":"table-row"}var c;return{init:function(){var c=a.getElementsByClassName("light-table-filter");b.forEach.call(c,function(a){a.oninput=d})}}}(Array.prototype);a.addEventListener("readystatechange",function(){"complete"===a.readyState&&b.init()})})(document); -------------------------------------------------------------------------------- /Public/include/js/messages_zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for the jQuery validation plugin. 3 | * Locale: ZH (Chinese, 中文 (Zhōngwén), 汉语, 漢語) 4 | */ 5 | jQuery.extend(jQuery.validator.messages, { 6 | required: "必选字段", 7 | remote: "请修正该字段", 8 | email: "请输入正确格式的电子邮件", 9 | url: "请输入合法的网址", 10 | date: "请输入合法的日期", 11 | dateISO: "请输入合法的日期 (ISO).", 12 | number: "请输入合法的数字", 13 | digits: "只能输入整数", 14 | creditcard: "请输入合法的信用卡号", 15 | equalTo: "请再次输入相同的值", 16 | accept: "请输入拥有合法后缀名的字符串", 17 | maxlength: jQuery.validator.format("请输入一个长度最多是 {0} 的字符串"), 18 | minlength: jQuery.validator.format("请输入一个长度最少是 {0} 的字符串"), 19 | rangelength: jQuery.validator.format("请输入一个长度介于 {0} 和 {1} 之间的字符串"), 20 | range: jQuery.validator.format("请输入一个介于 {0} 和 {1} 之间的值"), 21 | max: jQuery.validator.format("请输入一个最大为 {0} 的值"), 22 | min: jQuery.validator.format("请输入一个最小为 {0} 的值") 23 | }); -------------------------------------------------------------------------------- /Public/include/js/tree1.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Public/include/syntaxhighlighter/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |16 | function helloSyntaxHighlighter() 17 | { 18 | return "hi!"; 19 | } 20 |21 | 22 | 23 | -------------------------------------------------------------------------------- /Public/include/syntaxhighlighter/scripts/shBrushPlain.js: -------------------------------------------------------------------------------- 1 | /** 2 | * SyntaxHighlighter 3 | * http://alexgorbatchev.com/SyntaxHighlighter 4 | * 5 | * SyntaxHighlighter is donationware. If you are using it, please donate. 6 | * http://alexgorbatchev.com/SyntaxHighlighter/donate.html 7 | * 8 | * @version 9 | * 3.0.83 (July 02 2010) 10 | * 11 | * @copyright 12 | * Copyright (C) 2004-2010 Alex Gorbatchev. 13 | * 14 | * @license 15 | * Dual licensed under the MIT and GPL licenses. 16 | */ 17 | ;(function() 18 | { 19 | // CommonJS 20 | typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null; 21 | 22 | function Brush() 23 | { 24 | }; 25 | 26 | Brush.prototype = new SyntaxHighlighter.Highlighter(); 27 | Brush.aliases = ['text', 'plain']; 28 | 29 | SyntaxHighlighter.brushes.Plain = Brush; 30 | 31 | // CommonJS 32 | typeof(exports) != 'undefined' ? exports.Brush = Brush : null; 33 | })(); 34 | -------------------------------------------------------------------------------- /Public/include/tablesorter/addons/pager/icons/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/tablesorter/addons/pager/icons/first.png -------------------------------------------------------------------------------- /Public/include/tablesorter/addons/pager/icons/last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/tablesorter/addons/pager/icons/last.png -------------------------------------------------------------------------------- /Public/include/tablesorter/addons/pager/icons/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/tablesorter/addons/pager/icons/loading.gif -------------------------------------------------------------------------------- /Public/include/tablesorter/addons/pager/icons/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/tablesorter/addons/pager/icons/next.png -------------------------------------------------------------------------------- /Public/include/tablesorter/addons/pager/icons/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/tablesorter/addons/pager/icons/prev.png -------------------------------------------------------------------------------- /Public/include/tablesorter/css/images/black-asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/tablesorter/css/images/black-asc.gif -------------------------------------------------------------------------------- /Public/include/tablesorter/css/images/black-desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/tablesorter/css/images/black-desc.gif -------------------------------------------------------------------------------- /Public/include/tablesorter/css/images/black-unsorted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/tablesorter/css/images/black-unsorted.gif -------------------------------------------------------------------------------- /Public/include/tablesorter/css/images/dropbox-asc-hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/tablesorter/css/images/dropbox-asc-hovered.png -------------------------------------------------------------------------------- /Public/include/tablesorter/css/images/dropbox-asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/tablesorter/css/images/dropbox-asc.png -------------------------------------------------------------------------------- /Public/include/tablesorter/css/images/dropbox-desc-hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/tablesorter/css/images/dropbox-desc-hovered.png -------------------------------------------------------------------------------- /Public/include/tablesorter/css/images/dropbox-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/tablesorter/css/images/dropbox-desc.png -------------------------------------------------------------------------------- /Public/include/tablesorter/css/images/green-asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/tablesorter/css/images/green-asc.gif -------------------------------------------------------------------------------- /Public/include/tablesorter/css/images/green-desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/tablesorter/css/images/green-desc.gif -------------------------------------------------------------------------------- /Public/include/tablesorter/css/images/green-header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/tablesorter/css/images/green-header.gif -------------------------------------------------------------------------------- /Public/include/tablesorter/css/images/green-unsorted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/tablesorter/css/images/green-unsorted.gif -------------------------------------------------------------------------------- /Public/include/tablesorter/css/images/ice-asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/tablesorter/css/images/ice-asc.gif -------------------------------------------------------------------------------- /Public/include/tablesorter/css/images/ice-desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/tablesorter/css/images/ice-desc.gif -------------------------------------------------------------------------------- /Public/include/tablesorter/css/images/ice-unsorted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/tablesorter/css/images/ice-unsorted.gif -------------------------------------------------------------------------------- /Public/include/tablesorter/css/images/white-asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/tablesorter/css/images/white-asc.gif -------------------------------------------------------------------------------- /Public/include/tablesorter/css/images/white-desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/tablesorter/css/images/white-desc.gif -------------------------------------------------------------------------------- /Public/include/tablesorter/css/images/white-unsorted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/tablesorter/css/images/white-unsorted.gif -------------------------------------------------------------------------------- /Public/include/tablesorter/css/psd/green-asc.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/tablesorter/css/psd/green-asc.psd -------------------------------------------------------------------------------- /Public/include/tablesorter/css/psd/green-desc.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/tablesorter/css/psd/green-desc.psd -------------------------------------------------------------------------------- /Public/include/tablesorter/css/psd/green-unsorted.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/tablesorter/css/psd/green-unsorted.psd -------------------------------------------------------------------------------- /Public/include/tablesorter/js/parsers/parser-date.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Extract dates using popular natural language date parsers 3 | */ 4 | /*jshint jquery:true */ 5 | ;(function($){ 6 | "use strict"; 7 | 8 | /*! Sugar (http://sugarjs.com/dates#comparing_dates) 9 | * demo: http://jsfiddle.net/Mottie/abkNM/551/ 10 | */ 11 | $.tablesorter.addParser({ 12 | id: "sugar", 13 | is: function() { 14 | return false; 15 | }, 16 | format: function(s) { 17 | return Date.create ? Date.create(s).getTime() || s : s; 18 | }, 19 | type: "numeric" 20 | }); 21 | 22 | /*! Datejs (http://www.datejs.com/) 23 | * demo: http://jsfiddle.net/Mottie/abkNM/550/ 24 | */ 25 | $.tablesorter.addParser({ 26 | id: "datejs", 27 | is: function() { 28 | return false; 29 | }, 30 | format: function(s) { 31 | return Date.parse && Date.parse(s) || s; 32 | }, 33 | type: "numeric" 34 | }); 35 | 36 | })(jQuery); 37 | -------------------------------------------------------------------------------- /Public/include/zTree/css/zTreeStyle/img/diy/1_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/zTree/css/zTreeStyle/img/diy/1_close.png -------------------------------------------------------------------------------- /Public/include/zTree/css/zTreeStyle/img/diy/1_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/zTree/css/zTreeStyle/img/diy/1_open.png -------------------------------------------------------------------------------- /Public/include/zTree/css/zTreeStyle/img/diy/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/zTree/css/zTreeStyle/img/diy/2.png -------------------------------------------------------------------------------- /Public/include/zTree/css/zTreeStyle/img/diy/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/zTree/css/zTreeStyle/img/diy/3.png -------------------------------------------------------------------------------- /Public/include/zTree/css/zTreeStyle/img/diy/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/zTree/css/zTreeStyle/img/diy/4.png -------------------------------------------------------------------------------- /Public/include/zTree/css/zTreeStyle/img/diy/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/zTree/css/zTreeStyle/img/diy/5.png -------------------------------------------------------------------------------- /Public/include/zTree/css/zTreeStyle/img/diy/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/zTree/css/zTreeStyle/img/diy/6.png -------------------------------------------------------------------------------- /Public/include/zTree/css/zTreeStyle/img/diy/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/zTree/css/zTreeStyle/img/diy/7.png -------------------------------------------------------------------------------- /Public/include/zTree/css/zTreeStyle/img/diy/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/zTree/css/zTreeStyle/img/diy/8.png -------------------------------------------------------------------------------- /Public/include/zTree/css/zTreeStyle/img/diy/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/zTree/css/zTreeStyle/img/diy/9.png -------------------------------------------------------------------------------- /Public/include/zTree/css/zTreeStyle/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/zTree/css/zTreeStyle/img/line_conn.gif -------------------------------------------------------------------------------- /Public/include/zTree/css/zTreeStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/zTree/css/zTreeStyle/img/loading.gif -------------------------------------------------------------------------------- /Public/include/zTree/css/zTreeStyle/img/zTreeStandard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/zTree/css/zTreeStyle/img/zTreeStandard.gif -------------------------------------------------------------------------------- /Public/include/zTree/css/zTreeStyle/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/Public/include/zTree/css/zTreeStyle/img/zTreeStandard.png -------------------------------------------------------------------------------- /ThinkPHP/Extend/Engine/Cluster/DefaultApp/Common/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/ThinkPHP/Extend/Engine/Cluster/DefaultApp/Common/index.html -------------------------------------------------------------------------------- /ThinkPHP/Extend/Engine/Cluster/DefaultApp/Conf/config.php: -------------------------------------------------------------------------------- 1 | '配置值' 4 | 'SHOW_PAGE_TRACE'=>true, 5 | 'URL_HTML_SUFFIX'=>'.html' 6 | ); 7 | ?> 8 | -------------------------------------------------------------------------------- /ThinkPHP/Extend/Engine/Cluster/DefaultApp/Conf/config_bae.php: -------------------------------------------------------------------------------- 1 | 3, 5 | 'BUCKET_PREFIX'=>'think-', 6 | 'DB_TYPE'=> 'mysql', // 数据库类型 7 | 'DB_HOST'=> HTTP_BAE_ENV_ADDR_SQL_IP, // 服务器地址 8 | 'DB_NAME'=> '', // 数据库名,填写你创建的数据库 9 | 'DB_USER'=> HTTP_BAE_ENV_AK, // 用户名 10 | 'DB_PWD'=> HTTP_BAE_ENV_SK, // 密码 11 | 'DB_PORT'=> HTTP_BAE_ENV_ADDR_SQL_PORT, // 端口 12 | //更改模板替换变量,让普通能在所有平台下显示 13 | 'TMPL_PARSE_STRING'=>array( 14 | // __PUBLIC__/upload --> /Public/upload -->http://appname-public.stor.sinaapp.com/upload 15 | '/Public/upload'=>file_domain('think-public').'/upload' 16 | ) 17 | ); 18 | -------------------------------------------------------------------------------- /ThinkPHP/Extend/Engine/Cluster/DefaultApp/Conf/config_sae.php: -------------------------------------------------------------------------------- 1 | 'mysql', // 数据库类型 5 | 'DB_DEPLOY_TYPE'=> 1, 6 | 'DB_RW_SEPARATE'=>true, 7 | 'DB_HOST'=> SAE_MYSQL_HOST_M.','.SAE_MYSQL_HOST_S, // 服务器地址 8 | 'DB_NAME'=> SAE_MYSQL_DB, // 数据库名 9 | 'DB_USER'=> SAE_MYSQL_USER, // 用户名 10 | 'DB_PWD'=> SAE_MYSQL_PASS, // 密码 11 | 'DB_PORT'=> SAE_MYSQL_PORT, // 端口 12 | //更改模板替换变量,让普通能在所有平台下显示 13 | 'TMPL_PARSE_STRING'=>array( 14 | // __PUBLIC__/upload --> /Public/upload -->http://appname-public.stor.sinaapp.com/upload 15 | '/Public/upload'=>file_domain('Public').'/upload' 16 | ) 17 | ); 18 | -------------------------------------------------------------------------------- /ThinkPHP/Extend/Engine/Cluster/DefaultApp/IO/ace.php: -------------------------------------------------------------------------------- 1 | ACE是阿里巴巴的PaaS云平台,但是现在还未对外公开。等ACE对外公开后将会实现这个文件的代码 2 | -------------------------------------------------------------------------------- /ThinkPHP/Extend/Engine/Cluster/DefaultApp/Lang/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/ThinkPHP/Extend/Engine/Cluster/DefaultApp/Lang/index.html -------------------------------------------------------------------------------- /ThinkPHP/Extend/Engine/Cluster/DefaultApp/Lib/Behavior/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/ThinkPHP/Extend/Engine/Cluster/DefaultApp/Lib/Behavior/index.html -------------------------------------------------------------------------------- /ThinkPHP/Extend/Engine/Cluster/DefaultApp/Lib/Model/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/ThinkPHP/Extend/Engine/Cluster/DefaultApp/Lib/Model/index.html -------------------------------------------------------------------------------- /ThinkPHP/Extend/Engine/Cluster/DefaultApp/Lib/Widget/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/ThinkPHP/Extend/Engine/Cluster/DefaultApp/Lib/Widget/index.html -------------------------------------------------------------------------------- /ThinkPHP/Extend/Engine/Cluster/DefaultApp/Tpl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/ThinkPHP/Extend/Engine/Cluster/DefaultApp/Tpl/index.html -------------------------------------------------------------------------------- /ThinkPHP/Extend/Engine/Cluster/build_first_app.php: -------------------------------------------------------------------------------- 1 | getUrl($domain,''),'/'); 8 | } -------------------------------------------------------------------------------- /ThinkPHP/Extend/Engine/Sae/DefaultApp/Common/common.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ThinkPHP/Extend/Engine/Sae/DefaultApp/Common/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/ThinkPHP/Extend/Engine/Sae/DefaultApp/Common/index.html -------------------------------------------------------------------------------- /ThinkPHP/Extend/Engine/Sae/DefaultApp/Conf/config.php: -------------------------------------------------------------------------------- 1 | '配置值' 5 | 'SHOW_PAGE_TRACE'=>true, 6 | 'URL_HTML_SUFFIX'=>'.html' 7 | ); 8 | ?> -------------------------------------------------------------------------------- /ThinkPHP/Extend/Engine/Sae/DefaultApp/Conf/config_sae.php: -------------------------------------------------------------------------------- 1 | array( 4 | // __PUBLIC__/upload --> /Public/upload -->http://appname-public.stor.sinaapp.com/upload 5 | '/Public/upload'=>sae_storage_root('Public').'/upload' 6 | ) 7 | ); -------------------------------------------------------------------------------- /ThinkPHP/Extend/Engine/Sae/DefaultApp/Lang/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/ThinkPHP/Extend/Engine/Sae/DefaultApp/Lang/index.html -------------------------------------------------------------------------------- /ThinkPHP/Extend/Engine/Sae/DefaultApp/Lib/Behavior/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/ThinkPHP/Extend/Engine/Sae/DefaultApp/Lib/Behavior/index.html -------------------------------------------------------------------------------- /ThinkPHP/Extend/Engine/Sae/DefaultApp/Lib/Model/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/ThinkPHP/Extend/Engine/Sae/DefaultApp/Lib/Model/index.html -------------------------------------------------------------------------------- /ThinkPHP/Extend/Engine/Sae/DefaultApp/Lib/Widget/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockefys/commlib/06ba282bfa4079ccf28353b0a57348bb860ec7d9/ThinkPHP/Extend/Engine/Sae/DefaultApp/Lib/Widget/index.html -------------------------------------------------------------------------------- /ThinkPHP/Extend/Engine/Sae/DefaultApp/Tpl/Index/upload.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
欢迎使用 ThinkPHP!