├── .DS_Store ├── .gitattributes ├── README.md ├── WebRoot ├── META-INF │ └── MANIFEST.MF ├── My97DatePicker │ ├── My97DatePicker.htm │ ├── WdatePicker.js │ ├── calendar.js │ ├── config.js │ ├── lang │ │ ├── en.js │ │ ├── zh-cn.js │ │ └── zh-tw.js │ ├── skin │ │ ├── WdatePicker.css │ │ ├── datePicker.gif │ │ ├── default │ │ │ ├── datepicker.css │ │ │ └── img.gif │ │ └── whyGreen │ │ │ ├── bg.jpg │ │ │ ├── datepicker.css │ │ │ └── img.gif │ └── 开发包 │ │ ├── lang │ │ ├── en.js │ │ ├── zh-cn.js │ │ └── zh-tw.js │ │ ├── readme.txt │ │ └── skin │ │ ├── WdatePicker.css │ │ ├── datePicker.gif │ │ ├── default │ │ ├── datepicker.css │ │ └── img.gif │ │ └── whyGreen │ │ ├── bg.jpg │ │ ├── datepicker.css │ │ └── img.gif ├── WEB-INF │ ├── classes │ │ └── com │ │ │ ├── action │ │ │ ├── chuqin_servlet.class │ │ │ ├── gonggao_servlet.class │ │ │ ├── gongzi_servlet.class │ │ │ ├── org_servlet.class │ │ │ ├── qiandao_servlet.class │ │ │ ├── qiantui_servlet.class │ │ │ ├── qingjia_servlet.class │ │ │ └── yuangong_servlet.class │ │ │ ├── dao │ │ │ └── DB.class │ │ │ ├── orm │ │ │ ├── TAdmin.class │ │ │ ├── TChuqin.class │ │ │ ├── TQiandao.class │ │ │ ├── TQiantui.class │ │ │ ├── TYuangong.class │ │ │ ├── Tgonggao.class │ │ │ ├── Tgongzi.class │ │ │ ├── Torg.class │ │ │ └── Tqingjia.class │ │ │ ├── service │ │ │ ├── liuService.class │ │ │ └── loginService.class │ │ │ └── util │ │ │ └── EncodingFilter.class │ ├── dwr.xml │ ├── lib │ │ ├── FCKeditor-2.3.jar │ │ ├── commons-fileupload-1.2.1.jar │ │ ├── commons-io-1.3.2.jar │ │ ├── dwr.jar │ │ ├── fckeditor-java-core-2.4.1.jar │ │ ├── javaee.jar │ │ ├── jspsmartupload.jar │ │ ├── jstl-1.2.jar │ │ ├── jtds-1.2.jar │ │ ├── msbase.jar │ │ ├── mssqlserver.jar │ │ ├── msutil.jar │ │ ├── mysql-connector-java-5.0.4-bin.jar │ │ ├── slf4j-api-1.5.2.jar │ │ ├── slf4j-simple-1.5.2.jar │ │ └── sqljdbc.jar │ └── web.xml ├── admin │ ├── chuqin │ │ ├── chuqinMana.jsp │ │ └── chuqinMine.jsp │ ├── footer.jsp │ ├── gonggao │ │ ├── gonggaoAdd.jsp │ │ ├── gonggaoAll.jsp │ │ ├── gonggaoDetailHou.jsp │ │ └── gonggaoMana.jsp │ ├── gongzi │ │ ├── gongziAdd.jsp │ │ ├── gongziMana.jsp │ │ └── gongziMine.jsp │ ├── index.jsp │ ├── left.jsp │ ├── org │ │ ├── orgAll.jsp │ │ ├── orgMana.jsp │ │ ├── orgPre.jsp │ │ ├── org_ding_add.jsp │ │ └── org_xia_add.jsp │ ├── qiandao │ │ ├── qiandaoAdd.jsp │ │ ├── qiandaoMana.jsp │ │ └── qiandaoMine.jsp │ ├── qiantui │ │ ├── qiantuiAdd.jsp │ │ └── qiantuiMine.jsp │ ├── qingjia │ │ ├── qingjiaAdd.jsp │ │ ├── qingjiaMana.jsp │ │ ├── qingjiaMine.jsp │ │ └── qingjiaShenhe.jsp │ ├── right.jsp │ ├── top.jsp │ ├── userinfo │ │ ├── userPw.jsp │ │ └── yuangonginfo.jsp │ └── yuangong │ │ ├── yuangongAdd.jsp │ │ ├── yuangongMana.jsp │ │ └── yuangongSelect.jsp ├── ayuangong │ ├── footer.jsp │ ├── index.jsp │ ├── left.jsp │ ├── right.jsp │ └── top.jsp ├── common │ ├── msg.jsp │ └── success.jsp ├── css │ ├── base.css │ └── dtree.css ├── fckeditor │ ├── _documentation.html │ ├── _samples │ │ ├── _plugins │ │ │ ├── findreplace │ │ │ │ ├── fckplugin.js │ │ │ │ ├── find.gif │ │ │ │ ├── find.html │ │ │ │ ├── lang │ │ │ │ │ ├── en.js │ │ │ │ │ ├── fr.js │ │ │ │ │ └── it.js │ │ │ │ ├── replace.gif │ │ │ │ └── replace.html │ │ │ └── samples │ │ │ │ └── fckplugin.js │ │ ├── adobeair │ │ │ ├── application.xml │ │ │ ├── icons │ │ │ │ ├── 128.png │ │ │ │ ├── 16.png │ │ │ │ ├── 32.png │ │ │ │ └── 48.png │ │ │ ├── package.bat │ │ │ ├── run.bat │ │ │ ├── sample01.html │ │ │ └── sample01_cert.pfx │ │ ├── afp │ │ │ ├── fck.afpa │ │ │ ├── fck.afpa.code │ │ │ ├── sample01.afp │ │ │ ├── sample02.afp │ │ │ ├── sample03.afp │ │ │ ├── sample04.afp │ │ │ └── sampleposteddata.afp │ │ ├── asp │ │ │ ├── sample01.asp │ │ │ ├── sample02.asp │ │ │ ├── sample03.asp │ │ │ ├── sample04.asp │ │ │ └── sampleposteddata.asp │ │ ├── cfm │ │ │ ├── sample01.cfm │ │ │ ├── sample01_mx.cfm │ │ │ ├── sample02.cfm │ │ │ ├── sample02_mx.cfm │ │ │ ├── sample03.cfm │ │ │ ├── sample03_mx.cfm │ │ │ ├── sample04.cfm │ │ │ ├── sample04_mx.cfm │ │ │ └── sampleposteddata.cfm │ │ ├── default.html │ │ ├── html │ │ │ ├── assets │ │ │ │ ├── sample06.config.js │ │ │ │ ├── sample11_frame.html │ │ │ │ ├── sample14.config.js │ │ │ │ ├── sample14.styles.css │ │ │ │ ├── sample15.config.js │ │ │ │ ├── sample16.config.js │ │ │ │ ├── sample16.fla │ │ │ │ ├── sample16.swf │ │ │ │ └── swfobject.js │ │ │ ├── sample01.html │ │ │ ├── sample02.html │ │ │ ├── sample03.html │ │ │ ├── sample04.html │ │ │ ├── sample05.html │ │ │ ├── sample06.html │ │ │ ├── sample07.html │ │ │ ├── sample08.html │ │ │ ├── sample09.html │ │ │ ├── sample10.html │ │ │ ├── sample11.html │ │ │ ├── sample12.html │ │ │ ├── sample13.html │ │ │ ├── sample14.html │ │ │ ├── sample15.html │ │ │ └── sample16.html │ │ ├── lasso │ │ │ ├── sample01.lasso │ │ │ ├── sample02.lasso │ │ │ ├── sample03.lasso │ │ │ ├── sample04.lasso │ │ │ └── sampleposteddata.lasso │ │ ├── perl │ │ │ ├── sample01.cgi │ │ │ ├── sample02.cgi │ │ │ ├── sample03.cgi │ │ │ ├── sample04.cgi │ │ │ └── sampleposteddata.cgi │ │ ├── php │ │ │ ├── sample01.php │ │ │ ├── sample02.php │ │ │ ├── sample03.php │ │ │ ├── sample04.php │ │ │ └── sampleposteddata.php │ │ ├── py │ │ │ ├── sample01.py │ │ │ └── sampleposteddata.py │ │ ├── sample.css │ │ └── sampleslist.html │ ├── _upgrade.html │ ├── _whatsnew.html │ ├── _whatsnew_history.html │ ├── editor │ │ ├── _source │ │ │ ├── classes │ │ │ │ ├── fckcontextmenu.js │ │ │ │ ├── fckdataprocessor.js │ │ │ │ ├── fckdocumentfragment_gecko.js │ │ │ │ ├── fckdocumentfragment_ie.js │ │ │ │ ├── fckdomrange.js │ │ │ │ ├── fckdomrange_gecko.js │ │ │ │ ├── fckdomrange_ie.js │ │ │ │ ├── fckdomrangeiterator.js │ │ │ │ ├── fckeditingarea.js │ │ │ │ ├── fckelementpath.js │ │ │ │ ├── fckenterkey.js │ │ │ │ ├── fckevents.js │ │ │ │ ├── fckhtmliterator.js │ │ │ │ ├── fckicon.js │ │ │ │ ├── fckiecleanup.js │ │ │ │ ├── fckimagepreloader.js │ │ │ │ ├── fckkeystrokehandler.js │ │ │ │ ├── fckmenublock.js │ │ │ │ ├── fckmenublockpanel.js │ │ │ │ ├── fckmenuitem.js │ │ │ │ ├── fckpanel.js │ │ │ │ ├── fckplugin.js │ │ │ │ ├── fckspecialcombo.js │ │ │ │ ├── fckstyle.js │ │ │ │ ├── fcktoolbar.js │ │ │ │ ├── fcktoolbarbreak_gecko.js │ │ │ │ ├── fcktoolbarbreak_ie.js │ │ │ │ ├── fcktoolbarbutton.js │ │ │ │ ├── fcktoolbarbuttonui.js │ │ │ │ ├── fcktoolbarfontformatcombo.js │ │ │ │ ├── fcktoolbarfontscombo.js │ │ │ │ ├── fcktoolbarfontsizecombo.js │ │ │ │ ├── fcktoolbarpanelbutton.js │ │ │ │ ├── fcktoolbarspecialcombo.js │ │ │ │ ├── fcktoolbarstylecombo.js │ │ │ │ ├── fckw3crange.js │ │ │ │ ├── fckxml.js │ │ │ │ ├── fckxml_gecko.js │ │ │ │ └── fckxml_ie.js │ │ │ ├── commandclasses │ │ │ │ ├── fck_othercommands.js │ │ │ │ ├── fckblockquotecommand.js │ │ │ │ ├── fckcorestylecommand.js │ │ │ │ ├── fckfitwindow.js │ │ │ │ ├── fckindentcommands.js │ │ │ │ ├── fckjustifycommands.js │ │ │ │ ├── fcklistcommands.js │ │ │ │ ├── fcknamedcommand.js │ │ │ │ ├── fckpasteplaintextcommand.js │ │ │ │ ├── fckpastewordcommand.js │ │ │ │ ├── fckremoveformatcommand.js │ │ │ │ ├── fckshowblocks.js │ │ │ │ ├── fckspellcheckcommand_gecko.js │ │ │ │ ├── fckspellcheckcommand_ie.js │ │ │ │ ├── fckstylecommand.js │ │ │ │ ├── fcktablecommand.js │ │ │ │ └── fcktextcolorcommand.js │ │ │ ├── fckconstants.js │ │ │ ├── fckeditorapi.js │ │ │ ├── fckjscoreextensions.js │ │ │ ├── fckscriptloader.js │ │ │ └── internals │ │ │ │ ├── fck.js │ │ │ │ ├── fck_contextmenu.js │ │ │ │ ├── fck_gecko.js │ │ │ │ ├── fck_ie.js │ │ │ │ ├── fckbrowserinfo.js │ │ │ │ ├── fckcodeformatter.js │ │ │ │ ├── fckcommands.js │ │ │ │ ├── fckconfig.js │ │ │ │ ├── fckdebug.js │ │ │ │ ├── fckdebug_empty.js │ │ │ │ ├── fckdialog.js │ │ │ │ ├── fckdocumentprocessor.js │ │ │ │ ├── fckdomtools.js │ │ │ │ ├── fcklanguagemanager.js │ │ │ │ ├── fcklisthandler.js │ │ │ │ ├── fcklistslib.js │ │ │ │ ├── fckplugins.js │ │ │ │ ├── fckregexlib.js │ │ │ │ ├── fckselection.js │ │ │ │ ├── fckselection_gecko.js │ │ │ │ ├── fckselection_ie.js │ │ │ │ ├── fckstyles.js │ │ │ │ ├── fcktablehandler.js │ │ │ │ ├── fcktablehandler_gecko.js │ │ │ │ ├── fcktablehandler_ie.js │ │ │ │ ├── fcktoolbaritems.js │ │ │ │ ├── fcktoolbarset.js │ │ │ │ ├── fcktools.js │ │ │ │ ├── fcktools_gecko.js │ │ │ │ ├── fcktools_ie.js │ │ │ │ ├── fckundo.js │ │ │ │ ├── fckurlparams.js │ │ │ │ ├── fckxhtml.js │ │ │ │ ├── fckxhtml_gecko.js │ │ │ │ ├── fckxhtml_ie.js │ │ │ │ └── fckxhtmlentities.js │ │ ├── css │ │ │ ├── behaviors │ │ │ │ ├── disablehandles.htc │ │ │ │ └── showtableborders.htc │ │ │ ├── fck_editorarea.css │ │ │ ├── fck_internal.css │ │ │ ├── fck_showtableborders_gecko.css │ │ │ └── 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 │ │ │ │ ├── fck_anchor.gif │ │ │ │ ├── fck_flashlogo.gif │ │ │ │ ├── fck_hiddenfield.gif │ │ │ │ ├── fck_pagebreak.gif │ │ │ │ └── fck_plugin.gif │ │ ├── dialog │ │ │ ├── common │ │ │ │ ├── fck_dialog_common.css │ │ │ │ ├── fck_dialog_common.js │ │ │ │ └── images │ │ │ │ │ ├── locked.gif │ │ │ │ │ ├── reset.gif │ │ │ │ │ └── unlocked.gif │ │ │ ├── fck_about.html │ │ │ ├── fck_about │ │ │ │ ├── logo_fckeditor.gif │ │ │ │ ├── logo_fredck.gif │ │ │ │ └── sponsors │ │ │ │ │ └── spellchecker_net.gif │ │ │ ├── fck_anchor.html │ │ │ ├── fck_button.html │ │ │ ├── fck_checkbox.html │ │ │ ├── fck_colorselector.html │ │ │ ├── fck_div.html │ │ │ ├── fck_docprops │ │ │ │ └── fck_document_preview.html │ │ │ ├── fck_flash.html │ │ │ ├── fck_flash │ │ │ │ ├── fck_flash.js │ │ │ │ └── fck_flash_preview.html │ │ │ ├── fck_form.html │ │ │ ├── fck_hiddenfield.html │ │ │ ├── fck_image.html │ │ │ ├── fck_image │ │ │ │ ├── fck_image.js │ │ │ │ └── fck_image_preview.html │ │ │ ├── fck_link.html │ │ │ ├── fck_link │ │ │ │ └── fck_link.js │ │ │ ├── fck_listprop.html │ │ │ ├── fck_paste.html │ │ │ ├── fck_radiobutton.html │ │ │ ├── fck_replace.html │ │ │ ├── fck_select.html │ │ │ ├── fck_select │ │ │ │ └── fck_select.js │ │ │ ├── fck_smiley.html │ │ │ ├── fck_source.html │ │ │ ├── fck_specialchar.html │ │ │ ├── fck_spellerpages.html │ │ │ ├── fck_spellerpages │ │ │ │ └── spellerpages │ │ │ │ │ ├── blank.html │ │ │ │ │ ├── controlWindow.js │ │ │ │ │ ├── controls.html │ │ │ │ │ ├── server-scripts │ │ │ │ │ ├── spellchecker.cfm │ │ │ │ │ ├── spellchecker.php │ │ │ │ │ └── spellchecker.pl │ │ │ │ │ ├── spellChecker.js │ │ │ │ │ ├── spellchecker.html │ │ │ │ │ ├── spellerStyle.css │ │ │ │ │ └── wordWindow.js │ │ │ ├── fck_table.html │ │ │ ├── fck_tablecell.html │ │ │ ├── fck_template.html │ │ │ ├── fck_template │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ ├── fck_textarea.html │ │ │ └── fck_textfield.html │ │ ├── dtd │ │ │ ├── fck_dtd_test.html │ │ │ ├── fck_xhtml10strict.js │ │ │ └── fck_xhtml10transitional.js │ │ ├── fckdebug.html │ │ ├── fckdialog.html │ │ ├── fckeditor.html │ │ ├── fckeditor.original.html │ │ ├── filemanager │ │ │ ├── browser │ │ │ │ └── default │ │ │ │ │ ├── browser.css │ │ │ │ │ ├── browser.html │ │ │ │ │ ├── frmactualfolder.html │ │ │ │ │ ├── frmcreatefolder.html │ │ │ │ │ ├── frmfolders.html │ │ │ │ │ ├── frmresourceslist.html │ │ │ │ │ ├── frmresourcetype.html │ │ │ │ │ ├── frmupload.html │ │ │ │ │ ├── images │ │ │ │ │ ├── ButtonArrow.gif │ │ │ │ │ ├── Folder.gif │ │ │ │ │ ├── Folder32.gif │ │ │ │ │ ├── FolderOpened.gif │ │ │ │ │ ├── FolderOpened32.gif │ │ │ │ │ ├── FolderUp.gif │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── 32 │ │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ │ ├── htm.gif │ │ │ │ │ │ │ ├── html.gif │ │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ │ ├── png.gif │ │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ │ └── zip.gif │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ ├── htm.gif │ │ │ │ │ │ ├── html.gif │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ ├── png.gif │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ └── zip.gif │ │ │ │ │ └── spacer.gif │ │ │ │ │ └── js │ │ │ │ │ ├── common.js │ │ │ │ │ └── fckxml.js │ │ │ └── connectors │ │ │ │ ├── asp │ │ │ │ ├── basexml.asp │ │ │ │ ├── class_upload.asp │ │ │ │ ├── commands.asp │ │ │ │ ├── config.asp │ │ │ │ ├── connector.asp │ │ │ │ ├── io.asp │ │ │ │ ├── upload.asp │ │ │ │ └── util.asp │ │ │ │ ├── aspx │ │ │ │ ├── config.ascx │ │ │ │ ├── connector.aspx │ │ │ │ └── upload.aspx │ │ │ │ ├── cfm │ │ │ │ ├── ImageObject.cfc │ │ │ │ ├── cf5_connector.cfm │ │ │ │ ├── cf5_upload.cfm │ │ │ │ ├── cf_basexml.cfm │ │ │ │ ├── cf_commands.cfm │ │ │ │ ├── cf_connector.cfm │ │ │ │ ├── cf_io.cfm │ │ │ │ ├── cf_upload.cfm │ │ │ │ ├── cf_util.cfm │ │ │ │ ├── config.cfm │ │ │ │ ├── connector.cfm │ │ │ │ ├── image.cfc │ │ │ │ └── upload.cfm │ │ │ │ ├── lasso │ │ │ │ ├── config.lasso │ │ │ │ ├── connector.lasso │ │ │ │ └── upload.lasso │ │ │ │ ├── perl │ │ │ │ ├── basexml.pl │ │ │ │ ├── commands.pl │ │ │ │ ├── connector.cgi │ │ │ │ ├── io.pl │ │ │ │ ├── upload.cgi │ │ │ │ ├── upload_fck.pl │ │ │ │ └── util.pl │ │ │ │ ├── php │ │ │ │ ├── basexml.php │ │ │ │ ├── commands.php │ │ │ │ ├── config.php │ │ │ │ ├── connector.php │ │ │ │ ├── io.php │ │ │ │ ├── upload.php │ │ │ │ └── util.php │ │ │ │ ├── py │ │ │ │ ├── config.py │ │ │ │ ├── connector.py │ │ │ │ ├── fckcommands.py │ │ │ │ ├── fckconnector.py │ │ │ │ ├── fckoutput.py │ │ │ │ ├── fckutil.py │ │ │ │ ├── htaccess.txt │ │ │ │ ├── upload.py │ │ │ │ ├── wsgi.py │ │ │ │ └── zope.py │ │ │ │ ├── test.html │ │ │ │ └── uploadtest.html │ │ ├── img │ │ │ ├── anchor.gif │ │ │ ├── arrow_ltr.gif │ │ │ ├── arrow_rtl.gif │ │ │ ├── smiley │ │ │ │ └── msn │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── cake.gif │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── embaressed_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 │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ └── wink_smile.gif │ │ │ └── spacer.gif │ │ ├── js │ │ │ ├── fckadobeair.js │ │ │ ├── fckeditorcode_gecko.js │ │ │ └── fckeditorcode_ie.js │ │ ├── lang │ │ │ ├── _translationstatus.txt │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-uk.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── autogrow │ │ │ │ └── fckplugin.js │ │ │ ├── bbcode │ │ │ │ ├── _sample │ │ │ │ │ ├── sample.config.js │ │ │ │ │ └── sample.html │ │ │ │ └── fckplugin.js │ │ │ ├── dragresizetable │ │ │ │ └── fckplugin.js │ │ │ ├── placeholder │ │ │ │ ├── fck_placeholder.html │ │ │ │ ├── fckplugin.js │ │ │ │ ├── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── it.js │ │ │ │ │ └── pl.js │ │ │ │ └── placeholder.gif │ │ │ ├── simplecommands │ │ │ │ └── fckplugin.js │ │ │ └── tablecommands │ │ │ │ └── fckplugin.js │ │ └── skins │ │ │ ├── _fckviewstrips.html │ │ │ ├── default │ │ │ ├── fck_dialog.css │ │ │ ├── fck_dialog_ie6.js │ │ │ ├── fck_editor.css │ │ │ ├── fck_strip.gif │ │ │ └── images │ │ │ │ ├── dialog.sides.gif │ │ │ │ ├── dialog.sides.png │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ ├── sprites.gif │ │ │ │ ├── sprites.png │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ ├── toolbar.end.gif │ │ │ │ ├── toolbar.expand.gif │ │ │ │ ├── toolbar.separator.gif │ │ │ │ └── toolbar.start.gif │ │ │ ├── office2003 │ │ │ ├── fck_dialog.css │ │ │ ├── fck_dialog_ie6.js │ │ │ ├── fck_editor.css │ │ │ ├── fck_strip.gif │ │ │ └── images │ │ │ │ ├── dialog.sides.gif │ │ │ │ ├── dialog.sides.png │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ ├── sprites.gif │ │ │ │ ├── sprites.png │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ ├── toolbar.bg.gif │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ ├── toolbar.end.gif │ │ │ │ ├── toolbar.expand.gif │ │ │ │ ├── toolbar.separator.gif │ │ │ │ └── toolbar.start.gif │ │ │ └── silver │ │ │ ├── fck_dialog.css │ │ │ ├── fck_dialog_ie6.js │ │ │ ├── fck_editor.css │ │ │ ├── fck_strip.gif │ │ │ └── images │ │ │ ├── dialog.sides.gif │ │ │ ├── dialog.sides.png │ │ │ ├── dialog.sides.rtl.png │ │ │ ├── sprites.gif │ │ │ ├── sprites.png │ │ │ ├── toolbar.arrowright.gif │ │ │ ├── toolbar.buttonarrow.gif │ │ │ ├── toolbar.buttonbg.gif │ │ │ ├── toolbar.collapse.gif │ │ │ ├── toolbar.end.gif │ │ │ ├── toolbar.expand.gif │ │ │ ├── toolbar.separator.gif │ │ │ └── toolbar.start.gif │ ├── fckconfig.js │ ├── fckeditor.afp │ ├── fckeditor.asp │ ├── fckeditor.cfc │ ├── fckeditor.cfm │ ├── fckeditor.js │ ├── fckeditor.lasso │ ├── fckeditor.pl │ ├── fckeditor.py │ ├── fckpackager.xml │ ├── fckstyles.xml │ ├── fcktemplates.xml │ ├── fckutils.cfm │ └── license.txt ├── images │ ├── bg.JPG │ ├── bg.gif │ ├── bg_20.gif │ ├── but1_1.gif │ ├── dialogclose.gif │ ├── fail.jpg │ ├── fon.gif │ ├── fon_bot.gif │ ├── fon_but.gif │ ├── fon_top.gif │ ├── index_32.gif │ ├── inputbg.gif │ ├── l1.gif │ ├── l11.gif │ ├── lbg.gif │ ├── loading.gif │ ├── login.gif │ ├── login01.jpg │ ├── login02.jpg │ ├── login03.jpg │ ├── login04.jpg │ ├── login05.jpg │ ├── m3.gif │ └── titlebg.JPG ├── img │ ├── base.gif │ ├── cd.gif │ ├── dialogclose.gif │ ├── dian.jpg │ ├── empty.gif │ ├── folder.gif │ ├── folderopen.gif │ ├── globe.gif │ ├── head-mark4.gif │ ├── imgfolder.gif │ ├── join.gif │ ├── joinbottom.gif │ ├── line.gif │ ├── loading.gif │ ├── minus.gif │ ├── minusbottom.gif │ ├── musicfolder.gif │ ├── nolines_minus.gif │ ├── nolines_plus.gif │ ├── page.gif │ ├── plus.gif │ ├── plusbottom.gif │ ├── question.gif │ └── trash.gif ├── jquery │ ├── calendar.gif │ ├── jquery-1.2.6.js │ ├── ui.datepicker-zh-CN.js │ ├── ui.datepicker.css │ └── ui.datepicker.js ├── js │ ├── dtree.js │ ├── jquery-1.3.2.min.js │ ├── popup.js │ ├── popup_shuaxin.js │ ├── public.js │ ├── selectMonth.css │ └── selectMonth.js ├── login.jsp ├── loginSuccess.jsp ├── updown │ └── updown.jsp └── upload │ ├── upload.jsp │ └── upload_re.jsp ├── src └── com │ ├── action │ ├── chuqin_servlet.java │ ├── gonggao_servlet.java │ ├── gongzi_servlet.java │ ├── org_servlet.java │ ├── qiandao_servlet.java │ ├── qiantui_servlet.java │ ├── qingjia_servlet.java │ └── yuangong_servlet.java │ ├── dao │ └── DB.java │ ├── orm │ ├── TAdmin.java │ ├── TChuqin.java │ ├── TQiandao.java │ ├── TQiantui.java │ ├── TYuangong.java │ ├── Tgonggao.java │ ├── Tgongzi.java │ ├── Torg.java │ └── Tqingjia.java │ ├── service │ ├── liuService.java │ └── loginService.java │ └── util │ └── EncodingFilter.java └── 文档 ├── QQ图片20190509233845.jpg ├── QQ图片20200327234637.jpg ├── 开题报告.doc ├── 毕业论文.doc └── 答辩幻灯片.ppt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=java 2 | *.css linguist-language=java 3 | *.html linguist-language=java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 全目录 2 | 3 | [更多系统、论文,供君选择 ~~>](https://www.yuque.com/wisebit/blog) 4 | 5 | # 79.PersonnelManagementSystem 6 | 7 |

群: 983063232(入群获取sql文件)

8 |

QQ: 206157502(加好友获取sql文件)

9 | 10 |

79.人事管理系统

11 | 12 | 13 | 14 | 15 | 16 |

17 | 18 | 19 | 20 | 21 |

22 | 23 | # 简介 24 | 25 | 26 | > 本代码来源于网络,仅供学习参考使用,请入群(983063232)后联系群主索要sql文件! 27 | > 28 | > 提供1.远程部署/2.修改代码/3.设计文档指导/4.框架代码讲解等服务 29 | > 30 | > 后端登录: http://localhost:8080/rsgz/ 31 | > 32 | > 管理员: 用户名: admin 密码: 123456 33 | > 34 | > 用户: 用户名: 0001 密码: 123456 35 | 36 | 37 | 38 | 39 | # 环境 40 | 41 | - IntelliJ IDEA 2009.3 42 | 43 | - Mysql 5.7.26 44 | 45 | - Tomcat 7.0.73 46 | 47 | - JDK 1.8 48 | 49 | 50 | 51 | 52 | ## 缩略图 53 | 54 | ![](https://bitwise.oss-cn-heyuan.aliyuncs.com/2024/9/10/b04d0e5a-1410-450e-92c6-ea241809eec1.png) 55 | ![](https://bitwise.oss-cn-heyuan.aliyuncs.com/2024/9/10/eeef7509-c9db-4946-8c10-07c9e2dcb34f.png) 56 | ![](https://bitwise.oss-cn-heyuan.aliyuncs.com/2024/9/10/77b72155-c0ec-49f9-84fb-9557dd27c991.png) 57 | ![](https://bitwise.oss-cn-heyuan.aliyuncs.com/2024/9/10/b0570e5e-bc26-4b1d-af7f-3009ebedc9c0.png) 58 | ![](https://bitwise.oss-cn-heyuan.aliyuncs.com/2024/9/10/d0052124-f6e0-47e1-bca6-fcb28b2c56c0.png) 59 | 60 | 61 | 62 | 63 | -------------------------------------------------------------------------------- /WebRoot/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/My97DatePicker.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | My97DatePicker 5 | 6 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/config.js: -------------------------------------------------------------------------------- 1 | var langList = 2 | [ 3 | {name:'en', charset:'UTF-8'}, 4 | {name:'zh-cn', charset:'UTF-8'}, 5 | {name:'zh-tw', charset:'UTF-8'} 6 | ]; 7 | 8 | var skinList = 9 | [ 10 | {name:'default', charset:'UTF-8'}, 11 | {name:'whyGreen', charset:'UTF-8'} 12 | ]; -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/lang/en.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "Invalid date or the date out of range,redo or not?", 3 | aWeekStr: ["wk", "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 4 | aLongWeekStr:["wk","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"], 5 | aMonStr: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 6 | aLongMonStr: ["January","February","March","April","May","June","July","August","September","October","November","December"], 7 | clearStr: "Clear", 8 | todayStr: "Today", 9 | okStr: "OK", 10 | updateStr: "OK", 11 | timeStr: "Time", 12 | quickStr: "Quick Selection", 13 | err_1: 'MinDate Cannot be bigger than MaxDate!' 14 | } -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "\u4E0D\u5408\u6CD5\u7684\u65E5\u671F\u683C\u5F0F\u6216\u8005\u65E5\u671F\u8D85\u51FA\u9650\u5B9A\u8303\u56F4,\u9700\u8981\u64A4\u9500\u5417?", 3 | aWeekStr: ["\u5468","\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"], 4 | aLongWeekStr:["\u5468","\u661F\u671F\u65E5","\u661F\u671F\u4E00","\u661F\u671F\u4E8C","\u661F\u671F\u4E09","\u661F\u671F\u56DB","\u661F\u671F\u4E94","\u661F\u671F\u516D"], 5 | aMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00","\u5341\u4E8C"], 6 | aLongMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00\u6708","\u5341\u4E8C\u6708"], 7 | clearStr: "\u6E05\u7A7A", 8 | todayStr: "\u4ECA\u5929", 9 | okStr: "\u786E\u5B9A", 10 | updateStr: "\u786E\u5B9A", 11 | timeStr: "\u65F6\u95F4", 12 | quickStr: "\u5FEB\u901F\u9009\u62E9", 13 | err_1: '\u6700\u5C0F\u65E5\u671F\u4E0D\u80FD\u5927\u4E8E\u6700\u5927\u65E5\u671F!' 14 | } -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/lang/zh-tw.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "\u4E0D\u5408\u6CD5\u7684\u65E5\u671F\u683C\u5F0F\u6216\u8005\u65E5\u671F\u8D85\u51FA\u9650\u5B9A\u7BC4\u570D,\u9700\u8981\u64A4\u92B7\u55CE?", 3 | aWeekStr: ["\u5468","\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"], 4 | aLongWeekStr:["\u5468","\u661F\u671F\u65E5","\u661F\u671F\u4E00","\u661F\u671F\u4E8C","\u661F\u671F\u4E09","\u661F\u671F\u56DB","\u661F\u671F\u4E94","\u661F\u671F\u516D"], 5 | aMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00","\u5341\u4E8C"], 6 | aLongMonStr: ["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00\u6708","\u5341\u4E8C\u6708"], 7 | clearStr: "\u6E05\u7A7A", 8 | todayStr: "\u4ECA\u5929", 9 | okStr: "\u78BA\u5B9A", 10 | updateStr: "\u78BA\u5B9A", 11 | timeStr: "\u6642\u9593", 12 | quickStr: "\u5FEB\u901F\u9078\u64C7", 13 | err_1: '\u6700\u5C0F\u65E5\u671F\u4E0D\u80FD\u5927\u65BC\u6700\u5927\u65E5\u671F!' 14 | } -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/skin/WdatePicker.css: -------------------------------------------------------------------------------- 1 | .Wdate{ 2 | border:#999 1px solid; 3 | height:20px; 4 | background:#fff url(datePicker.gif) no-repeat right; 5 | } 6 | 7 | .WdateFmtErr{ 8 | font-weight:bold; 9 | color:red; 10 | } -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/skin/datePicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/My97DatePicker/skin/datePicker.gif -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/skin/default/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/My97DatePicker/skin/default/img.gif -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/skin/whyGreen/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/My97DatePicker/skin/whyGreen/bg.jpg -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/skin/whyGreen/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/My97DatePicker/skin/whyGreen/img.gif -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/开发包/lang/en.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "Invalid date or the date out of range,redo or not?", 3 | aWeekStr: ["wk", "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 4 | aLongWeekStr:["wk","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"], 5 | aMonStr: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 6 | aLongMonStr: ["January","February","March","April","May","June","July","August","September","October","November","December"], 7 | clearStr: "Clear", 8 | todayStr: "Today", 9 | okStr: "OK", 10 | updateStr: "OK", 11 | timeStr: "Time", 12 | quickStr: "Quick Selection", 13 | err_1: 'MinDate Cannot be bigger than MaxDate!' 14 | } -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/开发包/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/My97DatePicker/开发包/lang/zh-cn.js -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/开发包/lang/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/My97DatePicker/开发包/lang/zh-tw.js -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/开发包/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/My97DatePicker/开发包/readme.txt -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/开发包/skin/WdatePicker.css: -------------------------------------------------------------------------------- 1 | .Wdate{ 2 | border:#999 1px solid; 3 | height:20px; 4 | background:#fff url(datePicker.gif) no-repeat right; 5 | } 6 | 7 | .WdateFmtErr{ 8 | font-weight:bold; 9 | color:red; 10 | } -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/开发包/skin/datePicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/My97DatePicker/开发包/skin/datePicker.gif -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/开发包/skin/default/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/My97DatePicker/开发包/skin/default/datepicker.css -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/开发包/skin/default/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/My97DatePicker/开发包/skin/default/img.gif -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/开发包/skin/whyGreen/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/My97DatePicker/开发包/skin/whyGreen/bg.jpg -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/开发包/skin/whyGreen/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/My97DatePicker/开发包/skin/whyGreen/datepicker.css -------------------------------------------------------------------------------- /WebRoot/My97DatePicker/开发包/skin/whyGreen/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/My97DatePicker/开发包/skin/whyGreen/img.gif -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/action/chuqin_servlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/classes/com/action/chuqin_servlet.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/action/gonggao_servlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/classes/com/action/gonggao_servlet.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/action/gongzi_servlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/classes/com/action/gongzi_servlet.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/action/org_servlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/classes/com/action/org_servlet.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/action/qiandao_servlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/classes/com/action/qiandao_servlet.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/action/qiantui_servlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/classes/com/action/qiantui_servlet.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/action/qingjia_servlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/classes/com/action/qingjia_servlet.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/action/yuangong_servlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/classes/com/action/yuangong_servlet.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/dao/DB.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/classes/com/dao/DB.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/orm/TAdmin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/classes/com/orm/TAdmin.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/orm/TChuqin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/classes/com/orm/TChuqin.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/orm/TQiandao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/classes/com/orm/TQiandao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/orm/TQiantui.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/classes/com/orm/TQiantui.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/orm/TYuangong.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/classes/com/orm/TYuangong.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/orm/Tgonggao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/classes/com/orm/Tgonggao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/orm/Tgongzi.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/classes/com/orm/Tgongzi.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/orm/Torg.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/classes/com/orm/Torg.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/orm/Tqingjia.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/classes/com/orm/Tqingjia.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/service/liuService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/classes/com/service/liuService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/service/loginService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/classes/com/service/loginService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/util/EncodingFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/classes/com/util/EncodingFilter.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/dwr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/FCKeditor-2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/lib/FCKeditor-2.3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-fileupload-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/lib/commons-fileupload-1.2.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-io-1.3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/lib/commons-io-1.3.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/dwr.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/lib/dwr.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/fckeditor-java-core-2.4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/lib/fckeditor-java-core-2.4.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/javaee.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/lib/javaee.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jspsmartupload.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/lib/jspsmartupload.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jstl-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/lib/jstl-1.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jtds-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/lib/jtds-1.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/msbase.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/lib/msbase.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/mssqlserver.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/lib/mssqlserver.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/msutil.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/lib/msutil.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/mysql-connector-java-5.0.4-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/lib/mysql-connector-java-5.0.4-bin.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/slf4j-api-1.5.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/lib/slf4j-api-1.5.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/slf4j-simple-1.5.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/lib/slf4j-simple-1.5.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/sqljdbc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/WEB-INF/lib/sqljdbc.jar -------------------------------------------------------------------------------- /WebRoot/admin/footer.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" pageEncoding="utf-8"%> 2 | 3 | 4 | foot 5 | 6 | 7 | 8 | 9 | 10 | 11 | 15 | 16 |
12 |

13 |

14 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /WebRoot/admin/gonggao/gonggaoDetailHou.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> 4 | <%@ page isELIgnored="false" %> 5 | <% 6 | String path = request.getContextPath(); 7 | %> 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 25 | 26 |
23 | 24 |
27 | 28 | 29 | -------------------------------------------------------------------------------- /WebRoot/admin/index.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" pageEncoding="UTF-8"%> 2 | <% 3 | String path = request.getContextPath(); 4 | %> 5 | 6 | 7 | 8 | 9 |   10 | 11 | 12 | 13 | 14 | 15 | 16 | 18 | 19 | 20 | 21 | 22 | 23 | <body LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH="0" MARGINHEIGHT="0"> 24 | </body> 25 | 26 | 27 | -------------------------------------------------------------------------------- /WebRoot/admin/right.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%> 2 | <% 3 | String path = request.getContextPath(); 4 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 5 | %> 6 | 7 | 8 | 9 | 10 | 11 | 12 | My JSP 'right.jsp' starting page 13 | 14 | 15 | 16 | 17 | 18 | 19 | 22 | 23 | 24 | 25 | 26 | This is my JSP page.
27 | 28 | 29 | -------------------------------------------------------------------------------- /WebRoot/admin/top.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> 4 | <%@ page isELIgnored="false" %> 5 | <% 6 | String path = request.getContextPath(); 7 | %> 8 | 9 | 10 | 11 | top 12 | 13 | 22 | 23 | 24 |
25 | 26 | 基于Java的人事管理系统 27 | 28 | 29 | 30 | 欢迎你:管理员   31 | 注销系统   32 | 33 | 34 | 欢迎你:${sessionScope.yuangong.xingming }   35 | 注销系统   36 | 37 | 38 | 欢迎你:${sessionScope.yuangong.xingming }   39 | 注销系统   40 | 41 | 42 |
43 | 44 | 45 | -------------------------------------------------------------------------------- /WebRoot/ayuangong/footer.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" pageEncoding="utf-8"%> 2 | 3 | 4 | foot 5 | 6 | 7 | 8 | 9 | 10 | 11 | 15 | 16 |
12 |

13 |

14 |
17 | 18 | 19 | -------------------------------------------------------------------------------- /WebRoot/ayuangong/index.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" pageEncoding="UTF-8"%> 2 | <% 3 | String path = request.getContextPath(); 4 | %> 5 | 6 | 7 | 8 | 9 |   10 | 11 | 12 | 13 | 14 | 15 | 16 | 18 | 19 | 20 | 21 | 22 | 23 | <body LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH="0" MARGINHEIGHT="0"> 24 | </body> 25 | 26 | 27 | -------------------------------------------------------------------------------- /WebRoot/ayuangong/right.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%> 2 | <% 3 | String path = request.getContextPath(); 4 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 5 | %> 6 | 7 | 8 | 9 | 10 | 11 | 12 | My JSP 'right.jsp' starting page 13 | 14 | 15 | 16 | 17 | 18 | 19 | 22 | 23 | 24 | 25 | 26 | This is my JSP page.
27 | 28 | 29 | -------------------------------------------------------------------------------- /WebRoot/ayuangong/top.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> 4 | <%@ page isELIgnored="false" %> 5 | <% 6 | String path = request.getContextPath(); 7 | %> 8 | 9 | 10 | 11 | top 12 | 13 | 22 | 23 | 24 |
25 | 26 | 基于Java的人事管理系统 27 | 28 | 29 | 30 | 欢迎你:管理员   31 | 注销系统   32 | 33 | 34 | 欢迎你:${sessionScope.yuangong.xingming }   35 | 注销系统   36 | 37 | 38 | 欢迎你:${sessionScope.yuangong.xingming }   39 | 注销系统   40 | 41 | 42 |
43 | 44 | 45 | -------------------------------------------------------------------------------- /WebRoot/common/msg.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> 4 | <%@ page isELIgnored="false" %> 5 | <% 6 | String path = request.getContextPath(); 7 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 8 | %> 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |
${requestScope.msg}
22 | 23 | 24 | -------------------------------------------------------------------------------- /WebRoot/common/success.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" pageEncoding="UTF-8"%> 2 | <% 3 | String path = request.getAttribute("path").toString(); 4 | String message = request.getAttribute("message").toString(); 5 | %> 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /WebRoot/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/css/base.css -------------------------------------------------------------------------------- /WebRoot/css/dtree.css: -------------------------------------------------------------------------------- 1 | /*--------------------------------------------------| 2 | | dTree 2.05 | www.destroydrop.com/javascript/tree/ | 3 | |---------------------------------------------------| 4 | | Copyright (c) 2002-2003 Geir Landr锟� | 5 | |--------------------------------------------------*/ 6 | 7 | .dtree { 8 | font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; 9 | font-size: 11px; 10 | color: #666; 11 | white-space: nowrap; 12 | } 13 | *{ font-family:Microsoft Yahei; font-size: 12px;} 14 | .dtree img { 15 | border: 0px; 16 | vertical-align: middle; 17 | } 18 | .dtree a { 19 | color: #333; 20 | text-decoration: none; 21 | } 22 | .dtree a.node, .dtree a.nodeSel { 23 | white-space: nowrap; 24 | padding: 1px 2px 1px 2px; 25 | } 26 | .dtree a.node:hover, .dtree a.nodeSel:hover { 27 | color: #333; 28 | text-decoration: underline; 29 | } 30 | .dtree a.nodeSel { 31 | background-color: #ADADAD; 32 | } 33 | .dtree .clip { 34 | overflow: hidden; 35 | } -------------------------------------------------------------------------------- /WebRoot/fckeditor/_documentation.html: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | 24 | FCKeditor - Documentation 25 | 26 | 30 | 31 | 32 |

33 | FCKeditor Documentation

34 |

35 | You can find the official documentation for FCKeditor online, at 36 | http://docs.fckeditor.net/.

37 | 38 | 39 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/_samples/_plugins/findreplace/fckplugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * This is the sample plugin definition file. 22 | */ 23 | 24 | // Register the related commands. 25 | FCKCommands.RegisterCommand( 'My_Find' , new FCKDialogCommand( FCKLang['DlgMyFindTitle'] , FCKLang['DlgMyFindTitle'] , FCKConfig.PluginsPath + 'findreplace/find.html' , 340, 170 ) ) ; 26 | FCKCommands.RegisterCommand( 'My_Replace' , new FCKDialogCommand( FCKLang['DlgMyReplaceTitle'], FCKLang['DlgMyReplaceTitle'] , FCKConfig.PluginsPath + 'findreplace/replace.html', 340, 200 ) ) ; 27 | 28 | // Create the "Find" toolbar button. 29 | var oFindItem = new FCKToolbarButton( 'My_Find', FCKLang['DlgMyFindTitle'] ) ; 30 | oFindItem.IconPath = FCKConfig.PluginsPath + 'findreplace/find.gif' ; 31 | 32 | FCKToolbarItems.RegisterItem( 'My_Find', oFindItem ) ; // 'My_Find' is the name used in the Toolbar config. 33 | 34 | // Create the "Replace" toolbar button. 35 | var oReplaceItem = new FCKToolbarButton( 'My_Replace', FCKLang['DlgMyReplaceTitle'] ) ; 36 | oReplaceItem.IconPath = FCKConfig.PluginsPath + 'findreplace/replace.gif' ; 37 | 38 | FCKToolbarItems.RegisterItem( 'My_Replace', oReplaceItem ) ; // 'My_Replace' is the name used in the Toolbar config. 39 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/_samples/_plugins/findreplace/find.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/_samples/_plugins/findreplace/find.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/_samples/_plugins/findreplace/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * English language file for the sample plugin. 22 | */ 23 | 24 | FCKLang['DlgMyReplaceTitle'] = 'Plugin - Replace' ; 25 | FCKLang['DlgMyReplaceFindLbl'] = 'Find what:' ; 26 | FCKLang['DlgMyReplaceReplaceLbl'] = 'Replace with:' ; 27 | FCKLang['DlgMyReplaceCaseChk'] = 'Match case' ; 28 | FCKLang['DlgMyReplaceReplaceBtn'] = 'Replace' ; 29 | FCKLang['DlgMyReplaceReplAllBtn'] = 'Replace All' ; 30 | FCKLang['DlgMyReplaceWordChk'] = 'Match whole word' ; 31 | 32 | FCKLang['DlgMyFindTitle'] = 'Plugin - Find' ; 33 | FCKLang['DlgMyFindFindBtn'] = 'Find' ; 34 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/_samples/_plugins/findreplace/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * French language file for the sample plugin. 22 | */ 23 | 24 | FCKLang['DlgMyReplaceTitle'] = 'Plugin - Remplacer' ; 25 | FCKLang['DlgMyReplaceFindLbl'] = 'Chercher:' ; 26 | FCKLang['DlgMyReplaceReplaceLbl'] = 'Remplacer par:' ; 27 | FCKLang['DlgMyReplaceCaseChk'] = 'Respecter la casse' ; 28 | FCKLang['DlgMyReplaceReplaceBtn'] = 'Remplacer' ; 29 | FCKLang['DlgMyReplaceReplAllBtn'] = 'Remplacer Tout' ; 30 | FCKLang['DlgMyReplaceWordChk'] = 'Mot entier' ; 31 | 32 | FCKLang['DlgMyFindTitle'] = 'Plugin - Chercher' ; 33 | FCKLang['DlgMyFindFindBtn'] = 'Chercher' ; 34 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/_samples/_plugins/findreplace/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * Italian language file for the sample plugin. 22 | */ 23 | 24 | FCKLang['DlgMyReplaceTitle'] = 'Plugin - Sostituisci' ; 25 | FCKLang['DlgMyReplaceFindLbl'] = 'Trova:' ; 26 | FCKLang['DlgMyReplaceReplaceLbl'] = 'Sostituisci con:' ; 27 | FCKLang['DlgMyReplaceCaseChk'] = 'Maiuscole/minuscole' ; 28 | FCKLang['DlgMyReplaceReplaceBtn'] = 'Sostituisci' ; 29 | FCKLang['DlgMyReplaceReplAllBtn'] = 'Sostituisci tutto' ; 30 | FCKLang['DlgMyReplaceWordChk'] = 'Parola intera' ; 31 | 32 | FCKLang['DlgMyFindTitle'] = 'Plugin - Cerca' ; 33 | FCKLang['DlgMyFindFindBtn'] = 'Cerca' ; 34 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/_samples/_plugins/findreplace/replace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/_samples/_plugins/findreplace/replace.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/_samples/adobeair/application.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | net.fckeditor.air.samples.sample01 4 | FCKeditor Sample Application 1.0 5 | 1.0 6 | FCKeditor AIR Sample 7 | This is a sample AIR application including FCKeditor. 8 | Copyright (C) 2003-2008 Frederico Caldeira Knabben 9 | 10 | _samples/adobeair/sample01.html 11 | FCKeditor AIR Sample 12 | standard 13 | false 14 | true 15 | true 16 | true 17 | true 18 | 100 19 | 80 20 | 820 21 | 600 22 | 600 400 23 | 24 | FCKeditor/AIR Samples/Sample01 25 | FCKeditor/AIR Samples 26 | 27 | _samples/adobeair/icons/16.png 28 | _samples/adobeair/icons/32.png 29 | _samples/adobeair/icons/48.png 30 | _samples/adobeair/icons/128.png 31 | 32 | false 33 | false 34 | 35 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/_samples/adobeair/icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/_samples/adobeair/icons/128.png -------------------------------------------------------------------------------- /WebRoot/fckeditor/_samples/adobeair/icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/_samples/adobeair/icons/16.png -------------------------------------------------------------------------------- /WebRoot/fckeditor/_samples/adobeair/icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/_samples/adobeair/icons/32.png -------------------------------------------------------------------------------- /WebRoot/fckeditor/_samples/adobeair/icons/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/_samples/adobeair/icons/48.png -------------------------------------------------------------------------------- /WebRoot/fckeditor/_samples/adobeair/package.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | 3 | :: 4 | :: FCKeditor - The text editor for Internet - http://www.fckeditor.net 5 | :: Copyright (C) 2003-2008 Frederico Caldeira Knabben 6 | :: 7 | :: == BEGIN LICENSE == 8 | :: 9 | :: Licensed under the terms of any of the following licenses at your 10 | :: choice: 11 | :: 12 | :: - GNU General Public License Version 2 or later (the "GPL") 13 | :: http://www.gnu.org/licenses/gpl.html 14 | :: 15 | :: - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 16 | :: http://www.gnu.org/licenses/lgpl.html 17 | :: 18 | :: - Mozilla Public License Version 1.1 or later (the "MPL") 19 | :: http://www.mozilla.org/MPL/MPL-1.1.html 20 | :: 21 | :: == END LICENSE == 22 | :: 23 | 24 | :: adt -package SIGNING_OPTIONS air_file app_xml [file_or_dir | -C dir file_or_dir | -e file dir ...] ... 25 | 26 | "C:\Adobe AIR SDK\bin\adt" -package -storetype pkcs12 -keystore sample01_cert.pfx -storepass 123abc FCKeditor.air application.xml -C ../../ . 27 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/_samples/adobeair/run.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | 3 | :: 4 | :: FCKeditor - The text editor for Internet - http://www.fckeditor.net 5 | :: Copyright (C) 2003-2008 Frederico Caldeira Knabben 6 | :: 7 | :: == BEGIN LICENSE == 8 | :: 9 | :: Licensed under the terms of any of the following licenses at your 10 | :: choice: 11 | :: 12 | :: - GNU General Public License Version 2 or later (the "GPL") 13 | :: http://www.gnu.org/licenses/gpl.html 14 | :: 15 | :: - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 16 | :: http://www.gnu.org/licenses/lgpl.html 17 | :: 18 | :: - Mozilla Public License Version 1.1 or later (the "MPL") 19 | :: http://www.mozilla.org/MPL/MPL-1.1.html 20 | :: 21 | :: == END LICENSE == 22 | :: 23 | 24 | :: adl [-runtime runtime-directory] [-pubId publisher-id] [-nodebug] application.xml [rootdirectory] [-- arguments] 25 | 26 | "C:\Adobe AIR SDK\bin\adl" application.xml ../../ 27 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/_samples/adobeair/sample01_cert.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/_samples/adobeair/sample01_cert.pfx -------------------------------------------------------------------------------- /WebRoot/fckeditor/_samples/afp/fck.afpa: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/_samples/afp/sample01.afp: -------------------------------------------------------------------------------- 1 | <% 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * This page lists the data posted by a form. 22 | * 23 | %> 24 | 25 | 26 | 27 | FCKeditor - AFP Sample 1 28 | 29 | 30 | 31 | 32 | 33 |

FCKeditor - AFP - Sample 1

34 | This sample displays a normal HTML form with an FCKeditor with full features enabled. 35 |
36 |
37 | <% 38 | 39 | sBasePath="../../../fckeditor/" && Change this to your local path 40 | 41 | lcText=[

This is some sample text. You are using ] 42 | lcText=lcText+[FCKeditor.] 43 | 44 | oFCKeditor = CREATEOBJECT("FCKeditor") 45 | oFCKeditor.fckeditor("FCKeditor1") 46 | oFCKeditor.BasePath = sBasePath 47 | oFCKeditor.cValue = lcText 48 | 49 | ? oFCKeditor.Create() 50 | 51 | %> 52 |
53 | 54 |

55 | 56 | 57 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/_samples/asp/sampleposteddata.asp: -------------------------------------------------------------------------------- 1 | <%@ CodePage=65001 Language="VBScript"%> 2 | <% Option Explicit %> 3 | 25 | 26 | 27 | 28 | FCKeditor - Samples - Posted Data 29 | 30 | 31 | 32 | 33 | 34 |

FCKeditor - Samples - Posted Data

35 | This page lists all data posted by the form. 36 |
37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | <% 46 | Dim sForm 47 | For Each sForm in Request.Form 48 | %> 49 | 50 | 51 | 52 | 53 | <% Next %> 54 |
Field NameValue
<%=sForm%>
<%=Server.HTMLEncode( Request.Form(sForm) )%>
55 | 56 | 57 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/_samples/default.html: -------------------------------------------------------------------------------- 1 | 3 | 25 | 26 | 27 | FCKeditor - Samples 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/_samples/html/assets/sample16.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/_samples/html/assets/sample16.fla -------------------------------------------------------------------------------- /WebRoot/fckeditor/_samples/html/assets/sample16.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/_samples/html/assets/sample16.swf -------------------------------------------------------------------------------- /WebRoot/fckeditor/_samples/html/sample11.html: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | FCKeditor - Sample 27 | 28 | 29 | 30 | 31 | 32 |

33 | FCKeditor - JavaScript - Sample 11

34 |
35 | This sample shows a form with two FCKeditor instance loaded inside an IFRAME. Both instances share the same 36 | toolbar, available in the main page (top). 37 |
38 |
39 |
40 |
41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/_samples/lasso/sample01.lasso: -------------------------------------------------------------------------------- 1 | [//lasso 2 | /* 3 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 4 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 5 | * 6 | * == BEGIN LICENSE == 7 | * 8 | * Licensed under the terms of any of the following licenses at your 9 | * choice: 10 | * 11 | * - GNU General Public License Version 2 or later (the "GPL") 12 | * http://www.gnu.org/licenses/gpl.html 13 | * 14 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 15 | * http://www.gnu.org/licenses/lgpl.html 16 | * 17 | * - Mozilla Public License Version 1.1 or later (the "MPL") 18 | * http://www.mozilla.org/MPL/MPL-1.1.html 19 | * 20 | * == END LICENSE == 21 | * 22 | * Sample page. 23 | */ 24 | ] 25 | 26 | 27 | 28 | FCKeditor - Sample 29 | 30 | 31 | 32 | 33 | 34 |

FCKeditor - Lasso - Sample 1

35 | This sample displays a normal HTML form with an FCKeditor with full features 36 | enabled. 37 |
38 |
39 | [//lasso 40 | include('../../fckeditor.lasso'); 41 | var('basepath') = response_filepath->split('_samples')->get(1); 42 | 43 | var('myeditor') = fck_editor( 44 | -instancename='FCKeditor1', 45 | -basepath=$basepath, 46 | -initialvalue='

This is some sample text. You are using FCKeditor.

' 47 | ); 48 | 49 | $myeditor->create; 50 | ] 51 |
52 | 53 |
54 | 55 | 56 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/_samples/lasso/sampleposteddata.lasso: -------------------------------------------------------------------------------- 1 | [//lasso 2 | /* 3 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 4 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 5 | * 6 | * == BEGIN LICENSE == 7 | * 8 | * Licensed under the terms of any of the following licenses at your 9 | * choice: 10 | * 11 | * - GNU General Public License Version 2 or later (the "GPL") 12 | * http://www.gnu.org/licenses/gpl.html 13 | * 14 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 15 | * http://www.gnu.org/licenses/lgpl.html 16 | * 17 | * - Mozilla Public License Version 1.1 or later (the "MPL") 18 | * http://www.mozilla.org/MPL/MPL-1.1.html 19 | * 20 | * == END LICENSE == 21 | * 22 | * Sample page. 23 | */ 24 | ] 25 | 26 | 27 | 28 | FCKeditor - Samples - Posted Data 29 | 30 | 31 | 32 | 33 | 34 |

FCKeditor - Samples - Posted Data

35 | This page lists all data posted by the form. 36 |
37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | [iterate(client_postparams, local('this'))] 46 | 47 | 48 | 49 | 50 | [/iterate] 51 |
Field NameValue
[#this->first]
[#this->second]
52 | 53 | 54 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/_samples/sample.css: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * Styles used in the samples pages. 22 | */ 23 | 24 | body, td, th, input, select, textarea 25 | { 26 | font-size: 12px; 27 | font-family: Arial, Verdana, Sans-Serif; 28 | } 29 | 30 | h1 31 | { 32 | font-weight: bold; 33 | font-size: 180%; 34 | margin-bottom: 10px; 35 | } 36 | 37 | form 38 | { 39 | margin: 0; 40 | padding: 0; 41 | } 42 | 43 | #outputSample 44 | { 45 | table-layout: fixed; 46 | width: 100%; 47 | } 48 | 49 | pre 50 | { 51 | margin: 0; 52 | padding: 0; 53 | 54 | white-space: pre; /* CSS2 */ 55 | white-space: -moz-pre-wrap; /* Mozilla*/ 56 | white-space: -o-pre-wrap; /* Opera 7 */ 57 | white-space: pre-wrap; /* CSS 2.1 */ 58 | white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */ 59 | word-wrap: break-word; /* IE */ 60 | } 61 | 62 | #outputSample thead th 63 | { 64 | color: #dddddd; 65 | background-color: #999999; 66 | padding: 4px; 67 | white-space: nowrap; 68 | } 69 | 70 | #outputSample tbody th 71 | { 72 | vertical-align: top; 73 | text-align: left; 74 | } 75 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/_upgrade.html: -------------------------------------------------------------------------------- 1 | 2 | 22 | 23 | 24 | FCKeditor - Upgrade 25 | 26 | 30 | 31 | 32 |

33 | FCKeditor Upgrade

34 |

35 | Please check the following URL for notes regarding upgrade:
36 | 37 | http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Installation/Upgrading

38 | 39 | 40 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/_source/classes/fckdocumentfragment_gecko.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * This is a generic Document Fragment object. It is not intended to provide 22 | * the W3C implementation, but is a way to fix the missing of a real Document 23 | * Fragment in IE (where document.createDocumentFragment() returns a normal 24 | * document instead), giving a standard interface for it. 25 | * (IE Implementation) 26 | */ 27 | 28 | var FCKDocumentFragment = function( parentDocument, baseDocFrag ) 29 | { 30 | this.RootNode = baseDocFrag || parentDocument.createDocumentFragment() ; 31 | } 32 | 33 | FCKDocumentFragment.prototype = 34 | { 35 | 36 | // Append the contents of this Document Fragment to another element. 37 | AppendTo : function( targetNode ) 38 | { 39 | targetNode.appendChild( this.RootNode ) ; 40 | }, 41 | 42 | AppendHtml : function( html ) 43 | { 44 | var eTmpDiv = this.RootNode.ownerDocument.createElement( 'div' ) ; 45 | eTmpDiv.innerHTML = html ; 46 | FCKDomTools.MoveChildren( eTmpDiv, this.RootNode ) ; 47 | }, 48 | 49 | InsertAfterNode : function( existingNode ) 50 | { 51 | FCKDomTools.InsertAfterNode( existingNode, this.RootNode ) ; 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/_source/classes/fckmenublockpanel.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * This class is a menu block that behaves like a panel. It's a mix of the 22 | * FCKMenuBlock and FCKPanel classes. 23 | */ 24 | 25 | var FCKMenuBlockPanel = function() 26 | { 27 | // Call the "base" constructor. 28 | FCKMenuBlock.call( this ) ; 29 | } 30 | 31 | FCKMenuBlockPanel.prototype = new FCKMenuBlock() ; 32 | 33 | 34 | // Override the create method. 35 | FCKMenuBlockPanel.prototype.Create = function() 36 | { 37 | var oPanel = this.Panel = ( this.Parent && this.Parent.Panel ? this.Parent.Panel.CreateChildPanel() : new FCKPanel() ) ; 38 | oPanel.AppendStyleSheet( FCKConfig.SkinEditorCSS ) ; 39 | 40 | // Call the "base" implementation. 41 | FCKMenuBlock.prototype.Create.call( this, oPanel.MainNode ) ; 42 | } 43 | 44 | FCKMenuBlockPanel.prototype.Show = function( x, y, relElement ) 45 | { 46 | if ( !this.Panel.CheckIsOpened() ) 47 | this.Panel.Show( x, y, relElement ) ; 48 | } 49 | 50 | FCKMenuBlockPanel.prototype.Hide = function() 51 | { 52 | if ( this.Panel.CheckIsOpened() ) 53 | this.Panel.Hide() ; 54 | } 55 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/_source/classes/fcktoolbarbreak_gecko.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * FCKToolbarBreak Class: breaks the toolbars. 22 | * It makes it possible to force the toolbar to break to a new line. 23 | * This is the Gecko specific implementation. 24 | */ 25 | 26 | var FCKToolbarBreak = function() 27 | {} 28 | 29 | FCKToolbarBreak.prototype.Create = function( targetElement ) 30 | { 31 | var oBreakDiv = targetElement.ownerDocument.createElement( 'div' ) ; 32 | 33 | oBreakDiv.style.clear = oBreakDiv.style.cssFloat = FCKLang.Dir == 'rtl' ? 'right' : 'left' ; 34 | 35 | targetElement.appendChild( oBreakDiv ) ; 36 | } 37 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/_source/classes/fcktoolbarbreak_ie.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * FCKToolbarBreak Class: breaks the toolbars. 22 | * It makes it possible to force the toolbar to break to a new line. 23 | * This is the IE specific implementation. 24 | */ 25 | 26 | var FCKToolbarBreak = function() 27 | {} 28 | 29 | FCKToolbarBreak.prototype.Create = function( targetElement ) 30 | { 31 | var oBreakDiv = FCKTools.GetElementDocument( targetElement ).createElement( 'div' ) ; 32 | 33 | oBreakDiv.className = 'TB_Break' ; 34 | 35 | oBreakDiv.style.clear = FCKLang.Dir == 'rtl' ? 'left' : 'right' ; 36 | 37 | targetElement.appendChild( oBreakDiv ) ; 38 | } 39 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/_source/commandclasses/fckcorestylecommand.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * FCKCoreStyleCommand Class: controls the execution of a core style. Core 22 | * styles are usually represented as buttons in the toolbar., like Bold and 23 | * Italic. 24 | */ 25 | 26 | var FCKCoreStyleCommand = function( coreStyleName ) 27 | { 28 | this.Name = 'CoreStyle' ; 29 | this.StyleName = '_FCK_' + coreStyleName ; 30 | this.IsActive = false ; 31 | 32 | FCKStyles.AttachStyleStateChange( this.StyleName, this._OnStyleStateChange, this ) ; 33 | } 34 | 35 | FCKCoreStyleCommand.prototype = 36 | { 37 | Execute : function() 38 | { 39 | FCKUndo.SaveUndoStep() ; 40 | 41 | if ( this.IsActive ) 42 | FCKStyles.RemoveStyle( this.StyleName ) ; 43 | else 44 | FCKStyles.ApplyStyle( this.StyleName ) ; 45 | 46 | FCK.Focus() ; 47 | FCK.Events.FireEvent( 'OnSelectionChange' ) ; 48 | }, 49 | 50 | GetState : function() 51 | { 52 | if ( FCK.EditMode != FCK_EDITMODE_WYSIWYG ) 53 | return FCK_TRISTATE_DISABLED ; 54 | return this.IsActive ? FCK_TRISTATE_ON : FCK_TRISTATE_OFF ; 55 | }, 56 | 57 | _OnStyleStateChange : function( styleName, isActive ) 58 | { 59 | this.IsActive = isActive ; 60 | } 61 | }; 62 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/_source/commandclasses/fcknamedcommand.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * FCKNamedCommand Class: represents an internal browser command. 22 | */ 23 | 24 | var FCKNamedCommand = function( commandName ) 25 | { 26 | this.Name = commandName ; 27 | } 28 | 29 | FCKNamedCommand.prototype.Execute = function() 30 | { 31 | FCK.ExecuteNamedCommand( this.Name ) ; 32 | } 33 | 34 | FCKNamedCommand.prototype.GetState = function() 35 | { 36 | if ( FCK.EditMode != FCK_EDITMODE_WYSIWYG ) 37 | return FCK_TRISTATE_DISABLED ; 38 | return FCK.GetNamedCommandState( this.Name ) ; 39 | } 40 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * FCKPastePlainTextCommand Class: represents the 22 | * "Paste as Plain Text" command. 23 | */ 24 | 25 | var FCKPastePlainTextCommand = function() 26 | { 27 | this.Name = 'PasteText' ; 28 | } 29 | 30 | FCKPastePlainTextCommand.prototype.Execute = function() 31 | { 32 | FCK.PasteAsPlainText() ; 33 | } 34 | 35 | FCKPastePlainTextCommand.prototype.GetState = function() 36 | { 37 | if ( FCK.EditMode != FCK_EDITMODE_WYSIWYG ) 38 | return FCK_TRISTATE_DISABLED ; 39 | return FCK.GetNamedCommandState( 'Paste' ) ; 40 | } 41 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/_source/commandclasses/fckpastewordcommand.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * FCKPasteWordCommand Class: represents the "Paste from Word" command. 22 | */ 23 | 24 | var FCKPasteWordCommand = function() 25 | { 26 | this.Name = 'PasteWord' ; 27 | } 28 | 29 | FCKPasteWordCommand.prototype.Execute = function() 30 | { 31 | FCK.PasteFromWord() ; 32 | } 33 | 34 | FCKPasteWordCommand.prototype.GetState = function() 35 | { 36 | if ( FCK.EditMode != FCK_EDITMODE_WYSIWYG || FCKConfig.ForcePasteAsPlainText ) 37 | return FCK_TRISTATE_DISABLED ; 38 | else 39 | return FCK.GetNamedCommandState( 'Paste' ) ; 40 | } 41 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/_source/commandclasses/fckremoveformatcommand.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * FCKRemoveFormatCommand Class: controls the execution of a core style. Core 22 | * styles are usually represented as buttons in the toolbar., like Bold and 23 | * Italic. 24 | */ 25 | 26 | var FCKRemoveFormatCommand = function() 27 | { 28 | this.Name = 'RemoveFormat' ; 29 | } 30 | 31 | FCKRemoveFormatCommand.prototype = 32 | { 33 | Execute : function() 34 | { 35 | FCKStyles.RemoveAll() ; 36 | 37 | FCK.Focus() ; 38 | FCK.Events.FireEvent( 'OnSelectionChange' ) ; 39 | }, 40 | 41 | GetState : function() 42 | { 43 | return FCK.EditorWindow ? FCK_TRISTATE_OFF : FCK_TRISTATE_DISABLED ; 44 | } 45 | }; 46 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * FCKStyleCommand Class: represents the "Spell Check" command. 22 | * (Gecko specific implementation) 23 | */ 24 | 25 | var FCKSpellCheckCommand = function() 26 | { 27 | this.Name = 'SpellCheck' ; 28 | this.IsEnabled = ( FCKConfig.SpellChecker == 'SpellerPages' ) ; 29 | } 30 | 31 | FCKSpellCheckCommand.prototype.Execute = function() 32 | { 33 | FCKDialog.OpenDialog( 'FCKDialog_SpellCheck', 'Spell Check', 'dialog/fck_spellerpages.html', 440, 480 ) ; 34 | } 35 | 36 | FCKSpellCheckCommand.prototype.GetState = function() 37 | { 38 | if ( FCK.EditMode != FCK_EDITMODE_WYSIWYG ) 39 | return FCK_TRISTATE_DISABLED ; 40 | return this.IsEnabled ? FCK_TRISTATE_OFF : FCK_TRISTATE_DISABLED ; 41 | } 42 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/_source/commandclasses/fckstylecommand.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * FCKStyleCommand Class: represents the "Style" command. 22 | */ 23 | 24 | var FCKStyleCommand = function() 25 | {} 26 | 27 | FCKStyleCommand.prototype = 28 | { 29 | Name : 'Style', 30 | 31 | Execute : function( styleName, styleComboItem ) 32 | { 33 | FCKUndo.SaveUndoStep() ; 34 | 35 | if ( styleComboItem.Selected ) 36 | FCK.Styles.RemoveStyle( styleComboItem.Style ) ; 37 | else 38 | FCK.Styles.ApplyStyle( styleComboItem.Style ) ; 39 | 40 | FCKUndo.SaveUndoStep() ; 41 | 42 | FCK.Focus() ; 43 | FCK.Events.FireEvent( 'OnSelectionChange' ) ; 44 | }, 45 | 46 | GetState : function() 47 | { 48 | if ( FCK.EditMode != FCK_EDITMODE_WYSIWYG || !FCK.EditorDocument ) 49 | return FCK_TRISTATE_DISABLED ; 50 | 51 | if ( FCKSelection.GetType() == 'Control' ) 52 | { 53 | var el = FCKSelection.GetSelectedElement() ; 54 | if ( !el || !FCKStyles.CheckHasObjectStyle( el.nodeName.toLowerCase() ) ) 55 | return FCK_TRISTATE_DISABLED ; 56 | } 57 | 58 | return FCK_TRISTATE_OFF ; 59 | } 60 | }; 61 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/_source/internals/fckdebug.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * Debug window control and operations. 22 | */ 23 | 24 | // Public function defined here must be declared in fckdebug_empty.js. 25 | 26 | var FCKDebug = 27 | { 28 | Output : function( message, color, noParse ) 29 | { 30 | if ( ! FCKConfig.Debug ) 31 | return ; 32 | 33 | try 34 | { 35 | this._GetWindow().Output( message, color ) ; 36 | } 37 | catch ( e ) {} // Ignore errors 38 | }, 39 | 40 | OutputObject : function( anyObject, color ) 41 | { 42 | if ( ! FCKConfig.Debug ) 43 | return ; 44 | 45 | try 46 | { 47 | this._GetWindow().OutputObject( anyObject, color ) ; 48 | } 49 | catch ( e ) {} // Ignore errors 50 | }, 51 | 52 | _GetWindow : function() 53 | { 54 | if ( !this.DebugWindow || this.DebugWindow.closed ) 55 | this.DebugWindow = window.open( FCKConfig.BasePath + 'fckdebug.html', 'FCKeditorDebug', 'menubar=no,scrollbars=yes,resizable=yes,location=no,toolbar=no,width=600,height=500', true ) ; 56 | 57 | return this.DebugWindow ; 58 | } 59 | } ; 60 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/_source/internals/fckdebug_empty.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * Debug window control and operations (empty for the compressed files - #2043). 22 | */ 23 | 24 | var FCKDebug = 25 | { 26 | Output : function() 27 | {}, 28 | 29 | OutputObject : function() 30 | {} 31 | } ; 32 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/_source/internals/fckplugins.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * Defines the FCKPlugins object that is responsible for loading the Plugins. 22 | */ 23 | 24 | var FCKPlugins = FCK.Plugins = new Object() ; 25 | FCKPlugins.ItemsCount = 0 ; 26 | FCKPlugins.Items = new Object() ; 27 | 28 | FCKPlugins.Load = function() 29 | { 30 | var oItems = FCKPlugins.Items ; 31 | 32 | // build the plugins collection. 33 | for ( var i = 0 ; i < FCKConfig.Plugins.Items.length ; i++ ) 34 | { 35 | var oItem = FCKConfig.Plugins.Items[i] ; 36 | var oPlugin = oItems[ oItem[0] ] = new FCKPlugin( oItem[0], oItem[1], oItem[2] ) ; 37 | FCKPlugins.ItemsCount++ ; 38 | } 39 | 40 | // Load all items in the plugins collection. 41 | for ( var s in oItems ) 42 | oItems[s].Load() ; 43 | 44 | // This is a self destroyable function (must be called once). 45 | FCKPlugins.Load = null ; 46 | } 47 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/_source/internals/fckselection.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * Active selection functions. 22 | */ 23 | 24 | var FCKSelection = FCK.Selection = 25 | { 26 | GetParentBlock : function() 27 | { 28 | var retval = this.GetParentElement() ; 29 | while ( retval ) 30 | { 31 | if ( FCKListsLib.BlockBoundaries[retval.nodeName.toLowerCase()] ) 32 | break ; 33 | retval = retval.parentNode ; 34 | } 35 | return retval ; 36 | }, 37 | 38 | ApplyStyle : function( styleDefinition ) 39 | { 40 | FCKStyles.ApplyStyle( new FCKStyle( styleDefinition ) ) ; 41 | } 42 | } ; 43 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/_source/internals/fcktablehandler_gecko.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * Manage table operations (non-IE). 22 | */ 23 | 24 | FCKTableHandler.GetSelectedCells = function() 25 | { 26 | var aCells = new Array() ; 27 | 28 | var oSelection = FCKSelection.GetSelection() ; 29 | 30 | // If the selection is a text. 31 | if ( oSelection.rangeCount == 1 && oSelection.anchorNode.nodeType == 3 ) 32 | { 33 | var oParent = FCKTools.GetElementAscensor( oSelection.anchorNode, 'TD,TH' ) ; 34 | 35 | if ( oParent ) 36 | aCells[0] = oParent ; 37 | 38 | return aCells ; 39 | } 40 | 41 | for ( var i = 0 ; i < oSelection.rangeCount ; i++ ) 42 | { 43 | var oRange = oSelection.getRangeAt(i) ; 44 | var oCell ; 45 | 46 | if ( oRange.startContainer.tagName.Equals( 'TD', 'TH' ) ) 47 | oCell = oRange.startContainer ; 48 | else 49 | oCell = oRange.startContainer.childNodes[ oRange.startOffset ] ; 50 | 51 | if ( oCell.tagName.Equals( 'TD', 'TH' ) ) 52 | aCells[aCells.length] = oCell ; 53 | } 54 | 55 | return aCells ; 56 | } 57 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/_source/internals/fckurlparams.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * Defines the FCKURLParams object that is used to get all parameters 22 | * passed by the URL QueryString (after the "?"). 23 | */ 24 | 25 | // #### URLParams: holds all URL passed parameters (like ?Param1=Value1&Param2=Value2) 26 | var FCKURLParams = new Object() ; 27 | 28 | (function() 29 | { 30 | var aParams = document.location.search.substr(1).split('&') ; 31 | for ( var i = 0 ; i < aParams.length ; i++ ) 32 | { 33 | var aParam = aParams[i].split('=') ; 34 | var sParamName = decodeURIComponent( aParam[0] ) ; 35 | var sParamValue = decodeURIComponent( aParam[1] ) ; 36 | 37 | FCKURLParams[ sParamName ] = sParamValue ; 38 | } 39 | })(); 40 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/css/behaviors/disablehandles.htc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/css/behaviors/showtableborders.htc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/css/fck_showtableborders_gecko.css: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * This CSS Style Sheet defines the rules to show table borders on Gecko. 22 | */ 23 | 24 | /* ######### 25 | * WARNING 26 | * ######### 27 | * When changing this file, the minified version of it must be updated in the 28 | * fckeditor.html file (see FCK_ShowTableBordersCSS). 29 | */ 30 | 31 | /* For tables with the "border" attribute set to "0" */ 32 | table[border="0"], 33 | table[border="0"] > tr > td, table[border="0"] > tr > th, 34 | table[border="0"] > tbody > tr > td, table[border="0"] > tbody > tr > th, 35 | table[border="0"] > thead > tr > td, table[border="0"] > thead > tr > th, 36 | table[border="0"] > tfoot > tr > td, table[border="0"] > tfoot > tr > th 37 | { 38 | border: #d3d3d3 1px dotted ; 39 | } 40 | 41 | /* For tables with no "border" attribute set */ 42 | table:not([border]), 43 | table:not([border]) > tr > td, table:not([border]) > tr > th, 44 | table:not([border]) > tbody > tr > td, table:not([border]) > tbody > tr > th, 45 | table:not([border]) > thead > tr > td, table:not([border]) > thead > tr > th, 46 | table:not([border]) > tfoot > tr > td, table:not([border]) > tfoot > tr > th 47 | { 48 | border: #d3d3d3 1px dotted ; 49 | } 50 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/css/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/css/images/block_address.png -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/css/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/css/images/block_blockquote.png -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/css/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/css/images/block_div.png -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/css/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/css/images/block_h1.png -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/css/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/css/images/block_h2.png -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/css/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/css/images/block_h3.png -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/css/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/css/images/block_h4.png -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/css/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/css/images/block_h5.png -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/css/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/css/images/block_h6.png -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/css/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/css/images/block_p.png -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/css/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/css/images/block_pre.png -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/css/images/fck_anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/css/images/fck_anchor.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/css/images/fck_flashlogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/css/images/fck_flashlogo.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/css/images/fck_hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/css/images/fck_hiddenfield.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/css/images/fck_pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/css/images/fck_pagebreak.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/css/images/fck_plugin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/css/images/fck_plugin.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/dialog/common/images/locked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/dialog/common/images/locked.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/dialog/common/images/reset.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/dialog/common/images/reset.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/dialog/common/images/unlocked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/dialog/common/images/unlocked.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/dialog/fck_about/logo_fckeditor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/dialog/fck_about/logo_fckeditor.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/dialog/fck_about/logo_fredck.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/dialog/fck_about/logo_fredck.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/dialog/fck_flash/fck_flash_preview.html: -------------------------------------------------------------------------------- 1 | 2 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css: -------------------------------------------------------------------------------- 1 | .blend { 2 | font-family: courier new; 3 | font-size: 10pt; 4 | border: 0; 5 | margin-bottom:-1; 6 | } 7 | .normalLabel { 8 | font-size:8pt; 9 | } 10 | .normalText { 11 | font-family:arial, helvetica, sans-serif; 12 | font-size:10pt; 13 | color:000000; 14 | background-color:FFFFFF; 15 | } 16 | .plainText { 17 | font-family: courier new, courier, monospace; 18 | font-size: 10pt; 19 | color:000000; 20 | background-color:FFFFFF; 21 | } 22 | .controlWindowBody { 23 | font-family:arial, helvetica, sans-serif; 24 | font-size:8pt; 25 | padding: 7px ; /* by FredCK */ 26 | margin: 0px ; /* by FredCK */ 27 | /* color:000000; by FredCK */ 28 | /* background-color:DADADA; by FredCK */ 29 | } 30 | .readonlyInput { 31 | background-color:DADADA; 32 | color:000000; 33 | font-size:8pt; 34 | width:392px; 35 | } 36 | .textDefault { 37 | font-size:8pt; 38 | width: 200px; 39 | } 40 | .buttonDefault { 41 | width:90px; 42 | height:22px; 43 | font-size:8pt; 44 | } 45 | .suggSlct { 46 | width:200px; 47 | margin-top:2; 48 | font-size:8pt; 49 | } 50 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/dialog/fck_template/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/dialog/fck_template/images/template1.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/dialog/fck_template/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/dialog/fck_template/images/template2.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/dialog/fck_template/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/dialog/fck_template/images/template3.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/dtd/fck_dtd_test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | DTD Test Page 5 | 10 | 11 | 12 | 13 | 14 |

15 | DTD Contents 16 |

17 | 18 | 39 |
40 | 41 | 42 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/browser.css: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * CSS styles used by all pages that compose the File Browser. 22 | */ 23 | 24 | body 25 | { 26 | background-color: #f1f1e3; 27 | margin-top:0; 28 | margin-bottom:0; 29 | } 30 | 31 | form 32 | { 33 | margin: 0; 34 | padding: 0; 35 | } 36 | 37 | .Frame 38 | { 39 | background-color: #f1f1e3; 40 | border: thin inset #f1f1e3; 41 | } 42 | 43 | body.FileArea 44 | { 45 | background-color: #ffffff; 46 | margin: 10px; 47 | } 48 | 49 | body, td, input, select 50 | { 51 | font-size: 11px; 52 | font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana; 53 | } 54 | 55 | .ActualFolder 56 | { 57 | font-weight: bold; 58 | font-size: 14px; 59 | } 60 | 61 | .PopupButtons 62 | { 63 | border-top: #d5d59d 1px solid; 64 | background-color: #e3e3c7; 65 | padding: 7px 10px 7px 10px; 66 | } 67 | 68 | .Button, button 69 | { 70 | color: #3b3b1f; 71 | border: #737357 1px solid; 72 | background-color: #c7c78f; 73 | } 74 | 75 | .FolderListCurrentFolder img 76 | { 77 | background-image: url(img/FolderOpened.gif); 78 | } 79 | 80 | .FolderListFolder img 81 | { 82 | background-image: url(img/Folder.gif); 83 | } 84 | 85 | .fullHeight { 86 | height: 100%; 87 | } 88 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/ButtonArrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/ButtonArrow.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/Folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/Folder.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/Folder32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/Folder32.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/FolderOpened.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/FolderOpened.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/FolderOpened32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/FolderOpened32.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/FolderUp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/FolderUp.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/ai.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/ai.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/avi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/avi.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/bmp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/bmp.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/cs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/cs.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/default.icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/default.icon.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/dll.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/dll.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/doc.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/exe.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/fla.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/fla.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/gif.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/htm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/htm.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/html.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/html.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/jpg.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/js.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/js.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/mdb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/mdb.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/mp3.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/pdf.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/png.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/png.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/ppt.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/rdp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/rdp.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/swf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/swf.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/swt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/swt.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/txt.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/vsd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/vsd.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/xls.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/xml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/xml.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/zip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/32/zip.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/ai.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/ai.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/avi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/avi.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/bmp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/bmp.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/cs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/cs.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/default.icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/default.icon.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/dll.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/dll.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/doc.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/exe.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/fla.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/fla.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/gif.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/htm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/htm.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/html.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/html.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/jpg.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/js.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/js.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/mdb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/mdb.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/mp3.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/pdf.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/png.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/png.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/ppt.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/rdp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/rdp.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/swf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/swf.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/swt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/swt.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/txt.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/vsd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/vsd.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/xls.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/xml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/xml.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/zip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/icons/zip.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/browser/default/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/filemanager/browser/default/images/spacer.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/connectors/asp/util.asp: -------------------------------------------------------------------------------- 1 | <% 2 | ' FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | ' Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | ' 5 | ' == BEGIN LICENSE == 6 | ' 7 | ' Licensed under the terms of any of the following licenses at your 8 | ' choice: 9 | ' 10 | ' - GNU General Public License Version 2 or later (the "GPL") 11 | ' http://www.gnu.org/licenses/gpl.html 12 | ' 13 | ' - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | ' http://www.gnu.org/licenses/lgpl.html 15 | ' 16 | ' - Mozilla Public License Version 1.1 or later (the "MPL") 17 | ' http://www.mozilla.org/MPL/MPL-1.1.html 18 | ' 19 | ' == END LICENSE == 20 | ' 21 | ' This file include generic functions used by the ASP Connector. 22 | %> 23 | <% 24 | Function RemoveFromStart( sourceString, charToRemove ) 25 | Dim oRegex 26 | Set oRegex = New RegExp 27 | oRegex.Pattern = "^" & charToRemove & "+" 28 | 29 | RemoveFromStart = oRegex.Replace( sourceString, "" ) 30 | End Function 31 | 32 | Function RemoveFromEnd( sourceString, charToRemove ) 33 | Dim oRegex 34 | Set oRegex = New RegExp 35 | oRegex.Pattern = charToRemove & "+$" 36 | 37 | RemoveFromEnd = oRegex.Replace( sourceString, "" ) 38 | End Function 39 | 40 | Function ConvertToXmlAttribute( value ) 41 | ConvertToXmlAttribute = Replace( value, "&", "&" ) 42 | End Function 43 | 44 | Function InArray( value, sourceArray ) 45 | Dim i 46 | For i = 0 to UBound( sourceArray ) 47 | If sourceArray(i) = value Then 48 | InArray = True 49 | Exit Function 50 | End If 51 | Next 52 | InArray = False 53 | End Function 54 | 55 | %> 56 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/connectors/aspx/connector.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="c#" Trace="false" Inherits="FredCK.FCKeditorV2.FileBrowser.Connector" AutoEventWireup="false" %> 2 | <%@ Register Src="config.ascx" TagName="Config" TagPrefix="FCKeditor" %> 3 | <%-- 4 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 5 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 6 | * 7 | * == BEGIN LICENSE == 8 | * 9 | * Licensed under the terms of any of the following licenses at your 10 | * choice: 11 | * 12 | * - GNU General Public License Version 2 or later (the "GPL") 13 | * http://www.gnu.org/licenses/gpl.html 14 | * 15 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 16 | * http://www.gnu.org/licenses/lgpl.html 17 | * 18 | * - Mozilla Public License Version 1.1 or later (the "MPL") 19 | * http://www.mozilla.org/MPL/MPL-1.1.html 20 | * 21 | * == END LICENSE == 22 | * 23 | * This is the File Browser Connector for ASP.NET. 24 | * 25 | * The code of this page if included in the FCKeditor.Net package, 26 | * in the FredCK.FCKeditorV2.dll assembly file. So to use it you must 27 | * include that DLL in your "bin" directory. 28 | * 29 | * To download the FCKeditor.Net package, go to our official web site: 30 | * http://www.fckeditor.net 31 | --%> 32 | 33 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/connectors/aspx/upload.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="c#" Trace="false" Inherits="FredCK.FCKeditorV2.FileBrowser.Uploader" AutoEventWireup="false" %> 2 | <%@ Register Src="config.ascx" TagName="Config" TagPrefix="FCKeditor" %> 3 | <%-- 4 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 5 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 6 | * 7 | * == BEGIN LICENSE == 8 | * 9 | * Licensed under the terms of any of the following licenses at your 10 | * choice: 11 | * 12 | * - GNU General Public License Version 2 or later (the "GPL") 13 | * http://www.gnu.org/licenses/gpl.html 14 | * 15 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 16 | * http://www.gnu.org/licenses/lgpl.html 17 | * 18 | * - Mozilla Public License Version 1.1 or later (the "MPL") 19 | * http://www.mozilla.org/MPL/MPL-1.1.html 20 | * 21 | * == END LICENSE == 22 | * 23 | * This is the Uploader for ASP.NET. 24 | * 25 | * The code of this page if included in the FCKeditor.Net package, 26 | * in the FredCK.FCKeditorV2.dll assemblyfile. So to use it you must 27 | * include that DLL in your "bin" directory. 28 | * 29 | * To download the FCKeditor.Net package, go to our official web site: 30 | * http://www.fckeditor.net 31 | --%> 32 | 33 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/connectors/cfm/connector.cfm: -------------------------------------------------------------------------------- 1 | 2 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/connectors/cfm/upload.cfm: -------------------------------------------------------------------------------- 1 | 2 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/connectors/perl/util.pl: -------------------------------------------------------------------------------- 1 | ##### 2 | # FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | # Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | # 5 | # == BEGIN LICENSE == 6 | # 7 | # Licensed under the terms of any of the following licenses at your 8 | # choice: 9 | # 10 | # - GNU General Public License Version 2 or later (the "GPL") 11 | # http://www.gnu.org/licenses/gpl.html 12 | # 13 | # - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | # http://www.gnu.org/licenses/lgpl.html 15 | # 16 | # - Mozilla Public License Version 1.1 or later (the "MPL") 17 | # http://www.mozilla.org/MPL/MPL-1.1.html 18 | # 19 | # == END LICENSE == 20 | # 21 | # This is the File Manager Connector for Perl. 22 | ##### 23 | 24 | sub RemoveFromStart 25 | { 26 | local($sourceString, $charToRemove) = @_; 27 | $sPattern = '^' . $charToRemove . '+' ; 28 | $sourceString =~ s/^$charToRemove+//g; 29 | return $sourceString; 30 | } 31 | 32 | sub RemoveFromEnd 33 | { 34 | local($sourceString, $charToRemove) = @_; 35 | $sPattern = $charToRemove . '+$' ; 36 | $sourceString =~ s/$charToRemove+$//g; 37 | return $sourceString; 38 | } 39 | 40 | sub ConvertToXmlAttribute 41 | { 42 | local($value) = @_; 43 | return $value; 44 | # return utf8_encode(htmlspecialchars($value)); 45 | 46 | } 47 | 48 | sub specialchar_cnv 49 | { 50 | local($ch) = @_; 51 | 52 | $ch =~ s/&/&/g; # & 53 | $ch =~ s/\"/"/g; #" 54 | $ch =~ s/\'/'/g; # ' 55 | $ch =~ s//>/g; # > 57 | return($ch); 58 | } 59 | 60 | sub JS_cnv 61 | { 62 | local($ch) = @_; 63 | 64 | $ch =~ s/\"/\\\"/g; #" 65 | return($ch); 66 | } 67 | 68 | 1; 69 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/connectors/py/htaccess.txt: -------------------------------------------------------------------------------- 1 | # replace the name of this file to .htaccess (if using apache), 2 | # and set the proper options and paths according your enviroment 3 | 4 | Allow from all 5 | 6 | # If using mod_python uncomment this: 7 | PythonPath "[r'C:\Archivos de programa\Apache Software Foundation\Apache2.2\htdocs\fckeditor\editor\filemanager\connectors\py'] + sys.path" 8 | 9 | 10 | # Recomended: WSGI application running with mod_python and modpython_gateway 11 | SetHandler python-program 12 | PythonHandler modpython_gateway::handler 13 | PythonOption wsgi.application wsgi::App 14 | 15 | 16 | # Emulated CGI with mod_python and cgihandler 17 | #AddHandler mod_python .py 18 | #PythonHandler mod_python.cgihandler 19 | 20 | 21 | # Plain old CGI 22 | #Options +ExecCGI 23 | #AddHandler cgi-script py 24 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/filemanager/connectors/py/wsgi.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | """ 4 | FCKeditor - The text editor for Internet - http://www.fckeditor.net 5 | Copyright (C) 2003-2008 Frederico Caldeira Knabben 6 | 7 | == BEGIN LICENSE == 8 | 9 | Licensed under the terms of any of the following licenses at your 10 | choice: 11 | 12 | - GNU General Public License Version 2 or later (the "GPL") 13 | http://www.gnu.org/licenses/gpl.html 14 | 15 | - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 16 | http://www.gnu.org/licenses/lgpl.html 17 | 18 | - Mozilla Public License Version 1.1 or later (the "MPL") 19 | http://www.mozilla.org/MPL/MPL-1.1.html 20 | 21 | == END LICENSE == 22 | 23 | Connector/QuickUpload for Python (WSGI wrapper). 24 | 25 | See config.py for configuration settings 26 | 27 | """ 28 | 29 | from connector import FCKeditorConnector 30 | from upload import FCKeditorQuickUpload 31 | 32 | import cgitb 33 | from cStringIO import StringIO 34 | 35 | # Running from WSGI capable server (recomended) 36 | def App(environ, start_response): 37 | "WSGI entry point. Run the connector" 38 | if environ['SCRIPT_NAME'].endswith("connector.py"): 39 | conn = FCKeditorConnector(environ) 40 | elif environ['SCRIPT_NAME'].endswith("upload.py"): 41 | conn = FCKeditorQuickUpload(environ) 42 | else: 43 | start_response ("200 Ok", [('Content-Type','text/html')]) 44 | yield "Unknown page requested: " 45 | yield environ['SCRIPT_NAME'] 46 | return 47 | try: 48 | # run the connector 49 | data = conn.doResponse() 50 | # Start WSGI response: 51 | start_response ("200 Ok", conn.headers) 52 | # Send response text 53 | yield data 54 | except: 55 | start_response("500 Internal Server Error",[("Content-type","text/html")]) 56 | file = StringIO() 57 | cgitb.Hook(file = file).handle() 58 | yield file.getvalue() 59 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/anchor.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/arrow_ltr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/arrow_ltr.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/arrow_rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/arrow_rtl.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/smiley/msn/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/smiley/msn/angel_smile.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/smiley/msn/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/smiley/msn/angry_smile.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/smiley/msn/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/smiley/msn/broken_heart.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/smiley/msn/cake.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/smiley/msn/cake.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/smiley/msn/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/smiley/msn/confused_smile.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/smiley/msn/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/smiley/msn/cry_smile.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/smiley/msn/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/smiley/msn/devil_smile.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/smiley/msn/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/smiley/msn/embaressed_smile.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/smiley/msn/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/smiley/msn/envelope.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/smiley/msn/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/smiley/msn/heart.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/smiley/msn/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/smiley/msn/kiss.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/smiley/msn/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/smiley/msn/lightbulb.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/smiley/msn/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/smiley/msn/omg_smile.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/smiley/msn/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/smiley/msn/regular_smile.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/smiley/msn/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/smiley/msn/sad_smile.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/smiley/msn/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/smiley/msn/shades_smile.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/smiley/msn/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/smiley/msn/teeth_smile.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/smiley/msn/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/smiley/msn/thumbs_down.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/smiley/msn/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/smiley/msn/thumbs_up.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/smiley/msn/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/smiley/msn/tounge_smile.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/smiley/msn/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/smiley/msn/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/smiley/msn/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/smiley/msn/wink_smile.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/img/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/img/spacer.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/plugins/bbcode/_sample/sample.config.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * Sample custom configuration settings used by the BBCode plugin. It simply 22 | * loads the plugin. All the rest is done by the plugin itself. 23 | */ 24 | 25 | // Add the BBCode plugin. 26 | FCKConfig.Plugins.Add( 'bbcode' ) ; 27 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/plugins/placeholder/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * Placholder German language file. 22 | */ 23 | FCKLang.PlaceholderBtn = 'Einfügen/editieren Platzhalter' ; 24 | FCKLang.PlaceholderDlgTitle = 'Platzhalter Eigenschaften' ; 25 | FCKLang.PlaceholderDlgName = 'Platzhalter Name' ; 26 | FCKLang.PlaceholderErrNoName = 'Bitte den Namen des Platzhalters schreiben' ; 27 | FCKLang.PlaceholderErrNameInUse = 'Der angegebene Namen ist schon in Gebrauch' ; 28 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/plugins/placeholder/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * Placholder English language file. 22 | */ 23 | FCKLang.PlaceholderBtn = 'Insert/Edit Placeholder' ; 24 | FCKLang.PlaceholderDlgTitle = 'Placeholder Properties' ; 25 | FCKLang.PlaceholderDlgName = 'Placeholder Name' ; 26 | FCKLang.PlaceholderErrNoName = 'Please type the placeholder name' ; 27 | FCKLang.PlaceholderErrNameInUse = 'The specified name is already in use' ; 28 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/plugins/placeholder/lang/es.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * Placholder Spanish language file. 22 | */ 23 | FCKLang.PlaceholderBtn = 'Insertar/Editar contenedor' ; 24 | FCKLang.PlaceholderDlgTitle = 'Propiedades del contenedor ' ; 25 | FCKLang.PlaceholderDlgName = 'Nombre de contenedor' ; 26 | FCKLang.PlaceholderErrNoName = 'Por favor escriba el nombre de contenedor' ; 27 | FCKLang.PlaceholderErrNameInUse = 'El nombre especificado ya esta en uso' ; 28 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/plugins/placeholder/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * Placeholder French language file. 22 | */ 23 | FCKLang.PlaceholderBtn = "Insérer/Modifier l'Espace réservé" ; 24 | FCKLang.PlaceholderDlgTitle = "Propriétés de l'Espace réservé" ; 25 | FCKLang.PlaceholderDlgName = "Nom de l'Espace réservé" ; 26 | FCKLang.PlaceholderErrNoName = "Veuillez saisir le nom de l'Espace réservé" ; 27 | FCKLang.PlaceholderErrNameInUse = "Ce nom est déjà utilisé" ; 28 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/plugins/placeholder/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * Placholder Italian language file. 22 | */ 23 | FCKLang.PlaceholderBtn = 'Aggiungi/Modifica Placeholder' ; 24 | FCKLang.PlaceholderDlgTitle = 'Proprietà del Placeholder' ; 25 | FCKLang.PlaceholderDlgName = 'Nome del Placeholder' ; 26 | FCKLang.PlaceholderErrNoName = 'Digitare il nome del placeholder' ; 27 | FCKLang.PlaceholderErrNameInUse = 'Il nome inserito è già in uso' ; 28 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/plugins/placeholder/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * Placholder Polish language file. 22 | */ 23 | FCKLang.PlaceholderBtn = 'Wstaw/Edytuj nagłówek' ; 24 | FCKLang.PlaceholderDlgTitle = 'Właśności nagłówka' ; 25 | FCKLang.PlaceholderDlgName = 'Nazwa nagłówka' ; 26 | FCKLang.PlaceholderErrNoName = 'Proszę wprowadzić nazwę nagłówka' ; 27 | FCKLang.PlaceholderErrNameInUse = 'Podana nazwa jest już w użyciu' ; 28 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/plugins/placeholder/placeholder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/plugins/placeholder/placeholder.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/plugins/simplecommands/fckplugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | * FCKeditor - The text editor for Internet - http://www.fckeditor.net 3 | * Copyright (C) 2003-2008 Frederico Caldeira Knabben 4 | * 5 | * == BEGIN LICENSE == 6 | * 7 | * Licensed under the terms of any of the following licenses at your 8 | * choice: 9 | * 10 | * - GNU General Public License Version 2 or later (the "GPL") 11 | * http://www.gnu.org/licenses/gpl.html 12 | * 13 | * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 14 | * http://www.gnu.org/licenses/lgpl.html 15 | * 16 | * - Mozilla Public License Version 1.1 or later (the "MPL") 17 | * http://www.mozilla.org/MPL/MPL-1.1.html 18 | * 19 | * == END LICENSE == 20 | * 21 | * This plugin register Toolbar items for the combos modifying the style to 22 | * not show the box. 23 | */ 24 | 25 | FCKToolbarItems.RegisterItem( 'SourceSimple' , new FCKToolbarButton( 'Source', FCKLang.Source, null, FCK_TOOLBARITEM_ONLYICON, true, true, 1 ) ) ; 26 | FCKToolbarItems.RegisterItem( 'StyleSimple' , new FCKToolbarStyleCombo( null, FCK_TOOLBARITEM_ONLYTEXT ) ) ; 27 | FCKToolbarItems.RegisterItem( 'FontNameSimple' , new FCKToolbarFontsCombo( null, FCK_TOOLBARITEM_ONLYTEXT ) ) ; 28 | FCKToolbarItems.RegisterItem( 'FontSizeSimple' , new FCKToolbarFontSizeCombo( null, FCK_TOOLBARITEM_ONLYTEXT ) ) ; 29 | FCKToolbarItems.RegisterItem( 'FontFormatSimple', new FCKToolbarFontFormatCombo( null, FCK_TOOLBARITEM_ONLYTEXT ) ) ; 30 | -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/default/fck_strip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/default/fck_strip.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/default/images/dialog.sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/default/images/dialog.sides.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/default/images/dialog.sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/default/images/dialog.sides.png -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/default/images/dialog.sides.rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/default/images/dialog.sides.rtl.png -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/default/images/sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/default/images/sprites.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/default/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/default/images/sprites.png -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/default/images/toolbar.arrowright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/default/images/toolbar.arrowright.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/default/images/toolbar.buttonarrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/default/images/toolbar.buttonarrow.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/default/images/toolbar.collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/default/images/toolbar.collapse.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/default/images/toolbar.end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/default/images/toolbar.end.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/default/images/toolbar.expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/default/images/toolbar.expand.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/default/images/toolbar.separator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/default/images/toolbar.separator.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/default/images/toolbar.start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/default/images/toolbar.start.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/office2003/fck_strip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/office2003/fck_strip.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/office2003/images/dialog.sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/office2003/images/dialog.sides.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/office2003/images/dialog.sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/office2003/images/dialog.sides.png -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/office2003/images/dialog.sides.rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/office2003/images/dialog.sides.rtl.png -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/office2003/images/sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/office2003/images/sprites.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/office2003/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/office2003/images/sprites.png -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/office2003/images/toolbar.arrowright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/office2003/images/toolbar.arrowright.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/office2003/images/toolbar.bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/office2003/images/toolbar.bg.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/office2003/images/toolbar.buttonarrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/office2003/images/toolbar.buttonarrow.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/office2003/images/toolbar.collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/office2003/images/toolbar.collapse.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/office2003/images/toolbar.end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/office2003/images/toolbar.end.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/office2003/images/toolbar.expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/office2003/images/toolbar.expand.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/office2003/images/toolbar.separator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/office2003/images/toolbar.separator.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/office2003/images/toolbar.start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/office2003/images/toolbar.start.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/silver/fck_strip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/silver/fck_strip.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/silver/images/dialog.sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/silver/images/dialog.sides.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/silver/images/dialog.sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/silver/images/dialog.sides.png -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/silver/images/dialog.sides.rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/silver/images/dialog.sides.rtl.png -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/silver/images/sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/silver/images/sprites.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/silver/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/silver/images/sprites.png -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/silver/images/toolbar.arrowright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/silver/images/toolbar.arrowright.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/silver/images/toolbar.buttonarrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/silver/images/toolbar.buttonarrow.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/silver/images/toolbar.buttonbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/silver/images/toolbar.buttonbg.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/silver/images/toolbar.collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/silver/images/toolbar.collapse.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/silver/images/toolbar.end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/silver/images/toolbar.end.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/silver/images/toolbar.expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/silver/images/toolbar.expand.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/silver/images/toolbar.separator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/silver/images/toolbar.separator.gif -------------------------------------------------------------------------------- /WebRoot/fckeditor/editor/skins/silver/images/toolbar.start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/fckeditor/editor/skins/silver/images/toolbar.start.gif -------------------------------------------------------------------------------- /WebRoot/images/bg.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/images/bg.JPG -------------------------------------------------------------------------------- /WebRoot/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/images/bg.gif -------------------------------------------------------------------------------- /WebRoot/images/bg_20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/images/bg_20.gif -------------------------------------------------------------------------------- /WebRoot/images/but1_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/images/but1_1.gif -------------------------------------------------------------------------------- /WebRoot/images/dialogclose.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/images/dialogclose.gif -------------------------------------------------------------------------------- /WebRoot/images/fail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/images/fail.jpg -------------------------------------------------------------------------------- /WebRoot/images/fon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/images/fon.gif -------------------------------------------------------------------------------- /WebRoot/images/fon_bot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/images/fon_bot.gif -------------------------------------------------------------------------------- /WebRoot/images/fon_but.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/images/fon_but.gif -------------------------------------------------------------------------------- /WebRoot/images/fon_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/images/fon_top.gif -------------------------------------------------------------------------------- /WebRoot/images/index_32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/images/index_32.gif -------------------------------------------------------------------------------- /WebRoot/images/inputbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/images/inputbg.gif -------------------------------------------------------------------------------- /WebRoot/images/l1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/images/l1.gif -------------------------------------------------------------------------------- /WebRoot/images/l11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/images/l11.gif -------------------------------------------------------------------------------- /WebRoot/images/lbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/images/lbg.gif -------------------------------------------------------------------------------- /WebRoot/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/images/loading.gif -------------------------------------------------------------------------------- /WebRoot/images/login.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/images/login.gif -------------------------------------------------------------------------------- /WebRoot/images/login01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/images/login01.jpg -------------------------------------------------------------------------------- /WebRoot/images/login02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/images/login02.jpg -------------------------------------------------------------------------------- /WebRoot/images/login03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/images/login03.jpg -------------------------------------------------------------------------------- /WebRoot/images/login04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/images/login04.jpg -------------------------------------------------------------------------------- /WebRoot/images/login05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/images/login05.jpg -------------------------------------------------------------------------------- /WebRoot/images/m3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/images/m3.gif -------------------------------------------------------------------------------- /WebRoot/images/titlebg.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/images/titlebg.JPG -------------------------------------------------------------------------------- /WebRoot/img/base.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/img/base.gif -------------------------------------------------------------------------------- /WebRoot/img/cd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/img/cd.gif -------------------------------------------------------------------------------- /WebRoot/img/dialogclose.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/img/dialogclose.gif -------------------------------------------------------------------------------- /WebRoot/img/dian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/img/dian.jpg -------------------------------------------------------------------------------- /WebRoot/img/empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/img/empty.gif -------------------------------------------------------------------------------- /WebRoot/img/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/img/folder.gif -------------------------------------------------------------------------------- /WebRoot/img/folderopen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/img/folderopen.gif -------------------------------------------------------------------------------- /WebRoot/img/globe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/img/globe.gif -------------------------------------------------------------------------------- /WebRoot/img/head-mark4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/img/head-mark4.gif -------------------------------------------------------------------------------- /WebRoot/img/imgfolder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/img/imgfolder.gif -------------------------------------------------------------------------------- /WebRoot/img/join.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/img/join.gif -------------------------------------------------------------------------------- /WebRoot/img/joinbottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/img/joinbottom.gif -------------------------------------------------------------------------------- /WebRoot/img/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/img/line.gif -------------------------------------------------------------------------------- /WebRoot/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/img/loading.gif -------------------------------------------------------------------------------- /WebRoot/img/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/img/minus.gif -------------------------------------------------------------------------------- /WebRoot/img/minusbottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/img/minusbottom.gif -------------------------------------------------------------------------------- /WebRoot/img/musicfolder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/img/musicfolder.gif -------------------------------------------------------------------------------- /WebRoot/img/nolines_minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/img/nolines_minus.gif -------------------------------------------------------------------------------- /WebRoot/img/nolines_plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/img/nolines_plus.gif -------------------------------------------------------------------------------- /WebRoot/img/page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/img/page.gif -------------------------------------------------------------------------------- /WebRoot/img/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/img/plus.gif -------------------------------------------------------------------------------- /WebRoot/img/plusbottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/img/plusbottom.gif -------------------------------------------------------------------------------- /WebRoot/img/question.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/img/question.gif -------------------------------------------------------------------------------- /WebRoot/img/trash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/img/trash.gif -------------------------------------------------------------------------------- /WebRoot/jquery/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/jquery/calendar.gif -------------------------------------------------------------------------------- /WebRoot/jquery/ui.datepicker-zh-CN.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Cloudream (cloudream@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['zh-CN'] = { 5 | clearText: '清除', clearStatus: '清除已选日期', 6 | closeText: '关闭', closeStatus: '不改变当前选择', 7 | prevText: '<上月', prevStatus: '显示上月', 8 | nextText: '下月>', nextStatus: '显示下月', 9 | currentText: '今天', currentStatus: '显示本月', 10 | monthNames: ['一月','二月','三月','四月','五月','六月','七月','八月','九月','十月','十一月','十二月'], 11 | monthNamesShort: ['一','二','三','四','五','六','七','八','九','十','十一','十二'], 12 | monthStatus: '选择月份', yearStatus: '选择年份', 13 | weekHeader: '周', weekStatus: '年内周次', 14 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 15 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 16 | dayNamesMin: ['日','一','二','三','四','五','六'], 17 | dayStatus: '设置 DD 为一周起始', dateStatus: '选择 m月 d日, DD', 18 | dateFormat: 'yy-mm-dd', firstDay: 1, 19 | initStatus: '请选择日期', isRTL: false}; 20 | 21 | $.datepicker.setDefaults($.datepicker.regional['zh-CN']); 22 | }); 23 | -------------------------------------------------------------------------------- /WebRoot/js/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/js/popup.js -------------------------------------------------------------------------------- /WebRoot/js/popup_shuaxin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/js/popup_shuaxin.js -------------------------------------------------------------------------------- /WebRoot/js/selectMonth.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WebRoot/js/selectMonth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/WebRoot/js/selectMonth.js -------------------------------------------------------------------------------- /WebRoot/loginSuccess.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> 3 | <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> 4 | <%@ page isELIgnored="false" %> 5 | <% 6 | String path = request.getContextPath(); 7 | %> 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 37 |








38 |
页面跳转中
39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /WebRoot/upload/upload.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <% 3 | String path = request.getContextPath(); 4 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 5 | %> 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 27 | 28 | 29 | 30 |
31 | 32 | 33 |
34 | 35 | 36 | -------------------------------------------------------------------------------- /src/com/action/gonggao_servlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/src/com/action/gonggao_servlet.java -------------------------------------------------------------------------------- /src/com/action/gongzi_servlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/src/com/action/gongzi_servlet.java -------------------------------------------------------------------------------- /src/com/action/org_servlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/src/com/action/org_servlet.java -------------------------------------------------------------------------------- /src/com/action/qiandao_servlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/src/com/action/qiandao_servlet.java -------------------------------------------------------------------------------- /src/com/action/qiantui_servlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/src/com/action/qiantui_servlet.java -------------------------------------------------------------------------------- /src/com/action/qingjia_servlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/src/com/action/qingjia_servlet.java -------------------------------------------------------------------------------- /src/com/action/yuangong_servlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/src/com/action/yuangong_servlet.java -------------------------------------------------------------------------------- /src/com/orm/TAdmin.java: -------------------------------------------------------------------------------- 1 | package com.orm; 2 | 3 | public class TAdmin 4 | { 5 | private int userId; 6 | private String userName; 7 | private String userPw; 8 | 9 | 10 | public String getUserName() 11 | { 12 | return userName; 13 | } 14 | 15 | public void setUserName(String userName) 16 | { 17 | this.userName = userName; 18 | } 19 | 20 | public String getUserPw() 21 | { 22 | return userPw; 23 | } 24 | 25 | public void setUserPw(String userPw) 26 | { 27 | this.userPw = userPw; 28 | } 29 | 30 | public int getUserId() 31 | { 32 | return userId; 33 | } 34 | 35 | public void setUserId(int userId) 36 | { 37 | this.userId = userId; 38 | } 39 | 40 | } 41 | -------------------------------------------------------------------------------- /src/com/orm/TChuqin.java: -------------------------------------------------------------------------------- 1 | package com.orm; 2 | 3 | public class TChuqin 4 | { 5 | private String id; 6 | private String yuangong_id; 7 | private String riqi; 8 | private String qiandaoshi; 9 | 10 | private String qiandaoshuxing; 11 | private String qiantuishi; 12 | private String qiantuishuxing; 13 | 14 | private TYuangong yuangong; 15 | 16 | public String getId() { 17 | return id; 18 | } 19 | 20 | public void setId(String id) { 21 | this.id = id; 22 | } 23 | 24 | 25 | public String getYuangong_id() { 26 | return yuangong_id; 27 | } 28 | 29 | public void setYuangong_id(String yuangong_id) { 30 | this.yuangong_id = yuangong_id; 31 | } 32 | 33 | public String getRiqi() { 34 | return riqi; 35 | } 36 | 37 | public void setRiqi(String riqi) { 38 | this.riqi = riqi; 39 | } 40 | 41 | public String getQiandaoshi() { 42 | return qiandaoshi; 43 | } 44 | 45 | public void setQiandaoshi(String qiandaoshi) { 46 | this.qiandaoshi = qiandaoshi; 47 | } 48 | 49 | public String getQiandaoshuxing() { 50 | return qiandaoshuxing; 51 | } 52 | 53 | public void setQiandaoshuxing(String qiandaoshuxing) { 54 | this.qiandaoshuxing = qiandaoshuxing; 55 | } 56 | 57 | public String getQiantuishi() { 58 | return qiantuishi; 59 | } 60 | 61 | public void setQiantuishi(String qiantuishi) { 62 | this.qiantuishi = qiantuishi; 63 | } 64 | 65 | public String getQiantuishuxing() { 66 | return qiantuishuxing; 67 | } 68 | 69 | public void setQiantuishuxing(String qiantuishuxing) { 70 | this.qiantuishuxing = qiantuishuxing; 71 | } 72 | 73 | public TYuangong getYuangong() { 74 | return yuangong; 75 | } 76 | 77 | public void setYuangong(TYuangong yuangong) { 78 | this.yuangong = yuangong; 79 | } 80 | 81 | } -------------------------------------------------------------------------------- /src/com/orm/TQiandao.java: -------------------------------------------------------------------------------- 1 | package com.orm; 2 | 3 | public class TQiandao 4 | { 5 | 6 | private String id; 7 | private String yuangong_id; 8 | private String riqi; 9 | private String shijian; 10 | 11 | private String shuxing; 12 | private TYuangong yuangong; 13 | 14 | private String qiantuishi; 15 | private String qiantuishuxing; 16 | 17 | 18 | public String getId() { 19 | return id; 20 | } 21 | public void setId(String id) { 22 | this.id = id; 23 | } 24 | 25 | public String getYuangong_id() { 26 | return yuangong_id; 27 | } 28 | public void setYuangong_id(String yuangong_id) { 29 | this.yuangong_id = yuangong_id; 30 | } 31 | public String getRiqi() { 32 | return riqi; 33 | } 34 | public void setRiqi(String riqi) { 35 | this.riqi = riqi; 36 | } 37 | public String getShijian() { 38 | return shijian; 39 | } 40 | public void setShijian(String shijian) { 41 | this.shijian = shijian; 42 | } 43 | public String getShuxing() { 44 | return shuxing; 45 | } 46 | public void setShuxing(String shuxing) { 47 | this.shuxing = shuxing; 48 | } 49 | public TYuangong getYuangong() { 50 | return yuangong; 51 | } 52 | public void setYuangong(TYuangong yuangong) { 53 | this.yuangong = yuangong; 54 | } 55 | public String getQiantuishi() { 56 | return qiantuishi; 57 | } 58 | public void setQiantuishi(String qiantuishi) { 59 | this.qiantuishi = qiantuishi; 60 | } 61 | public String getQiantuishuxing() { 62 | return qiantuishuxing; 63 | } 64 | public void setQiantuishuxing(String qiantuishuxing) { 65 | this.qiantuishuxing = qiantuishuxing; 66 | } 67 | 68 | } -------------------------------------------------------------------------------- /src/com/orm/TQiantui.java: -------------------------------------------------------------------------------- 1 | package com.orm; 2 | 3 | 4 | public class TQiantui{ 5 | 6 | // Fields 7 | 8 | private String id; 9 | private String yuangong_id; 10 | private String riqi; 11 | private String shijian; 12 | 13 | private String shuxing; 14 | 15 | private TYuangong yuangong; 16 | 17 | 18 | public String getId() { 19 | return id; 20 | } 21 | 22 | public void setId(String id) { 23 | this.id = id; 24 | } 25 | 26 | 27 | public String getYuangong_id() { 28 | return yuangong_id; 29 | } 30 | 31 | public void setYuangong_id(String yuangong_id) { 32 | this.yuangong_id = yuangong_id; 33 | } 34 | 35 | public String getRiqi() { 36 | return riqi; 37 | } 38 | 39 | public void setRiqi(String riqi) { 40 | this.riqi = riqi; 41 | } 42 | 43 | public String getShijian() { 44 | return shijian; 45 | } 46 | 47 | public void setShijian(String shijian) { 48 | this.shijian = shijian; 49 | } 50 | 51 | public String getShuxing() { 52 | return shuxing; 53 | } 54 | 55 | public void setShuxing(String shuxing) { 56 | this.shuxing = shuxing; 57 | } 58 | 59 | public TYuangong getYuangong() { 60 | return yuangong; 61 | } 62 | 63 | public void setYuangong(TYuangong yuangong) { 64 | this.yuangong = yuangong; 65 | } 66 | 67 | } -------------------------------------------------------------------------------- /src/com/orm/TYuangong.java: -------------------------------------------------------------------------------- 1 | package com.orm; 2 | 3 | public class TYuangong 4 | { 5 | private String id; 6 | private String org_id; 7 | private String gonghao; 8 | private String loginpw; 9 | 10 | private String xingming; 11 | private String xingbie; 12 | private String chusheng; 13 | private String zhuzhi; 14 | 15 | private String del; 16 | 17 | private Torg org; 18 | 19 | 20 | public String getOrg_id() { 21 | return org_id; 22 | } 23 | public void setOrg_id(String org_id) { 24 | this.org_id = org_id; 25 | } 26 | 27 | public String getId() { 28 | return id; 29 | } 30 | public void setId(String id) { 31 | this.id = id; 32 | } 33 | public String getGonghao() { 34 | return gonghao; 35 | } 36 | public void setGonghao(String gonghao) { 37 | this.gonghao = gonghao; 38 | } 39 | public String getLoginpw() { 40 | return loginpw; 41 | } 42 | public void setLoginpw(String loginpw) { 43 | this.loginpw = loginpw; 44 | } 45 | public String getXingming() { 46 | return xingming; 47 | } 48 | public void setXingming(String xingming) { 49 | this.xingming = xingming; 50 | } 51 | public String getXingbie() { 52 | return xingbie; 53 | } 54 | 55 | public Torg getOrg() { 56 | return org; 57 | } 58 | public void setOrg(Torg org) { 59 | this.org = org; 60 | } 61 | public void setXingbie(String xingbie) { 62 | this.xingbie = xingbie; 63 | } 64 | public String getChusheng() { 65 | return chusheng; 66 | } 67 | public void setChusheng(String chusheng) { 68 | this.chusheng = chusheng; 69 | } 70 | 71 | public String getZhuzhi() { 72 | return zhuzhi; 73 | } 74 | public void setZhuzhi(String zhuzhi) { 75 | this.zhuzhi = zhuzhi; 76 | } 77 | public String getDel() { 78 | return del; 79 | } 80 | public void setDel(String del) { 81 | this.del = del; 82 | } 83 | } 84 | -------------------------------------------------------------------------------- /src/com/orm/Tgonggao.java: -------------------------------------------------------------------------------- 1 | package com.orm; 2 | 3 | public class Tgonggao 4 | { 5 | private String id; 6 | private String title; 7 | private String content; 8 | private String shijian; 9 | 10 | 11 | 12 | public String getContent() 13 | { 14 | return content; 15 | } 16 | public void setContent(String content) 17 | { 18 | this.content = content; 19 | } 20 | public String getId() 21 | { 22 | return id; 23 | } 24 | public void setId(String id) 25 | { 26 | this.id = id; 27 | } 28 | public String getShijian() 29 | { 30 | return shijian; 31 | } 32 | public void setShijian(String shijian) 33 | { 34 | this.shijian = shijian; 35 | } 36 | public String getTitle() 37 | { 38 | return title; 39 | } 40 | public void setTitle(String title) 41 | { 42 | this.title = title; 43 | } 44 | 45 | } 46 | -------------------------------------------------------------------------------- /src/com/orm/Tgongzi.java: -------------------------------------------------------------------------------- 1 | package com.orm; 2 | 3 | public class Tgongzi 4 | { 5 | private String id; 6 | private String yuangong_id; 7 | private String yuefen; 8 | private int jiben; 9 | 10 | private int jiangjin; 11 | private int kouchu; 12 | private String beizhu; 13 | private int zong; 14 | 15 | private TYuangong yuangong; 16 | 17 | public String getId() { 18 | return id; 19 | } 20 | 21 | public void setId(String id) { 22 | this.id = id; 23 | } 24 | 25 | public String getYuangong_id() { 26 | return yuangong_id; 27 | } 28 | 29 | public void setYuangong_id(String yuangong_id) { 30 | this.yuangong_id = yuangong_id; 31 | } 32 | 33 | public String getYuefen() { 34 | return yuefen; 35 | } 36 | 37 | public void setYuefen(String yuefen) { 38 | this.yuefen = yuefen; 39 | } 40 | 41 | public int getJiben() { 42 | return jiben; 43 | } 44 | 45 | public void setJiben(int jiben) { 46 | this.jiben = jiben; 47 | } 48 | 49 | public int getJiangjin() { 50 | return jiangjin; 51 | } 52 | 53 | public void setJiangjin(int jiangjin) { 54 | this.jiangjin = jiangjin; 55 | } 56 | 57 | public int getKouchu() { 58 | return kouchu; 59 | } 60 | 61 | public void setKouchu(int kouchu) { 62 | this.kouchu = kouchu; 63 | } 64 | 65 | public String getBeizhu() { 66 | return beizhu; 67 | } 68 | 69 | public void setBeizhu(String beizhu) { 70 | this.beizhu = beizhu; 71 | } 72 | 73 | public int getZong() { 74 | return zong; 75 | } 76 | 77 | public void setZong(int zong) { 78 | this.zong = zong; 79 | } 80 | 81 | public TYuangong getYuangong() { 82 | return yuangong; 83 | } 84 | 85 | public void setYuangong(TYuangong yuangong) { 86 | this.yuangong = yuangong; 87 | } 88 | 89 | } 90 | -------------------------------------------------------------------------------- /src/com/orm/Torg.java: -------------------------------------------------------------------------------- 1 | package com.orm; 2 | 3 | public class Torg 4 | { 5 | private String org_id; 6 | private String org_mingcheng; 7 | private String p_org_id; 8 | private String leixing; 9 | 10 | private String org_del; 11 | 12 | public String getOrg_id() { 13 | return org_id; 14 | } 15 | 16 | public void setOrg_id(String org_id) { 17 | this.org_id = org_id; 18 | } 19 | 20 | public String getOrg_mingcheng() { 21 | return org_mingcheng; 22 | } 23 | 24 | public void setOrg_mingcheng(String org_mingcheng) { 25 | this.org_mingcheng = org_mingcheng; 26 | } 27 | 28 | public String getP_org_id() { 29 | return p_org_id; 30 | } 31 | 32 | public void setP_org_id(String p_org_id) { 33 | this.p_org_id = p_org_id; 34 | } 35 | 36 | public String getLeixing() { 37 | return leixing; 38 | } 39 | 40 | public void setLeixing(String leixing) { 41 | this.leixing = leixing; 42 | } 43 | 44 | public String getOrg_del() { 45 | return org_del; 46 | } 47 | 48 | public void setOrg_del(String org_del) { 49 | this.org_del = org_del; 50 | } 51 | 52 | } 53 | -------------------------------------------------------------------------------- /src/com/orm/Tqingjia.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/src/com/orm/Tqingjia.java -------------------------------------------------------------------------------- /src/com/service/liuService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/src/com/service/liuService.java -------------------------------------------------------------------------------- /src/com/service/loginService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/src/com/service/loginService.java -------------------------------------------------------------------------------- /src/com/util/EncodingFilter.java: -------------------------------------------------------------------------------- 1 | package com.util; 2 | 3 | import java.io.IOException; 4 | import javax.servlet.Filter; 5 | import javax.servlet.FilterChain; 6 | import javax.servlet.FilterConfig; 7 | import javax.servlet.ServletException; 8 | import javax.servlet.ServletRequest; 9 | import javax.servlet.ServletResponse; 10 | 11 | public class EncodingFilter implements Filter { 12 | protected String encoding = null; 13 | 14 | protected FilterConfig filterConfig = null; 15 | 16 | public void destroy() { 17 | this.encoding = null; 18 | this.filterConfig = null; 19 | } 20 | 21 | public void doFilter(ServletRequest request, ServletResponse response, 22 | FilterChain chain) throws IOException, ServletException { 23 | // Select and set (if needed) the character encoding to be used 24 | String encoding = selectEncoding(request); 25 | if (encoding != null) { 26 | request.setCharacterEncoding(encoding); 27 | response.setCharacterEncoding(encoding); 28 | } 29 | // Pass control on to the next filter 30 | chain.doFilter(request, response); 31 | } 32 | 33 | public void init(FilterConfig filterConfig) throws ServletException { 34 | this.filterConfig = filterConfig; 35 | this.encoding = filterConfig.getInitParameter("encoding"); 36 | } 37 | 38 | protected String selectEncoding(ServletRequest request) { 39 | return (this.encoding); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /文档/QQ图片20190509233845.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/文档/QQ图片20190509233845.jpg -------------------------------------------------------------------------------- /文档/QQ图片20200327234637.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/文档/QQ图片20200327234637.jpg -------------------------------------------------------------------------------- /文档/开题报告.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/文档/开题报告.doc -------------------------------------------------------------------------------- /文档/毕业论文.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/文档/毕业论文.doc -------------------------------------------------------------------------------- /文档/答辩幻灯片.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JavaGraduationProject/PersonnelManagementSystem/220e6c3cf15dee04691b04834e2dd146129f9270/文档/答辩幻灯片.ppt --------------------------------------------------------------------------------