├── beta ├── core │ ├── judge_client │ │ ├── judge_client.cc │ │ ├── makefile │ │ ├── ncalls.h │ │ └── okcalls.h │ ├── judged │ │ ├── judged.cc │ │ └── makefile │ ├── make.sh │ └── sim │ │ ├── sim.sh │ │ ├── sim_2_26 │ │ ├── Answers │ │ ├── ChangeLog │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── Malloc.c │ │ ├── Malloc.h │ │ ├── READ.ME │ │ ├── README.1ST │ │ ├── READ_ME │ │ ├── TechnReport │ │ ├── ToDo │ │ ├── VERSION │ │ ├── add_run.c │ │ ├── add_run.h │ │ ├── aiso.bdy │ │ ├── aiso.spc │ │ ├── algollike.c │ │ ├── algollike.h │ │ ├── clang.c │ │ ├── clang.l │ │ ├── compare.c │ │ ├── compare.h │ │ ├── debug.par │ │ ├── error.c │ │ ├── error.h │ │ ├── hash.c │ │ ├── hash.h │ │ ├── idf.c │ │ ├── idf.h │ │ ├── javalang.c │ │ ├── javalang.l │ │ ├── lang.h │ │ ├── language.h │ │ ├── lex.c │ │ ├── lex.h │ │ ├── lisplang.l │ │ ├── m2lang.l │ │ ├── miralang.l │ │ ├── newargs.c │ │ ├── newargs.h │ │ ├── option-i.inp │ │ ├── options.c │ │ ├── options.h │ │ ├── pascallang.c │ │ ├── pascallang.l │ │ ├── pass1.c │ │ ├── pass1.h │ │ ├── pass2.c │ │ ├── pass2.h │ │ ├── pass3.c │ │ ├── pass3.h │ │ ├── percentages.c │ │ ├── percentages.h │ │ ├── runs.c │ │ ├── runs.h │ │ ├── settings.par │ │ ├── sim.1 │ │ ├── sim.c │ │ ├── sim.h │ │ ├── sim.html │ │ ├── sim.pdf │ │ ├── sortlist.bdy │ │ ├── sortlist.spc │ │ ├── stream.c │ │ ├── stream.h │ │ ├── sysidf.mk │ │ ├── sysidf.msdos │ │ ├── sysidf.unix │ │ ├── system.par │ │ ├── text.c │ │ ├── text.h │ │ ├── textlang.l │ │ ├── token.c │ │ ├── token.h │ │ ├── tokenarray.c │ │ └── tokenarray.h │ │ └── sim_2_67 │ │ ├── Answers │ │ ├── ChangeLog │ │ ├── ForEachFile.c │ │ ├── ForEachFile.h │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── Malloc.c │ │ ├── Malloc.h │ │ ├── README │ │ ├── TechnReport │ │ ├── ToDo │ │ ├── VERSION │ │ ├── add_run.c │ │ ├── add_run.h │ │ ├── aiso.bdy │ │ ├── aiso.spc │ │ ├── algollike.c │ │ ├── algollike.h │ │ ├── clang.l │ │ ├── compare.c │ │ ├── compare.h │ │ ├── debug.c │ │ ├── debug.h │ │ ├── debug.par │ │ ├── error.c │ │ ├── error.h │ │ ├── fname.c │ │ ├── fname.h │ │ ├── hash.c │ │ ├── hash.h │ │ ├── idf.c │ │ ├── idf.h │ │ ├── javalang.l │ │ ├── lang.c │ │ ├── lang.h │ │ ├── language.c │ │ ├── language.h │ │ ├── lex.c │ │ ├── lex.h │ │ ├── lisplang.l │ │ ├── m2lang.l │ │ ├── miralang.l │ │ ├── newargs.c │ │ ├── newargs.h │ │ ├── option-i.inp │ │ ├── options.c │ │ ├── options.h │ │ ├── pascallang.l │ │ ├── pass1.c │ │ ├── pass1.h │ │ ├── pass2.c │ │ ├── pass2.h │ │ ├── pass3.c │ │ ├── pass3.h │ │ ├── percentages.c │ │ ├── percentages.h │ │ ├── runs.c │ │ ├── runs.h │ │ ├── settings.par │ │ ├── sim.1 │ │ ├── sim.c │ │ ├── sim.h │ │ ├── sim.pdf │ │ ├── sim_c.exe │ │ ├── sortlist.bdy │ │ ├── sortlist.spc │ │ ├── stream.c │ │ ├── stream.h │ │ ├── system.par │ │ ├── text.c │ │ ├── text.h │ │ ├── textlang.l │ │ ├── token.c │ │ ├── token.h │ │ ├── tokenarray.c │ │ └── tokenarray.h ├── install │ ├── README │ ├── db.sql │ ├── install.sh │ ├── java0.policy │ ├── judge.conf │ └── judged └── web │ ├── admin │ ├── admin-header.php │ ├── changepass.php │ ├── contest_add.php │ ├── contest_df_change.php │ ├── contest_edit.php │ ├── contest_list.php │ ├── contest_pr_change.php │ ├── index.php │ ├── menu.php │ ├── moodle_judge.php │ ├── msg.txt │ ├── news_add.php │ ├── news_add_page.php │ ├── news_df_change.php │ ├── news_edit.php │ ├── news_list.php │ ├── privilege_add.php │ ├── privilege_delete.php │ ├── privilege_list.php │ ├── problem_add.php │ ├── problem_add_page.php │ ├── problem_add_page_hdu.php │ ├── problem_add_page_pku.php │ ├── problem_add_page_waterloo.php │ ├── problem_add_page_zju.php │ ├── problem_changeid.php │ ├── problem_copy.php │ ├── problem_del.php │ ├── problem_df_change.php │ ├── problem_edit.php │ ├── problem_export.php │ ├── problem_export_xml.php │ ├── problem_import.php │ ├── problem_import_xml.php │ ├── problem_judge.php │ ├── problem_list.php │ ├── quixplorer │ │ ├── .config │ │ │ ├── .htaccess │ │ │ ├── .htusers.php │ │ │ ├── conf.php │ │ │ └── mimes.php │ │ ├── .include │ │ │ ├── .htaccess │ │ │ ├── error.php │ │ │ ├── footer.php │ │ │ ├── fun_admin.php │ │ │ ├── fun_archive.php │ │ │ ├── fun_chmod.php │ │ │ ├── fun_copy_move.php │ │ │ ├── fun_del.php │ │ │ ├── fun_down.php │ │ │ ├── fun_edit.php │ │ │ ├── fun_extra.php │ │ │ ├── fun_list.php │ │ │ ├── fun_mkitem.php │ │ │ ├── fun_search.php │ │ │ ├── fun_up.php │ │ │ ├── header.php │ │ │ ├── init.php │ │ │ ├── javascript.php │ │ │ ├── js_admin.php │ │ │ ├── js_admin2.php │ │ │ ├── js_admin3.php │ │ │ ├── login.php │ │ │ ├── permissions.php │ │ │ └── user.php │ │ ├── _img │ │ │ ├── _.gif │ │ │ ├── __copy.gif │ │ │ ├── __cut.gif │ │ │ ├── __paste.gif │ │ │ ├── _admin.gif │ │ │ ├── _archive.gif │ │ │ ├── _arrowdown.gif │ │ │ ├── _arrowup.gif │ │ │ ├── _copy.gif │ │ │ ├── _copy_.gif │ │ │ ├── _delete.gif │ │ │ ├── _delete_.gif │ │ │ ├── _download.gif │ │ │ ├── _download_.gif │ │ │ ├── _edit.gif │ │ │ ├── _edit_.gif │ │ │ ├── _home.gif │ │ │ ├── _info.gif │ │ │ ├── _logout.gif │ │ │ ├── _move.gif │ │ │ ├── _move_.gif │ │ │ ├── _refresh.gif │ │ │ ├── _search.gif │ │ │ ├── _up.gif │ │ │ ├── _upload.gif │ │ │ ├── _upload_.gif │ │ │ ├── cpp.gif │ │ │ ├── dir.gif │ │ │ ├── exe.gif │ │ │ ├── file.gif │ │ │ ├── flash.gif │ │ │ ├── h.gif │ │ │ ├── html.gif │ │ │ ├── image.gif │ │ │ ├── java.gif │ │ │ ├── js.gif │ │ │ ├── midi.gif │ │ │ ├── mp3.gif │ │ │ ├── pdf.gif │ │ │ ├── php.gif │ │ │ ├── pl.gif │ │ │ ├── real.gif │ │ │ ├── sound.gif │ │ │ ├── spread.gif │ │ │ ├── src.gif │ │ │ ├── tar.gif │ │ │ ├── tgz.gif │ │ │ ├── txt.gif │ │ │ ├── video.gif │ │ │ ├── word.gif │ │ │ └── zip.gif │ │ ├── _lang │ │ │ ├── _info.php │ │ │ ├── bg.php │ │ │ ├── bg_mimes.php │ │ │ ├── cs.php │ │ │ ├── cs_mimes.php │ │ │ ├── da.php │ │ │ ├── da_mimes.php │ │ │ ├── de.php │ │ │ ├── de_mimes.php │ │ │ ├── en.php │ │ │ ├── en_mimes.php │ │ │ ├── es.php │ │ │ ├── es_mimes.php │ │ │ ├── fr.php │ │ │ ├── fr_mimes.php │ │ │ ├── it.php │ │ │ ├── it_mimes.php │ │ │ ├── nl.php │ │ │ ├── nl_mimes.php │ │ │ ├── pl.php │ │ │ ├── pl_mimes.php │ │ │ ├── ptbr.php │ │ │ ├── ptbr_mimes.php │ │ │ ├── ro.php │ │ │ ├── ro_mimes.php │ │ │ ├── ru.php │ │ │ └── ru_mimes.php │ │ ├── _lib │ │ │ └── lib_zip.php │ │ ├── _style │ │ │ ├── style.css │ │ │ └── tablebg.gif │ │ ├── index.php │ │ ├── license.txt │ │ ├── permissions.txt │ │ ├── readme.txt │ │ └── release.txt │ ├── rejudge.php │ ├── setmsg.php │ ├── source_give.php │ ├── team_generate.php │ ├── update_db.php │ └── update_pw.php │ ├── bbs.php │ ├── bbs │ └── README │ ├── bootstrap │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ ├── ceinfo.php │ ├── config.yaml │ ├── contest-header.php │ ├── contest.php │ ├── contestrank.php │ ├── contestrank.xls.php │ ├── conteststatistics.php │ ├── discuss │ ├── contest-header.php │ ├── discuss.php │ ├── discuss.sql │ ├── discuss_func.inc.php │ ├── hoj.css │ ├── index.php │ ├── newpost.php │ ├── oj-header.php │ ├── post.php │ ├── superthread.php │ ├── thread.php │ └── threadadmin.php │ ├── edit_area │ ├── autocompletion.js │ ├── edit_area.css │ ├── edit_area.js │ ├── edit_area_compressor.php │ ├── edit_area_full.gz │ ├── edit_area_full.js │ ├── edit_area_functions.js │ ├── edit_area_loader.js │ ├── elements_functions.js │ ├── highlight.js │ ├── images │ │ ├── autocompletion.gif │ │ ├── close.gif │ │ ├── fullscreen.gif │ │ ├── go_to_line.gif │ │ ├── help.gif │ │ ├── highlight.gif │ │ ├── load.gif │ │ ├── move.gif │ │ ├── newdocument.gif │ │ ├── opacity.png │ │ ├── processing.gif │ │ ├── redo.gif │ │ ├── reset_highlight.gif │ │ ├── save.gif │ │ ├── search.gif │ │ ├── smooth_selection.gif │ │ ├── spacer.gif │ │ ├── statusbar_resize.gif │ │ ├── undo.gif │ │ └── word_wrap.gif │ ├── keyboard.js │ ├── langs │ │ ├── bg.js │ │ ├── cs.js │ │ ├── de.js │ │ ├── dk.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── hr.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── mk.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── pt.js │ │ ├── ru.js │ │ ├── sk.js │ │ └── zh.js │ ├── license_apache.txt │ ├── license_bsd.txt │ ├── license_lgpl.txt │ ├── manage_area.js │ ├── plugins │ │ ├── charmap │ │ │ ├── charmap.js │ │ │ ├── css │ │ │ │ └── charmap.css │ │ │ ├── images │ │ │ │ └── charmap.gif │ │ │ ├── jscripts │ │ │ │ └── map.js │ │ │ ├── langs │ │ │ │ ├── bg.js │ │ │ │ ├── cs.js │ │ │ │ ├── de.js │ │ │ │ ├── dk.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── fr.js │ │ │ │ ├── hr.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── mk.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ └── zh.js │ │ │ └── popup.html │ │ └── test │ │ │ ├── css │ │ │ └── test.css │ │ │ ├── images │ │ │ ├── Thumbs.db │ │ │ └── test.gif │ │ │ ├── langs │ │ │ ├── bg.js │ │ │ ├── cs.js │ │ │ ├── de.js │ │ │ ├── dk.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── fr.js │ │ │ ├── hr.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── mk.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ └── zh.js │ │ │ ├── test.js │ │ │ └── test2.js │ ├── reg_syntax.js │ ├── reg_syntax │ │ ├── basic.js │ │ ├── brainfuck.js │ │ ├── c.js │ │ ├── coldfusion.js │ │ ├── cpp.js │ │ ├── css.js │ │ ├── html.js │ │ ├── java.js │ │ ├── js.js │ │ ├── pas.js │ │ ├── perl.js │ │ ├── php.js │ │ ├── python.js │ │ ├── robotstxt.js │ │ ├── ruby.js │ │ ├── sql.js │ │ ├── tsql.js │ │ ├── vb.js │ │ └── xml.js │ ├── regexp.js │ ├── resize_area.js │ ├── search_replace.js │ └── template.html │ ├── export_ac_code.php │ ├── export_contest_code.php │ ├── faqs.cn.php │ ├── faqs.ko.php │ ├── faqs.php │ ├── fckeditor │ ├── editor │ │ ├── css │ │ │ ├── behaviors │ │ │ │ ├── disablehandles.htc │ │ │ │ └── showtableborders.htc │ │ │ ├── fck_editorarea.css │ │ │ ├── fck_internal.css │ │ │ ├── fck_showtableborders_gecko.css │ │ │ └── images │ │ │ │ ├── block_address.png │ │ │ │ ├── block_blockquote.png │ │ │ │ ├── block_div.png │ │ │ │ ├── block_h1.png │ │ │ │ ├── block_h2.png │ │ │ │ ├── block_h3.png │ │ │ │ ├── block_h4.png │ │ │ │ ├── block_h5.png │ │ │ │ ├── block_h6.png │ │ │ │ ├── block_p.png │ │ │ │ ├── block_pre.png │ │ │ │ ├── fck_anchor.gif │ │ │ │ ├── fck_flashlogo.gif │ │ │ │ ├── fck_hiddenfield.gif │ │ │ │ ├── fck_pagebreak.gif │ │ │ │ └── fck_plugin.gif │ │ ├── dialog │ │ │ ├── common │ │ │ │ ├── fck_dialog_common.css │ │ │ │ ├── fck_dialog_common.js │ │ │ │ └── images │ │ │ │ │ ├── locked.gif │ │ │ │ │ ├── reset.gif │ │ │ │ │ └── unlocked.gif │ │ │ ├── fck_about.html │ │ │ ├── fck_about │ │ │ │ ├── logo_fckeditor.gif │ │ │ │ ├── logo_fredck.gif │ │ │ │ └── sponsors │ │ │ │ │ └── spellchecker_net.gif │ │ │ ├── fck_anchor.html │ │ │ ├── fck_button.html │ │ │ ├── fck_checkbox.html │ │ │ ├── fck_colorselector.html │ │ │ ├── fck_div.html │ │ │ ├── fck_docprops.html │ │ │ ├── fck_docprops │ │ │ │ └── fck_document_preview.html │ │ │ ├── fck_flash.html │ │ │ ├── fck_flash │ │ │ │ ├── fck_flash.js │ │ │ │ └── fck_flash_preview.html │ │ │ ├── fck_form.html │ │ │ ├── fck_hiddenfield.html │ │ │ ├── fck_image.html │ │ │ ├── fck_image │ │ │ │ ├── fck_image.js │ │ │ │ └── fck_image_preview.html │ │ │ ├── fck_link.html │ │ │ ├── fck_link │ │ │ │ └── fck_link.js │ │ │ ├── fck_listprop.html │ │ │ ├── fck_paste.html │ │ │ ├── fck_radiobutton.html │ │ │ ├── fck_replace.html │ │ │ ├── fck_scayt.html │ │ │ ├── fck_scayt │ │ │ │ └── scayt_dialog.css │ │ │ ├── fck_select.html │ │ │ ├── fck_select │ │ │ │ └── fck_select.js │ │ │ ├── fck_smiley.html │ │ │ ├── fck_source.html │ │ │ ├── fck_specialchar.html │ │ │ ├── fck_spellerpages.html │ │ │ ├── fck_spellerpages │ │ │ │ └── spellerpages │ │ │ │ │ ├── blank.html │ │ │ │ │ ├── controlWindow.js │ │ │ │ │ ├── controls.html │ │ │ │ │ ├── server-scripts │ │ │ │ │ ├── spellchecker.cfm │ │ │ │ │ ├── spellchecker.php │ │ │ │ │ └── spellchecker.pl │ │ │ │ │ ├── spellChecker.js │ │ │ │ │ ├── spellchecker.html │ │ │ │ │ ├── spellerStyle.css │ │ │ │ │ └── wordWindow.js │ │ │ ├── fck_table.html │ │ │ ├── fck_tablecell.html │ │ │ ├── fck_template.html │ │ │ ├── fck_template │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ ├── fck_textarea.html │ │ │ └── fck_textfield.html │ │ ├── dtd │ │ │ ├── fck_dtd_test.html │ │ │ ├── fck_xhtml10strict.js │ │ │ └── fck_xhtml10transitional.js │ │ ├── fckdebug.html │ │ ├── fckdialog.html │ │ ├── fckeditor.html │ │ ├── fckeditor.original.html │ │ ├── filemanager │ │ │ ├── browser │ │ │ │ └── default │ │ │ │ │ ├── browser.css │ │ │ │ │ ├── browser.html │ │ │ │ │ ├── frmactualfolder.html │ │ │ │ │ ├── frmcreatefolder.html │ │ │ │ │ ├── frmfolders.html │ │ │ │ │ ├── frmresourceslist.html │ │ │ │ │ ├── frmresourcetype.html │ │ │ │ │ ├── frmupload.html │ │ │ │ │ ├── images │ │ │ │ │ ├── ButtonArrow.gif │ │ │ │ │ ├── Folder.gif │ │ │ │ │ ├── Folder32.gif │ │ │ │ │ ├── FolderOpened.gif │ │ │ │ │ ├── FolderOpened32.gif │ │ │ │ │ ├── FolderUp.gif │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── 32 │ │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ │ ├── htm.gif │ │ │ │ │ │ │ ├── html.gif │ │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ │ ├── png.gif │ │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ │ └── zip.gif │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ ├── htm.gif │ │ │ │ │ │ ├── html.gif │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ ├── png.gif │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ └── zip.gif │ │ │ │ │ └── spacer.gif │ │ │ │ │ └── js │ │ │ │ │ ├── common.js │ │ │ │ │ └── fckxml.js │ │ │ └── connectors │ │ │ │ └── php │ │ │ │ ├── basexml.php │ │ │ │ ├── commands.php │ │ │ │ ├── config.php │ │ │ │ ├── connector.php │ │ │ │ ├── io.php │ │ │ │ ├── phpcompat.php │ │ │ │ ├── upload.php │ │ │ │ └── util.php │ │ ├── images │ │ │ ├── anchor.gif │ │ │ ├── arrow_ltr.gif │ │ │ ├── arrow_rtl.gif │ │ │ ├── smiley │ │ │ │ └── msn │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── cake.gif │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ └── wink_smile.gif │ │ │ └── spacer.gif │ │ ├── js │ │ │ ├── fckadobeair.js │ │ │ ├── fckeditorcode_gecko.js │ │ │ └── fckeditorcode_ie.js │ │ ├── lang │ │ │ ├── _translationstatus.txt │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-uk.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── autogrow │ │ │ │ └── fckplugin.js │ │ │ ├── bbcode │ │ │ │ ├── _sample │ │ │ │ │ ├── sample.config.js │ │ │ │ │ └── sample.html │ │ │ │ └── fckplugin.js │ │ │ ├── dragresizetable │ │ │ │ └── fckplugin.js │ │ │ ├── placeholder │ │ │ │ ├── fck_placeholder.html │ │ │ │ ├── fckplugin.js │ │ │ │ ├── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── it.js │ │ │ │ │ └── pl.js │ │ │ │ └── placeholder.gif │ │ │ ├── simplecommands │ │ │ │ └── fckplugin.js │ │ │ └── tablecommands │ │ │ │ └── fckplugin.js │ │ ├── skins │ │ │ ├── _fckviewstrips.html │ │ │ ├── default │ │ │ │ ├── fck_dialog.css │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ ├── fck_editor.css │ │ │ │ ├── fck_strip.gif │ │ │ │ └── images │ │ │ │ │ ├── dialog.sides.gif │ │ │ │ │ ├── dialog.sides.png │ │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ │ ├── sprites.gif │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ │ ├── toolbar.end.gif │ │ │ │ │ ├── toolbar.expand.gif │ │ │ │ │ ├── toolbar.separator.gif │ │ │ │ │ └── toolbar.start.gif │ │ │ ├── office2003 │ │ │ │ ├── fck_dialog.css │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ ├── fck_editor.css │ │ │ │ ├── fck_strip.gif │ │ │ │ └── images │ │ │ │ │ ├── dialog.sides.gif │ │ │ │ │ ├── dialog.sides.png │ │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ │ ├── sprites.gif │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ │ ├── toolbar.bg.gif │ │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ │ ├── toolbar.end.gif │ │ │ │ │ ├── toolbar.expand.gif │ │ │ │ │ ├── toolbar.separator.gif │ │ │ │ │ └── toolbar.start.gif │ │ │ └── silver │ │ │ │ ├── fck_dialog.css │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ ├── fck_editor.css │ │ │ │ ├── fck_strip.gif │ │ │ │ └── images │ │ │ │ ├── dialog.sides.gif │ │ │ │ ├── dialog.sides.png │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ ├── sprites.gif │ │ │ │ ├── sprites.png │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ ├── toolbar.buttonbg.gif │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ ├── toolbar.end.gif │ │ │ │ ├── toolbar.expand.gif │ │ │ │ ├── toolbar.separator.gif │ │ │ │ └── toolbar.start.gif │ │ └── wsc │ │ │ ├── ciframe.html │ │ │ ├── tmpFrameset.html │ │ │ └── w.html │ ├── fckconfig.js │ ├── fckeditor.js │ ├── fckeditor.php │ ├── fckeditor_php4.php │ ├── fckeditor_php5.php │ ├── fckpackager.xml │ ├── fckstyles.xml │ ├── fcktemplates.xml │ └── fckutils.cfm │ ├── gpl-2.0.txt │ ├── highlight │ ├── scripts │ │ ├── shAutoloader.js │ │ ├── shBrushAS3.js │ │ ├── shBrushAppleScript.js │ │ ├── shBrushBash.js │ │ ├── shBrushCSharp.js │ │ ├── shBrushColdFusion.js │ │ ├── shBrushCpp.js │ │ ├── shBrushCss.js │ │ ├── shBrushDelphi.js │ │ ├── shBrushDiff.js │ │ ├── shBrushErlang.js │ │ ├── shBrushGroovy.js │ │ ├── shBrushJScript.js │ │ ├── shBrushJava.js │ │ ├── shBrushJavaFX.js │ │ ├── shBrushPerl.js │ │ ├── shBrushPhp.js │ │ ├── shBrushPlain.js │ │ ├── shBrushPowerShell.js │ │ ├── shBrushPython.js │ │ ├── shBrushRuby.js │ │ ├── shBrushSass.js │ │ ├── shBrushScala.js │ │ ├── shBrushSql.js │ │ ├── shBrushVb.js │ │ ├── shBrushXml.js │ │ ├── shCore.js │ │ └── shLegacy.js │ └── styles │ │ ├── help.png │ │ ├── magnifier.png │ │ ├── page_white_code.png │ │ ├── page_white_copy.png │ │ ├── printer.png │ │ ├── shCore.css │ │ ├── shCoreDefault.css │ │ ├── shCoreDjango.css │ │ ├── shCoreEclipse.css │ │ ├── shCoreEmacs.css │ │ ├── shCoreFadeToGrey.css │ │ ├── shCoreMDUltra.css │ │ ├── shCoreMidnight.css │ │ ├── shCoreRDark.css │ │ ├── shThemeDefault.css │ │ ├── shThemeDjango.css │ │ ├── shThemeEclipse.css │ │ ├── shThemeEmacs.css │ │ ├── shThemeFadeToGrey.css │ │ ├── shThemeMDUltra.css │ │ ├── shThemeMidnight.css │ │ └── shThemeRDark.css │ ├── image │ ├── background.jpg │ ├── content.png │ ├── loader.gif │ ├── logo.png │ └── menu_bg.png │ ├── include │ ├── QQWry.Dat │ ├── Vera.ttf │ ├── cache_end.php │ ├── cache_start.php │ ├── check_get_key.php │ ├── check_post_key.php │ ├── checksource.js │ ├── const.inc.php │ ├── dark.css │ ├── db_info.inc.php │ ├── gcode.css │ ├── hoj.css │ ├── iplocation.php │ ├── login-discuz.php │ ├── login-hustoj.php │ ├── login-ldap.php │ ├── login-moodle.php │ ├── memcache.php │ ├── my_func.inc.php │ ├── online.php │ ├── pie.js │ ├── problem.php │ ├── profile.php │ ├── set_get_key.php │ ├── set_post_key.php │ ├── setlang.php │ ├── simple_html_dom.php │ ├── sortTable.js │ ├── underlineTranslation.js │ └── wz_jsgraphics.js │ ├── index.php │ ├── lang │ ├── cn.php │ ├── en.php │ ├── fa.php │ ├── ko.php │ └── th.php │ ├── login.php │ ├── login_qq.php │ ├── login_renren.php │ ├── login_weibo.php │ ├── loginpage.php │ ├── logout.php │ ├── lostpassword.php │ ├── lostpassword2.php │ ├── mail.php │ ├── modify.php │ ├── modifypage.php │ ├── oj-footer.php │ ├── oj-header.php │ ├── online.php │ ├── problem.php │ ├── problemset.php │ ├── problemstatus.php │ ├── ranklist.php │ ├── recent-contest.php │ ├── register.php │ ├── registerpage.php │ ├── reinfo.php │ ├── sae │ ├── db.sql │ └── install.php │ ├── sae_app_wizard.xml │ ├── setlang.php │ ├── showsource.php │ ├── status-ajax.php │ ├── status.php │ ├── submit.php │ ├── submitpage.php │ ├── template │ ├── bs │ │ ├── ceinfo.php │ │ ├── contest.php │ │ ├── contestrank.php │ │ ├── contestset.php │ │ ├── conteststatistics.php │ │ ├── conteststatus.php │ │ ├── error.php │ │ ├── faqs.cn.php │ │ ├── faqs.php │ │ ├── hoj.css │ │ ├── image │ │ │ ├── Thumbs.db │ │ │ ├── background.jpg │ │ │ ├── content.png │ │ │ ├── logo.png │ │ │ └── menu_bg.png │ │ ├── index.php │ │ ├── loginpage.php │ │ ├── lostpassword.php │ │ ├── lostpassword2.php │ │ ├── mail.php │ │ ├── modifypage.php │ │ ├── oj-footer.php │ │ ├── oj-header.php │ │ ├── online.php │ │ ├── problem.php │ │ ├── problemset.php │ │ ├── problemstatus.php │ │ ├── ranklist.php │ │ ├── recent-contest.php │ │ ├── registerpage.php │ │ ├── reinfo.php │ │ ├── showsource.php │ │ ├── status.php │ │ ├── submitpage.php │ │ └── userinfo.php │ └── classic │ │ ├── ceinfo.php │ │ ├── contest.php │ │ ├── contestrank.php │ │ ├── contestset.php │ │ ├── conteststatistics.php │ │ ├── conteststatus.php │ │ ├── error.php │ │ ├── faqs.cn.php │ │ ├── faqs.php │ │ ├── hoj.css │ │ ├── image │ │ ├── background.jpg │ │ ├── content.png │ │ ├── logo.png │ │ └── menu_bg.png │ │ ├── index.php │ │ ├── loginpage.php │ │ ├── lostpassword.php │ │ ├── lostpassword2.php │ │ ├── mail.php │ │ ├── modifypage.php │ │ ├── oj-footer.php │ │ ├── oj-header.php │ │ ├── online.php │ │ ├── problem.php │ │ ├── problemset.php │ │ ├── problemstatus.php │ │ ├── ranklist.php │ │ ├── recent-contest.php │ │ ├── registerpage.php │ │ ├── reinfo.php │ │ ├── showsource.php │ │ ├── status.php │ │ ├── submitpage.php │ │ └── userinfo.php │ ├── userinfo.php │ └── vcode.php ├── branches ├── template-alpha │ ├── admin │ │ ├── admin-header.php │ │ ├── changepass.php │ │ ├── contest_add.php │ │ ├── contest_df_change.php │ │ ├── contest_edit.php │ │ ├── contest_list.php │ │ ├── contest_pr_change.php │ │ ├── index.php │ │ ├── menu.php │ │ ├── moodle_judge.php │ │ ├── msg.txt │ │ ├── news_add.php │ │ ├── news_add_page.php │ │ ├── news_df_change.php │ │ ├── news_edit.php │ │ ├── news_list.php │ │ ├── privilege_add.php │ │ ├── privilege_delete.php │ │ ├── privilege_list.php │ │ ├── problem_add.php │ │ ├── problem_add_page.php │ │ ├── problem_add_page_hdu.php │ │ ├── problem_add_page_pku.php │ │ ├── problem_add_page_waterloo.php │ │ ├── problem_changeid.php │ │ ├── problem_copy.php │ │ ├── problem_del.php │ │ ├── problem_df_change.php │ │ ├── problem_edit.php │ │ ├── problem_export.php │ │ ├── problem_export_xml.php │ │ ├── problem_import.php │ │ ├── problem_import_xml.php │ │ ├── problem_judge.php │ │ ├── problem_list.php │ │ ├── quixplorer │ │ │ ├── .config │ │ │ │ ├── .htaccess │ │ │ │ ├── .htusers.php │ │ │ │ ├── conf.php │ │ │ │ └── mimes.php │ │ │ ├── .include │ │ │ │ ├── .htaccess │ │ │ │ ├── error.php │ │ │ │ ├── footer.php │ │ │ │ ├── fun_admin.php │ │ │ │ ├── fun_archive.php │ │ │ │ ├── fun_chmod.php │ │ │ │ ├── fun_copy_move.php │ │ │ │ ├── fun_del.php │ │ │ │ ├── fun_down.php │ │ │ │ ├── fun_edit.php │ │ │ │ ├── fun_extra.php │ │ │ │ ├── fun_list.php │ │ │ │ ├── fun_mkitem.php │ │ │ │ ├── fun_search.php │ │ │ │ ├── fun_up.php │ │ │ │ ├── header.php │ │ │ │ ├── init.php │ │ │ │ ├── javascript.php │ │ │ │ ├── js_admin.php │ │ │ │ ├── js_admin2.php │ │ │ │ ├── js_admin3.php │ │ │ │ ├── login.php │ │ │ │ ├── permissions.php │ │ │ │ └── user.php │ │ │ ├── _img │ │ │ │ ├── _.gif │ │ │ │ ├── __copy.gif │ │ │ │ ├── __cut.gif │ │ │ │ ├── __paste.gif │ │ │ │ ├── _admin.gif │ │ │ │ ├── _archive.gif │ │ │ │ ├── _arrowdown.gif │ │ │ │ ├── _arrowup.gif │ │ │ │ ├── _copy.gif │ │ │ │ ├── _copy_.gif │ │ │ │ ├── _delete.gif │ │ │ │ ├── _delete_.gif │ │ │ │ ├── _download.gif │ │ │ │ ├── _download_.gif │ │ │ │ ├── _edit.gif │ │ │ │ ├── _edit_.gif │ │ │ │ ├── _home.gif │ │ │ │ ├── _info.gif │ │ │ │ ├── _logout.gif │ │ │ │ ├── _move.gif │ │ │ │ ├── _move_.gif │ │ │ │ ├── _refresh.gif │ │ │ │ ├── _search.gif │ │ │ │ ├── _up.gif │ │ │ │ ├── _upload.gif │ │ │ │ ├── _upload_.gif │ │ │ │ ├── cpp.gif │ │ │ │ ├── dir.gif │ │ │ │ ├── exe.gif │ │ │ │ ├── file.gif │ │ │ │ ├── flash.gif │ │ │ │ ├── h.gif │ │ │ │ ├── html.gif │ │ │ │ ├── image.gif │ │ │ │ ├── java.gif │ │ │ │ ├── js.gif │ │ │ │ ├── midi.gif │ │ │ │ ├── mp3.gif │ │ │ │ ├── pdf.gif │ │ │ │ ├── php.gif │ │ │ │ ├── pl.gif │ │ │ │ ├── real.gif │ │ │ │ ├── sound.gif │ │ │ │ ├── spread.gif │ │ │ │ ├── src.gif │ │ │ │ ├── tar.gif │ │ │ │ ├── tgz.gif │ │ │ │ ├── txt.gif │ │ │ │ ├── video.gif │ │ │ │ ├── word.gif │ │ │ │ └── zip.gif │ │ │ ├── _lang │ │ │ │ ├── _info.php │ │ │ │ ├── bg.php │ │ │ │ ├── bg_mimes.php │ │ │ │ ├── cs.php │ │ │ │ ├── cs_mimes.php │ │ │ │ ├── da.php │ │ │ │ ├── da_mimes.php │ │ │ │ ├── de.php │ │ │ │ ├── de_mimes.php │ │ │ │ ├── en.php │ │ │ │ ├── en_mimes.php │ │ │ │ ├── es.php │ │ │ │ ├── es_mimes.php │ │ │ │ ├── fr.php │ │ │ │ ├── fr_mimes.php │ │ │ │ ├── it.php │ │ │ │ ├── it_mimes.php │ │ │ │ ├── nl.php │ │ │ │ ├── nl_mimes.php │ │ │ │ ├── pl.php │ │ │ │ ├── pl_mimes.php │ │ │ │ ├── ptbr.php │ │ │ │ ├── ptbr_mimes.php │ │ │ │ ├── ro.php │ │ │ │ ├── ro_mimes.php │ │ │ │ ├── ru.php │ │ │ │ └── ru_mimes.php │ │ │ ├── _lib │ │ │ │ └── lib_zip.php │ │ │ ├── _style │ │ │ │ ├── style.css │ │ │ │ └── tablebg.gif │ │ │ ├── index.php │ │ │ ├── license.txt │ │ │ ├── permissions.txt │ │ │ ├── readme.txt │ │ │ └── release.txt │ │ ├── rejudge.php │ │ ├── setmsg.php │ │ ├── source_give.php │ │ ├── team_generate.php │ │ ├── update_db.php │ │ └── update_pw.php │ ├── bbs.php │ ├── bbs │ │ └── README │ ├── ceinfo.php │ ├── contest-header.php │ ├── contest.php │ ├── contestrank.php │ ├── contestrank.xls.php │ ├── conteststatistics.php │ ├── discuss │ │ ├── contest-header.php │ │ ├── discuss.php │ │ ├── discuss.sql │ │ ├── discuss_func.inc.php │ │ ├── hoj.css │ │ ├── index.php │ │ ├── newpost.php │ │ ├── oj-header.php │ │ ├── post.php │ │ ├── superthread.php │ │ ├── thread.php │ │ └── threadadmin.php │ ├── edit_area │ │ ├── autocompletion.js │ │ ├── edit_area.css │ │ ├── edit_area.js │ │ ├── edit_area_compressor.php │ │ ├── edit_area_full.gz │ │ ├── edit_area_full.js │ │ ├── edit_area_functions.js │ │ ├── edit_area_loader.js │ │ ├── elements_functions.js │ │ ├── highlight.js │ │ ├── images │ │ │ ├── autocompletion.gif │ │ │ ├── close.gif │ │ │ ├── fullscreen.gif │ │ │ ├── go_to_line.gif │ │ │ ├── help.gif │ │ │ ├── highlight.gif │ │ │ ├── load.gif │ │ │ ├── move.gif │ │ │ ├── newdocument.gif │ │ │ ├── opacity.png │ │ │ ├── processing.gif │ │ │ ├── redo.gif │ │ │ ├── reset_highlight.gif │ │ │ ├── save.gif │ │ │ ├── search.gif │ │ │ ├── smooth_selection.gif │ │ │ ├── spacer.gif │ │ │ ├── statusbar_resize.gif │ │ │ ├── undo.gif │ │ │ └── word_wrap.gif │ │ ├── keyboard.js │ │ ├── langs │ │ │ ├── bg.js │ │ │ ├── cs.js │ │ │ ├── de.js │ │ │ ├── dk.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── hr.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── mk.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ └── zh.js │ │ ├── license_apache.txt │ │ ├── license_bsd.txt │ │ ├── license_lgpl.txt │ │ ├── manage_area.js │ │ ├── plugins │ │ │ ├── charmap │ │ │ │ ├── charmap.js │ │ │ │ ├── css │ │ │ │ │ └── charmap.css │ │ │ │ ├── images │ │ │ │ │ └── charmap.gif │ │ │ │ ├── jscripts │ │ │ │ │ └── map.js │ │ │ │ ├── langs │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dk.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ └── zh.js │ │ │ │ └── popup.html │ │ │ └── test │ │ │ │ ├── css │ │ │ │ └── test.css │ │ │ │ ├── images │ │ │ │ ├── Thumbs.db │ │ │ │ └── test.gif │ │ │ │ ├── langs │ │ │ │ ├── bg.js │ │ │ │ ├── cs.js │ │ │ │ ├── de.js │ │ │ │ ├── dk.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── fr.js │ │ │ │ ├── hr.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── mk.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ └── zh.js │ │ │ │ ├── test.js │ │ │ │ └── test2.js │ │ ├── reg_syntax.js │ │ ├── reg_syntax │ │ │ ├── basic.js │ │ │ ├── brainfuck.js │ │ │ ├── c.js │ │ │ ├── coldfusion.js │ │ │ ├── cpp.js │ │ │ ├── css.js │ │ │ ├── html.js │ │ │ ├── java.js │ │ │ ├── js.js │ │ │ ├── pas.js │ │ │ ├── perl.js │ │ │ ├── php.js │ │ │ ├── python.js │ │ │ ├── robotstxt.js │ │ │ ├── ruby.js │ │ │ ├── sql.js │ │ │ ├── tsql.js │ │ │ ├── vb.js │ │ │ └── xml.js │ │ ├── regexp.js │ │ ├── resize_area.js │ │ ├── search_replace.js │ │ └── template.html │ ├── export_ac_code.php │ ├── faqs.cn.php │ ├── faqs.ko.php │ ├── faqs.php │ ├── fckeditor │ │ ├── editor │ │ │ ├── css │ │ │ │ ├── behaviors │ │ │ │ │ ├── disablehandles.htc │ │ │ │ │ └── showtableborders.htc │ │ │ │ ├── fck_editorarea.css │ │ │ │ ├── fck_internal.css │ │ │ │ ├── fck_showtableborders_gecko.css │ │ │ │ └── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ ├── block_pre.png │ │ │ │ │ ├── fck_anchor.gif │ │ │ │ │ ├── fck_flashlogo.gif │ │ │ │ │ ├── fck_hiddenfield.gif │ │ │ │ │ ├── fck_pagebreak.gif │ │ │ │ │ └── fck_plugin.gif │ │ │ ├── dialog │ │ │ │ ├── common │ │ │ │ │ ├── fck_dialog_common.css │ │ │ │ │ ├── fck_dialog_common.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── locked.gif │ │ │ │ │ │ ├── reset.gif │ │ │ │ │ │ └── unlocked.gif │ │ │ │ ├── fck_about.html │ │ │ │ ├── fck_about │ │ │ │ │ ├── logo_fckeditor.gif │ │ │ │ │ ├── logo_fredck.gif │ │ │ │ │ └── sponsors │ │ │ │ │ │ └── spellchecker_net.gif │ │ │ │ ├── fck_anchor.html │ │ │ │ ├── fck_button.html │ │ │ │ ├── fck_checkbox.html │ │ │ │ ├── fck_colorselector.html │ │ │ │ ├── fck_div.html │ │ │ │ ├── fck_docprops.html │ │ │ │ ├── fck_docprops │ │ │ │ │ └── fck_document_preview.html │ │ │ │ ├── fck_flash.html │ │ │ │ ├── fck_flash │ │ │ │ │ ├── fck_flash.js │ │ │ │ │ └── fck_flash_preview.html │ │ │ │ ├── fck_form.html │ │ │ │ ├── fck_hiddenfield.html │ │ │ │ ├── fck_image.html │ │ │ │ ├── fck_image │ │ │ │ │ ├── fck_image.js │ │ │ │ │ └── fck_image_preview.html │ │ │ │ ├── fck_link.html │ │ │ │ ├── fck_link │ │ │ │ │ └── fck_link.js │ │ │ │ ├── fck_listprop.html │ │ │ │ ├── fck_paste.html │ │ │ │ ├── fck_radiobutton.html │ │ │ │ ├── fck_replace.html │ │ │ │ ├── fck_scayt.html │ │ │ │ ├── fck_scayt │ │ │ │ │ └── scayt_dialog.css │ │ │ │ ├── fck_select.html │ │ │ │ ├── fck_select │ │ │ │ │ └── fck_select.js │ │ │ │ ├── fck_smiley.html │ │ │ │ ├── fck_source.html │ │ │ │ ├── fck_specialchar.html │ │ │ │ ├── fck_spellerpages.html │ │ │ │ ├── fck_spellerpages │ │ │ │ │ └── spellerpages │ │ │ │ │ │ ├── blank.html │ │ │ │ │ │ ├── controlWindow.js │ │ │ │ │ │ ├── controls.html │ │ │ │ │ │ ├── server-scripts │ │ │ │ │ │ ├── spellchecker.cfm │ │ │ │ │ │ ├── spellchecker.php │ │ │ │ │ │ └── spellchecker.pl │ │ │ │ │ │ ├── spellChecker.js │ │ │ │ │ │ ├── spellchecker.html │ │ │ │ │ │ ├── spellerStyle.css │ │ │ │ │ │ └── wordWindow.js │ │ │ │ ├── fck_table.html │ │ │ │ ├── fck_tablecell.html │ │ │ │ ├── fck_template.html │ │ │ │ ├── fck_template │ │ │ │ │ └── images │ │ │ │ │ │ ├── template1.gif │ │ │ │ │ │ ├── template2.gif │ │ │ │ │ │ └── template3.gif │ │ │ │ ├── fck_textarea.html │ │ │ │ └── fck_textfield.html │ │ │ ├── dtd │ │ │ │ ├── fck_dtd_test.html │ │ │ │ ├── fck_xhtml10strict.js │ │ │ │ └── fck_xhtml10transitional.js │ │ │ ├── fckdebug.html │ │ │ ├── fckdialog.html │ │ │ ├── fckeditor.html │ │ │ ├── fckeditor.original.html │ │ │ ├── filemanager │ │ │ │ ├── browser │ │ │ │ │ └── default │ │ │ │ │ │ ├── browser.css │ │ │ │ │ │ ├── browser.html │ │ │ │ │ │ ├── frmactualfolder.html │ │ │ │ │ │ ├── frmcreatefolder.html │ │ │ │ │ │ ├── frmfolders.html │ │ │ │ │ │ ├── frmresourceslist.html │ │ │ │ │ │ ├── frmresourcetype.html │ │ │ │ │ │ ├── frmupload.html │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ButtonArrow.gif │ │ │ │ │ │ ├── Folder.gif │ │ │ │ │ │ ├── Folder32.gif │ │ │ │ │ │ ├── FolderOpened.gif │ │ │ │ │ │ ├── FolderOpened32.gif │ │ │ │ │ │ ├── FolderUp.gif │ │ │ │ │ │ ├── icons │ │ │ │ │ │ │ ├── 32 │ │ │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ │ │ ├── htm.gif │ │ │ │ │ │ │ │ ├── html.gif │ │ │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ │ │ ├── png.gif │ │ │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ │ │ └── zip.gif │ │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ │ ├── htm.gif │ │ │ │ │ │ │ ├── html.gif │ │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ │ ├── png.gif │ │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ │ └── zip.gif │ │ │ │ │ │ └── spacer.gif │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ └── fckxml.js │ │ │ │ └── connectors │ │ │ │ │ └── php │ │ │ │ │ ├── basexml.php │ │ │ │ │ ├── commands.php │ │ │ │ │ ├── config.php │ │ │ │ │ ├── connector.php │ │ │ │ │ ├── io.php │ │ │ │ │ ├── phpcompat.php │ │ │ │ │ ├── upload.php │ │ │ │ │ └── util.php │ │ │ ├── images │ │ │ │ ├── anchor.gif │ │ │ │ ├── arrow_ltr.gif │ │ │ │ ├── arrow_rtl.gif │ │ │ │ ├── smiley │ │ │ │ │ └── msn │ │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ │ ├── cake.gif │ │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ │ ├── envelope.gif │ │ │ │ │ │ ├── heart.gif │ │ │ │ │ │ ├── kiss.gif │ │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ │ └── wink_smile.gif │ │ │ │ └── spacer.gif │ │ │ ├── js │ │ │ │ ├── fckadobeair.js │ │ │ │ ├── fckeditorcode_gecko.js │ │ │ │ └── fckeditorcode_ie.js │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-uk.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ ├── plugins │ │ │ │ ├── autogrow │ │ │ │ │ └── fckplugin.js │ │ │ │ ├── bbcode │ │ │ │ │ ├── _sample │ │ │ │ │ │ ├── sample.config.js │ │ │ │ │ │ └── sample.html │ │ │ │ │ └── fckplugin.js │ │ │ │ ├── dragresizetable │ │ │ │ │ └── fckplugin.js │ │ │ │ ├── placeholder │ │ │ │ │ ├── fck_placeholder.html │ │ │ │ │ ├── fckplugin.js │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ └── pl.js │ │ │ │ │ └── placeholder.gif │ │ │ │ ├── simplecommands │ │ │ │ │ └── fckplugin.js │ │ │ │ └── tablecommands │ │ │ │ │ └── fckplugin.js │ │ │ ├── skins │ │ │ │ ├── _fckviewstrips.html │ │ │ │ ├── default │ │ │ │ │ ├── fck_dialog.css │ │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ │ ├── fck_editor.css │ │ │ │ │ ├── fck_strip.gif │ │ │ │ │ └── images │ │ │ │ │ │ ├── dialog.sides.gif │ │ │ │ │ │ ├── dialog.sides.png │ │ │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ │ │ ├── sprites.gif │ │ │ │ │ │ ├── sprites.png │ │ │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ │ │ ├── toolbar.end.gif │ │ │ │ │ │ ├── toolbar.expand.gif │ │ │ │ │ │ ├── toolbar.separator.gif │ │ │ │ │ │ └── toolbar.start.gif │ │ │ │ ├── office2003 │ │ │ │ │ ├── fck_dialog.css │ │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ │ ├── fck_editor.css │ │ │ │ │ ├── fck_strip.gif │ │ │ │ │ └── images │ │ │ │ │ │ ├── dialog.sides.gif │ │ │ │ │ │ ├── dialog.sides.png │ │ │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ │ │ ├── sprites.gif │ │ │ │ │ │ ├── sprites.png │ │ │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ │ │ ├── toolbar.bg.gif │ │ │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ │ │ ├── toolbar.end.gif │ │ │ │ │ │ ├── toolbar.expand.gif │ │ │ │ │ │ ├── toolbar.separator.gif │ │ │ │ │ │ └── toolbar.start.gif │ │ │ │ └── silver │ │ │ │ │ ├── fck_dialog.css │ │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ │ ├── fck_editor.css │ │ │ │ │ ├── fck_strip.gif │ │ │ │ │ └── images │ │ │ │ │ ├── dialog.sides.gif │ │ │ │ │ ├── dialog.sides.png │ │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ │ ├── sprites.gif │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ │ ├── toolbar.buttonbg.gif │ │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ │ ├── toolbar.end.gif │ │ │ │ │ ├── toolbar.expand.gif │ │ │ │ │ ├── toolbar.separator.gif │ │ │ │ │ └── toolbar.start.gif │ │ │ └── wsc │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ └── w.html │ │ ├── fckconfig.js │ │ ├── fckeditor.js │ │ ├── fckeditor.php │ │ ├── fckeditor_php4.php │ │ ├── fckeditor_php5.php │ │ ├── fckpackager.xml │ │ ├── fckstyles.xml │ │ ├── fcktemplates.xml │ │ └── fckutils.cfm │ ├── gpl-2.0.txt │ ├── highlight │ │ ├── scripts │ │ │ ├── shAutoloader.js │ │ │ ├── shBrushAS3.js │ │ │ ├── shBrushAppleScript.js │ │ │ ├── shBrushBash.js │ │ │ ├── shBrushCSharp.js │ │ │ ├── shBrushColdFusion.js │ │ │ ├── shBrushCpp.js │ │ │ ├── shBrushCss.js │ │ │ ├── shBrushDelphi.js │ │ │ ├── shBrushDiff.js │ │ │ ├── shBrushErlang.js │ │ │ ├── shBrushGroovy.js │ │ │ ├── shBrushJScript.js │ │ │ ├── shBrushJava.js │ │ │ ├── shBrushJavaFX.js │ │ │ ├── shBrushPerl.js │ │ │ ├── shBrushPhp.js │ │ │ ├── shBrushPlain.js │ │ │ ├── shBrushPowerShell.js │ │ │ ├── shBrushPython.js │ │ │ ├── shBrushRuby.js │ │ │ ├── shBrushSass.js │ │ │ ├── shBrushScala.js │ │ │ ├── shBrushSql.js │ │ │ ├── shBrushVb.js │ │ │ ├── shBrushXml.js │ │ │ ├── shCore.js │ │ │ └── shLegacy.js │ │ └── styles │ │ │ ├── help.png │ │ │ ├── magnifier.png │ │ │ ├── page_white_code.png │ │ │ ├── page_white_copy.png │ │ │ ├── printer.png │ │ │ ├── shCore.css │ │ │ ├── shCoreDefault.css │ │ │ ├── shCoreDjango.css │ │ │ ├── shCoreEclipse.css │ │ │ ├── shCoreEmacs.css │ │ │ ├── shCoreFadeToGrey.css │ │ │ ├── shCoreMDUltra.css │ │ │ ├── shCoreMidnight.css │ │ │ ├── shCoreRDark.css │ │ │ ├── shThemeDefault.css │ │ │ ├── shThemeDjango.css │ │ │ ├── shThemeEclipse.css │ │ │ ├── shThemeEmacs.css │ │ │ ├── shThemeFadeToGrey.css │ │ │ ├── shThemeMDUltra.css │ │ │ ├── shThemeMidnight.css │ │ │ └── shThemeRDark.css │ ├── image │ │ ├── background.jpg │ │ ├── content.png │ │ ├── logo.png │ │ └── menu_bg.png │ ├── include │ │ ├── QQWry.Dat │ │ ├── Vera.ttf │ │ ├── cache_end.php │ │ ├── cache_start.php │ │ ├── check_get_key.php │ │ ├── check_post_key.php │ │ ├── checksource.js │ │ ├── const.inc.php │ │ ├── dark.css │ │ ├── db_info.inc.php │ │ ├── gcode.css │ │ ├── hoj.css │ │ ├── iplocation.php │ │ ├── memcache.php │ │ ├── my_func.inc.php │ │ ├── online.php │ │ ├── pie.js │ │ ├── problem.php │ │ ├── profile.php │ │ ├── set_get_key.php │ │ ├── set_post_key.php │ │ ├── setlang.php │ │ ├── simple_html_dom.php │ │ ├── sortTable.js │ │ ├── underlineTranslation.js │ │ └── wz_jsgraphics.js │ ├── index.php │ ├── lang │ │ ├── cn.php │ │ ├── en.php │ │ ├── fa.php │ │ ├── ko.php │ │ └── th.php │ ├── login.php │ ├── loginpage.php │ ├── logout.php │ ├── mail.php │ ├── modify.php │ ├── modifypage.php │ ├── oj-footer.php │ ├── oj-header.php │ ├── online.php │ ├── problem.php │ ├── problemset.php │ ├── problemstatus.php │ ├── ranklist.php │ ├── recent-contest.php │ ├── register.php │ ├── registerpage.php │ ├── reinfo.php │ ├── sae │ │ ├── db.sql │ │ └── install.php │ ├── setlang.php │ ├── showsource.php │ ├── status.php │ ├── submit.php │ ├── submitpage.php │ ├── template │ │ ├── classic │ │ │ ├── ceinfo.php │ │ │ ├── contest.php │ │ │ ├── contestrank.php │ │ │ ├── contestset.php │ │ │ ├── conteststatistics.php │ │ │ ├── conteststatus.php │ │ │ ├── error.php │ │ │ ├── faqs.cn.php │ │ │ ├── faqs.php │ │ │ ├── hoj.css │ │ │ ├── image │ │ │ │ ├── background.jpg │ │ │ │ ├── content.png │ │ │ │ ├── logo.png │ │ │ │ └── menu_bg.png │ │ │ ├── index.php │ │ │ ├── loginpage.php │ │ │ ├── mail.php │ │ │ ├── modifypage.php │ │ │ ├── oj-footer.php │ │ │ ├── oj-header.php │ │ │ ├── online.php │ │ │ ├── problem.php │ │ │ ├── problemset.php │ │ │ ├── problemstatus.php │ │ │ ├── ranklist.php │ │ │ ├── recent-contest.php │ │ │ ├── registerpage.php │ │ │ ├── reinfo.php │ │ │ ├── showsource.php │ │ │ ├── status.php │ │ │ ├── submitpage.php │ │ │ └── userinfo.php │ │ └── mario │ │ │ ├── ceinfo.php │ │ │ ├── contest.php │ │ │ ├── contestrank.php │ │ │ ├── contestset.php │ │ │ ├── conteststatistics.php │ │ │ ├── conteststatus.php │ │ │ ├── error.php │ │ │ ├── faqs.cn.php │ │ │ ├── faqs.php │ │ │ ├── hoj.css │ │ │ ├── image │ │ │ ├── background.jpg │ │ │ ├── banner.jpg │ │ │ ├── bbs.png │ │ │ ├── ce.png │ │ │ ├── content.png │ │ │ ├── contest.png │ │ │ ├── faq.png │ │ │ ├── home.png │ │ │ ├── logo.png │ │ │ ├── menu_bg.png │ │ │ ├── pe.png │ │ │ ├── problemset.png │ │ │ ├── rank.png │ │ │ ├── recent.png │ │ │ ├── star.png │ │ │ ├── status.png │ │ │ └── time.png │ │ │ ├── index.php │ │ │ ├── loginpage.php │ │ │ ├── mail.php │ │ │ ├── modifypage.php │ │ │ ├── oj-footer.php │ │ │ ├── oj-header.php │ │ │ ├── online.php │ │ │ ├── problem.php │ │ │ ├── problemset.php │ │ │ ├── problemstatus.php │ │ │ ├── ranklist.php │ │ │ ├── recent-contest.php │ │ │ ├── registerpage.php │ │ │ ├── reinfo.php │ │ │ ├── showsource.php │ │ │ ├── status.php │ │ │ ├── submitpage.php │ │ │ └── userinfo.php │ ├── userinfo.php │ └── vcode.php └── template-beta │ ├── admin │ ├── admin-header.php │ ├── changepass.php │ ├── contest_add.php │ ├── contest_df_change.php │ ├── contest_edit.php │ ├── contest_list.php │ ├── contest_pr_change.php │ ├── index.php │ ├── menu.php │ ├── moodle_judge.php │ ├── msg.txt │ ├── news_add.php │ ├── news_add_page.php │ ├── news_df_change.php │ ├── news_edit.php │ ├── news_list.php │ ├── privilege_add.php │ ├── privilege_delete.php │ ├── privilege_list.php │ ├── problem_add.php │ ├── problem_add_page.php │ ├── problem_add_page_hdu.php │ ├── problem_add_page_pku.php │ ├── problem_add_page_waterloo.php │ ├── problem_changeid.php │ ├── problem_copy.php │ ├── problem_del.php │ ├── problem_df_change.php │ ├── problem_edit.php │ ├── problem_export.php │ ├── problem_export_xml.php │ ├── problem_import.php │ ├── problem_import_xml.php │ ├── problem_judge.php │ ├── problem_list.php │ ├── quixplorer │ │ ├── .config │ │ │ ├── .htaccess │ │ │ ├── .htusers.php │ │ │ ├── conf.php │ │ │ └── mimes.php │ │ ├── .include │ │ │ ├── .htaccess │ │ │ ├── error.php │ │ │ ├── footer.php │ │ │ ├── fun_admin.php │ │ │ ├── fun_archive.php │ │ │ ├── fun_chmod.php │ │ │ ├── fun_copy_move.php │ │ │ ├── fun_del.php │ │ │ ├── fun_down.php │ │ │ ├── fun_edit.php │ │ │ ├── fun_extra.php │ │ │ ├── fun_list.php │ │ │ ├── fun_mkitem.php │ │ │ ├── fun_search.php │ │ │ ├── fun_up.php │ │ │ ├── header.php │ │ │ ├── init.php │ │ │ ├── javascript.php │ │ │ ├── js_admin.php │ │ │ ├── js_admin2.php │ │ │ ├── js_admin3.php │ │ │ ├── login.php │ │ │ ├── permissions.php │ │ │ └── user.php │ │ ├── _img │ │ │ ├── _.gif │ │ │ ├── __copy.gif │ │ │ ├── __cut.gif │ │ │ ├── __paste.gif │ │ │ ├── _admin.gif │ │ │ ├── _archive.gif │ │ │ ├── _arrowdown.gif │ │ │ ├── _arrowup.gif │ │ │ ├── _copy.gif │ │ │ ├── _copy_.gif │ │ │ ├── _delete.gif │ │ │ ├── _delete_.gif │ │ │ ├── _download.gif │ │ │ ├── _download_.gif │ │ │ ├── _edit.gif │ │ │ ├── _edit_.gif │ │ │ ├── _home.gif │ │ │ ├── _info.gif │ │ │ ├── _logout.gif │ │ │ ├── _move.gif │ │ │ ├── _move_.gif │ │ │ ├── _refresh.gif │ │ │ ├── _search.gif │ │ │ ├── _up.gif │ │ │ ├── _upload.gif │ │ │ ├── _upload_.gif │ │ │ ├── cpp.gif │ │ │ ├── dir.gif │ │ │ ├── exe.gif │ │ │ ├── file.gif │ │ │ ├── flash.gif │ │ │ ├── h.gif │ │ │ ├── html.gif │ │ │ ├── image.gif │ │ │ ├── java.gif │ │ │ ├── js.gif │ │ │ ├── midi.gif │ │ │ ├── mp3.gif │ │ │ ├── pdf.gif │ │ │ ├── php.gif │ │ │ ├── pl.gif │ │ │ ├── real.gif │ │ │ ├── sound.gif │ │ │ ├── spread.gif │ │ │ ├── src.gif │ │ │ ├── tar.gif │ │ │ ├── tgz.gif │ │ │ ├── txt.gif │ │ │ ├── video.gif │ │ │ ├── word.gif │ │ │ └── zip.gif │ │ ├── _lang │ │ │ ├── _info.php │ │ │ ├── bg.php │ │ │ ├── bg_mimes.php │ │ │ ├── cs.php │ │ │ ├── cs_mimes.php │ │ │ ├── da.php │ │ │ ├── da_mimes.php │ │ │ ├── de.php │ │ │ ├── de_mimes.php │ │ │ ├── en.php │ │ │ ├── en_mimes.php │ │ │ ├── es.php │ │ │ ├── es_mimes.php │ │ │ ├── fr.php │ │ │ ├── fr_mimes.php │ │ │ ├── it.php │ │ │ ├── it_mimes.php │ │ │ ├── nl.php │ │ │ ├── nl_mimes.php │ │ │ ├── pl.php │ │ │ ├── pl_mimes.php │ │ │ ├── ptbr.php │ │ │ ├── ptbr_mimes.php │ │ │ ├── ro.php │ │ │ ├── ro_mimes.php │ │ │ ├── ru.php │ │ │ └── ru_mimes.php │ │ ├── _lib │ │ │ └── lib_zip.php │ │ ├── _style │ │ │ ├── style.css │ │ │ └── tablebg.gif │ │ ├── index.php │ │ ├── license.txt │ │ ├── permissions.txt │ │ ├── readme.txt │ │ └── release.txt │ ├── rejudge.php │ ├── setmsg.php │ ├── source_give.php │ ├── team_generate.php │ ├── update_db.php │ └── update_pw.php │ ├── bbs.php │ ├── bbs │ └── README │ ├── ceinfo.php │ ├── contest-header.php │ ├── contest.php │ ├── contestrank.php │ ├── contestrank.xls.php │ ├── conteststatistics.php │ ├── discuss │ ├── contest-header.php │ ├── discuss.php │ ├── discuss.sql │ ├── discuss_func.inc.php │ ├── hoj.css │ ├── index.php │ ├── newpost.php │ ├── oj-header.php │ ├── post.php │ ├── superthread.php │ ├── thread.php │ └── threadadmin.php │ ├── edit_area │ ├── autocompletion.js │ ├── edit_area.css │ ├── edit_area.js │ ├── edit_area_compressor.php │ ├── edit_area_full.gz │ ├── edit_area_full.js │ ├── edit_area_functions.js │ ├── edit_area_loader.js │ ├── elements_functions.js │ ├── highlight.js │ ├── images │ │ ├── autocompletion.gif │ │ ├── close.gif │ │ ├── fullscreen.gif │ │ ├── go_to_line.gif │ │ ├── help.gif │ │ ├── highlight.gif │ │ ├── load.gif │ │ ├── move.gif │ │ ├── newdocument.gif │ │ ├── opacity.png │ │ ├── processing.gif │ │ ├── redo.gif │ │ ├── reset_highlight.gif │ │ ├── save.gif │ │ ├── search.gif │ │ ├── smooth_selection.gif │ │ ├── spacer.gif │ │ ├── statusbar_resize.gif │ │ ├── undo.gif │ │ └── word_wrap.gif │ ├── keyboard.js │ ├── langs │ │ ├── bg.js │ │ ├── cs.js │ │ ├── de.js │ │ ├── dk.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── hr.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── mk.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── pt.js │ │ ├── ru.js │ │ ├── sk.js │ │ └── zh.js │ ├── license_apache.txt │ ├── license_bsd.txt │ ├── license_lgpl.txt │ ├── manage_area.js │ ├── plugins │ │ ├── charmap │ │ │ ├── charmap.js │ │ │ ├── css │ │ │ │ └── charmap.css │ │ │ ├── images │ │ │ │ └── charmap.gif │ │ │ ├── jscripts │ │ │ │ └── map.js │ │ │ ├── langs │ │ │ │ ├── bg.js │ │ │ │ ├── cs.js │ │ │ │ ├── de.js │ │ │ │ ├── dk.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── fr.js │ │ │ │ ├── hr.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── mk.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ └── zh.js │ │ │ └── popup.html │ │ └── test │ │ │ ├── css │ │ │ └── test.css │ │ │ ├── images │ │ │ ├── Thumbs.db │ │ │ └── test.gif │ │ │ ├── langs │ │ │ ├── bg.js │ │ │ ├── cs.js │ │ │ ├── de.js │ │ │ ├── dk.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── fr.js │ │ │ ├── hr.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── mk.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ └── zh.js │ │ │ ├── test.js │ │ │ └── test2.js │ ├── reg_syntax.js │ ├── reg_syntax │ │ ├── basic.js │ │ ├── brainfuck.js │ │ ├── c.js │ │ ├── coldfusion.js │ │ ├── cpp.js │ │ ├── css.js │ │ ├── html.js │ │ ├── java.js │ │ ├── js.js │ │ ├── pas.js │ │ ├── perl.js │ │ ├── php.js │ │ ├── python.js │ │ ├── robotstxt.js │ │ ├── ruby.js │ │ ├── sql.js │ │ ├── tsql.js │ │ ├── vb.js │ │ └── xml.js │ ├── regexp.js │ ├── resize_area.js │ ├── search_replace.js │ └── template.html │ ├── export_ac_code.php │ ├── faqs.cn.php │ ├── faqs.ko.php │ ├── faqs.php │ ├── fckeditor │ ├── editor │ │ ├── css │ │ │ ├── behaviors │ │ │ │ ├── disablehandles.htc │ │ │ │ └── showtableborders.htc │ │ │ ├── fck_editorarea.css │ │ │ ├── fck_internal.css │ │ │ ├── fck_showtableborders_gecko.css │ │ │ └── images │ │ │ │ ├── block_address.png │ │ │ │ ├── block_blockquote.png │ │ │ │ ├── block_div.png │ │ │ │ ├── block_h1.png │ │ │ │ ├── block_h2.png │ │ │ │ ├── block_h3.png │ │ │ │ ├── block_h4.png │ │ │ │ ├── block_h5.png │ │ │ │ ├── block_h6.png │ │ │ │ ├── block_p.png │ │ │ │ ├── block_pre.png │ │ │ │ ├── fck_anchor.gif │ │ │ │ ├── fck_flashlogo.gif │ │ │ │ ├── fck_hiddenfield.gif │ │ │ │ ├── fck_pagebreak.gif │ │ │ │ └── fck_plugin.gif │ │ ├── dialog │ │ │ ├── common │ │ │ │ ├── fck_dialog_common.css │ │ │ │ ├── fck_dialog_common.js │ │ │ │ └── images │ │ │ │ │ ├── locked.gif │ │ │ │ │ ├── reset.gif │ │ │ │ │ └── unlocked.gif │ │ │ ├── fck_about.html │ │ │ ├── fck_about │ │ │ │ ├── logo_fckeditor.gif │ │ │ │ ├── logo_fredck.gif │ │ │ │ └── sponsors │ │ │ │ │ └── spellchecker_net.gif │ │ │ ├── fck_anchor.html │ │ │ ├── fck_button.html │ │ │ ├── fck_checkbox.html │ │ │ ├── fck_colorselector.html │ │ │ ├── fck_div.html │ │ │ ├── fck_docprops.html │ │ │ ├── fck_docprops │ │ │ │ └── fck_document_preview.html │ │ │ ├── fck_flash.html │ │ │ ├── fck_flash │ │ │ │ ├── fck_flash.js │ │ │ │ └── fck_flash_preview.html │ │ │ ├── fck_form.html │ │ │ ├── fck_hiddenfield.html │ │ │ ├── fck_image.html │ │ │ ├── fck_image │ │ │ │ ├── fck_image.js │ │ │ │ └── fck_image_preview.html │ │ │ ├── fck_link.html │ │ │ ├── fck_link │ │ │ │ └── fck_link.js │ │ │ ├── fck_listprop.html │ │ │ ├── fck_paste.html │ │ │ ├── fck_radiobutton.html │ │ │ ├── fck_replace.html │ │ │ ├── fck_scayt.html │ │ │ ├── fck_scayt │ │ │ │ └── scayt_dialog.css │ │ │ ├── fck_select.html │ │ │ ├── fck_select │ │ │ │ └── fck_select.js │ │ │ ├── fck_smiley.html │ │ │ ├── fck_source.html │ │ │ ├── fck_specialchar.html │ │ │ ├── fck_spellerpages.html │ │ │ ├── fck_spellerpages │ │ │ │ └── spellerpages │ │ │ │ │ ├── blank.html │ │ │ │ │ ├── controlWindow.js │ │ │ │ │ ├── controls.html │ │ │ │ │ ├── server-scripts │ │ │ │ │ ├── spellchecker.cfm │ │ │ │ │ ├── spellchecker.php │ │ │ │ │ └── spellchecker.pl │ │ │ │ │ ├── spellChecker.js │ │ │ │ │ ├── spellchecker.html │ │ │ │ │ ├── spellerStyle.css │ │ │ │ │ └── wordWindow.js │ │ │ ├── fck_table.html │ │ │ ├── fck_tablecell.html │ │ │ ├── fck_template.html │ │ │ ├── fck_template │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ ├── fck_textarea.html │ │ │ └── fck_textfield.html │ │ ├── dtd │ │ │ ├── fck_dtd_test.html │ │ │ ├── fck_xhtml10strict.js │ │ │ └── fck_xhtml10transitional.js │ │ ├── fckdebug.html │ │ ├── fckdialog.html │ │ ├── fckeditor.html │ │ ├── fckeditor.original.html │ │ ├── filemanager │ │ │ ├── browser │ │ │ │ └── default │ │ │ │ │ ├── browser.css │ │ │ │ │ ├── browser.html │ │ │ │ │ ├── frmactualfolder.html │ │ │ │ │ ├── frmcreatefolder.html │ │ │ │ │ ├── frmfolders.html │ │ │ │ │ ├── frmresourceslist.html │ │ │ │ │ ├── frmresourcetype.html │ │ │ │ │ ├── frmupload.html │ │ │ │ │ ├── images │ │ │ │ │ ├── ButtonArrow.gif │ │ │ │ │ ├── Folder.gif │ │ │ │ │ ├── Folder32.gif │ │ │ │ │ ├── FolderOpened.gif │ │ │ │ │ ├── FolderOpened32.gif │ │ │ │ │ ├── FolderUp.gif │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── 32 │ │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ │ ├── htm.gif │ │ │ │ │ │ │ ├── html.gif │ │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ │ ├── png.gif │ │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ │ └── zip.gif │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ ├── htm.gif │ │ │ │ │ │ ├── html.gif │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ ├── png.gif │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ └── zip.gif │ │ │ │ │ └── spacer.gif │ │ │ │ │ └── js │ │ │ │ │ ├── common.js │ │ │ │ │ └── fckxml.js │ │ │ └── connectors │ │ │ │ └── php │ │ │ │ ├── basexml.php │ │ │ │ ├── commands.php │ │ │ │ ├── config.php │ │ │ │ ├── connector.php │ │ │ │ ├── io.php │ │ │ │ ├── phpcompat.php │ │ │ │ ├── upload.php │ │ │ │ └── util.php │ │ ├── images │ │ │ ├── anchor.gif │ │ │ ├── arrow_ltr.gif │ │ │ ├── arrow_rtl.gif │ │ │ ├── smiley │ │ │ │ └── msn │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── cake.gif │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ └── wink_smile.gif │ │ │ └── spacer.gif │ │ ├── js │ │ │ ├── fckadobeair.js │ │ │ ├── fckeditorcode_gecko.js │ │ │ └── fckeditorcode_ie.js │ │ ├── lang │ │ │ ├── _translationstatus.txt │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-uk.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── autogrow │ │ │ │ └── fckplugin.js │ │ │ ├── bbcode │ │ │ │ ├── _sample │ │ │ │ │ ├── sample.config.js │ │ │ │ │ └── sample.html │ │ │ │ └── fckplugin.js │ │ │ ├── dragresizetable │ │ │ │ └── fckplugin.js │ │ │ ├── placeholder │ │ │ │ ├── fck_placeholder.html │ │ │ │ ├── fckplugin.js │ │ │ │ ├── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── it.js │ │ │ │ │ └── pl.js │ │ │ │ └── placeholder.gif │ │ │ ├── simplecommands │ │ │ │ └── fckplugin.js │ │ │ └── tablecommands │ │ │ │ └── fckplugin.js │ │ ├── skins │ │ │ ├── _fckviewstrips.html │ │ │ ├── default │ │ │ │ ├── fck_dialog.css │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ ├── fck_editor.css │ │ │ │ ├── fck_strip.gif │ │ │ │ └── images │ │ │ │ │ ├── dialog.sides.gif │ │ │ │ │ ├── dialog.sides.png │ │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ │ ├── sprites.gif │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ │ ├── toolbar.end.gif │ │ │ │ │ ├── toolbar.expand.gif │ │ │ │ │ ├── toolbar.separator.gif │ │ │ │ │ └── toolbar.start.gif │ │ │ ├── office2003 │ │ │ │ ├── fck_dialog.css │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ ├── fck_editor.css │ │ │ │ ├── fck_strip.gif │ │ │ │ └── images │ │ │ │ │ ├── dialog.sides.gif │ │ │ │ │ ├── dialog.sides.png │ │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ │ ├── sprites.gif │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ │ ├── toolbar.bg.gif │ │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ │ ├── toolbar.end.gif │ │ │ │ │ ├── toolbar.expand.gif │ │ │ │ │ ├── toolbar.separator.gif │ │ │ │ │ └── toolbar.start.gif │ │ │ └── silver │ │ │ │ ├── fck_dialog.css │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ ├── fck_editor.css │ │ │ │ ├── fck_strip.gif │ │ │ │ └── images │ │ │ │ ├── dialog.sides.gif │ │ │ │ ├── dialog.sides.png │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ ├── sprites.gif │ │ │ │ ├── sprites.png │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ ├── toolbar.buttonbg.gif │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ ├── toolbar.end.gif │ │ │ │ ├── toolbar.expand.gif │ │ │ │ ├── toolbar.separator.gif │ │ │ │ └── toolbar.start.gif │ │ └── wsc │ │ │ ├── ciframe.html │ │ │ ├── tmpFrameset.html │ │ │ └── w.html │ ├── fckconfig.js │ ├── fckeditor.js │ ├── fckeditor.php │ ├── fckeditor_php4.php │ ├── fckeditor_php5.php │ ├── fckpackager.xml │ ├── fckstyles.xml │ ├── fcktemplates.xml │ └── fckutils.cfm │ ├── gpl-2.0.txt │ ├── highlight │ ├── scripts │ │ ├── shAutoloader.js │ │ ├── shBrushAS3.js │ │ ├── shBrushAppleScript.js │ │ ├── shBrushBash.js │ │ ├── shBrushCSharp.js │ │ ├── shBrushColdFusion.js │ │ ├── shBrushCpp.js │ │ ├── shBrushCss.js │ │ ├── shBrushDelphi.js │ │ ├── shBrushDiff.js │ │ ├── shBrushErlang.js │ │ ├── shBrushGroovy.js │ │ ├── shBrushJScript.js │ │ ├── shBrushJava.js │ │ ├── shBrushJavaFX.js │ │ ├── shBrushPerl.js │ │ ├── shBrushPhp.js │ │ ├── shBrushPlain.js │ │ ├── shBrushPowerShell.js │ │ ├── shBrushPython.js │ │ ├── shBrushRuby.js │ │ ├── shBrushSass.js │ │ ├── shBrushScala.js │ │ ├── shBrushSql.js │ │ ├── shBrushVb.js │ │ ├── shBrushXml.js │ │ ├── shCore.js │ │ └── shLegacy.js │ └── styles │ │ ├── help.png │ │ ├── magnifier.png │ │ ├── page_white_code.png │ │ ├── page_white_copy.png │ │ ├── printer.png │ │ ├── shCore.css │ │ ├── shCoreDefault.css │ │ ├── shCoreDjango.css │ │ ├── shCoreEclipse.css │ │ ├── shCoreEmacs.css │ │ ├── shCoreFadeToGrey.css │ │ ├── shCoreMDUltra.css │ │ ├── shCoreMidnight.css │ │ ├── shCoreRDark.css │ │ ├── shThemeDefault.css │ │ ├── shThemeDjango.css │ │ ├── shThemeEclipse.css │ │ ├── shThemeEmacs.css │ │ ├── shThemeFadeToGrey.css │ │ ├── shThemeMDUltra.css │ │ ├── shThemeMidnight.css │ │ └── shThemeRDark.css │ ├── image │ ├── background.jpg │ ├── content.png │ ├── logo.png │ └── menu_bg.png │ ├── include │ ├── QQWry.Dat │ ├── Vera.ttf │ ├── cache_end.php │ ├── cache_start.php │ ├── check_get_key.php │ ├── check_post_key.php │ ├── checksource.js │ ├── const.inc.php │ ├── dark.css │ ├── db_info.inc.php │ ├── gcode.css │ ├── hoj.css │ ├── iplocation.php │ ├── memcache.php │ ├── my_func.inc.php │ ├── online.php │ ├── pie.js │ ├── problem.php │ ├── profile.php │ ├── set_get_key.php │ ├── set_post_key.php │ ├── setlang.php │ ├── simple_html_dom.php │ ├── sortTable.js │ ├── underlineTranslation.js │ └── wz_jsgraphics.js │ ├── index.php │ ├── lang │ ├── cn.php │ ├── en.php │ ├── fa.php │ ├── ko.php │ └── th.php │ ├── login.php │ ├── loginpage.php │ ├── logout.php │ ├── mail.php │ ├── modify.php │ ├── modifypage.php │ ├── oj-footer.php │ ├── oj-header.php │ ├── online.php │ ├── problem.php │ ├── problemset.php │ ├── problemstatus.php │ ├── ranklist.php │ ├── recent-contest.php │ ├── register.php │ ├── registerpage.php │ ├── reinfo.php │ ├── sae │ ├── db.sql │ └── install.php │ ├── setlang.php │ ├── showsource.php │ ├── status.php │ ├── submit.php │ ├── submitpage.php │ ├── template │ └── classic │ │ ├── ceinfo.php │ │ ├── contest.php │ │ ├── contestrank.php │ │ ├── contestset.php │ │ ├── conteststatistics.php │ │ ├── conteststatus.php │ │ ├── error.php │ │ ├── faqs.php │ │ ├── hoj.css │ │ ├── image │ │ ├── background.jpg │ │ ├── content.png │ │ ├── logo.png │ │ └── menu_bg.png │ │ ├── index.php │ │ ├── loginpage.php │ │ ├── mail.php │ │ ├── modifypage.php │ │ ├── oj-footer.php │ │ ├── oj-header.php │ │ ├── online.php │ │ ├── problem.php │ │ ├── problemset.php │ │ ├── problemstatus.php │ │ ├── ranklist.php │ │ ├── recent-contest.php │ │ ├── registerpage.php │ │ ├── reinfo.php │ │ ├── showsource.php │ │ ├── status.php │ │ ├── submitpage.php │ │ └── userinfo.php │ ├── userinfo.php │ └── vcode.php ├── tags ├── 1.2rc │ ├── core │ │ ├── judge_client │ │ │ ├── judge_client.cc │ │ │ ├── makefile │ │ │ ├── ncalls.h │ │ │ └── okcalls.h │ │ ├── judged │ │ │ ├── judged.cc │ │ │ └── makefile │ │ ├── make.sh │ │ └── sim │ │ │ ├── sim.sh │ │ │ └── sim_2_26 │ │ │ ├── Answers │ │ │ ├── ChangeLog │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── Malloc.c │ │ │ ├── Malloc.h │ │ │ ├── READ.ME │ │ │ ├── README.1ST │ │ │ ├── READ_ME │ │ │ ├── TechnReport │ │ │ ├── ToDo │ │ │ ├── VERSION │ │ │ ├── add_run.c │ │ │ ├── add_run.h │ │ │ ├── aiso.bdy │ │ │ ├── aiso.spc │ │ │ ├── algollike.c │ │ │ ├── algollike.h │ │ │ ├── clang.c │ │ │ ├── clang.l │ │ │ ├── compare.c │ │ │ ├── compare.h │ │ │ ├── debug.par │ │ │ ├── error.c │ │ │ ├── error.h │ │ │ ├── hash.c │ │ │ ├── hash.h │ │ │ ├── idf.c │ │ │ ├── idf.h │ │ │ ├── javalang.c │ │ │ ├── javalang.l │ │ │ ├── lang.h │ │ │ ├── language.h │ │ │ ├── lex.c │ │ │ ├── lex.h │ │ │ ├── lisplang.l │ │ │ ├── m2lang.l │ │ │ ├── miralang.l │ │ │ ├── newargs.c │ │ │ ├── newargs.h │ │ │ ├── option-i.inp │ │ │ ├── options.c │ │ │ ├── options.h │ │ │ ├── pascallang.c │ │ │ ├── pascallang.l │ │ │ ├── pass1.c │ │ │ ├── pass1.h │ │ │ ├── pass2.c │ │ │ ├── pass2.h │ │ │ ├── pass3.c │ │ │ ├── pass3.h │ │ │ ├── percentages.c │ │ │ ├── percentages.h │ │ │ ├── runs.c │ │ │ ├── runs.h │ │ │ ├── settings.par │ │ │ ├── sim.1 │ │ │ ├── sim.c │ │ │ ├── sim.h │ │ │ ├── sim.html │ │ │ ├── sim.pdf │ │ │ ├── sim_c │ │ │ ├── sim_java │ │ │ ├── sim_pasc │ │ │ ├── sortlist.bdy │ │ │ ├── sortlist.spc │ │ │ ├── stream.c │ │ │ ├── stream.h │ │ │ ├── sysidf.mk │ │ │ ├── sysidf.msdos │ │ │ ├── sysidf.unix │ │ │ ├── system.par │ │ │ ├── text.c │ │ │ ├── text.h │ │ │ ├── textlang.l │ │ │ ├── token.c │ │ │ ├── token.h │ │ │ ├── tokenarray.c │ │ │ └── tokenarray.h │ ├── install │ │ ├── README │ │ ├── db.sql │ │ ├── install.sh │ │ ├── java0.policy │ │ ├── judge.conf │ │ └── judged │ └── web │ │ ├── admin │ │ ├── admin-header.php │ │ ├── changepass.php │ │ ├── contest_add.php │ │ ├── contest_df_change.php │ │ ├── contest_edit.php │ │ ├── contest_list.php │ │ ├── contest_pr_change.php │ │ ├── index.php │ │ ├── menu.php │ │ ├── moodle_judge.php │ │ ├── msg.txt │ │ ├── news_add.php │ │ ├── news_add_page.php │ │ ├── news_df_change.php │ │ ├── news_edit.php │ │ ├── news_list.php │ │ ├── privilege_add.php │ │ ├── privilege_delete.php │ │ ├── privilege_list.php │ │ ├── problem_add.php │ │ ├── problem_add_page.php │ │ ├── problem_add_page_hdu.php │ │ ├── problem_add_page_pku.php │ │ ├── problem_add_page_waterloo.php │ │ ├── problem_changeid.php │ │ ├── problem_copy.php │ │ ├── problem_df_change.php │ │ ├── problem_edit.php │ │ ├── problem_export.php │ │ ├── problem_export_xml.php │ │ ├── problem_import.php │ │ ├── problem_import_xml.php │ │ ├── problem_judge.php │ │ ├── problem_list.php │ │ ├── quixplorer │ │ │ ├── .config │ │ │ │ ├── .htaccess │ │ │ │ ├── .htusers.php │ │ │ │ ├── conf.php │ │ │ │ └── mimes.php │ │ │ ├── .include │ │ │ │ ├── .htaccess │ │ │ │ ├── error.php │ │ │ │ ├── footer.php │ │ │ │ ├── fun_admin.php │ │ │ │ ├── fun_archive.php │ │ │ │ ├── fun_chmod.php │ │ │ │ ├── fun_copy_move.php │ │ │ │ ├── fun_del.php │ │ │ │ ├── fun_down.php │ │ │ │ ├── fun_edit.php │ │ │ │ ├── fun_extra.php │ │ │ │ ├── fun_list.php │ │ │ │ ├── fun_mkitem.php │ │ │ │ ├── fun_search.php │ │ │ │ ├── fun_up.php │ │ │ │ ├── header.php │ │ │ │ ├── init.php │ │ │ │ ├── javascript.php │ │ │ │ ├── js_admin.php │ │ │ │ ├── js_admin2.php │ │ │ │ ├── js_admin3.php │ │ │ │ ├── login.php │ │ │ │ ├── permissions.php │ │ │ │ └── user.php │ │ │ ├── _img │ │ │ │ ├── _.gif │ │ │ │ ├── __copy.gif │ │ │ │ ├── __cut.gif │ │ │ │ ├── __paste.gif │ │ │ │ ├── _admin.gif │ │ │ │ ├── _archive.gif │ │ │ │ ├── _arrowdown.gif │ │ │ │ ├── _arrowup.gif │ │ │ │ ├── _copy.gif │ │ │ │ ├── _copy_.gif │ │ │ │ ├── _delete.gif │ │ │ │ ├── _delete_.gif │ │ │ │ ├── _download.gif │ │ │ │ ├── _download_.gif │ │ │ │ ├── _edit.gif │ │ │ │ ├── _edit_.gif │ │ │ │ ├── _home.gif │ │ │ │ ├── _info.gif │ │ │ │ ├── _logout.gif │ │ │ │ ├── _move.gif │ │ │ │ ├── _move_.gif │ │ │ │ ├── _refresh.gif │ │ │ │ ├── _search.gif │ │ │ │ ├── _up.gif │ │ │ │ ├── _upload.gif │ │ │ │ ├── _upload_.gif │ │ │ │ ├── cpp.gif │ │ │ │ ├── dir.gif │ │ │ │ ├── exe.gif │ │ │ │ ├── file.gif │ │ │ │ ├── flash.gif │ │ │ │ ├── h.gif │ │ │ │ ├── html.gif │ │ │ │ ├── image.gif │ │ │ │ ├── java.gif │ │ │ │ ├── js.gif │ │ │ │ ├── midi.gif │ │ │ │ ├── mp3.gif │ │ │ │ ├── pdf.gif │ │ │ │ ├── php.gif │ │ │ │ ├── pl.gif │ │ │ │ ├── real.gif │ │ │ │ ├── sound.gif │ │ │ │ ├── spread.gif │ │ │ │ ├── src.gif │ │ │ │ ├── tar.gif │ │ │ │ ├── tgz.gif │ │ │ │ ├── txt.gif │ │ │ │ ├── video.gif │ │ │ │ ├── word.gif │ │ │ │ └── zip.gif │ │ │ ├── _lang │ │ │ │ ├── _info.php │ │ │ │ ├── bg.php │ │ │ │ ├── bg_mimes.php │ │ │ │ ├── cs.php │ │ │ │ ├── cs_mimes.php │ │ │ │ ├── da.php │ │ │ │ ├── da_mimes.php │ │ │ │ ├── de.php │ │ │ │ ├── de_mimes.php │ │ │ │ ├── en.php │ │ │ │ ├── en_mimes.php │ │ │ │ ├── es.php │ │ │ │ ├── es_mimes.php │ │ │ │ ├── fr.php │ │ │ │ ├── fr_mimes.php │ │ │ │ ├── it.php │ │ │ │ ├── it_mimes.php │ │ │ │ ├── nl.php │ │ │ │ ├── nl_mimes.php │ │ │ │ ├── pl.php │ │ │ │ ├── pl_mimes.php │ │ │ │ ├── ptbr.php │ │ │ │ ├── ptbr_mimes.php │ │ │ │ ├── ro.php │ │ │ │ ├── ro_mimes.php │ │ │ │ ├── ru.php │ │ │ │ └── ru_mimes.php │ │ │ ├── _lib │ │ │ │ └── lib_zip.php │ │ │ ├── _style │ │ │ │ ├── style.css │ │ │ │ └── tablebg.gif │ │ │ ├── index.php │ │ │ ├── license.txt │ │ │ ├── permissions.txt │ │ │ ├── readme.txt │ │ │ └── release.txt │ │ ├── rejudge.php │ │ ├── setmsg.php │ │ ├── source_give.php │ │ ├── team_generate.php │ │ ├── update_db.php │ │ └── update_pw.php │ │ ├── bbs.php │ │ ├── bbs │ │ └── README │ │ ├── ceinfo.php │ │ ├── contest-header.php │ │ ├── contest.php │ │ ├── contestrank.php │ │ ├── contestrank.xls.php │ │ ├── conteststatistics.php │ │ ├── discuss │ │ ├── contest-header.php │ │ ├── discuss.php │ │ ├── discuss.sql │ │ ├── discuss_func.inc.php │ │ ├── hoj.css │ │ ├── index.php │ │ ├── newpost.php │ │ ├── oj-header.php │ │ ├── post.php │ │ ├── superthread.php │ │ ├── thread.php │ │ └── threadadmin.php │ │ ├── edit_area │ │ ├── autocompletion.js │ │ ├── edit_area.css │ │ ├── edit_area.js │ │ ├── edit_area_compressor.php │ │ ├── edit_area_full.gz │ │ ├── edit_area_full.js │ │ ├── edit_area_functions.js │ │ ├── edit_area_loader.js │ │ ├── elements_functions.js │ │ ├── highlight.js │ │ ├── images │ │ │ ├── autocompletion.gif │ │ │ ├── close.gif │ │ │ ├── fullscreen.gif │ │ │ ├── go_to_line.gif │ │ │ ├── help.gif │ │ │ ├── highlight.gif │ │ │ ├── load.gif │ │ │ ├── move.gif │ │ │ ├── newdocument.gif │ │ │ ├── opacity.png │ │ │ ├── processing.gif │ │ │ ├── redo.gif │ │ │ ├── reset_highlight.gif │ │ │ ├── save.gif │ │ │ ├── search.gif │ │ │ ├── smooth_selection.gif │ │ │ ├── spacer.gif │ │ │ ├── statusbar_resize.gif │ │ │ ├── undo.gif │ │ │ └── word_wrap.gif │ │ ├── keyboard.js │ │ ├── langs │ │ │ ├── bg.js │ │ │ ├── cs.js │ │ │ ├── de.js │ │ │ ├── dk.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── hr.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── mk.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ └── zh.js │ │ ├── license_apache.txt │ │ ├── license_bsd.txt │ │ ├── license_lgpl.txt │ │ ├── manage_area.js │ │ ├── plugins │ │ │ ├── charmap │ │ │ │ ├── charmap.js │ │ │ │ ├── css │ │ │ │ │ └── charmap.css │ │ │ │ ├── images │ │ │ │ │ └── charmap.gif │ │ │ │ ├── jscripts │ │ │ │ │ └── map.js │ │ │ │ ├── langs │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dk.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ └── zh.js │ │ │ │ └── popup.html │ │ │ └── test │ │ │ │ ├── css │ │ │ │ └── test.css │ │ │ │ ├── images │ │ │ │ ├── Thumbs.db │ │ │ │ └── test.gif │ │ │ │ ├── langs │ │ │ │ ├── bg.js │ │ │ │ ├── cs.js │ │ │ │ ├── de.js │ │ │ │ ├── dk.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── fr.js │ │ │ │ ├── hr.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── mk.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ └── zh.js │ │ │ │ ├── test.js │ │ │ │ └── test2.js │ │ ├── reg_syntax.js │ │ ├── reg_syntax │ │ │ ├── basic.js │ │ │ ├── brainfuck.js │ │ │ ├── c.js │ │ │ ├── coldfusion.js │ │ │ ├── cpp.js │ │ │ ├── css.js │ │ │ ├── html.js │ │ │ ├── java.js │ │ │ ├── js.js │ │ │ ├── pas.js │ │ │ ├── perl.js │ │ │ ├── php.js │ │ │ ├── python.js │ │ │ ├── robotstxt.js │ │ │ ├── ruby.js │ │ │ ├── sql.js │ │ │ ├── tsql.js │ │ │ ├── vb.js │ │ │ └── xml.js │ │ ├── regexp.js │ │ ├── resize_area.js │ │ ├── search_replace.js │ │ └── template.html │ │ ├── export_ac_code.php │ │ ├── faqs.cn.php │ │ ├── faqs.ko.php │ │ ├── faqs.php │ │ ├── fckeditor │ │ ├── editor │ │ │ ├── css │ │ │ │ ├── behaviors │ │ │ │ │ ├── disablehandles.htc │ │ │ │ │ └── showtableborders.htc │ │ │ │ ├── fck_editorarea.css │ │ │ │ ├── fck_internal.css │ │ │ │ ├── fck_showtableborders_gecko.css │ │ │ │ └── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ ├── block_pre.png │ │ │ │ │ ├── fck_anchor.gif │ │ │ │ │ ├── fck_flashlogo.gif │ │ │ │ │ ├── fck_hiddenfield.gif │ │ │ │ │ ├── fck_pagebreak.gif │ │ │ │ │ └── fck_plugin.gif │ │ │ ├── dialog │ │ │ │ ├── common │ │ │ │ │ ├── fck_dialog_common.css │ │ │ │ │ ├── fck_dialog_common.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── locked.gif │ │ │ │ │ │ ├── reset.gif │ │ │ │ │ │ └── unlocked.gif │ │ │ │ ├── fck_about.html │ │ │ │ ├── fck_about │ │ │ │ │ ├── logo_fckeditor.gif │ │ │ │ │ ├── logo_fredck.gif │ │ │ │ │ └── sponsors │ │ │ │ │ │ └── spellchecker_net.gif │ │ │ │ ├── fck_anchor.html │ │ │ │ ├── fck_button.html │ │ │ │ ├── fck_checkbox.html │ │ │ │ ├── fck_colorselector.html │ │ │ │ ├── fck_div.html │ │ │ │ ├── fck_docprops.html │ │ │ │ ├── fck_docprops │ │ │ │ │ └── fck_document_preview.html │ │ │ │ ├── fck_flash.html │ │ │ │ ├── fck_flash │ │ │ │ │ ├── fck_flash.js │ │ │ │ │ └── fck_flash_preview.html │ │ │ │ ├── fck_form.html │ │ │ │ ├── fck_hiddenfield.html │ │ │ │ ├── fck_image.html │ │ │ │ ├── fck_image │ │ │ │ │ ├── fck_image.js │ │ │ │ │ └── fck_image_preview.html │ │ │ │ ├── fck_link.html │ │ │ │ ├── fck_link │ │ │ │ │ └── fck_link.js │ │ │ │ ├── fck_listprop.html │ │ │ │ ├── fck_paste.html │ │ │ │ ├── fck_radiobutton.html │ │ │ │ ├── fck_replace.html │ │ │ │ ├── fck_scayt.html │ │ │ │ ├── fck_scayt │ │ │ │ │ └── scayt_dialog.css │ │ │ │ ├── fck_select.html │ │ │ │ ├── fck_select │ │ │ │ │ └── fck_select.js │ │ │ │ ├── fck_smiley.html │ │ │ │ ├── fck_source.html │ │ │ │ ├── fck_specialchar.html │ │ │ │ ├── fck_spellerpages.html │ │ │ │ ├── fck_spellerpages │ │ │ │ │ └── spellerpages │ │ │ │ │ │ ├── blank.html │ │ │ │ │ │ ├── controlWindow.js │ │ │ │ │ │ ├── controls.html │ │ │ │ │ │ ├── server-scripts │ │ │ │ │ │ ├── spellchecker.cfm │ │ │ │ │ │ ├── spellchecker.php │ │ │ │ │ │ └── spellchecker.pl │ │ │ │ │ │ ├── spellChecker.js │ │ │ │ │ │ ├── spellchecker.html │ │ │ │ │ │ ├── spellerStyle.css │ │ │ │ │ │ └── wordWindow.js │ │ │ │ ├── fck_table.html │ │ │ │ ├── fck_tablecell.html │ │ │ │ ├── fck_template.html │ │ │ │ ├── fck_template │ │ │ │ │ └── images │ │ │ │ │ │ ├── template1.gif │ │ │ │ │ │ ├── template2.gif │ │ │ │ │ │ └── template3.gif │ │ │ │ ├── fck_textarea.html │ │ │ │ └── fck_textfield.html │ │ │ ├── dtd │ │ │ │ ├── fck_dtd_test.html │ │ │ │ ├── fck_xhtml10strict.js │ │ │ │ └── fck_xhtml10transitional.js │ │ │ ├── fckdebug.html │ │ │ ├── fckdialog.html │ │ │ ├── fckeditor.html │ │ │ ├── fckeditor.original.html │ │ │ ├── filemanager │ │ │ │ ├── browser │ │ │ │ │ └── default │ │ │ │ │ │ ├── browser.css │ │ │ │ │ │ ├── browser.html │ │ │ │ │ │ ├── frmactualfolder.html │ │ │ │ │ │ ├── frmcreatefolder.html │ │ │ │ │ │ ├── frmfolders.html │ │ │ │ │ │ ├── frmresourceslist.html │ │ │ │ │ │ ├── frmresourcetype.html │ │ │ │ │ │ ├── frmupload.html │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ButtonArrow.gif │ │ │ │ │ │ ├── Folder.gif │ │ │ │ │ │ ├── Folder32.gif │ │ │ │ │ │ ├── FolderOpened.gif │ │ │ │ │ │ ├── FolderOpened32.gif │ │ │ │ │ │ ├── FolderUp.gif │ │ │ │ │ │ ├── icons │ │ │ │ │ │ │ ├── 32 │ │ │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ │ │ ├── htm.gif │ │ │ │ │ │ │ │ ├── html.gif │ │ │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ │ │ ├── png.gif │ │ │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ │ │ └── zip.gif │ │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ │ ├── htm.gif │ │ │ │ │ │ │ ├── html.gif │ │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ │ ├── png.gif │ │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ │ └── zip.gif │ │ │ │ │ │ └── spacer.gif │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ └── fckxml.js │ │ │ │ └── connectors │ │ │ │ │ └── php │ │ │ │ │ ├── basexml.php │ │ │ │ │ ├── commands.php │ │ │ │ │ ├── config.php │ │ │ │ │ ├── connector.php │ │ │ │ │ ├── io.php │ │ │ │ │ ├── phpcompat.php │ │ │ │ │ ├── upload.php │ │ │ │ │ └── util.php │ │ │ ├── images │ │ │ │ ├── anchor.gif │ │ │ │ ├── arrow_ltr.gif │ │ │ │ ├── arrow_rtl.gif │ │ │ │ ├── smiley │ │ │ │ │ └── msn │ │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ │ ├── cake.gif │ │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ │ ├── envelope.gif │ │ │ │ │ │ ├── heart.gif │ │ │ │ │ │ ├── kiss.gif │ │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ │ └── wink_smile.gif │ │ │ │ └── spacer.gif │ │ │ ├── js │ │ │ │ ├── fckadobeair.js │ │ │ │ ├── fckeditorcode_gecko.js │ │ │ │ └── fckeditorcode_ie.js │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-uk.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ ├── plugins │ │ │ │ ├── autogrow │ │ │ │ │ └── fckplugin.js │ │ │ │ ├── bbcode │ │ │ │ │ ├── _sample │ │ │ │ │ │ ├── sample.config.js │ │ │ │ │ │ └── sample.html │ │ │ │ │ └── fckplugin.js │ │ │ │ ├── dragresizetable │ │ │ │ │ └── fckplugin.js │ │ │ │ ├── placeholder │ │ │ │ │ ├── fck_placeholder.html │ │ │ │ │ ├── fckplugin.js │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ └── pl.js │ │ │ │ │ └── placeholder.gif │ │ │ │ ├── simplecommands │ │ │ │ │ └── fckplugin.js │ │ │ │ └── tablecommands │ │ │ │ │ └── fckplugin.js │ │ │ ├── skins │ │ │ │ ├── _fckviewstrips.html │ │ │ │ ├── default │ │ │ │ │ ├── fck_dialog.css │ │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ │ ├── fck_editor.css │ │ │ │ │ ├── fck_strip.gif │ │ │ │ │ └── images │ │ │ │ │ │ ├── dialog.sides.gif │ │ │ │ │ │ ├── dialog.sides.png │ │ │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ │ │ ├── sprites.gif │ │ │ │ │ │ ├── sprites.png │ │ │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ │ │ ├── toolbar.end.gif │ │ │ │ │ │ ├── toolbar.expand.gif │ │ │ │ │ │ ├── toolbar.separator.gif │ │ │ │ │ │ └── toolbar.start.gif │ │ │ │ ├── office2003 │ │ │ │ │ ├── fck_dialog.css │ │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ │ ├── fck_editor.css │ │ │ │ │ ├── fck_strip.gif │ │ │ │ │ └── images │ │ │ │ │ │ ├── dialog.sides.gif │ │ │ │ │ │ ├── dialog.sides.png │ │ │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ │ │ ├── sprites.gif │ │ │ │ │ │ ├── sprites.png │ │ │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ │ │ ├── toolbar.bg.gif │ │ │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ │ │ ├── toolbar.end.gif │ │ │ │ │ │ ├── toolbar.expand.gif │ │ │ │ │ │ ├── toolbar.separator.gif │ │ │ │ │ │ └── toolbar.start.gif │ │ │ │ └── silver │ │ │ │ │ ├── fck_dialog.css │ │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ │ ├── fck_editor.css │ │ │ │ │ ├── fck_strip.gif │ │ │ │ │ └── images │ │ │ │ │ ├── dialog.sides.gif │ │ │ │ │ ├── dialog.sides.png │ │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ │ ├── sprites.gif │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ │ ├── toolbar.buttonbg.gif │ │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ │ ├── toolbar.end.gif │ │ │ │ │ ├── toolbar.expand.gif │ │ │ │ │ ├── toolbar.separator.gif │ │ │ │ │ └── toolbar.start.gif │ │ │ └── wsc │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ └── w.html │ │ ├── fckconfig.js │ │ ├── fckeditor.js │ │ ├── fckeditor.php │ │ ├── fckeditor_php4.php │ │ ├── fckeditor_php5.php │ │ ├── fckpackager.xml │ │ ├── fckstyles.xml │ │ ├── fcktemplates.xml │ │ └── fckutils.cfm │ │ ├── gpl-2.0.txt │ │ ├── highlight │ │ ├── scripts │ │ │ ├── shAutoloader.js │ │ │ ├── shBrushAS3.js │ │ │ ├── shBrushAppleScript.js │ │ │ ├── shBrushBash.js │ │ │ ├── shBrushCSharp.js │ │ │ ├── shBrushColdFusion.js │ │ │ ├── shBrushCpp.js │ │ │ ├── shBrushCss.js │ │ │ ├── shBrushDelphi.js │ │ │ ├── shBrushDiff.js │ │ │ ├── shBrushErlang.js │ │ │ ├── shBrushGroovy.js │ │ │ ├── shBrushJScript.js │ │ │ ├── shBrushJava.js │ │ │ ├── shBrushJavaFX.js │ │ │ ├── shBrushPerl.js │ │ │ ├── shBrushPhp.js │ │ │ ├── shBrushPlain.js │ │ │ ├── shBrushPowerShell.js │ │ │ ├── shBrushPython.js │ │ │ ├── shBrushRuby.js │ │ │ ├── shBrushSass.js │ │ │ ├── shBrushScala.js │ │ │ ├── shBrushSql.js │ │ │ ├── shBrushVb.js │ │ │ ├── shBrushXml.js │ │ │ ├── shCore.js │ │ │ └── shLegacy.js │ │ └── styles │ │ │ ├── help.png │ │ │ ├── magnifier.png │ │ │ ├── page_white_code.png │ │ │ ├── page_white_copy.png │ │ │ ├── printer.png │ │ │ ├── shCore.css │ │ │ ├── shCoreDefault.css │ │ │ ├── shCoreDjango.css │ │ │ ├── shCoreEclipse.css │ │ │ ├── shCoreEmacs.css │ │ │ ├── shCoreFadeToGrey.css │ │ │ ├── shCoreMDUltra.css │ │ │ ├── shCoreMidnight.css │ │ │ ├── shCoreRDark.css │ │ │ ├── shThemeDefault.css │ │ │ ├── shThemeDjango.css │ │ │ ├── shThemeEclipse.css │ │ │ ├── shThemeEmacs.css │ │ │ ├── shThemeFadeToGrey.css │ │ │ ├── shThemeMDUltra.css │ │ │ ├── shThemeMidnight.css │ │ │ └── shThemeRDark.css │ │ ├── image │ │ ├── background.jpg │ │ ├── content.png │ │ └── logo.png │ │ ├── include │ │ ├── QQWry.Dat │ │ ├── Vera.ttf │ │ ├── cache_end.php │ │ ├── cache_start.php │ │ ├── check_get_key.php │ │ ├── check_post_key.php │ │ ├── checksource.js │ │ ├── const.inc.php │ │ ├── dark.css │ │ ├── db_info.inc.php │ │ ├── gcode.css │ │ ├── hoj.css │ │ ├── iplocation.php │ │ ├── memcache.php │ │ ├── my_func.inc.php │ │ ├── online.php │ │ ├── pie.js │ │ ├── problem.php │ │ ├── profile.php │ │ ├── set_get_key.php │ │ ├── set_post_key.php │ │ ├── simple_html_dom.php │ │ ├── sortTable.js │ │ ├── underlineTranslation.js │ │ └── wz_jsgraphics.js │ │ ├── index.php │ │ ├── lang │ │ ├── cn.php │ │ ├── en.php │ │ ├── fa.php │ │ ├── ko.php │ │ └── th.php │ │ ├── login.php │ │ ├── loginpage.php │ │ ├── logout.php │ │ ├── mail.php │ │ ├── modify.php │ │ ├── modifypage.php │ │ ├── oj-footer.php │ │ ├── oj-header.php │ │ ├── online.php │ │ ├── problem.php │ │ ├── problemset.php │ │ ├── problemstatus.php │ │ ├── ranklist.php │ │ ├── recent-contest.php │ │ ├── register.php │ │ ├── registerpage.php │ │ ├── reinfo.php │ │ ├── setlang.php │ │ ├── showsource.php │ │ ├── status.php │ │ ├── submit.php │ │ ├── submitpage.php │ │ ├── userinfo.php │ │ └── vcode.php ├── CEHelper │ ├── admin │ │ ├── CEREhelp │ │ │ ├── AddFeature.php │ │ │ ├── EditFeature.php │ │ │ ├── ErrFeature.sql │ │ │ ├── FeatureList.php │ │ │ ├── Function.php │ │ │ ├── FunctionBase.php │ │ │ ├── SaveFeature.php │ │ │ ├── TestFeature.php │ │ │ ├── define.php │ │ │ ├── index.php │ │ │ ├── mysql.php │ │ │ ├── request.php │ │ │ └── resources │ │ │ │ ├── common.js │ │ │ │ ├── cross.png │ │ │ │ ├── facebox.js │ │ │ │ ├── hammer_screwdriver.png │ │ │ │ ├── invalid.css │ │ │ │ ├── jquery-1.3.2.min.js │ │ │ │ ├── jquery.date.js │ │ │ │ ├── jquery.datePicker.js │ │ │ │ ├── jquery.wysiwyg.js │ │ │ │ ├── pencil.png │ │ │ │ ├── reset.css │ │ │ │ ├── simpla.jquery.configuration.js │ │ │ │ └── style.css │ │ ├── admin-header.php │ │ ├── changepass.php │ │ ├── contest_add.php │ │ ├── contest_df_change.php │ │ ├── contest_edit.php │ │ ├── contest_list.php │ │ ├── contest_pr_change.php │ │ ├── index.php │ │ ├── menu.php │ │ ├── moodle_judge.php │ │ ├── msg.txt │ │ ├── news_add.php │ │ ├── news_add_page.php │ │ ├── news_df_change.php │ │ ├── news_edit.php │ │ ├── news_list.php │ │ ├── privilege_add.php │ │ ├── privilege_delete.php │ │ ├── privilege_list.php │ │ ├── problem_add.php │ │ ├── problem_add_page.php │ │ ├── problem_add_page_hdu.php │ │ ├── problem_add_page_pku.php │ │ ├── problem_add_page_waterloo.php │ │ ├── problem_changeid.php │ │ ├── problem_copy.php │ │ ├── problem_del.php │ │ ├── problem_df_change.php │ │ ├── problem_edit.php │ │ ├── problem_export.php │ │ ├── problem_export_xml.php │ │ ├── problem_import.php │ │ ├── problem_import_xml.php │ │ ├── problem_judge.php │ │ ├── problem_list.php │ │ ├── quixplorer │ │ │ ├── .config │ │ │ │ ├── .htaccess │ │ │ │ ├── .htusers.php │ │ │ │ ├── conf.php │ │ │ │ └── mimes.php │ │ │ ├── .include │ │ │ │ ├── .htaccess │ │ │ │ ├── error.php │ │ │ │ ├── footer.php │ │ │ │ ├── fun_admin.php │ │ │ │ ├── fun_archive.php │ │ │ │ ├── fun_chmod.php │ │ │ │ ├── fun_copy_move.php │ │ │ │ ├── fun_del.php │ │ │ │ ├── fun_down.php │ │ │ │ ├── fun_edit.php │ │ │ │ ├── fun_extra.php │ │ │ │ ├── fun_list.php │ │ │ │ ├── fun_mkitem.php │ │ │ │ ├── fun_search.php │ │ │ │ ├── fun_up.php │ │ │ │ ├── header.php │ │ │ │ ├── init.php │ │ │ │ ├── javascript.php │ │ │ │ ├── js_admin.php │ │ │ │ ├── js_admin2.php │ │ │ │ ├── js_admin3.php │ │ │ │ ├── login.php │ │ │ │ ├── permissions.php │ │ │ │ └── user.php │ │ │ ├── _img │ │ │ │ ├── _.gif │ │ │ │ ├── __copy.gif │ │ │ │ ├── __cut.gif │ │ │ │ ├── __paste.gif │ │ │ │ ├── _admin.gif │ │ │ │ ├── _archive.gif │ │ │ │ ├── _arrowdown.gif │ │ │ │ ├── _arrowup.gif │ │ │ │ ├── _copy.gif │ │ │ │ ├── _copy_.gif │ │ │ │ ├── _delete.gif │ │ │ │ ├── _delete_.gif │ │ │ │ ├── _download.gif │ │ │ │ ├── _download_.gif │ │ │ │ ├── _edit.gif │ │ │ │ ├── _edit_.gif │ │ │ │ ├── _home.gif │ │ │ │ ├── _info.gif │ │ │ │ ├── _logout.gif │ │ │ │ ├── _move.gif │ │ │ │ ├── _move_.gif │ │ │ │ ├── _refresh.gif │ │ │ │ ├── _search.gif │ │ │ │ ├── _up.gif │ │ │ │ ├── _upload.gif │ │ │ │ ├── _upload_.gif │ │ │ │ ├── cpp.gif │ │ │ │ ├── dir.gif │ │ │ │ ├── exe.gif │ │ │ │ ├── file.gif │ │ │ │ ├── flash.gif │ │ │ │ ├── h.gif │ │ │ │ ├── html.gif │ │ │ │ ├── image.gif │ │ │ │ ├── java.gif │ │ │ │ ├── js.gif │ │ │ │ ├── midi.gif │ │ │ │ ├── mp3.gif │ │ │ │ ├── pdf.gif │ │ │ │ ├── php.gif │ │ │ │ ├── pl.gif │ │ │ │ ├── real.gif │ │ │ │ ├── sound.gif │ │ │ │ ├── spread.gif │ │ │ │ ├── src.gif │ │ │ │ ├── tar.gif │ │ │ │ ├── tgz.gif │ │ │ │ ├── txt.gif │ │ │ │ ├── video.gif │ │ │ │ ├── word.gif │ │ │ │ └── zip.gif │ │ │ ├── _lang │ │ │ │ ├── _info.php │ │ │ │ ├── bg.php │ │ │ │ ├── bg_mimes.php │ │ │ │ ├── cs.php │ │ │ │ ├── cs_mimes.php │ │ │ │ ├── da.php │ │ │ │ ├── da_mimes.php │ │ │ │ ├── de.php │ │ │ │ ├── de_mimes.php │ │ │ │ ├── en.php │ │ │ │ ├── en_mimes.php │ │ │ │ ├── es.php │ │ │ │ ├── es_mimes.php │ │ │ │ ├── fr.php │ │ │ │ ├── fr_mimes.php │ │ │ │ ├── it.php │ │ │ │ ├── it_mimes.php │ │ │ │ ├── nl.php │ │ │ │ ├── nl_mimes.php │ │ │ │ ├── pl.php │ │ │ │ ├── pl_mimes.php │ │ │ │ ├── ptbr.php │ │ │ │ ├── ptbr_mimes.php │ │ │ │ ├── ro.php │ │ │ │ ├── ro_mimes.php │ │ │ │ ├── ru.php │ │ │ │ └── ru_mimes.php │ │ │ ├── _lib │ │ │ │ └── lib_zip.php │ │ │ ├── _style │ │ │ │ ├── style.css │ │ │ │ └── tablebg.gif │ │ │ ├── index.php │ │ │ ├── license.txt │ │ │ ├── permissions.txt │ │ │ ├── readme.txt │ │ │ └── release.txt │ │ ├── rejudge.php │ │ ├── setmsg.php │ │ ├── source_give.php │ │ ├── team_generate.php │ │ ├── update_db.php │ │ └── update_pw.php │ ├── bbs.php │ ├── bbs │ │ └── README │ ├── ceinfo.php │ ├── contest-header.php │ ├── contest.php │ ├── contestrank.php │ ├── contestrank.xls.php │ ├── conteststatistics.php │ ├── discuss │ │ ├── contest-header.php │ │ ├── discuss.php │ │ ├── discuss.sql │ │ ├── discuss_func.inc.php │ │ ├── hoj.css │ │ ├── index.php │ │ ├── newpost.php │ │ ├── oj-header.php │ │ ├── post.php │ │ ├── superthread.php │ │ ├── thread.php │ │ └── threadadmin.php │ ├── edit_area │ │ ├── autocompletion.js │ │ ├── edit_area.css │ │ ├── edit_area.js │ │ ├── edit_area_compressor.php │ │ ├── edit_area_full.gz │ │ ├── edit_area_full.js │ │ ├── edit_area_functions.js │ │ ├── edit_area_loader.js │ │ ├── elements_functions.js │ │ ├── highlight.js │ │ ├── images │ │ │ ├── autocompletion.gif │ │ │ ├── close.gif │ │ │ ├── fullscreen.gif │ │ │ ├── go_to_line.gif │ │ │ ├── help.gif │ │ │ ├── highlight.gif │ │ │ ├── load.gif │ │ │ ├── move.gif │ │ │ ├── newdocument.gif │ │ │ ├── opacity.png │ │ │ ├── processing.gif │ │ │ ├── redo.gif │ │ │ ├── reset_highlight.gif │ │ │ ├── save.gif │ │ │ ├── search.gif │ │ │ ├── smooth_selection.gif │ │ │ ├── spacer.gif │ │ │ ├── statusbar_resize.gif │ │ │ ├── undo.gif │ │ │ └── word_wrap.gif │ │ ├── keyboard.js │ │ ├── langs │ │ │ ├── bg.js │ │ │ ├── cs.js │ │ │ ├── de.js │ │ │ ├── dk.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── hr.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── mk.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ └── zh.js │ │ ├── license_apache.txt │ │ ├── license_bsd.txt │ │ ├── license_lgpl.txt │ │ ├── manage_area.js │ │ ├── plugins │ │ │ ├── charmap │ │ │ │ ├── charmap.js │ │ │ │ ├── css │ │ │ │ │ └── charmap.css │ │ │ │ ├── images │ │ │ │ │ └── charmap.gif │ │ │ │ ├── jscripts │ │ │ │ │ └── map.js │ │ │ │ ├── langs │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dk.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ └── zh.js │ │ │ │ └── popup.html │ │ │ └── test │ │ │ │ ├── css │ │ │ │ └── test.css │ │ │ │ ├── images │ │ │ │ ├── Thumbs.db │ │ │ │ └── test.gif │ │ │ │ ├── langs │ │ │ │ ├── bg.js │ │ │ │ ├── cs.js │ │ │ │ ├── de.js │ │ │ │ ├── dk.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── fr.js │ │ │ │ ├── hr.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── mk.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ └── zh.js │ │ │ │ ├── test.js │ │ │ │ └── test2.js │ │ ├── reg_syntax.js │ │ ├── reg_syntax │ │ │ ├── basic.js │ │ │ ├── brainfuck.js │ │ │ ├── c.js │ │ │ ├── coldfusion.js │ │ │ ├── cpp.js │ │ │ ├── css.js │ │ │ ├── html.js │ │ │ ├── java.js │ │ │ ├── js.js │ │ │ ├── pas.js │ │ │ ├── perl.js │ │ │ ├── php.js │ │ │ ├── python.js │ │ │ ├── robotstxt.js │ │ │ ├── ruby.js │ │ │ ├── sql.js │ │ │ ├── tsql.js │ │ │ ├── vb.js │ │ │ └── xml.js │ │ ├── regexp.js │ │ ├── resize_area.js │ │ ├── search_replace.js │ │ └── template.html │ ├── export_ac_code.php │ ├── faqs.cn.php │ ├── faqs.ko.php │ ├── faqs.php │ ├── fckeditor │ │ ├── editor │ │ │ ├── css │ │ │ │ ├── behaviors │ │ │ │ │ ├── disablehandles.htc │ │ │ │ │ └── showtableborders.htc │ │ │ │ ├── fck_editorarea.css │ │ │ │ ├── fck_internal.css │ │ │ │ ├── fck_showtableborders_gecko.css │ │ │ │ └── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ ├── block_pre.png │ │ │ │ │ ├── fck_anchor.gif │ │ │ │ │ ├── fck_flashlogo.gif │ │ │ │ │ ├── fck_hiddenfield.gif │ │ │ │ │ ├── fck_pagebreak.gif │ │ │ │ │ └── fck_plugin.gif │ │ │ ├── dialog │ │ │ │ ├── common │ │ │ │ │ ├── fck_dialog_common.css │ │ │ │ │ ├── fck_dialog_common.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── locked.gif │ │ │ │ │ │ ├── reset.gif │ │ │ │ │ │ └── unlocked.gif │ │ │ │ ├── fck_about.html │ │ │ │ ├── fck_about │ │ │ │ │ ├── logo_fckeditor.gif │ │ │ │ │ ├── logo_fredck.gif │ │ │ │ │ └── sponsors │ │ │ │ │ │ └── spellchecker_net.gif │ │ │ │ ├── fck_anchor.html │ │ │ │ ├── fck_button.html │ │ │ │ ├── fck_checkbox.html │ │ │ │ ├── fck_colorselector.html │ │ │ │ ├── fck_div.html │ │ │ │ ├── fck_docprops.html │ │ │ │ ├── fck_docprops │ │ │ │ │ └── fck_document_preview.html │ │ │ │ ├── fck_flash.html │ │ │ │ ├── fck_flash │ │ │ │ │ ├── fck_flash.js │ │ │ │ │ └── fck_flash_preview.html │ │ │ │ ├── fck_form.html │ │ │ │ ├── fck_hiddenfield.html │ │ │ │ ├── fck_image.html │ │ │ │ ├── fck_image │ │ │ │ │ ├── fck_image.js │ │ │ │ │ └── fck_image_preview.html │ │ │ │ ├── fck_link.html │ │ │ │ ├── fck_link │ │ │ │ │ └── fck_link.js │ │ │ │ ├── fck_listprop.html │ │ │ │ ├── fck_paste.html │ │ │ │ ├── fck_radiobutton.html │ │ │ │ ├── fck_replace.html │ │ │ │ ├── fck_scayt.html │ │ │ │ ├── fck_scayt │ │ │ │ │ └── scayt_dialog.css │ │ │ │ ├── fck_select.html │ │ │ │ ├── fck_select │ │ │ │ │ └── fck_select.js │ │ │ │ ├── fck_smiley.html │ │ │ │ ├── fck_source.html │ │ │ │ ├── fck_specialchar.html │ │ │ │ ├── fck_spellerpages.html │ │ │ │ ├── fck_spellerpages │ │ │ │ │ └── spellerpages │ │ │ │ │ │ ├── blank.html │ │ │ │ │ │ ├── controlWindow.js │ │ │ │ │ │ ├── controls.html │ │ │ │ │ │ ├── server-scripts │ │ │ │ │ │ ├── spellchecker.cfm │ │ │ │ │ │ ├── spellchecker.php │ │ │ │ │ │ └── spellchecker.pl │ │ │ │ │ │ ├── spellChecker.js │ │ │ │ │ │ ├── spellchecker.html │ │ │ │ │ │ ├── spellerStyle.css │ │ │ │ │ │ └── wordWindow.js │ │ │ │ ├── fck_table.html │ │ │ │ ├── fck_tablecell.html │ │ │ │ ├── fck_template.html │ │ │ │ ├── fck_template │ │ │ │ │ └── images │ │ │ │ │ │ ├── template1.gif │ │ │ │ │ │ ├── template2.gif │ │ │ │ │ │ └── template3.gif │ │ │ │ ├── fck_textarea.html │ │ │ │ └── fck_textfield.html │ │ │ ├── dtd │ │ │ │ ├── fck_dtd_test.html │ │ │ │ ├── fck_xhtml10strict.js │ │ │ │ └── fck_xhtml10transitional.js │ │ │ ├── fckdebug.html │ │ │ ├── fckdialog.html │ │ │ ├── fckeditor.html │ │ │ ├── fckeditor.original.html │ │ │ ├── filemanager │ │ │ │ ├── browser │ │ │ │ │ └── default │ │ │ │ │ │ ├── browser.css │ │ │ │ │ │ ├── browser.html │ │ │ │ │ │ ├── frmactualfolder.html │ │ │ │ │ │ ├── frmcreatefolder.html │ │ │ │ │ │ ├── frmfolders.html │ │ │ │ │ │ ├── frmresourceslist.html │ │ │ │ │ │ ├── frmresourcetype.html │ │ │ │ │ │ ├── frmupload.html │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ButtonArrow.gif │ │ │ │ │ │ ├── Folder.gif │ │ │ │ │ │ ├── Folder32.gif │ │ │ │ │ │ ├── FolderOpened.gif │ │ │ │ │ │ ├── FolderOpened32.gif │ │ │ │ │ │ ├── FolderUp.gif │ │ │ │ │ │ ├── icons │ │ │ │ │ │ │ ├── 32 │ │ │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ │ │ ├── htm.gif │ │ │ │ │ │ │ │ ├── html.gif │ │ │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ │ │ ├── png.gif │ │ │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ │ │ └── zip.gif │ │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ │ ├── htm.gif │ │ │ │ │ │ │ ├── html.gif │ │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ │ ├── png.gif │ │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ │ └── zip.gif │ │ │ │ │ │ └── spacer.gif │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ └── fckxml.js │ │ │ │ └── connectors │ │ │ │ │ └── php │ │ │ │ │ ├── basexml.php │ │ │ │ │ ├── commands.php │ │ │ │ │ ├── config.php │ │ │ │ │ ├── connector.php │ │ │ │ │ ├── io.php │ │ │ │ │ ├── phpcompat.php │ │ │ │ │ ├── upload.php │ │ │ │ │ └── util.php │ │ │ ├── images │ │ │ │ ├── anchor.gif │ │ │ │ ├── arrow_ltr.gif │ │ │ │ ├── arrow_rtl.gif │ │ │ │ ├── smiley │ │ │ │ │ └── msn │ │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ │ ├── cake.gif │ │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ │ ├── envelope.gif │ │ │ │ │ │ ├── heart.gif │ │ │ │ │ │ ├── kiss.gif │ │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ │ └── wink_smile.gif │ │ │ │ └── spacer.gif │ │ │ ├── js │ │ │ │ ├── fckadobeair.js │ │ │ │ ├── fckeditorcode_gecko.js │ │ │ │ └── fckeditorcode_ie.js │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-uk.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ ├── plugins │ │ │ │ ├── autogrow │ │ │ │ │ └── fckplugin.js │ │ │ │ ├── bbcode │ │ │ │ │ ├── _sample │ │ │ │ │ │ ├── sample.config.js │ │ │ │ │ │ └── sample.html │ │ │ │ │ └── fckplugin.js │ │ │ │ ├── dragresizetable │ │ │ │ │ └── fckplugin.js │ │ │ │ ├── placeholder │ │ │ │ │ ├── fck_placeholder.html │ │ │ │ │ ├── fckplugin.js │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ └── pl.js │ │ │ │ │ └── placeholder.gif │ │ │ │ ├── simplecommands │ │ │ │ │ └── fckplugin.js │ │ │ │ └── tablecommands │ │ │ │ │ └── fckplugin.js │ │ │ ├── skins │ │ │ │ ├── _fckviewstrips.html │ │ │ │ ├── default │ │ │ │ │ ├── fck_dialog.css │ │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ │ ├── fck_editor.css │ │ │ │ │ ├── fck_strip.gif │ │ │ │ │ └── images │ │ │ │ │ │ ├── dialog.sides.gif │ │ │ │ │ │ ├── dialog.sides.png │ │ │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ │ │ ├── sprites.gif │ │ │ │ │ │ ├── sprites.png │ │ │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ │ │ ├── toolbar.end.gif │ │ │ │ │ │ ├── toolbar.expand.gif │ │ │ │ │ │ ├── toolbar.separator.gif │ │ │ │ │ │ └── toolbar.start.gif │ │ │ │ ├── office2003 │ │ │ │ │ ├── fck_dialog.css │ │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ │ ├── fck_editor.css │ │ │ │ │ ├── fck_strip.gif │ │ │ │ │ └── images │ │ │ │ │ │ ├── dialog.sides.gif │ │ │ │ │ │ ├── dialog.sides.png │ │ │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ │ │ ├── sprites.gif │ │ │ │ │ │ ├── sprites.png │ │ │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ │ │ ├── toolbar.bg.gif │ │ │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ │ │ ├── toolbar.end.gif │ │ │ │ │ │ ├── toolbar.expand.gif │ │ │ │ │ │ ├── toolbar.separator.gif │ │ │ │ │ │ └── toolbar.start.gif │ │ │ │ └── silver │ │ │ │ │ ├── fck_dialog.css │ │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ │ ├── fck_editor.css │ │ │ │ │ ├── fck_strip.gif │ │ │ │ │ └── images │ │ │ │ │ ├── dialog.sides.gif │ │ │ │ │ ├── dialog.sides.png │ │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ │ ├── sprites.gif │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ │ ├── toolbar.buttonbg.gif │ │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ │ ├── toolbar.end.gif │ │ │ │ │ ├── toolbar.expand.gif │ │ │ │ │ ├── toolbar.separator.gif │ │ │ │ │ └── toolbar.start.gif │ │ │ └── wsc │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ └── w.html │ │ ├── fckconfig.js │ │ ├── fckeditor.js │ │ ├── fckeditor.php │ │ ├── fckeditor_php4.php │ │ ├── fckeditor_php5.php │ │ ├── fckpackager.xml │ │ ├── fckstyles.xml │ │ ├── fcktemplates.xml │ │ └── fckutils.cfm │ ├── gpl-2.0.txt │ ├── highlight │ │ ├── scripts │ │ │ ├── shAutoloader.js │ │ │ ├── shBrushAS3.js │ │ │ ├── shBrushAppleScript.js │ │ │ ├── shBrushBash.js │ │ │ ├── shBrushCSharp.js │ │ │ ├── shBrushColdFusion.js │ │ │ ├── shBrushCpp.js │ │ │ ├── shBrushCss.js │ │ │ ├── shBrushDelphi.js │ │ │ ├── shBrushDiff.js │ │ │ ├── shBrushErlang.js │ │ │ ├── shBrushGroovy.js │ │ │ ├── shBrushJScript.js │ │ │ ├── shBrushJava.js │ │ │ ├── shBrushJavaFX.js │ │ │ ├── shBrushPerl.js │ │ │ ├── shBrushPhp.js │ │ │ ├── shBrushPlain.js │ │ │ ├── shBrushPowerShell.js │ │ │ ├── shBrushPython.js │ │ │ ├── shBrushRuby.js │ │ │ ├── shBrushSass.js │ │ │ ├── shBrushScala.js │ │ │ ├── shBrushSql.js │ │ │ ├── shBrushVb.js │ │ │ ├── shBrushXml.js │ │ │ ├── shCore.js │ │ │ └── shLegacy.js │ │ └── styles │ │ │ ├── help.png │ │ │ ├── magnifier.png │ │ │ ├── page_white_code.png │ │ │ ├── page_white_copy.png │ │ │ ├── printer.png │ │ │ ├── shCore.css │ │ │ ├── shCoreDefault.css │ │ │ ├── shCoreDjango.css │ │ │ ├── shCoreEclipse.css │ │ │ ├── shCoreEmacs.css │ │ │ ├── shCoreFadeToGrey.css │ │ │ ├── shCoreMDUltra.css │ │ │ ├── shCoreMidnight.css │ │ │ ├── shCoreRDark.css │ │ │ ├── shThemeDefault.css │ │ │ ├── shThemeDjango.css │ │ │ ├── shThemeEclipse.css │ │ │ ├── shThemeEmacs.css │ │ │ ├── shThemeFadeToGrey.css │ │ │ ├── shThemeMDUltra.css │ │ │ ├── shThemeMidnight.css │ │ │ └── shThemeRDark.css │ ├── image │ │ ├── background.jpg │ │ ├── content.png │ │ ├── logo.png │ │ └── menu_bg.png │ ├── include │ │ ├── QQWry.Dat │ │ ├── Vera.ttf │ │ ├── cache_end.php │ │ ├── cache_start.php │ │ ├── check_get_key.php │ │ ├── check_post_key.php │ │ ├── checksource.js │ │ ├── const.inc.php │ │ ├── dark.css │ │ ├── db_info.inc.php │ │ ├── gcode.css │ │ ├── hoj.css │ │ ├── iplocation.php │ │ ├── memcache.php │ │ ├── my_func.inc.php │ │ ├── online.php │ │ ├── pie.js │ │ ├── problem.php │ │ ├── profile.php │ │ ├── set_get_key.php │ │ ├── set_post_key.php │ │ ├── simple_html_dom.php │ │ ├── sortTable.js │ │ ├── underlineTranslation.js │ │ └── wz_jsgraphics.js │ ├── index.php │ ├── lang │ │ ├── cn.php │ │ ├── en.php │ │ ├── fa.php │ │ ├── ko.php │ │ └── th.php │ ├── login.php │ ├── loginpage.php │ ├── logout.php │ ├── mail.php │ ├── modify.php │ ├── modifypage.php │ ├── oj-footer.php │ ├── oj-header.php │ ├── online.php │ ├── problem.php │ ├── problemset.php │ ├── problemstatus.php │ ├── ranklist.php │ ├── recent-contest.php │ ├── register.php │ ├── registerpage.php │ ├── reinfo.php │ ├── setlang.php │ ├── showsource.php │ ├── status.php │ ├── submit.php │ ├── submitpage.php │ ├── userinfo.php │ └── vcode.php ├── beta1.0 │ └── web │ │ ├── .buildpath │ │ ├── .htaccess │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.php.core.prefs │ │ ├── admin │ │ ├── admin-header.php │ │ ├── changepass.php │ │ ├── contest_add.php │ │ ├── contest_df_change.php │ │ ├── contest_edit.php │ │ ├── contest_list.php │ │ ├── contest_pr_change.php │ │ ├── index.php │ │ ├── menu.php │ │ ├── msg.txt │ │ ├── privilege_add.php │ │ ├── privilege_list.php │ │ ├── problem_add.php │ │ ├── problem_add_page.php │ │ ├── problem_df_change.php │ │ ├── problem_edit.php │ │ ├── problem_export.php │ │ ├── problem_export_xml.php │ │ ├── problem_import.php │ │ ├── problem_import_xml.php │ │ ├── problem_list.php │ │ ├── rejudge.php │ │ ├── setmsg.php │ │ └── source_give.php │ │ ├── bbs.php │ │ ├── ceinfo.php │ │ ├── contest-header.php │ │ ├── contest.php │ │ ├── contestrank.php │ │ ├── conteststatistics.php │ │ ├── faqs.php │ │ ├── fckeditor │ │ ├── editor │ │ │ ├── css │ │ │ │ ├── behaviors │ │ │ │ │ ├── disablehandles.htc │ │ │ │ │ └── showtableborders.htc │ │ │ │ ├── fck_editorarea.css │ │ │ │ ├── fck_internal.css │ │ │ │ ├── fck_showtableborders_gecko.css │ │ │ │ └── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ ├── block_pre.png │ │ │ │ │ ├── fck_anchor.gif │ │ │ │ │ ├── fck_flashlogo.gif │ │ │ │ │ ├── fck_hiddenfield.gif │ │ │ │ │ ├── fck_pagebreak.gif │ │ │ │ │ └── fck_plugin.gif │ │ │ ├── dialog │ │ │ │ ├── common │ │ │ │ │ ├── fck_dialog_common.css │ │ │ │ │ ├── fck_dialog_common.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── locked.gif │ │ │ │ │ │ ├── reset.gif │ │ │ │ │ │ └── unlocked.gif │ │ │ │ ├── fck_about.html │ │ │ │ ├── fck_about │ │ │ │ │ ├── logo_fckeditor.gif │ │ │ │ │ ├── logo_fredck.gif │ │ │ │ │ └── sponsors │ │ │ │ │ │ └── spellchecker_net.gif │ │ │ │ ├── fck_anchor.html │ │ │ │ ├── fck_button.html │ │ │ │ ├── fck_checkbox.html │ │ │ │ ├── fck_colorselector.html │ │ │ │ ├── fck_div.html │ │ │ │ ├── fck_docprops.html │ │ │ │ ├── fck_docprops │ │ │ │ │ └── fck_document_preview.html │ │ │ │ ├── fck_flash.html │ │ │ │ ├── fck_flash │ │ │ │ │ ├── fck_flash.js │ │ │ │ │ └── fck_flash_preview.html │ │ │ │ ├── fck_form.html │ │ │ │ ├── fck_hiddenfield.html │ │ │ │ ├── fck_image.html │ │ │ │ ├── fck_image │ │ │ │ │ ├── fck_image.js │ │ │ │ │ └── fck_image_preview.html │ │ │ │ ├── fck_link.html │ │ │ │ ├── fck_link │ │ │ │ │ └── fck_link.js │ │ │ │ ├── fck_listprop.html │ │ │ │ ├── fck_paste.html │ │ │ │ ├── fck_radiobutton.html │ │ │ │ ├── fck_replace.html │ │ │ │ ├── fck_scayt.html │ │ │ │ ├── fck_scayt │ │ │ │ │ └── scayt_dialog.css │ │ │ │ ├── fck_select.html │ │ │ │ ├── fck_select │ │ │ │ │ └── fck_select.js │ │ │ │ ├── fck_smiley.html │ │ │ │ ├── fck_source.html │ │ │ │ ├── fck_specialchar.html │ │ │ │ ├── fck_spellerpages.html │ │ │ │ ├── fck_spellerpages │ │ │ │ │ └── spellerpages │ │ │ │ │ │ ├── blank.html │ │ │ │ │ │ ├── controlWindow.js │ │ │ │ │ │ ├── controls.html │ │ │ │ │ │ ├── server-scripts │ │ │ │ │ │ ├── spellchecker.cfm │ │ │ │ │ │ ├── spellchecker.php │ │ │ │ │ │ └── spellchecker.pl │ │ │ │ │ │ ├── spellChecker.js │ │ │ │ │ │ ├── spellchecker.html │ │ │ │ │ │ ├── spellerStyle.css │ │ │ │ │ │ └── wordWindow.js │ │ │ │ ├── fck_table.html │ │ │ │ ├── fck_tablecell.html │ │ │ │ ├── fck_template.html │ │ │ │ ├── fck_template │ │ │ │ │ └── images │ │ │ │ │ │ ├── template1.gif │ │ │ │ │ │ ├── template2.gif │ │ │ │ │ │ └── template3.gif │ │ │ │ ├── fck_textarea.html │ │ │ │ └── fck_textfield.html │ │ │ ├── dtd │ │ │ │ ├── fck_dtd_test.html │ │ │ │ ├── fck_xhtml10strict.js │ │ │ │ └── fck_xhtml10transitional.js │ │ │ ├── fckdebug.html │ │ │ ├── fckdialog.html │ │ │ ├── fckeditor.html │ │ │ ├── fckeditor.original.html │ │ │ ├── filemanager │ │ │ │ ├── browser │ │ │ │ │ └── default │ │ │ │ │ │ ├── browser.css │ │ │ │ │ │ ├── browser.html │ │ │ │ │ │ ├── frmactualfolder.html │ │ │ │ │ │ ├── frmcreatefolder.html │ │ │ │ │ │ ├── frmfolders.html │ │ │ │ │ │ ├── frmresourceslist.html │ │ │ │ │ │ ├── frmresourcetype.html │ │ │ │ │ │ ├── frmupload.html │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ButtonArrow.gif │ │ │ │ │ │ ├── Folder.gif │ │ │ │ │ │ ├── Folder32.gif │ │ │ │ │ │ ├── FolderOpened.gif │ │ │ │ │ │ ├── FolderOpened32.gif │ │ │ │ │ │ ├── FolderUp.gif │ │ │ │ │ │ ├── icons │ │ │ │ │ │ │ ├── 32 │ │ │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ │ │ ├── htm.gif │ │ │ │ │ │ │ │ ├── html.gif │ │ │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ │ │ ├── png.gif │ │ │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ │ │ └── zip.gif │ │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ │ ├── htm.gif │ │ │ │ │ │ │ ├── html.gif │ │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ │ ├── png.gif │ │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ │ └── zip.gif │ │ │ │ │ │ └── spacer.gif │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ └── fckxml.js │ │ │ │ └── connectors │ │ │ │ │ ├── php │ │ │ │ │ ├── basexml.php │ │ │ │ │ ├── commands.php │ │ │ │ │ ├── config.php │ │ │ │ │ ├── connector.php │ │ │ │ │ ├── io.php │ │ │ │ │ ├── phpcompat.php │ │ │ │ │ ├── upload.php │ │ │ │ │ └── util.php │ │ │ │ │ ├── test.html │ │ │ │ │ └── uploadtest.html │ │ │ ├── images │ │ │ │ ├── anchor.gif │ │ │ │ ├── arrow_ltr.gif │ │ │ │ ├── arrow_rtl.gif │ │ │ │ ├── smiley │ │ │ │ │ └── msn │ │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ │ ├── cake.gif │ │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ │ ├── envelope.gif │ │ │ │ │ │ ├── heart.gif │ │ │ │ │ │ ├── kiss.gif │ │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ │ └── wink_smile.gif │ │ │ │ └── spacer.gif │ │ │ ├── js │ │ │ │ ├── fckadobeair.js │ │ │ │ ├── fckeditorcode_gecko.js │ │ │ │ └── fckeditorcode_ie.js │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-uk.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ ├── plugins │ │ │ │ ├── autogrow │ │ │ │ │ └── fckplugin.js │ │ │ │ ├── bbcode │ │ │ │ │ ├── _sample │ │ │ │ │ │ ├── sample.config.js │ │ │ │ │ │ └── sample.html │ │ │ │ │ └── fckplugin.js │ │ │ │ ├── dragresizetable │ │ │ │ │ └── fckplugin.js │ │ │ │ ├── placeholder │ │ │ │ │ ├── fck_placeholder.html │ │ │ │ │ ├── fckplugin.js │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ └── pl.js │ │ │ │ │ └── placeholder.gif │ │ │ │ ├── simplecommands │ │ │ │ │ └── fckplugin.js │ │ │ │ └── tablecommands │ │ │ │ │ └── fckplugin.js │ │ │ ├── skins │ │ │ │ ├── _fckviewstrips.html │ │ │ │ ├── default │ │ │ │ │ ├── fck_dialog.css │ │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ │ ├── fck_editor.css │ │ │ │ │ ├── fck_strip.gif │ │ │ │ │ └── images │ │ │ │ │ │ ├── dialog.sides.gif │ │ │ │ │ │ ├── dialog.sides.png │ │ │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ │ │ ├── sprites.gif │ │ │ │ │ │ ├── sprites.png │ │ │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ │ │ ├── toolbar.end.gif │ │ │ │ │ │ ├── toolbar.expand.gif │ │ │ │ │ │ ├── toolbar.separator.gif │ │ │ │ │ │ └── toolbar.start.gif │ │ │ │ ├── office2003 │ │ │ │ │ ├── fck_dialog.css │ │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ │ ├── fck_editor.css │ │ │ │ │ ├── fck_strip.gif │ │ │ │ │ └── images │ │ │ │ │ │ ├── dialog.sides.gif │ │ │ │ │ │ ├── dialog.sides.png │ │ │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ │ │ ├── sprites.gif │ │ │ │ │ │ ├── sprites.png │ │ │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ │ │ ├── toolbar.bg.gif │ │ │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ │ │ ├── toolbar.end.gif │ │ │ │ │ │ ├── toolbar.expand.gif │ │ │ │ │ │ ├── toolbar.separator.gif │ │ │ │ │ │ └── toolbar.start.gif │ │ │ │ └── silver │ │ │ │ │ ├── fck_dialog.css │ │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ │ ├── fck_editor.css │ │ │ │ │ ├── fck_strip.gif │ │ │ │ │ └── images │ │ │ │ │ ├── dialog.sides.gif │ │ │ │ │ ├── dialog.sides.png │ │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ │ ├── sprites.gif │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ │ ├── toolbar.buttonbg.gif │ │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ │ ├── toolbar.end.gif │ │ │ │ │ ├── toolbar.expand.gif │ │ │ │ │ ├── toolbar.separator.gif │ │ │ │ │ └── toolbar.start.gif │ │ │ └── wsc │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ └── w.html │ │ ├── fckconfig.js │ │ ├── fckeditor.js │ │ ├── fckeditor.php │ │ ├── fckeditor_php4.php │ │ ├── fckeditor_php5.php │ │ ├── fckpackager.xml │ │ ├── fckstyles.xml │ │ ├── fcktemplates.xml │ │ └── fckutils.cfm │ │ ├── highlight │ │ ├── scripts │ │ │ ├── clipboard.swf │ │ │ ├── shBrushAS3.js │ │ │ ├── shBrushBash.js │ │ │ ├── shBrushCSharp.js │ │ │ ├── shBrushColdFusion.js │ │ │ ├── shBrushCpp.js │ │ │ ├── shBrushCss.js │ │ │ ├── shBrushDelphi.js │ │ │ ├── shBrushDiff.js │ │ │ ├── shBrushErlang.js │ │ │ ├── shBrushGroovy.js │ │ │ ├── shBrushJScript.js │ │ │ ├── shBrushJava.js │ │ │ ├── shBrushJavaFX.js │ │ │ ├── shBrushPerl.js │ │ │ ├── shBrushPhp.js │ │ │ ├── shBrushPlain.js │ │ │ ├── shBrushPowerShell.js │ │ │ ├── shBrushPython.js │ │ │ ├── shBrushRuby.js │ │ │ ├── shBrushScala.js │ │ │ ├── shBrushSql.js │ │ │ ├── shBrushVb.js │ │ │ ├── shBrushXml.js │ │ │ ├── shCore.js │ │ │ └── shLegacy.js │ │ └── styles │ │ │ ├── help.png │ │ │ ├── magnifier.png │ │ │ ├── page_white_code.png │ │ │ ├── page_white_copy.png │ │ │ ├── printer.png │ │ │ ├── shCore.css │ │ │ ├── shThemeDefault.css │ │ │ ├── shThemeDjango.css │ │ │ ├── shThemeEclipse.css │ │ │ ├── shThemeEmacs.css │ │ │ ├── shThemeFadeToGrey.css │ │ │ ├── shThemeMidnight.css │ │ │ └── shThemeRDark.css │ │ ├── include │ │ ├── checksource.js │ │ ├── const.inc.php │ │ ├── db_info.inc.php │ │ ├── hoj.css │ │ ├── my_func.inc.php │ │ ├── online.php │ │ └── problem.php │ │ ├── index.php │ │ ├── login.php │ │ ├── loginpage.php │ │ ├── logout.php │ │ ├── modify.php │ │ ├── modifypage.php │ │ ├── oj-footer.php │ │ ├── oj-header.php │ │ ├── online.php │ │ ├── phpinfo.php │ │ ├── problem.php │ │ ├── problemset.php │ │ ├── problemstatus.php │ │ ├── ranklist.php │ │ ├── register.php │ │ ├── registerpage.php │ │ ├── showsource.php │ │ ├── status.php │ │ ├── submit.php │ │ ├── submitpage.php │ │ ├── test.php │ │ └── userinfo.php ├── beta1.1 │ └── web │ │ ├── .htaccess │ │ ├── admin │ │ ├── admin-header.php │ │ ├── changepass.php │ │ ├── contest_add.php │ │ ├── contest_df_change.php │ │ ├── contest_edit.php │ │ ├── contest_list.php │ │ ├── contest_pr_change.php │ │ ├── index.php │ │ ├── menu.php │ │ ├── msg.txt │ │ ├── privilege_add.php │ │ ├── privilege_list.php │ │ ├── problem_add.php │ │ ├── problem_add_page.php │ │ ├── problem_df_change.php │ │ ├── problem_edit.php │ │ ├── problem_export.php │ │ ├── problem_export_xml.php │ │ ├── problem_import.php │ │ ├── problem_import_xml.php │ │ ├── problem_list.php │ │ ├── rejudge.php │ │ ├── setmsg.php │ │ └── source_give.php │ │ ├── bbs.php │ │ ├── ceinfo.php │ │ ├── contest-header.php │ │ ├── contest.php │ │ ├── contestrank.php │ │ ├── conteststatistics.php │ │ ├── faqs.php │ │ ├── fckeditor │ │ ├── editor │ │ │ ├── css │ │ │ │ ├── behaviors │ │ │ │ │ ├── disablehandles.htc │ │ │ │ │ └── showtableborders.htc │ │ │ │ ├── fck_editorarea.css │ │ │ │ ├── fck_internal.css │ │ │ │ ├── fck_showtableborders_gecko.css │ │ │ │ └── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ ├── block_pre.png │ │ │ │ │ ├── fck_anchor.gif │ │ │ │ │ ├── fck_flashlogo.gif │ │ │ │ │ ├── fck_hiddenfield.gif │ │ │ │ │ ├── fck_pagebreak.gif │ │ │ │ │ └── fck_plugin.gif │ │ │ ├── dialog │ │ │ │ ├── common │ │ │ │ │ ├── fck_dialog_common.css │ │ │ │ │ ├── fck_dialog_common.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── locked.gif │ │ │ │ │ │ ├── reset.gif │ │ │ │ │ │ └── unlocked.gif │ │ │ │ ├── fck_about.html │ │ │ │ ├── fck_about │ │ │ │ │ ├── logo_fckeditor.gif │ │ │ │ │ ├── logo_fredck.gif │ │ │ │ │ └── sponsors │ │ │ │ │ │ └── spellchecker_net.gif │ │ │ │ ├── fck_anchor.html │ │ │ │ ├── fck_button.html │ │ │ │ ├── fck_checkbox.html │ │ │ │ ├── fck_colorselector.html │ │ │ │ ├── fck_div.html │ │ │ │ ├── fck_docprops.html │ │ │ │ ├── fck_docprops │ │ │ │ │ └── fck_document_preview.html │ │ │ │ ├── fck_flash.html │ │ │ │ ├── fck_flash │ │ │ │ │ ├── fck_flash.js │ │ │ │ │ └── fck_flash_preview.html │ │ │ │ ├── fck_form.html │ │ │ │ ├── fck_hiddenfield.html │ │ │ │ ├── fck_image.html │ │ │ │ ├── fck_image │ │ │ │ │ ├── fck_image.js │ │ │ │ │ └── fck_image_preview.html │ │ │ │ ├── fck_link.html │ │ │ │ ├── fck_link │ │ │ │ │ └── fck_link.js │ │ │ │ ├── fck_listprop.html │ │ │ │ ├── fck_paste.html │ │ │ │ ├── fck_radiobutton.html │ │ │ │ ├── fck_replace.html │ │ │ │ ├── fck_scayt.html │ │ │ │ ├── fck_scayt │ │ │ │ │ └── scayt_dialog.css │ │ │ │ ├── fck_select.html │ │ │ │ ├── fck_select │ │ │ │ │ └── fck_select.js │ │ │ │ ├── fck_smiley.html │ │ │ │ ├── fck_source.html │ │ │ │ ├── fck_specialchar.html │ │ │ │ ├── fck_spellerpages.html │ │ │ │ ├── fck_spellerpages │ │ │ │ │ └── spellerpages │ │ │ │ │ │ ├── blank.html │ │ │ │ │ │ ├── controlWindow.js │ │ │ │ │ │ ├── controls.html │ │ │ │ │ │ ├── server-scripts │ │ │ │ │ │ ├── spellchecker.cfm │ │ │ │ │ │ ├── spellchecker.php │ │ │ │ │ │ └── spellchecker.pl │ │ │ │ │ │ ├── spellChecker.js │ │ │ │ │ │ ├── spellchecker.html │ │ │ │ │ │ ├── spellerStyle.css │ │ │ │ │ │ └── wordWindow.js │ │ │ │ ├── fck_table.html │ │ │ │ ├── fck_tablecell.html │ │ │ │ ├── fck_template.html │ │ │ │ ├── fck_template │ │ │ │ │ └── images │ │ │ │ │ │ ├── template1.gif │ │ │ │ │ │ ├── template2.gif │ │ │ │ │ │ └── template3.gif │ │ │ │ ├── fck_textarea.html │ │ │ │ └── fck_textfield.html │ │ │ ├── dtd │ │ │ │ ├── fck_dtd_test.html │ │ │ │ ├── fck_xhtml10strict.js │ │ │ │ └── fck_xhtml10transitional.js │ │ │ ├── fckdebug.html │ │ │ ├── fckdialog.html │ │ │ ├── fckeditor.html │ │ │ ├── fckeditor.original.html │ │ │ ├── filemanager │ │ │ │ ├── browser │ │ │ │ │ └── default │ │ │ │ │ │ ├── browser.css │ │ │ │ │ │ ├── browser.html │ │ │ │ │ │ ├── frmactualfolder.html │ │ │ │ │ │ ├── frmcreatefolder.html │ │ │ │ │ │ ├── frmfolders.html │ │ │ │ │ │ ├── frmresourceslist.html │ │ │ │ │ │ ├── frmresourcetype.html │ │ │ │ │ │ ├── frmupload.html │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ButtonArrow.gif │ │ │ │ │ │ ├── Folder.gif │ │ │ │ │ │ ├── Folder32.gif │ │ │ │ │ │ ├── FolderOpened.gif │ │ │ │ │ │ ├── FolderOpened32.gif │ │ │ │ │ │ ├── FolderUp.gif │ │ │ │ │ │ ├── icons │ │ │ │ │ │ │ ├── 32 │ │ │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ │ │ ├── htm.gif │ │ │ │ │ │ │ │ ├── html.gif │ │ │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ │ │ ├── png.gif │ │ │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ │ │ └── zip.gif │ │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ │ ├── htm.gif │ │ │ │ │ │ │ ├── html.gif │ │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ │ ├── png.gif │ │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ │ └── zip.gif │ │ │ │ │ │ └── spacer.gif │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ └── fckxml.js │ │ │ │ └── connectors │ │ │ │ │ ├── php │ │ │ │ │ ├── basexml.php │ │ │ │ │ ├── commands.php │ │ │ │ │ ├── config.php │ │ │ │ │ ├── connector.php │ │ │ │ │ ├── io.php │ │ │ │ │ ├── phpcompat.php │ │ │ │ │ ├── upload.php │ │ │ │ │ └── util.php │ │ │ │ │ ├── test.html │ │ │ │ │ └── uploadtest.html │ │ │ ├── images │ │ │ │ ├── anchor.gif │ │ │ │ ├── arrow_ltr.gif │ │ │ │ ├── arrow_rtl.gif │ │ │ │ ├── smiley │ │ │ │ │ └── msn │ │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ │ ├── cake.gif │ │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ │ ├── envelope.gif │ │ │ │ │ │ ├── heart.gif │ │ │ │ │ │ ├── kiss.gif │ │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ │ └── wink_smile.gif │ │ │ │ └── spacer.gif │ │ │ ├── js │ │ │ │ ├── fckadobeair.js │ │ │ │ ├── fckeditorcode_gecko.js │ │ │ │ └── fckeditorcode_ie.js │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-uk.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ ├── plugins │ │ │ │ ├── autogrow │ │ │ │ │ └── fckplugin.js │ │ │ │ ├── bbcode │ │ │ │ │ ├── _sample │ │ │ │ │ │ ├── sample.config.js │ │ │ │ │ │ └── sample.html │ │ │ │ │ └── fckplugin.js │ │ │ │ ├── dragresizetable │ │ │ │ │ └── fckplugin.js │ │ │ │ ├── placeholder │ │ │ │ │ ├── fck_placeholder.html │ │ │ │ │ ├── fckplugin.js │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ └── pl.js │ │ │ │ │ └── placeholder.gif │ │ │ │ ├── simplecommands │ │ │ │ │ └── fckplugin.js │ │ │ │ └── tablecommands │ │ │ │ │ └── fckplugin.js │ │ │ ├── skins │ │ │ │ ├── _fckviewstrips.html │ │ │ │ ├── default │ │ │ │ │ ├── fck_dialog.css │ │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ │ ├── fck_editor.css │ │ │ │ │ ├── fck_strip.gif │ │ │ │ │ └── images │ │ │ │ │ │ ├── dialog.sides.gif │ │ │ │ │ │ ├── dialog.sides.png │ │ │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ │ │ ├── sprites.gif │ │ │ │ │ │ ├── sprites.png │ │ │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ │ │ ├── toolbar.end.gif │ │ │ │ │ │ ├── toolbar.expand.gif │ │ │ │ │ │ ├── toolbar.separator.gif │ │ │ │ │ │ └── toolbar.start.gif │ │ │ │ ├── office2003 │ │ │ │ │ ├── fck_dialog.css │ │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ │ ├── fck_editor.css │ │ │ │ │ ├── fck_strip.gif │ │ │ │ │ └── images │ │ │ │ │ │ ├── dialog.sides.gif │ │ │ │ │ │ ├── dialog.sides.png │ │ │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ │ │ ├── sprites.gif │ │ │ │ │ │ ├── sprites.png │ │ │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ │ │ ├── toolbar.bg.gif │ │ │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ │ │ ├── toolbar.end.gif │ │ │ │ │ │ ├── toolbar.expand.gif │ │ │ │ │ │ ├── toolbar.separator.gif │ │ │ │ │ │ └── toolbar.start.gif │ │ │ │ └── silver │ │ │ │ │ ├── fck_dialog.css │ │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ │ ├── fck_editor.css │ │ │ │ │ ├── fck_strip.gif │ │ │ │ │ └── images │ │ │ │ │ ├── dialog.sides.gif │ │ │ │ │ ├── dialog.sides.png │ │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ │ ├── sprites.gif │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ │ ├── toolbar.buttonbg.gif │ │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ │ ├── toolbar.end.gif │ │ │ │ │ ├── toolbar.expand.gif │ │ │ │ │ ├── toolbar.separator.gif │ │ │ │ │ └── toolbar.start.gif │ │ │ └── wsc │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ └── w.html │ │ ├── fckconfig.js │ │ ├── fckeditor.js │ │ ├── fckeditor.php │ │ ├── fckeditor_php4.php │ │ ├── fckeditor_php5.php │ │ ├── fckpackager.xml │ │ ├── fckstyles.xml │ │ ├── fcktemplates.xml │ │ └── fckutils.cfm │ │ ├── highlight │ │ ├── scripts │ │ │ ├── clipboard.swf │ │ │ ├── shBrushAS3.js │ │ │ ├── shBrushBash.js │ │ │ ├── shBrushCSharp.js │ │ │ ├── shBrushColdFusion.js │ │ │ ├── shBrushCpp.js │ │ │ ├── shBrushCss.js │ │ │ ├── shBrushDelphi.js │ │ │ ├── shBrushDiff.js │ │ │ ├── shBrushErlang.js │ │ │ ├── shBrushGroovy.js │ │ │ ├── shBrushJScript.js │ │ │ ├── shBrushJava.js │ │ │ ├── shBrushJavaFX.js │ │ │ ├── shBrushPerl.js │ │ │ ├── shBrushPhp.js │ │ │ ├── shBrushPlain.js │ │ │ ├── shBrushPowerShell.js │ │ │ ├── shBrushPython.js │ │ │ ├── shBrushRuby.js │ │ │ ├── shBrushScala.js │ │ │ ├── shBrushSql.js │ │ │ ├── shBrushVb.js │ │ │ ├── shBrushXml.js │ │ │ ├── shCore.js │ │ │ └── shLegacy.js │ │ └── styles │ │ │ ├── help.png │ │ │ ├── magnifier.png │ │ │ ├── page_white_code.png │ │ │ ├── page_white_copy.png │ │ │ ├── printer.png │ │ │ ├── shCore.css │ │ │ ├── shThemeDefault.css │ │ │ ├── shThemeDjango.css │ │ │ ├── shThemeEclipse.css │ │ │ ├── shThemeEmacs.css │ │ │ ├── shThemeFadeToGrey.css │ │ │ ├── shThemeMidnight.css │ │ │ └── shThemeRDark.css │ │ ├── include │ │ ├── checksource.js │ │ ├── const.inc.php │ │ ├── db_info.inc.php │ │ ├── hoj.css │ │ ├── my_func.inc.php │ │ ├── online.php │ │ └── problem.php │ │ ├── index.php │ │ ├── login.php │ │ ├── loginpage.php │ │ ├── logout.php │ │ ├── modify.php │ │ ├── modifypage.php │ │ ├── oj-footer.php │ │ ├── oj-header.php │ │ ├── online.php │ │ ├── phpinfo.php │ │ ├── problem.php │ │ ├── problemset.php │ │ ├── problemstatus.php │ │ ├── ranklist.php │ │ ├── register.php │ │ ├── registerpage.php │ │ ├── showsource.php │ │ ├── status.php │ │ ├── submit.php │ │ ├── submitpage.php │ │ ├── test.php │ │ └── userinfo.php └── template-alpha │ ├── admin │ ├── admin-header.php │ ├── changepass.php │ ├── contest_add.php │ ├── contest_df_change.php │ ├── contest_edit.php │ ├── contest_list.php │ ├── contest_pr_change.php │ ├── index.php │ ├── menu.php │ ├── moodle_judge.php │ ├── msg.txt │ ├── news_add.php │ ├── news_add_page.php │ ├── news_df_change.php │ ├── news_edit.php │ ├── news_list.php │ ├── privilege_add.php │ ├── privilege_delete.php │ ├── privilege_list.php │ ├── problem_add.php │ ├── problem_add_page.php │ ├── problem_add_page_hdu.php │ ├── problem_add_page_pku.php │ ├── problem_add_page_waterloo.php │ ├── problem_changeid.php │ ├── problem_copy.php │ ├── problem_del.php │ ├── problem_df_change.php │ ├── problem_edit.php │ ├── problem_export.php │ ├── problem_export_xml.php │ ├── problem_import.php │ ├── problem_import_xml.php │ ├── problem_judge.php │ ├── problem_list.php │ ├── quixplorer │ │ ├── .config │ │ │ ├── .htaccess │ │ │ ├── .htusers.php │ │ │ ├── conf.php │ │ │ └── mimes.php │ │ ├── .include │ │ │ ├── .htaccess │ │ │ ├── error.php │ │ │ ├── footer.php │ │ │ ├── fun_admin.php │ │ │ ├── fun_archive.php │ │ │ ├── fun_chmod.php │ │ │ ├── fun_copy_move.php │ │ │ ├── fun_del.php │ │ │ ├── fun_down.php │ │ │ ├── fun_edit.php │ │ │ ├── fun_extra.php │ │ │ ├── fun_list.php │ │ │ ├── fun_mkitem.php │ │ │ ├── fun_search.php │ │ │ ├── fun_up.php │ │ │ ├── header.php │ │ │ ├── init.php │ │ │ ├── javascript.php │ │ │ ├── js_admin.php │ │ │ ├── js_admin2.php │ │ │ ├── js_admin3.php │ │ │ ├── login.php │ │ │ ├── permissions.php │ │ │ └── user.php │ │ ├── _img │ │ │ ├── _.gif │ │ │ ├── __copy.gif │ │ │ ├── __cut.gif │ │ │ ├── __paste.gif │ │ │ ├── _admin.gif │ │ │ ├── _archive.gif │ │ │ ├── _arrowdown.gif │ │ │ ├── _arrowup.gif │ │ │ ├── _copy.gif │ │ │ ├── _copy_.gif │ │ │ ├── _delete.gif │ │ │ ├── _delete_.gif │ │ │ ├── _download.gif │ │ │ ├── _download_.gif │ │ │ ├── _edit.gif │ │ │ ├── _edit_.gif │ │ │ ├── _home.gif │ │ │ ├── _info.gif │ │ │ ├── _logout.gif │ │ │ ├── _move.gif │ │ │ ├── _move_.gif │ │ │ ├── _refresh.gif │ │ │ ├── _search.gif │ │ │ ├── _up.gif │ │ │ ├── _upload.gif │ │ │ ├── _upload_.gif │ │ │ ├── cpp.gif │ │ │ ├── dir.gif │ │ │ ├── exe.gif │ │ │ ├── file.gif │ │ │ ├── flash.gif │ │ │ ├── h.gif │ │ │ ├── html.gif │ │ │ ├── image.gif │ │ │ ├── java.gif │ │ │ ├── js.gif │ │ │ ├── midi.gif │ │ │ ├── mp3.gif │ │ │ ├── pdf.gif │ │ │ ├── php.gif │ │ │ ├── pl.gif │ │ │ ├── real.gif │ │ │ ├── sound.gif │ │ │ ├── spread.gif │ │ │ ├── src.gif │ │ │ ├── tar.gif │ │ │ ├── tgz.gif │ │ │ ├── txt.gif │ │ │ ├── video.gif │ │ │ ├── word.gif │ │ │ └── zip.gif │ │ ├── _lang │ │ │ ├── _info.php │ │ │ ├── bg.php │ │ │ ├── bg_mimes.php │ │ │ ├── cs.php │ │ │ ├── cs_mimes.php │ │ │ ├── da.php │ │ │ ├── da_mimes.php │ │ │ ├── de.php │ │ │ ├── de_mimes.php │ │ │ ├── en.php │ │ │ ├── en_mimes.php │ │ │ ├── es.php │ │ │ ├── es_mimes.php │ │ │ ├── fr.php │ │ │ ├── fr_mimes.php │ │ │ ├── it.php │ │ │ ├── it_mimes.php │ │ │ ├── nl.php │ │ │ ├── nl_mimes.php │ │ │ ├── pl.php │ │ │ ├── pl_mimes.php │ │ │ ├── ptbr.php │ │ │ ├── ptbr_mimes.php │ │ │ ├── ro.php │ │ │ ├── ro_mimes.php │ │ │ ├── ru.php │ │ │ └── ru_mimes.php │ │ ├── _lib │ │ │ └── lib_zip.php │ │ ├── _style │ │ │ ├── style.css │ │ │ └── tablebg.gif │ │ ├── index.php │ │ ├── license.txt │ │ ├── permissions.txt │ │ ├── readme.txt │ │ └── release.txt │ ├── rejudge.php │ ├── setmsg.php │ ├── source_give.php │ ├── team_generate.php │ ├── update_db.php │ └── update_pw.php │ ├── bbs.php │ ├── bbs │ └── README │ ├── ceinfo.php │ ├── contest-header.php │ ├── contest.php │ ├── contestrank.php │ ├── contestrank.xls.php │ ├── conteststatistics.php │ ├── discuss │ ├── contest-header.php │ ├── discuss.php │ ├── discuss.sql │ ├── discuss_func.inc.php │ ├── hoj.css │ ├── index.php │ ├── newpost.php │ ├── oj-header.php │ ├── post.php │ ├── superthread.php │ ├── thread.php │ └── threadadmin.php │ ├── edit_area │ ├── autocompletion.js │ ├── edit_area.css │ ├── edit_area.js │ ├── edit_area_compressor.php │ ├── edit_area_full.gz │ ├── edit_area_full.js │ ├── edit_area_functions.js │ ├── edit_area_loader.js │ ├── elements_functions.js │ ├── highlight.js │ ├── images │ │ ├── autocompletion.gif │ │ ├── close.gif │ │ ├── fullscreen.gif │ │ ├── go_to_line.gif │ │ ├── help.gif │ │ ├── highlight.gif │ │ ├── load.gif │ │ ├── move.gif │ │ ├── newdocument.gif │ │ ├── opacity.png │ │ ├── processing.gif │ │ ├── redo.gif │ │ ├── reset_highlight.gif │ │ ├── save.gif │ │ ├── search.gif │ │ ├── smooth_selection.gif │ │ ├── spacer.gif │ │ ├── statusbar_resize.gif │ │ ├── undo.gif │ │ └── word_wrap.gif │ ├── keyboard.js │ ├── langs │ │ ├── bg.js │ │ ├── cs.js │ │ ├── de.js │ │ ├── dk.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── hr.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── mk.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── pt.js │ │ ├── ru.js │ │ ├── sk.js │ │ └── zh.js │ ├── license_apache.txt │ ├── license_bsd.txt │ ├── license_lgpl.txt │ ├── manage_area.js │ ├── plugins │ │ ├── charmap │ │ │ ├── charmap.js │ │ │ ├── css │ │ │ │ └── charmap.css │ │ │ ├── images │ │ │ │ └── charmap.gif │ │ │ ├── jscripts │ │ │ │ └── map.js │ │ │ ├── langs │ │ │ │ ├── bg.js │ │ │ │ ├── cs.js │ │ │ │ ├── de.js │ │ │ │ ├── dk.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── fr.js │ │ │ │ ├── hr.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── mk.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ └── zh.js │ │ │ └── popup.html │ │ └── test │ │ │ ├── css │ │ │ └── test.css │ │ │ ├── images │ │ │ ├── Thumbs.db │ │ │ └── test.gif │ │ │ ├── langs │ │ │ ├── bg.js │ │ │ ├── cs.js │ │ │ ├── de.js │ │ │ ├── dk.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── fr.js │ │ │ ├── hr.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── mk.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ └── zh.js │ │ │ ├── test.js │ │ │ └── test2.js │ ├── reg_syntax.js │ ├── reg_syntax │ │ ├── basic.js │ │ ├── brainfuck.js │ │ ├── c.js │ │ ├── coldfusion.js │ │ ├── cpp.js │ │ ├── css.js │ │ ├── html.js │ │ ├── java.js │ │ ├── js.js │ │ ├── pas.js │ │ ├── perl.js │ │ ├── php.js │ │ ├── python.js │ │ ├── robotstxt.js │ │ ├── ruby.js │ │ ├── sql.js │ │ ├── tsql.js │ │ ├── vb.js │ │ └── xml.js │ ├── regexp.js │ ├── resize_area.js │ ├── search_replace.js │ └── template.html │ ├── export_ac_code.php │ ├── faqs.cn.php │ ├── faqs.ko.php │ ├── faqs.php │ ├── fckeditor │ ├── editor │ │ ├── css │ │ │ ├── behaviors │ │ │ │ ├── disablehandles.htc │ │ │ │ └── showtableborders.htc │ │ │ ├── fck_editorarea.css │ │ │ ├── fck_internal.css │ │ │ ├── fck_showtableborders_gecko.css │ │ │ └── images │ │ │ │ ├── block_address.png │ │ │ │ ├── block_blockquote.png │ │ │ │ ├── block_div.png │ │ │ │ ├── block_h1.png │ │ │ │ ├── block_h2.png │ │ │ │ ├── block_h3.png │ │ │ │ ├── block_h4.png │ │ │ │ ├── block_h5.png │ │ │ │ ├── block_h6.png │ │ │ │ ├── block_p.png │ │ │ │ ├── block_pre.png │ │ │ │ ├── fck_anchor.gif │ │ │ │ ├── fck_flashlogo.gif │ │ │ │ ├── fck_hiddenfield.gif │ │ │ │ ├── fck_pagebreak.gif │ │ │ │ └── fck_plugin.gif │ │ ├── dialog │ │ │ ├── common │ │ │ │ ├── fck_dialog_common.css │ │ │ │ ├── fck_dialog_common.js │ │ │ │ └── images │ │ │ │ │ ├── locked.gif │ │ │ │ │ ├── reset.gif │ │ │ │ │ └── unlocked.gif │ │ │ ├── fck_about.html │ │ │ ├── fck_about │ │ │ │ ├── logo_fckeditor.gif │ │ │ │ ├── logo_fredck.gif │ │ │ │ └── sponsors │ │ │ │ │ └── spellchecker_net.gif │ │ │ ├── fck_anchor.html │ │ │ ├── fck_button.html │ │ │ ├── fck_checkbox.html │ │ │ ├── fck_colorselector.html │ │ │ ├── fck_div.html │ │ │ ├── fck_docprops.html │ │ │ ├── fck_docprops │ │ │ │ └── fck_document_preview.html │ │ │ ├── fck_flash.html │ │ │ ├── fck_flash │ │ │ │ ├── fck_flash.js │ │ │ │ └── fck_flash_preview.html │ │ │ ├── fck_form.html │ │ │ ├── fck_hiddenfield.html │ │ │ ├── fck_image.html │ │ │ ├── fck_image │ │ │ │ ├── fck_image.js │ │ │ │ └── fck_image_preview.html │ │ │ ├── fck_link.html │ │ │ ├── fck_link │ │ │ │ └── fck_link.js │ │ │ ├── fck_listprop.html │ │ │ ├── fck_paste.html │ │ │ ├── fck_radiobutton.html │ │ │ ├── fck_replace.html │ │ │ ├── fck_scayt.html │ │ │ ├── fck_scayt │ │ │ │ └── scayt_dialog.css │ │ │ ├── fck_select.html │ │ │ ├── fck_select │ │ │ │ └── fck_select.js │ │ │ ├── fck_smiley.html │ │ │ ├── fck_source.html │ │ │ ├── fck_specialchar.html │ │ │ ├── fck_spellerpages.html │ │ │ ├── fck_spellerpages │ │ │ │ └── spellerpages │ │ │ │ │ ├── blank.html │ │ │ │ │ ├── controlWindow.js │ │ │ │ │ ├── controls.html │ │ │ │ │ ├── server-scripts │ │ │ │ │ ├── spellchecker.cfm │ │ │ │ │ ├── spellchecker.php │ │ │ │ │ └── spellchecker.pl │ │ │ │ │ ├── spellChecker.js │ │ │ │ │ ├── spellchecker.html │ │ │ │ │ ├── spellerStyle.css │ │ │ │ │ └── wordWindow.js │ │ │ ├── fck_table.html │ │ │ ├── fck_tablecell.html │ │ │ ├── fck_template.html │ │ │ ├── fck_template │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ ├── fck_textarea.html │ │ │ └── fck_textfield.html │ │ ├── dtd │ │ │ ├── fck_dtd_test.html │ │ │ ├── fck_xhtml10strict.js │ │ │ └── fck_xhtml10transitional.js │ │ ├── fckdebug.html │ │ ├── fckdialog.html │ │ ├── fckeditor.html │ │ ├── fckeditor.original.html │ │ ├── filemanager │ │ │ ├── browser │ │ │ │ └── default │ │ │ │ │ ├── browser.css │ │ │ │ │ ├── browser.html │ │ │ │ │ ├── frmactualfolder.html │ │ │ │ │ ├── frmcreatefolder.html │ │ │ │ │ ├── frmfolders.html │ │ │ │ │ ├── frmresourceslist.html │ │ │ │ │ ├── frmresourcetype.html │ │ │ │ │ ├── frmupload.html │ │ │ │ │ ├── images │ │ │ │ │ ├── ButtonArrow.gif │ │ │ │ │ ├── Folder.gif │ │ │ │ │ ├── Folder32.gif │ │ │ │ │ ├── FolderOpened.gif │ │ │ │ │ ├── FolderOpened32.gif │ │ │ │ │ ├── FolderUp.gif │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── 32 │ │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ │ ├── htm.gif │ │ │ │ │ │ │ ├── html.gif │ │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ │ ├── png.gif │ │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ │ └── zip.gif │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ ├── htm.gif │ │ │ │ │ │ ├── html.gif │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ ├── png.gif │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ └── zip.gif │ │ │ │ │ └── spacer.gif │ │ │ │ │ └── js │ │ │ │ │ ├── common.js │ │ │ │ │ └── fckxml.js │ │ │ └── connectors │ │ │ │ └── php │ │ │ │ ├── basexml.php │ │ │ │ ├── commands.php │ │ │ │ ├── config.php │ │ │ │ ├── connector.php │ │ │ │ ├── io.php │ │ │ │ ├── phpcompat.php │ │ │ │ ├── upload.php │ │ │ │ └── util.php │ │ ├── images │ │ │ ├── anchor.gif │ │ │ ├── arrow_ltr.gif │ │ │ ├── arrow_rtl.gif │ │ │ ├── smiley │ │ │ │ └── msn │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── cake.gif │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ └── wink_smile.gif │ │ │ └── spacer.gif │ │ ├── js │ │ │ ├── fckadobeair.js │ │ │ ├── fckeditorcode_gecko.js │ │ │ └── fckeditorcode_ie.js │ │ ├── lang │ │ │ ├── _translationstatus.txt │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-uk.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── autogrow │ │ │ │ └── fckplugin.js │ │ │ ├── bbcode │ │ │ │ ├── _sample │ │ │ │ │ ├── sample.config.js │ │ │ │ │ └── sample.html │ │ │ │ └── fckplugin.js │ │ │ ├── dragresizetable │ │ │ │ └── fckplugin.js │ │ │ ├── placeholder │ │ │ │ ├── fck_placeholder.html │ │ │ │ ├── fckplugin.js │ │ │ │ ├── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── it.js │ │ │ │ │ └── pl.js │ │ │ │ └── placeholder.gif │ │ │ ├── simplecommands │ │ │ │ └── fckplugin.js │ │ │ └── tablecommands │ │ │ │ └── fckplugin.js │ │ ├── skins │ │ │ ├── _fckviewstrips.html │ │ │ ├── default │ │ │ │ ├── fck_dialog.css │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ ├── fck_editor.css │ │ │ │ ├── fck_strip.gif │ │ │ │ └── images │ │ │ │ │ ├── dialog.sides.gif │ │ │ │ │ ├── dialog.sides.png │ │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ │ ├── sprites.gif │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ │ ├── toolbar.end.gif │ │ │ │ │ ├── toolbar.expand.gif │ │ │ │ │ ├── toolbar.separator.gif │ │ │ │ │ └── toolbar.start.gif │ │ │ ├── office2003 │ │ │ │ ├── fck_dialog.css │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ ├── fck_editor.css │ │ │ │ ├── fck_strip.gif │ │ │ │ └── images │ │ │ │ │ ├── dialog.sides.gif │ │ │ │ │ ├── dialog.sides.png │ │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ │ ├── sprites.gif │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ │ ├── toolbar.bg.gif │ │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ │ ├── toolbar.end.gif │ │ │ │ │ ├── toolbar.expand.gif │ │ │ │ │ ├── toolbar.separator.gif │ │ │ │ │ └── toolbar.start.gif │ │ │ └── silver │ │ │ │ ├── fck_dialog.css │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ ├── fck_editor.css │ │ │ │ ├── fck_strip.gif │ │ │ │ └── images │ │ │ │ ├── dialog.sides.gif │ │ │ │ ├── dialog.sides.png │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ ├── sprites.gif │ │ │ │ ├── sprites.png │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ ├── toolbar.buttonbg.gif │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ ├── toolbar.end.gif │ │ │ │ ├── toolbar.expand.gif │ │ │ │ ├── toolbar.separator.gif │ │ │ │ └── toolbar.start.gif │ │ └── wsc │ │ │ ├── ciframe.html │ │ │ ├── tmpFrameset.html │ │ │ └── w.html │ ├── fckconfig.js │ ├── fckeditor.js │ ├── fckeditor.php │ ├── fckeditor_php4.php │ ├── fckeditor_php5.php │ ├── fckpackager.xml │ ├── fckstyles.xml │ ├── fcktemplates.xml │ └── fckutils.cfm │ ├── gpl-2.0.txt │ ├── highlight │ ├── scripts │ │ ├── shAutoloader.js │ │ ├── shBrushAS3.js │ │ ├── shBrushAppleScript.js │ │ ├── shBrushBash.js │ │ ├── shBrushCSharp.js │ │ ├── shBrushColdFusion.js │ │ ├── shBrushCpp.js │ │ ├── shBrushCss.js │ │ ├── shBrushDelphi.js │ │ ├── shBrushDiff.js │ │ ├── shBrushErlang.js │ │ ├── shBrushGroovy.js │ │ ├── shBrushJScript.js │ │ ├── shBrushJava.js │ │ ├── shBrushJavaFX.js │ │ ├── shBrushPerl.js │ │ ├── shBrushPhp.js │ │ ├── shBrushPlain.js │ │ ├── shBrushPowerShell.js │ │ ├── shBrushPython.js │ │ ├── shBrushRuby.js │ │ ├── shBrushSass.js │ │ ├── shBrushScala.js │ │ ├── shBrushSql.js │ │ ├── shBrushVb.js │ │ ├── shBrushXml.js │ │ ├── shCore.js │ │ └── shLegacy.js │ └── styles │ │ ├── help.png │ │ ├── magnifier.png │ │ ├── page_white_code.png │ │ ├── page_white_copy.png │ │ ├── printer.png │ │ ├── shCore.css │ │ ├── shCoreDefault.css │ │ ├── shCoreDjango.css │ │ ├── shCoreEclipse.css │ │ ├── shCoreEmacs.css │ │ ├── shCoreFadeToGrey.css │ │ ├── shCoreMDUltra.css │ │ ├── shCoreMidnight.css │ │ ├── shCoreRDark.css │ │ ├── shThemeDefault.css │ │ ├── shThemeDjango.css │ │ ├── shThemeEclipse.css │ │ ├── shThemeEmacs.css │ │ ├── shThemeFadeToGrey.css │ │ ├── shThemeMDUltra.css │ │ ├── shThemeMidnight.css │ │ └── shThemeRDark.css │ ├── image │ ├── background.jpg │ ├── content.png │ ├── logo.png │ └── menu_bg.png │ ├── include │ ├── QQWry.Dat │ ├── Vera.ttf │ ├── cache_end.php │ ├── cache_start.php │ ├── check_get_key.php │ ├── check_post_key.php │ ├── checksource.js │ ├── const.inc.php │ ├── dark.css │ ├── db_info.inc.php │ ├── gcode.css │ ├── hoj.css │ ├── iplocation.php │ ├── memcache.php │ ├── my_func.inc.php │ ├── online.php │ ├── pie.js │ ├── problem.php │ ├── profile.php │ ├── set_get_key.php │ ├── set_post_key.php │ ├── setlang.php │ ├── simple_html_dom.php │ ├── sortTable.js │ ├── underlineTranslation.js │ └── wz_jsgraphics.js │ ├── index.php │ ├── lang │ ├── cn.php │ ├── en.php │ ├── fa.php │ ├── ko.php │ └── th.php │ ├── login.php │ ├── loginpage.php │ ├── logout.php │ ├── mail.php │ ├── modify.php │ ├── modifypage.php │ ├── oj-footer.php │ ├── oj-header.php │ ├── online.php │ ├── problem.php │ ├── problemset.php │ ├── problemstatus.php │ ├── ranklist.php │ ├── recent-contest.php │ ├── register.php │ ├── registerpage.php │ ├── reinfo.php │ ├── setlang.php │ ├── showsource.php │ ├── status.php │ ├── submit.php │ ├── submitpage.php │ ├── template │ └── classic │ │ ├── contest.html │ │ ├── faqs.html │ │ ├── hoj.css │ │ ├── image │ │ ├── background.jpg │ │ ├── content.png │ │ ├── logo.png │ │ └── menu_bg.png │ │ ├── index.html │ │ ├── loginpage.html │ │ ├── oj-footer.html │ │ ├── oj-header.html │ │ ├── problemset.html │ │ ├── ranklist.html │ │ ├── recent-contest.html │ │ └── status.html │ ├── userinfo.php │ └── vcode.php ├── trunk ├── android │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── AndroidManifest.xml │ ├── bin │ │ ├── AndroidManifest.xml │ │ ├── classes.dex │ │ ├── hustoj.apk │ │ ├── jarlist.cache │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ ├── ic_action_search.png │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-ldpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ │ ├── ic_action_search.png │ │ │ │ └── ic_launcher.png │ │ │ └── drawable-xhdpi │ │ │ │ ├── ic_action_search.png │ │ │ │ └── ic_launcher.png │ │ └── resources.ap_ │ ├── ic_launcher-web.png │ ├── libs │ │ └── android-support-v4.jar │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── ic_action_search.png │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ ├── ic_action_search.png │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ ├── ic_action_search.png │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ └── activity_main.xml │ │ ├── menu │ │ │ └── activity_main.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── src │ │ └── com │ │ └── hustoj │ │ ├── MainActivity.java │ │ ├── SpinnerSelectedListener.java │ │ └── Updater.java ├── core │ ├── judge_client │ │ ├── judge_client.cc │ │ ├── makefile │ │ ├── ncalls.h │ │ ├── okcalls.h │ │ ├── okcalls32.h │ │ └── okcalls64.h │ ├── judged │ │ ├── judged.cc │ │ └── makefile │ ├── make.sh │ └── sim │ │ ├── sim.sh │ │ ├── sim_2_26 │ │ ├── Answers │ │ ├── ChangeLog │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── Malloc.c │ │ ├── Malloc.h │ │ ├── READ.ME │ │ ├── README.1ST │ │ ├── READ_ME │ │ ├── TechnReport │ │ ├── ToDo │ │ ├── VERSION │ │ ├── add_run.c │ │ ├── add_run.h │ │ ├── aiso.bdy │ │ ├── aiso.spc │ │ ├── algollike.c │ │ ├── algollike.h │ │ ├── clang.c │ │ ├── clang.l │ │ ├── compare.c │ │ ├── compare.h │ │ ├── debug.par │ │ ├── error.c │ │ ├── error.h │ │ ├── hash.c │ │ ├── hash.h │ │ ├── idf.c │ │ ├── idf.h │ │ ├── javalang.c │ │ ├── javalang.l │ │ ├── lang.h │ │ ├── language.h │ │ ├── lex.c │ │ ├── lex.h │ │ ├── lisplang.l │ │ ├── m2lang.l │ │ ├── miralang.l │ │ ├── newargs.c │ │ ├── newargs.h │ │ ├── option-i.inp │ │ ├── options.c │ │ ├── options.h │ │ ├── pascallang.c │ │ ├── pascallang.l │ │ ├── pass1.c │ │ ├── pass1.h │ │ ├── pass2.c │ │ ├── pass2.h │ │ ├── pass3.c │ │ ├── pass3.h │ │ ├── percentages.c │ │ ├── percentages.h │ │ ├── runs.c │ │ ├── runs.h │ │ ├── settings.par │ │ ├── sim.1 │ │ ├── sim.c │ │ ├── sim.h │ │ ├── sim.html │ │ ├── sim.pdf │ │ ├── sortlist.bdy │ │ ├── sortlist.spc │ │ ├── stream.c │ │ ├── stream.h │ │ ├── sysidf.mk │ │ ├── sysidf.msdos │ │ ├── sysidf.unix │ │ ├── system.par │ │ ├── text.c │ │ ├── text.h │ │ ├── textlang.l │ │ ├── token.c │ │ ├── token.h │ │ ├── tokenarray.c │ │ └── tokenarray.h │ │ └── sim_2_67 │ │ ├── Answers │ │ ├── ChangeLog │ │ ├── ForEachFile.c │ │ ├── ForEachFile.h │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── Malloc.c │ │ ├── Malloc.h │ │ ├── README │ │ ├── TechnReport │ │ ├── ToDo │ │ ├── VERSION │ │ ├── add_run.c │ │ ├── add_run.h │ │ ├── aiso.bdy │ │ ├── aiso.spc │ │ ├── algollike.c │ │ ├── algollike.h │ │ ├── clang.l │ │ ├── compare.c │ │ ├── compare.h │ │ ├── debug.c │ │ ├── debug.h │ │ ├── debug.par │ │ ├── error.c │ │ ├── error.h │ │ ├── fname.c │ │ ├── fname.h │ │ ├── hash.c │ │ ├── hash.h │ │ ├── idf.c │ │ ├── idf.h │ │ ├── javalang.l │ │ ├── lang.c │ │ ├── lang.h │ │ ├── language.c │ │ ├── language.h │ │ ├── lex.c │ │ ├── lex.h │ │ ├── lisplang.l │ │ ├── m2lang.l │ │ ├── miralang.l │ │ ├── newargs.c │ │ ├── newargs.h │ │ ├── option-i.inp │ │ ├── options.c │ │ ├── options.h │ │ ├── pascallang.l │ │ ├── pass1.c │ │ ├── pass1.h │ │ ├── pass2.c │ │ ├── pass2.h │ │ ├── pass3.c │ │ ├── pass3.h │ │ ├── percentages.c │ │ ├── percentages.h │ │ ├── runs.c │ │ ├── runs.h │ │ ├── settings.par │ │ ├── sim.1 │ │ ├── sim.c │ │ ├── sim.h │ │ ├── sim.pdf │ │ ├── sim_c.exe │ │ ├── sortlist.bdy │ │ ├── sortlist.spc │ │ ├── stream.c │ │ ├── stream.h │ │ ├── system.par │ │ ├── text.c │ │ ├── text.h │ │ ├── textlang.l │ │ ├── token.c │ │ ├── token.h │ │ ├── tokenarray.c │ │ └── tokenarray.h ├── install │ ├── README │ ├── db.sql │ ├── install-interactive.sh │ ├── install.sh │ ├── java0.policy │ ├── judge.conf │ └── judged └── web │ ├── admin │ ├── admin-header.php │ ├── changepass.php │ ├── contest_add.php │ ├── contest_df_change.php │ ├── contest_edit.php │ ├── contest_list.php │ ├── contest_pr_change.php │ ├── index.php │ ├── menu.php │ ├── moodle_judge.php │ ├── msg.txt │ ├── news_add.php │ ├── news_add_page.php │ ├── news_df_change.php │ ├── news_edit.php │ ├── news_list.php │ ├── privilege_add.php │ ├── privilege_delete.php │ ├── privilege_list.php │ ├── problem_add.php │ ├── problem_add_page.php │ ├── problem_add_page_hdu.php │ ├── problem_add_page_pku.php │ ├── problem_add_page_waterloo.php │ ├── problem_add_page_zju.php │ ├── problem_changeid.php │ ├── problem_copy.php │ ├── problem_del.php │ ├── problem_df_change.php │ ├── problem_edit.php │ ├── problem_export.php │ ├── problem_export_xml.php │ ├── problem_import.php │ ├── problem_import_xml.php │ ├── problem_judge.php │ ├── problem_list.php │ ├── quixplorer │ │ ├── .config │ │ │ ├── .htaccess │ │ │ ├── .htusers.php │ │ │ ├── conf.php │ │ │ └── mimes.php │ │ ├── .include │ │ │ ├── .htaccess │ │ │ ├── error.php │ │ │ ├── footer.php │ │ │ ├── fun_admin.php │ │ │ ├── fun_archive.php │ │ │ ├── fun_chmod.php │ │ │ ├── fun_copy_move.php │ │ │ ├── fun_del.php │ │ │ ├── fun_down.php │ │ │ ├── fun_edit.php │ │ │ ├── fun_extra.php │ │ │ ├── fun_list.php │ │ │ ├── fun_mkitem.php │ │ │ ├── fun_search.php │ │ │ ├── fun_up.php │ │ │ ├── header.php │ │ │ ├── init.php │ │ │ ├── javascript.php │ │ │ ├── js_admin.php │ │ │ ├── js_admin2.php │ │ │ ├── js_admin3.php │ │ │ ├── login.php │ │ │ ├── permissions.php │ │ │ └── user.php │ │ ├── _img │ │ │ ├── _.gif │ │ │ ├── __copy.gif │ │ │ ├── __cut.gif │ │ │ ├── __paste.gif │ │ │ ├── _admin.gif │ │ │ ├── _archive.gif │ │ │ ├── _arrowdown.gif │ │ │ ├── _arrowup.gif │ │ │ ├── _copy.gif │ │ │ ├── _copy_.gif │ │ │ ├── _delete.gif │ │ │ ├── _delete_.gif │ │ │ ├── _download.gif │ │ │ ├── _download_.gif │ │ │ ├── _edit.gif │ │ │ ├── _edit_.gif │ │ │ ├── _home.gif │ │ │ ├── _info.gif │ │ │ ├── _logout.gif │ │ │ ├── _move.gif │ │ │ ├── _move_.gif │ │ │ ├── _refresh.gif │ │ │ ├── _search.gif │ │ │ ├── _up.gif │ │ │ ├── _upload.gif │ │ │ ├── _upload_.gif │ │ │ ├── cpp.gif │ │ │ ├── dir.gif │ │ │ ├── exe.gif │ │ │ ├── file.gif │ │ │ ├── flash.gif │ │ │ ├── h.gif │ │ │ ├── html.gif │ │ │ ├── image.gif │ │ │ ├── java.gif │ │ │ ├── js.gif │ │ │ ├── midi.gif │ │ │ ├── mp3.gif │ │ │ ├── pdf.gif │ │ │ ├── php.gif │ │ │ ├── pl.gif │ │ │ ├── real.gif │ │ │ ├── sound.gif │ │ │ ├── spread.gif │ │ │ ├── src.gif │ │ │ ├── tar.gif │ │ │ ├── tgz.gif │ │ │ ├── txt.gif │ │ │ ├── video.gif │ │ │ ├── word.gif │ │ │ └── zip.gif │ │ ├── _lang │ │ │ ├── _info.php │ │ │ ├── bg.php │ │ │ ├── bg_mimes.php │ │ │ ├── cs.php │ │ │ ├── cs_mimes.php │ │ │ ├── da.php │ │ │ ├── da_mimes.php │ │ │ ├── de.php │ │ │ ├── de_mimes.php │ │ │ ├── en.php │ │ │ ├── en_mimes.php │ │ │ ├── es.php │ │ │ ├── es_mimes.php │ │ │ ├── fr.php │ │ │ ├── fr_mimes.php │ │ │ ├── it.php │ │ │ ├── it_mimes.php │ │ │ ├── nl.php │ │ │ ├── nl_mimes.php │ │ │ ├── pl.php │ │ │ ├── pl_mimes.php │ │ │ ├── ptbr.php │ │ │ ├── ptbr_mimes.php │ │ │ ├── ro.php │ │ │ ├── ro_mimes.php │ │ │ ├── ru.php │ │ │ └── ru_mimes.php │ │ ├── _lib │ │ │ └── lib_zip.php │ │ ├── _style │ │ │ ├── style.css │ │ │ └── tablebg.gif │ │ ├── index.php │ │ ├── license.txt │ │ ├── permissions.txt │ │ ├── readme.txt │ │ └── release.txt │ ├── rejudge.php │ ├── setmsg.php │ ├── source_give.php │ ├── team_generate.php │ ├── update_db.php │ ├── update_pw.php │ └── watch.php │ ├── bbs.php │ ├── bbs │ └── README │ ├── bootstrap │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ ├── ceinfo.php │ ├── comparesource.php │ ├── config.yaml │ ├── contest-header.php │ ├── contest.php │ ├── contestrank.php │ ├── contestrank.xls.php │ ├── conteststatistics.php │ ├── discuss │ ├── contest-header.php │ ├── discuss.php │ ├── discuss.sql │ ├── discuss_func.inc.php │ ├── hoj.css │ ├── index.php │ ├── newpost.php │ ├── oj-header.php │ ├── post.php │ ├── superthread.php │ ├── thread.php │ └── threadadmin.php │ ├── edit_area │ ├── autocompletion.js │ ├── edit_area.css │ ├── edit_area.js │ ├── edit_area_compressor.php │ ├── edit_area_full.gz │ ├── edit_area_full.js │ ├── edit_area_functions.js │ ├── edit_area_loader.js │ ├── elements_functions.js │ ├── highlight.js │ ├── images │ │ ├── autocompletion.gif │ │ ├── close.gif │ │ ├── fullscreen.gif │ │ ├── go_to_line.gif │ │ ├── help.gif │ │ ├── highlight.gif │ │ ├── load.gif │ │ ├── move.gif │ │ ├── newdocument.gif │ │ ├── opacity.png │ │ ├── processing.gif │ │ ├── redo.gif │ │ ├── reset_highlight.gif │ │ ├── save.gif │ │ ├── search.gif │ │ ├── smooth_selection.gif │ │ ├── spacer.gif │ │ ├── statusbar_resize.gif │ │ ├── undo.gif │ │ └── word_wrap.gif │ ├── keyboard.js │ ├── langs │ │ ├── bg.js │ │ ├── cs.js │ │ ├── de.js │ │ ├── dk.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── hr.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── mk.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── pt.js │ │ ├── ru.js │ │ ├── sk.js │ │ └── zh.js │ ├── license_apache.txt │ ├── license_bsd.txt │ ├── license_lgpl.txt │ ├── manage_area.js │ ├── plugins │ │ ├── charmap │ │ │ ├── charmap.js │ │ │ ├── css │ │ │ │ └── charmap.css │ │ │ ├── images │ │ │ │ └── charmap.gif │ │ │ ├── jscripts │ │ │ │ └── map.js │ │ │ ├── langs │ │ │ │ ├── bg.js │ │ │ │ ├── cs.js │ │ │ │ ├── de.js │ │ │ │ ├── dk.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── fr.js │ │ │ │ ├── hr.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── mk.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ └── zh.js │ │ │ └── popup.html │ │ └── test │ │ │ ├── css │ │ │ └── test.css │ │ │ ├── images │ │ │ ├── Thumbs.db │ │ │ └── test.gif │ │ │ ├── langs │ │ │ ├── bg.js │ │ │ ├── cs.js │ │ │ ├── de.js │ │ │ ├── dk.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── fr.js │ │ │ ├── hr.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── mk.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ └── zh.js │ │ │ ├── test.js │ │ │ └── test2.js │ ├── reg_syntax.js │ ├── reg_syntax │ │ ├── basic.js │ │ ├── brainfuck.js │ │ ├── c.js │ │ ├── coldfusion.js │ │ ├── cpp.js │ │ ├── css.js │ │ ├── html.js │ │ ├── java.js │ │ ├── js.js │ │ ├── pas.js │ │ ├── perl.js │ │ ├── php.js │ │ ├── python.js │ │ ├── robotstxt.js │ │ ├── ruby.js │ │ ├── sql.js │ │ ├── tsql.js │ │ ├── vb.js │ │ └── xml.js │ ├── regexp.js │ ├── resize_area.js │ ├── search_replace.js │ └── template.html │ ├── export_ac_code.php │ ├── export_contest_code.php │ ├── faqs.cn.php │ ├── faqs.ko.php │ ├── faqs.php │ ├── fckeditor │ ├── editor │ │ ├── css │ │ │ ├── behaviors │ │ │ │ ├── disablehandles.htc │ │ │ │ └── showtableborders.htc │ │ │ ├── fck_editorarea.css │ │ │ ├── fck_internal.css │ │ │ ├── fck_showtableborders_gecko.css │ │ │ └── images │ │ │ │ ├── block_address.png │ │ │ │ ├── block_blockquote.png │ │ │ │ ├── block_div.png │ │ │ │ ├── block_h1.png │ │ │ │ ├── block_h2.png │ │ │ │ ├── block_h3.png │ │ │ │ ├── block_h4.png │ │ │ │ ├── block_h5.png │ │ │ │ ├── block_h6.png │ │ │ │ ├── block_p.png │ │ │ │ ├── block_pre.png │ │ │ │ ├── fck_anchor.gif │ │ │ │ ├── fck_flashlogo.gif │ │ │ │ ├── fck_hiddenfield.gif │ │ │ │ ├── fck_pagebreak.gif │ │ │ │ └── fck_plugin.gif │ │ ├── dialog │ │ │ ├── common │ │ │ │ ├── fck_dialog_common.css │ │ │ │ ├── fck_dialog_common.js │ │ │ │ └── images │ │ │ │ │ ├── locked.gif │ │ │ │ │ ├── reset.gif │ │ │ │ │ └── unlocked.gif │ │ │ ├── fck_about.html │ │ │ ├── fck_about │ │ │ │ ├── logo_fckeditor.gif │ │ │ │ ├── logo_fredck.gif │ │ │ │ └── sponsors │ │ │ │ │ └── spellchecker_net.gif │ │ │ ├── fck_anchor.html │ │ │ ├── fck_button.html │ │ │ ├── fck_checkbox.html │ │ │ ├── fck_colorselector.html │ │ │ ├── fck_div.html │ │ │ ├── fck_docprops.html │ │ │ ├── fck_docprops │ │ │ │ └── fck_document_preview.html │ │ │ ├── fck_flash.html │ │ │ ├── fck_flash │ │ │ │ ├── fck_flash.js │ │ │ │ └── fck_flash_preview.html │ │ │ ├── fck_form.html │ │ │ ├── fck_hiddenfield.html │ │ │ ├── fck_image.html │ │ │ ├── fck_image │ │ │ │ ├── fck_image.js │ │ │ │ └── fck_image_preview.html │ │ │ ├── fck_link.html │ │ │ ├── fck_link │ │ │ │ └── fck_link.js │ │ │ ├── fck_listprop.html │ │ │ ├── fck_paste.html │ │ │ ├── fck_radiobutton.html │ │ │ ├── fck_replace.html │ │ │ ├── fck_scayt.html │ │ │ ├── fck_scayt │ │ │ │ └── scayt_dialog.css │ │ │ ├── fck_select.html │ │ │ ├── fck_select │ │ │ │ └── fck_select.js │ │ │ ├── fck_smiley.html │ │ │ ├── fck_source.html │ │ │ ├── fck_specialchar.html │ │ │ ├── fck_spellerpages.html │ │ │ ├── fck_spellerpages │ │ │ │ └── spellerpages │ │ │ │ │ ├── blank.html │ │ │ │ │ ├── controlWindow.js │ │ │ │ │ ├── controls.html │ │ │ │ │ ├── server-scripts │ │ │ │ │ ├── spellchecker.cfm │ │ │ │ │ ├── spellchecker.php │ │ │ │ │ └── spellchecker.pl │ │ │ │ │ ├── spellChecker.js │ │ │ │ │ ├── spellchecker.html │ │ │ │ │ ├── spellerStyle.css │ │ │ │ │ └── wordWindow.js │ │ │ ├── fck_table.html │ │ │ ├── fck_tablecell.html │ │ │ ├── fck_template.html │ │ │ ├── fck_template │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ ├── fck_textarea.html │ │ │ └── fck_textfield.html │ │ ├── dtd │ │ │ ├── fck_dtd_test.html │ │ │ ├── fck_xhtml10strict.js │ │ │ └── fck_xhtml10transitional.js │ │ ├── fckdebug.html │ │ ├── fckdialog.html │ │ ├── fckeditor.html │ │ ├── fckeditor.original.html │ │ ├── filemanager │ │ │ ├── browser │ │ │ │ └── default │ │ │ │ │ ├── browser.css │ │ │ │ │ ├── browser.html │ │ │ │ │ ├── frmactualfolder.html │ │ │ │ │ ├── frmcreatefolder.html │ │ │ │ │ ├── frmfolders.html │ │ │ │ │ ├── frmresourceslist.html │ │ │ │ │ ├── frmresourcetype.html │ │ │ │ │ ├── frmupload.html │ │ │ │ │ ├── images │ │ │ │ │ ├── ButtonArrow.gif │ │ │ │ │ ├── Folder.gif │ │ │ │ │ ├── Folder32.gif │ │ │ │ │ ├── FolderOpened.gif │ │ │ │ │ ├── FolderOpened32.gif │ │ │ │ │ ├── FolderUp.gif │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── 32 │ │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ │ ├── htm.gif │ │ │ │ │ │ │ ├── html.gif │ │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ │ ├── png.gif │ │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ │ └── zip.gif │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ ├── htm.gif │ │ │ │ │ │ ├── html.gif │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ ├── png.gif │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ └── zip.gif │ │ │ │ │ └── spacer.gif │ │ │ │ │ └── js │ │ │ │ │ ├── common.js │ │ │ │ │ └── fckxml.js │ │ │ └── connectors │ │ │ │ └── php │ │ │ │ ├── basexml.php │ │ │ │ ├── commands.php │ │ │ │ ├── config.php │ │ │ │ ├── connector.php │ │ │ │ ├── io.php │ │ │ │ ├── phpcompat.php │ │ │ │ ├── upload.php │ │ │ │ └── util.php │ │ ├── images │ │ │ ├── anchor.gif │ │ │ ├── arrow_ltr.gif │ │ │ ├── arrow_rtl.gif │ │ │ ├── smiley │ │ │ │ └── msn │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── cake.gif │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ └── wink_smile.gif │ │ │ └── spacer.gif │ │ ├── js │ │ │ ├── fckadobeair.js │ │ │ ├── fckeditorcode_gecko.js │ │ │ └── fckeditorcode_ie.js │ │ ├── lang │ │ │ ├── _translationstatus.txt │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-uk.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── autogrow │ │ │ │ └── fckplugin.js │ │ │ ├── bbcode │ │ │ │ ├── _sample │ │ │ │ │ ├── sample.config.js │ │ │ │ │ └── sample.html │ │ │ │ └── fckplugin.js │ │ │ ├── dragresizetable │ │ │ │ └── fckplugin.js │ │ │ ├── placeholder │ │ │ │ ├── fck_placeholder.html │ │ │ │ ├── fckplugin.js │ │ │ │ ├── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── it.js │ │ │ │ │ └── pl.js │ │ │ │ └── placeholder.gif │ │ │ ├── simplecommands │ │ │ │ └── fckplugin.js │ │ │ └── tablecommands │ │ │ │ └── fckplugin.js │ │ ├── skins │ │ │ ├── _fckviewstrips.html │ │ │ ├── default │ │ │ │ ├── fck_dialog.css │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ ├── fck_editor.css │ │ │ │ ├── fck_strip.gif │ │ │ │ └── images │ │ │ │ │ ├── dialog.sides.gif │ │ │ │ │ ├── dialog.sides.png │ │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ │ ├── sprites.gif │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ │ ├── toolbar.end.gif │ │ │ │ │ ├── toolbar.expand.gif │ │ │ │ │ ├── toolbar.separator.gif │ │ │ │ │ └── toolbar.start.gif │ │ │ ├── office2003 │ │ │ │ ├── fck_dialog.css │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ ├── fck_editor.css │ │ │ │ ├── fck_strip.gif │ │ │ │ └── images │ │ │ │ │ ├── dialog.sides.gif │ │ │ │ │ ├── dialog.sides.png │ │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ │ ├── sprites.gif │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ │ ├── toolbar.bg.gif │ │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ │ ├── toolbar.end.gif │ │ │ │ │ ├── toolbar.expand.gif │ │ │ │ │ ├── toolbar.separator.gif │ │ │ │ │ └── toolbar.start.gif │ │ │ └── silver │ │ │ │ ├── fck_dialog.css │ │ │ │ ├── fck_dialog_ie6.js │ │ │ │ ├── fck_editor.css │ │ │ │ ├── fck_strip.gif │ │ │ │ └── images │ │ │ │ ├── dialog.sides.gif │ │ │ │ ├── dialog.sides.png │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ ├── sprites.gif │ │ │ │ ├── sprites.png │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ ├── toolbar.buttonbg.gif │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ ├── toolbar.end.gif │ │ │ │ ├── toolbar.expand.gif │ │ │ │ ├── toolbar.separator.gif │ │ │ │ └── toolbar.start.gif │ │ └── wsc │ │ │ ├── ciframe.html │ │ │ ├── tmpFrameset.html │ │ │ └── w.html │ ├── fckconfig.js │ ├── fckeditor.js │ ├── fckeditor.php │ ├── fckeditor_php4.php │ ├── fckeditor_php5.php │ ├── fckpackager.xml │ ├── fckstyles.xml │ ├── fcktemplates.xml │ └── fckutils.cfm │ ├── getsource.php │ ├── gpl-2.0.txt │ ├── highlight │ ├── scripts │ │ ├── shAutoloader.js │ │ ├── shBrushAS3.js │ │ ├── shBrushAppleScript.js │ │ ├── shBrushBash.js │ │ ├── shBrushCSharp.js │ │ ├── shBrushColdFusion.js │ │ ├── shBrushCpp.js │ │ ├── shBrushCss.js │ │ ├── shBrushDelphi.js │ │ ├── shBrushDiff.js │ │ ├── shBrushErlang.js │ │ ├── shBrushGroovy.js │ │ ├── shBrushJScript.js │ │ ├── shBrushJava.js │ │ ├── shBrushJavaFX.js │ │ ├── shBrushPerl.js │ │ ├── shBrushPhp.js │ │ ├── shBrushPlain.js │ │ ├── shBrushPowerShell.js │ │ ├── shBrushPython.js │ │ ├── shBrushRuby.js │ │ ├── shBrushSass.js │ │ ├── shBrushScala.js │ │ ├── shBrushSql.js │ │ ├── shBrushVb.js │ │ ├── shBrushXml.js │ │ ├── shCore.js │ │ └── shLegacy.js │ └── styles │ │ ├── help.png │ │ ├── magnifier.png │ │ ├── page_white_code.png │ │ ├── page_white_copy.png │ │ ├── printer.png │ │ ├── shCore.css │ │ ├── shCoreDefault.css │ │ ├── shCoreDjango.css │ │ ├── shCoreEclipse.css │ │ ├── shCoreEmacs.css │ │ ├── shCoreFadeToGrey.css │ │ ├── shCoreMDUltra.css │ │ ├── shCoreMidnight.css │ │ ├── shCoreRDark.css │ │ ├── shThemeDefault.css │ │ ├── shThemeDjango.css │ │ ├── shThemeEclipse.css │ │ ├── shThemeEmacs.css │ │ ├── shThemeFadeToGrey.css │ │ ├── shThemeMDUltra.css │ │ ├── shThemeMidnight.css │ │ └── shThemeRDark.css │ ├── image │ ├── background.jpg │ ├── content.png │ ├── loader.gif │ ├── logo.png │ └── menu_bg.png │ ├── include │ ├── QQWry.Dat │ ├── Vera.ttf │ ├── cache_end.php │ ├── cache_start.php │ ├── check_get_key.php │ ├── check_post_key.php │ ├── checksource.js │ ├── const.inc.php │ ├── dark.css │ ├── db_info.inc.auto.php │ ├── db_info.inc.php │ ├── gcode.css │ ├── hoj.css │ ├── iplocation.php │ ├── jquery-latest.js │ ├── jquery.flot.js │ ├── jquery.tablesorter.js │ ├── login-discuz.php │ ├── login-hustoj.php │ ├── login-ldap.php │ ├── login-moodle.php │ ├── login-wp.php │ ├── memcache.php │ ├── my_func.inc.php │ ├── online.php │ ├── pie.js │ ├── problem.php │ ├── profile.php │ ├── set_get_key.php │ ├── set_post_key.php │ ├── setlang.php │ ├── simple_html_dom.php │ ├── sortTable.js │ ├── status-ajax.js │ ├── underlineTranslation.js │ └── wz_jsgraphics.js │ ├── index.php │ ├── lang │ ├── cn.php │ ├── en.php │ ├── fa.php │ ├── ko.php │ └── th.php │ ├── login.php │ ├── login_qq.php │ ├── login_renren.php │ ├── login_weibo.php │ ├── loginpage.php │ ├── logout.php │ ├── lostpassword.php │ ├── lostpassword2.php │ ├── mail.php │ ├── mergely │ ├── codemirror.css │ ├── codemirror.js │ ├── codemirror.min.js │ ├── mergely.css │ ├── mergely.js │ ├── mergely.min.js │ └── searchcursor.js │ ├── modify.php │ ├── modifypage.php │ ├── oj-footer.php │ ├── oj-header.php │ ├── online.php │ ├── problem.php │ ├── problemset.php │ ├── problemstatus.php │ ├── ranklist.php │ ├── recent-contest.php │ ├── register.php │ ├── registerpage.php │ ├── reinfo.php │ ├── sae │ ├── db.sql │ └── install.php │ ├── sae_app_wizard.xml │ ├── setlang.php │ ├── showsource.php │ ├── status-ajax.php │ ├── status.php │ ├── submit.php │ ├── submitpage.php │ ├── template │ ├── bs │ │ ├── ceinfo.php │ │ ├── comparesource.php │ │ ├── contest.php │ │ ├── contestrank.php │ │ ├── contestset.php │ │ ├── conteststatistics.php │ │ ├── conteststatus.php │ │ ├── error.php │ │ ├── faqs.cn.php │ │ ├── faqs.php │ │ ├── hoj.css │ │ ├── image │ │ │ ├── Thumbs.db │ │ │ ├── background.jpg │ │ │ ├── content.png │ │ │ ├── logo.png │ │ │ └── menu_bg.png │ │ ├── index.php │ │ ├── loginpage.php │ │ ├── lostpassword.php │ │ ├── lostpassword2.php │ │ ├── mail.php │ │ ├── modifypage.php │ │ ├── oj-footer.php │ │ ├── oj-header.php │ │ ├── online.php │ │ ├── problem.php │ │ ├── problemset.php │ │ ├── problemstatus.php │ │ ├── ranklist.php │ │ ├── recent-contest.php │ │ ├── registerpage.php │ │ ├── reinfo.php │ │ ├── showsource.php │ │ ├── status.php │ │ ├── submitpage.php │ │ └── userinfo.php │ ├── classic │ │ ├── ceinfo.php │ │ ├── contest.php │ │ ├── contestrank.php │ │ ├── contestset.php │ │ ├── conteststatistics.php │ │ ├── conteststatus.php │ │ ├── error.php │ │ ├── faqs.cn.php │ │ ├── faqs.php │ │ ├── hoj.css │ │ ├── image │ │ │ ├── background.jpg │ │ │ ├── content.png │ │ │ ├── logo.png │ │ │ └── menu_bg.png │ │ ├── index.php │ │ ├── loginpage.php │ │ ├── lostpassword.php │ │ ├── lostpassword2.php │ │ ├── mail.php │ │ ├── modifypage.php │ │ ├── oj-footer.php │ │ ├── oj-header.php │ │ ├── online.php │ │ ├── problem.php │ │ ├── problemset.php │ │ ├── problemstatus.php │ │ ├── ranklist.php │ │ ├── recent-contest.php │ │ ├── registerpage.php │ │ ├── reinfo.php │ │ ├── showsource.php │ │ ├── status.php │ │ ├── submitpage.php │ │ └── userinfo.php │ └── sae │ │ ├── ceinfo.php │ │ ├── comparesource.php │ │ ├── contest-header.php │ │ ├── contest.php │ │ ├── contestrank.php │ │ ├── contestset.php │ │ ├── conteststatistics.php │ │ ├── conteststatus.php │ │ ├── error.php │ │ ├── faqs.cn.php │ │ ├── faqs.php │ │ ├── hoj.css │ │ ├── image │ │ ├── Thumbs.db │ │ ├── background.jpg │ │ ├── content.png │ │ ├── logo.png │ │ └── menu_bg.png │ │ ├── index.php │ │ ├── loginpage.php │ │ ├── lostpassword.php │ │ ├── lostpassword2.php │ │ ├── mail.php │ │ ├── modifypage.php │ │ ├── oj-footer.php │ │ ├── oj-header.php │ │ ├── online.php │ │ ├── problem.php │ │ ├── problemset.php │ │ ├── problemstatus.php │ │ ├── ranklist.php │ │ ├── recent-contest.php │ │ ├── registerpage.php │ │ ├── reinfo.php │ │ ├── showsource.php │ │ ├── status.php │ │ ├── submitpage.php │ │ └── userinfo.php │ ├── userinfo.php │ └── vcode.php └── wiki ├── AddProgrammingLanguage.wiki ├── AdjustCompilerParameters.wiki ├── AntiCheatEnable.wiki ├── AutoUpdateShellScript.wiki ├── CentOS.wiki ├── CentOSx86_64.wiki ├── Configuration.wiki ├── DBdesign.wiki ├── Debug.wiki ├── DevelopingPlan.wiki ├── DistributionSystem.wiki ├── FAQ.wiki ├── FPS.wiki ├── HTTPJudge.wiki ├── HUSTOJFeatures.wiki ├── HUSTOJUsingKindEditor.wiki ├── HUSTOJ_LiveCD.wiki ├── HUSTOJ_Windows.wiki ├── HallOfShame.wiki ├── InstallGuide.wiki ├── InstallProgrammingLanguages.wiki ├── Localization.wiki ├── MoodleIntegration.wiki ├── MultiRUNNING.wiki ├── NOJ2HUSTOJ.wiki ├── OiMode.wiki ├── POJ2HUSTOJ.wiki ├── README.wiki ├── SAEConfig.wiki ├── SPJ.wiki ├── SecurityPatch.wiki ├── Sponsor.wiki ├── SystemRequirement.wiki ├── Tweak.wiki ├── UserList.wiki └── ojback.wiki /beta/core/judge_client/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/judge_client/makefile -------------------------------------------------------------------------------- /beta/core/judge_client/ncalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/judge_client/ncalls.h -------------------------------------------------------------------------------- /beta/core/judge_client/okcalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/judge_client/okcalls.h -------------------------------------------------------------------------------- /beta/core/judged/judged.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/judged/judged.cc -------------------------------------------------------------------------------- /beta/core/judged/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/judged/makefile -------------------------------------------------------------------------------- /beta/core/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/make.sh -------------------------------------------------------------------------------- /beta/core/sim/sim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim.sh -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/Answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/Answers -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/ChangeLog -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/LICENSE.txt -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/Makefile -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/Malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/Malloc.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/Malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/Malloc.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/READ.ME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/READ.ME -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/README.1ST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/README.1ST -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/READ_ME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/READ_ME -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/TechnReport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/TechnReport -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/ToDo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/ToDo -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/VERSION: -------------------------------------------------------------------------------- 1 | 2.26 2 | -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/add_run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/add_run.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/add_run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/add_run.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/aiso.bdy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/aiso.bdy -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/aiso.spc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/aiso.spc -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/algollike.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/algollike.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/algollike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/algollike.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/clang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/clang.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/clang.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/clang.l -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/compare.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/compare.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/debug.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/debug.par -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/error.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/error.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/hash.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/hash.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/idf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/idf.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/idf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/idf.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/javalang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/javalang.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/javalang.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/javalang.l -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/lang.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/language.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/lex.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/lex.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/lisplang.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/lisplang.l -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/m2lang.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/m2lang.l -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/miralang.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/miralang.l -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/newargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/newargs.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/newargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/newargs.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/option-i.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/option-i.inp -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/options.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/options.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/pascallang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/pascallang.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/pascallang.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/pascallang.l -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/pass1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/pass1.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/pass1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/pass1.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/pass2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/pass2.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/pass2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/pass2.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/pass3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/pass3.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/pass3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/pass3.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/runs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/runs.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/runs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/runs.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/settings.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/settings.par -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/sim.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/sim.1 -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/sim.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/sim.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/sim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/sim.html -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/sim.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/sim.pdf -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/sortlist.bdy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/sortlist.bdy -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/sortlist.spc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/sortlist.spc -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/stream.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/stream.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/sysidf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/sysidf.mk -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/sysidf.msdos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/sysidf.msdos -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/sysidf.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/sysidf.unix -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/system.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/system.par -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/text.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/text.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/textlang.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/textlang.l -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/token.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/token.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/tokenarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/tokenarray.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_26/tokenarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_26/tokenarray.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/Answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/Answers -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/ChangeLog -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/LICENSE.txt -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/Makefile -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/Malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/Malloc.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/Malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/Malloc.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/README -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/TechnReport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/TechnReport -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/ToDo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/ToDo -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/VERSION: -------------------------------------------------------------------------------- 1 | 2.67 2 | -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/add_run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/add_run.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/add_run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/add_run.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/aiso.bdy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/aiso.bdy -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/aiso.spc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/aiso.spc -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/algollike.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/algollike.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/algollike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/algollike.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/clang.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/clang.l -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/compare.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/compare.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/debug.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/debug.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/debug.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/debug.par -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/error.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/error.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/fname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/fname.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/fname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/fname.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/hash.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/hash.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/idf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/idf.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/idf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/idf.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/javalang.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/javalang.l -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/lang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/lang.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/lang.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/language.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/language.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/language.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/lex.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/lex.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/lisplang.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/lisplang.l -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/m2lang.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/m2lang.l -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/miralang.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/miralang.l -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/newargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/newargs.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/newargs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/newargs.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/option-i.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/option-i.inp -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/options.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/options.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/pascallang.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/pascallang.l -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/pass1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/pass1.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/pass1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/pass1.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/pass2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/pass2.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/pass2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/pass2.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/pass3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/pass3.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/pass3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/pass3.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/runs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/runs.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/runs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/runs.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/settings.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/settings.par -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/sim.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/sim.1 -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/sim.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/sim.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/sim.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/sim.pdf -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/sim_c.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/sim_c.exe -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/sortlist.bdy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/sortlist.bdy -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/sortlist.spc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/sortlist.spc -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/stream.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/stream.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/system.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/system.par -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/text.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/text.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/textlang.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/textlang.l -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/token.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/token.h -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/tokenarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/tokenarray.c -------------------------------------------------------------------------------- /beta/core/sim/sim_2_67/tokenarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/core/sim/sim_2_67/tokenarray.h -------------------------------------------------------------------------------- /beta/install/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/install/README -------------------------------------------------------------------------------- /beta/install/db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/install/db.sql -------------------------------------------------------------------------------- /beta/install/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/install/install.sh -------------------------------------------------------------------------------- /beta/install/java0.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/install/java0.policy -------------------------------------------------------------------------------- /beta/install/judge.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/install/judge.conf -------------------------------------------------------------------------------- /beta/install/judged: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/install/judged -------------------------------------------------------------------------------- /beta/web/admin/admin-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/admin-header.php -------------------------------------------------------------------------------- /beta/web/admin/changepass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/changepass.php -------------------------------------------------------------------------------- /beta/web/admin/contest_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/contest_add.php -------------------------------------------------------------------------------- /beta/web/admin/contest_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/contest_edit.php -------------------------------------------------------------------------------- /beta/web/admin/contest_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/contest_list.php -------------------------------------------------------------------------------- /beta/web/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/index.php -------------------------------------------------------------------------------- /beta/web/admin/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/menu.php -------------------------------------------------------------------------------- /beta/web/admin/moodle_judge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/moodle_judge.php -------------------------------------------------------------------------------- /beta/web/admin/msg.txt: -------------------------------------------------------------------------------- 1 | 修改OJ基本信息请看include/db_info.inc.php HUSTOJ用户交流qq群23361372 2 | 3 | -------------------------------------------------------------------------------- /beta/web/admin/news_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/news_add.php -------------------------------------------------------------------------------- /beta/web/admin/news_add_page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/news_add_page.php -------------------------------------------------------------------------------- /beta/web/admin/news_df_change.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/news_df_change.php -------------------------------------------------------------------------------- /beta/web/admin/news_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/news_edit.php -------------------------------------------------------------------------------- /beta/web/admin/news_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/news_list.php -------------------------------------------------------------------------------- /beta/web/admin/privilege_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/privilege_add.php -------------------------------------------------------------------------------- /beta/web/admin/privilege_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/privilege_delete.php -------------------------------------------------------------------------------- /beta/web/admin/privilege_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/privilege_list.php -------------------------------------------------------------------------------- /beta/web/admin/problem_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/problem_add.php -------------------------------------------------------------------------------- /beta/web/admin/problem_add_page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/problem_add_page.php -------------------------------------------------------------------------------- /beta/web/admin/problem_changeid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/problem_changeid.php -------------------------------------------------------------------------------- /beta/web/admin/problem_copy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/problem_copy.php -------------------------------------------------------------------------------- /beta/web/admin/problem_del.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/problem_del.php -------------------------------------------------------------------------------- /beta/web/admin/problem_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/problem_edit.php -------------------------------------------------------------------------------- /beta/web/admin/problem_export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/problem_export.php -------------------------------------------------------------------------------- /beta/web/admin/problem_import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/problem_import.php -------------------------------------------------------------------------------- /beta/web/admin/problem_judge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/problem_judge.php -------------------------------------------------------------------------------- /beta/web/admin/problem_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/problem_list.php -------------------------------------------------------------------------------- /beta/web/admin/quixplorer/.config/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /beta/web/admin/quixplorer/.include/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /beta/web/admin/quixplorer/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/quixplorer/index.php -------------------------------------------------------------------------------- /beta/web/admin/rejudge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/rejudge.php -------------------------------------------------------------------------------- /beta/web/admin/setmsg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/setmsg.php -------------------------------------------------------------------------------- /beta/web/admin/source_give.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/source_give.php -------------------------------------------------------------------------------- /beta/web/admin/team_generate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/team_generate.php -------------------------------------------------------------------------------- /beta/web/admin/update_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/update_db.php -------------------------------------------------------------------------------- /beta/web/admin/update_pw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/admin/update_pw.php -------------------------------------------------------------------------------- /beta/web/bbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/bbs.php -------------------------------------------------------------------------------- /beta/web/bbs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/bbs/README -------------------------------------------------------------------------------- /beta/web/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /beta/web/ceinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/ceinfo.php -------------------------------------------------------------------------------- /beta/web/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/config.yaml -------------------------------------------------------------------------------- /beta/web/contest-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/contest-header.php -------------------------------------------------------------------------------- /beta/web/contest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/contest.php -------------------------------------------------------------------------------- /beta/web/contestrank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/contestrank.php -------------------------------------------------------------------------------- /beta/web/contestrank.xls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/contestrank.xls.php -------------------------------------------------------------------------------- /beta/web/conteststatistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/conteststatistics.php -------------------------------------------------------------------------------- /beta/web/discuss/contest-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/discuss/contest-header.php -------------------------------------------------------------------------------- /beta/web/discuss/discuss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/discuss/discuss.php -------------------------------------------------------------------------------- /beta/web/discuss/discuss.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/discuss/discuss.sql -------------------------------------------------------------------------------- /beta/web/discuss/hoj.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/discuss/hoj.css -------------------------------------------------------------------------------- /beta/web/discuss/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /beta/web/discuss/newpost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/discuss/newpost.php -------------------------------------------------------------------------------- /beta/web/discuss/oj-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/discuss/oj-header.php -------------------------------------------------------------------------------- /beta/web/discuss/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/discuss/post.php -------------------------------------------------------------------------------- /beta/web/discuss/superthread.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/discuss/superthread.php -------------------------------------------------------------------------------- /beta/web/discuss/thread.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/discuss/thread.php -------------------------------------------------------------------------------- /beta/web/discuss/threadadmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/discuss/threadadmin.php -------------------------------------------------------------------------------- /beta/web/edit_area/edit_area.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/edit_area.css -------------------------------------------------------------------------------- /beta/web/edit_area/edit_area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/edit_area.js -------------------------------------------------------------------------------- /beta/web/edit_area/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/highlight.js -------------------------------------------------------------------------------- /beta/web/edit_area/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/images/close.gif -------------------------------------------------------------------------------- /beta/web/edit_area/images/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/images/help.gif -------------------------------------------------------------------------------- /beta/web/edit_area/images/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/images/load.gif -------------------------------------------------------------------------------- /beta/web/edit_area/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/keyboard.js -------------------------------------------------------------------------------- /beta/web/edit_area/langs/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/langs/bg.js -------------------------------------------------------------------------------- /beta/web/edit_area/langs/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/langs/cs.js -------------------------------------------------------------------------------- /beta/web/edit_area/langs/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/langs/de.js -------------------------------------------------------------------------------- /beta/web/edit_area/langs/dk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/langs/dk.js -------------------------------------------------------------------------------- /beta/web/edit_area/langs/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/langs/en.js -------------------------------------------------------------------------------- /beta/web/edit_area/langs/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/langs/eo.js -------------------------------------------------------------------------------- /beta/web/edit_area/langs/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/langs/es.js -------------------------------------------------------------------------------- /beta/web/edit_area/langs/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/langs/fi.js -------------------------------------------------------------------------------- /beta/web/edit_area/langs/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/langs/fr.js -------------------------------------------------------------------------------- /beta/web/edit_area/langs/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/langs/hr.js -------------------------------------------------------------------------------- /beta/web/edit_area/langs/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/langs/it.js -------------------------------------------------------------------------------- /beta/web/edit_area/langs/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/langs/ja.js -------------------------------------------------------------------------------- /beta/web/edit_area/langs/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/langs/mk.js -------------------------------------------------------------------------------- /beta/web/edit_area/langs/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/langs/nl.js -------------------------------------------------------------------------------- /beta/web/edit_area/langs/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/langs/pl.js -------------------------------------------------------------------------------- /beta/web/edit_area/langs/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/langs/pt.js -------------------------------------------------------------------------------- /beta/web/edit_area/langs/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/langs/ru.js -------------------------------------------------------------------------------- /beta/web/edit_area/langs/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/langs/sk.js -------------------------------------------------------------------------------- /beta/web/edit_area/langs/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/langs/zh.js -------------------------------------------------------------------------------- /beta/web/edit_area/plugins/test/test2.js: -------------------------------------------------------------------------------- 1 | alert("test2.js is loaded from test plugin"); 2 | -------------------------------------------------------------------------------- /beta/web/edit_area/reg_syntax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/reg_syntax.js -------------------------------------------------------------------------------- /beta/web/edit_area/regexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/regexp.js -------------------------------------------------------------------------------- /beta/web/edit_area/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/edit_area/template.html -------------------------------------------------------------------------------- /beta/web/export_ac_code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/export_ac_code.php -------------------------------------------------------------------------------- /beta/web/export_contest_code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/export_contest_code.php -------------------------------------------------------------------------------- /beta/web/faqs.cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/faqs.cn.php -------------------------------------------------------------------------------- /beta/web/faqs.ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/faqs.ko.php -------------------------------------------------------------------------------- /beta/web/faqs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/faqs.php -------------------------------------------------------------------------------- /beta/web/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beta/web/fckeditor/fckconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/fckeditor/fckconfig.js -------------------------------------------------------------------------------- /beta/web/fckeditor/fckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/fckeditor/fckeditor.js -------------------------------------------------------------------------------- /beta/web/fckeditor/fckeditor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/fckeditor/fckeditor.php -------------------------------------------------------------------------------- /beta/web/fckeditor/fckstyles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/fckeditor/fckstyles.xml -------------------------------------------------------------------------------- /beta/web/fckeditor/fckutils.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/fckeditor/fckutils.cfm -------------------------------------------------------------------------------- /beta/web/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/gpl-2.0.txt -------------------------------------------------------------------------------- /beta/web/image/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/image/background.jpg -------------------------------------------------------------------------------- /beta/web/image/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/image/content.png -------------------------------------------------------------------------------- /beta/web/image/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/image/loader.gif -------------------------------------------------------------------------------- /beta/web/image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/image/logo.png -------------------------------------------------------------------------------- /beta/web/image/menu_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/image/menu_bg.png -------------------------------------------------------------------------------- /beta/web/include/QQWry.Dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/include/QQWry.Dat -------------------------------------------------------------------------------- /beta/web/include/Vera.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/include/Vera.ttf -------------------------------------------------------------------------------- /beta/web/include/cache_end.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/include/cache_end.php -------------------------------------------------------------------------------- /beta/web/include/cache_start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/include/cache_start.php -------------------------------------------------------------------------------- /beta/web/include/checksource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/include/checksource.js -------------------------------------------------------------------------------- /beta/web/include/const.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/include/const.inc.php -------------------------------------------------------------------------------- /beta/web/include/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/include/dark.css -------------------------------------------------------------------------------- /beta/web/include/db_info.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/include/db_info.inc.php -------------------------------------------------------------------------------- /beta/web/include/gcode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/include/gcode.css -------------------------------------------------------------------------------- /beta/web/include/hoj.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/include/hoj.css -------------------------------------------------------------------------------- /beta/web/include/iplocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/include/iplocation.php -------------------------------------------------------------------------------- /beta/web/include/login-ldap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/include/login-ldap.php -------------------------------------------------------------------------------- /beta/web/include/memcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/include/memcache.php -------------------------------------------------------------------------------- /beta/web/include/my_func.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/include/my_func.inc.php -------------------------------------------------------------------------------- /beta/web/include/online.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/include/online.php -------------------------------------------------------------------------------- /beta/web/include/pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/include/pie.js -------------------------------------------------------------------------------- /beta/web/include/problem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/include/problem.php -------------------------------------------------------------------------------- /beta/web/include/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/include/profile.php -------------------------------------------------------------------------------- /beta/web/include/set_get_key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/include/set_get_key.php -------------------------------------------------------------------------------- /beta/web/include/setlang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/include/setlang.php -------------------------------------------------------------------------------- /beta/web/include/sortTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/include/sortTable.js -------------------------------------------------------------------------------- /beta/web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/index.php -------------------------------------------------------------------------------- /beta/web/lang/cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/lang/cn.php -------------------------------------------------------------------------------- /beta/web/lang/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/lang/en.php -------------------------------------------------------------------------------- /beta/web/lang/fa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/lang/fa.php -------------------------------------------------------------------------------- /beta/web/lang/ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/lang/ko.php -------------------------------------------------------------------------------- /beta/web/lang/th.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/lang/th.php -------------------------------------------------------------------------------- /beta/web/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/login.php -------------------------------------------------------------------------------- /beta/web/login_qq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/login_qq.php -------------------------------------------------------------------------------- /beta/web/login_renren.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/login_renren.php -------------------------------------------------------------------------------- /beta/web/login_weibo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/login_weibo.php -------------------------------------------------------------------------------- /beta/web/loginpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/loginpage.php -------------------------------------------------------------------------------- /beta/web/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/logout.php -------------------------------------------------------------------------------- /beta/web/lostpassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/lostpassword.php -------------------------------------------------------------------------------- /beta/web/lostpassword2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/lostpassword2.php -------------------------------------------------------------------------------- /beta/web/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/mail.php -------------------------------------------------------------------------------- /beta/web/modify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/modify.php -------------------------------------------------------------------------------- /beta/web/modifypage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/modifypage.php -------------------------------------------------------------------------------- /beta/web/oj-footer.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /beta/web/oj-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/oj-header.php -------------------------------------------------------------------------------- /beta/web/online.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/online.php -------------------------------------------------------------------------------- /beta/web/problem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/problem.php -------------------------------------------------------------------------------- /beta/web/problemset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/problemset.php -------------------------------------------------------------------------------- /beta/web/problemstatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/problemstatus.php -------------------------------------------------------------------------------- /beta/web/ranklist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/ranklist.php -------------------------------------------------------------------------------- /beta/web/recent-contest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/recent-contest.php -------------------------------------------------------------------------------- /beta/web/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/register.php -------------------------------------------------------------------------------- /beta/web/registerpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/registerpage.php -------------------------------------------------------------------------------- /beta/web/reinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/reinfo.php -------------------------------------------------------------------------------- /beta/web/sae/db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/sae/db.sql -------------------------------------------------------------------------------- /beta/web/sae/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/sae/install.php -------------------------------------------------------------------------------- /beta/web/sae_app_wizard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/sae_app_wizard.xml -------------------------------------------------------------------------------- /beta/web/setlang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/setlang.php -------------------------------------------------------------------------------- /beta/web/showsource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/showsource.php -------------------------------------------------------------------------------- /beta/web/status-ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/status-ajax.php -------------------------------------------------------------------------------- /beta/web/status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/status.php -------------------------------------------------------------------------------- /beta/web/submit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/submit.php -------------------------------------------------------------------------------- /beta/web/submitpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/submitpage.php -------------------------------------------------------------------------------- /beta/web/template/bs/ceinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/template/bs/ceinfo.php -------------------------------------------------------------------------------- /beta/web/template/bs/contest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/template/bs/contest.php -------------------------------------------------------------------------------- /beta/web/template/bs/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/template/bs/error.php -------------------------------------------------------------------------------- /beta/web/template/bs/faqs.cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/template/bs/faqs.cn.php -------------------------------------------------------------------------------- /beta/web/template/bs/faqs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/template/bs/faqs.php -------------------------------------------------------------------------------- /beta/web/template/bs/hoj.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/template/bs/hoj.css -------------------------------------------------------------------------------- /beta/web/template/bs/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/template/bs/index.php -------------------------------------------------------------------------------- /beta/web/template/bs/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/template/bs/mail.php -------------------------------------------------------------------------------- /beta/web/template/bs/online.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/template/bs/online.php -------------------------------------------------------------------------------- /beta/web/template/bs/problem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/template/bs/problem.php -------------------------------------------------------------------------------- /beta/web/template/bs/reinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/template/bs/reinfo.php -------------------------------------------------------------------------------- /beta/web/template/bs/status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/template/bs/status.php -------------------------------------------------------------------------------- /beta/web/userinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/userinfo.php -------------------------------------------------------------------------------- /beta/web/vcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/beta/web/vcode.php -------------------------------------------------------------------------------- /branches/template-alpha/admin/msg.txt: -------------------------------------------------------------------------------- 1 | 修改OJ基本信息请看include/db_info.inc.php HUSTOJ用户交流qq群23361372 2 | 3 | -------------------------------------------------------------------------------- /branches/template-alpha/admin/quixplorer/.config/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /branches/template-alpha/admin/quixplorer/.include/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /branches/template-alpha/bbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/branches/template-alpha/bbs.php -------------------------------------------------------------------------------- /branches/template-alpha/discuss/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /branches/template-alpha/edit_area/plugins/test/test2.js: -------------------------------------------------------------------------------- 1 | alert("test2.js is loaded from test plugin"); 2 | -------------------------------------------------------------------------------- /branches/template-alpha/faqs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/branches/template-alpha/faqs.php -------------------------------------------------------------------------------- /branches/template-alpha/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /branches/template-alpha/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/branches/template-alpha/mail.php -------------------------------------------------------------------------------- /branches/template-alpha/oj-footer.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /branches/template-beta/admin/msg.txt: -------------------------------------------------------------------------------- 1 | 修改OJ基本信息请看include/db_info.inc.php HUSTOJ用户交流qq群23361372 2 | 3 | -------------------------------------------------------------------------------- /branches/template-beta/admin/quixplorer/.config/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /branches/template-beta/admin/quixplorer/.include/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /branches/template-beta/bbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/branches/template-beta/bbs.php -------------------------------------------------------------------------------- /branches/template-beta/discuss/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /branches/template-beta/edit_area/plugins/test/test2.js: -------------------------------------------------------------------------------- 1 | alert("test2.js is loaded from test plugin"); 2 | -------------------------------------------------------------------------------- /branches/template-beta/faqs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/branches/template-beta/faqs.php -------------------------------------------------------------------------------- /branches/template-beta/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /branches/template-beta/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/branches/template-beta/index.php -------------------------------------------------------------------------------- /branches/template-beta/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/branches/template-beta/login.php -------------------------------------------------------------------------------- /branches/template-beta/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/branches/template-beta/mail.php -------------------------------------------------------------------------------- /branches/template-beta/oj-footer.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /branches/template-beta/vcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/branches/template-beta/vcode.php -------------------------------------------------------------------------------- /tags/1.2rc/core/judged/judged.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/core/judged/judged.cc -------------------------------------------------------------------------------- /tags/1.2rc/core/judged/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/core/judged/makefile -------------------------------------------------------------------------------- /tags/1.2rc/core/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/core/make.sh -------------------------------------------------------------------------------- /tags/1.2rc/core/sim/sim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/core/sim/sim.sh -------------------------------------------------------------------------------- /tags/1.2rc/core/sim/sim_2_26/VERSION: -------------------------------------------------------------------------------- 1 | 2.26 2 | -------------------------------------------------------------------------------- /tags/1.2rc/install/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/install/README -------------------------------------------------------------------------------- /tags/1.2rc/install/db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/install/db.sql -------------------------------------------------------------------------------- /tags/1.2rc/install/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/install/install.sh -------------------------------------------------------------------------------- /tags/1.2rc/install/java0.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/install/java0.policy -------------------------------------------------------------------------------- /tags/1.2rc/install/judge.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/install/judge.conf -------------------------------------------------------------------------------- /tags/1.2rc/install/judged: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/install/judged -------------------------------------------------------------------------------- /tags/1.2rc/web/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/admin/index.php -------------------------------------------------------------------------------- /tags/1.2rc/web/admin/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/admin/menu.php -------------------------------------------------------------------------------- /tags/1.2rc/web/admin/msg.txt: -------------------------------------------------------------------------------- 1 | 修改OJ基本信息请看include/db_info.inc.php HUSTOJ用户交流qq群23361372 2 | 3 | -------------------------------------------------------------------------------- /tags/1.2rc/web/admin/quixplorer/.config/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /tags/1.2rc/web/admin/quixplorer/.include/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /tags/1.2rc/web/admin/rejudge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/admin/rejudge.php -------------------------------------------------------------------------------- /tags/1.2rc/web/admin/setmsg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/admin/setmsg.php -------------------------------------------------------------------------------- /tags/1.2rc/web/bbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/bbs.php -------------------------------------------------------------------------------- /tags/1.2rc/web/bbs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/bbs/README -------------------------------------------------------------------------------- /tags/1.2rc/web/ceinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/ceinfo.php -------------------------------------------------------------------------------- /tags/1.2rc/web/contest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/contest.php -------------------------------------------------------------------------------- /tags/1.2rc/web/contestrank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/contestrank.php -------------------------------------------------------------------------------- /tags/1.2rc/web/discuss/hoj.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/discuss/hoj.css -------------------------------------------------------------------------------- /tags/1.2rc/web/discuss/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /tags/1.2rc/web/discuss/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/discuss/post.php -------------------------------------------------------------------------------- /tags/1.2rc/web/edit_area/plugins/test/test2.js: -------------------------------------------------------------------------------- 1 | alert("test2.js is loaded from test plugin"); 2 | -------------------------------------------------------------------------------- /tags/1.2rc/web/faqs.cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/faqs.cn.php -------------------------------------------------------------------------------- /tags/1.2rc/web/faqs.ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/faqs.ko.php -------------------------------------------------------------------------------- /tags/1.2rc/web/faqs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/faqs.php -------------------------------------------------------------------------------- /tags/1.2rc/web/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/1.2rc/web/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/gpl-2.0.txt -------------------------------------------------------------------------------- /tags/1.2rc/web/image/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/image/content.png -------------------------------------------------------------------------------- /tags/1.2rc/web/image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/image/logo.png -------------------------------------------------------------------------------- /tags/1.2rc/web/include/QQWry.Dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/include/QQWry.Dat -------------------------------------------------------------------------------- /tags/1.2rc/web/include/Vera.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/include/Vera.ttf -------------------------------------------------------------------------------- /tags/1.2rc/web/include/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/include/dark.css -------------------------------------------------------------------------------- /tags/1.2rc/web/include/gcode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/include/gcode.css -------------------------------------------------------------------------------- /tags/1.2rc/web/include/hoj.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/include/hoj.css -------------------------------------------------------------------------------- /tags/1.2rc/web/include/pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/include/pie.js -------------------------------------------------------------------------------- /tags/1.2rc/web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/index.php -------------------------------------------------------------------------------- /tags/1.2rc/web/lang/cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/lang/cn.php -------------------------------------------------------------------------------- /tags/1.2rc/web/lang/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/lang/en.php -------------------------------------------------------------------------------- /tags/1.2rc/web/lang/fa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/lang/fa.php -------------------------------------------------------------------------------- /tags/1.2rc/web/lang/ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/lang/ko.php -------------------------------------------------------------------------------- /tags/1.2rc/web/lang/th.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/lang/th.php -------------------------------------------------------------------------------- /tags/1.2rc/web/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/login.php -------------------------------------------------------------------------------- /tags/1.2rc/web/loginpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/loginpage.php -------------------------------------------------------------------------------- /tags/1.2rc/web/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/logout.php -------------------------------------------------------------------------------- /tags/1.2rc/web/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/mail.php -------------------------------------------------------------------------------- /tags/1.2rc/web/modify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/modify.php -------------------------------------------------------------------------------- /tags/1.2rc/web/modifypage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/modifypage.php -------------------------------------------------------------------------------- /tags/1.2rc/web/oj-footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/oj-footer.php -------------------------------------------------------------------------------- /tags/1.2rc/web/oj-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/oj-header.php -------------------------------------------------------------------------------- /tags/1.2rc/web/online.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/online.php -------------------------------------------------------------------------------- /tags/1.2rc/web/problem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/problem.php -------------------------------------------------------------------------------- /tags/1.2rc/web/problemset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/problemset.php -------------------------------------------------------------------------------- /tags/1.2rc/web/problemstatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/problemstatus.php -------------------------------------------------------------------------------- /tags/1.2rc/web/ranklist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/ranklist.php -------------------------------------------------------------------------------- /tags/1.2rc/web/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/register.php -------------------------------------------------------------------------------- /tags/1.2rc/web/registerpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/registerpage.php -------------------------------------------------------------------------------- /tags/1.2rc/web/reinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/reinfo.php -------------------------------------------------------------------------------- /tags/1.2rc/web/setlang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/setlang.php -------------------------------------------------------------------------------- /tags/1.2rc/web/showsource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/showsource.php -------------------------------------------------------------------------------- /tags/1.2rc/web/status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/status.php -------------------------------------------------------------------------------- /tags/1.2rc/web/submit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/submit.php -------------------------------------------------------------------------------- /tags/1.2rc/web/submitpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/submitpage.php -------------------------------------------------------------------------------- /tags/1.2rc/web/userinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/userinfo.php -------------------------------------------------------------------------------- /tags/1.2rc/web/vcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/1.2rc/web/vcode.php -------------------------------------------------------------------------------- /tags/CEHelper/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/admin/index.php -------------------------------------------------------------------------------- /tags/CEHelper/admin/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/admin/menu.php -------------------------------------------------------------------------------- /tags/CEHelper/admin/msg.txt: -------------------------------------------------------------------------------- 1 | 修改OJ基本信息请看include/db_info.inc.php HUSTOJ用户交流qq群23361372 2 | 3 | -------------------------------------------------------------------------------- /tags/CEHelper/admin/news_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/admin/news_add.php -------------------------------------------------------------------------------- /tags/CEHelper/admin/quixplorer/.config/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /tags/CEHelper/admin/quixplorer/.include/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /tags/CEHelper/admin/rejudge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/admin/rejudge.php -------------------------------------------------------------------------------- /tags/CEHelper/admin/setmsg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/admin/setmsg.php -------------------------------------------------------------------------------- /tags/CEHelper/bbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/bbs.php -------------------------------------------------------------------------------- /tags/CEHelper/bbs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/bbs/README -------------------------------------------------------------------------------- /tags/CEHelper/ceinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/ceinfo.php -------------------------------------------------------------------------------- /tags/CEHelper/contest-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/contest-header.php -------------------------------------------------------------------------------- /tags/CEHelper/contest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/contest.php -------------------------------------------------------------------------------- /tags/CEHelper/contestrank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/contestrank.php -------------------------------------------------------------------------------- /tags/CEHelper/discuss/hoj.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/discuss/hoj.css -------------------------------------------------------------------------------- /tags/CEHelper/discuss/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /tags/CEHelper/discuss/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/discuss/post.php -------------------------------------------------------------------------------- /tags/CEHelper/discuss/thread.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/discuss/thread.php -------------------------------------------------------------------------------- /tags/CEHelper/edit_area/plugins/test/test2.js: -------------------------------------------------------------------------------- 1 | alert("test2.js is loaded from test plugin"); 2 | -------------------------------------------------------------------------------- /tags/CEHelper/export_ac_code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/export_ac_code.php -------------------------------------------------------------------------------- /tags/CEHelper/faqs.cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/faqs.cn.php -------------------------------------------------------------------------------- /tags/CEHelper/faqs.ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/faqs.ko.php -------------------------------------------------------------------------------- /tags/CEHelper/faqs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/faqs.php -------------------------------------------------------------------------------- /tags/CEHelper/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/CEHelper/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/gpl-2.0.txt -------------------------------------------------------------------------------- /tags/CEHelper/image/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/image/content.png -------------------------------------------------------------------------------- /tags/CEHelper/image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/image/logo.png -------------------------------------------------------------------------------- /tags/CEHelper/image/menu_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/image/menu_bg.png -------------------------------------------------------------------------------- /tags/CEHelper/include/QQWry.Dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/include/QQWry.Dat -------------------------------------------------------------------------------- /tags/CEHelper/include/Vera.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/include/Vera.ttf -------------------------------------------------------------------------------- /tags/CEHelper/include/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/include/dark.css -------------------------------------------------------------------------------- /tags/CEHelper/include/gcode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/include/gcode.css -------------------------------------------------------------------------------- /tags/CEHelper/include/hoj.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/include/hoj.css -------------------------------------------------------------------------------- /tags/CEHelper/include/online.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/include/online.php -------------------------------------------------------------------------------- /tags/CEHelper/include/pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/include/pie.js -------------------------------------------------------------------------------- /tags/CEHelper/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/index.php -------------------------------------------------------------------------------- /tags/CEHelper/lang/cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/lang/cn.php -------------------------------------------------------------------------------- /tags/CEHelper/lang/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/lang/en.php -------------------------------------------------------------------------------- /tags/CEHelper/lang/fa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/lang/fa.php -------------------------------------------------------------------------------- /tags/CEHelper/lang/ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/lang/ko.php -------------------------------------------------------------------------------- /tags/CEHelper/lang/th.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/lang/th.php -------------------------------------------------------------------------------- /tags/CEHelper/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/login.php -------------------------------------------------------------------------------- /tags/CEHelper/loginpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/loginpage.php -------------------------------------------------------------------------------- /tags/CEHelper/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/logout.php -------------------------------------------------------------------------------- /tags/CEHelper/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/mail.php -------------------------------------------------------------------------------- /tags/CEHelper/modify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/modify.php -------------------------------------------------------------------------------- /tags/CEHelper/modifypage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/modifypage.php -------------------------------------------------------------------------------- /tags/CEHelper/oj-footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/oj-footer.php -------------------------------------------------------------------------------- /tags/CEHelper/oj-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/oj-header.php -------------------------------------------------------------------------------- /tags/CEHelper/online.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/online.php -------------------------------------------------------------------------------- /tags/CEHelper/problem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/problem.php -------------------------------------------------------------------------------- /tags/CEHelper/problemset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/problemset.php -------------------------------------------------------------------------------- /tags/CEHelper/problemstatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/problemstatus.php -------------------------------------------------------------------------------- /tags/CEHelper/ranklist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/ranklist.php -------------------------------------------------------------------------------- /tags/CEHelper/recent-contest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/recent-contest.php -------------------------------------------------------------------------------- /tags/CEHelper/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/register.php -------------------------------------------------------------------------------- /tags/CEHelper/registerpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/registerpage.php -------------------------------------------------------------------------------- /tags/CEHelper/reinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/reinfo.php -------------------------------------------------------------------------------- /tags/CEHelper/setlang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/setlang.php -------------------------------------------------------------------------------- /tags/CEHelper/showsource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/showsource.php -------------------------------------------------------------------------------- /tags/CEHelper/status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/status.php -------------------------------------------------------------------------------- /tags/CEHelper/submit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/submit.php -------------------------------------------------------------------------------- /tags/CEHelper/submitpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/submitpage.php -------------------------------------------------------------------------------- /tags/CEHelper/userinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/userinfo.php -------------------------------------------------------------------------------- /tags/CEHelper/vcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/CEHelper/vcode.php -------------------------------------------------------------------------------- /tags/beta1.0/web/.buildpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/.buildpath -------------------------------------------------------------------------------- /tags/beta1.0/web/.htaccess: -------------------------------------------------------------------------------- 1 | php_value session.auto_start off 2 | -------------------------------------------------------------------------------- /tags/beta1.0/web/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/.project -------------------------------------------------------------------------------- /tags/beta1.0/web/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/admin/index.php -------------------------------------------------------------------------------- /tags/beta1.0/web/admin/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/admin/menu.php -------------------------------------------------------------------------------- /tags/beta1.0/web/admin/msg.txt: -------------------------------------------------------------------------------- 1 | 修改OJ基本信息请看include/db_info.inc.php -------------------------------------------------------------------------------- /tags/beta1.0/web/bbs.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tags/beta1.0/web/ceinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/ceinfo.php -------------------------------------------------------------------------------- /tags/beta1.0/web/contest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/contest.php -------------------------------------------------------------------------------- /tags/beta1.0/web/contestrank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/contestrank.php -------------------------------------------------------------------------------- /tags/beta1.0/web/faqs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/faqs.php -------------------------------------------------------------------------------- /tags/beta1.0/web/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/beta1.0/web/include/hoj.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/include/hoj.css -------------------------------------------------------------------------------- /tags/beta1.0/web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/index.php -------------------------------------------------------------------------------- /tags/beta1.0/web/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/login.php -------------------------------------------------------------------------------- /tags/beta1.0/web/loginpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/loginpage.php -------------------------------------------------------------------------------- /tags/beta1.0/web/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/logout.php -------------------------------------------------------------------------------- /tags/beta1.0/web/modify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/modify.php -------------------------------------------------------------------------------- /tags/beta1.0/web/modifypage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/modifypage.php -------------------------------------------------------------------------------- /tags/beta1.0/web/oj-footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/oj-footer.php -------------------------------------------------------------------------------- /tags/beta1.0/web/oj-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/oj-header.php -------------------------------------------------------------------------------- /tags/beta1.0/web/online.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/online.php -------------------------------------------------------------------------------- /tags/beta1.0/web/phpinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/phpinfo.php -------------------------------------------------------------------------------- /tags/beta1.0/web/problem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/problem.php -------------------------------------------------------------------------------- /tags/beta1.0/web/problemset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/problemset.php -------------------------------------------------------------------------------- /tags/beta1.0/web/ranklist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/ranklist.php -------------------------------------------------------------------------------- /tags/beta1.0/web/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/register.php -------------------------------------------------------------------------------- /tags/beta1.0/web/showsource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/showsource.php -------------------------------------------------------------------------------- /tags/beta1.0/web/status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/status.php -------------------------------------------------------------------------------- /tags/beta1.0/web/submit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/submit.php -------------------------------------------------------------------------------- /tags/beta1.0/web/submitpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/submitpage.php -------------------------------------------------------------------------------- /tags/beta1.0/web/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/test.php -------------------------------------------------------------------------------- /tags/beta1.0/web/userinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.0/web/userinfo.php -------------------------------------------------------------------------------- /tags/beta1.1/web/.htaccess: -------------------------------------------------------------------------------- 1 | php_value session.auto_start off 2 | -------------------------------------------------------------------------------- /tags/beta1.1/web/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/admin/index.php -------------------------------------------------------------------------------- /tags/beta1.1/web/admin/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/admin/menu.php -------------------------------------------------------------------------------- /tags/beta1.1/web/admin/msg.txt: -------------------------------------------------------------------------------- 1 | 修改OJ基本信息请看include/db_info.inc.php -------------------------------------------------------------------------------- /tags/beta1.1/web/bbs.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tags/beta1.1/web/ceinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/ceinfo.php -------------------------------------------------------------------------------- /tags/beta1.1/web/contest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/contest.php -------------------------------------------------------------------------------- /tags/beta1.1/web/contestrank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/contestrank.php -------------------------------------------------------------------------------- /tags/beta1.1/web/faqs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/faqs.php -------------------------------------------------------------------------------- /tags/beta1.1/web/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/beta1.1/web/include/hoj.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/include/hoj.css -------------------------------------------------------------------------------- /tags/beta1.1/web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/index.php -------------------------------------------------------------------------------- /tags/beta1.1/web/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/login.php -------------------------------------------------------------------------------- /tags/beta1.1/web/loginpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/loginpage.php -------------------------------------------------------------------------------- /tags/beta1.1/web/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/logout.php -------------------------------------------------------------------------------- /tags/beta1.1/web/modify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/modify.php -------------------------------------------------------------------------------- /tags/beta1.1/web/modifypage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/modifypage.php -------------------------------------------------------------------------------- /tags/beta1.1/web/oj-footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/oj-footer.php -------------------------------------------------------------------------------- /tags/beta1.1/web/oj-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/oj-header.php -------------------------------------------------------------------------------- /tags/beta1.1/web/online.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/online.php -------------------------------------------------------------------------------- /tags/beta1.1/web/phpinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/phpinfo.php -------------------------------------------------------------------------------- /tags/beta1.1/web/problem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/problem.php -------------------------------------------------------------------------------- /tags/beta1.1/web/problemset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/problemset.php -------------------------------------------------------------------------------- /tags/beta1.1/web/ranklist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/ranklist.php -------------------------------------------------------------------------------- /tags/beta1.1/web/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/register.php -------------------------------------------------------------------------------- /tags/beta1.1/web/showsource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/showsource.php -------------------------------------------------------------------------------- /tags/beta1.1/web/status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/status.php -------------------------------------------------------------------------------- /tags/beta1.1/web/submit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/submit.php -------------------------------------------------------------------------------- /tags/beta1.1/web/submitpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/submitpage.php -------------------------------------------------------------------------------- /tags/beta1.1/web/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/test.php -------------------------------------------------------------------------------- /tags/beta1.1/web/userinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/beta1.1/web/userinfo.php -------------------------------------------------------------------------------- /tags/template-alpha/admin/msg.txt: -------------------------------------------------------------------------------- 1 | 修改OJ基本信息请看include/db_info.inc.php HUSTOJ用户交流qq群23361372 2 | 3 | -------------------------------------------------------------------------------- /tags/template-alpha/admin/quixplorer/.config/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /tags/template-alpha/admin/quixplorer/.include/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /tags/template-alpha/bbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/bbs.php -------------------------------------------------------------------------------- /tags/template-alpha/bbs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/bbs/README -------------------------------------------------------------------------------- /tags/template-alpha/ceinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/ceinfo.php -------------------------------------------------------------------------------- /tags/template-alpha/contest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/contest.php -------------------------------------------------------------------------------- /tags/template-alpha/discuss/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /tags/template-alpha/edit_area/plugins/test/test2.js: -------------------------------------------------------------------------------- 1 | alert("test2.js is loaded from test plugin"); 2 | -------------------------------------------------------------------------------- /tags/template-alpha/faqs.cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/faqs.cn.php -------------------------------------------------------------------------------- /tags/template-alpha/faqs.ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/faqs.ko.php -------------------------------------------------------------------------------- /tags/template-alpha/faqs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/faqs.php -------------------------------------------------------------------------------- /tags/template-alpha/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tags/template-alpha/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/gpl-2.0.txt -------------------------------------------------------------------------------- /tags/template-alpha/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/index.php -------------------------------------------------------------------------------- /tags/template-alpha/lang/cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/lang/cn.php -------------------------------------------------------------------------------- /tags/template-alpha/lang/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/lang/en.php -------------------------------------------------------------------------------- /tags/template-alpha/lang/fa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/lang/fa.php -------------------------------------------------------------------------------- /tags/template-alpha/lang/ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/lang/ko.php -------------------------------------------------------------------------------- /tags/template-alpha/lang/th.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/lang/th.php -------------------------------------------------------------------------------- /tags/template-alpha/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/login.php -------------------------------------------------------------------------------- /tags/template-alpha/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/logout.php -------------------------------------------------------------------------------- /tags/template-alpha/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/mail.php -------------------------------------------------------------------------------- /tags/template-alpha/modify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/modify.php -------------------------------------------------------------------------------- /tags/template-alpha/oj-footer.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /tags/template-alpha/online.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/online.php -------------------------------------------------------------------------------- /tags/template-alpha/problem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/problem.php -------------------------------------------------------------------------------- /tags/template-alpha/ranklist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/ranklist.php -------------------------------------------------------------------------------- /tags/template-alpha/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/register.php -------------------------------------------------------------------------------- /tags/template-alpha/reinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/reinfo.php -------------------------------------------------------------------------------- /tags/template-alpha/setlang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/setlang.php -------------------------------------------------------------------------------- /tags/template-alpha/status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/status.php -------------------------------------------------------------------------------- /tags/template-alpha/submit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/submit.php -------------------------------------------------------------------------------- /tags/template-alpha/userinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/userinfo.php -------------------------------------------------------------------------------- /tags/template-alpha/vcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/tags/template-alpha/vcode.php -------------------------------------------------------------------------------- /trunk/android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/android/.classpath -------------------------------------------------------------------------------- /trunk/android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/android/.project -------------------------------------------------------------------------------- /trunk/android/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/android/bin/classes.dex -------------------------------------------------------------------------------- /trunk/android/bin/hustoj.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/android/bin/hustoj.apk -------------------------------------------------------------------------------- /trunk/android/bin/jarlist.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/android/bin/jarlist.cache -------------------------------------------------------------------------------- /trunk/android/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/android/bin/resources.ap_ -------------------------------------------------------------------------------- /trunk/android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/android/project.properties -------------------------------------------------------------------------------- /trunk/core/judge_client/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/judge_client/makefile -------------------------------------------------------------------------------- /trunk/core/judge_client/ncalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/judge_client/ncalls.h -------------------------------------------------------------------------------- /trunk/core/judged/judged.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/judged/judged.cc -------------------------------------------------------------------------------- /trunk/core/judged/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/judged/makefile -------------------------------------------------------------------------------- /trunk/core/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/make.sh -------------------------------------------------------------------------------- /trunk/core/sim/sim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim.sh -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/Answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/Answers -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/Makefile -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/Malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/Malloc.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/Malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/Malloc.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/READ.ME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/READ.ME -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/READ_ME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/READ_ME -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/ToDo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/ToDo -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/VERSION: -------------------------------------------------------------------------------- 1 | 2.26 2 | -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/aiso.bdy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/aiso.bdy -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/aiso.spc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/aiso.spc -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/clang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/clang.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/clang.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/clang.l -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/error.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/error.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/hash.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/hash.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/idf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/idf.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/idf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/idf.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/lang.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/lex.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/lex.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/m2lang.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/m2lang.l -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/pass1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/pass1.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/pass1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/pass1.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/pass2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/pass2.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/pass2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/pass2.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/pass3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/pass3.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/pass3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/pass3.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/runs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/runs.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/runs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/runs.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/sim.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/sim.1 -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/sim.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/sim.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/sim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/sim.html -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/sim.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/sim.pdf -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/stream.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/stream.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/text.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/text.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/token.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_26/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_26/token.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/Answers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/Answers -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/Makefile -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/Malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/Malloc.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/Malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/Malloc.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/README -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/ToDo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/ToDo -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/VERSION: -------------------------------------------------------------------------------- 1 | 2.67 2 | -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/aiso.bdy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/aiso.bdy -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/aiso.spc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/aiso.spc -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/clang.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/clang.l -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/debug.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/debug.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/error.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/error.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/fname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/fname.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/fname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/fname.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/hash.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/hash.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/idf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/idf.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/idf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/idf.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/lang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/lang.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/lang.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/lex.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/lex.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/m2lang.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/m2lang.l -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/pass1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/pass1.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/pass1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/pass1.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/pass2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/pass2.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/pass2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/pass2.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/pass3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/pass3.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/pass3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/pass3.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/runs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/runs.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/runs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/runs.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/sim.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/sim.1 -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/sim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/sim.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/sim.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/sim.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/sim.pdf -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/stream.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/stream.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/text.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/text.h -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/token.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/token.c -------------------------------------------------------------------------------- /trunk/core/sim/sim_2_67/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/core/sim/sim_2_67/token.h -------------------------------------------------------------------------------- /trunk/install/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/install/README -------------------------------------------------------------------------------- /trunk/install/db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/install/db.sql -------------------------------------------------------------------------------- /trunk/install/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/install/install.sh -------------------------------------------------------------------------------- /trunk/install/java0.policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/install/java0.policy -------------------------------------------------------------------------------- /trunk/install/judge.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/install/judge.conf -------------------------------------------------------------------------------- /trunk/install/judged: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/install/judged -------------------------------------------------------------------------------- /trunk/web/admin/admin-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/admin/admin-header.php -------------------------------------------------------------------------------- /trunk/web/admin/changepass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/admin/changepass.php -------------------------------------------------------------------------------- /trunk/web/admin/contest_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/admin/contest_add.php -------------------------------------------------------------------------------- /trunk/web/admin/contest_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/admin/contest_edit.php -------------------------------------------------------------------------------- /trunk/web/admin/contest_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/admin/contest_list.php -------------------------------------------------------------------------------- /trunk/web/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/admin/index.php -------------------------------------------------------------------------------- /trunk/web/admin/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/admin/menu.php -------------------------------------------------------------------------------- /trunk/web/admin/moodle_judge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/admin/moodle_judge.php -------------------------------------------------------------------------------- /trunk/web/admin/msg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/admin/msg.txt -------------------------------------------------------------------------------- /trunk/web/admin/news_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/admin/news_add.php -------------------------------------------------------------------------------- /trunk/web/admin/news_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/admin/news_edit.php -------------------------------------------------------------------------------- /trunk/web/admin/news_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/admin/news_list.php -------------------------------------------------------------------------------- /trunk/web/admin/problem_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/admin/problem_add.php -------------------------------------------------------------------------------- /trunk/web/admin/problem_copy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/admin/problem_copy.php -------------------------------------------------------------------------------- /trunk/web/admin/problem_del.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/admin/problem_del.php -------------------------------------------------------------------------------- /trunk/web/admin/problem_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/admin/problem_edit.php -------------------------------------------------------------------------------- /trunk/web/admin/problem_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/admin/problem_list.php -------------------------------------------------------------------------------- /trunk/web/admin/quixplorer/.config/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /trunk/web/admin/quixplorer/.include/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /trunk/web/admin/rejudge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/admin/rejudge.php -------------------------------------------------------------------------------- /trunk/web/admin/setmsg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/admin/setmsg.php -------------------------------------------------------------------------------- /trunk/web/admin/source_give.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/admin/source_give.php -------------------------------------------------------------------------------- /trunk/web/admin/update_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/admin/update_db.php -------------------------------------------------------------------------------- /trunk/web/admin/update_pw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/admin/update_pw.php -------------------------------------------------------------------------------- /trunk/web/admin/watch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/admin/watch.php -------------------------------------------------------------------------------- /trunk/web/bbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/bbs.php -------------------------------------------------------------------------------- /trunk/web/bbs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/bbs/README -------------------------------------------------------------------------------- /trunk/web/ceinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/ceinfo.php -------------------------------------------------------------------------------- /trunk/web/comparesource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/comparesource.php -------------------------------------------------------------------------------- /trunk/web/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/config.yaml -------------------------------------------------------------------------------- /trunk/web/contest-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/contest-header.php -------------------------------------------------------------------------------- /trunk/web/contest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/contest.php -------------------------------------------------------------------------------- /trunk/web/contestrank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/contestrank.php -------------------------------------------------------------------------------- /trunk/web/contestrank.xls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/contestrank.xls.php -------------------------------------------------------------------------------- /trunk/web/conteststatistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/conteststatistics.php -------------------------------------------------------------------------------- /trunk/web/discuss/discuss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/discuss/discuss.php -------------------------------------------------------------------------------- /trunk/web/discuss/discuss.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/discuss/discuss.sql -------------------------------------------------------------------------------- /trunk/web/discuss/hoj.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/discuss/hoj.css -------------------------------------------------------------------------------- /trunk/web/discuss/index.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /trunk/web/discuss/newpost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/discuss/newpost.php -------------------------------------------------------------------------------- /trunk/web/discuss/oj-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/discuss/oj-header.php -------------------------------------------------------------------------------- /trunk/web/discuss/post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/discuss/post.php -------------------------------------------------------------------------------- /trunk/web/discuss/thread.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/discuss/thread.php -------------------------------------------------------------------------------- /trunk/web/edit_area/edit_area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/edit_area/edit_area.js -------------------------------------------------------------------------------- /trunk/web/edit_area/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/edit_area/highlight.js -------------------------------------------------------------------------------- /trunk/web/edit_area/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/edit_area/keyboard.js -------------------------------------------------------------------------------- /trunk/web/edit_area/langs/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/edit_area/langs/bg.js -------------------------------------------------------------------------------- /trunk/web/edit_area/langs/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/edit_area/langs/cs.js -------------------------------------------------------------------------------- /trunk/web/edit_area/langs/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/edit_area/langs/de.js -------------------------------------------------------------------------------- /trunk/web/edit_area/langs/dk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/edit_area/langs/dk.js -------------------------------------------------------------------------------- /trunk/web/edit_area/langs/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/edit_area/langs/en.js -------------------------------------------------------------------------------- /trunk/web/edit_area/langs/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/edit_area/langs/eo.js -------------------------------------------------------------------------------- /trunk/web/edit_area/langs/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/edit_area/langs/es.js -------------------------------------------------------------------------------- /trunk/web/edit_area/langs/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/edit_area/langs/fi.js -------------------------------------------------------------------------------- /trunk/web/edit_area/langs/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/edit_area/langs/fr.js -------------------------------------------------------------------------------- /trunk/web/edit_area/langs/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/edit_area/langs/hr.js -------------------------------------------------------------------------------- /trunk/web/edit_area/langs/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/edit_area/langs/it.js -------------------------------------------------------------------------------- /trunk/web/edit_area/langs/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/edit_area/langs/ja.js -------------------------------------------------------------------------------- /trunk/web/edit_area/langs/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/edit_area/langs/mk.js -------------------------------------------------------------------------------- /trunk/web/edit_area/langs/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/edit_area/langs/nl.js -------------------------------------------------------------------------------- /trunk/web/edit_area/langs/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/edit_area/langs/pl.js -------------------------------------------------------------------------------- /trunk/web/edit_area/langs/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/edit_area/langs/pt.js -------------------------------------------------------------------------------- /trunk/web/edit_area/langs/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/edit_area/langs/ru.js -------------------------------------------------------------------------------- /trunk/web/edit_area/langs/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/edit_area/langs/sk.js -------------------------------------------------------------------------------- /trunk/web/edit_area/langs/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/edit_area/langs/zh.js -------------------------------------------------------------------------------- /trunk/web/edit_area/plugins/test/test2.js: -------------------------------------------------------------------------------- 1 | alert("test2.js is loaded from test plugin"); 2 | -------------------------------------------------------------------------------- /trunk/web/edit_area/regexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/edit_area/regexp.js -------------------------------------------------------------------------------- /trunk/web/export_ac_code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/export_ac_code.php -------------------------------------------------------------------------------- /trunk/web/faqs.cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/faqs.cn.php -------------------------------------------------------------------------------- /trunk/web/faqs.ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/faqs.ko.php -------------------------------------------------------------------------------- /trunk/web/faqs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/faqs.php -------------------------------------------------------------------------------- /trunk/web/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trunk/web/fckeditor/fckconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/fckeditor/fckconfig.js -------------------------------------------------------------------------------- /trunk/web/fckeditor/fckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/fckeditor/fckeditor.js -------------------------------------------------------------------------------- /trunk/web/fckeditor/fckutils.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/fckeditor/fckutils.cfm -------------------------------------------------------------------------------- /trunk/web/getsource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/getsource.php -------------------------------------------------------------------------------- /trunk/web/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/gpl-2.0.txt -------------------------------------------------------------------------------- /trunk/web/image/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/image/background.jpg -------------------------------------------------------------------------------- /trunk/web/image/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/image/content.png -------------------------------------------------------------------------------- /trunk/web/image/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/image/loader.gif -------------------------------------------------------------------------------- /trunk/web/image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/image/logo.png -------------------------------------------------------------------------------- /trunk/web/image/menu_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/image/menu_bg.png -------------------------------------------------------------------------------- /trunk/web/include/QQWry.Dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/include/QQWry.Dat -------------------------------------------------------------------------------- /trunk/web/include/Vera.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/include/Vera.ttf -------------------------------------------------------------------------------- /trunk/web/include/cache_end.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/include/cache_end.php -------------------------------------------------------------------------------- /trunk/web/include/checksource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/include/checksource.js -------------------------------------------------------------------------------- /trunk/web/include/const.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/include/const.inc.php -------------------------------------------------------------------------------- /trunk/web/include/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/include/dark.css -------------------------------------------------------------------------------- /trunk/web/include/gcode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/include/gcode.css -------------------------------------------------------------------------------- /trunk/web/include/hoj.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/include/hoj.css -------------------------------------------------------------------------------- /trunk/web/include/iplocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/include/iplocation.php -------------------------------------------------------------------------------- /trunk/web/include/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/include/jquery.flot.js -------------------------------------------------------------------------------- /trunk/web/include/login-ldap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/include/login-ldap.php -------------------------------------------------------------------------------- /trunk/web/include/login-wp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/include/login-wp.php -------------------------------------------------------------------------------- /trunk/web/include/memcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/include/memcache.php -------------------------------------------------------------------------------- /trunk/web/include/online.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/include/online.php -------------------------------------------------------------------------------- /trunk/web/include/pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/include/pie.js -------------------------------------------------------------------------------- /trunk/web/include/problem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/include/problem.php -------------------------------------------------------------------------------- /trunk/web/include/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/include/profile.php -------------------------------------------------------------------------------- /trunk/web/include/setlang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/include/setlang.php -------------------------------------------------------------------------------- /trunk/web/include/sortTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/include/sortTable.js -------------------------------------------------------------------------------- /trunk/web/include/status-ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/include/status-ajax.js -------------------------------------------------------------------------------- /trunk/web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/index.php -------------------------------------------------------------------------------- /trunk/web/lang/cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/lang/cn.php -------------------------------------------------------------------------------- /trunk/web/lang/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/lang/en.php -------------------------------------------------------------------------------- /trunk/web/lang/fa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/lang/fa.php -------------------------------------------------------------------------------- /trunk/web/lang/ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/lang/ko.php -------------------------------------------------------------------------------- /trunk/web/lang/th.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/lang/th.php -------------------------------------------------------------------------------- /trunk/web/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/login.php -------------------------------------------------------------------------------- /trunk/web/login_qq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/login_qq.php -------------------------------------------------------------------------------- /trunk/web/login_renren.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/login_renren.php -------------------------------------------------------------------------------- /trunk/web/login_weibo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/login_weibo.php -------------------------------------------------------------------------------- /trunk/web/loginpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/loginpage.php -------------------------------------------------------------------------------- /trunk/web/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/logout.php -------------------------------------------------------------------------------- /trunk/web/lostpassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/lostpassword.php -------------------------------------------------------------------------------- /trunk/web/lostpassword2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/lostpassword2.php -------------------------------------------------------------------------------- /trunk/web/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/mail.php -------------------------------------------------------------------------------- /trunk/web/mergely/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/mergely/codemirror.css -------------------------------------------------------------------------------- /trunk/web/mergely/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/mergely/codemirror.js -------------------------------------------------------------------------------- /trunk/web/mergely/mergely.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/mergely/mergely.css -------------------------------------------------------------------------------- /trunk/web/mergely/mergely.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/mergely/mergely.js -------------------------------------------------------------------------------- /trunk/web/mergely/mergely.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/mergely/mergely.min.js -------------------------------------------------------------------------------- /trunk/web/modify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/modify.php -------------------------------------------------------------------------------- /trunk/web/modifypage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/modifypage.php -------------------------------------------------------------------------------- /trunk/web/oj-footer.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /trunk/web/oj-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/oj-header.php -------------------------------------------------------------------------------- /trunk/web/online.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/online.php -------------------------------------------------------------------------------- /trunk/web/problem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/problem.php -------------------------------------------------------------------------------- /trunk/web/problemset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/problemset.php -------------------------------------------------------------------------------- /trunk/web/problemstatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/problemstatus.php -------------------------------------------------------------------------------- /trunk/web/ranklist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/ranklist.php -------------------------------------------------------------------------------- /trunk/web/recent-contest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/recent-contest.php -------------------------------------------------------------------------------- /trunk/web/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/register.php -------------------------------------------------------------------------------- /trunk/web/registerpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/registerpage.php -------------------------------------------------------------------------------- /trunk/web/reinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/reinfo.php -------------------------------------------------------------------------------- /trunk/web/sae/db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/sae/db.sql -------------------------------------------------------------------------------- /trunk/web/sae/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/sae/install.php -------------------------------------------------------------------------------- /trunk/web/sae_app_wizard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/sae_app_wizard.xml -------------------------------------------------------------------------------- /trunk/web/setlang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/setlang.php -------------------------------------------------------------------------------- /trunk/web/showsource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/showsource.php -------------------------------------------------------------------------------- /trunk/web/status-ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/status-ajax.php -------------------------------------------------------------------------------- /trunk/web/status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/status.php -------------------------------------------------------------------------------- /trunk/web/submit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/submit.php -------------------------------------------------------------------------------- /trunk/web/submitpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/submitpage.php -------------------------------------------------------------------------------- /trunk/web/template/bs/ceinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/template/bs/ceinfo.php -------------------------------------------------------------------------------- /trunk/web/template/bs/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/template/bs/error.php -------------------------------------------------------------------------------- /trunk/web/template/bs/faqs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/template/bs/faqs.php -------------------------------------------------------------------------------- /trunk/web/template/bs/hoj.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/template/bs/hoj.css -------------------------------------------------------------------------------- /trunk/web/template/bs/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/template/bs/index.php -------------------------------------------------------------------------------- /trunk/web/template/bs/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/template/bs/mail.php -------------------------------------------------------------------------------- /trunk/web/template/bs/online.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/template/bs/online.php -------------------------------------------------------------------------------- /trunk/web/template/bs/reinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/template/bs/reinfo.php -------------------------------------------------------------------------------- /trunk/web/template/bs/status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/template/bs/status.php -------------------------------------------------------------------------------- /trunk/web/template/sae/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/template/sae/error.php -------------------------------------------------------------------------------- /trunk/web/template/sae/faqs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/template/sae/faqs.php -------------------------------------------------------------------------------- /trunk/web/template/sae/hoj.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/template/sae/hoj.css -------------------------------------------------------------------------------- /trunk/web/template/sae/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/template/sae/index.php -------------------------------------------------------------------------------- /trunk/web/template/sae/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/template/sae/mail.php -------------------------------------------------------------------------------- /trunk/web/userinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/userinfo.php -------------------------------------------------------------------------------- /trunk/web/vcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/trunk/web/vcode.php -------------------------------------------------------------------------------- /wiki/AddProgrammingLanguage.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/AddProgrammingLanguage.wiki -------------------------------------------------------------------------------- /wiki/AntiCheatEnable.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/AntiCheatEnable.wiki -------------------------------------------------------------------------------- /wiki/AutoUpdateShellScript.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/AutoUpdateShellScript.wiki -------------------------------------------------------------------------------- /wiki/CentOS.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/CentOS.wiki -------------------------------------------------------------------------------- /wiki/CentOSx86_64.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/CentOSx86_64.wiki -------------------------------------------------------------------------------- /wiki/Configuration.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/Configuration.wiki -------------------------------------------------------------------------------- /wiki/DBdesign.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/DBdesign.wiki -------------------------------------------------------------------------------- /wiki/Debug.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/Debug.wiki -------------------------------------------------------------------------------- /wiki/DevelopingPlan.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/DevelopingPlan.wiki -------------------------------------------------------------------------------- /wiki/DistributionSystem.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/DistributionSystem.wiki -------------------------------------------------------------------------------- /wiki/FAQ.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/FAQ.wiki -------------------------------------------------------------------------------- /wiki/FPS.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/FPS.wiki -------------------------------------------------------------------------------- /wiki/HTTPJudge.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/HTTPJudge.wiki -------------------------------------------------------------------------------- /wiki/HUSTOJFeatures.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/HUSTOJFeatures.wiki -------------------------------------------------------------------------------- /wiki/HUSTOJUsingKindEditor.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/HUSTOJUsingKindEditor.wiki -------------------------------------------------------------------------------- /wiki/HUSTOJ_LiveCD.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/HUSTOJ_LiveCD.wiki -------------------------------------------------------------------------------- /wiki/HUSTOJ_Windows.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/HUSTOJ_Windows.wiki -------------------------------------------------------------------------------- /wiki/HallOfShame.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/HallOfShame.wiki -------------------------------------------------------------------------------- /wiki/InstallGuide.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/InstallGuide.wiki -------------------------------------------------------------------------------- /wiki/Localization.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/Localization.wiki -------------------------------------------------------------------------------- /wiki/MoodleIntegration.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/MoodleIntegration.wiki -------------------------------------------------------------------------------- /wiki/MultiRUNNING.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/MultiRUNNING.wiki -------------------------------------------------------------------------------- /wiki/NOJ2HUSTOJ.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/NOJ2HUSTOJ.wiki -------------------------------------------------------------------------------- /wiki/OiMode.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/OiMode.wiki -------------------------------------------------------------------------------- /wiki/POJ2HUSTOJ.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/POJ2HUSTOJ.wiki -------------------------------------------------------------------------------- /wiki/README.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/README.wiki -------------------------------------------------------------------------------- /wiki/SAEConfig.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/SAEConfig.wiki -------------------------------------------------------------------------------- /wiki/SPJ.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/SPJ.wiki -------------------------------------------------------------------------------- /wiki/SecurityPatch.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/SecurityPatch.wiki -------------------------------------------------------------------------------- /wiki/Sponsor.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/Sponsor.wiki -------------------------------------------------------------------------------- /wiki/SystemRequirement.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/SystemRequirement.wiki -------------------------------------------------------------------------------- /wiki/Tweak.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/Tweak.wiki -------------------------------------------------------------------------------- /wiki/UserList.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/UserList.wiki -------------------------------------------------------------------------------- /wiki/ojback.wiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svn2github/hustoj/HEAD/wiki/ojback.wiki --------------------------------------------------------------------------------