├── .gitignore ├── .travis.yml ├── LICENSE ├── MIT-LICENSE.txt ├── assets ├── DT_bootstrap.css ├── DT_bootstrap.js ├── form-validation.js ├── scripts.js └── styles.css ├── baca_saya.txt ├── beranda.php ├── 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 ├── buat_soal.php ├── buat_ujian.php ├── cek_ganti_pass.php ├── ckeditor └── config.js ├── css ├── calendar.css ├── form.css ├── soal.css ├── styles.css └── tabel.css ├── daftar_guru.php ├── daftar_kelas.php ├── daftar_kelas_mp.php ├── daftar_mengajar.php ├── daftar_mp.php ├── daftar_mp_ajar.php ├── daftar_mp_kelas.php ├── daftar_nilai_kelas.php ├── daftar_nilai_mp.php ├── daftar_nilai_ujian.php ├── daftar_nilai_ujian_xls.php ├── daftar_siswa.php ├── daftar_siswa_perkelas.php ├── daftar_siswa_tanpa_kelas.php ├── daftar_ujian.php ├── daftar_ujian_guru.php ├── daftar_ujian_siswa.php ├── edit_soal.php ├── form.php ├── ganti_pass.php ├── geany_run_script.bat ├── geany_run_script.sh ├── hal_admin.php ├── hal_guru.php ├── hal_siswa.php ├── hapus_data.php ├── hapus_nilai_ujian.php ├── hendi.sql ├── image ├── Thumbs.db ├── add-icon.gif ├── b_usrcheck.png ├── b_view.png ├── back.png ├── bigLoader.gif ├── del.png ├── edit.png ├── loading.gif ├── no.png ├── ok.png ├── reset.png ├── s_info.png ├── save.png └── shadow.png ├── images ├── Thumbs.db ├── bg-input-focus.png ├── bg-input.png ├── icon.png ├── pavicon.png └── sprite.png ├── import_xls.php ├── include ├── cek_session.php ├── excel_reader2.php ├── fungsi.php └── koneksi.php ├── index.php ├── js ├── ajaxupload.js ├── calendar.js ├── ckeditor.js ├── ckeditor_fungsi.js ├── ckfinder │ ├── changelog.txt │ ├── ckfinder.html │ ├── ckfinder.js │ ├── ckfinder.php │ ├── ckfinder_v1.js │ ├── config.js │ ├── config.php │ ├── core │ │ ├── ckfinder_php4.php │ │ ├── ckfinder_php5.php │ │ └── connector │ │ │ └── php │ │ │ ├── connector.php │ │ │ ├── constants.php │ │ │ ├── error_log │ │ │ ├── lang │ │ │ ├── cs.php │ │ │ ├── da.php │ │ │ ├── de.php │ │ │ ├── el.php │ │ │ ├── en.php │ │ │ ├── es-mx.php │ │ │ ├── es.php │ │ │ ├── fi.php │ │ │ ├── fr.php │ │ │ ├── he.php │ │ │ ├── hu.php │ │ │ ├── it.php │ │ │ ├── ja.php │ │ │ ├── lv.php │ │ │ ├── nb.php │ │ │ ├── nl.php │ │ │ ├── nn.php │ │ │ ├── no.php │ │ │ ├── pl.php │ │ │ ├── pt-br.php │ │ │ ├── ru.php │ │ │ ├── sk.php │ │ │ ├── sl.php │ │ │ ├── sv.php │ │ │ ├── zh-cn.php │ │ │ └── zh-tw.php │ │ │ ├── php4 │ │ │ ├── CommandHandler │ │ │ │ ├── CommandHandlerBase.php │ │ │ │ ├── CopyFiles.php │ │ │ │ ├── CreateFolder.php │ │ │ │ ├── DeleteFile.php │ │ │ │ ├── DeleteFolder.php │ │ │ │ ├── DownloadFile.php │ │ │ │ ├── FileUpload.php │ │ │ │ ├── GetFiles.php │ │ │ │ ├── GetFolders.php │ │ │ │ ├── Init.php │ │ │ │ ├── MoveFiles.php │ │ │ │ ├── QuickUpload.php │ │ │ │ ├── RenameFile.php │ │ │ │ ├── RenameFolder.php │ │ │ │ ├── Thumbnail.php │ │ │ │ └── XmlCommandHandlerBase.php │ │ │ ├── Core │ │ │ │ ├── AccessControlConfig.php │ │ │ │ ├── Config.php │ │ │ │ ├── Connector.php │ │ │ │ ├── Factory.php │ │ │ │ ├── FolderHandler.php │ │ │ │ ├── Hooks.php │ │ │ │ ├── ImagesConfig.php │ │ │ │ ├── Registry.php │ │ │ │ ├── ResourceTypeConfig.php │ │ │ │ ├── ThumbnailsConfig.php │ │ │ │ └── Xml.php │ │ │ ├── ErrorHandler │ │ │ │ ├── Base.php │ │ │ │ ├── FileUpload.php │ │ │ │ ├── Http.php │ │ │ │ └── QuickUpload.php │ │ │ └── Utils │ │ │ │ ├── FileSystem.php │ │ │ │ ├── Misc.php │ │ │ │ ├── Security.php │ │ │ │ └── XmlNode.php │ │ │ └── php5 │ │ │ ├── CommandHandler │ │ │ ├── CommandHandlerBase.php │ │ │ ├── CopyFiles.php │ │ │ ├── CreateFolder.php │ │ │ ├── DeleteFile.php │ │ │ ├── DeleteFolder.php │ │ │ ├── DownloadFile.php │ │ │ ├── FileUpload.php │ │ │ ├── GetFiles.php │ │ │ ├── GetFolders.php │ │ │ ├── Init.php │ │ │ ├── MoveFiles.php │ │ │ ├── QuickUpload.php │ │ │ ├── RenameFile.php │ │ │ ├── RenameFolder.php │ │ │ ├── Thumbnail.php │ │ │ └── XmlCommandHandlerBase.php │ │ │ ├── Core │ │ │ ├── AccessControlConfig.php │ │ │ ├── Config.php │ │ │ ├── Connector.php │ │ │ ├── Factory.php │ │ │ ├── FolderHandler.php │ │ │ ├── Hooks.php │ │ │ ├── ImagesConfig.php │ │ │ ├── Registry.php │ │ │ ├── ResourceTypeConfig.php │ │ │ ├── ThumbnailsConfig.php │ │ │ └── Xml.php │ │ │ ├── ErrorHandler │ │ │ ├── Base.php │ │ │ ├── FileUpload.php │ │ │ ├── Http.php │ │ │ └── QuickUpload.php │ │ │ └── Utils │ │ │ ├── FileSystem.php │ │ │ ├── Misc.php │ │ │ ├── Security.php │ │ │ └── XmlNode.php │ ├── install.txt │ ├── lang │ │ ├── _translationstatus.txt │ │ └── en.js │ ├── license.txt │ ├── plugins │ │ ├── dummy │ │ │ ├── lang │ │ │ │ ├── en.js │ │ │ │ └── pl.js │ │ │ └── plugin.js │ │ ├── fileeditor │ │ │ ├── codemirror │ │ │ │ ├── LICENSE │ │ │ │ ├── contrib │ │ │ │ │ ├── csharp │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── csharpcolors.css │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── parsecsharp.js │ │ │ │ │ │ │ └── tokenizecsharp.js │ │ │ │ │ └── php │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── css │ │ │ │ │ │ └── phpcolors.css │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── parsephp.js │ │ │ │ │ │ ├── parsephphtmlmixed.js │ │ │ │ │ │ └── tokenizephp.js │ │ │ │ ├── css │ │ │ │ │ ├── csscolors.css │ │ │ │ │ ├── docs.css │ │ │ │ │ ├── font.js │ │ │ │ │ ├── jscolors.css │ │ │ │ │ ├── sparqlcolors.css │ │ │ │ │ └── xmlcolors.css │ │ │ │ └── js │ │ │ │ │ ├── codemirror.js │ │ │ │ │ ├── editor.js │ │ │ │ │ ├── highlight.js │ │ │ │ │ ├── mirrorframe.js │ │ │ │ │ ├── parsecss.js │ │ │ │ │ ├── parsedummy.js │ │ │ │ │ ├── parsehtmlmixed.js │ │ │ │ │ ├── parsejavascript.js │ │ │ │ │ ├── parsesparql.js │ │ │ │ │ ├── parsexml.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── stringstream.js │ │ │ │ │ ├── tokenize.js │ │ │ │ │ ├── tokenizejavascript.js │ │ │ │ │ ├── undo.js │ │ │ │ │ └── util.js │ │ │ ├── plugin.js │ │ │ └── plugin.php │ │ ├── imageresize │ │ │ ├── images │ │ │ │ └── mini.gif │ │ │ ├── plugin.js │ │ │ └── plugin.php │ │ └── watermark │ │ │ ├── logo.gif │ │ │ └── plugin.php │ ├── skins │ │ ├── kama │ │ │ ├── app.css │ │ │ ├── host.css │ │ │ ├── icons.png │ │ │ ├── images │ │ │ │ ├── ckffolder.gif │ │ │ │ ├── ckffolderopened.gif │ │ │ │ ├── ckfminus.gif │ │ │ │ ├── ckfnothumb.gif │ │ │ │ ├── ckfplus.gif │ │ │ │ ├── icons.png │ │ │ │ ├── icons │ │ │ │ │ ├── 16 │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ ├── docx.gif │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ ├── ogg.gif │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ ├── pptx.gif │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ ├── xlsx.gif │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ └── zip.gif │ │ │ │ │ └── 32 │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ ├── docx.gif │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ ├── ogg.gif │ │ │ │ │ │ ├── ogg.png │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ ├── pptx.gif │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ ├── xlsx.gif │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ └── zip.gif │ │ │ │ ├── loaders │ │ │ │ │ ├── 16x16.gif │ │ │ │ │ └── 32x32.gif │ │ │ │ ├── spacer.gif │ │ │ │ ├── sprites.png │ │ │ │ ├── sprites_ie6.png │ │ │ │ └── toolbar │ │ │ │ │ ├── add.gif │ │ │ │ │ ├── clear_basket.gif │ │ │ │ │ ├── delete.gif │ │ │ │ │ ├── download.gif │ │ │ │ │ ├── help.gif │ │ │ │ │ ├── refresh.gif │ │ │ │ │ ├── settings.gif │ │ │ │ │ └── view.gif │ │ │ ├── richcombo.css │ │ │ ├── skin.js │ │ │ └── uipanel.css │ │ └── v1 │ │ │ ├── app.css │ │ │ ├── host.css │ │ │ ├── icons.png │ │ │ ├── images │ │ │ ├── ckffolder.gif │ │ │ ├── ckffolderopened.gif │ │ │ ├── ckfminus.gif │ │ │ ├── ckfnothumb.gif │ │ │ ├── ckfplus.gif │ │ │ ├── dialog_sides.gif │ │ │ ├── dialog_sides.png │ │ │ ├── dialog_sides_rtl.png │ │ │ ├── icons.png │ │ │ ├── icons │ │ │ │ ├── 16 │ │ │ │ │ ├── ai.gif │ │ │ │ │ ├── avi.gif │ │ │ │ │ ├── bmp.gif │ │ │ │ │ ├── cs.gif │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ ├── dll.gif │ │ │ │ │ ├── doc.gif │ │ │ │ │ ├── docx.gif │ │ │ │ │ ├── exe.gif │ │ │ │ │ ├── fla.gif │ │ │ │ │ ├── gif.gif │ │ │ │ │ ├── jpg.gif │ │ │ │ │ ├── js.gif │ │ │ │ │ ├── mdb.gif │ │ │ │ │ ├── mp3.gif │ │ │ │ │ ├── pdf.gif │ │ │ │ │ ├── ppt.gif │ │ │ │ │ ├── pptx.gif │ │ │ │ │ ├── rdp.gif │ │ │ │ │ ├── swf.gif │ │ │ │ │ ├── swt.gif │ │ │ │ │ ├── txt.gif │ │ │ │ │ ├── vsd.gif │ │ │ │ │ ├── xls.gif │ │ │ │ │ ├── xlsx.gif │ │ │ │ │ ├── xml.gif │ │ │ │ │ └── zip.gif │ │ │ │ └── 32 │ │ │ │ │ ├── ai.gif │ │ │ │ │ ├── avi.gif │ │ │ │ │ ├── bmp.gif │ │ │ │ │ ├── cs.gif │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ ├── dll.gif │ │ │ │ │ ├── doc.gif │ │ │ │ │ ├── docx.gif │ │ │ │ │ ├── exe.gif │ │ │ │ │ ├── fla.gif │ │ │ │ │ ├── gif.gif │ │ │ │ │ ├── jpg.gif │ │ │ │ │ ├── js.gif │ │ │ │ │ ├── mdb.gif │ │ │ │ │ ├── mp3.gif │ │ │ │ │ ├── pdf.gif │ │ │ │ │ ├── ppt.gif │ │ │ │ │ ├── pptx.gif │ │ │ │ │ ├── rdp.gif │ │ │ │ │ ├── swf.gif │ │ │ │ │ ├── swt.gif │ │ │ │ │ ├── txt.gif │ │ │ │ │ ├── vsd.gif │ │ │ │ │ ├── xls.gif │ │ │ │ │ ├── xlsx.gif │ │ │ │ │ ├── xml.gif │ │ │ │ │ └── zip.gif │ │ │ ├── loaders │ │ │ │ ├── 16x16.gif │ │ │ │ └── 32x32.gif │ │ │ ├── spacer.gif │ │ │ ├── sprites.png │ │ │ ├── sprites_ie6.png │ │ │ ├── toolbar │ │ │ │ ├── add.gif │ │ │ │ ├── clear_basket.gif │ │ │ │ ├── delete.gif │ │ │ │ ├── download.gif │ │ │ │ ├── help.gif │ │ │ │ ├── refresh.gif │ │ │ │ ├── settings.gif │ │ │ │ └── view.gif │ │ │ └── toolbar_start.gif │ │ │ ├── richcombo.css │ │ │ ├── skin.js │ │ │ └── uipanel.css │ └── userfiles │ │ └── .htaccess ├── config.js ├── highcharts.js ├── jquery-1.5.1.min.js ├── jquery.autocomplete-min.js ├── jquery.countdown.js ├── lang │ └── en.js ├── plugins │ ├── a11yhelp │ │ ├── dialogs │ │ │ └── a11yhelp.js │ │ └── lang │ │ │ ├── en.js │ │ │ └── he.js │ ├── about │ │ └── dialogs │ │ │ ├── about.js │ │ │ └── logo_ckeditor.png │ ├── adobeair │ │ └── plugin.js │ ├── ajax │ │ └── plugin.js │ ├── autogrow │ │ └── plugin.js │ ├── clipboard │ │ └── dialogs │ │ │ └── paste.js │ ├── colordialog │ │ └── dialogs │ │ │ └── colordialog.js │ ├── dialog │ │ └── dialogDefinition.js │ ├── div │ │ └── dialogs │ │ │ └── div.js │ ├── find │ │ └── dialogs │ │ │ └── find.js │ ├── flash │ │ ├── dialogs │ │ │ └── flash.js │ │ └── images │ │ │ └── placeholder.png │ ├── fmath_formula │ │ ├── Thumbs.db │ │ ├── dialogs │ │ │ ├── configMathMLEditor.xml │ │ │ ├── editor.html │ │ │ ├── fmath_formula.js │ │ │ └── mathml │ │ │ │ ├── MathMLEditor.swf │ │ │ │ └── fontswf │ │ │ │ ├── fonts.swf │ │ │ │ ├── s0000.swf │ │ │ │ ├── s0100.swf │ │ │ │ ├── s0200.swf │ │ │ │ ├── s0300.swf │ │ │ │ ├── s0400.swf │ │ │ │ ├── s1D00.swf │ │ │ │ ├── s1E00.swf │ │ │ │ ├── s1F00.swf │ │ │ │ ├── s2000.swf │ │ │ │ ├── s2100.swf │ │ │ │ ├── s2200.swf │ │ │ │ ├── s2300.swf │ │ │ │ ├── s2400.swf │ │ │ │ ├── s2500.swf │ │ │ │ ├── s2600.swf │ │ │ │ ├── s2700.swf │ │ │ │ ├── s2900.swf │ │ │ │ ├── s2A00.swf │ │ │ │ ├── s2B00.swf │ │ │ │ ├── s2C00.swf │ │ │ │ ├── s2E00.swf │ │ │ │ ├── s3000.swf │ │ │ │ ├── s3100.swf │ │ │ │ ├── s4E00.swf │ │ │ │ ├── s4F00.swf │ │ │ │ ├── s5000.swf │ │ │ │ ├── s5100.swf │ │ │ │ ├── s5200.swf │ │ │ │ ├── s5300.swf │ │ │ │ ├── s5400.swf │ │ │ │ ├── s5500.swf │ │ │ │ ├── s5600.swf │ │ │ │ ├── s5700.swf │ │ │ │ ├── s5800.swf │ │ │ │ ├── s5900.swf │ │ │ │ ├── s5A00.swf │ │ │ │ ├── s5B00.swf │ │ │ │ ├── s5C00.swf │ │ │ │ ├── s5D00.swf │ │ │ │ ├── s5E00.swf │ │ │ │ ├── s5F00.swf │ │ │ │ ├── s6000.swf │ │ │ │ ├── s6100.swf │ │ │ │ ├── s6200.swf │ │ │ │ ├── s6300.swf │ │ │ │ ├── s6400.swf │ │ │ │ ├── s6500.swf │ │ │ │ ├── s6600.swf │ │ │ │ ├── s6700.swf │ │ │ │ ├── s6800.swf │ │ │ │ ├── s6900.swf │ │ │ │ ├── s6A00.swf │ │ │ │ ├── s6B00.swf │ │ │ │ ├── s6C00.swf │ │ │ │ ├── s6D00.swf │ │ │ │ ├── s6E00.swf │ │ │ │ ├── s6F00.swf │ │ │ │ ├── s7000.swf │ │ │ │ ├── s7100.swf │ │ │ │ ├── s7200.swf │ │ │ │ ├── s7300.swf │ │ │ │ ├── s7400.swf │ │ │ │ ├── s7500.swf │ │ │ │ ├── s7600.swf │ │ │ │ ├── s7700.swf │ │ │ │ ├── s7800.swf │ │ │ │ ├── s7900.swf │ │ │ │ ├── s7A00.swf │ │ │ │ ├── s7B00.swf │ │ │ │ ├── s7C00.swf │ │ │ │ ├── s7D00.swf │ │ │ │ ├── s7E00.swf │ │ │ │ ├── s7F00.swf │ │ │ │ ├── s8000.swf │ │ │ │ ├── s8100.swf │ │ │ │ ├── s8200.swf │ │ │ │ ├── s8300.swf │ │ │ │ ├── s8400.swf │ │ │ │ ├── s8500.swf │ │ │ │ ├── s8600.swf │ │ │ │ ├── s8700.swf │ │ │ │ ├── s8800.swf │ │ │ │ ├── s8900.swf │ │ │ │ ├── s8A00.swf │ │ │ │ ├── s8B00.swf │ │ │ │ ├── s8C00.swf │ │ │ │ ├── s8D00.swf │ │ │ │ ├── s8E00.swf │ │ │ │ ├── s8F00.swf │ │ │ │ ├── s9000.swf │ │ │ │ ├── s9100.swf │ │ │ │ ├── s9200.swf │ │ │ │ ├── s9300.swf │ │ │ │ ├── s9400.swf │ │ │ │ ├── s9500.swf │ │ │ │ ├── s9600.swf │ │ │ │ ├── s9700.swf │ │ │ │ ├── s9800.swf │ │ │ │ ├── s9900.swf │ │ │ │ ├── s9A00.swf │ │ │ │ ├── s9B00.swf │ │ │ │ ├── s9C00.swf │ │ │ │ ├── s9D00.swf │ │ │ │ ├── s9E00.swf │ │ │ │ ├── s9F00.swf │ │ │ │ ├── sE000.swf │ │ │ │ ├── sE100.swf │ │ │ │ ├── sE200.swf │ │ │ │ ├── sE300.swf │ │ │ │ ├── sFB00.swf │ │ │ │ ├── sFE00.swf │ │ │ │ └── sFF00.swf │ │ ├── fmath_formula.jpg │ │ └── plugin.js │ ├── forms │ │ ├── dialogs │ │ │ ├── button.js │ │ │ ├── checkbox.js │ │ │ ├── form.js │ │ │ ├── hiddenfield.js │ │ │ ├── radio.js │ │ │ ├── select.js │ │ │ ├── textarea.js │ │ │ └── textfield.js │ │ └── images │ │ │ └── hiddenfield.gif │ ├── iframe │ │ ├── dialogs │ │ │ └── iframe.js │ │ └── images │ │ │ └── placeholder.png │ ├── iframedialog │ │ └── plugin.js │ ├── image │ │ └── dialogs │ │ │ └── image.js │ ├── link │ │ ├── dialogs │ │ │ ├── anchor.js │ │ │ └── link.js │ │ └── images │ │ │ └── anchor.gif │ ├── liststyle │ │ └── dialogs │ │ │ └── liststyle.js │ ├── pagebreak │ │ └── images │ │ │ └── pagebreak.gif │ ├── pastefromword │ │ └── filter │ │ │ └── default.js │ ├── pastetext │ │ └── dialogs │ │ │ └── pastetext.js │ ├── placeholder │ │ ├── dialogs │ │ │ └── placeholder.js │ │ ├── lang │ │ │ ├── en.js │ │ │ └── he.js │ │ ├── placeholder.gif │ │ └── plugin.js │ ├── scayt │ │ └── dialogs │ │ │ ├── options.js │ │ │ └── toolbar.css │ ├── showblocks │ │ └── images │ │ │ ├── block_address.png │ │ │ ├── block_blockquote.png │ │ │ ├── block_div.png │ │ │ ├── block_h1.png │ │ │ ├── block_h2.png │ │ │ ├── block_h3.png │ │ │ ├── block_h4.png │ │ │ ├── block_h5.png │ │ │ ├── block_h6.png │ │ │ ├── block_p.png │ │ │ └── block_pre.png │ ├── smiley │ │ ├── dialogs │ │ │ └── smiley.js │ │ └── images │ │ │ ├── angel_smile.gif │ │ │ ├── angry_smile.gif │ │ │ ├── broken_heart.gif │ │ │ ├── confused_smile.gif │ │ │ ├── cry_smile.gif │ │ │ ├── devil_smile.gif │ │ │ ├── embaressed_smile.gif │ │ │ ├── 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 │ ├── specialchar │ │ ├── dialogs │ │ │ └── specialchar.js │ │ └── lang │ │ │ └── en.js │ ├── styles │ │ └── styles │ │ │ └── default.js │ ├── table │ │ └── dialogs │ │ │ └── table.js │ ├── tableresize │ │ └── plugin.js │ ├── tabletools │ │ └── dialogs │ │ │ └── tableCell.js │ ├── templates │ │ ├── dialogs │ │ │ └── templates.js │ │ └── templates │ │ │ ├── default.js │ │ │ └── images │ │ │ ├── template1.gif │ │ │ ├── template2.gif │ │ │ └── template3.gif │ ├── uicolor │ │ ├── dialogs │ │ │ └── uicolor.js │ │ ├── lang │ │ │ ├── en.js │ │ │ └── he.js │ │ ├── plugin.js │ │ ├── uicolor.gif │ │ └── yui │ │ │ ├── assets │ │ │ ├── hue_bg.png │ │ │ ├── hue_thumb.png │ │ │ ├── picker_mask.png │ │ │ ├── picker_thumb.png │ │ │ └── yui.css │ │ │ └── yui.js │ ├── wsc │ │ └── dialogs │ │ │ ├── ciframe.html │ │ │ ├── tmpFrameset.html │ │ │ ├── wsc.css │ │ │ └── wsc.js │ └── xml │ │ └── plugin.js └── skins │ ├── kama │ ├── dialog.css │ ├── editor.css │ ├── icons.png │ ├── icons_rtl.png │ ├── images │ │ ├── dialog_sides.gif │ │ ├── dialog_sides.png │ │ ├── dialog_sides_rtl.png │ │ ├── mini.gif │ │ ├── noimage.png │ │ ├── sprites.png │ │ ├── sprites_ie6.png │ │ └── toolbar_start.gif │ ├── skin.js │ └── templates.css │ ├── office2003 │ ├── dialog.css │ ├── editor.css │ ├── icons.png │ ├── icons_rtl.png │ ├── images │ │ ├── dialog_sides.gif │ │ ├── dialog_sides.png │ │ ├── dialog_sides_rtl.png │ │ ├── mini.gif │ │ ├── noimage.png │ │ ├── sprites.png │ │ └── sprites_ie6.png │ ├── skin.js │ └── templates.css │ └── v2 │ ├── dialog.css │ ├── editor.css │ ├── icons.png │ ├── icons_rtl.png │ ├── images │ ├── dialog_sides.gif │ ├── dialog_sides.png │ ├── dialog_sides_rtl.png │ ├── mini.gif │ ├── noimage.png │ ├── sprites.png │ ├── sprites_ie6.png │ └── toolbar_start.gif │ ├── skin.js │ └── templates.css ├── kerjakan_ujian.php ├── login.php ├── logout.php ├── mengajar.php ├── mp_siswa.php ├── package.json ├── profil.php ├── readme.md ├── rumus_fmath ├── imageCapture.php └── img │ ├── 0A676A51-9AE6-99D3-C8E8-4152DEC80D40.JPG │ ├── 565BC6A3-6F6D-3233-5914-F6BEE26523BE.JPG │ ├── 5C34A98C-5973-1581-13F6-FB20D0AE2735.JPG │ ├── B139BB6D-FEE9-ECB9-7BA7-A4A28AEBEAA3.JPG │ └── C7ACC966-54D6-B8C0-49CC-87A98CE39333.JPG ├── simpan_form.php ├── simpan_siswa_kelas.php ├── simpan_soal.php ├── siswa.xls ├── sql ├── tabel_saja.sql ├── trigger.sql ├── user.sql └── view.sql ├── update_data.php ├── userfiles ├── _thumbs │ └── Images │ │ ├── Foto010.jpg │ │ ├── Koala.jpg │ │ ├── doa-dunia-akhirat1.jpg │ │ ├── md2.jpeg │ │ ├── mdbesar.jpeg │ │ ├── ol.jpeg │ │ ├── stoppiracy.jpeg │ │ ├── tajdid.jpg │ │ └── ubuntu.jpeg └── images │ ├── Foto010.jpg │ ├── Koala.jpg │ ├── doa-dunia-akhirat1.jpg │ ├── md2.jpeg │ ├── mdbesar.jpeg │ ├── ol.jpeg │ ├── stoppiracy.jpeg │ ├── tajdid.jpg │ └── ubuntu.jpeg ├── vendors ├── bootstrap-datepicker.js ├── bootstrap-wysihtml5 │ ├── .gitignore │ ├── .settings │ │ └── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENCE │ ├── Rakefile │ ├── VERSION │ ├── component.json │ ├── dist │ │ ├── bootstrap-wysihtml5-0.0.2.css │ │ ├── bootstrap-wysihtml5-0.0.2.js │ │ └── bootstrap-wysihtml5-0.0.2.min.js │ ├── index.html │ ├── lib │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ ├── prettify.css │ │ │ └── wysiwyg-color.css │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ ├── bootstrap-button.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery-1.7.2.min.js │ │ │ ├── prettify.js │ │ │ ├── wysihtml5-0.3.0.js │ │ │ └── wysihtml5-0.3.0.min.js │ ├── readme.textile │ ├── src │ │ ├── bootstrap-wysihtml5.css │ │ ├── bootstrap-wysihtml5.js │ │ ├── locales │ │ │ ├── bootstrap-wysihtml5.ar-AR.js │ │ │ ├── bootstrap-wysihtml5.bg-BG.js │ │ │ ├── bootstrap-wysihtml5.ca-CT.js │ │ │ ├── bootstrap-wysihtml5.cs-CZ.js │ │ │ ├── bootstrap-wysihtml5.da-DK.js │ │ │ ├── bootstrap-wysihtml5.de-DE.js │ │ │ ├── bootstrap-wysihtml5.el-GR.js │ │ │ ├── bootstrap-wysihtml5.es-AR.js │ │ │ ├── bootstrap-wysihtml5.es-ES.js │ │ │ ├── bootstrap-wysihtml5.fr-FR.js │ │ │ ├── bootstrap-wysihtml5.hr-HR.js │ │ │ ├── bootstrap-wysihtml5.it-IT.js │ │ │ ├── bootstrap-wysihtml5.ja-JP.js │ │ │ ├── bootstrap-wysihtml5.ko-KR.js │ │ │ ├── bootstrap-wysihtml5.lt-LT.js │ │ │ ├── bootstrap-wysihtml5.mo-MD.js │ │ │ ├── bootstrap-wysihtml5.nb-NB.js │ │ │ ├── bootstrap-wysihtml5.nl-NL.js │ │ │ ├── bootstrap-wysihtml5.pl-PL.js │ │ │ ├── bootstrap-wysihtml5.pt-BR.js │ │ │ ├── bootstrap-wysihtml5.ru-RU.js │ │ │ ├── bootstrap-wysihtml5.sk-SK.js │ │ │ ├── bootstrap-wysihtml5.sv-SE.js │ │ │ ├── bootstrap-wysihtml5.tr-TR.js │ │ │ ├── bootstrap-wysihtml5.ua-UA.js │ │ │ ├── bootstrap-wysihtml5.zh-CN.js │ │ │ └── bootstrap-wysihtml5.zh-TW.js │ │ └── wysiwyg-color.css │ └── test │ │ ├── README │ │ ├── bootstrap_wysihtml5 │ │ └── parserRules_test.js │ │ ├── browser_test.js │ │ ├── editor_test.js │ │ ├── incompatible_test.js │ │ ├── index.html │ │ ├── lib │ │ ├── support │ │ └── html_equal.js │ │ └── undo_manager_test.js ├── chosen-sprite.png ├── chosen-sprite@2x.png ├── chosen.jquery.min.js ├── chosen.min.css ├── ckeditor │ ├── CHANGES.md │ ├── LICENSE.md │ ├── README.md │ ├── adapters │ │ └── jquery.js │ ├── build-config.js │ ├── ckeditor.js │ ├── config.js │ ├── contents.css │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugins │ │ ├── a11yhelp │ │ │ └── dialogs │ │ │ │ ├── a11yhelp.js │ │ │ │ └── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ └── zh-cn.js │ │ ├── about │ │ │ └── dialogs │ │ │ │ ├── about.js │ │ │ │ ├── hidpi │ │ │ │ └── logo_ckeditor.png │ │ │ │ └── logo_ckeditor.png │ │ ├── clipboard │ │ │ └── dialogs │ │ │ │ └── paste.js │ │ ├── colordialog │ │ │ └── dialogs │ │ │ │ └── colordialog.js │ │ ├── dialog │ │ │ └── dialogDefinition.js │ │ ├── div │ │ │ └── dialogs │ │ │ │ └── div.js │ │ ├── fakeobjects │ │ │ └── images │ │ │ │ └── spacer.gif │ │ ├── find │ │ │ └── dialogs │ │ │ │ └── find.js │ │ ├── flash │ │ │ ├── dialogs │ │ │ │ └── flash.js │ │ │ └── images │ │ │ │ └── placeholder.png │ │ ├── forms │ │ │ ├── dialogs │ │ │ │ ├── button.js │ │ │ │ ├── checkbox.js │ │ │ │ ├── form.js │ │ │ │ ├── hiddenfield.js │ │ │ │ ├── radio.js │ │ │ │ ├── select.js │ │ │ │ ├── textarea.js │ │ │ │ └── textfield.js │ │ │ └── images │ │ │ │ └── hiddenfield.gif │ │ ├── icons.png │ │ ├── icons_hidpi.png │ │ ├── iframe │ │ │ ├── dialogs │ │ │ │ └── iframe.js │ │ │ └── images │ │ │ │ └── placeholder.png │ │ ├── image │ │ │ ├── dialogs │ │ │ │ └── image.js │ │ │ └── images │ │ │ │ └── noimage.png │ │ ├── link │ │ │ ├── dialogs │ │ │ │ ├── anchor.js │ │ │ │ └── link.js │ │ │ └── images │ │ │ │ ├── anchor.png │ │ │ │ └── hidpi │ │ │ │ └── anchor.png │ │ ├── liststyle │ │ │ └── dialogs │ │ │ │ └── liststyle.js │ │ ├── magicline │ │ │ └── images │ │ │ │ ├── hidpi │ │ │ │ └── icon.png │ │ │ │ └── icon.png │ │ ├── pagebreak │ │ │ └── images │ │ │ │ └── pagebreak.gif │ │ ├── pastefromword │ │ │ └── filter │ │ │ │ └── default.js │ │ ├── preview │ │ │ └── preview.html │ │ ├── scayt │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── dialogs │ │ │ │ ├── options.js │ │ │ │ └── toolbar.css │ │ ├── showblocks │ │ │ └── images │ │ │ │ ├── block_address.png │ │ │ │ ├── block_blockquote.png │ │ │ │ ├── block_div.png │ │ │ │ ├── block_h1.png │ │ │ │ ├── block_h2.png │ │ │ │ ├── block_h3.png │ │ │ │ ├── block_h4.png │ │ │ │ ├── block_h5.png │ │ │ │ ├── block_h6.png │ │ │ │ ├── block_p.png │ │ │ │ └── block_pre.png │ │ ├── smiley │ │ │ ├── dialogs │ │ │ │ └── smiley.js │ │ │ └── images │ │ │ │ ├── angel_smile.gif │ │ │ │ ├── angry_smile.gif │ │ │ │ ├── broken_heart.gif │ │ │ │ ├── confused_smile.gif │ │ │ │ ├── cry_smile.gif │ │ │ │ ├── devil_smile.gif │ │ │ │ ├── embaressed_smile.gif │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ ├── envelope.gif │ │ │ │ ├── heart.gif │ │ │ │ ├── kiss.gif │ │ │ │ ├── lightbulb.gif │ │ │ │ ├── omg_smile.gif │ │ │ │ ├── regular_smile.gif │ │ │ │ ├── sad_smile.gif │ │ │ │ ├── shades_smile.gif │ │ │ │ ├── teeth_smile.gif │ │ │ │ ├── thumbs_down.gif │ │ │ │ ├── thumbs_up.gif │ │ │ │ ├── tongue_smile.gif │ │ │ │ ├── tounge_smile.gif │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ └── wink_smile.gif │ │ ├── specialchar │ │ │ └── dialogs │ │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ku.js │ │ │ │ ├── lv.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ └── zh-cn.js │ │ │ │ └── specialchar.js │ │ ├── table │ │ │ └── dialogs │ │ │ │ └── table.js │ │ ├── tabletools │ │ │ └── dialogs │ │ │ │ └── tableCell.js │ │ ├── templates │ │ │ ├── dialogs │ │ │ │ ├── templates.css │ │ │ │ └── templates.js │ │ │ └── templates │ │ │ │ ├── default.js │ │ │ │ └── images │ │ │ │ ├── template1.gif │ │ │ │ ├── template2.gif │ │ │ │ └── template3.gif │ │ └── wsc │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── dialogs │ │ │ ├── ciframe.html │ │ │ ├── tmp.html │ │ │ ├── tmpFrameset.html │ │ │ ├── wsc.css │ │ │ ├── wsc.js │ │ │ └── wsc_ie.js │ ├── samples │ │ ├── ajax.html │ │ ├── api.html │ │ ├── appendto.html │ │ ├── assets │ │ │ ├── inlineall │ │ │ │ └── logo.png │ │ │ ├── outputxhtml │ │ │ │ └── outputxhtml.css │ │ │ ├── posteddata.php │ │ │ ├── sample.css │ │ │ ├── sample.jpg │ │ │ └── uilanguages │ │ │ │ └── languages.js │ │ ├── datafiltering.html │ │ ├── divreplace.html │ │ ├── index.html │ │ ├── inlineall.html │ │ ├── inlinebycode.html │ │ ├── inlinetextarea.html │ │ ├── jquery.html │ │ ├── plugins │ │ │ ├── dialog │ │ │ │ ├── assets │ │ │ │ │ └── my_dialog.js │ │ │ │ └── dialog.html │ │ │ ├── enterkey │ │ │ │ └── enterkey.html │ │ │ ├── htmlwriter │ │ │ │ ├── assets │ │ │ │ │ └── outputforflash │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ └── swfobject.js │ │ │ │ ├── outputforflash.html │ │ │ │ └── outputhtml.html │ │ │ ├── magicline │ │ │ │ └── magicline.html │ │ │ ├── toolbar │ │ │ │ └── toolbar.html │ │ │ └── wysiwygarea │ │ │ │ └── fullpage.html │ │ ├── readonly.html │ │ ├── replacebyclass.html │ │ ├── replacebycode.html │ │ ├── sample.css │ │ ├── sample.js │ │ ├── sample_posteddata.php │ │ ├── tabindex.html │ │ ├── uicolor.html │ │ ├── uilanguages.html │ │ └── xhtmlstyle.html │ ├── skins │ │ └── moono │ │ │ ├── dialog.css │ │ │ ├── dialog_ie.css │ │ │ ├── dialog_ie7.css │ │ │ ├── dialog_ie8.css │ │ │ ├── dialog_iequirks.css │ │ │ ├── dialog_opera.css │ │ │ ├── editor.css │ │ │ ├── editor_gecko.css │ │ │ ├── editor_ie.css │ │ │ ├── editor_ie7.css │ │ │ ├── editor_ie8.css │ │ │ ├── editor_iequirks.css │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── images │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ ├── hidpi │ │ │ │ ├── close.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ ├── lock-open.png │ │ │ ├── lock.png │ │ │ └── refresh.png │ │ │ └── readme.md │ └── styles.js ├── datatables │ ├── css │ │ ├── demo_page.css │ │ ├── demo_table.css │ │ ├── demo_table_jui.css │ │ ├── jquery.dataTables.css │ │ └── jquery.dataTables_themeroller.css │ ├── images │ │ ├── Sorting icons.psd │ │ ├── back_disabled.png │ │ ├── back_enabled.png │ │ ├── back_enabled_hover.png │ │ ├── favicon.ico │ │ ├── forward_disabled.png │ │ ├── forward_enabled.png │ │ ├── forward_enabled_hover.png │ │ ├── sort_asc.png │ │ ├── sort_asc_disabled.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ └── sort_desc_disabled.png │ ├── js │ │ ├── jquery.dataTables.js │ │ ├── jquery.dataTables.min.js │ │ └── jquery.js │ ├── src │ │ ├── DataTables.js │ │ ├── api │ │ │ ├── api.internal.js │ │ │ ├── api.methods.js │ │ │ └── api.static.js │ │ ├── core │ │ │ ├── core.ajax.js │ │ │ ├── core.columns.js │ │ │ ├── core.constructor.js │ │ │ ├── core.data.js │ │ │ ├── core.draw.js │ │ │ ├── core.filter.js │ │ │ ├── core.info.js │ │ │ ├── core.init.js │ │ │ ├── core.length.js │ │ │ ├── core.page.js │ │ │ ├── core.processing.js │ │ │ ├── core.scrolling.js │ │ │ ├── core.sizing.js │ │ │ ├── core.sort.js │ │ │ ├── core.state.js │ │ │ └── core.support.js │ │ ├── ext │ │ │ ├── ext.classes.js │ │ │ ├── ext.paging.js │ │ │ ├── ext.sorting.js │ │ │ └── ext.types.js │ │ └── model │ │ │ ├── model.column.js │ │ │ ├── model.defaults.columns.js │ │ │ ├── model.defaults.js │ │ │ ├── model.ext.js │ │ │ ├── model.row.js │ │ │ ├── model.search.js │ │ │ └── model.settings.js │ └── unit_testing │ │ ├── controller.js │ │ ├── controller.php │ │ ├── index.html │ │ ├── performance │ │ ├── draw.html │ │ ├── large.php │ │ ├── page.html │ │ └── sort.html │ │ ├── templates │ │ ├── -complex_header.php │ │ ├── 2512.php │ │ ├── 6776.php │ │ ├── complex_header_2.php │ │ ├── deferred_table.php │ │ ├── dom_data.php │ │ ├── dom_data_th.php │ │ ├── dom_data_two_headers.php │ │ ├── dymanic_table.php │ │ ├── empty_table.php │ │ ├── html_table.php │ │ ├── js_data.php │ │ ├── js_data_mixed_types.php │ │ └── two_tables.php │ │ ├── tests │ │ └── 1_dom │ │ │ └── _zero_config.js │ │ ├── tests_onhold │ │ ├── 1_dom │ │ │ ├── -complex_header.js │ │ │ ├── -iDraw.js │ │ │ ├── 2512.js │ │ │ ├── 2530-2.js │ │ │ ├── 2530.js │ │ │ ├── 2569.js │ │ │ ├── 2600.js │ │ │ ├── 2608.js │ │ │ ├── 2635.js │ │ │ ├── 2746-stable-sort.js │ │ │ ├── 2799.js │ │ │ ├── 2840-restore-table-width.js │ │ │ ├── 2914-state-save-sort.js │ │ │ ├── 5396-fnUpdate-arrays-mData.js │ │ │ ├── 5396-fnUpdate-arrays.js │ │ │ ├── 5508-xscroll-zero-content.js │ │ │ ├── 6776-scrolling-table-grows.js │ │ │ ├── _getDataFunctions.js │ │ │ ├── _setDataFunctions.js │ │ │ ├── _zero_config.js │ │ │ ├── aaSorting.js │ │ │ ├── aaSortingFixed.js │ │ │ ├── aoColumns.bSearchable.js │ │ │ ├── aoColumns.bSortable.js │ │ │ ├── aoColumns.bUseRendered.js │ │ │ ├── aoColumns.bVisible.js │ │ │ ├── aoColumns.bVisible2.js │ │ │ ├── aoColumns.fnRender.js │ │ │ ├── aoColumns.iDataSort.js │ │ │ ├── aoColumns.sClass.js │ │ │ ├── aoColumns.sName.js │ │ │ ├── aoColumns.sTitle.js │ │ │ ├── aoColumns.sWidth.js │ │ │ ├── aoSearchCols.js │ │ │ ├── asStripClasses.js │ │ │ ├── bAutoWidth.js │ │ │ ├── bFilter.js │ │ │ ├── bInfiniteScroll.js │ │ │ ├── bInfo.js │ │ │ ├── bJQueryUI.js │ │ │ ├── bLengthChange.js │ │ │ ├── bPaginate.js │ │ │ ├── bProcessing.js │ │ │ ├── bServerSide.js │ │ │ ├── bSort.js │ │ │ ├── bSortCellsTop.js │ │ │ ├── bSortClasses.js │ │ │ ├── fnCookieCallback.js │ │ │ ├── fnCreatedCell.js │ │ │ ├── fnCreatedRow.js │ │ │ ├── fnDeleteRow.js │ │ │ ├── fnDrawCallback.js │ │ │ ├── fnFilter.js │ │ │ ├── fnFooterCallback.js │ │ │ ├── fnHeaderCallback.js │ │ │ ├── fnInfoCallback.js │ │ │ ├── fnInitComplete.js │ │ │ ├── fnRowCallback.js │ │ │ ├── fnSetColumnVis.js │ │ │ ├── fnSetColumnVis2.js │ │ │ ├── html-autodetect-sort.js │ │ │ ├── iDisplayLength.js │ │ │ ├── oLanguage.oPaginate.js │ │ │ ├── oLanguage.sInfo.js │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ ├── oLanguage.sProcessing.js │ │ │ ├── oLanguage.sSearch.js │ │ │ ├── oLanguage.sUrl.js │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ ├── oSearch.js │ │ │ ├── sAjaxSource.js │ │ │ ├── sDom.js │ │ │ ├── sPaginationType.js │ │ │ ├── sScrollXY.js │ │ │ └── th_in_body.js │ │ ├── 2_js │ │ │ ├── 39-nested-null.js │ │ │ ├── 6872-default-content-missing-props.js │ │ │ ├── 8549--string-sorting-nonstrings.js │ │ │ ├── _zero_config.js │ │ │ ├── aaSorting.js │ │ │ ├── aaSortingFixed.js │ │ │ ├── aoColumns.bSearchable.js │ │ │ ├── aoColumns.bSortable.js │ │ │ ├── aoColumns.bUseRendered.js │ │ │ ├── aoColumns.bVisible.js │ │ │ ├── aoColumns.fnRender.js │ │ │ ├── aoColumns.iDataSort.js │ │ │ ├── aoColumns.sClass.js │ │ │ ├── aoColumns.sName.js │ │ │ ├── aoColumns.sTitle.js │ │ │ ├── aoColumns.sWidth.js │ │ │ ├── aoSearchCols.js │ │ │ ├── asStripClasses.js │ │ │ ├── bAutoWidth.js │ │ │ ├── bFilter.js │ │ │ ├── bInfo.js │ │ │ ├── bLengthChange.js │ │ │ ├── bPaginate.js │ │ │ ├── bProcessing.js │ │ │ ├── bServerSide.js │ │ │ ├── bSort.js │ │ │ ├── bSortClasses.js │ │ │ ├── fnCreatedCell.js │ │ │ ├── fnCreatedRow.js │ │ │ ├── fnDrawCallback.js │ │ │ ├── fnFooterCallback.js │ │ │ ├── fnHeaderCallback.js │ │ │ ├── fnInitComplete.js │ │ │ ├── fnRowCallback.js │ │ │ ├── iDisplayLength.js │ │ │ ├── js_data_mixed_types.js │ │ │ ├── oLanguage.oPaginate.js │ │ │ ├── oLanguage.sInfo.js │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ ├── oLanguage.sProcessing.js │ │ │ ├── oLanguage.sSearch.js │ │ │ ├── oLanguage.sUrl.js │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ ├── oSearch.js │ │ │ ├── sAjaxSource.js │ │ │ ├── sDom.js │ │ │ └── sPaginationType.js │ │ ├── 3_ajax │ │ │ ├── _zero_config.js │ │ │ ├── aaSorting.js │ │ │ ├── aaSortingFixed.js │ │ │ ├── aoColumns.bSearchable.js │ │ │ ├── aoColumns.bSortable.js │ │ │ ├── aoColumns.bUseRendered.js │ │ │ ├── aoColumns.bVisible.js │ │ │ ├── aoColumns.fnRender.js │ │ │ ├── aoColumns.iDataSort.js │ │ │ ├── aoColumns.sClass.js │ │ │ ├── aoColumns.sName.js │ │ │ ├── aoColumns.sTitle.js │ │ │ ├── aoColumns.sWidth.js │ │ │ ├── aoSearchCols.js │ │ │ ├── asStripClasses.js │ │ │ ├── bAutoWidth.js │ │ │ ├── bFilter.js │ │ │ ├── bInfo.js │ │ │ ├── bLengthChange.js │ │ │ ├── bPaginate.js │ │ │ ├── bProcessing.js │ │ │ ├── bServerSide.js │ │ │ ├── bSort.js │ │ │ ├── bSortClasses.js │ │ │ ├── fnCreatedCell.js │ │ │ ├── fnCreatedRow.js │ │ │ ├── fnDrawCallback.js │ │ │ ├── fnHeaderCallback.js │ │ │ ├── fnInitComplete.js │ │ │ ├── fnRowCallback.js │ │ │ ├── fnServerData.js │ │ │ ├── iDisplayLength.js │ │ │ ├── oLanguage.oPaginate.js │ │ │ ├── oLanguage.sInfo.js │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ ├── oLanguage.sLoadingRecords.js │ │ │ ├── oLanguage.sProcessing.js │ │ │ ├── oLanguage.sSearch.js │ │ │ ├── oLanguage.sUrl.js │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ ├── oSearch.js │ │ │ ├── sAjaxDataProp.js │ │ │ ├── sAjaxDataProp2.js │ │ │ ├── sAjaxSource.js │ │ │ ├── sDom.js │ │ │ └── sPaginationType.js │ │ ├── 4_server-side │ │ │ ├── -iDraw.js │ │ │ ├── 2440.js │ │ │ ├── 2569.js │ │ │ ├── 2600.js │ │ │ ├── _zero_config.js │ │ │ ├── aaSorting.js │ │ │ ├── aaSortingFixed.js │ │ │ ├── aoColumns.bSearchable.js │ │ │ ├── aoColumns.bSortable.js │ │ │ ├── aoColumns.bUseRendered.js │ │ │ ├── aoColumns.bVisible.js │ │ │ ├── aoColumns.fnRender.js │ │ │ ├── aoColumns.sClass.js │ │ │ ├── aoColumns.sName.js │ │ │ ├── aoColumns.sTitle.js │ │ │ ├── aoColumns.sWidth.js │ │ │ ├── aoSearchCols.js │ │ │ ├── asStripClasses.js │ │ │ ├── bAutoWidth.js │ │ │ ├── bFilter.js │ │ │ ├── bInfiniteScroll.js │ │ │ ├── bInfo.js │ │ │ ├── bLengthChange.js │ │ │ ├── bPaginate.js │ │ │ ├── bProcessing.js │ │ │ ├── bServerSide.js │ │ │ ├── bSort.js │ │ │ ├── bSortClasses.js │ │ │ ├── fnCreatedCell.js │ │ │ ├── fnCreatedRow.js │ │ │ ├── fnDrawCallback.js │ │ │ ├── fnHeaderCallback.js │ │ │ ├── fnInitComplete.js │ │ │ ├── fnRowCallback.js │ │ │ ├── iDeferLoading.js │ │ │ ├── iDisplayLength.js │ │ │ ├── oLanguage.oPaginate.js │ │ │ ├── oLanguage.sInfo.js │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ ├── oLanguage.sProcessing.js │ │ │ ├── oLanguage.sSearch.js │ │ │ ├── oLanguage.sUrl.js │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ ├── oSearch.js │ │ │ ├── sAjaxDataProp.js │ │ │ ├── sAjaxSource.js │ │ │ ├── sDom.js │ │ │ └── sPaginationType.js │ │ ├── 5_ajax_objects │ │ │ ├── _zero_config.js │ │ │ ├── _zero_config_arrays_subobjects.js │ │ │ ├── _zero_config_deep.js │ │ │ ├── _zero_config_mDataProp.js │ │ │ ├── _zero_config_null_source.js │ │ │ ├── _zero_config_objects.js │ │ │ ├── _zero_config_objects_subarrays.js │ │ │ ├── aaSorting.js │ │ │ ├── aaSortingFixed.js │ │ │ ├── aoColumns.bSearchable.js │ │ │ ├── aoColumns.bSortable.js │ │ │ ├── aoColumns.bUseRendered.js │ │ │ ├── aoColumns.bVisible.js │ │ │ ├── aoColumns.fnRender.js │ │ │ ├── aoColumns.iDataSort.js │ │ │ ├── aoColumns.sClass.js │ │ │ ├── aoColumns.sName.js │ │ │ ├── aoColumns.sTitle.js │ │ │ ├── aoColumns.sWidth.js │ │ │ ├── aoSearchCols.js │ │ │ ├── asStripClasses.js │ │ │ ├── bAutoWidth.js │ │ │ ├── bFilter.js │ │ │ ├── bInfo.js │ │ │ ├── bLengthChange.js │ │ │ ├── bPaginate.js │ │ │ ├── bProcessing.js │ │ │ ├── bServerSide.js │ │ │ ├── bSort.js │ │ │ ├── bSortClasses.js │ │ │ ├── fnDrawCallback.js │ │ │ ├── fnHeaderCallback.js │ │ │ ├── fnInitComplete.js │ │ │ ├── fnRowCallback.js │ │ │ ├── fnServerData.js │ │ │ ├── iDisplayLength.js │ │ │ ├── oLanguage.oPaginate.js │ │ │ ├── oLanguage.sInfo.js │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ ├── oLanguage.sProcessing.js │ │ │ ├── oLanguage.sSearch.js │ │ │ ├── oLanguage.sUrl.js │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ ├── oSearch.js │ │ │ ├── sAjaxSource.js │ │ │ ├── sDom.js │ │ │ └── sPaginationType.js │ │ └── 6_delayed_rendering │ │ │ ├── _zero_config.js │ │ │ ├── aaSorting.js │ │ │ ├── aaSortingFixed.js │ │ │ ├── aoColumns.bSearchable.js │ │ │ ├── aoColumns.bSortable.js │ │ │ ├── aoColumns.bUseRendered.js │ │ │ ├── aoColumns.bVisible.js │ │ │ ├── aoColumns.fnRender.js │ │ │ ├── aoColumns.iDataSort.js │ │ │ ├── aoColumns.sClass.js │ │ │ ├── aoColumns.sName.js │ │ │ ├── aoColumns.sTitle.js │ │ │ ├── aoColumns.sWidth.js │ │ │ ├── aoSearchCols.js │ │ │ ├── asStripClasses.js │ │ │ ├── bAutoWidth.js │ │ │ ├── bFilter.js │ │ │ ├── bInfo.js │ │ │ ├── bLengthChange.js │ │ │ ├── bPaginate.js │ │ │ ├── bProcessing.js │ │ │ ├── bServerSide.js │ │ │ ├── bSort.js │ │ │ ├── bSortClasses.js │ │ │ ├── fnDrawCallback.js │ │ │ ├── fnHeaderCallback.js │ │ │ ├── fnInitComplete.js │ │ │ ├── fnRowCallback.js │ │ │ ├── fnServerData.js │ │ │ ├── iDisplayLength.js │ │ │ ├── oLanguage.oPaginate.js │ │ │ ├── oLanguage.sInfo.js │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ ├── oLanguage.sProcessing.js │ │ │ ├── oLanguage.sSearch.js │ │ │ ├── oLanguage.sUrl.js │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ ├── oSearch.js │ │ │ ├── sAjaxDataProp.js │ │ │ ├── sAjaxDataProp2.js │ │ │ ├── sAjaxSource.js │ │ │ ├── sDom.js │ │ │ └── sPaginationType.js │ │ └── unit_test.js ├── datepicker.css ├── easypiechart │ ├── examples │ │ ├── excanvas.js │ │ ├── index.html │ │ └── style.css │ ├── jquery.easy-pie-chart.css │ └── jquery.easy-pie-chart.js ├── flot │ ├── .gitignore │ ├── .travis.yml │ ├── API.md │ ├── CONTRIBUTING.md │ ├── FAQ.md │ ├── LICENSE.txt │ ├── Makefile │ ├── NEWS.md │ ├── PLUGINS.md │ ├── README.md │ ├── component.json │ ├── examples │ │ ├── ajax │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ ├── data-eu-gdp-growth-5.json │ │ │ ├── data-eu-gdp-growth.json │ │ │ ├── data-japan-gdp-growth.json │ │ │ ├── data-usa-gdp-growth.json │ │ │ └── index.html │ │ ├── annotating │ │ │ └── index.html │ │ ├── axes-interacting │ │ │ └── index.html │ │ ├── axes-multiple │ │ │ └── index.html │ │ ├── axes-time-zones │ │ │ ├── date.js │ │ │ ├── index.html │ │ │ └── tz │ │ │ │ ├── africa │ │ │ │ ├── antarctica │ │ │ │ ├── asia │ │ │ │ ├── australasia │ │ │ │ ├── backward │ │ │ │ ├── etcetera │ │ │ │ ├── europe │ │ │ │ ├── factory │ │ │ │ ├── iso3166.tab │ │ │ │ ├── leapseconds │ │ │ │ ├── northamerica │ │ │ │ ├── pacificnew │ │ │ │ ├── solar87 │ │ │ │ ├── solar88 │ │ │ │ ├── solar89 │ │ │ │ ├── southamerica │ │ │ │ ├── systemv │ │ │ │ ├── yearistype.sh │ │ │ │ └── zone.tab │ │ ├── axes-time │ │ │ └── index.html │ │ ├── background.png │ │ ├── basic-canvas.html │ │ ├── basic-options │ │ │ └── index.html │ │ ├── basic-usage │ │ │ └── index.html │ │ ├── canvas │ │ │ └── index.html │ │ ├── categories │ │ │ └── index.html │ │ ├── examples.css │ │ ├── image │ │ │ ├── hs-2004-27-a-large-web.jpg │ │ │ └── index.html │ │ ├── index.html │ │ ├── interacting │ │ │ └── index.html │ │ ├── navigate │ │ │ ├── arrow-down.gif │ │ │ ├── arrow-left.gif │ │ │ ├── arrow-right.gif │ │ │ ├── arrow-up.gif │ │ │ └── index.html │ │ ├── percentiles │ │ │ └── index.html │ │ ├── realtime │ │ │ └── index.html │ │ ├── resize │ │ │ └── index.html │ │ ├── selection │ │ │ └── index.html │ │ ├── series-errorbars │ │ │ └── index.html │ │ ├── series-pie │ │ │ └── index.html │ │ ├── series-toggle │ │ │ └── index.html │ │ ├── series-types │ │ │ └── index.html │ │ ├── shared │ │ │ └── jquery-ui │ │ │ │ └── jquery-ui.min.css │ │ ├── stacking │ │ │ └── index.html │ │ ├── symbols │ │ │ └── index.html │ │ ├── threshold │ │ │ └── index.html │ │ ├── tracking │ │ │ └── index.html │ │ ├── visitors │ │ │ └── index.html │ │ └── zooming │ │ │ └── index.html │ ├── excanvas.js │ ├── excanvas.min.js │ ├── flot.jquery.json │ ├── jquery.colorhelpers.js │ ├── jquery.flot.canvas.js │ ├── jquery.flot.categories.js │ ├── jquery.flot.crosshair.js │ ├── jquery.flot.errorbars.js │ ├── jquery.flot.fillbetween.js │ ├── jquery.flot.image.js │ ├── jquery.flot.js │ ├── jquery.flot.navigate.js │ ├── jquery.flot.pie.js │ ├── jquery.flot.resize.js │ ├── jquery.flot.selection.js │ ├── jquery.flot.stack.js │ ├── jquery.flot.symbol.js │ ├── jquery.flot.threshold.js │ ├── jquery.flot.time.js │ ├── jquery.js │ └── package.json ├── fullcalendar │ ├── fullcalendar.css │ ├── fullcalendar.js │ ├── fullcalendar.min.js │ ├── fullcalendar.print.css │ └── gcal.js ├── jGrowl │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── iphone.png │ │ ├── jgrowl-pool.html │ │ ├── jgrowl.html │ │ ├── multiple-containers.html │ │ ├── sideways.html │ │ └── smoke.png │ ├── jgrowl.jquery.json │ ├── jquery.jgrowl.css │ └── jquery.jgrowl.js ├── jquery-1.9.1.js ├── jquery-1.9.1.min.js ├── jquery-ui-1.10.3.js ├── jquery-validation │ ├── README.md │ ├── changelog.txt │ ├── demo │ │ ├── ajaxSubmit-integration-demo.html │ │ ├── captcha │ │ │ ├── captcha.js │ │ │ ├── fonts │ │ │ │ └── Anorexia.ttf │ │ │ ├── image_req.php │ │ │ ├── images │ │ │ │ ├── button.png │ │ │ │ └── image.php │ │ │ ├── index.php │ │ │ ├── newsession.php │ │ │ ├── process.php │ │ │ ├── rand.php │ │ │ └── style.css │ │ ├── css │ │ │ ├── cmxform.css │ │ │ ├── cmxformTemplate.css │ │ │ ├── core.css │ │ │ ├── reset.css │ │ │ └── screen.css │ │ ├── custom-messages-data-demo.html │ │ ├── custom-methods-demo.html │ │ ├── dynamic-totals.html │ │ ├── errorcontainer-demo.html │ │ ├── file_input.html │ │ ├── images │ │ │ ├── bg.gif │ │ │ ├── checked.gif │ │ │ ├── cmxform-divider.gif │ │ │ ├── cmxform-fieldset.gif │ │ │ ├── loading.gif │ │ │ └── unchecked.gif │ │ ├── index.html │ │ ├── jquerymobile.html │ │ ├── login │ │ │ ├── images │ │ │ │ ├── bg.gif │ │ │ │ ├── header1.jpg │ │ │ │ ├── page.gif │ │ │ │ └── required_star.gif │ │ │ ├── index.html │ │ │ └── screen.css │ │ ├── marketo │ │ │ ├── images │ │ │ │ ├── backRequiredGray.gif │ │ │ │ ├── back_green-fade.gif │ │ │ │ ├── back_nav_blue.gif │ │ │ │ ├── blank.gif │ │ │ │ ├── button-submit.gif │ │ │ │ ├── favicon.ico │ │ │ │ ├── help.png │ │ │ │ ├── left-nav-callout-long.png │ │ │ │ ├── login-sprite.gif │ │ │ │ ├── logo_marketo.gif │ │ │ │ ├── sf.png │ │ │ │ ├── step1-24.gif │ │ │ │ ├── step2-24.gif │ │ │ │ ├── step3-24.gif │ │ │ │ ├── tab-sprite.gif │ │ │ │ ├── tab_green.gif │ │ │ │ ├── time.png │ │ │ │ ├── toggle.gif │ │ │ │ └── warning.gif │ │ │ ├── index.html │ │ │ ├── jquery.maskedinput.js │ │ │ ├── mktSignup.js │ │ │ ├── step2.htm │ │ │ └── stylesheet.css │ │ ├── milk │ │ │ ├── bg.gif │ │ │ ├── index.html │ │ │ ├── left_white.png │ │ │ ├── milk.css │ │ │ ├── milk.png │ │ │ └── right_white.png │ │ ├── multipart │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── jquery.maskedinput-1.0.js │ │ │ │ ├── ui.accordion.js │ │ │ │ └── ui.core.js │ │ │ └── style.css │ │ ├── radio-checkbox-select-demo.html │ │ ├── tabs │ │ │ └── index.html │ │ ├── themerollered.html │ │ └── tinymce │ │ │ ├── index.html │ │ │ ├── themes │ │ │ └── simple │ │ │ │ ├── editor_template.js │ │ │ │ ├── img │ │ │ │ └── icons.gif │ │ │ │ ├── langs │ │ │ │ └── en.js │ │ │ │ └── skins │ │ │ │ └── default │ │ │ │ └── ui.css │ │ │ └── tiny_mce.js │ ├── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ ├── lib │ │ ├── jquery-1.6.4.js │ │ ├── jquery-1.7.2.js │ │ ├── jquery-1.8.3.js │ │ ├── jquery-1.9.0.js │ │ ├── jquery.form.js │ │ ├── jquery.js │ │ └── jquery.mockjax.js │ ├── localization │ │ ├── messages_ar.js │ │ ├── messages_bg.js │ │ ├── messages_ca.js │ │ ├── messages_cs.js │ │ ├── messages_da.js │ │ ├── messages_de.js │ │ ├── messages_el.js │ │ ├── messages_es.js │ │ ├── messages_et.js │ │ ├── messages_eu.js │ │ ├── messages_fa.js │ │ ├── messages_fi.js │ │ ├── messages_fr.js │ │ ├── messages_he.js │ │ ├── messages_hr.js │ │ ├── messages_hu.js │ │ ├── messages_it.js │ │ ├── messages_ja.js │ │ ├── messages_ka.js │ │ ├── messages_kk.js │ │ ├── messages_ko.js │ │ ├── messages_lt.js │ │ ├── messages_lv.js │ │ ├── messages_my.js │ │ ├── messages_nl.js │ │ ├── messages_no.js │ │ ├── messages_pl.js │ │ ├── messages_pt_BR.js │ │ ├── messages_pt_PT.js │ │ ├── messages_ro.js │ │ ├── messages_ru.js │ │ ├── messages_si.js │ │ ├── messages_sk.js │ │ ├── messages_sl.js │ │ ├── messages_sr.js │ │ ├── messages_sv.js │ │ ├── messages_th.js │ │ ├── messages_tr.js │ │ ├── messages_uk.js │ │ ├── messages_vi.js │ │ ├── messages_zh.js │ │ ├── messages_zh_TW.js │ │ ├── methods_de.js │ │ ├── methods_nl.js │ │ └── methods_pt.js │ ├── package.json │ └── test │ │ ├── events.html │ │ ├── firebug │ │ ├── errorIcon.png │ │ ├── firebug.css │ │ ├── firebug.html │ │ ├── firebug.js │ │ ├── firebugx.js │ │ ├── infoIcon.png │ │ └── warningIcon.png │ │ ├── index.html │ │ ├── jquery.js │ │ ├── large.html │ │ ├── messages.js │ │ ├── methods.js │ │ ├── qunit │ │ ├── qunit.css │ │ └── qunit.js │ │ ├── rules.js │ │ ├── selects │ │ └── index.html │ │ ├── tabs.html │ │ └── test.js ├── jquery.knob.js ├── jquery.uniform.min.js ├── modernizr-2.6.2-respond-1.1.0.min.js ├── morris │ ├── morris.css │ ├── morris.js │ └── morris.min.js ├── raphael-min.js ├── tinymce │ ├── LICENSE.TXT │ ├── changelog.txt │ └── js │ │ └── tinymce │ │ ├── jquery.tinymce.min.js │ │ ├── langs │ │ └── readme.md │ │ ├── license.txt │ │ ├── plugins │ │ ├── advlist │ │ │ └── plugin.min.js │ │ ├── anchor │ │ │ └── plugin.min.js │ │ ├── autolink │ │ │ └── plugin.min.js │ │ ├── autoresize │ │ │ └── plugin.min.js │ │ ├── autosave │ │ │ └── plugin.min.js │ │ ├── bbcode │ │ │ └── plugin.min.js │ │ ├── charmap │ │ │ └── plugin.min.js │ │ ├── code │ │ │ └── plugin.min.js │ │ ├── compat3x │ │ │ ├── editable_selects.js │ │ │ ├── form_utils.js │ │ │ ├── mctabs.js │ │ │ ├── tiny_mce_popup.js │ │ │ └── validate.js │ │ ├── contextmenu │ │ │ └── plugin.min.js │ │ ├── directionality │ │ │ └── plugin.min.js │ │ ├── emoticons │ │ │ ├── img │ │ │ │ ├── smiley-cool.gif │ │ │ │ ├── smiley-cry.gif │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ ├── smiley-frown.gif │ │ │ │ ├── smiley-innocent.gif │ │ │ │ ├── smiley-kiss.gif │ │ │ │ ├── smiley-laughing.gif │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ ├── smiley-sealed.gif │ │ │ │ ├── smiley-smile.gif │ │ │ │ ├── smiley-surprised.gif │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ ├── smiley-undecided.gif │ │ │ │ ├── smiley-wink.gif │ │ │ │ └── smiley-yell.gif │ │ │ └── plugin.min.js │ │ ├── example │ │ │ └── plugin.min.js │ │ ├── example_dependency │ │ │ └── plugin.min.js │ │ ├── fullpage │ │ │ └── plugin.min.js │ │ ├── fullscreen │ │ │ └── plugin.min.js │ │ ├── hr │ │ │ └── plugin.min.js │ │ ├── image │ │ │ └── plugin.min.js │ │ ├── importcss │ │ │ └── plugin.min.js │ │ ├── insertdatetime │ │ │ └── plugin.min.js │ │ ├── layer │ │ │ └── plugin.min.js │ │ ├── legacyoutput │ │ │ └── plugin.min.js │ │ ├── link │ │ │ └── plugin.min.js │ │ ├── lists │ │ │ └── plugin.min.js │ │ ├── media │ │ │ ├── moxieplayer.swf │ │ │ └── plugin.min.js │ │ ├── nonbreaking │ │ │ └── plugin.min.js │ │ ├── noneditable │ │ │ └── plugin.min.js │ │ ├── pagebreak │ │ │ └── plugin.min.js │ │ ├── paste │ │ │ └── plugin.min.js │ │ ├── preview │ │ │ └── plugin.min.js │ │ ├── print │ │ │ └── plugin.min.js │ │ ├── save │ │ │ └── plugin.min.js │ │ ├── searchreplace │ │ │ └── plugin.min.js │ │ ├── spellchecker │ │ │ └── plugin.min.js │ │ ├── tabfocus │ │ │ └── plugin.min.js │ │ ├── table │ │ │ └── plugin.min.js │ │ ├── template │ │ │ └── plugin.min.js │ │ ├── textcolor │ │ │ └── plugin.min.js │ │ ├── visualblocks │ │ │ ├── css │ │ │ │ └── visualblocks.css │ │ │ └── plugin.min.js │ │ ├── visualchars │ │ │ └── plugin.min.js │ │ └── wordcount │ │ │ └── plugin.min.js │ │ ├── skins │ │ └── lightgray │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── fonts │ │ │ ├── icomoon-small.eot │ │ │ ├── icomoon-small.svg │ │ │ ├── icomoon-small.ttf │ │ │ ├── icomoon-small.woff │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ ├── icomoon.woff │ │ │ └── readme.md │ │ │ ├── img │ │ │ ├── anchor.gif │ │ │ ├── loader.gif │ │ │ ├── object.gif │ │ │ ├── trans.gif │ │ │ └── wline.gif │ │ │ ├── skin.ie7.min.css │ │ │ └── skin.min.css │ │ ├── themes │ │ └── modern │ │ │ └── theme.min.js │ │ └── tinymce.min.js ├── uniform.default.css ├── wizard │ ├── jquery.bootstrap.wizard.js │ └── jquery.bootstrap.wizard.min.js └── wysiwyg │ ├── bootstrap-wysihtml5.css │ ├── bootstrap-wysihtml5.js │ └── wysihtml5-0.3.0.js └── view_jawaban.php /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.6" 4 | -------------------------------------------------------------------------------- /assets/scripts.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | // Side Bar Toggle 3 | $('.hide-sidebar').click(function() { 4 | $('#sidebar').hide('fast', function() { 5 | $('#content').removeClass('span9'); 6 | $('#content').addClass('span12'); 7 | $('.hide-sidebar').hide(); 8 | $('.show-sidebar').show(); 9 | }); 10 | }); 11 | 12 | $('.show-sidebar').click(function() { 13 | $('#content').removeClass('span12'); 14 | $('#content').addClass('span9'); 15 | $('.show-sidebar').hide(); 16 | $('.hide-sidebar').show(); 17 | $('#sidebar').show('fast'); 18 | }); 19 | }); -------------------------------------------------------------------------------- /bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /cek_ganti_pass.php: -------------------------------------------------------------------------------- 1 | 21 | -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- 1 |  2 | .autocomplete-w1 { background:url(image/shadow.png) no-repeat bottom right; position:absolute; top:0px; left:0px; margin:8px 0 0 6px; /* IE6 fix: */ _background:none; _margin:0; } 3 | .autocomplete { border:1px solid #999; background:#FFF; cursor:default; text-align:left; max-height:350px; overflow:auto; margin:-6px 6px 6px -6px; /* IE6 specific: */ _height:350px; _margin:0; _overflow-x:hidden; } 4 | .autocomplete .selected { background:#F0F0F0; } 5 | .autocomplete div { padding:2px 5px; white-space:nowrap; } 6 | .autocomplete strong { font-weight:normal; color:#3399FF; } 7 | -------------------------------------------------------------------------------- /form.php: -------------------------------------------------------------------------------- 1 |

Import Data Siswa

2 | 3 |
4 | Unggah File Excel : 5 | 6 |
7 | -------------------------------------------------------------------------------- /geany_run_script.bat: -------------------------------------------------------------------------------- 1 | php "daftar_nilai_kelas.php" 2 | 3 | pause 4 | del "%0" 5 | 6 | pause 7 | -------------------------------------------------------------------------------- /geany_run_script.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm $0 4 | 5 | php "daftar_siswa.php" 6 | 7 | echo " 8 | 9 | ------------------ 10 | (program exited with code: $?)" 11 | 12 | 13 | echo "Press return to continue" 14 | #to be more compatible with shells like dash 15 | dummy_var="" 16 | read dummy_var 17 | -------------------------------------------------------------------------------- /hapus_data.php: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /hapus_nilai_ujian.php: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /hendi.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `nilai` ADD `jml_benar` TINYINT NOT NULL , 2 | ADD `jml_salah` TINYINT NOT NULL 3 | -------------------------------------------------------------------------------- /image/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/image/Thumbs.db -------------------------------------------------------------------------------- /image/add-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/image/add-icon.gif -------------------------------------------------------------------------------- /image/b_usrcheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/image/b_usrcheck.png -------------------------------------------------------------------------------- /image/b_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/image/b_view.png -------------------------------------------------------------------------------- /image/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/image/back.png -------------------------------------------------------------------------------- /image/bigLoader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/image/bigLoader.gif -------------------------------------------------------------------------------- /image/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/image/del.png -------------------------------------------------------------------------------- /image/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/image/edit.png -------------------------------------------------------------------------------- /image/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/image/loading.gif -------------------------------------------------------------------------------- /image/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/image/no.png -------------------------------------------------------------------------------- /image/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/image/ok.png -------------------------------------------------------------------------------- /image/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/image/reset.png -------------------------------------------------------------------------------- /image/s_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/image/s_info.png -------------------------------------------------------------------------------- /image/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/image/save.png -------------------------------------------------------------------------------- /image/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/image/shadow.png -------------------------------------------------------------------------------- /images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/images/Thumbs.db -------------------------------------------------------------------------------- /images/bg-input-focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/images/bg-input-focus.png -------------------------------------------------------------------------------- /images/bg-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/images/bg-input.png -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/images/icon.png -------------------------------------------------------------------------------- /images/pavicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/images/pavicon.png -------------------------------------------------------------------------------- /images/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/images/sprite.png -------------------------------------------------------------------------------- /include/cek_session.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /include/koneksi.php: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /js/ckeditor_fungsi.js: -------------------------------------------------------------------------------- 1 | // untuk ckeditor 2 | var kaji_editor = new Array(); 3 | function hapus_kaji_editor(div){ 4 | if(kaji_editor[div]) 5 | kaji_editor[div].destroy(); 6 | } 7 | function replaceDiv(div){ 8 | hapus_kaji_editor(div); 9 | kaji_editor[div] = CKEDITOR.replace(div, 10 | { 11 | toolbar : 'MyToolbar', 12 | }); 13 | CKFinder.setupCKEditor(kaji_editor[div],'js/ckfinder/'); 14 | } 15 | -------------------------------------------------------------------------------- /js/ckfinder/ckfinder.php: -------------------------------------------------------------------------------- 1 | 2 | php_value engine off 3 | 4 | 5 | php_value engine off 6 | 7 | -------------------------------------------------------------------------------- /js/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /js/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /js/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /js/plugins/fmath_formula/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/Thumbs.db -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/MathMLEditor.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/MathMLEditor.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/fonts.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/fonts.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s0000.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s0000.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s0100.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s0100.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s0200.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s0200.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s0300.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s0300.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s0400.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s0400.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s1D00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s1D00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s1E00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s1E00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s1F00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s1F00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s2000.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s2000.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s2100.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s2100.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s2200.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s2200.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s2300.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s2300.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s2400.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s2400.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s2500.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s2500.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s2600.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s2600.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s2700.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s2700.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s2900.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s2900.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s2A00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s2A00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s2B00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s2B00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s2C00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s2C00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s2E00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s2E00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s3000.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s3000.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s3100.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s3100.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s4E00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s4E00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s4F00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s4F00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s5000.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s5000.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s5100.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s5100.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s5200.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s5200.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s5300.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s5300.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s5400.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s5400.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s5500.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s5500.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s5600.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s5600.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s5700.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s5700.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s5800.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s5800.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s5900.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s5900.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s5A00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s5A00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s5B00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s5B00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s5C00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s5C00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s5D00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s5D00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s5E00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s5E00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s5F00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s5F00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s6000.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s6000.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s6100.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s6100.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s6200.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s6200.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s6300.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s6300.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s6400.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s6400.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s6500.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s6500.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s6600.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s6600.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s6700.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s6700.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s6800.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s6800.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s6900.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s6900.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s6A00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s6A00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s6B00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s6B00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s6C00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s6C00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s6D00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s6D00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s6E00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s6E00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s6F00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s6F00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s7000.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s7000.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s7100.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s7100.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s7200.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s7200.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s7300.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s7300.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s7400.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s7400.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s7500.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s7500.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s7600.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s7600.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s7700.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s7700.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s7800.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s7800.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s7900.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s7900.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s7A00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s7A00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s7B00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s7B00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s7C00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s7C00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s7D00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s7D00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s7E00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s7E00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s7F00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s7F00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s8000.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s8000.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s8100.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s8100.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s8200.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s8200.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s8300.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s8300.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s8400.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s8400.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s8500.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s8500.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s8600.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s8600.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s8700.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s8700.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s8800.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s8800.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s8900.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s8900.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s8A00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s8A00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s8B00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s8B00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s8C00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s8C00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s8D00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s8D00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s8E00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s8E00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s8F00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s8F00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s9000.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s9000.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s9100.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s9100.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s9200.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s9200.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s9300.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s9300.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s9400.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s9400.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s9500.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s9500.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s9600.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s9600.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s9700.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s9700.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s9800.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s9800.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s9900.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s9900.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s9A00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s9A00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s9B00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s9B00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s9C00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s9C00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s9D00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s9D00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s9E00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s9E00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/s9F00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/s9F00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/sE000.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/sE000.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/sE100.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/sE100.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/sE200.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/sE200.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/sE300.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/sE300.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/sFB00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/sFB00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/sFE00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/sFE00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/dialogs/mathml/fontswf/sFF00.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/dialogs/mathml/fontswf/sFF00.swf -------------------------------------------------------------------------------- /js/plugins/fmath_formula/fmath_formula.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/fmath_formula/fmath_formula.jpg -------------------------------------------------------------------------------- /js/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /js/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /js/plugins/link/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/link/images/anchor.gif -------------------------------------------------------------------------------- /js/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /js/plugins/placeholder/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','en',{placeholder:{title:'Placeholder Properties',toolbar:'Create Placeholder',text:'Placeholder Text',edit:'Edit Placeholder',textMissing:'The placeholder must contain text.'}}); 7 | -------------------------------------------------------------------------------- /js/plugins/placeholder/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','he',{placeholder:{title:'מאפייני שומר מקום',toolbar:'צור שומר מקום',text:'תוכן שומר המקום',edit:'ערוך שומר מקום',textMissing:'שומר המקום חייב להכיל טקסט.'}}); 7 | -------------------------------------------------------------------------------- /js/plugins/placeholder/placeholder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/placeholder/placeholder.gif -------------------------------------------------------------------------------- /js/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /js/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /js/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /js/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /js/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /js/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /js/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /js/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /js/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /js/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /js/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /js/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /js/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /js/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /js/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /js/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /js/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /js/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /js/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /js/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /js/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /js/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /js/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /js/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /js/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /js/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /js/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /js/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /js/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /js/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /js/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /js/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /js/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /js/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /js/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /js/plugins/uicolor/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','en',{uicolor:{title:'UI Color Picker',preview:'Live preview',config:'Paste this string into your config.js file',predefined:'Predefined color sets'}}); 7 | -------------------------------------------------------------------------------- /js/plugins/uicolor/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','he',{uicolor:{title:'בחירת צבע ממשק משתמש',preview:'תצוגה מקדימה',config:'הדבק את הטקסט הבא לתוך הקובץ config.js',predefined:'קבוצות צבעים מוגדרות מראש'}}); 7 | -------------------------------------------------------------------------------- /js/plugins/uicolor/uicolor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/uicolor/uicolor.gif -------------------------------------------------------------------------------- /js/plugins/uicolor/yui/assets/hue_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/uicolor/yui/assets/hue_bg.png -------------------------------------------------------------------------------- /js/plugins/uicolor/yui/assets/hue_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/uicolor/yui/assets/hue_thumb.png -------------------------------------------------------------------------------- /js/plugins/uicolor/yui/assets/picker_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/uicolor/yui/assets/picker_mask.png -------------------------------------------------------------------------------- /js/plugins/uicolor/yui/assets/picker_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/plugins/uicolor/yui/assets/picker_thumb.png -------------------------------------------------------------------------------- /js/skins/kama/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/kama/icons.png -------------------------------------------------------------------------------- /js/skins/kama/icons_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/kama/icons_rtl.png -------------------------------------------------------------------------------- /js/skins/kama/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/kama/images/dialog_sides.gif -------------------------------------------------------------------------------- /js/skins/kama/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/kama/images/dialog_sides.png -------------------------------------------------------------------------------- /js/skins/kama/images/dialog_sides_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/kama/images/dialog_sides_rtl.png -------------------------------------------------------------------------------- /js/skins/kama/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/kama/images/mini.gif -------------------------------------------------------------------------------- /js/skins/kama/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/kama/images/noimage.png -------------------------------------------------------------------------------- /js/skins/kama/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/kama/images/sprites.png -------------------------------------------------------------------------------- /js/skins/kama/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/kama/images/sprites_ie6.png -------------------------------------------------------------------------------- /js/skins/kama/images/toolbar_start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/kama/images/toolbar_start.gif -------------------------------------------------------------------------------- /js/skins/office2003/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/office2003/icons.png -------------------------------------------------------------------------------- /js/skins/office2003/icons_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/office2003/icons_rtl.png -------------------------------------------------------------------------------- /js/skins/office2003/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/office2003/images/dialog_sides.gif -------------------------------------------------------------------------------- /js/skins/office2003/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/office2003/images/dialog_sides.png -------------------------------------------------------------------------------- /js/skins/office2003/images/dialog_sides_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/office2003/images/dialog_sides_rtl.png -------------------------------------------------------------------------------- /js/skins/office2003/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/office2003/images/mini.gif -------------------------------------------------------------------------------- /js/skins/office2003/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/office2003/images/noimage.png -------------------------------------------------------------------------------- /js/skins/office2003/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/office2003/images/sprites.png -------------------------------------------------------------------------------- /js/skins/office2003/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/office2003/images/sprites_ie6.png -------------------------------------------------------------------------------- /js/skins/v2/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/v2/icons.png -------------------------------------------------------------------------------- /js/skins/v2/icons_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/v2/icons_rtl.png -------------------------------------------------------------------------------- /js/skins/v2/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/v2/images/dialog_sides.gif -------------------------------------------------------------------------------- /js/skins/v2/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/v2/images/dialog_sides.png -------------------------------------------------------------------------------- /js/skins/v2/images/dialog_sides_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/v2/images/dialog_sides_rtl.png -------------------------------------------------------------------------------- /js/skins/v2/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/v2/images/mini.gif -------------------------------------------------------------------------------- /js/skins/v2/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/v2/images/noimage.png -------------------------------------------------------------------------------- /js/skins/v2/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/v2/images/sprites.png -------------------------------------------------------------------------------- /js/skins/v2/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/v2/images/sprites_ie6.png -------------------------------------------------------------------------------- /js/skins/v2/images/toolbar_start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/js/skins/v2/images/toolbar_start.gif -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap-admin-theme", 3 | "description": "A generic admin theme built with Bootstrap free for both personal and commercial use.", 4 | "version": "1.0.0", 5 | "homepage": "http://www.vadimg.com/", 6 | "author": { 7 | "name": "Vincent Gabriel", 8 | "email": "vadimg88@gmail.com" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "git@github.com:VinceG/Bootstrap-Admin-Theme.git" 13 | }, 14 | "engines": { 15 | "node": "0.6.x" 16 | }, 17 | "dependencies": {}, 18 | "devDependencies": {} 19 | } 20 | -------------------------------------------------------------------------------- /rumus_fmath/imageCapture.php: -------------------------------------------------------------------------------- 1 | 19 | -------------------------------------------------------------------------------- /rumus_fmath/img/0A676A51-9AE6-99D3-C8E8-4152DEC80D40.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/rumus_fmath/img/0A676A51-9AE6-99D3-C8E8-4152DEC80D40.JPG -------------------------------------------------------------------------------- /rumus_fmath/img/565BC6A3-6F6D-3233-5914-F6BEE26523BE.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/rumus_fmath/img/565BC6A3-6F6D-3233-5914-F6BEE26523BE.JPG -------------------------------------------------------------------------------- /rumus_fmath/img/5C34A98C-5973-1581-13F6-FB20D0AE2735.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/rumus_fmath/img/5C34A98C-5973-1581-13F6-FB20D0AE2735.JPG -------------------------------------------------------------------------------- /rumus_fmath/img/B139BB6D-FEE9-ECB9-7BA7-A4A28AEBEAA3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/rumus_fmath/img/B139BB6D-FEE9-ECB9-7BA7-A4A28AEBEAA3.JPG -------------------------------------------------------------------------------- /rumus_fmath/img/C7ACC966-54D6-B8C0-49CC-87A98CE39333.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/rumus_fmath/img/C7ACC966-54D6-B8C0-49CC-87A98CE39333.JPG -------------------------------------------------------------------------------- /siswa.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/siswa.xls -------------------------------------------------------------------------------- /sql/view.sql: -------------------------------------------------------------------------------- 1 | CREATE VIEW `v_ujian_mapel` AS select `ujian`.`id_ujian` AS `id_ujian`,`ujian`.`nama_ujian` AS `nama_ujian`,`ujian`.`id_mp` AS `id_mp`,`mapel`.`nama_mp` AS `nama_mp`,`ujian`.`tanggal` AS `tanggal`,`ujian`.`waktu` AS `waktu`,`ujian`.`keterangan` AS `keterangan` from (`ujian` join `mapel` on((`ujian`.`id_mp` = `mapel`.`id_mp`))); 2 | 3 | INSERT INTO `admin` (`nis`, `nama`, `alamat`, `agama`) VALUES 4 | ('kaji_admin', 'ahmad afandi', 'cerme klagen', 'Islam'); 5 | -------------------------------------------------------------------------------- /userfiles/_thumbs/Images/Foto010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/userfiles/_thumbs/Images/Foto010.jpg -------------------------------------------------------------------------------- /userfiles/_thumbs/Images/Koala.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/userfiles/_thumbs/Images/Koala.jpg -------------------------------------------------------------------------------- /userfiles/_thumbs/Images/doa-dunia-akhirat1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/userfiles/_thumbs/Images/doa-dunia-akhirat1.jpg -------------------------------------------------------------------------------- /userfiles/_thumbs/Images/md2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/userfiles/_thumbs/Images/md2.jpeg -------------------------------------------------------------------------------- /userfiles/_thumbs/Images/mdbesar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/userfiles/_thumbs/Images/mdbesar.jpeg -------------------------------------------------------------------------------- /userfiles/_thumbs/Images/ol.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/userfiles/_thumbs/Images/ol.jpeg -------------------------------------------------------------------------------- /userfiles/_thumbs/Images/stoppiracy.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/userfiles/_thumbs/Images/stoppiracy.jpeg -------------------------------------------------------------------------------- /userfiles/_thumbs/Images/tajdid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/userfiles/_thumbs/Images/tajdid.jpg -------------------------------------------------------------------------------- /userfiles/_thumbs/Images/ubuntu.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/userfiles/_thumbs/Images/ubuntu.jpeg -------------------------------------------------------------------------------- /userfiles/images/Foto010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/userfiles/images/Foto010.jpg -------------------------------------------------------------------------------- /userfiles/images/Koala.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/userfiles/images/Koala.jpg -------------------------------------------------------------------------------- /userfiles/images/doa-dunia-akhirat1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/userfiles/images/doa-dunia-akhirat1.jpg -------------------------------------------------------------------------------- /userfiles/images/md2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/userfiles/images/md2.jpeg -------------------------------------------------------------------------------- /userfiles/images/mdbesar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/userfiles/images/mdbesar.jpeg -------------------------------------------------------------------------------- /userfiles/images/ol.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/userfiles/images/ol.jpeg -------------------------------------------------------------------------------- /userfiles/images/stoppiracy.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/userfiles/images/stoppiracy.jpeg -------------------------------------------------------------------------------- /userfiles/images/tajdid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/userfiles/images/tajdid.jpg -------------------------------------------------------------------------------- /userfiles/images/ubuntu.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/userfiles/images/ubuntu.jpeg -------------------------------------------------------------------------------- /vendors/bootstrap-wysihtml5/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .c9revisions 3 | /*.project 4 | -------------------------------------------------------------------------------- /vendors/bootstrap-wysihtml5/.settings/.gitignore: -------------------------------------------------------------------------------- 1 | /*.jsdtscope 2 | /*.eclipse.wst.jsdt.ui.superType.container 3 | /*.eclipse.wst.jsdt.ui.superType.name 4 | -------------------------------------------------------------------------------- /vendors/bootstrap-wysihtml5/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'rake' 4 | gem 'therubyracer' 5 | gem 'uglifier' -------------------------------------------------------------------------------- /vendors/bootstrap-wysihtml5/Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | execjs (1.3.0) 5 | multi_json (~> 1.0) 6 | libv8 (3.3.10.4) 7 | multi_json (1.1.0) 8 | rake (0.9.2.2) 9 | therubyracer (0.9.10) 10 | libv8 (~> 3.3.10) 11 | uglifier (1.2.3) 12 | execjs (>= 0.3.0) 13 | multi_json (>= 1.0.2) 14 | 15 | PLATFORMS 16 | ruby 17 | 18 | DEPENDENCIES 19 | rake 20 | therubyracer 21 | uglifier 22 | -------------------------------------------------------------------------------- /vendors/bootstrap-wysihtml5/VERSION: -------------------------------------------------------------------------------- 1 | 0.0.2 -------------------------------------------------------------------------------- /vendors/bootstrap-wysihtml5/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap-wysihtml5", 3 | "version": "0.1.0", 4 | "main": ["src/bootstrap-wysihtml5.css", "src/bootstrap-wysihtml5.js"], 5 | "dependencies": { 6 | "wysihtml5": "~0.3.0" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendors/bootstrap-wysihtml5/lib/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/bootstrap-wysihtml5/lib/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /vendors/bootstrap-wysihtml5/lib/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/bootstrap-wysihtml5/lib/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /vendors/bootstrap-wysihtml5/test/lib: -------------------------------------------------------------------------------- 1 | ../lib/ -------------------------------------------------------------------------------- /vendors/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/chosen-sprite.png -------------------------------------------------------------------------------- /vendors/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/chosen-sprite@2x.png -------------------------------------------------------------------------------- /vendors/ckeditor/config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.editorConfig = function( config ) { 7 | // Define changes to default configuration here. For example: 8 | // config.language = 'fr'; 9 | // config.uiColor = '#AADC6E'; 10 | }; 11 | -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/fakeobjects/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/fakeobjects/images/spacer.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/preview/preview.html: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/smiley/images/embarrassed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/smiley/images/embarrassed_smile.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/smiley/images/tongue_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/smiley/images/tongue_smile.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /vendors/ckeditor/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /vendors/ckeditor/samples/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/samples/assets/inlineall/logo.png -------------------------------------------------------------------------------- /vendors/ckeditor/samples/assets/sample.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Required by tests (dom/document.html). 3 | */ 4 | -------------------------------------------------------------------------------- /vendors/ckeditor/samples/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/samples/assets/sample.jpg -------------------------------------------------------------------------------- /vendors/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /vendors/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /vendors/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /vendors/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /vendors/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /vendors/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /vendors/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /vendors/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /vendors/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /vendors/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /vendors/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /vendors/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /vendors/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /vendors/datatables/images/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/datatables/images/Sorting icons.psd -------------------------------------------------------------------------------- /vendors/datatables/images/back_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/datatables/images/back_disabled.png -------------------------------------------------------------------------------- /vendors/datatables/images/back_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/datatables/images/back_enabled.png -------------------------------------------------------------------------------- /vendors/datatables/images/back_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/datatables/images/back_enabled_hover.png -------------------------------------------------------------------------------- /vendors/datatables/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/datatables/images/favicon.ico -------------------------------------------------------------------------------- /vendors/datatables/images/forward_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/datatables/images/forward_disabled.png -------------------------------------------------------------------------------- /vendors/datatables/images/forward_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/datatables/images/forward_enabled.png -------------------------------------------------------------------------------- /vendors/datatables/images/forward_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/datatables/images/forward_enabled_hover.png -------------------------------------------------------------------------------- /vendors/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /vendors/datatables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/datatables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /vendors/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/datatables/images/sort_both.png -------------------------------------------------------------------------------- /vendors/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /vendors/datatables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/datatables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /vendors/datatables/unit_testing/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /vendors/datatables/unit_testing/tests_onhold/1_dom/2512.js: -------------------------------------------------------------------------------- 1 | // DATA_TEMPLATE: 2512 2 | oTest.fnStart( "Check filtering with BR and HTML entity" ); 3 | 4 | 5 | $(document).ready( function () { 6 | $('#example').dataTable(); 7 | 8 | /* Basic checks */ 9 | oTest.fnTest( 10 | "Check filtering", 11 | function () { $('#example').dataTable().fnFilter('testsearchstring'); }, 12 | function () { return $('#example tbody tr').length == 1; } 13 | ); 14 | 15 | 16 | oTest.fnComplete(); 17 | } ); -------------------------------------------------------------------------------- /vendors/datatables/unit_testing/tests_onhold/1_dom/2530-2.js: -------------------------------------------------------------------------------- 1 | // DATA_TEMPLATE: dom_data 2 | oTest.fnStart( "User given with is left when no scrolling" ); 3 | 4 | $(document).ready( function () { 5 | $('#example')[0].style.width = "80%"; 6 | $('#example').dataTable(); 7 | 8 | oTest.fnTest( 9 | "Check user width is left", 10 | null, 11 | function () { return $('#example').width() == 640; } 12 | ); 13 | 14 | oTest.fnComplete(); 15 | } ); -------------------------------------------------------------------------------- /vendors/datatables/unit_testing/tests_onhold/1_dom/2799.js: -------------------------------------------------------------------------------- 1 | // DATA_TEMPLATE: two_tables 2 | oTest.fnStart( "Initialise two tables" ); 3 | 4 | $(document).ready( function () { 5 | $('table.display').dataTable(); 6 | 7 | oTest.fnTest( 8 | "Check that initialisation was okay", 9 | null, 10 | function () { return true; } 11 | ); 12 | 13 | oTest.fnComplete(); 14 | } ); -------------------------------------------------------------------------------- /vendors/datatables/unit_testing/tests_onhold/1_dom/2840-restore-table-width.js: -------------------------------------------------------------------------------- 1 | // DATA_TEMPLATE: dom_data 2 | oTest.fnStart( "2840 - Restore table width on fnDestroy" ); 3 | 4 | $(document).ready( function () { 5 | document.cookie = ""; 6 | $('#example').dataTable( { 7 | "sScrollX": "100%", 8 | "sScrollXInner": "110%" 9 | } ); 10 | $('#example').dataTable().fnDestroy(); 11 | 12 | oTest.fnTest( 13 | "Width after destroy", 14 | null, 15 | function () { return $('#example').width() == "800"; } 16 | ); 17 | 18 | oTest.fnComplete(); 19 | } ); -------------------------------------------------------------------------------- /vendors/datatables/unit_testing/tests_onhold/1_dom/bServerSide.js: -------------------------------------------------------------------------------- 1 | // DATA_TEMPLATE: dom_data 2 | oTest.fnStart( "bServerSide" ); 3 | 4 | /* Not interested in server-side processing here other than to check that it is off */ 5 | 6 | $(document).ready( function () { 7 | /* Check the default */ 8 | var oTable = $('#example').dataTable(); 9 | var oSettings = oTable.fnSettings(); 10 | 11 | oTest.fnTest( 12 | "Server side is off by default", 13 | null, 14 | function () { return oSettings.oFeatures.bServerSide == false; } 15 | ); 16 | 17 | oTest.fnComplete(); 18 | } ); -------------------------------------------------------------------------------- /vendors/datatables/unit_testing/tests_onhold/1_dom/fnFilter.js: -------------------------------------------------------------------------------- 1 | // DATA_TEMPLATE: dom_data 2 | oTest.fnStart( "fnFilter" ); 3 | 4 | $(document).ready( function () { 5 | /* Check the default */ 6 | var oTable = $('#example').dataTable(); 7 | oTable.fnFilter(1); 8 | 9 | oTest.fnTest( 10 | "Filtering with a non-string input is valid", 11 | null, 12 | function () { return $('#example_info').html() == "Showing 1 to 10 of 32 entries (filtered from 57 total entries)"; } 13 | ); 14 | 15 | oTest.fnComplete(); 16 | } ); -------------------------------------------------------------------------------- /vendors/datatables/unit_testing/tests_onhold/1_dom/sAjaxSource.js: -------------------------------------------------------------------------------- 1 | // DATA_TEMPLATE: dom_data 2 | oTest.fnStart( "sAjaxSource" ); 3 | 4 | /* Not interested in ajax source here other than to check it's default */ 5 | 6 | $(document).ready( function () { 7 | /* Check the default */ 8 | var oTable = $('#example').dataTable(); 9 | var oSettings = oTable.fnSettings(); 10 | 11 | oTest.fnTest( 12 | "Server side is off by default", 13 | null, 14 | function () { return oSettings.sAjaxSource == null; } 15 | ); 16 | 17 | oTest.fnComplete(); 18 | } ); -------------------------------------------------------------------------------- /vendors/datatables/unit_testing/tests_onhold/2_js/bServerSide.js: -------------------------------------------------------------------------------- 1 | // DATA_TEMPLATE: js_data 2 | oTest.fnStart( "bServerSide" ); 3 | 4 | /* Not interested in server-side processing here other than to check that it is off */ 5 | 6 | $(document).ready( function () { 7 | /* Check the default */ 8 | var oTable = $('#example').dataTable( { 9 | "aaData": gaaData 10 | } ); 11 | var oSettings = oTable.fnSettings(); 12 | 13 | oTest.fnTest( 14 | "Server side is off by default", 15 | null, 16 | function () { return oSettings.oFeatures.bServerSide == false; } 17 | ); 18 | 19 | oTest.fnComplete(); 20 | } ); -------------------------------------------------------------------------------- /vendors/datatables/unit_testing/tests_onhold/2_js/sAjaxSource.js: -------------------------------------------------------------------------------- 1 | // DATA_TEMPLATE: js_data 2 | oTest.fnStart( "sAjaxSource" ); 3 | 4 | /* Not interested in ajax source here other than to check it's default */ 5 | 6 | $(document).ready( function () { 7 | /* Check the default */ 8 | var oTable = $('#example').dataTable( { 9 | "aaData": gaaData 10 | } ); 11 | var oSettings = oTable.fnSettings(); 12 | 13 | oTest.fnTest( 14 | "Server side is off by default", 15 | null, 16 | function () { return oSettings.sAjaxSource == null; } 17 | ); 18 | 19 | oTest.fnComplete(); 20 | } ); -------------------------------------------------------------------------------- /vendors/datatables/unit_testing/tests_onhold/3_ajax/bServerSide.js: -------------------------------------------------------------------------------- 1 | // DATA_TEMPLATE: empty_table 2 | oTest.fnStart( "bServerSide" ); 3 | 4 | /* Not interested in server-side processing here other than to check that it is off */ 5 | 6 | $(document).ready( function () { 7 | /* Check the default */ 8 | var oTable = $('#example').dataTable( { 9 | "sAjaxSource": "../../../examples/ajax/sources/arrays.txt" 10 | } ); 11 | var oSettings = oTable.fnSettings(); 12 | 13 | oTest.fnWaitTest( 14 | "Server side is off by default", 15 | null, 16 | function () { return oSettings.oFeatures.bServerSide == false; } 17 | ); 18 | 19 | oTest.fnComplete(); 20 | } ); -------------------------------------------------------------------------------- /vendors/datatables/unit_testing/tests_onhold/3_ajax/sAjaxSource.js: -------------------------------------------------------------------------------- 1 | // DATA_TEMPLATE: empty_table 2 | oTest.fnStart( "sAjaxSource" ); 3 | 4 | /* Sanitfy check really - all the other tests blast this */ 5 | 6 | $(document).ready( function () { 7 | /* Check the default */ 8 | var oTable = $('#example').dataTable( { 9 | "sAjaxSource": "../../../examples/ajax/sources/arrays.txt" 10 | } ); 11 | var oSettings = oTable.fnSettings(); 12 | 13 | oTest.fnWaitTest( 14 | "Server side is off by default", 15 | null, 16 | function () { 17 | return oSettings.sAjaxSource == "../../../examples/ajax/sources/arrays.txt"; 18 | } 19 | ); 20 | 21 | oTest.fnComplete(); 22 | } ); -------------------------------------------------------------------------------- /vendors/datatables/unit_testing/tests_onhold/4_server-side/bServerSide.js: -------------------------------------------------------------------------------- 1 | // DATA_TEMPLATE: empty_table 2 | oTest.fnStart( "bServerSide" ); 3 | 4 | /* All the other scripts blast the ssp processing */ 5 | 6 | $(document).ready( function () { 7 | /* Check the default */ 8 | var oTable = $('#example').dataTable( { 9 | "bServerSide": true, 10 | "sAjaxSource": "../../../examples/server_side/scripts/server_processing.php" 11 | } ); 12 | var oSettings = oTable.fnSettings(); 13 | 14 | oTest.fnWaitTest( 15 | "Server side can be set to on", 16 | null, 17 | function () { return oSettings.oFeatures.bServerSide == true; } 18 | ); 19 | 20 | oTest.fnComplete(); 21 | } ); -------------------------------------------------------------------------------- /vendors/datatables/unit_testing/tests_onhold/6_delayed_rendering/bServerSide.js: -------------------------------------------------------------------------------- 1 | // DATA_TEMPLATE: empty_table 2 | oTest.fnStart( "bServerSide" ); 3 | 4 | /* Not interested in server-side processing here other than to check that it is off */ 5 | 6 | $(document).ready( function () { 7 | /* Check the default */ 8 | var oTable = $('#example').dataTable( { 9 | "sAjaxSource": "../../../examples/ajax/sources/arrays.txt", 10 | "bDeferRender": true 11 | } ); 12 | var oSettings = oTable.fnSettings(); 13 | 14 | oTest.fnWaitTest( 15 | "Server side is off by default", 16 | null, 17 | function () { return oSettings.oFeatures.bServerSide == false; } 18 | ); 19 | 20 | oTest.fnComplete(); 21 | } ); -------------------------------------------------------------------------------- /vendors/easypiechart/jquery.easy-pie-chart.css: -------------------------------------------------------------------------------- 1 | .easyPieChart { 2 | position: relative; 3 | text-align: center; 4 | } 5 | 6 | .easyPieChart canvas { 7 | position: absolute; 8 | top: 0; 9 | left: 0; 10 | } 11 | -------------------------------------------------------------------------------- /vendors/flot/.gitignore: -------------------------------------------------------------------------------- 1 | *.min.js 2 | !excanvas.min.js 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /vendors/flot/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | -------------------------------------------------------------------------------- /vendors/flot/Makefile: -------------------------------------------------------------------------------- 1 | # Makefile for generating minified files 2 | 3 | .PHONY: all 4 | 5 | # we cheat and process all .js files instead of an exhaustive list 6 | all: $(patsubst %.js,%.min.js,$(filter-out %.min.js,$(wildcard *.js))) 7 | 8 | %.min.js: %.js 9 | yui-compressor $< -o $@ 10 | 11 | test: 12 | ./node_modules/.bin/jshint *jquery.flot.js 13 | -------------------------------------------------------------------------------- /vendors/flot/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Flot", 3 | "version": "0.8.0-beta", 4 | "main": "jquery.flot.js", 5 | "dependencies": { 6 | "jquery": ">= 1.2.6" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendors/flot/examples/ajax/data-eu-gdp-growth-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9]] 4 | } 5 | -------------------------------------------------------------------------------- /vendors/flot/examples/ajax/data-eu-gdp-growth-2.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2]] 4 | } 5 | -------------------------------------------------------------------------------- /vendors/flot/examples/ajax/data-eu-gdp-growth-3.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5]] 4 | } 5 | -------------------------------------------------------------------------------- /vendors/flot/examples/ajax/data-eu-gdp-growth-4.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1]] 4 | } 5 | -------------------------------------------------------------------------------- /vendors/flot/examples/ajax/data-eu-gdp-growth-5.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1], [2007, 2.9], [2008, 0.9]] 4 | } 5 | -------------------------------------------------------------------------------- /vendors/flot/examples/ajax/data-eu-gdp-growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1], [2007, 2.9], [2008, 0.9]] 4 | } 5 | -------------------------------------------------------------------------------- /vendors/flot/examples/ajax/data-japan-gdp-growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Japan", 3 | "data": [[1999, -0.1], [2000, 2.9], [2001, 0.2], [2002, 0.3], [2003, 1.4], [2004, 2.7], [2005, 1.9], [2006, 2.0], [2007, 2.3], [2008, -0.7]] 4 | } 5 | -------------------------------------------------------------------------------- /vendors/flot/examples/ajax/data-usa-gdp-growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "USA", 3 | "data": [[1999, 4.4], [2000, 3.7], [2001, 0.8], [2002, 1.6], [2003, 2.5], [2004, 3.6], [2005, 2.9], [2006, 2.8], [2007, 2.0], [2008, 1.1]] 4 | } 5 | -------------------------------------------------------------------------------- /vendors/flot/examples/axes-time-zones/tz/factory: -------------------------------------------------------------------------------- 1 | #
 2 | # This file is in the public domain, so clarified as of
 3 | # 2009-05-17 by Arthur David Olson.
 4 | 
 5 | # For companies who don't want to put time zone specification in
 6 | # their installation procedures.  When users run date, they'll get the message.
 7 | # Also useful for the "comp.sources" version.
 8 | 
 9 | # Zone	NAME	GMTOFF	RULES	FORMAT
10 | Zone	Factory	0	- "Local time zone must be set--see zic manual page"
11 | 


--------------------------------------------------------------------------------
/vendors/flot/examples/axes-time-zones/tz/southamerica:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/flot/examples/axes-time-zones/tz/southamerica


--------------------------------------------------------------------------------
/vendors/flot/examples/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/flot/examples/background.png


--------------------------------------------------------------------------------
/vendors/flot/examples/image/hs-2004-27-a-large-web.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/flot/examples/image/hs-2004-27-a-large-web.jpg


--------------------------------------------------------------------------------
/vendors/flot/examples/navigate/arrow-down.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/flot/examples/navigate/arrow-down.gif


--------------------------------------------------------------------------------
/vendors/flot/examples/navigate/arrow-left.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/flot/examples/navigate/arrow-left.gif


--------------------------------------------------------------------------------
/vendors/flot/examples/navigate/arrow-right.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/flot/examples/navigate/arrow-right.gif


--------------------------------------------------------------------------------
/vendors/flot/examples/navigate/arrow-up.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/flot/examples/navigate/arrow-up.gif


--------------------------------------------------------------------------------
/vendors/flot/package.json:
--------------------------------------------------------------------------------
 1 | {
 2 | 	"name": "Flot",
 3 | 	"version": "0.8.0-beta",
 4 | 	"main": "jquery.flot.js",
 5 | 	"scripts": {
 6 | 		"test": "make test"
 7 | 	},
 8 | 	"devDependencies": {
 9 | 		"jshint": "0.9.1"
10 | 	}
11 | }
12 | 


--------------------------------------------------------------------------------
/vendors/jGrowl/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | 


--------------------------------------------------------------------------------
/vendors/jGrowl/examples/iphone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jGrowl/examples/iphone.png


--------------------------------------------------------------------------------
/vendors/jGrowl/examples/smoke.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jGrowl/examples/smoke.png


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/captcha/captcha.js:
--------------------------------------------------------------------------------
 1 | $(function(){
 2 | 	$("#refreshimg").click(function(){
 3 | 		$.post('newsession.php');
 4 | 		$("#captchaimage").load('image_req.php');
 5 | 		return false;
 6 | 	});
 7 | 	
 8 | 	$("#captchaform").validate({
 9 | 		rules: {
10 | 			captcha: {
11 | 				required: true,
12 | 				remote: "process.php"
13 | 			}
14 | 		},
15 | 		messages: {
16 | 			captcha: "Correct captcha is required. Click the captcha to generate a new one"	
17 | 		},
18 | 		submitHandler: function() {
19 | 			alert("Correct captcha!");
20 | 		},
21 | 		success: function(label) {
22 | 			label.addClass("valid").text("Valid captcha!")
23 | 		},
24 | 		onkeyup: false
25 | 	});
26 | 	
27 | });
28 | 


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/captcha/fonts/Anorexia.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/captcha/fonts/Anorexia.ttf


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/captcha/image_req.php:
--------------------------------------------------------------------------------
1 | Captcha image';
5 | 
6 | ?>


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/captcha/images/button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/captcha/images/button.png


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/captcha/newsession.php:
--------------------------------------------------------------------------------
 1 | 


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/captcha/process.php:
--------------------------------------------------------------------------------
 1 | 


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/captcha/rand.php:
--------------------------------------------------------------------------------
 1 | 


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/css/screen.css:
--------------------------------------------------------------------------------
 1 | /**********************************
 2 | 
 3 | Use: Main Screen Import
 4 | 
 5 | ***********************************/
 6 | 
 7 | @import "reset.css";
 8 | @import "core.css";
 9 | 
10 | @import "cmxformTemplate.css";
11 | @import "cmxform.css";


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/images/bg.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/images/bg.gif


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/images/checked.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/images/checked.gif


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/images/cmxform-divider.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/images/cmxform-divider.gif


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/images/cmxform-fieldset.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/images/cmxform-fieldset.gif


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/images/loading.gif


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/images/unchecked.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/images/unchecked.gif


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/login/images/bg.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/login/images/bg.gif


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/login/images/header1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/login/images/header1.jpg


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/login/images/page.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/login/images/page.gif


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/login/images/required_star.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/login/images/required_star.gif


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/marketo/images/backRequiredGray.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/marketo/images/backRequiredGray.gif


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/marketo/images/back_green-fade.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/marketo/images/back_green-fade.gif


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/marketo/images/back_nav_blue.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/marketo/images/back_nav_blue.gif


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/marketo/images/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/marketo/images/blank.gif


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/marketo/images/button-submit.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/marketo/images/button-submit.gif


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/marketo/images/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/marketo/images/favicon.ico


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/marketo/images/help.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/marketo/images/help.png


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/marketo/images/left-nav-callout-long.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/marketo/images/left-nav-callout-long.png


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/marketo/images/login-sprite.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/marketo/images/login-sprite.gif


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/marketo/images/logo_marketo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/marketo/images/logo_marketo.gif


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/marketo/images/sf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/marketo/images/sf.png


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/marketo/images/step1-24.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/marketo/images/step1-24.gif


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/marketo/images/step2-24.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/marketo/images/step2-24.gif


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/marketo/images/step3-24.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/marketo/images/step3-24.gif


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/marketo/images/tab-sprite.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/marketo/images/tab-sprite.gif


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/marketo/images/tab_green.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/marketo/images/tab_green.gif


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/marketo/images/time.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/marketo/images/time.png


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/marketo/images/toggle.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/marketo/images/toggle.gif


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/marketo/images/warning.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/marketo/images/warning.gif


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/milk/bg.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/milk/bg.gif


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/milk/left_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/milk/left_white.png


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/milk/milk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/milk/milk.png


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/milk/right_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/milk/right_white.png


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/tinymce/themes/simple/img/icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/demo/tinymce/themes/simple/img/icons.gif


--------------------------------------------------------------------------------
/vendors/jquery-validation/demo/tinymce/themes/simple/langs/en.js:
--------------------------------------------------------------------------------
 1 | tinyMCE.addI18n('en.simple',{
 2 | bold_desc:"Bold (Ctrl+B)",
 3 | italic_desc:"Italic (Ctrl+I)",
 4 | underline_desc:"Underline (Ctrl+U)",
 5 | striketrough_desc:"Strikethrough",
 6 | bullist_desc:"Unordered list",
 7 | numlist_desc:"Ordered list",
 8 | undo_desc:"Undo (Ctrl+Z)",
 9 | redo_desc:"Redo (Ctrl+Y)",
10 | cleanup_desc:"Cleanup messy code"
11 | });


--------------------------------------------------------------------------------
/vendors/jquery-validation/localization/methods_de.js:
--------------------------------------------------------------------------------
 1 | /*
 2 |  * Localized default methods for the jQuery validation plugin.
 3 |  * Locale: DE
 4 |  */
 5 | jQuery.extend(jQuery.validator.methods, {
 6 | 	date: function(value, element) {
 7 | 		return this.optional(element) || /^\d\d?\.\d\d?\.\d\d\d?\d?$/.test(value);
 8 | 	},
 9 | 	number: function(value, element) {
10 | 		return this.optional(element) || /^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(value);
11 | 	}
12 | });


--------------------------------------------------------------------------------
/vendors/jquery-validation/localization/methods_nl.js:
--------------------------------------------------------------------------------
1 | /*
2 |  * Localized default methods for the jQuery validation plugin.
3 |  * Locale: NL
4 |  */
5 | jQuery.extend(jQuery.validator.methods, {
6 | 	date: function(value, element) {
7 | 		return this.optional(element) || /^\d\d?[\.\/\-]\d\d?[\.\/\-]\d\d\d?\d?$/.test(value);
8 | 	}
9 | });


--------------------------------------------------------------------------------
/vendors/jquery-validation/localization/methods_pt.js:
--------------------------------------------------------------------------------
1 | /*
2 |  * Localized default methods for the jQuery validation plugin.
3 |  * Locale: PT_BR
4 |  */
5 | jQuery.extend(jQuery.validator.methods, {
6 | 	date: function(value, element) {
7 | 		return this.optional(element) || /^\d\d?\/\d\d?\/\d\d\d?\d?$/.test(value);
8 | 	}
9 | });


--------------------------------------------------------------------------------
/vendors/jquery-validation/test/firebug/errorIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/test/firebug/errorIcon.png


--------------------------------------------------------------------------------
/vendors/jquery-validation/test/firebug/firebugx.js:
--------------------------------------------------------------------------------
 1 | 
 2 | if (!("console" in window) || !("firebug" in console))
 3 | {
 4 |     var names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml",
 5 |     "group", "groupEnd", "time", "timeEnd", "count", "trace", "profile", "profileEnd"];
 6 | 
 7 |     window.console = {};
 8 |     for (var i = 0; i < names.length; ++i)
 9 |         window.console[names[i]] = function() {}
10 | }


--------------------------------------------------------------------------------
/vendors/jquery-validation/test/firebug/infoIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/test/firebug/infoIcon.png


--------------------------------------------------------------------------------
/vendors/jquery-validation/test/firebug/warningIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/jquery-validation/test/firebug/warningIcon.png


--------------------------------------------------------------------------------
/vendors/jquery-validation/test/jquery.js:
--------------------------------------------------------------------------------
 1 | (function() {
 2 | 
 3 | var parts = document.location.search.slice( 1 ).split( "&" ),
 4 | 	length = parts.length,
 5 | 	i = 0,
 6 | 	current,
 7 | 	version = "1.9.0",
 8 | 	file = "http://code.jquery.com/jquery-git.js";
 9 | 
10 | for ( ; i < length; i++ ) {
11 | 	current = parts[ i ].split( "=" );
12 | 	if ( current[ 0 ] === "jquery" ) {
13 | 		version = current[ 1 ];
14 | 		break;
15 | 	}
16 | }
17 | 
18 | if (version != "git") {
19 | 	file = "../lib/jquery-" + version + ".js";
20 | }
21 | 
22 | 
23 | document.write( "" );
24 | 
25 | })();
26 | 


--------------------------------------------------------------------------------
/vendors/morris/morris.css:
--------------------------------------------------------------------------------
1 | .morris-hover{position:absolute;z-index:1000;}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#666;background:rgba(255, 255, 255, 0.8);border:solid 2px rgba(230, 230, 230, 0.8);font-family:sans-serif;font-size:12px;text-align:center;}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0;}
2 | .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0;}
3 | 


--------------------------------------------------------------------------------
/vendors/tinymce/js/tinymce/langs/readme.md:
--------------------------------------------------------------------------------
1 | This is where language files should be placed.
2 | 
3 | Please DO NOT translate these directly use this service: https://www.transifex.com/projects/p/tinymce/
4 | 


--------------------------------------------------------------------------------
/vendors/tinymce/js/tinymce/plugins/anchor/plugin.min.js:
--------------------------------------------------------------------------------
1 | tinymce.PluginManager.add("anchor",function(e){function t(){var t=e.selection.getNode();e.windowManager.open({title:"Anchor",body:{type:"textbox",name:"name",size:40,label:"Name",value:t.name||t.id},onsubmit:function(t){e.execCommand("mceInsertContent",!1,e.dom.createHTML("a",{id:t.data.name}))}})}e.addButton("anchor",{icon:"anchor",tooltip:"Anchor",onclick:t,stateSelector:"a:not([href])"}),e.addMenuItem("anchor",{icon:"anchor",text:"Anchor",context:"insert",onclick:t})});


--------------------------------------------------------------------------------
/vendors/tinymce/js/tinymce/plugins/code/plugin.min.js:
--------------------------------------------------------------------------------
1 | tinymce.PluginManager.add("code",function(e){function t(){e.windowManager.open({title:"Source code",body:{type:"textbox",name:"code",multiline:!0,minWidth:e.getParam("code_dialog_width",600),minHeight:e.getParam("code_dialog_height",500),value:e.getContent({source_view:!0}),spellcheck:!1},onSubmit:function(t){e.undoManager.transact(function(){e.setContent(t.data.code)}),e.nodeChanged()}})}e.addCommand("mceCodeEditor",t),e.addButton("code",{icon:"code",tooltip:"Source code",onclick:t}),e.addMenuItem("code",{icon:"code",text:"Source code",context:"tools",onclick:t})});


--------------------------------------------------------------------------------
/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-cool.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-cool.gif


--------------------------------------------------------------------------------
/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-cry.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-cry.gif


--------------------------------------------------------------------------------
/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-embarassed.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-embarassed.gif


--------------------------------------------------------------------------------
/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-foot-in-mouth.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-foot-in-mouth.gif


--------------------------------------------------------------------------------
/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-frown.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-frown.gif


--------------------------------------------------------------------------------
/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-innocent.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-innocent.gif


--------------------------------------------------------------------------------
/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-kiss.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-kiss.gif


--------------------------------------------------------------------------------
/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-laughing.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-laughing.gif


--------------------------------------------------------------------------------
/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-money-mouth.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-money-mouth.gif


--------------------------------------------------------------------------------
/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-sealed.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-sealed.gif


--------------------------------------------------------------------------------
/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-smile.gif


--------------------------------------------------------------------------------
/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-surprised.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-surprised.gif


--------------------------------------------------------------------------------
/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-tongue-out.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-tongue-out.gif


--------------------------------------------------------------------------------
/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-undecided.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-undecided.gif


--------------------------------------------------------------------------------
/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-wink.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-wink.gif


--------------------------------------------------------------------------------
/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-yell.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-yell.gif


--------------------------------------------------------------------------------
/vendors/tinymce/js/tinymce/plugins/example/plugin.min.js:
--------------------------------------------------------------------------------
1 | tinymce.PluginManager.add("example",function(e){e.addButton("example",{text:"My button",icon:!1,onclick:function(){e.windowManager.open({title:"Example plugin",body:[{type:"textbox",name:"title",label:"Title"}],onsubmit:function(t){e.insertContent("Title: "+t.data.title)}})}}),e.addMenuItem("example",{text:"Example plugin",context:"tools",onclick:function(){e.windowManager.open({title:"TinyMCE site",url:"http://www.tinymce.com",width:800,height:600,buttons:[{text:"Close",onclick:"close"}]})}})});


--------------------------------------------------------------------------------
/vendors/tinymce/js/tinymce/plugins/example_dependency/plugin.min.js:
--------------------------------------------------------------------------------
1 | tinymce.PluginManager.add("example_dependency",function(){},["example"]);


--------------------------------------------------------------------------------
/vendors/tinymce/js/tinymce/plugins/hr/plugin.min.js:
--------------------------------------------------------------------------------
1 | tinymce.PluginManager.add("hr",function(e){e.addCommand("InsertHorizontalRule",function(){e.execCommand("mceInsertContent",!1,"
")}),e.addButton("hr",{icon:"hr",tooltip:"Horizontal line",cmd:"InsertHorizontalRule"}),e.addMenuItem("hr",{icon:"hr",text:"Horizontal line",cmd:"InsertHorizontalRule",context:"insert"})}); -------------------------------------------------------------------------------- /vendors/tinymce/js/tinymce/plugins/media/moxieplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/plugins/media/moxieplayer.swf -------------------------------------------------------------------------------- /vendors/tinymce/js/tinymce/plugins/nonbreaking/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("nonbreaking",function(e){var t=e.getParam("nonbreaking_force_tab");if(e.addCommand("mceNonBreaking",function(){e.insertContent(e.plugins.visualchars&&e.plugins.visualchars.state?' ':" ")}),e.addButton("nonbreaking",{title:"Insert nonbreaking space",cmd:"mceNonBreaking"}),e.addMenuItem("nonbreaking",{text:"Nonbreaking space",cmd:"mceNonBreaking",context:"insert"}),t){var n=+t>1?+t:3;e.on("keydown",function(t){if(9==t.keyCode){if(t.shiftKey)return;t.preventDefault();for(var i=0;n>i;i++)e.execCommand("mceNonBreaking")}})}}); -------------------------------------------------------------------------------- /vendors/tinymce/js/tinymce/plugins/print/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("print",function(t){t.addCommand("mcePrint",function(){t.getWin().print()}),t.addButton("print",{title:"Print",cmd:"mcePrint"}),t.addShortcut("Ctrl+P","","mcePrint"),t.addMenuItem("print",{text:"Print",cmd:"mcePrint",icon:"print",shortcut:"Ctrl+P",context:"file"})}); -------------------------------------------------------------------------------- /vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon-small.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon-small.eot -------------------------------------------------------------------------------- /vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon-small.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon-small.ttf -------------------------------------------------------------------------------- /vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon-small.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon-small.woff -------------------------------------------------------------------------------- /vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon.eot -------------------------------------------------------------------------------- /vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon.ttf -------------------------------------------------------------------------------- /vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon.woff -------------------------------------------------------------------------------- /vendors/tinymce/js/tinymce/skins/lightgray/fonts/readme.md: -------------------------------------------------------------------------------- 1 | Icons are generated and provided by the http://icomoon.io service. 2 | -------------------------------------------------------------------------------- /vendors/tinymce/js/tinymce/skins/lightgray/img/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/skins/lightgray/img/anchor.gif -------------------------------------------------------------------------------- /vendors/tinymce/js/tinymce/skins/lightgray/img/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/skins/lightgray/img/loader.gif -------------------------------------------------------------------------------- /vendors/tinymce/js/tinymce/skins/lightgray/img/object.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/skins/lightgray/img/object.gif -------------------------------------------------------------------------------- /vendors/tinymce/js/tinymce/skins/lightgray/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/skins/lightgray/img/trans.gif -------------------------------------------------------------------------------- /vendors/tinymce/js/tinymce/skins/lightgray/img/wline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ekojs/Ujian-Online/8728a76750a468356b3399eba56b4aacb091cb81/vendors/tinymce/js/tinymce/skins/lightgray/img/wline.gif --------------------------------------------------------------------------------