├── .classpath ├── .myhibernatedata ├── .mymetadata ├── .mystrutsdata ├── .project ├── .settings ├── .jsdtscope ├── com.genuitec.eclipse.core.prefs ├── com.genuitec.eclipse.j2eedt.core.prefs ├── org.eclipse.jdt.core.prefs ├── org.eclipse.wst.common.component ├── org.eclipse.wst.common.project.facet.core.xml ├── org.eclipse.wst.jsdt.ui.superType.container ├── org.eclipse.wst.jsdt.ui.superType.name └── org.eclipse.wst.validation.prefs ├── README.md ├── WebRoot ├── META-INF │ └── MANIFEST.MF ├── WEB-INF │ ├── classes │ │ ├── cn │ │ │ └── edu │ │ │ │ ├── action │ │ │ │ ├── AdminLogoutAction.class │ │ │ │ ├── AdminManNoteListAction.class │ │ │ │ ├── AdminManNoticeContextAction.class │ │ │ │ ├── AdminManNoticeDeleteAction.class │ │ │ │ ├── AdminManNoticeInsertAction.class │ │ │ │ ├── AdminManNoticeUpdateAction.class │ │ │ │ ├── AdminSearchStuAction.class │ │ │ │ ├── AdminStuDeleteAction.class │ │ │ │ ├── AdminToUpMultiFileAction.class │ │ │ │ ├── AdminsearchStuDetailAction.class │ │ │ │ ├── CheckAdminAction.class │ │ │ │ ├── CompCheckStuResume.class │ │ │ │ ├── CompCheckStudentAction.class │ │ │ │ ├── CompLogoutAction.class │ │ │ │ ├── CompanyCompleteInfoAction.class │ │ │ │ ├── CompanyLoginAction.class │ │ │ │ ├── CompanyManageJobAction.class │ │ │ │ ├── CompanyPreviewInfoAction.class │ │ │ │ ├── CompanyRegistAction-validation.xml │ │ │ │ ├── CompanyRegistAction.class │ │ │ │ ├── FileUploadError_zh_CN.properties │ │ │ │ ├── JobContextAction.class │ │ │ │ ├── MajorcountAction.class │ │ │ │ ├── MultiFileAction.class │ │ │ │ ├── StuJobListAction.class │ │ │ │ ├── StuResumeJobListAction.class │ │ │ │ ├── StuToUpdateResumeAction.class │ │ │ │ ├── StuUpdateResumeAction-validation.xml │ │ │ │ ├── StuUpdateResumeAction.class │ │ │ │ ├── StuWriteJobInfoAction.class │ │ │ │ ├── StudentJobContentAction.class │ │ │ │ ├── StudentLoginAction.class │ │ │ │ ├── StudentLogoutAction.class │ │ │ │ ├── StudentPreviewResumeAction.class │ │ │ │ ├── StudentRegistAction-validation.xml │ │ │ │ ├── StudentRegistAction.class │ │ │ │ ├── StudentSendResumeAction.class │ │ │ │ ├── StudentToWriteJobInfoAction.class │ │ │ │ ├── TestAction.class │ │ │ │ ├── companyAction.class │ │ │ │ ├── countAction.class │ │ │ │ └── sexCountAction.class │ │ │ │ ├── dao │ │ │ │ ├── BaseHibernateDAO.class │ │ │ │ ├── IBaseHibernateDAO.class │ │ │ │ ├── JobCountDAO.class │ │ │ │ ├── TbAdminDAO.class │ │ │ │ ├── TbCompanyDAO.class │ │ │ │ ├── TbJobDAO.class │ │ │ │ ├── TbPolicyDAO.class │ │ │ │ ├── TbStudentDAO.class │ │ │ │ └── TbStujobDAO.class │ │ │ │ ├── entity │ │ │ │ ├── ComJobStu.class │ │ │ │ ├── TbAdmin.class │ │ │ │ ├── TbAdmin.hbm.xml │ │ │ │ ├── TbCompany.class │ │ │ │ ├── TbCompany.hbm.xml │ │ │ │ ├── TbJob.class │ │ │ │ ├── TbJob.hbm.xml │ │ │ │ ├── TbPolicy.class │ │ │ │ ├── TbPolicy.hbm.xml │ │ │ │ ├── TbStudent.class │ │ │ │ ├── TbStudent.hbm.xml │ │ │ │ ├── TbStujob.class │ │ │ │ ├── TbStujob.hbm.xml │ │ │ │ └── TbStujobId.class │ │ │ │ ├── service │ │ │ │ ├── AdminManNoticeDelete.class │ │ │ │ ├── AdminManNoticeUpdate.class │ │ │ │ ├── AdminManageNoticeInsert.class │ │ │ │ ├── AdminManageNoticeList.class │ │ │ │ ├── AdminSearchStu.class │ │ │ │ ├── AdminStuDelete.class │ │ │ │ ├── AdminsearchStuDetail.class │ │ │ │ ├── CheckAdmin.class │ │ │ │ ├── CompCheckStudentList.class │ │ │ │ ├── CompanyCompleteInfo.class │ │ │ │ ├── CompanyLogin.class │ │ │ │ ├── CompanyManageJob.class │ │ │ │ ├── CompanyPreviewInfo.class │ │ │ │ ├── CompanyRegist.class │ │ │ │ ├── StuJobList.class │ │ │ │ ├── StuResumeJobList.class │ │ │ │ ├── StuSendResume.class │ │ │ │ ├── StuUpdateResume.class │ │ │ │ ├── StuWriteJobInfo.class │ │ │ │ ├── StudentJobContent.class │ │ │ │ ├── StudentLogin.class │ │ │ │ ├── StudentPreviewResume.class │ │ │ │ ├── StudentRegist.class │ │ │ │ ├── adminCompanyList.class │ │ │ │ └── adminExamJobList.class │ │ │ │ └── sessionfactory │ │ │ │ └── HibernateSessionFactory.class │ │ ├── hibernate.cfg.xml │ │ └── struts.xml │ ├── lib │ │ ├── antlr-2.7.6.jar │ │ ├── cglib-2.2.jar │ │ ├── commons-collections-3.1.jar │ │ ├── dom4j-1.6.1.jar │ │ ├── ehcache-1.2.3.jar │ │ ├── ejb3-persistence.jar │ │ ├── hibernate-annotations.jar │ │ ├── hibernate-commons-annotations.jar │ │ ├── hibernate-entitymanager.jar │ │ ├── hibernate-validator.jar │ │ ├── hibernate3.jar │ │ ├── javassist-3.9.0.GA.jar │ │ ├── jcommon-1.0.16.jar │ │ ├── jfreechart-1.0.13-experimental.jar │ │ ├── jfreechart-1.0.13-swt.jar │ │ ├── jfreechart-1.0.13.jar │ │ ├── jta-1.1.jar │ │ ├── log4j-1.2.14.jar │ │ ├── mysql-connector-java-5.1.7-bin.jar │ │ ├── slf4j-api-1.5.8.jar │ │ └── slf4j-log4j12-1.5.8.jar │ ├── view │ │ ├── CompStuPreviewResume.jsp │ │ ├── adminCheckCompContent.jsp │ │ ├── adminCheckCompList.jsp │ │ ├── adminCheckStuContent.jsp │ │ ├── adminCheckStuList.jsp │ │ ├── adminCountEmployee.jsp │ │ ├── adminExamJobContent.jsp │ │ ├── adminExamJobList.jsp │ │ ├── adminIndex.jsp │ │ ├── adminManageNoticeContent.jsp │ │ ├── adminManageNoticeInsert.jsp │ │ ├── adminManageNoticeList.jsp │ │ ├── adminManageNoticeUpdate.jsp │ │ ├── adminSearchStu.jsp │ │ ├── adminUpMultiFile.jsp │ │ ├── comIndex.jsp │ │ ├── compCheckJobContent.jsp │ │ ├── compCheckStuList.jsp │ │ ├── compCompleteInfo.jsp │ │ ├── compCompleteInfoSuccess.jsp │ │ ├── compManageJob.jsp │ │ ├── compPostJob.jsp │ │ ├── compUpdateJob.jsp │ │ ├── error.jsp │ │ ├── showCount.jsp │ │ ├── stuCheckJobContent.jsp │ │ ├── stuCheckJobList.jsp │ │ ├── stuIndex.jsp │ │ ├── stuPreviewResume.jsp │ │ ├── stuSendResume.jsp │ │ ├── stuSendResumeFalse.jsp │ │ ├── stuSendResumeSuccess.jsp │ │ ├── stuUpdateResume.jsp │ │ ├── stuUpdateResumeSuccess.jsp │ │ ├── stuWriteJobInfo.jsp │ │ └── stuWriteJobInfoSuccess.jsp │ └── web.xml ├── ckeditor │ ├── CHANGES.md │ ├── LICENSE.md │ ├── README.md │ ├── adapters │ │ └── jquery.js │ ├── build-config.js │ ├── ckeditor.js │ ├── config.js │ ├── contents.css │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugins │ │ ├── a11yhelp │ │ │ └── dialogs │ │ │ │ ├── a11yhelp.js │ │ │ │ └── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ ├── about │ │ │ └── dialogs │ │ │ │ ├── about.js │ │ │ │ ├── hidpi │ │ │ │ └── logo_ckeditor.png │ │ │ │ └── logo_ckeditor.png │ │ ├── clipboard │ │ │ └── dialogs │ │ │ │ └── paste.js │ │ ├── colordialog │ │ │ └── dialogs │ │ │ │ ├── colordialog.css │ │ │ │ └── colordialog.js │ │ ├── dialog │ │ │ └── dialogDefinition.js │ │ ├── div │ │ │ └── dialogs │ │ │ │ └── div.js │ │ ├── find │ │ │ └── dialogs │ │ │ │ └── find.js │ │ ├── flash │ │ │ ├── dialogs │ │ │ │ └── flash.js │ │ │ └── images │ │ │ │ └── placeholder.png │ │ ├── forms │ │ │ ├── dialogs │ │ │ │ ├── button.js │ │ │ │ ├── checkbox.js │ │ │ │ ├── form.js │ │ │ │ ├── hiddenfield.js │ │ │ │ ├── radio.js │ │ │ │ ├── select.js │ │ │ │ ├── textarea.js │ │ │ │ └── textfield.js │ │ │ └── images │ │ │ │ └── hiddenfield.gif │ │ ├── icons.png │ │ ├── icons_hidpi.png │ │ ├── iframe │ │ │ ├── dialogs │ │ │ │ └── iframe.js │ │ │ └── images │ │ │ │ └── placeholder.png │ │ ├── image │ │ │ ├── dialogs │ │ │ │ └── image.js │ │ │ └── images │ │ │ │ └── noimage.png │ │ ├── link │ │ │ ├── dialogs │ │ │ │ ├── anchor.js │ │ │ │ └── link.js │ │ │ └── images │ │ │ │ ├── anchor.png │ │ │ │ └── hidpi │ │ │ │ └── anchor.png │ │ ├── liststyle │ │ │ └── dialogs │ │ │ │ └── liststyle.js │ │ ├── magicline │ │ │ └── images │ │ │ │ ├── hidpi │ │ │ │ ├── icon-rtl.png │ │ │ │ └── icon.png │ │ │ │ ├── icon-rtl.png │ │ │ │ └── icon.png │ │ ├── pagebreak │ │ │ └── images │ │ │ │ └── pagebreak.gif │ │ ├── pastefromword │ │ │ └── filter │ │ │ │ └── default.js │ │ ├── preview │ │ │ └── preview.html │ │ ├── scayt │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── dialogs │ │ │ │ ├── options.js │ │ │ │ └── toolbar.css │ │ ├── showblocks │ │ │ └── images │ │ │ │ ├── block_address.png │ │ │ │ ├── block_blockquote.png │ │ │ │ ├── block_div.png │ │ │ │ ├── block_h1.png │ │ │ │ ├── block_h2.png │ │ │ │ ├── block_h3.png │ │ │ │ ├── block_h4.png │ │ │ │ ├── block_h5.png │ │ │ │ ├── block_h6.png │ │ │ │ ├── block_p.png │ │ │ │ └── block_pre.png │ │ ├── smiley │ │ │ ├── dialogs │ │ │ │ └── smiley.js │ │ │ └── images │ │ │ │ ├── angel_smile.gif │ │ │ │ ├── angel_smile.png │ │ │ │ ├── angry_smile.gif │ │ │ │ ├── angry_smile.png │ │ │ │ ├── broken_heart.gif │ │ │ │ ├── broken_heart.png │ │ │ │ ├── confused_smile.gif │ │ │ │ ├── confused_smile.png │ │ │ │ ├── cry_smile.gif │ │ │ │ ├── cry_smile.png │ │ │ │ ├── devil_smile.gif │ │ │ │ ├── devil_smile.png │ │ │ │ ├── embaressed_smile.gif │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ ├── embarrassed_smile.png │ │ │ │ ├── envelope.gif │ │ │ │ ├── envelope.png │ │ │ │ ├── heart.gif │ │ │ │ ├── heart.png │ │ │ │ ├── kiss.gif │ │ │ │ ├── kiss.png │ │ │ │ ├── lightbulb.gif │ │ │ │ ├── lightbulb.png │ │ │ │ ├── omg_smile.gif │ │ │ │ ├── omg_smile.png │ │ │ │ ├── regular_smile.gif │ │ │ │ ├── regular_smile.png │ │ │ │ ├── sad_smile.gif │ │ │ │ ├── sad_smile.png │ │ │ │ ├── shades_smile.gif │ │ │ │ ├── shades_smile.png │ │ │ │ ├── teeth_smile.gif │ │ │ │ ├── teeth_smile.png │ │ │ │ ├── thumbs_down.gif │ │ │ │ ├── thumbs_down.png │ │ │ │ ├── thumbs_up.gif │ │ │ │ ├── thumbs_up.png │ │ │ │ ├── tongue_smile.gif │ │ │ │ ├── tongue_smile.png │ │ │ │ ├── tounge_smile.gif │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ ├── whatchutalkingabout_smile.png │ │ │ │ ├── wink_smile.gif │ │ │ │ └── wink_smile.png │ │ ├── specialchar │ │ │ └── dialogs │ │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ │ └── specialchar.js │ │ ├── table │ │ │ └── dialogs │ │ │ │ └── table.js │ │ ├── tabletools │ │ │ └── dialogs │ │ │ │ └── tableCell.js │ │ ├── templates │ │ │ ├── dialogs │ │ │ │ ├── templates.css │ │ │ │ └── templates.js │ │ │ └── templates │ │ │ │ ├── default.js │ │ │ │ └── images │ │ │ │ ├── template1.gif │ │ │ │ ├── template2.gif │ │ │ │ └── template3.gif │ │ └── wsc │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── dialogs │ │ │ ├── ciframe.html │ │ │ ├── tmpFrameset.html │ │ │ ├── wsc.css │ │ │ ├── wsc.js │ │ │ └── wsc_ie.js │ ├── skins │ │ └── moono │ │ │ ├── dialog.css │ │ │ ├── dialog_ie.css │ │ │ ├── dialog_ie7.css │ │ │ ├── dialog_ie8.css │ │ │ ├── dialog_iequirks.css │ │ │ ├── editor.css │ │ │ ├── editor_gecko.css │ │ │ ├── editor_ie.css │ │ │ ├── editor_ie7.css │ │ │ ├── editor_ie8.css │ │ │ ├── editor_iequirks.css │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── images │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ ├── hidpi │ │ │ │ ├── close.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ ├── lock-open.png │ │ │ ├── lock.png │ │ │ ├── refresh.png │ │ │ └── spinner.gif │ │ │ └── readme.md │ └── styles.js ├── css │ ├── bootstrap.min.css │ ├── defined-li.css │ ├── font-awesome.min.css │ ├── main.css │ ├── pro.css │ ├── reset.css │ ├── style.css │ ├── sub.css │ └── templatemo-style.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── images │ ├── 11.jpg │ ├── 111.jpg │ ├── 22.jpg │ ├── 222.jpg │ ├── 33.jpg │ ├── 333.jpg │ ├── 44.jpg │ ├── 444.jpg │ ├── 55.jpg │ ├── 555.jpg │ ├── 66.jpg │ ├── 666.jpg │ ├── 77.jpg │ ├── 777.jpg │ ├── 88.png │ ├── 888.png │ ├── About-us_18.jpg │ ├── About-us_18_hover.jpg │ ├── History_06.png │ ├── History_07.png │ ├── History_arrl.png │ ├── History_div.png │ ├── Historyicon.png │ ├── Thumbs.db │ ├── aboutlibg.jpg │ ├── admin-logo.png │ ├── applicationlibg.png │ ├── arrow.png │ ├── arrow_l.png │ ├── arrow_l_on.png │ ├── arrow_on.png │ ├── arrow_r.png │ ├── arrow_r_on.png │ ├── bicycle.jpg │ ├── biye.png │ ├── bodybg.png │ ├── bolanyuan.png │ ├── bottombg.png │ ├── bottomleftlibg.png │ ├── bottomleftlibg2.jpg │ ├── checkbox-radio-sheet.png │ ├── close.jpg │ ├── company-logo.png │ ├── currentli.gif │ ├── denglu.png │ ├── dl.png │ ├── emailicon.png │ ├── faxicon.png │ ├── follow-hover.png │ ├── follow.png │ ├── foot.jpg │ ├── footbg.jpg │ ├── hoverbg.png │ ├── imgshow_mask.png │ ├── inquiry-step-2.jpg │ ├── inquiry_email-hover.png │ ├── inquiry_email.jpg │ ├── inquiry_tel.jpg │ ├── inquirybg.png │ ├── inquiryformbg.jpg │ ├── lang-headerbg.jpg │ ├── login_pas.png │ ├── login_user.png │ ├── logo.png │ ├── logo1.png │ ├── logobg.png │ ├── menudiv.png │ ├── morearrow.png │ ├── msgbtn-hover.jpg │ ├── msgbtn.png │ ├── newsmore.png │ ├── nothover.png │ ├── orgicon.png │ ├── p1.jpg │ ├── p2.jpg │ ├── p3.jpg │ ├── p4.jpg │ ├── pdf.png │ ├── person.jpg │ ├── proarrwo.jpg │ ├── processbg-hover.jpg │ ├── processbg.png │ ├── prodetailbg.png │ ├── prodetailbtn.png │ ├── productbg.png │ ├── profile-photo.jpg │ ├── prosearcharrow.png │ ├── protab.png │ ├── protabli.png │ ├── registTop.jpg │ ├── relatedpro.png │ ├── relatedproli.png │ ├── scroll_bg.png │ ├── searchbtn.png │ ├── searchkey.png │ ├── shareicon.png │ ├── sidebar-email.jpg │ ├── sidebar-fax.jpg │ ├── sidebar-tel.jpg │ ├── smallpicbg.png │ ├── solutionarrdown.png │ ├── solutionindexbg.jpg │ ├── solutiontab.png │ ├── solutiontabli.png │ ├── student-logo.png │ ├── sub-bannerbg.jpg │ ├── subbodybg.png │ ├── subfooterbg.png │ ├── submenu.png │ ├── submenubg.png │ ├── submenuli.png │ ├── submenulihover.png │ ├── sunset-big.jpg │ ├── sunset.jpg │ ├── tabOn_right.gif │ ├── telicon.png │ ├── top.png │ ├── tophover.png │ ├── tuichu.png │ ├── weixin1.png │ └── xinong.png ├── js │ ├── all.js │ ├── bootstrap-filestyle.min.js │ ├── bootstrap.min.js │ ├── imgSlider.js │ ├── jquery-1.11.2.min.js │ ├── jquery-1.js │ ├── jquery-2.1.4.min.js │ ├── jquery-migrate-1.2.1.min.js │ ├── smartmenu-min.js │ ├── swfobject.js │ └── templatemo-script.js ├── pages │ ├── adminLogin.jsp │ ├── adminLoginFalse.jsp │ ├── adminLoginLogout.jsp │ ├── compLogin.jsp │ ├── compLoginFalse.jsp │ ├── compLoginLogout.jsp │ ├── compRegist.jsp │ ├── compRegistFalse.jsp │ ├── compRegistFalseE.jsp │ ├── gongzuozhize.html │ ├── index.html │ ├── jigoushezhi.html │ ├── jobDetail.jsp │ ├── jobList.jsp │ ├── policeDetail.jsp │ ├── policeList.jsp │ ├── stuLogin.jsp │ ├── stuLoginFalse.jsp │ ├── stuLoginLogout.jsp │ ├── stuRegist.jsp │ ├── stuRegistFalse.jsp │ ├── stuRegistFalseE.jsp │ ├── stumain-t.jsp │ ├── xianrenlingdao.html │ └── zhongxingaikuang.html └── upload │ ├── error.jsp │ └── success.jsp ├── db_graduate.sql ├── hibernate.reveng.xml └── src ├── cn └── edu │ ├── action │ ├── AdminLogoutAction.java │ ├── AdminManNoteListAction.java │ ├── AdminManNoticeContextAction.java │ ├── AdminManNoticeDeleteAction.java │ ├── AdminManNoticeInsertAction.java │ ├── AdminManNoticeUpdateAction.java │ ├── AdminSearchStuAction.java │ ├── AdminStuDeleteAction.java │ ├── AdminToUpMultiFileAction.java │ ├── AdminsearchStuDetailAction.java │ ├── CheckAdminAction.java │ ├── CompCheckStuResume.java │ ├── CompCheckStudentAction.java │ ├── CompLogoutAction.java │ ├── CompanyCompleteInfoAction.java │ ├── CompanyLoginAction.java │ ├── CompanyManageJobAction.java │ ├── CompanyPreviewInfoAction.java │ ├── CompanyRegistAction-validation.xml │ ├── CompanyRegistAction.java │ ├── FileUploadError_zh_CN.properties │ ├── JobContextAction.java │ ├── MajorcountAction.java │ ├── MultiFileAction.java │ ├── StuJobListAction.java │ ├── StuResumeJobListAction.java │ ├── StuToUpdateResumeAction.java │ ├── StuUpdateResumeAction-validation.xml │ ├── StuUpdateResumeAction.java │ ├── StuWriteJobInfoAction.java │ ├── StudentJobContentAction.java │ ├── StudentLoginAction.java │ ├── StudentLogoutAction.java │ ├── StudentPreviewResumeAction.java │ ├── StudentRegistAction-validation.xml │ ├── StudentRegistAction.java │ ├── StudentSendResumeAction.java │ ├── StudentToWriteJobInfoAction.java │ ├── TestAction.java │ ├── companyAction.java │ ├── countAction.java │ └── sexCountAction.java │ ├── dao │ ├── BaseHibernateDAO.java │ ├── IBaseHibernateDAO.java │ ├── JobCountDAO.java │ ├── TbAdminDAO.java │ ├── TbCompanyDAO.java │ ├── TbJobDAO.java │ ├── TbPolicyDAO.java │ ├── TbStudentDAO.java │ └── TbStujobDAO.java │ ├── entity │ ├── ComJobStu.java │ ├── TbAdmin.hbm.xml │ ├── TbAdmin.java │ ├── TbCompany.hbm.xml │ ├── TbCompany.java │ ├── TbJob.hbm.xml │ ├── TbJob.java │ ├── TbPolicy.hbm.xml │ ├── TbPolicy.java │ ├── TbStudent.hbm.xml │ ├── TbStudent.java │ ├── TbStujob.hbm.xml │ ├── TbStujob.java │ └── TbStujobId.java │ ├── service │ ├── AdminManNoticeDelete.java │ ├── AdminManNoticeUpdate.java │ ├── AdminManageNoticeInsert.java │ ├── AdminManageNoticeList.java │ ├── AdminSearchStu.java │ ├── AdminStuDelete.java │ ├── AdminsearchStuDetail.java │ ├── CheckAdmin.java │ ├── CompCheckStudentList.java │ ├── CompanyCompleteInfo.java │ ├── CompanyLogin.java │ ├── CompanyManageJob.java │ ├── CompanyPreviewInfo.java │ ├── CompanyRegist.java │ ├── StuJobList.java │ ├── StuResumeJobList.java │ ├── StuSendResume.java │ ├── StuUpdateResume.java │ ├── StuWriteJobInfo.java │ ├── StudentJobContent.java │ ├── StudentLogin.java │ ├── StudentPreviewResume.java │ ├── StudentRegist.java │ ├── adminCompanyList.java │ └── adminExamJobList.java │ └── sessionfactory │ └── HibernateSessionFactory.java ├── hibernate.cfg.xml └── struts.xml /.myhibernatedata: -------------------------------------------------------------------------------- 1 | #MyEclipse Hibernate Properties 2 | #Mon Jun 29 17:31:30 CST 2015 3 | sessionFactoryName=cn.edu.sessionfactory.HibernateSessionFactory 4 | genBasicCompId=false 5 | profile= 6 | daoSFId= 7 | version=3.3 8 | jndiPath= 9 | detectM2M=false 10 | reStrategyClass= 11 | detectO2O=false 12 | springDaoFile= 13 | useJavaTypes=true 14 | keyGenerator=native 15 | libInstallFolder=/WebRoot/WEB-INF/lib 16 | addLibs2Project=true 17 | genVersionTag=false 18 | sessionFactoryId= 19 | basePersistenceClass= 20 | genAnnotations=false 21 | reSettingsFile=/graduateJob/hibernate.reveng.xml 22 | configFile=/graduateJob/src/hibernate.cfg.xml 23 | createConfigFile=true 24 | addLibs2Classpath=true 25 | baseDaoClass=cn.edu.entity.BaseHibernateDAO 26 | -------------------------------------------------------------------------------- /.mymetadata: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /.mystrutsdata: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 4 | 5 | 0 6 | action 7 | 8 | -------------------------------------------------------------------------------- /.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.settings/com.genuitec.eclipse.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Jul 14 08:59:26 CST 2016 2 | eclipse.preferences.version=1 3 | validator.Checked=WebRoot/js,WebRoot/ckeditor/ckeditor.js 4 | validator.Revalidate=true 5 | validator.Unchecked= 6 | -------------------------------------------------------------------------------- /.settings/com.genuitec.eclipse.j2eedt.core.prefs: -------------------------------------------------------------------------------- 1 | #Tue Jun 30 09:04:43 CST 2015 2 | defaultTldInfo=f\=http\://java.sun.com/jsf/core;http\://java.sun.com/jsf/html\=h;http\://struts.apache.org/tags-bean\=bean;http\://java.sun.com/jsp/jstl/fmt\=fmt;nested\=http\://struts.apache.org/tags-nested;bean\=http\://struts.apache.org/tags-bean;http\://java.sun.com/jsp/jstl/sql\=sql;c\=http\://java.sun.com/jsp/jstl/core;fmt\=http\://java.sun.com/jsp/jstl/fmt;http\://struts.apache.org/tags-logic\=logic;http\://java.sun.com/jsp/jstl/xml\=x;http\://java.sun.com/jsp/jstl/core\=c;logic\=http\://struts.apache.org/tags-logic;h\=http\://java.sun.com/jsf/html;http\://struts.apache.org/tags-tiles\=tiles;http\://java.sun.com/jsp/jstl/functions\=fn;tiles\=http\://struts.apache.org/tags-tiles;sql\=http\://java.sun.com/jsp/jstl/sql;http\://struts.apache.org/tags-html\=html;http\://struts.apache.org/tags-nested\=nested;html\=http\://struts.apache.org/tags-html;http\://java.sun.com/jsf/core\=f;fn\=http\://java.sun.com/jsp/jstl/functions;x\=http\://java.sun.com/jsp/jstl/xml 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Mon Jun 29 17:15:52 CST 2015 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 5 | org.eclipse.jdt.core.compiler.compliance=1.6 6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 7 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 8 | org.eclipse.jdt.core.compiler.source=1.6 9 | -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | #Sat Jul 09 19:33:30 CST 2016 2 | DELEGATES_PREFERENCE=delegateValidatorList 3 | USER_BUILD_PREFERENCE=enabledBuildValidatorListorg.eclipse.jst.j2ee.internal.classpathdep.ClasspathDependencyValidator; 4 | USER_MANUAL_PREFERENCE=enabledManualValidatorListorg.eclipse.jst.j2ee.internal.classpathdep.ClasspathDependencyValidator; 5 | USER_PREFERENCE=overrideGlobalPreferencestruedisableAllValidationfalseversion1.2.300.me201108091322 6 | eclipse.preferences.version=1 7 | override=true 8 | suspend=false 9 | vals/org.eclipse.wst.jsdt.web.core.PureJSValidator/groups=0107include01113projectNature134org.eclipse.wst.jsdt.core.jsNature0107include0107fileext02jsF0107exclude00 10 | vf.version=3 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # GraduteJobManagementSystem 2 | A information system about graduate students' job. 3 | Based on the structure of hibernate and spring, the whole system contains three role functions, including graduate student, company and system administrator. 4 | 5 | 毕业生就业管理系统 6 | 系统框架: hibernate+spring 7 | 直接导入工程会有 hibernate和spring库jar包冲突的情况,移除冲突jar包后方可使用。 数据库用mysql,恢复工程时直接导进去,建表数据项什么的就都有了。“毕业生就业管理系统”项目根据用户角色的不同分为3大部分。毕业生,企业,管理员,具体功能为: 8 | 9 | 在毕业生用户中,功能细分为: 10 | 1. 修改简历信息。 11 | 2. 预览简历信息。 12 | 3. 查看招聘信息 13 | 4. 投递简历信息。 14 | 5. 填写就业信息。 15 | 6. 退出登录。 16 | 17 | 企业用户使用中,功能细分为: 18 | 1. 发布招聘信息。 19 | 2. 管理招聘信息。 20 | 3. 查看应聘信息。 21 | 4. 完善企业信息。 22 | 5. 退出登录。 23 | 24 | 管理人员用户使用中,功能细分为: 25 | 1. 查看学生信息。 26 | 2. 查看企业信息。 27 | 3. 审核职位信息。 28 | 4. 管理公告信息。 29 | 5. 统计就业信息。 30 | 6. 退出登录. 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /WebRoot/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/AdminLogoutAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/AdminLogoutAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/AdminManNoteListAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/AdminManNoteListAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/AdminManNoticeContextAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/AdminManNoticeContextAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/AdminManNoticeDeleteAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/AdminManNoticeDeleteAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/AdminManNoticeInsertAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/AdminManNoticeInsertAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/AdminManNoticeUpdateAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/AdminManNoticeUpdateAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/AdminSearchStuAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/AdminSearchStuAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/AdminStuDeleteAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/AdminStuDeleteAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/AdminToUpMultiFileAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/AdminToUpMultiFileAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/AdminsearchStuDetailAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/AdminsearchStuDetailAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/CheckAdminAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/CheckAdminAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/CompCheckStuResume.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/CompCheckStuResume.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/CompCheckStudentAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/CompCheckStudentAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/CompLogoutAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/CompLogoutAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/CompanyCompleteInfoAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/CompanyCompleteInfoAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/CompanyLoginAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/CompanyLoginAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/CompanyManageJobAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/CompanyManageJobAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/CompanyPreviewInfoAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/CompanyPreviewInfoAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/CompanyRegistAction-validation.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | true 10 | 11 | 12 | 13 | 14 | 15 | 16 | true 17 | 18 | 19 | 20 | 21 | 27 | 28 | 29 | 30 | true 31 | 32 | 33 | 34 | 6 35 | 18 36 | 密码长度应在6到18个字符之间 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/CompanyRegistAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/CompanyRegistAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/FileUploadError_zh_CN.properties: -------------------------------------------------------------------------------- 1 | struts.messages.error.file.too.large=\u4E0A\u4F20\u7684\u6587\u4EF6\u592A\u5927\uFF0C\u8BF7\u91CD\u65B0\u9009\u62E9\u4E0A\u4F20\u6587\u4EF6\uFF01\uFF01 2 | struts.messages.error.content.type.not.allowed=\u4E0A\u4F20\u7684\u6587\u4EF6\u7C7B\u578B\u4E0D\u5141\u8BB8\uFF0C\u8BF7\u91CD\u65B0\u9009\u62E9\u4E0A\u4F20\u6587\u4EF6\uFF01\uFF01 -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/JobContextAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/JobContextAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/MajorcountAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/MajorcountAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/MultiFileAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/MultiFileAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/StuJobListAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/StuJobListAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/StuResumeJobListAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/StuResumeJobListAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/StuToUpdateResumeAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/StuToUpdateResumeAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/StuUpdateResumeAction-validation.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | true 9 | 10 | 11 | 12 | 18 13 | 18 14 | 身份证号长度为18个字符 15 | 16 | 17 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/StuUpdateResumeAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/StuUpdateResumeAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/StuWriteJobInfoAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/StuWriteJobInfoAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/StudentJobContentAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/StudentJobContentAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/StudentLoginAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/StudentLoginAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/StudentLogoutAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/StudentLogoutAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/StudentPreviewResumeAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/StudentPreviewResumeAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/StudentRegistAction-validation.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | true 10 | 11 | 12 | 13 | 14 | 15 | 16 | true 17 | 18 | 19 | 20 | 21 | 22 | 23 | true 24 | 25 | 26 | 27 | 28 | 29 | 30 | true 31 | 32 | 33 | 34 | 6 35 | 18 36 | 密码长度应在6到18个字符之间 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/StudentRegistAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/StudentRegistAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/StudentSendResumeAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/StudentSendResumeAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/StudentToWriteJobInfoAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/StudentToWriteJobInfoAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/TestAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/TestAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/companyAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/companyAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/countAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/countAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/action/sexCountAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/action/sexCountAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/dao/BaseHibernateDAO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/dao/BaseHibernateDAO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/dao/IBaseHibernateDAO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/dao/IBaseHibernateDAO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/dao/JobCountDAO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/dao/JobCountDAO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/dao/TbAdminDAO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/dao/TbAdminDAO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/dao/TbCompanyDAO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/dao/TbCompanyDAO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/dao/TbJobDAO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/dao/TbJobDAO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/dao/TbPolicyDAO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/dao/TbPolicyDAO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/dao/TbStudentDAO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/dao/TbStudentDAO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/dao/TbStujobDAO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/dao/TbStujobDAO.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/entity/ComJobStu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/entity/ComJobStu.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/entity/TbAdmin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/entity/TbAdmin.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/entity/TbAdmin.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/entity/TbCompany.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/entity/TbCompany.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/entity/TbJob.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/entity/TbJob.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/entity/TbJob.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/entity/TbPolicy.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/entity/TbPolicy.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/entity/TbPolicy.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/entity/TbStudent.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/entity/TbStudent.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/entity/TbStujob.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/entity/TbStujob.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/entity/TbStujob.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/entity/TbStujobId.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/entity/TbStujobId.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/service/AdminManNoticeDelete.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/service/AdminManNoticeDelete.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/service/AdminManNoticeUpdate.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/service/AdminManNoticeUpdate.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/service/AdminManageNoticeInsert.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/service/AdminManageNoticeInsert.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/service/AdminManageNoticeList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/service/AdminManageNoticeList.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/service/AdminSearchStu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/service/AdminSearchStu.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/service/AdminStuDelete.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/service/AdminStuDelete.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/service/AdminsearchStuDetail.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/service/AdminsearchStuDetail.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/service/CheckAdmin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/service/CheckAdmin.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/service/CompCheckStudentList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/service/CompCheckStudentList.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/service/CompanyCompleteInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/service/CompanyCompleteInfo.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/service/CompanyLogin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/service/CompanyLogin.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/service/CompanyManageJob.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/service/CompanyManageJob.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/service/CompanyPreviewInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/service/CompanyPreviewInfo.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/service/CompanyRegist.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/service/CompanyRegist.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/service/StuJobList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/service/StuJobList.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/service/StuResumeJobList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/service/StuResumeJobList.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/service/StuSendResume.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/service/StuSendResume.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/service/StuUpdateResume.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/service/StuUpdateResume.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/service/StuWriteJobInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/service/StuWriteJobInfo.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/service/StudentJobContent.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/service/StudentJobContent.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/service/StudentLogin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/service/StudentLogin.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/service/StudentPreviewResume.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/service/StudentPreviewResume.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/service/StudentRegist.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/service/StudentRegist.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/service/adminCompanyList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/service/adminCompanyList.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/service/adminExamJobList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/service/adminExamJobList.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/cn/edu/sessionfactory/HibernateSessionFactory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/classes/cn/edu/sessionfactory/HibernateSessionFactory.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/hibernate.cfg.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | org.hibernate.dialect.MySQLDialect 12 | 13 | 14 | jdbc:mysql://localhost:3306/db_graduate 15 | 16 | root 17 | 18 | com.mysql.jdbc.Driver 19 | 20 | mysqld 21 | true 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/antlr-2.7.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/lib/antlr-2.7.6.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/cglib-2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/lib/cglib-2.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-collections-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/lib/commons-collections-3.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/lib/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/ehcache-1.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/lib/ehcache-1.2.3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/ejb3-persistence.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/lib/ejb3-persistence.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/hibernate-annotations.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/lib/hibernate-annotations.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/hibernate-commons-annotations.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/lib/hibernate-commons-annotations.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/hibernate-entitymanager.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/lib/hibernate-entitymanager.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/hibernate-validator.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/lib/hibernate-validator.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/hibernate3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/lib/hibernate3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/javassist-3.9.0.GA.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/lib/javassist-3.9.0.GA.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jcommon-1.0.16.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/lib/jcommon-1.0.16.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jfreechart-1.0.13-experimental.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/lib/jfreechart-1.0.13-experimental.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jfreechart-1.0.13-swt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/lib/jfreechart-1.0.13-swt.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jfreechart-1.0.13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/lib/jfreechart-1.0.13.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jta-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/lib/jta-1.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/log4j-1.2.14.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/lib/log4j-1.2.14.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/mysql-connector-java-5.1.7-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/lib/mysql-connector-java-5.1.7-bin.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/slf4j-api-1.5.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/lib/slf4j-api-1.5.8.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/slf4j-log4j12-1.5.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/WEB-INF/lib/slf4j-log4j12-1.5.8.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/view/adminCountEmployee.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@ taglib prefix="s" uri="/struts-tags"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme() + "://" 6 | + request.getServerName() + ":" + request.getServerPort() 7 | + path + "/"; 8 | %> 9 | 10 | 11 | 12 | 13 | 14 | 15 | 管理员管理就业信息 16 | 17 | 18 | 19 | 20 | 21 | 22 | 25 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 |
38 | 39 |
40 |
41 |
42 |
43 |
44 |
45 | 58 |
59 |
60 | 61 | 62 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/view/adminExamJobContent.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@ taglib prefix="s" uri="/struts-tags"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme() + "://" 6 | + request.getServerName() + ":" + request.getServerPort() 7 | + path + "/"; 8 | %> 9 | 10 | 11 | 12 | 13 | 14 | 15 | 公司信息 16 | 17 | 18 | 19 | 20 | 21 | 22 | 25 | 46 | 47 | 48 | 49 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 64 | 65 |
招聘标题
招聘内容${ tbJob.jobCon}
发布时间 63 |
66 | 67 | 68 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/view/adminManageNoticeContent.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@ taglib prefix="s" uri="/struts-tags"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme() + "://" 6 | + request.getServerName() + ":" + request.getServerPort() 7 | + path + "/"; 8 | %> 9 | 10 | 11 | 12 | 13 | 14 | 15 | 政策信息 16 | 17 | 18 | 19 | 20 | 21 | 22 | 25 | 46 | 47 | 48 | 49 | 50 | 52 | 53 | 54 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 66 | 67 |
公告名称 55 |
公告内容${ tbp.policyCon}
公告日期 65 |
68 | 69 | 70 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/view/adminManageNoticeUpdate.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="s" uri="/struts-tags"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme() + "://" 6 | + request.getServerName() + ":" + request.getServerPort() 7 | + path + "/"; 8 | %> 9 | 10 | 11 | 12 | 13 | 修改公告信息 14 | 15 | 16 | 17 | 18 | 19 | 40 | 41 | 42 | 43 |

44 | 修改公告信息: 45 |

46 | 47 |
48 |
50 |
52 |
标题:
54 |
内容: 55 | 57 |
58 |
59 | 60 | 61 | 64 |
65 | 66 | 67 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/view/adminSearchStu.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <% 3 | String path = request.getContextPath(); 4 | String basePath = request.getScheme() + "://" 5 | + request.getServerName() + ":" + request.getServerPort() 6 | + path + "/"; 7 | %> 8 | 9 | 10 | 11 | 12 | 13 | 14 | 按条件查询学生信息 15 | 16 | 17 | 18 | 19 | 20 | 21 | 24 | 25 | 32 | 33 | 34 | 35 | 36 |
38 |
43 |
44 |
45 | 46 | 47 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/view/adminUpMultiFile.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="s" uri="/struts-tags"%> 3 | 4 | 5 | 添加文件域多文件上传 6 | 15 | 16 | 17 | 23 | 24 | 25 | 26 | 27 |
29 | 任意多文件上传:

31 |

32 | 33 |
34 |
35 |
36 | 37 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/view/compCheckJobContent.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="s" uri="/struts-tags"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme() + "://" 6 | + request.getServerName() + ":" + request.getServerPort() 7 | + path + "/"; 8 | %> 9 | 10 | 11 | 12 | 13 | 14 | 15 | My JSP 'compCheckJobContent.jsp' starting page 16 | 17 | 18 | 19 | 20 | 21 | 22 | 25 | 46 | 47 | 48 | 49 | 51 | 52 | 53 | 54 | 56 | 57 | 58 | 59 | 61 | 62 | 63 | 65 | 66 |
招聘标题 55 |
招聘内容${tbJob.jobCon} 60 |
发布时间 64 |
67 | 68 | 69 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/view/compCompleteInfoSuccess.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <% 3 | String path = request.getContextPath(); 4 | String basePath = request.getScheme() + "://" 5 | + request.getServerName() + ":" + request.getServerPort() 6 | + path + "/"; 7 | %> 8 | 9 | 10 | 11 | 12 | 13 | 14 | My JSP 'compCompleteInfoSuccess.jsp' starting page 15 | 16 | 17 | 18 | 19 | 20 | 21 | 24 | 25 | 26 | 27 | 28 | 更新公司信息成功 29 |
30 | 31 | 32 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/view/compUpdateJob.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="s" uri="/struts-tags"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme() + "://" 6 | + request.getServerName() + ":" + request.getServerPort() 7 | + path + "/"; 8 | %> 9 | 10 | 11 | 12 | 13 | 14 | 15 | My JSP 'compUpdateJob.jsp' starting page 16 | 17 | 18 | 19 | 20 | 21 | 22 | 25 | 26 | 27 | 28 | 29 |
30 |
33 | 34 |
35 |
标题:
37 |
内容: 38 | 39 |
40 |
41 | 42 | 45 |
46 | 47 | 48 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/view/error.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <% 3 | String path = request.getContextPath(); 4 | String basePath = request.getScheme() + "://" 5 | + request.getServerName() + ":" + request.getServerPort() 6 | + path + "/"; 7 | %> 8 | 9 | 10 | 11 | 12 | 13 | 14 | My JSP 'errro.jsp' starting page 15 | 16 | 17 | 18 | 19 | 20 | 21 | 24 | 25 | 26 | 27 | 28 |

暂时没有公告信息

29 |
30 | 31 | 32 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/view/showCount.jsp: -------------------------------------------------------------------------------- 1 | <%@page import="org.apache.commons.lang.SystemUtils"%> 2 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 3 | <%@ taglib prefix="s" uri="/struts-tags"%> 4 | <% 5 | String path = request.getContextPath(); 6 | String basePath = request.getScheme() + "://" 7 | + request.getServerName() + ":" + request.getServerPort() 8 | + path + "/"; 9 | %> 10 | 11 | 12 | 13 | 14 | 15 | 16 | 管理员管理就业信息 17 | 18 | 19 | 20 | 21 | 22 | 23 | 26 | 27 | 28 | 29 | 30 |
31 |
32 |
33 | " /> 36 |
37 |
38 |
39 |
40 |
41 | " /> 44 |
45 | 46 | 47 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/view/stuSendResumeFalse.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="s" uri="/struts-tags"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme() + "://" 6 | + request.getServerName() + ":" + request.getServerPort() 7 | + path + "/"; 8 | %> 9 | 10 | 11 | 12 | 13 | 14 | 15 | 学生简历投递失败页面 16 | 17 | 18 | 19 | 20 | 21 | 22 |
你已经投递过该公司简历不能重复投递!
23 | 24 | 25 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/view/stuSendResumeSuccess.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="s" uri="/struts-tags"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme() + "://" 6 | + request.getServerName() + ":" + request.getServerPort() 7 | + path + "/"; 8 | %> 9 | 10 | 11 | 12 | 13 | 14 | 15 | 学生简历投递成功页面 16 | 17 | 18 | 19 | 20 |
简历投递成功!
21 | 22 | 23 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/view/stuUpdateResumeSuccess.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <% 3 | String path = request.getContextPath(); 4 | String basePath = request.getScheme() + "://" 5 | + request.getServerName() + ":" + request.getServerPort() 6 | + path + "/"; 7 | %> 8 | 9 | 10 | 11 | 12 | 13 | 14 | My JSP 'stuUpdateResumeSuccess.jsp' starting page 15 | 16 | 17 | 18 | 19 | 20 | 21 | 24 | 25 | 26 | 27 | 28 | 更新简历成功 29 |
30 | 31 | 32 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/view/stuWriteJobInfo.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@ page import="cn.edu.*"%> 3 | <%@ taglib prefix="s" uri="/struts-tags"%> 4 | <% 5 | String path = request.getContextPath(); 6 | String basePath = request.getScheme() + "://" 7 | + request.getServerName() + ":" + request.getServerPort() 8 | + path + "/"; 9 | %> 10 | 11 | 12 | 13 | 14 | 15 | 毕业生填写就业信息 16 | 37 | 38 | 39 | 40 | 41 | 42 |

43 | 就业信息: 44 |

45 | 46 | 47 | 49 | 50 | 51 | 52 | 53 | 54 |
55 |
56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/view/stuWriteJobInfoSuccess.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <%@ taglib prefix="s" uri="/struts-tags"%> 3 | <% 4 | String path = request.getContextPath(); 5 | String basePath = request.getScheme() + "://" 6 | + request.getServerName() + ":" + request.getServerPort() 7 | + path + "/"; 8 | %> 9 | 10 | 11 | 12 | 13 | 14 | 15 | 学生填写就业信息成功页面 16 | 17 | 18 | 19 | 20 | 21 | 22 |
就业信息更新成功!
23 | 24 | 25 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/web.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | pages/index.html 10 | 11 | 12 | struts2 13 | 14 | org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter 15 | 16 | 17 | 18 | struts2 19 | /* 20 | 21 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/README.md: -------------------------------------------------------------------------------- 1 | CKEditor 4 2 | ========== 3 | 4 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 5 | http://ckeditor.com - See LICENSE.md for license information. 6 | 7 | CKEditor is a text editor to be used inside web pages. It's not a replacement 8 | for desktop text editors like Word or OpenOffice, but a component to be used as 9 | part of web applications and websites. 10 | 11 | ## Documentation 12 | 13 | The full editor documentation is available online at the following address: 14 | http://docs.ckeditor.com 15 | 16 | ## Installation 17 | 18 | Installing CKEditor is an easy task. Just follow these simple steps: 19 | 20 | 1. **Download** the latest version from the CKEditor website: 21 | http://ckeditor.com. You should have already completed this step, but be 22 | sure you have the very latest version. 23 | 2. **Extract** (decompress) the downloaded file into the root of your website. 24 | 25 | **Note:** CKEditor is by default installed in the `ckeditor` folder. You can 26 | place the files in whichever you want though. 27 | 28 | ## Checking Your Installation 29 | 30 | The editor comes with a few sample pages that can be used to verify that 31 | installation proceeded properly. Take a look at the `samples` directory. 32 | 33 | To test your installation, just call the following page at your website: 34 | 35 | http:////samples/index.html 36 | 37 | For example: 38 | 39 | http://www.example.com/ckeditor/samples/index.html 40 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.editorConfig = function( config ) { 7 | // Define changes to default configuration here. For example: 8 | // config.language = 'fr'; 9 | // config.uiColor = '#AADC6E'; 10 | config.width = 845; 11 | config.height = 500; 12 | }; 13 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.md or http://ckeditor.com/license 3 | 4 | cs.js Found: 30 Missing: 0 5 | cy.js Found: 30 Missing: 0 6 | da.js Found: 12 Missing: 18 7 | de.js Found: 30 Missing: 0 8 | el.js Found: 25 Missing: 5 9 | eo.js Found: 30 Missing: 0 10 | fa.js Found: 30 Missing: 0 11 | fi.js Found: 30 Missing: 0 12 | fr.js Found: 30 Missing: 0 13 | gu.js Found: 12 Missing: 18 14 | he.js Found: 30 Missing: 0 15 | it.js Found: 30 Missing: 0 16 | mk.js Found: 5 Missing: 25 17 | nb.js Found: 30 Missing: 0 18 | nl.js Found: 30 Missing: 0 19 | no.js Found: 30 Missing: 0 20 | pt-br.js Found: 30 Missing: 0 21 | ro.js Found: 6 Missing: 24 22 | tr.js Found: 30 Missing: 0 23 | ug.js Found: 27 Missing: 3 24 | vi.js Found: 6 Missing: 24 25 | zh-cn.js Found: 30 Missing: 0 26 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/about/dialogs/about.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.dialog.add("about",function(a){a=a.lang.about;var b=CKEDITOR.getUrl(CKEDITOR.plugins.get("about").path+"dialogs/"+(CKEDITOR.env.hidpi?"hidpi/":"")+"logo_ckeditor.png");return{title:CKEDITOR.env.ie?a.dlgTitle:a.title,minWidth:390,minHeight:230,contents:[{id:"tab1",label:"",title:"",expand:!0,padding:0,elements:[{type:"html",html:'\x3cstyle type\x3d"text/css"\x3e.cke_about_container{color:#000 !important;padding:10px 10px 0;margin-top:5px}.cke_about_container p{margin: 0 0 10px;}.cke_about_container .cke_about_logo{height:81px;background-color:#fff;background-image:url('+ 6 | b+");"+(CKEDITOR.env.hidpi?"background-size:163px 58px;":"")+'background-position:center; background-repeat:no-repeat;margin-bottom:10px;}.cke_about_container a{cursor:pointer !important;color:#00B2CE !important;text-decoration:underline !important;}\x3c/style\x3e\x3cdiv class\x3d"cke_about_container"\x3e\x3cdiv class\x3d"cke_about_logo"\x3e\x3c/div\x3e\x3cp\x3eCKEditor '+CKEDITOR.version+" (revision "+CKEDITOR.revision+')\x3cbr\x3e\x3ca target\x3d"_blank" href\x3d"http://ckeditor.com/"\x3ehttp://ckeditor.com\x3c/a\x3e\x3c/p\x3e\x3cp\x3e'+ 7 | a.help.replace("$1",'\x3ca target\x3d"_blank" href\x3d"http://docs.ckeditor.com/user"\x3e'+a.userGuide+"\x3c/a\x3e")+"\x3c/p\x3e\x3cp\x3e"+a.moreInfo+'\x3cbr\x3e\x3ca target\x3d"_blank" href\x3d"http://ckeditor.com/about/license"\x3ehttp://ckeditor.com/about/license\x3c/a\x3e\x3c/p\x3e\x3cp\x3e'+a.copy.replace("$1",'\x3ca target\x3d"_blank" href\x3d"http://cksource.com/"\x3eCKSource\x3c/a\x3e - Frederico Knabben')+"\x3c/p\x3e\x3c/div\x3e"}]}],buttons:[CKEDITOR.dialog.cancelButton]}}); -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/colordialog/dialogs/colordialog.css: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | .cke_colordialog_colorcell { 7 | width: 12px; /* All cells have equal width which depends on parent width (in this case table parent). Width works more like max-width. */ 8 | height: 14px; 9 | padding: 1px; /* Padding is replaced by border for focused cells. Prevents 'jumping' when adding borders. */ 10 | } 11 | 12 | .cke_colordialog_colorcell.cke_colordialog_focused_light, 13 | .cke_colordialog_colorcell.cke_colordialog_focused_dark { 14 | padding: 0; /* Shrink cell to allow 1px border indicating focus. */ 15 | border: 1px dotted #000; 16 | } 17 | 18 | .cke_colordialog_colorcell.cke_colordialog_focused_dark { 19 | border-color: #FFF; 20 | } 21 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/forms/dialogs/button.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.dialog.add("button",function(b){function d(a){var b=this.getValue();b?(a.attributes[this.id]=b,"name"==this.id&&(a.attributes["data-cke-saved-name"]=b)):(delete a.attributes[this.id],"name"==this.id&&delete a.attributes["data-cke-saved-name"])}return{title:b.lang.forms.button.title,minWidth:350,minHeight:150,onShow:function(){delete this.button;var a=this.getParentEditor().getSelection().getSelectedElement();a&&a.is("input")&&a.getAttribute("type")in{button:1,reset:1,submit:1}&&(this.button= 6 | a,this.setupContent(a))},onOk:function(){var a=this.getParentEditor(),b=this.button,d=!b,c=b?CKEDITOR.htmlParser.fragment.fromHtml(b.getOuterHtml()).children[0]:new CKEDITOR.htmlParser.element("input");this.commitContent(c);var e=new CKEDITOR.htmlParser.basicWriter;c.writeHtml(e);c=CKEDITOR.dom.element.createFromHtml(e.getHtml(),a.document);d?a.insertElement(c):(c.replace(b),a.getSelection().selectElement(c))},contents:[{id:"info",label:b.lang.forms.button.title,title:b.lang.forms.button.title,elements:[{id:"name", 7 | type:"text",bidi:!0,label:b.lang.common.name,"default":"",setup:function(a){this.setValue(a.data("cke-saved-name")||a.getAttribute("name")||"")},commit:d},{id:"value",type:"text",label:b.lang.forms.button.text,accessKey:"V","default":"",setup:function(a){this.setValue(a.getAttribute("value")||"")},commit:d},{id:"type",type:"select",label:b.lang.forms.button.type,"default":"button",accessKey:"T",items:[[b.lang.forms.button.typeBtn,"button"],[b.lang.forms.button.typeSbm,"submit"],[b.lang.forms.button.typeRst, 8 | "reset"]],setup:function(a){this.setValue(a.getAttribute("type")||"")},commit:d}]}]}}); -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/forms/dialogs/hiddenfield.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.dialog.add("hiddenfield",function(d){return{title:d.lang.forms.hidden.title,hiddenField:null,minWidth:350,minHeight:110,onShow:function(){delete this.hiddenField;var a=this.getParentEditor(),b=a.getSelection(),c=b.getSelectedElement();c&&c.data("cke-real-element-type")&&"hiddenfield"==c.data("cke-real-element-type")&&(this.hiddenField=c,c=a.restoreRealElement(this.hiddenField),this.setupContent(c),b.selectElement(this.hiddenField))},onOk:function(){var a=this.getValueOf("info","_cke_saved_name"), 6 | b=this.getParentEditor(),a=CKEDITOR.env.ie&&8>CKEDITOR.document.$.documentMode?b.document.createElement('\x3cinput name\x3d"'+CKEDITOR.tools.htmlEncode(a)+'"\x3e'):b.document.createElement("input");a.setAttribute("type","hidden");this.commitContent(a);a=b.createFakeElement(a,"cke_hidden","hiddenfield");this.hiddenField?(a.replace(this.hiddenField),b.getSelection().selectElement(a)):b.insertElement(a);return!0},contents:[{id:"info",label:d.lang.forms.hidden.title,title:d.lang.forms.hidden.title,elements:[{id:"_cke_saved_name", 7 | type:"text",label:d.lang.forms.hidden.name,"default":"",accessKey:"N",setup:function(a){this.setValue(a.data("cke-saved-name")||a.getAttribute("name")||"")},commit:function(a){this.getValue()?a.setAttribute("name",this.getValue()):a.removeAttribute("name")}},{id:"value",type:"text",label:d.lang.forms.hidden.value,"default":"",accessKey:"V",setup:function(a){this.setValue(a.getAttribute("value")||"")},commit:function(a){this.getValue()?a.setAttribute("value",this.getValue()):a.removeAttribute("value")}}]}]}}); -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/link/dialogs/anchor.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.dialog.add("anchor",function(c){function d(a,b){return a.createFakeElement(a.document.createElement("a",{attributes:b}),"cke_anchor","anchor")}return{title:c.lang.link.anchor.title,minWidth:300,minHeight:60,onOk:function(){var a=CKEDITOR.tools.trim(this.getValueOf("info","txtName")),a={id:a,name:a,"data-cke-saved-name":a};if(this._.selectedElement)this._.selectedElement.data("cke-realelement")?(a=d(c,a),a.replace(this._.selectedElement),CKEDITOR.env.ie&&c.getSelection().selectElement(a)): 6 | this._.selectedElement.setAttributes(a);else{var b=c.getSelection(),b=b&&b.getRanges()[0];b.collapsed?(a=d(c,a),b.insertNode(a)):(CKEDITOR.env.ie&&9>CKEDITOR.env.version&&(a["class"]="cke_anchor"),a=new CKEDITOR.style({element:"a",attributes:a}),a.type=CKEDITOR.STYLE_INLINE,c.applyStyle(a))}},onHide:function(){delete this._.selectedElement},onShow:function(){var a=c.getSelection(),b=a.getSelectedElement(),d=b&&b.data("cke-realelement"),e=d?CKEDITOR.plugins.link.tryRestoreFakeAnchor(c,b):CKEDITOR.plugins.link.getSelectedLink(c); 7 | if(e){this._.selectedElement=e;var f=e.data("cke-saved-name");this.setValueOf("info","txtName",f||"");!d&&a.selectElement(e);b&&(this._.selectedElement=b)}this.getContentElement("info","txtName").focus()},contents:[{id:"info",label:c.lang.link.anchor.title,accessKey:"I",elements:[{type:"text",id:"txtName",label:c.lang.link.anchor.name,required:!0,validate:function(){return this.getValue()?!0:(alert(c.lang.link.anchor.errorName),!1)}}]}]}}); -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/preview/preview.html: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/scayt/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | SCAYT plugin for CKEditor 4 Changelog 2 | ==================== 3 | ### CKEditor 4.5.6 4 | 5 | New Features: 6 | * CKEditor [language addon](http://ckeditor.com/addon/language) support 7 | * CKEditor [placeholder addon](http://ckeditor.com/addon/placeholder) support 8 | * Drag and Drop support 9 | * *Experimental* GRAYT functionality http://www.webspellchecker.net/samples/scayt-ckeditor-plugin.html#25 10 | 11 | Fixed issues: 12 | * [#98](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/98) SCAYT Affects Dialog Double Click. Fixed in SCAYT Core. 13 | * [#102](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/102) SCAYT Core performance enhancements 14 | * [#104](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/104) SCAYT's spans leak into the clipboard and after pasting 15 | * [#105](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/105) Javascript error fired in case of multiple instances of CKEditor in one page 16 | * [#107](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/107) SCAYT should not check non-editable parts of content 17 | * [#108](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/108) Latest SCAYT copies id of editor element to the iframe 18 | * SCAYT stops working when CKEditor Undo plug-in not enabled 19 | * Issue with pasting SCAYT markup in CKEditor 20 | * [#32](https://github.com/WebSpellChecker/ckeditor-plugin-wsc/issues/32) SCAYT stops working after pressing Cancel button in WSC dialog 21 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/scayt/LICENSE.md: -------------------------------------------------------------------------------- 1 | Software License Agreement 2 | ========================== 3 | 4 | **CKEditor SCAYT Plugin** 5 | Copyright © 2012, [CKSource](http://cksource.com) - Frederico Knabben. All rights reserved. 6 | 7 | Licensed under the terms of any of the following licenses at your choice: 8 | 9 | * GNU General Public License Version 2 or later (the "GPL"): 10 | http://www.gnu.org/licenses/gpl.html 11 | 12 | * GNU Lesser General Public License Version 2.1 or later (the "LGPL"): 13 | http://www.gnu.org/licenses/lgpl.html 14 | 15 | * Mozilla Public License Version 1.1 or later (the "MPL"): 16 | http://www.mozilla.org/MPL/MPL-1.1.html 17 | 18 | You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing this software, just include a text file titled "legal.txt" in your version of this software, indicating your license choice. 19 | 20 | Sources of Intellectual Property Included in this plugin 21 | -------------------------------------------------------- 22 | 23 | Where not otherwise indicated, all plugin content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, the plugin will incorporate work done by developers outside of CKSource with their express permission. 24 | 25 | Trademarks 26 | ---------- 27 | 28 | CKEditor is a trademark of CKSource - Frederico Knabben. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders. 29 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/scayt/README.md: -------------------------------------------------------------------------------- 1 | CKEditor SCAYT Plugin 2 | ===================== 3 | 4 | This plugin brings Spell Check As You Type (SCAYT) into up to CKEditor 4+. 5 | 6 | SCAYT is a "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution. 7 | 8 | Installation 9 | ------------ 10 | 11 | 1. Clone/copy this repository contents in a new "plugins/scayt" folder in your CKEditor installation. 12 | 2. Enable the "scayt" plugin in the CKEditor configuration file (config.js): 13 | 14 | config.extraPlugins = 'scayt'; 15 | 16 | That's all. SCAYT will appear on the editor toolbar and will be ready to use. 17 | 18 | License 19 | ------- 20 | 21 | Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). 22 | 23 | See LICENSE.md for more information. 24 | 25 | Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/). 26 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/scayt/dialogs/toolbar.css: -------------------------------------------------------------------------------- 1 | a 2 | { 3 | text-decoration:none; 4 | padding: 2px 4px 4px 6px; 5 | display : block; 6 | border-width: 1px; 7 | border-style: solid; 8 | margin : 0px; 9 | } 10 | 11 | a.cke_scayt_toogle:hover, 12 | a.cke_scayt_toogle:focus, 13 | a.cke_scayt_toogle:active 14 | { 15 | border-color: #316ac5; 16 | background-color: #dff1ff; 17 | color : #000; 18 | cursor: pointer; 19 | margin : 0px; 20 | } 21 | a.cke_scayt_toogle { 22 | color : #316ac5; 23 | border-color: #fff; 24 | } 25 | .scayt_enabled a.cke_scayt_item { 26 | color : #316ac5; 27 | border-color: #fff; 28 | margin : 0px; 29 | } 30 | .scayt_disabled a.cke_scayt_item { 31 | color : gray; 32 | border-color : #fff; 33 | } 34 | .scayt_enabled a.cke_scayt_item:hover, 35 | .scayt_enabled a.cke_scayt_item:focus, 36 | .scayt_enabled a.cke_scayt_item:active 37 | { 38 | border-color: #316ac5; 39 | background-color: #dff1ff; 40 | color : #000; 41 | cursor: pointer; 42 | } 43 | .scayt_disabled a.cke_scayt_item:hover, 44 | .scayt_disabled a.cke_scayt_item:focus, 45 | .scayt_disabled a.cke_scayt_item:active 46 | { 47 | border-color: gray; 48 | background-color: #dff1ff; 49 | color : gray; 50 | cursor: no-drop; 51 | } 52 | .cke_scayt_set_on, .cke_scayt_set_off 53 | { 54 | display: none; 55 | } 56 | .scayt_enabled .cke_scayt_set_on 57 | { 58 | display: none; 59 | } 60 | .scayt_disabled .cke_scayt_set_on 61 | { 62 | display: inline; 63 | } 64 | .scayt_disabled .cke_scayt_set_off 65 | { 66 | display: none; 67 | } 68 | .scayt_enabled .cke_scayt_set_off 69 | { 70 | display: inline; 71 | } 72 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/angel_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/angel_smile.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/angry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/angry_smile.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/broken_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/broken_heart.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/confused_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/confused_smile.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/cry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/cry_smile.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/devil_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/devil_smile.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/embarrassed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/embarrassed_smile.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/embarrassed_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/embarrassed_smile.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/envelope.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/heart.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/kiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/kiss.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/lightbulb.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/omg_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/omg_smile.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/regular_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/regular_smile.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/sad_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/sad_smile.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/shades_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/shades_smile.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/teeth_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/teeth_smile.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/thumbs_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/thumbs_down.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/thumbs_up.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/tongue_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/tongue_smile.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/tongue_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/tongue_smile.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/smiley/images/wink_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/smiley/images/wink_smile.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.md or http://ckeditor.com/license 3 | 4 | cs.js Found: 118 Missing: 0 5 | cy.js Found: 118 Missing: 0 6 | de.js Found: 118 Missing: 0 7 | el.js Found: 16 Missing: 102 8 | eo.js Found: 118 Missing: 0 9 | et.js Found: 31 Missing: 87 10 | fa.js Found: 24 Missing: 94 11 | fi.js Found: 23 Missing: 95 12 | fr.js Found: 118 Missing: 0 13 | hr.js Found: 23 Missing: 95 14 | it.js Found: 118 Missing: 0 15 | nb.js Found: 118 Missing: 0 16 | nl.js Found: 118 Missing: 0 17 | no.js Found: 118 Missing: 0 18 | tr.js Found: 118 Missing: 0 19 | ug.js Found: 39 Missing: 79 20 | zh-cn.js Found: 118 Missing: 0 21 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/templates/dialogs/templates.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | 6 | .cke_tpl_list 7 | { 8 | border: #dcdcdc 2px solid; 9 | background-color: #ffffff; 10 | overflow-y: auto; 11 | overflow-x: hidden; 12 | width: 100%; 13 | height: 220px; 14 | } 15 | 16 | .cke_tpl_item 17 | { 18 | margin: 5px; 19 | padding: 7px; 20 | border: #eeeeee 1px solid; 21 | *width: 88%; 22 | } 23 | 24 | .cke_tpl_preview 25 | { 26 | border-collapse: separate; 27 | text-indent:0; 28 | width: 100%; 29 | } 30 | .cke_tpl_preview td 31 | { 32 | padding: 2px; 33 | vertical-align: middle; 34 | } 35 | .cke_tpl_preview .cke_tpl_preview_img 36 | { 37 | width: 100px; 38 | } 39 | .cke_tpl_preview span 40 | { 41 | white-space: normal; 42 | } 43 | 44 | .cke_tpl_title 45 | { 46 | font-weight: bold; 47 | } 48 | 49 | .cke_tpl_list a:hover .cke_tpl_item, 50 | .cke_tpl_list a:focus .cke_tpl_item, 51 | .cke_tpl_list a:active .cke_tpl_item 52 | { 53 | border: #ff9933 1px solid; 54 | background-color: #fffacd; 55 | } 56 | 57 | .cke_tpl_list a:hover *, 58 | .cke_tpl_list a:focus *, 59 | .cke_tpl_list a:active * 60 | { 61 | cursor: pointer; 62 | } 63 | 64 | /* IE Quirks contextual selectors children will not get :hover transition until 65 | the hover style of the link itself contains certain CSS declarations. */ 66 | .cke_browser_quirks .cke_tpl_list a:active, 67 | .cke_browser_quirks .cke_tpl_list a:hover, 68 | .cke_browser_quirks .cke_tpl_list a:focus 69 | { 70 | background-position: 0 0; 71 | } 72 | 73 | .cke_hc .cke_tpl_list a:hover .cke_tpl_item, 74 | .cke_hc .cke_tpl_list a:focus .cke_tpl_item, 75 | .cke_hc .cke_tpl_list a:active .cke_tpl_item 76 | { 77 | border-width: 3px; 78 | } 79 | 80 | .cke_tpl_empty, .cke_tpl_loading 81 | { 82 | text-align: center; 83 | padding: 5px; 84 | } 85 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/wsc/LICENSE.md: -------------------------------------------------------------------------------- 1 | Software License Agreement 2 | ========================== 3 | 4 | **CKEditor WSC Plugin** 5 | Copyright © 2012, [CKSource](http://cksource.com) - Frederico Knabben. All rights reserved. 6 | 7 | Licensed under the terms of any of the following licenses at your choice: 8 | 9 | * GNU General Public License Version 2 or later (the "GPL"): 10 | http://www.gnu.org/licenses/gpl.html 11 | 12 | * GNU Lesser General Public License Version 2.1 or later (the "LGPL"): 13 | http://www.gnu.org/licenses/lgpl.html 14 | 15 | * Mozilla Public License Version 1.1 or later (the "MPL"): 16 | http://www.mozilla.org/MPL/MPL-1.1.html 17 | 18 | You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing this software, just include a text file titled "legal.txt" in your version of this software, indicating your license choice. 19 | 20 | Sources of Intellectual Property Included in this plugin 21 | -------------------------------------------------------- 22 | 23 | Where not otherwise indicated, all plugin content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, the plugin will incorporate work done by developers outside of CKSource with their express permission. 24 | 25 | Trademarks 26 | ---------- 27 | 28 | CKEditor is a trademark of CKSource - Frederico Knabben. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders. 29 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/wsc/README.md: -------------------------------------------------------------------------------- 1 | CKEditor WebSpellChecker Plugin 2 | =============================== 3 | 4 | This plugin brings Web Spell Checker (WSC) into CKEditor. 5 | 6 | WSC is "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution. 7 | 8 | Installation 9 | ------------ 10 | 11 | 1. Clone/copy this repository contents in a new "plugins/wsc" folder in your CKEditor installation. 12 | 2. Enable the "wsc" plugin in the CKEditor configuration file (config.js): 13 | 14 | config.extraPlugins = 'wsc'; 15 | 16 | That's all. WSC will appear on the editor toolbar and will be ready to use. 17 | 18 | License 19 | ------- 20 | 21 | Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). 22 | 23 | See LICENSE.md for more information. 24 | 25 | Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/). 26 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/plugins/wsc/dialogs/wsc.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | html, body 7 | { 8 | background-color: transparent; 9 | margin: 0px; 10 | padding: 0px; 11 | } 12 | 13 | body 14 | { 15 | padding: 10px; 16 | } 17 | 18 | body, td, input, select, textarea 19 | { 20 | font-size: 11px; 21 | font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana; 22 | } 23 | 24 | .midtext 25 | { 26 | padding:0px; 27 | margin:10px; 28 | } 29 | 30 | .midtext p 31 | { 32 | padding:0px; 33 | margin:10px; 34 | } 35 | 36 | .Button 37 | { 38 | border: #737357 1px solid; 39 | color: #3b3b1f; 40 | background-color: #c7c78f; 41 | } 42 | 43 | .PopupTabArea 44 | { 45 | color: #737357; 46 | background-color: #e3e3c7; 47 | } 48 | 49 | .PopupTitleBorder 50 | { 51 | border-bottom: #d5d59d 1px solid; 52 | } 53 | .PopupTabEmptyArea 54 | { 55 | padding-left: 10px; 56 | border-bottom: #d5d59d 1px solid; 57 | } 58 | 59 | .PopupTab, .PopupTabSelected 60 | { 61 | border-right: #d5d59d 1px solid; 62 | border-top: #d5d59d 1px solid; 63 | border-left: #d5d59d 1px solid; 64 | padding: 3px 5px 3px 5px; 65 | color: #737357; 66 | } 67 | 68 | .PopupTab 69 | { 70 | margin-top: 1px; 71 | border-bottom: #d5d59d 1px solid; 72 | cursor: pointer; 73 | } 74 | 75 | .PopupTabSelected 76 | { 77 | font-weight: bold; 78 | cursor: default; 79 | padding-top: 4px; 80 | border-bottom: #f1f1e3 1px solid; 81 | background-color: #f1f1e3; 82 | } 83 | -------------------------------------------------------------------------------- /WebRoot/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /WebRoot/ckeditor/skins/moono/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/ckeditor/skins/moono/images/spinner.gif -------------------------------------------------------------------------------- /WebRoot/css/pro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/css/pro.css -------------------------------------------------------------------------------- /WebRoot/css/reset.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | /* CSS Document */ 3 | body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td { 4 | margin: 0; 5 | padding: 0 6 | } 7 | fieldset, img { 8 | border: 0 9 | } 10 | :focus { 11 | outline: 0 12 | } 13 | address, caption, cite, code, dfn, em, strong, th, var, optgroup { 14 | font-style: normal; 15 | } 16 | h1, h2, h3, h4, h5, h6 { 17 | font-size: 100%; 18 | font-weight: normal 19 | } 20 | abbr, acronym { 21 | border: 0; 22 | font-variant: normal 23 | } 24 | input, button, textarea, select, optgroup, option { 25 | font-family: inherit; 26 | font-size: inherit; 27 | font-style: inherit; 28 | font-weight: inherit 29 | } 30 | code, kbd, samp, tt { 31 | font-size: 100% 32 | } 33 | input, button, textarea, select { 34 | *font-size:100% 35 | } 36 | body { 37 | line-height: 1.5 38 | } 39 | ol, ul { 40 | list-style: none 41 | } 42 | table { 43 | border-collapse: collapse; 44 | border-spacing: 0 45 | } 46 | caption, th { 47 | text-align: left 48 | } 49 | sup, sub { 50 | font-size: 100%; 51 | vertical-align: baseline 52 | } 53 | :link, :visited, ins { 54 | text-decoration: none 55 | } 56 | blockquote, q { 57 | quotes: none 58 | } 59 | blockquote:before, blockquote:after, q:before, q:after { 60 | content: ''; 61 | content: none 62 | } 63 | .clear { 64 | clear: both; 65 | height: 0 66 | } 67 | p strong { 68 | font: bold 14px/60px microsoft YaHei; 69 | color: #666 70 | } 71 | -------------------------------------------------------------------------------- /WebRoot/css/templatemo-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/css/templatemo-style.css -------------------------------------------------------------------------------- /WebRoot/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /WebRoot/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /WebRoot/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /WebRoot/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /WebRoot/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /WebRoot/images/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/11.jpg -------------------------------------------------------------------------------- /WebRoot/images/111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/111.jpg -------------------------------------------------------------------------------- /WebRoot/images/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/22.jpg -------------------------------------------------------------------------------- /WebRoot/images/222.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/222.jpg -------------------------------------------------------------------------------- /WebRoot/images/33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/33.jpg -------------------------------------------------------------------------------- /WebRoot/images/333.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/333.jpg -------------------------------------------------------------------------------- /WebRoot/images/44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/44.jpg -------------------------------------------------------------------------------- /WebRoot/images/444.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/444.jpg -------------------------------------------------------------------------------- /WebRoot/images/55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/55.jpg -------------------------------------------------------------------------------- /WebRoot/images/555.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/555.jpg -------------------------------------------------------------------------------- /WebRoot/images/66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/66.jpg -------------------------------------------------------------------------------- /WebRoot/images/666.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/666.jpg -------------------------------------------------------------------------------- /WebRoot/images/77.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/77.jpg -------------------------------------------------------------------------------- /WebRoot/images/777.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/777.jpg -------------------------------------------------------------------------------- /WebRoot/images/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/88.png -------------------------------------------------------------------------------- /WebRoot/images/888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/888.png -------------------------------------------------------------------------------- /WebRoot/images/About-us_18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/About-us_18.jpg -------------------------------------------------------------------------------- /WebRoot/images/About-us_18_hover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/About-us_18_hover.jpg -------------------------------------------------------------------------------- /WebRoot/images/History_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/History_06.png -------------------------------------------------------------------------------- /WebRoot/images/History_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/History_07.png -------------------------------------------------------------------------------- /WebRoot/images/History_arrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/History_arrl.png -------------------------------------------------------------------------------- /WebRoot/images/History_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/History_div.png -------------------------------------------------------------------------------- /WebRoot/images/Historyicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/Historyicon.png -------------------------------------------------------------------------------- /WebRoot/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/Thumbs.db -------------------------------------------------------------------------------- /WebRoot/images/aboutlibg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/aboutlibg.jpg -------------------------------------------------------------------------------- /WebRoot/images/admin-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/admin-logo.png -------------------------------------------------------------------------------- /WebRoot/images/applicationlibg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/applicationlibg.png -------------------------------------------------------------------------------- /WebRoot/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/arrow.png -------------------------------------------------------------------------------- /WebRoot/images/arrow_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/arrow_l.png -------------------------------------------------------------------------------- /WebRoot/images/arrow_l_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/arrow_l_on.png -------------------------------------------------------------------------------- /WebRoot/images/arrow_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/arrow_on.png -------------------------------------------------------------------------------- /WebRoot/images/arrow_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/arrow_r.png -------------------------------------------------------------------------------- /WebRoot/images/arrow_r_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/arrow_r_on.png -------------------------------------------------------------------------------- /WebRoot/images/bicycle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/bicycle.jpg -------------------------------------------------------------------------------- /WebRoot/images/biye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/biye.png -------------------------------------------------------------------------------- /WebRoot/images/bodybg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/bodybg.png -------------------------------------------------------------------------------- /WebRoot/images/bolanyuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/bolanyuan.png -------------------------------------------------------------------------------- /WebRoot/images/bottombg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/bottombg.png -------------------------------------------------------------------------------- /WebRoot/images/bottomleftlibg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/bottomleftlibg.png -------------------------------------------------------------------------------- /WebRoot/images/bottomleftlibg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/bottomleftlibg2.jpg -------------------------------------------------------------------------------- /WebRoot/images/checkbox-radio-sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/checkbox-radio-sheet.png -------------------------------------------------------------------------------- /WebRoot/images/close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/close.jpg -------------------------------------------------------------------------------- /WebRoot/images/company-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/company-logo.png -------------------------------------------------------------------------------- /WebRoot/images/currentli.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/currentli.gif -------------------------------------------------------------------------------- /WebRoot/images/denglu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/denglu.png -------------------------------------------------------------------------------- /WebRoot/images/dl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/dl.png -------------------------------------------------------------------------------- /WebRoot/images/emailicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/emailicon.png -------------------------------------------------------------------------------- /WebRoot/images/faxicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/faxicon.png -------------------------------------------------------------------------------- /WebRoot/images/follow-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/follow-hover.png -------------------------------------------------------------------------------- /WebRoot/images/follow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/follow.png -------------------------------------------------------------------------------- /WebRoot/images/foot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/foot.jpg -------------------------------------------------------------------------------- /WebRoot/images/footbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/footbg.jpg -------------------------------------------------------------------------------- /WebRoot/images/hoverbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/hoverbg.png -------------------------------------------------------------------------------- /WebRoot/images/imgshow_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/imgshow_mask.png -------------------------------------------------------------------------------- /WebRoot/images/inquiry-step-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/inquiry-step-2.jpg -------------------------------------------------------------------------------- /WebRoot/images/inquiry_email-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/inquiry_email-hover.png -------------------------------------------------------------------------------- /WebRoot/images/inquiry_email.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/inquiry_email.jpg -------------------------------------------------------------------------------- /WebRoot/images/inquiry_tel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/inquiry_tel.jpg -------------------------------------------------------------------------------- /WebRoot/images/inquirybg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/inquirybg.png -------------------------------------------------------------------------------- /WebRoot/images/inquiryformbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/inquiryformbg.jpg -------------------------------------------------------------------------------- /WebRoot/images/lang-headerbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/lang-headerbg.jpg -------------------------------------------------------------------------------- /WebRoot/images/login_pas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/login_pas.png -------------------------------------------------------------------------------- /WebRoot/images/login_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/login_user.png -------------------------------------------------------------------------------- /WebRoot/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/logo.png -------------------------------------------------------------------------------- /WebRoot/images/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/logo1.png -------------------------------------------------------------------------------- /WebRoot/images/logobg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/logobg.png -------------------------------------------------------------------------------- /WebRoot/images/menudiv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/menudiv.png -------------------------------------------------------------------------------- /WebRoot/images/morearrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/morearrow.png -------------------------------------------------------------------------------- /WebRoot/images/msgbtn-hover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/msgbtn-hover.jpg -------------------------------------------------------------------------------- /WebRoot/images/msgbtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/msgbtn.png -------------------------------------------------------------------------------- /WebRoot/images/newsmore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/newsmore.png -------------------------------------------------------------------------------- /WebRoot/images/nothover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/nothover.png -------------------------------------------------------------------------------- /WebRoot/images/orgicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/orgicon.png -------------------------------------------------------------------------------- /WebRoot/images/p1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/p1.jpg -------------------------------------------------------------------------------- /WebRoot/images/p2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/p2.jpg -------------------------------------------------------------------------------- /WebRoot/images/p3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/p3.jpg -------------------------------------------------------------------------------- /WebRoot/images/p4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/p4.jpg -------------------------------------------------------------------------------- /WebRoot/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/pdf.png -------------------------------------------------------------------------------- /WebRoot/images/person.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/person.jpg -------------------------------------------------------------------------------- /WebRoot/images/proarrwo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/proarrwo.jpg -------------------------------------------------------------------------------- /WebRoot/images/processbg-hover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/processbg-hover.jpg -------------------------------------------------------------------------------- /WebRoot/images/processbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/processbg.png -------------------------------------------------------------------------------- /WebRoot/images/prodetailbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/prodetailbg.png -------------------------------------------------------------------------------- /WebRoot/images/prodetailbtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/prodetailbtn.png -------------------------------------------------------------------------------- /WebRoot/images/productbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/productbg.png -------------------------------------------------------------------------------- /WebRoot/images/profile-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/profile-photo.jpg -------------------------------------------------------------------------------- /WebRoot/images/prosearcharrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/prosearcharrow.png -------------------------------------------------------------------------------- /WebRoot/images/protab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/protab.png -------------------------------------------------------------------------------- /WebRoot/images/protabli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/protabli.png -------------------------------------------------------------------------------- /WebRoot/images/registTop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/registTop.jpg -------------------------------------------------------------------------------- /WebRoot/images/relatedpro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/relatedpro.png -------------------------------------------------------------------------------- /WebRoot/images/relatedproli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/relatedproli.png -------------------------------------------------------------------------------- /WebRoot/images/scroll_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/scroll_bg.png -------------------------------------------------------------------------------- /WebRoot/images/searchbtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/searchbtn.png -------------------------------------------------------------------------------- /WebRoot/images/searchkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/searchkey.png -------------------------------------------------------------------------------- /WebRoot/images/shareicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/shareicon.png -------------------------------------------------------------------------------- /WebRoot/images/sidebar-email.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/sidebar-email.jpg -------------------------------------------------------------------------------- /WebRoot/images/sidebar-fax.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/sidebar-fax.jpg -------------------------------------------------------------------------------- /WebRoot/images/sidebar-tel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/sidebar-tel.jpg -------------------------------------------------------------------------------- /WebRoot/images/smallpicbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/smallpicbg.png -------------------------------------------------------------------------------- /WebRoot/images/solutionarrdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/solutionarrdown.png -------------------------------------------------------------------------------- /WebRoot/images/solutionindexbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/solutionindexbg.jpg -------------------------------------------------------------------------------- /WebRoot/images/solutiontab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/solutiontab.png -------------------------------------------------------------------------------- /WebRoot/images/solutiontabli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/solutiontabli.png -------------------------------------------------------------------------------- /WebRoot/images/student-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/student-logo.png -------------------------------------------------------------------------------- /WebRoot/images/sub-bannerbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/sub-bannerbg.jpg -------------------------------------------------------------------------------- /WebRoot/images/subbodybg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/subbodybg.png -------------------------------------------------------------------------------- /WebRoot/images/subfooterbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/subfooterbg.png -------------------------------------------------------------------------------- /WebRoot/images/submenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/submenu.png -------------------------------------------------------------------------------- /WebRoot/images/submenubg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/submenubg.png -------------------------------------------------------------------------------- /WebRoot/images/submenuli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/submenuli.png -------------------------------------------------------------------------------- /WebRoot/images/submenulihover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/submenulihover.png -------------------------------------------------------------------------------- /WebRoot/images/sunset-big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/sunset-big.jpg -------------------------------------------------------------------------------- /WebRoot/images/sunset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/sunset.jpg -------------------------------------------------------------------------------- /WebRoot/images/tabOn_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/tabOn_right.gif -------------------------------------------------------------------------------- /WebRoot/images/telicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/telicon.png -------------------------------------------------------------------------------- /WebRoot/images/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/top.png -------------------------------------------------------------------------------- /WebRoot/images/tophover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/tophover.png -------------------------------------------------------------------------------- /WebRoot/images/tuichu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/tuichu.png -------------------------------------------------------------------------------- /WebRoot/images/weixin1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/weixin1.png -------------------------------------------------------------------------------- /WebRoot/images/xinong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/WebRoot/images/xinong.png -------------------------------------------------------------------------------- /WebRoot/js/templatemo-script.js: -------------------------------------------------------------------------------- 1 | /* 2 | * www.templatemo.com 3 | *******************************************************/ 4 | 5 | /* HTML document is loaded. DOM is ready. 6 | -----------------------------------------*/ 7 | $(document).ready(function(){ 8 | 9 | /* Mobile menu */ 10 | $('.mobile-menu-icon').click(function(){ 11 | $('.templatemo-left-nav').slideToggle(); 12 | }); 13 | 14 | /* Close the widget when clicked on close button */ 15 | $('.templatemo-content-widget .fa-times').click(function(){ 16 | $(this).parent().slideUp(function(){ 17 | $(this).hide(); 18 | }); 19 | }); 20 | }); -------------------------------------------------------------------------------- /WebRoot/pages/stumain-t.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <% 3 | String path = request.getContextPath(); 4 | String basePath = request.getScheme() + "://" 5 | + request.getServerName() + ":" + request.getServerPort() 6 | + path + "/"; 7 | %> 8 | 9 | 10 | 11 | 12 | 13 | 14 | My JSP 'stumain-t.jsp' starting page 15 | 16 | 17 | 18 | 19 | 20 | 21 | 24 | 25 | 26 | 27 | 28 |

29 | 31 |

32 | 33 | 34 | -------------------------------------------------------------------------------- /WebRoot/upload/error.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 | My JSP 'error.jsp' starting page 13 | 14 | 15 | 16 | 17 | 18 | 19 | 22 | 23 | 24 | 25 | 26 | 上传文件失败
27 | 28 | 29 | -------------------------------------------------------------------------------- /WebRoot/upload/success.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 | My JSP 'success.jsp' starting page 13 | 14 | 15 | 16 | 17 | 18 | 19 | 22 | 23 | 24 | 25 | 26 | 上传文件成功
27 | 28 | 29 | -------------------------------------------------------------------------------- /hibernate.reveng.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 |
25 |
-------------------------------------------------------------------------------- /src/cn/edu/action/AdminLogoutAction.java: -------------------------------------------------------------------------------- 1 | package cn.edu.action; 2 | 3 | import com.opensymphony.xwork2.ActionSupport; 4 | 5 | public class AdminLogoutAction extends ActionSupport { 6 | public String execute(){ 7 | return SUCCESS; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/cn/edu/action/AdminManNoteListAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/AdminManNoteListAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/AdminManNoticeContextAction.java: -------------------------------------------------------------------------------- 1 | package cn.edu.action; 2 | 3 | import cn.edu.dao.TbPolicyDAO; 4 | import cn.edu.entity.TbPolicy; 5 | 6 | import com.opensymphony.xwork2.ActionSupport; 7 | 8 | @SuppressWarnings("serial") 9 | public class AdminManNoticeContextAction extends ActionSupport { 10 | private int policyId; 11 | private TbPolicy tbp; 12 | public int getPolicyId() { 13 | return policyId; 14 | } 15 | 16 | public void setPolicyId(int policyId) { 17 | this.policyId = policyId; 18 | } 19 | 20 | public TbPolicy getTbp() { 21 | return tbp; 22 | } 23 | 24 | public void setTbp(TbPolicy tbp) { 25 | this.tbp = tbp; 26 | } 27 | 28 | public String execute() throws Exception { 29 | TbPolicyDAO policy = new TbPolicyDAO(); 30 | tbp = policy.findById(policyId); 31 | return "success"; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /src/cn/edu/action/AdminManNoticeDeleteAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/AdminManNoticeDeleteAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/AdminManNoticeInsertAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/AdminManNoticeInsertAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/AdminManNoticeUpdateAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/AdminManNoticeUpdateAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/AdminSearchStuAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/AdminSearchStuAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/AdminStuDeleteAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/AdminStuDeleteAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/AdminToUpMultiFileAction.java: -------------------------------------------------------------------------------- 1 | package cn.edu.action; 2 | 3 | import com.opensymphony.xwork2.ActionSupport; 4 | 5 | public class AdminToUpMultiFileAction extends ActionSupport { 6 | public String execute(){ 7 | return SUCCESS; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/cn/edu/action/AdminsearchStuDetailAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/AdminsearchStuDetailAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/CheckAdminAction.java: -------------------------------------------------------------------------------- 1 | package cn.edu.action; 2 | import java.util.Map; 3 | 4 | import org.apache.struts2.ServletActionContext; 5 | 6 | import cn.edu.entity.TbAdmin; 7 | import cn.edu.service.CheckAdmin; 8 | 9 | import com.opensymphony.xwork2.ActionSupport; 10 | public class CheckAdminAction extends ActionSupport{ 11 | private TbAdmin admin; 12 | private CheckAdmin checkAdmin; 13 | private String chknumber; 14 | 15 | public String getChknumber() { 16 | return chknumber; 17 | } 18 | public void setChknumber(String chknumber) { 19 | this.chknumber = chknumber; 20 | } 21 | public TbAdmin getAdmin() { 22 | return admin; 23 | } 24 | public void setAdmin(TbAdmin admin) { 25 | this.admin = admin; 26 | } 27 | 28 | public CheckAdmin getCheckAdmin() { 29 | return checkAdmin; 30 | } 31 | public void setCheckAdmin(CheckAdmin checkAdmin) { 32 | this.checkAdmin = checkAdmin; 33 | } 34 | @Override 35 | public String execute() throws Exception { 36 | checkAdmin= new CheckAdmin(); 37 | Map session=ServletActionContext.getContext().getSession(); 38 | session.get("randomCode").equals(chknumber); 39 | boolean ch; 40 | ch=session.get("randomCode").equals(chknumber); 41 | boolean isTeacher=checkAdmin.checkAdminLogin(admin.getAdminId(), admin.getAdminPwd()); 42 | if(isTeacher&&ch){ 43 | return SUCCESS; 44 | } 45 | return INPUT; 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /src/cn/edu/action/CompCheckStuResume.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/CompCheckStuResume.java -------------------------------------------------------------------------------- /src/cn/edu/action/CompCheckStudentAction.java: -------------------------------------------------------------------------------- 1 | package cn.edu.action; 2 | 3 | import java.util.List; 4 | 5 | import com.opensymphony.xwork2.ActionSupport; 6 | 7 | import cn.edu.entity.ComJobStu; 8 | import cn.edu.service.CompCheckStudentList; 9 | 10 | public class CompCheckStudentAction extends ActionSupport{ 11 | String compUserName; 12 | List comJobStuList; 13 | CompCheckStudentList compCheckStudentList; 14 | ComJobStu comJobStu; 15 | 16 | public ComJobStu getComJobStu() { 17 | return comJobStu; 18 | } 19 | public void setComJobStu(ComJobStu comJobStu) { 20 | this.comJobStu = comJobStu; 21 | } 22 | public String getCompUserName() { 23 | return compUserName; 24 | } 25 | public void setCompUserName(String compUserName) { 26 | this.compUserName = compUserName; 27 | } 28 | public List getComJobStuList() { 29 | return comJobStuList; 30 | } 31 | public void setComJobStuList(List comJobStuList) { 32 | this.comJobStuList = comJobStuList; 33 | } 34 | public CompCheckStudentList getCompCheckStudentList() { 35 | return compCheckStudentList; 36 | } 37 | public void setCompCheckStudentList(CompCheckStudentList compCheckStudentList) { 38 | this.compCheckStudentList = compCheckStudentList; 39 | } 40 | 41 | public String execute(){ 42 | compCheckStudentList=new CompCheckStudentList(); 43 | comJobStuList=compCheckStudentList.compCheckStuList(compUserName); 44 | return SUCCESS; 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /src/cn/edu/action/CompLogoutAction.java: -------------------------------------------------------------------------------- 1 | package cn.edu.action; 2 | 3 | import com.opensymphony.xwork2.ActionSupport; 4 | 5 | public class CompLogoutAction extends ActionSupport { 6 | public String execute(){ 7 | return SUCCESS; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/cn/edu/action/CompanyCompleteInfoAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/CompanyCompleteInfoAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/CompanyLoginAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/CompanyLoginAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/CompanyManageJobAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/CompanyManageJobAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/CompanyPreviewInfoAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/CompanyPreviewInfoAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/CompanyRegistAction-validation.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | true 10 | 11 | 12 | 13 | 14 | 15 | 16 | true 17 | 18 | 19 | 20 | 21 | 27 | 28 | 29 | 30 | true 31 | 32 | 33 | 34 | 6 35 | 18 36 | 密码长度应在6到18个字符之间 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /src/cn/edu/action/CompanyRegistAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/CompanyRegistAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/FileUploadError_zh_CN.properties: -------------------------------------------------------------------------------- 1 | struts.messages.error.file.too.large=\u4E0A\u4F20\u7684\u6587\u4EF6\u592A\u5927\uFF0C\u8BF7\u91CD\u65B0\u9009\u62E9\u4E0A\u4F20\u6587\u4EF6\uFF01\uFF01 2 | struts.messages.error.content.type.not.allowed=\u4E0A\u4F20\u7684\u6587\u4EF6\u7C7B\u578B\u4E0D\u5141\u8BB8\uFF0C\u8BF7\u91CD\u65B0\u9009\u62E9\u4E0A\u4F20\u6587\u4EF6\uFF01\uFF01 -------------------------------------------------------------------------------- /src/cn/edu/action/MajorcountAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/MajorcountAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/MultiFileAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/MultiFileAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/StuJobListAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/StuJobListAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/StuResumeJobListAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/StuResumeJobListAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/StuToUpdateResumeAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/StuToUpdateResumeAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/StuUpdateResumeAction-validation.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | true 9 | 10 | 11 | 12 | 18 13 | 18 14 | 身份证号长度为18个字符 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/cn/edu/action/StuUpdateResumeAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/StuUpdateResumeAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/StuWriteJobInfoAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/StuWriteJobInfoAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/StudentJobContentAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/StudentJobContentAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/StudentLoginAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/StudentLoginAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/StudentLogoutAction.java: -------------------------------------------------------------------------------- 1 | package cn.edu.action; 2 | 3 | import com.opensymphony.xwork2.ActionSupport; 4 | 5 | public class StudentLogoutAction extends ActionSupport { 6 | public String execute(){ 7 | return SUCCESS; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/cn/edu/action/StudentPreviewResumeAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/StudentPreviewResumeAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/StudentRegistAction-validation.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | true 10 | 11 | 12 | 13 | 14 | 15 | 16 | true 17 | 18 | 19 | 20 | 21 | 22 | 23 | true 24 | 25 | 26 | 27 | 28 | 29 | 30 | true 31 | 32 | 33 | 34 | 6 35 | 18 36 | 密码长度应在6到18个字符之间 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /src/cn/edu/action/StudentRegistAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/StudentRegistAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/StudentSendResumeAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/StudentSendResumeAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/StudentToWriteJobInfoAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/StudentToWriteJobInfoAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/TestAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/TestAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/countAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/countAction.java -------------------------------------------------------------------------------- /src/cn/edu/action/sexCountAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/action/sexCountAction.java -------------------------------------------------------------------------------- /src/cn/edu/dao/BaseHibernateDAO.java: -------------------------------------------------------------------------------- 1 | package cn.edu.dao; 2 | 3 | import cn.edu.sessionfactory.HibernateSessionFactory; 4 | import org.hibernate.Session; 5 | 6 | 7 | /** 8 | * Data access object (DAO) for domain model 9 | * @author MyEclipse Persistence Tools 10 | */ 11 | public class BaseHibernateDAO implements IBaseHibernateDAO { 12 | 13 | public Session getSession() { 14 | return HibernateSessionFactory.getSession(); 15 | } 16 | 17 | } -------------------------------------------------------------------------------- /src/cn/edu/dao/IBaseHibernateDAO.java: -------------------------------------------------------------------------------- 1 | package cn.edu.dao; 2 | 3 | import org.hibernate.Session; 4 | 5 | 6 | /** 7 | * Data access interface for domain model 8 | * @author MyEclipse Persistence Tools 9 | */ 10 | public interface IBaseHibernateDAO { 11 | public Session getSession(); 12 | } -------------------------------------------------------------------------------- /src/cn/edu/dao/JobCountDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/dao/JobCountDAO.java -------------------------------------------------------------------------------- /src/cn/edu/dao/TbJobDAO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/dao/TbJobDAO.java -------------------------------------------------------------------------------- /src/cn/edu/entity/TbAdmin.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/cn/edu/entity/TbAdmin.java: -------------------------------------------------------------------------------- 1 | package cn.edu.entity; 2 | 3 | /** 4 | * TbAdmin entity. @author MyEclipse Persistence Tools 5 | */ 6 | 7 | public class TbAdmin implements java.io.Serializable { 8 | 9 | // Fields 10 | 11 | private Integer adminNum; 12 | private String adminId; 13 | private String adminPwd; 14 | 15 | // Constructors 16 | 17 | /** default constructor */ 18 | public TbAdmin() { 19 | } 20 | 21 | /** full constructor */ 22 | public TbAdmin(String adminId, String adminPwd) { 23 | this.adminId = adminId; 24 | this.adminPwd = adminPwd; 25 | } 26 | 27 | // Property accessors 28 | 29 | public Integer getAdminNum() { 30 | return this.adminNum; 31 | } 32 | 33 | public void setAdminNum(Integer adminNum) { 34 | this.adminNum = adminNum; 35 | } 36 | 37 | public String getAdminId() { 38 | return this.adminId; 39 | } 40 | 41 | public void setAdminId(String adminId) { 42 | this.adminId = adminId; 43 | } 44 | 45 | public String getAdminPwd() { 46 | return this.adminPwd; 47 | } 48 | 49 | public void setAdminPwd(String adminPwd) { 50 | this.adminPwd = adminPwd; 51 | } 52 | 53 | } -------------------------------------------------------------------------------- /src/cn/edu/entity/TbJob.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /src/cn/edu/entity/TbJob.java: -------------------------------------------------------------------------------- 1 | package cn.edu.entity; 2 | 3 | import java.util.Date; 4 | import java.util.HashSet; 5 | import java.util.Set; 6 | 7 | /** 8 | * TbJob entity. @author MyEclipse Persistence Tools 9 | */ 10 | 11 | public class TbJob implements java.io.Serializable { 12 | 13 | // Fields 14 | 15 | private Integer jobId; 16 | private TbCompany tbCompany; 17 | private String jobTitle; 18 | private String jobCon; 19 | private Date jobDate; 20 | private Set tbStujobs = new HashSet(0); 21 | 22 | // Constructors 23 | 24 | /** default constructor */ 25 | public TbJob() { 26 | } 27 | 28 | /** full constructor */ 29 | public TbJob(TbCompany tbCompany, String jobTitle, String jobCon, 30 | Date jobDate, Set tbStujobs) { 31 | this.tbCompany = tbCompany; 32 | this.jobTitle = jobTitle; 33 | this.jobCon = jobCon; 34 | this.jobDate = jobDate; 35 | this.tbStujobs = tbStujobs; 36 | } 37 | 38 | // Property accessors 39 | 40 | public Integer getJobId() { 41 | return this.jobId; 42 | } 43 | 44 | public void setJobId(Integer jobId) { 45 | this.jobId = jobId; 46 | } 47 | 48 | public TbCompany getTbCompany() { 49 | return this.tbCompany; 50 | } 51 | 52 | public void setTbCompany(TbCompany tbCompany) { 53 | this.tbCompany = tbCompany; 54 | } 55 | 56 | public String getJobTitle() { 57 | return this.jobTitle; 58 | } 59 | 60 | public void setJobTitle(String jobTitle) { 61 | this.jobTitle = jobTitle; 62 | } 63 | 64 | public String getJobCon() { 65 | return this.jobCon; 66 | } 67 | 68 | public void setJobCon(String jobCon) { 69 | this.jobCon = jobCon; 70 | } 71 | 72 | public Date getJobDate() { 73 | return this.jobDate; 74 | } 75 | 76 | public void setJobDate(Date jobDate) { 77 | this.jobDate = jobDate; 78 | } 79 | 80 | public Set getTbStujobs() { 81 | return this.tbStujobs; 82 | } 83 | 84 | public void setTbStujobs(Set tbStujobs) { 85 | this.tbStujobs = tbStujobs; 86 | } 87 | 88 | } -------------------------------------------------------------------------------- /src/cn/edu/entity/TbPolicy.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /src/cn/edu/entity/TbPolicy.java: -------------------------------------------------------------------------------- 1 | package cn.edu.entity; 2 | 3 | import java.util.Date; 4 | 5 | /** 6 | * TbPolicy entity. @author MyEclipse Persistence Tools 7 | */ 8 | 9 | public class TbPolicy implements java.io.Serializable { 10 | 11 | // Fields 12 | 13 | private Integer policyId; 14 | private String policyTitle; 15 | private String policyCon; 16 | private Date policyDate; 17 | 18 | // Constructors 19 | 20 | /** default constructor */ 21 | public TbPolicy() { 22 | } 23 | 24 | /** full constructor */ 25 | public TbPolicy(String policyTitle, String policyCon, Date policyDate) { 26 | this.policyTitle = policyTitle; 27 | this.policyCon = policyCon; 28 | this.policyDate = policyDate; 29 | } 30 | 31 | // Property accessors 32 | 33 | public Integer getPolicyId() { 34 | return this.policyId; 35 | } 36 | 37 | public void setPolicyId(Integer policyId) { 38 | this.policyId = policyId; 39 | } 40 | 41 | public String getPolicyTitle() { 42 | return this.policyTitle; 43 | } 44 | 45 | public void setPolicyTitle(String policyTitle) { 46 | this.policyTitle = policyTitle; 47 | } 48 | 49 | public String getPolicyCon() { 50 | return this.policyCon; 51 | } 52 | 53 | public void setPolicyCon(String policyCon) { 54 | this.policyCon = policyCon; 55 | } 56 | 57 | public Date getPolicyDate() { 58 | return this.policyDate; 59 | } 60 | 61 | public void setPolicyDate(Date policyDate) { 62 | this.policyDate = policyDate; 63 | } 64 | 65 | } -------------------------------------------------------------------------------- /src/cn/edu/entity/TbStujob.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 9 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/cn/edu/entity/TbStujob.java: -------------------------------------------------------------------------------- 1 | package cn.edu.entity; 2 | 3 | /** 4 | * TbStujob entity. @author MyEclipse Persistence Tools 5 | */ 6 | 7 | public class TbStujob implements java.io.Serializable { 8 | 9 | // Fields 10 | 11 | private TbStujobId id; 12 | 13 | // Constructors 14 | 15 | /** default constructor */ 16 | public TbStujob() { 17 | } 18 | 19 | /** full constructor */ 20 | public TbStujob(TbStujobId id) { 21 | this.id = id; 22 | } 23 | 24 | // Property accessors 25 | 26 | public TbStujobId getId() { 27 | return this.id; 28 | } 29 | 30 | public void setId(TbStujobId id) { 31 | this.id = id; 32 | } 33 | 34 | } -------------------------------------------------------------------------------- /src/cn/edu/entity/TbStujobId.java: -------------------------------------------------------------------------------- 1 | package cn.edu.entity; 2 | 3 | /** 4 | * TbStujobId entity. @author MyEclipse Persistence Tools 5 | */ 6 | 7 | public class TbStujobId implements java.io.Serializable { 8 | 9 | // Fields 10 | 11 | private TbStudent tbStudent; 12 | private TbJob tbJob; 13 | 14 | // Constructors 15 | 16 | /** default constructor */ 17 | public TbStujobId() { 18 | } 19 | 20 | /** full constructor */ 21 | public TbStujobId(TbStudent tbStudent, TbJob tbJob) { 22 | this.tbStudent = tbStudent; 23 | this.tbJob = tbJob; 24 | } 25 | 26 | // Property accessors 27 | 28 | public TbStudent getTbStudent() { 29 | return this.tbStudent; 30 | } 31 | 32 | public void setTbStudent(TbStudent tbStudent) { 33 | this.tbStudent = tbStudent; 34 | } 35 | 36 | public TbJob getTbJob() { 37 | return this.tbJob; 38 | } 39 | 40 | public void setTbJob(TbJob tbJob) { 41 | this.tbJob = tbJob; 42 | } 43 | 44 | public boolean equals(Object other) { 45 | if ((this == other)) 46 | return true; 47 | if ((other == null)) 48 | return false; 49 | if (!(other instanceof TbStujobId)) 50 | return false; 51 | TbStujobId castOther = (TbStujobId) other; 52 | 53 | return ((this.getTbStudent() == castOther.getTbStudent()) || (this 54 | .getTbStudent() != null && castOther.getTbStudent() != null && this 55 | .getTbStudent().equals(castOther.getTbStudent()))) 56 | && ((this.getTbJob() == castOther.getTbJob()) || (this 57 | .getTbJob() != null && castOther.getTbJob() != null && this 58 | .getTbJob().equals(castOther.getTbJob()))); 59 | } 60 | 61 | public int hashCode() { 62 | int result = 17; 63 | 64 | result = 37 * result 65 | + (getTbStudent() == null ? 0 : this.getTbStudent().hashCode()); 66 | result = 37 * result 67 | + (getTbJob() == null ? 0 : this.getTbJob().hashCode()); 68 | return result; 69 | } 70 | 71 | } -------------------------------------------------------------------------------- /src/cn/edu/service/AdminManNoticeDelete.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/service/AdminManNoticeDelete.java -------------------------------------------------------------------------------- /src/cn/edu/service/AdminManNoticeUpdate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/service/AdminManNoticeUpdate.java -------------------------------------------------------------------------------- /src/cn/edu/service/AdminManageNoticeInsert.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/service/AdminManageNoticeInsert.java -------------------------------------------------------------------------------- /src/cn/edu/service/AdminManageNoticeList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/service/AdminManageNoticeList.java -------------------------------------------------------------------------------- /src/cn/edu/service/AdminSearchStu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/service/AdminSearchStu.java -------------------------------------------------------------------------------- /src/cn/edu/service/AdminStuDelete.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/service/AdminStuDelete.java -------------------------------------------------------------------------------- /src/cn/edu/service/AdminsearchStuDetail.java: -------------------------------------------------------------------------------- 1 | package cn.edu.service; 2 | 3 | import cn.edu.dao.TbStudentDAO; 4 | import cn.edu.entity.TbStudent; 5 | 6 | public class AdminsearchStuDetail { 7 | private TbStudentDAO studentDAO; 8 | private TbStudent student; 9 | public TbStudent searchStudentInfo(int searchstuid){ 10 | studentDAO=new TbStudentDAO(); 11 | student=new TbStudent(); 12 | student=studentDAO.findById(searchstuid); 13 | 14 | return student; 15 | 16 | } 17 | @Override 18 | public String toString() { 19 | return "AdminsearchStuDetail [student=" + student + "]"; 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /src/cn/edu/service/CheckAdmin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/service/CheckAdmin.java -------------------------------------------------------------------------------- /src/cn/edu/service/CompCheckStudentList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/service/CompCheckStudentList.java -------------------------------------------------------------------------------- /src/cn/edu/service/CompanyCompleteInfo.java: -------------------------------------------------------------------------------- 1 | package cn.edu.service; 2 | 3 | import java.util.ArrayList; 4 | 5 | import cn.edu.dao.TbCompanyDAO; 6 | import cn.edu.entity.TbCompany; 7 | 8 | public class CompanyCompleteInfo { 9 | TbCompany tbCompany; 10 | TbCompanyDAO tbCompanyDAO; 11 | 12 | public void completeInfo(TbCompany company) { 13 | tbCompany = new TbCompany(); 14 | tbCompanyDAO = new TbCompanyDAO(); 15 | ArrayList tbCompanys = new ArrayList(); 16 | tbCompanys = (ArrayList) tbCompanyDAO 17 | .findByCompUsername(company.getCompUsername()); 18 | tbCompany = tbCompanys.get(0); 19 | tbCompany.setCompName(company.getCompName()); 20 | tbCompany.setCompProperty(company.getCompProperty()); 21 | tbCompany.setCompConPer(company.getCompConPer()); 22 | tbCompany.setCompIndustry(company.getCompIndustry()); 23 | tbCompany.setCompSize(company.getCompSize()); 24 | tbCompany.setCompAddress(company.getCompAddress()); 25 | tbCompany.setCompConPer(company.getCompConPer()); 26 | tbCompany.setCompEmail(company.getCompEmail()); 27 | tbCompany.setCompTel(company.getCompTel()); 28 | tbCompany.setCompZipCode(company.getCompZipCode()); 29 | tbCompany.setCompIntro(company.getCompIntro()); 30 | tbCompanyDAO.merge(tbCompany); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /src/cn/edu/service/CompanyLogin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/service/CompanyLogin.java -------------------------------------------------------------------------------- /src/cn/edu/service/CompanyManageJob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/service/CompanyManageJob.java -------------------------------------------------------------------------------- /src/cn/edu/service/CompanyPreviewInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/service/CompanyPreviewInfo.java -------------------------------------------------------------------------------- /src/cn/edu/service/CompanyRegist.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/service/CompanyRegist.java -------------------------------------------------------------------------------- /src/cn/edu/service/StuJobList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/service/StuJobList.java -------------------------------------------------------------------------------- /src/cn/edu/service/StuResumeJobList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/service/StuResumeJobList.java -------------------------------------------------------------------------------- /src/cn/edu/service/StuSendResume.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/service/StuSendResume.java -------------------------------------------------------------------------------- /src/cn/edu/service/StuUpdateResume.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/service/StuUpdateResume.java -------------------------------------------------------------------------------- /src/cn/edu/service/StuWriteJobInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/service/StuWriteJobInfo.java -------------------------------------------------------------------------------- /src/cn/edu/service/StudentJobContent.java: -------------------------------------------------------------------------------- 1 | package cn.edu.service; 2 | 3 | import cn.edu.entity.TbJob; 4 | import cn.edu.dao.*; 5 | public class StudentJobContent { 6 | TbJob tbJob; 7 | TbJobDAO tbJobDao; 8 | 9 | public TbJob searchJobContent(int jobId){ 10 | tbJobDao=new TbJobDAO(); 11 | tbJob=new TbJob(); 12 | tbJob=tbJobDao.findById(jobId); 13 | return tbJob; 14 | 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /src/cn/edu/service/StudentLogin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/service/StudentLogin.java -------------------------------------------------------------------------------- /src/cn/edu/service/StudentPreviewResume.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/service/StudentPreviewResume.java -------------------------------------------------------------------------------- /src/cn/edu/service/StudentRegist.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MovanZhang/GraduteJobManagementSystem/beac0661d7f9eb4c5843064164719eb441c776f2/src/cn/edu/service/StudentRegist.java -------------------------------------------------------------------------------- /src/cn/edu/service/adminCompanyList.java: -------------------------------------------------------------------------------- 1 | package cn.edu.service; 2 | import java.util.*; 3 | import cn.edu.dao.TbCompanyDAO; 4 | import cn.edu.entity.TbCompany; 5 | 6 | public class adminCompanyList { 7 | @SuppressWarnings("unchecked") 8 | public List findAll(){ 9 | TbCompanyDAO tbCompanyDAO=new TbCompanyDAO(); 10 | return tbCompanyDAO.findAll(); 11 | 12 | } 13 | public TbCompany findById(java.lang.Integer id){ 14 | System.out.println("---------"); 15 | TbCompanyDAO tbCompanyDAO=new TbCompanyDAO(); 16 | return tbCompanyDAO.findById(id); 17 | 18 | } 19 | public void delete(TbCompany persistentInstance) { 20 | System.out.println("445454545454"); 21 | TbCompanyDAO tbCompanyDAO=new TbCompanyDAO(); 22 | //System.out.println(this.getClass()+".delete("+persistentInstance.toString()+")"); 23 | tbCompanyDAO.delete(persistentInstance); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/cn/edu/service/adminExamJobList.java: -------------------------------------------------------------------------------- 1 | package cn.edu.service; 2 | import java.util.*; 3 | import cn.edu.dao.TbJobDAO; 4 | import cn.edu.entity.TbJob; 5 | public class adminExamJobList { 6 | @SuppressWarnings("unchecked") 7 | public List findAll(){ 8 | TbJobDAO tbJobDAO=new TbJobDAO(); 9 | return tbJobDAO.findAll(); 10 | 11 | } 12 | public TbJob findById(java.lang.Integer id){ 13 | TbJobDAO tbJobDAO=new TbJobDAO(); 14 | return tbJobDAO.findById(id); 15 | 16 | } 17 | public void delete(TbJob persistentInstance) { 18 | TbJobDAO tbJobDAO=new TbJobDAO(); 19 | //System.out.println(this.getClass()+".delete("+persistentInstance.toString()+")"); 20 | tbJobDAO.delete(persistentInstance); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/hibernate.cfg.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | org.hibernate.dialect.MySQLDialect 12 | 13 | 14 | jdbc:mysql://localhost:3306/db_graduate 15 | 16 | root 17 | 18 | com.mysql.jdbc.Driver 19 | 20 | mysqld 21 | true 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | --------------------------------------------------------------------------------