├── files ├── keep └── .gitignore ├── assets └── .gitignore ├── protected ├── commands │ └── keep ├── data │ └── .keep ├── views │ ├── berita │ │ ├── NewFile │ │ ├── _view.php │ │ ├── view.php │ │ └── index.php │ ├── admin │ │ ├── programKkn │ │ │ └── _form.php │ │ ├── statistik │ │ │ └── admin.php │ │ ├── default │ │ │ └── index.php │ │ ├── asuransi │ │ │ └── bayar.php │ │ ├── user │ │ │ ├── create.php │ │ │ └── update.php │ │ ├── berita │ │ │ ├── create.php │ │ │ └── update.php │ │ ├── jurusan │ │ │ ├── create.php │ │ │ └── update.php │ │ ├── jenjang │ │ │ ├── create.php │ │ │ └── update.php │ │ ├── setting │ │ │ ├── create.php │ │ │ ├── update.php │ │ │ └── index.php │ │ ├── dosen │ │ │ └── create.php │ │ ├── fakultas │ │ │ ├── create.php │ │ │ ├── update.php │ │ │ └── index.php │ │ ├── kabupaten │ │ │ ├── create.php │ │ │ ├── update.php │ │ │ └── index.php │ │ ├── kecamatan │ │ │ ├── create.php │ │ │ └── update.php │ │ ├── mahasiswa │ │ │ ├── create.php │ │ │ ├── bayarAsuransi.php │ │ │ └── update.php │ │ ├── kelompok │ │ │ ├── create.php │ │ │ └── update.php │ │ └── programStudi │ │ │ └── create.php │ ├── register │ │ ├── token.php │ │ ├── under.php │ │ └── success.php │ ├── site │ │ ├── maintance.php │ │ ├── _view.php │ │ ├── error.php │ │ └── index.php │ ├── home │ │ ├── index.php │ │ ├── _view.php │ │ └── view.php │ ├── layouts │ │ └── column1.php │ ├── mahasiswa │ │ ├── mahasiswa │ │ │ ├── token.php │ │ │ └── registerSuccess.php │ │ └── kelompok │ │ │ └── _view.php │ └── profile │ │ ├── index.php │ │ └── update.php ├── .htaccess ├── runtime │ ├── .gitignore │ └── state.bin ├── tests │ ├── fixtures │ │ ├── berita.php │ │ ├── dosen.php │ │ ├── kampus.php │ │ ├── user.php │ │ ├── fakultas.php │ │ ├── jenjang.php │ │ ├── jurusan.php │ │ ├── kabupaten.php │ │ ├── kecamatan.php │ │ ├── kelompok.php │ │ ├── mahasiswa.php │ │ ├── prioritas.php │ │ ├── program_kkn.php │ │ ├── setting.php │ │ ├── program_studi.php │ │ └── program_kkn_lampiran.php │ ├── yaml │ │ ├── setting.yml │ │ ├── program_studi.yml │ │ ├── program_kkn_lampiran.yml │ │ ├── prioritas.yml │ │ ├── jenjang.yml │ │ └── dosen.yml │ ├── unit │ │ ├── UserTest.php │ │ ├── BeritaTest.php │ │ ├── JenjangTest.php │ │ ├── FakultasTest.php │ │ ├── KabupatenTest.php │ │ ├── KecamatanTest.php │ │ ├── PrioritasTest.php │ │ ├── ProgramKknTest.php │ │ ├── ProgramStudiTest.php │ │ ├── JurusanTest.php │ │ └── KelompokTest.php │ ├── bootstrap.php │ └── phpunit.xml ├── extensions │ ├── giix │ │ ├── generators │ │ │ ├── module │ │ │ │ ├── templates │ │ │ │ │ └── default │ │ │ │ │ │ ├── models │ │ │ │ │ │ └── .yii │ │ │ │ │ │ ├── components │ │ │ │ │ │ └── .yii │ │ │ │ │ │ ├── messages │ │ │ │ │ │ └── .yii │ │ │ │ │ │ ├── views │ │ │ │ │ │ ├── layouts │ │ │ │ │ │ │ └── .yii │ │ │ │ │ │ └── default │ │ │ │ │ │ │ └── index.php │ │ │ │ │ │ └── controllers │ │ │ │ │ │ └── DefaultController.php │ │ │ │ └── ModuleGenerator.php │ │ │ ├── crud │ │ │ │ └── CrudGenerator.php │ │ │ ├── form │ │ │ │ └── FormGenerator.php │ │ │ ├── model │ │ │ │ └── ModelGenerator.php │ │ │ └── controller │ │ │ │ └── ControllerGenerator.php │ │ ├── assets │ │ │ ├── css │ │ │ │ └── bg.gif │ │ │ ├── images │ │ │ │ └── logo.png │ │ │ └── js │ │ │ │ └── fancybox │ │ │ │ ├── blank.gif │ │ │ │ ├── fancybox-x.png │ │ │ │ ├── fancybox-y.png │ │ │ │ ├── fancybox.png │ │ │ │ ├── fancy_close.png │ │ │ │ ├── fancy_loading.png │ │ │ │ ├── fancy_nav_left.png │ │ │ │ ├── fancy_nav_right.png │ │ │ │ ├── fancy_shadow_e.png │ │ │ │ ├── fancy_shadow_n.png │ │ │ │ ├── fancy_shadow_ne.png │ │ │ │ ├── fancy_shadow_nw.png │ │ │ │ ├── fancy_shadow_s.png │ │ │ │ ├── fancy_shadow_se.png │ │ │ │ ├── fancy_shadow_sw.png │ │ │ │ ├── fancy_shadow_w.png │ │ │ │ ├── fancy_title_left.png │ │ │ │ ├── fancy_title_main.png │ │ │ │ ├── fancy_title_over.png │ │ │ │ └── fancy_title_right.png │ │ ├── views │ │ │ ├── default │ │ │ │ ├── error.php │ │ │ │ ├── login.php │ │ │ │ └── index.php │ │ │ ├── layouts │ │ │ │ └── column1.php │ │ │ └── common │ │ │ │ ├── diff.php │ │ │ │ └── code.php │ │ └── components │ │ │ ├── Pear │ │ │ └── Text │ │ │ │ └── Diff │ │ │ │ └── Engine │ │ │ │ └── string.php │ │ │ ├── TextDiff.php │ │ │ └── UserIdentity.php │ └── uploadify │ │ └── uploadify │ │ └── uploadify │ │ ├── cancel.png │ │ ├── uploadify.fla │ │ ├── uploadify.swf │ │ ├── expressInstall.swf │ │ ├── uploadify.allglyphs.swf │ │ └── Uploadify v2.1.0 Manual.pdf ├── components │ ├── widgets │ │ ├── GMapWidget.php │ │ └── grid │ │ │ └── NumberColumn.php │ ├── SideMenu.php │ └── HeadMenu.php ├── yiic ├── messages │ └── id │ │ └── zii.php ├── gii │ ├── crud │ │ └── CrudGenerator.php │ └── model │ │ └── ModelGenerator.php ├── yiic.php ├── config │ ├── database.php │ ├── console.php │ ├── test.php │ └── dev.php ├── controllers │ └── admin │ │ └── DefaultController.php ├── migrations │ ├── m110321_011911_user_id_in_mahasiswa.php │ ├── m110329_084710_del_migration_column.php │ ├── m110330_014123_add_registered_again.php │ ├── m110318_015323_add_level_column_to_prioritas.php │ ├── m110329_101701_add_size_to_lampiran.php │ ├── m110417_233606_add_keterangan_to_kelompok.php │ ├── m110329_100746_add_mimetype_to_lampiran.php │ ├── m110415_015156_drop_column_registered_from_mahasiswa.php │ ├── m110606_030434_add_ttl_to_mahasiswa.php │ ├── m110319_082220_add_registred_to_mahasiswa.php │ ├── m110330_015538_add_lunas_asuransi.php │ ├── m110330_015314_create_table_setting.php │ ├── m110329_094919_add_created_modifid_to_lampiran.php │ ├── m110412_041125_add_column_pembimbingId_into_kelompok.php │ ├── m110325_075416_add_column_kampus_to_jurusan_and_prodi.php │ ├── m110412_070925_add_program_studi_into_mahasiswa.php │ ├── m110417_232704_add_max_column_to_kelompok.php │ └── m110325_091132_delete_email_column.php └── yiic.bat ├── framework ├── cli │ ├── runtime │ │ └── .yii │ └── views │ │ ├── webapp │ │ ├── assets │ │ │ └── .yii │ │ ├── images │ │ │ └── .yii │ │ ├── protected │ │ │ ├── extensions │ │ │ │ └── .yii │ │ │ ├── messages │ │ │ │ └── .yii │ │ │ ├── migrations │ │ │ │ └── .yii │ │ │ ├── runtime │ │ │ │ └── .yii │ │ │ ├── tests │ │ │ │ ├── unit │ │ │ │ │ └── .yii │ │ │ │ ├── fixtures │ │ │ │ │ └── .yii │ │ │ │ ├── report │ │ │ │ │ └── .yii │ │ │ │ ├── bootstrap.php │ │ │ │ └── phpunit.xml │ │ │ ├── commands │ │ │ │ └── shell │ │ │ │ │ └── .yii │ │ │ ├── .htaccess │ │ │ ├── yiic │ │ │ ├── data │ │ │ │ └── testdrive.db │ │ │ ├── yiic.php │ │ │ ├── views │ │ │ │ ├── layouts │ │ │ │ │ ├── column1.php │ │ │ │ │ └── column2.php │ │ │ │ └── site │ │ │ │ │ ├── error.php │ │ │ │ │ └── pages │ │ │ │ │ └── about.php │ │ │ ├── config │ │ │ │ └── test.php │ │ │ └── yiic.bat │ │ ├── themes │ │ │ └── classic │ │ │ │ └── views │ │ │ │ ├── site │ │ │ │ └── .yii │ │ │ │ ├── layouts │ │ │ │ └── .yii │ │ │ │ ├── system │ │ │ │ └── .yii │ │ │ │ └── .htaccess │ │ ├── css │ │ │ └── bg.gif │ │ ├── index.php │ │ └── index-test.php │ │ └── shell │ │ ├── module │ │ ├── components │ │ │ └── .yii │ │ ├── messages │ │ │ └── .yii │ │ ├── models │ │ │ └── .yii │ │ ├── views │ │ │ ├── layouts │ │ │ │ └── .yii │ │ │ └── default │ │ │ │ └── index.php │ │ └── controllers │ │ │ └── DefaultController.php │ │ └── model │ │ └── test.php ├── .htaccess ├── gii │ ├── generators │ │ ├── module │ │ │ ├── templates │ │ │ │ └── default │ │ │ │ │ ├── messages │ │ │ │ │ └── .yii │ │ │ │ │ ├── models │ │ │ │ │ └── .yii │ │ │ │ │ ├── components │ │ │ │ │ └── .yii │ │ │ │ │ ├── views │ │ │ │ │ ├── layouts │ │ │ │ │ │ └── .yii │ │ │ │ │ └── default │ │ │ │ │ │ └── index.php │ │ │ │ │ └── controllers │ │ │ │ │ └── DefaultController.php │ │ │ └── ModuleGenerator.php │ │ ├── crud │ │ │ └── CrudGenerator.php │ │ ├── form │ │ │ └── FormGenerator.php │ │ ├── model │ │ │ └── ModelGenerator.php │ │ └── controller │ │ │ └── ControllerGenerator.php │ ├── assets │ │ ├── images │ │ │ └── logo.png │ │ └── js │ │ │ └── fancybox │ │ │ ├── blank.gif │ │ │ ├── fancybox.png │ │ │ ├── fancy_close.png │ │ │ ├── fancybox-x.png │ │ │ ├── fancybox-y.png │ │ │ ├── fancy_loading.png │ │ │ ├── fancy_nav_left.png │ │ │ ├── fancy_shadow_e.png │ │ │ ├── fancy_shadow_n.png │ │ │ ├── fancy_shadow_s.png │ │ │ ├── fancy_shadow_w.png │ │ │ ├── fancy_nav_right.png │ │ │ ├── fancy_shadow_ne.png │ │ │ ├── fancy_shadow_nw.png │ │ │ ├── fancy_shadow_se.png │ │ │ ├── fancy_shadow_sw.png │ │ │ ├── fancy_title_left.png │ │ │ ├── fancy_title_main.png │ │ │ ├── fancy_title_over.png │ │ │ └── fancy_title_right.png │ ├── views │ │ ├── default │ │ │ ├── error.php │ │ │ ├── login.php │ │ │ └── index.php │ │ ├── layouts │ │ │ └── column1.php │ │ └── common │ │ │ ├── diff.php │ │ │ └── code.php │ └── components │ │ ├── Pear │ │ └── Text │ │ │ └── Diff │ │ │ └── Engine │ │ │ └── string.php │ │ ├── UserIdentity.php │ │ └── TextDiff.php ├── yii-powered.png ├── views │ ├── it │ │ ├── error400.php │ │ ├── profile-callstack-firebug.php │ │ └── log-firebug.php │ ├── ru │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── he │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── ja │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── no │ │ ├── profile-callstack-firebug.php │ │ └── log-firebug.php │ ├── zh_cn │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── el │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── es │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── id │ │ ├── profile-callstack-firebug.php │ │ └── log-firebug.php │ ├── profile-callstack-firebug.php │ ├── ro │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── sk │ │ ├── profile-callstack-firebug.php │ │ └── log-firebug.php │ ├── vi │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── lt │ │ ├── profile-callstack-firebug.php │ │ └── log-firebug.php │ ├── zh_tw │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── pl │ │ ├── profile-callstack-firebug.php │ │ └── log-firebug.php │ ├── pt │ │ ├── profile-callstack-firebug.php │ │ └── log-firebug.php │ ├── sv │ │ ├── profile-callstack-firebug.php │ │ └── log-firebug.php │ ├── bg │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── hr │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── nl │ │ ├── profile-callstack-firebug.php │ │ └── log-firebug.php │ ├── fr │ │ ├── profile-callstack-firebug.php │ │ └── log-firebug.php │ ├── uk │ │ ├── profile-callstack-firebug.php │ │ └── log-firebug.php │ ├── lv │ │ ├── profile-callstack-firebug.php │ │ └── log-firebug.php │ ├── de │ │ ├── profile-callstack-firebug.php │ │ └── log-firebug.php │ ├── log-firebug.php │ └── profile-summary-firebug.php ├── web │ ├── js │ │ └── source │ │ │ ├── rating │ │ │ ├── star.gif │ │ │ └── delete.gif │ │ │ ├── jquery.multifile.js │ │ │ ├── treeview │ │ │ └── images │ │ │ │ ├── file.gif │ │ │ │ ├── minus.gif │ │ │ │ ├── plus.gif │ │ │ │ ├── folder.gif │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── treeview-red.gif │ │ │ │ ├── folder-closed.gif │ │ │ │ ├── treeview-black.gif │ │ │ │ ├── treeview-gray.gif │ │ │ │ ├── treeview-default.gif │ │ │ │ ├── treeview-red-line.gif │ │ │ │ ├── treeview-black-line.gif │ │ │ │ ├── treeview-famfamfam.gif │ │ │ │ ├── treeview-gray-line.gif │ │ │ │ ├── treeview-default-line.gif │ │ │ │ └── treeview-famfamfam-line.gif │ │ │ ├── autocomplete │ │ │ └── indicator.gif │ │ │ └── jui │ │ │ └── css │ │ │ └── base │ │ │ ├── images │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── jquery.ui.all.css │ │ │ ├── jquery.ui.selectable.css │ │ │ └── jquery.ui.progressbar.css │ └── widgets │ │ └── captcha │ │ └── Duality.ttf ├── zii │ └── widgets │ │ └── assets │ │ ├── gridview │ │ ├── bg.gif │ │ ├── up.gif │ │ ├── down.gif │ │ ├── view.png │ │ ├── delete.png │ │ ├── loading.gif │ │ └── update.png │ │ └── listview │ │ ├── up.gif │ │ ├── down.gif │ │ └── loading.gif ├── vendors │ ├── htmlpurifier │ │ └── standalone │ │ │ └── HTMLPurifier │ │ │ ├── ConfigSchema │ │ │ ├── schema │ │ │ │ ├── info.ini │ │ │ │ ├── Attr.IDBlacklist.txt │ │ │ │ ├── HTML.TidyAdd.txt │ │ │ │ ├── HTML.TidyRemove.txt │ │ │ │ ├── CSS.Proprietary.txt │ │ │ │ ├── Test.ForceNoIconv.txt │ │ │ │ ├── Core.EscapeInvalidTags.txt │ │ │ │ ├── Attr.AllowedClasses.txt │ │ │ │ ├── CSS.DefinitionRev.txt │ │ │ │ ├── URI.DefinitionRev.txt │ │ │ │ ├── HTML.Strict.txt │ │ │ │ ├── CSS.AllowImportant.txt │ │ │ │ ├── HTML.Trusted.txt │ │ │ │ ├── HTML.CustomDoctype.txt │ │ │ │ ├── HTML.XHTML.txt │ │ │ │ ├── Attr.ForbiddenClasses.txt │ │ │ │ ├── URI.DefaultScheme.txt │ │ │ │ ├── Attr.AllowedRev.txt │ │ │ │ ├── URI.DefinitionID.txt │ │ │ │ ├── Output.FlashCompat.txt │ │ │ │ ├── Attr.AllowedRel.txt │ │ │ │ ├── AutoFormat.Linkify.txt │ │ │ │ ├── Core.NormalizeNewlines.txt │ │ │ │ ├── Output.CommentScriptContents.txt │ │ │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ │ │ ├── Core.Language.txt │ │ │ │ ├── HTML.FlashAllowFullScreen.txt │ │ │ │ ├── URI.Disable.txt │ │ │ │ ├── Attr.DefaultTextDir.txt │ │ │ │ ├── Core.RemoveScriptContents.txt │ │ │ │ ├── URI.HostBlacklist.txt │ │ │ │ ├── Filter.Custom.txt │ │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ │ ├── AutoFormat.Custom.txt │ │ │ │ ├── Attr.DefaultInvalidImage.txt │ │ │ │ ├── HTML.Parent.txt │ │ │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt │ │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ │ ├── URI.OverrideAllowedSchemes.txt │ │ │ │ ├── HTML.Proprietary.txt │ │ │ │ ├── Cache.SerializerPath.txt │ │ │ │ ├── Core.RemoveInvalidImg.txt │ │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ │ │ ├── Output.Newline.txt │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ │ ├── Core.EscapeInvalidChildren.txt │ │ │ │ ├── Core.RemoveProcessingInstructions.txt │ │ │ │ ├── URI.MakeAbsolute.txt │ │ │ │ ├── Core.CollectErrors.txt │ │ │ │ ├── URI.DisableExternal.txt │ │ │ │ ├── HTML.SafeObject.txt │ │ │ │ ├── URI.DisableResources.txt │ │ │ │ ├── CSS.AllowTricky.txt │ │ │ │ ├── Core.ConvertDocumentToFragment.txt │ │ │ │ ├── CSS.ForbiddenProperties.txt │ │ │ │ ├── HTML.Doctype.txt │ │ │ │ ├── Attr.IDPrefix.txt │ │ │ │ ├── HTML.Attr.Name.UseCDATA.txt │ │ │ │ ├── Attr.DefaultImageAlt.txt │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt │ │ │ │ ├── HTML.SafeEmbed.txt │ │ │ │ ├── URI.AllowedSchemes.txt │ │ │ │ ├── HTML.MaxImgLength.txt │ │ │ │ ├── Filter.ExtractStyleBlocks.Escaping.txt │ │ │ │ ├── Filter.YouTube.txt │ │ │ │ ├── Output.SortAttr.txt │ │ │ │ ├── HTML.DefinitionRev.txt │ │ │ │ └── URI.DisableExternalResources.txt │ │ │ └── Exception.php │ │ │ ├── Printer │ │ │ ├── ConfigForm.js │ │ │ └── ConfigForm.css │ │ │ └── Language │ │ │ ├── classes │ │ │ └── en-x-test.php │ │ │ └── messages │ │ │ ├── en-x-test.php │ │ │ └── en-x-testmini.php │ └── TextHighlighter │ │ └── Text │ │ └── TODO ├── i18n │ └── data │ │ └── README.txt ├── yiic ├── base │ └── CException.php └── messages │ └── config.php ├── info.php ├── themes └── classic │ └── views │ └── .htaccess ├── images ├── key.png ├── Thumbs.db ├── logo.gif ├── print.gif ├── banner.jpg ├── banner2.jpg ├── icons │ ├── im.png │ ├── doc.png │ ├── feed.png │ ├── key.png │ ├── pdf.png │ ├── tick.png │ ├── xls.png │ ├── cross.png │ ├── email.png │ ├── print.gif │ ├── visited.png │ ├── external.png │ └── information.png ├── logoupi.png ├── slide │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ └── Thumbs.db ├── banner-kbl.jpg ├── logo-small.gif ├── slideshow1.jpg ├── banner-paud.jpg ├── yii-powered.png └── banner-posdaya.jpg ├── .gitignore ├── js ├── exporting.js └── highcharts.js ├── css ├── icons │ ├── Thumbs.db │ ├── cross.png │ ├── key.png │ └── tick.png ├── images │ ├── bg.jpg │ ├── down.gif │ ├── grid.png │ ├── up.gif │ ├── view.png │ ├── Thumbs.db │ ├── delete.png │ ├── update.png │ ├── bg_header.gif │ ├── bg_header.png │ ├── bg_main.gif │ ├── login-bg.png │ ├── main_bg.jpg │ ├── tabel_bg.jpg │ ├── add-button.png │ ├── paging_bg2.png │ ├── register-bg.png │ └── add-button-hover.png └── print-preview.css ├── README ├── .htaccess ├── index-dev.php ├── index.php └── index-test.php /files/keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /files/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /protected/commands/keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protected/data/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/runtime/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /info.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /protected/views/berita/NewFile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/assets/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/images/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protected/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /protected/runtime/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /framework/cli/views/shell/module/components/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/shell/module/messages/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/shell/module/models/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protected/views/admin/programKkn/_form.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /framework/cli/views/shell/module/views/layouts/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/extensions/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/messages/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/migrations/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/runtime/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/tests/unit/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/classic/views/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/commands/shell/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/tests/fixtures/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/tests/report/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/themes/classic/views/site/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protected/tests/fixtures/berita.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/themes/classic/views/layouts/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/themes/classic/views/system/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/gii/generators/module/templates/default/messages/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/gii/generators/module/templates/default/models/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protected/tests/fixtures/fakultas.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Admin'), 4 | ); 5 | ?> 6 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/yiic: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | Error 2 | 3 |
4 | 5 |
-------------------------------------------------------------------------------- /framework/web/js/source/treeview/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/kkn/master/framework/web/js/source/treeview/images/ajax-loader.gif -------------------------------------------------------------------------------- /framework/web/js/source/treeview/images/treeview-red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/kkn/master/framework/web/js/source/treeview/images/treeview-red.gif -------------------------------------------------------------------------------- /framework/gii/components/Pear/Text/Diff/Engine/string.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/kkn/master/framework/gii/components/Pear/Text/Diff/Engine/string.php -------------------------------------------------------------------------------- /framework/web/js/source/treeview/images/folder-closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/kkn/master/framework/web/js/source/treeview/images/folder-closed.gif -------------------------------------------------------------------------------- /framework/web/js/source/treeview/images/treeview-black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/kkn/master/framework/web/js/source/treeview/images/treeview-black.gif -------------------------------------------------------------------------------- /framework/web/js/source/treeview/images/treeview-gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/kkn/master/framework/web/js/source/treeview/images/treeview-gray.gif -------------------------------------------------------------------------------- /protected/extensions/giix/assets/js/fancybox/fancybox-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/kkn/master/protected/extensions/giix/assets/js/fancybox/fancybox-x.png -------------------------------------------------------------------------------- /protected/extensions/giix/assets/js/fancybox/fancybox-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/kkn/master/protected/extensions/giix/assets/js/fancybox/fancybox-y.png -------------------------------------------------------------------------------- /protected/extensions/giix/assets/js/fancybox/fancybox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/kkn/master/protected/extensions/giix/assets/js/fancybox/fancybox.png -------------------------------------------------------------------------------- /framework/web/js/source/treeview/images/treeview-default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/kkn/master/framework/web/js/source/treeview/images/treeview-default.gif -------------------------------------------------------------------------------- /framework/web/js/source/treeview/images/treeview-red-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/kkn/master/framework/web/js/source/treeview/images/treeview-red-line.gif -------------------------------------------------------------------------------- /protected/extensions/giix/assets/js/fancybox/fancy_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/kkn/master/protected/extensions/giix/assets/js/fancybox/fancy_close.png -------------------------------------------------------------------------------- /protected/extensions/giix/views/default/error.php: -------------------------------------------------------------------------------- 1 |

Error

2 | 3 |
4 | 5 |
-------------------------------------------------------------------------------- /protected/extensions/uploadify/uploadify/uploadify/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/kkn/master/protected/extensions/uploadify/uploadify/uploadify/cancel.png -------------------------------------------------------------------------------- /protected/messages/id/zii.php: -------------------------------------------------------------------------------- 1 | 'Menampilkan {start}-{dari} {count} data', 4 | ); 5 | -------------------------------------------------------------------------------- /framework/gii/generators/crud/CrudGenerator.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Register', 4 | );?> 5 | 6 |
7 | user->getFlash('message'); ?> 8 |
9 | -------------------------------------------------------------------------------- /framework/web/js/source/jui/css/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/kkn/master/framework/web/js/source/jui/css/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /protected/extensions/giix/generators/controller/ControllerGenerator.php: -------------------------------------------------------------------------------- 1 | render('index'); 8 | } 9 | } -------------------------------------------------------------------------------- /protected/yiic.php: -------------------------------------------------------------------------------- 1 | 'User', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /protected/tests/unit/BeritaTest.php: -------------------------------------------------------------------------------- 1 | 'Berita', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /protected/tests/unit/JenjangTest.php: -------------------------------------------------------------------------------- 1 | 'Jenjang', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklist.txt: -------------------------------------------------------------------------------- 1 | Attr.IDBlacklist 2 | TYPE: list 3 | DEFAULT: array() 4 | DESCRIPTION: Array of IDs not allowed in the document. 5 | --# vim: et sw=4 sts=4 6 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/Printer/ConfigForm.js: -------------------------------------------------------------------------------- 1 | function toggleWriteability(id_of_patient, checked) { 2 | document.getElementById(id_of_patient).disabled = checked; 3 | } 4 | 5 | // vim: et sw=4 sts=4 6 | -------------------------------------------------------------------------------- /protected/config/database.php: -------------------------------------------------------------------------------- 1 | 'mysql:host=localhost;dbname=namadatabase', 4 | 'emulatePrepare' => true, 5 | 'username' => 'root', 6 | 'password' => '', 7 | 'charset' => 'utf8', 8 | ); 9 | -------------------------------------------------------------------------------- /protected/tests/unit/FakultasTest.php: -------------------------------------------------------------------------------- 1 | 'Fakultas', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /protected/views/site/maintance.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Register', 4 | );?> 5 | 6 |
7 |

8 | Web KKN sedang Maintenance, silahkan buka beberapa saat lagi. 9 |

10 |
11 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/yiic.php: -------------------------------------------------------------------------------- 1 | 'Kabupaten', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /protected/tests/unit/KecamatanTest.php: -------------------------------------------------------------------------------- 1 | 'Kecamatan', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /protected/tests/unit/PrioritasTest.php: -------------------------------------------------------------------------------- 1 | 'Prioritas', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /protected/tests/yaml/prioritas.yml: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | --- 3 | # kkn_test.prioritas 4 | - 5 | id: 3 6 | programKknId: 2 7 | jurusanId: 1 8 | created: 2011-04-15 15:18:18 9 | modified: 0000-00-00 00:00:00 10 | level: 4 11 | ... 12 | -------------------------------------------------------------------------------- /protected/views/berita/_view.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

title), array('view', 'id'=>$data->id)); ?>

4 |

body))?>

5 | 6 |
7 | -------------------------------------------------------------------------------- /protected/views/home/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Berita', 4 | );?> 5 | widget('zii.widgets.CListView', array( 6 | 'dataProvider'=>$dataProvider, 7 | 'itemView'=>'_view', 8 | )); ?> 9 | 10 | -------------------------------------------------------------------------------- /protected/views/site/_view.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

title), array('view', 'id'=>$data->id)); ?>

4 |

body))?>

5 | 6 |
7 | -------------------------------------------------------------------------------- /framework/gii/generators/module/templates/default/controllers/DefaultController.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | class DefaultController extends Controller 4 | { 5 | public function actionIndex() 6 | { 7 | $this->render('index'); 8 | } 9 | } -------------------------------------------------------------------------------- /framework/gii/views/layouts/column1.php: -------------------------------------------------------------------------------- 1 | beginContent('gii.views.layouts.main'); ?> 2 |
3 |
4 | 5 |
6 |
7 | endContent(); ?> -------------------------------------------------------------------------------- /protected/tests/unit/ProgramKknTest.php: -------------------------------------------------------------------------------- 1 | 'ProgramKkn', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /protected/tests/unit/ProgramStudiTest.php: -------------------------------------------------------------------------------- 1 | 'ProgramStudi', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /protected/views/layouts/column1.php: -------------------------------------------------------------------------------- 1 | beginContent('//layouts/main'); ?> 2 |
3 |
4 | 5 |
6 |
7 | endContent(); ?> 8 | -------------------------------------------------------------------------------- /protected/extensions/giix/generators/module/templates/default/controllers/DefaultController.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | class DefaultController extends Controller 4 | { 5 | public function actionIndex() 6 | { 7 | $this->render('index'); 8 | } 9 | } -------------------------------------------------------------------------------- /protected/extensions/giix/views/layouts/column1.php: -------------------------------------------------------------------------------- 1 | beginContent('gii.views.layouts.main'); ?> 2 |
3 |
4 | 5 |
6 |
7 | endContent(); ?> -------------------------------------------------------------------------------- /protected/views/mahasiswa/mahasiswa/token.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Users'=>array('index'), 4 | 'Create', 5 | ); 6 | ?> 7 | 8 |
9 | user->getFlash('message'); ?> 10 |
11 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/views/layouts/column1.php: -------------------------------------------------------------------------------- 1 | beginContent('//layouts/main'); ?> 2 |
3 |
4 | 5 |
6 |
7 | endContent(); ?> -------------------------------------------------------------------------------- /protected/tests/unit/JurusanTest.php: -------------------------------------------------------------------------------- 1 | 'Jurusan', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /protected/views/berita/view.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Berita'=>array('/berita'), 4 | $berita->id, 5 | );?> 6 |

title), array('view', 'id'=>$berita->id)); ?>

7 |

body)?>

8 | -------------------------------------------------------------------------------- /protected/views/register/under.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Register', 4 | );?> 5 | 6 |
7 |

8 | Karena server UPI sedang Down, maka untuk sementara pendaftaran ditutup 9 | sampai server kembali pulih 10 |

11 |
12 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.TidyAdd.txt: -------------------------------------------------------------------------------- 1 | HTML.TidyAdd 2 | TYPE: lookup 3 | VERSION: 2.0.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | 7 | Fixes to add to the default set of Tidy fixes as per your level. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/Language/classes/en-x-test.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Profile', 4 | );?> 5 |

id . '/' . $this->action->id; ?>

6 | 7 |

8 | You may change the content of this page by modifying 9 | the file . 10 |

11 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.TidyRemove.txt: -------------------------------------------------------------------------------- 1 | HTML.TidyRemove 2 | TYPE: lookup 3 | VERSION: 2.0.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | 7 | Fixes to remove from the default set of Tidy fixes as per your level. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /protected/views/site/error.php: -------------------------------------------------------------------------------- 1 | pageTitle=Yii::app()->name . ' - Error'; 3 | $this->breadcrumbs=array( 4 | 'Error', 5 | ); 6 | ?> 7 | 8 |

Error

9 | 10 |
11 | 12 |
13 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/views/site/error.php: -------------------------------------------------------------------------------- 1 | pageTitle=Yii::app()->name . ' - Error'; 3 | $this->breadcrumbs=array( 4 | 'Error', 5 | ); 6 | ?> 7 | 8 |

Error

9 | 10 |
11 | 12 |
-------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/Exception.php: -------------------------------------------------------------------------------- 1 | render('index'); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/CSS.Proprietary.txt: -------------------------------------------------------------------------------- 1 | CSS.Proprietary 2 | TYPE: bool 3 | VERSION: 3.0.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | Whether or not to allow safe, proprietary CSS values. 9 |

10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /protected/views/home/_view.php: -------------------------------------------------------------------------------- 1 |

title), array('view', 'id'=>$data->id)); ?>

2 |
3 |

summary)?>

4 | $data->id))?> 5 |
6 | -------------------------------------------------------------------------------- /protected/views/register/success.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Register', 4 | );?> 5 |
6 | CHtml::link(Yii::t('app','Login disini'),array('site/login')), 8 | ))?> 9 |
10 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Test.ForceNoIconv.txt: -------------------------------------------------------------------------------- 1 | Test.ForceNoIconv 2 | TYPE: bool 3 | DEFAULT: false 4 | --DESCRIPTION-- 5 | When set to true, HTMLPurifier_Encoder will act as if iconv does not exist 6 | and use only pure PHP implementations. 7 | --# vim: et sw=4 sts=4 8 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/Language/messages/en-x-test.php: -------------------------------------------------------------------------------- 1 | 'HTML Purifier X' 9 | ); 10 | 11 | // vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidTags.txt: -------------------------------------------------------------------------------- 1 | Core.EscapeInvalidTags 2 | TYPE: bool 3 | DEFAULT: false 4 | --DESCRIPTION-- 5 | When true, invalid tags will be written back to the document as plain text. 6 | Otherwise, they are silently dropped. 7 | --# vim: et sw=4 sts=4 8 | -------------------------------------------------------------------------------- /protected/views/berita/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Berita', 4 | );?> 5 | widget('zii.widgets.CListView', array( 6 | 'dataProvider'=>$dataProvider, 7 | 'itemView'=>'_view', 8 | 'summaryText' => Yii::t('app','Menampilan {start}-{end} dari {count} data'), 9 | )); ?> 10 | 11 | -------------------------------------------------------------------------------- /protected/views/profile/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Profile'=>array('/profile'), 4 | 'Update', 5 | );?> 6 |

id . '/' . $this->action->id; ?>

7 | 8 |

9 | You may change the content of this page by modifying 10 | the file . 11 |

12 | -------------------------------------------------------------------------------- /protected/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 'Kelompok', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | 14 | public function testUser() 15 | { 16 | echo Kelompok::model()->user; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/views/site/pages/about.php: -------------------------------------------------------------------------------- 1 | pageTitle=Yii::app()->name . ' - About'; 3 | $this->breadcrumbs=array( 4 | 'About', 5 | ); 6 | ?> 7 |

About

8 | 9 |

This is a "static" page. You may change the content of this page 10 | by updating the file .

-------------------------------------------------------------------------------- /protected/views/admin/asuransi/bayar.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Asuransi'=>array('/asuransi'), 4 | 'Bayar', 5 | );?> 6 |

id . '/' . $this->action->id; ?>

7 | 8 |

9 | You may change the content of this page by modifying 10 | the file . 11 |

12 | -------------------------------------------------------------------------------- /protected/tests/yaml/jenjang.yml: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | --- 3 | # kkn_test.jenjang 4 | - 5 | id: 1 6 | nama: Strata 1 7 | kode: S1 8 | created: 2010-08-16 00:03:11 9 | modified: 2010-08-17 07:11:14 10 | - 11 | id: 2 12 | nama: Strata 2 13 | kode: S2 14 | created: 2010-08-16 00:03:28 15 | modified: 2010-08-17 07:11:24 16 | ... 17 | -------------------------------------------------------------------------------- /framework/gii/views/common/diff.php: -------------------------------------------------------------------------------- 1 | 2 |
Diff is not supported for this file type.
3 | 4 |
No changes.
5 | 6 |
7 |
8 |
9 | 10 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.AllowedClasses.txt: -------------------------------------------------------------------------------- 1 | Attr.AllowedClasses 2 | TYPE: lookup/null 3 | VERSION: 4.0.0 4 | DEFAULT: null 5 | --DESCRIPTION-- 6 | List of allowed class values in the class attribute. By default, this is null, 7 | which means all classes are allowed. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/CSS.DefinitionRev.txt: -------------------------------------------------------------------------------- 1 | CSS.DefinitionRev 2 | TYPE: int 3 | VERSION: 2.0.0 4 | DEFAULT: 1 5 | --DESCRIPTION-- 6 | 7 |

8 | Revision identifier for your custom definition. See 9 | %HTML.DefinitionRev for details. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.DefinitionRev.txt: -------------------------------------------------------------------------------- 1 | URI.DefinitionRev 2 | TYPE: int 3 | VERSION: 2.1.0 4 | DEFAULT: 1 5 | --DESCRIPTION-- 6 | 7 |

8 | Revision identifier for your custom definition. See 9 | %HTML.DefinitionRev for details. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /protected/tests/phpunit.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Strict.txt: -------------------------------------------------------------------------------- 1 | HTML.Strict 2 | TYPE: bool 3 | VERSION: 1.3.0 4 | DEFAULT: false 5 | DEPRECATED-VERSION: 1.7.0 6 | DEPRECATED-USE: HTML.Doctype 7 | --DESCRIPTION-- 8 | Determines whether or not to use Transitional (loose) or Strict rulesets. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /protected/extensions/giix/views/common/diff.php: -------------------------------------------------------------------------------- 1 | 2 |
Diff is not supported for this file type.
3 | 4 |
No changes.
5 | 6 |
7 |
8 |
9 | 10 | -------------------------------------------------------------------------------- /protected/migrations/m110321_011911_user_id_in_mahasiswa.php: -------------------------------------------------------------------------------- 1 | addColumn('mahasiswa','userId','integer'); 8 | } 9 | 10 | public function safeDown() 11 | { 12 | $this->dropColumn('mahasiswa','userId'); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | dropColumn('mahasiswa','registered'); 8 | } 9 | 10 | public function safeDown() 11 | { 12 | $this->addColumn('mahasiswa','registered','boolean'); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /protected/migrations/m110330_014123_add_registered_again.php: -------------------------------------------------------------------------------- 1 | addColumn('mahasiswa','registered','boolean'); 8 | } 9 | 10 | public function safeDown() 11 | { 12 | $this->dropColumn('mahasiswa','registered'); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /protected/migrations/m110318_015323_add_level_column_to_prioritas.php: -------------------------------------------------------------------------------- 1 | addColumn('prioritas','level','integer'); 8 | } 9 | 10 | public function safeDown() 11 | { 12 | $this->dropColumn('prioritas','level'); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.CustomDoctype.txt: -------------------------------------------------------------------------------- 1 | HTML.CustomDoctype 2 | TYPE: string/null 3 | VERSION: 2.0.1 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 | A custom doctype for power-users who defined there own document 8 | type. This directive only applies when %HTML.Doctype is blank. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /protected/migrations/m110329_101701_add_size_to_lampiran.php: -------------------------------------------------------------------------------- 1 | addColumn('program_kkn_lampiran','size','double'); 8 | } 9 | 10 | public function safeDown() 11 | { 12 | $this->dropColumn('program_kkn_lampiran','size'); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /protected/migrations/m110417_233606_add_keterangan_to_kelompok.php: -------------------------------------------------------------------------------- 1 | addColumn('kelompok','keterangan','text'); 9 | } 10 | 11 | public function safeDown() 12 | { 13 | $this->dropColumn('kelompok','keterangan'); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /protected/views/admin/user/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Admin') => array('/admin/default/index'), 4 | Yii::t('app','User') => array('/admin/user/index'), 5 | Yii::t('app','Tambah'), 6 | ); 7 | ?> 8 | 9 |

10 | 11 | renderPartial('_form', array('user'=>$user)); ?> 12 | -------------------------------------------------------------------------------- /protected/views/home/view.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Berita'=>array('/berita'), 4 | $berita->id, 5 | );?> 6 | 7 |
8 |

title), array('view', 'id'=>$berita->id)); ?>

9 | 10 |
11 |

body)?>

12 |
13 |
14 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.XHTML.txt: -------------------------------------------------------------------------------- 1 | HTML.XHTML 2 | TYPE: bool 3 | DEFAULT: true 4 | VERSION: 1.1.0 5 | DEPRECATED-VERSION: 1.7.0 6 | DEPRECATED-USE: HTML.Doctype 7 | --DESCRIPTION-- 8 | Determines whether or not output is XHTML 1.0 or HTML 4.01 flavor. 9 | --ALIASES-- 10 | Core.XHTML 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/Language/messages/en-x-testmini.php: -------------------------------------------------------------------------------- 1 | 'HTML Purifier XNone' 10 | ); 11 | 12 | // vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /protected/views/admin/berita/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Admin') => array('/admin/default/index'), 4 | Yii::t('app','Berita') => array('/admin/berita/index'), 5 | Yii::t('app','Tambah') 6 | ); 7 | ?> 8 |

9 | 10 | renderPartial('_form', array('berita'=>$berita)); ?> 11 | -------------------------------------------------------------------------------- /framework/web/js/source/jui/css/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI CSS Framework 1.8.11 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.base.min.css";@import "jquery.ui.theme.min.css"; -------------------------------------------------------------------------------- /protected/views/admin/jurusan/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Admin') => array('/admin/default/index'), 4 | Yii::t('app','Jurusan') => array('/admin/jurusan/index'), 5 | Yii::t('app','Tambah') 6 | ); 7 | ?> 8 |

9 | 10 | renderPartial('_form', array('jurusan'=>$jurusan)); ?> 11 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.ForbiddenClasses.txt: -------------------------------------------------------------------------------- 1 | Attr.ForbiddenClasses 2 | TYPE: lookup 3 | VERSION: 4.0.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | List of forbidden class values in the class attribute. By default, this is 7 | empty, which means that no classes are forbidden. See also %Attr.AllowedClasses. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.DefaultScheme.txt: -------------------------------------------------------------------------------- 1 | URI.DefaultScheme 2 | TYPE: string 3 | DEFAULT: 'http' 4 | --DESCRIPTION-- 5 | 6 |

7 | Defines through what scheme the output will be served, in order to 8 | select the proper object validator when no scheme information is present. 9 |

10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /protected/migrations/m110329_100746_add_mimetype_to_lampiran.php: -------------------------------------------------------------------------------- 1 | addColumn('program_kkn_lampiran','mimetype','string'); 8 | } 9 | 10 | public function safeDown() 11 | { 12 | $this->dropColumn('program_kkn_lampiran','mimetype'); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /protected/views/admin/jenjang/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Admin') => array('/admin/default/index'), 4 | Yii::t('app','Jurusan') => array('/admin/jenjang/index'), 5 | Yii::t('app','Tambah') 6 | ); 7 | ?> 8 | 9 |

10 | 11 | renderPartial('_form', array('jenjang'=>$jenjang)); ?> 12 | -------------------------------------------------------------------------------- /protected/views/admin/setting/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Admin') => array('/admin/default/index'), 4 | Yii::t('app','Setting') => array('/admin/setting/index'), 5 | Yii::t('app','Tambah') 6 | ); 7 | ?> 8 |

9 | 10 | 11 | renderPartial('_form', array('setting'=>$setting)); ?> 12 | -------------------------------------------------------------------------------- /framework/gii/views/default/login.php: -------------------------------------------------------------------------------- 1 |
2 | beginWidget('CActiveForm'); ?> 3 |

Please enter your password

4 | 5 | passwordField($model,'password'); ?> 6 | error($model,'password'); ?> 7 | 8 | 9 | 10 | endWidget(); ?> 11 |
12 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRev.txt: -------------------------------------------------------------------------------- 1 | Attr.AllowedRev 2 | TYPE: lookup 3 | VERSION: 1.6.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | List of allowed reverse document relationships in the rev attribute. This 7 | attribute is a bit of an edge-case; if you don't know what it is for, stay 8 | away. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.DefinitionID.txt: -------------------------------------------------------------------------------- 1 | URI.DefinitionID 2 | TYPE: string/null 3 | VERSION: 2.1.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

8 | Unique identifier for a custom-built URI definition. If you want 9 | to add custom URIFilters, you must specify this value. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /protected/views/admin/dosen/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Admin') => array('/admin/default/index'), 4 | Yii::t('app','Dosen') => array('/admin/dosen/index'), 5 | Yii::t('app','Tambah'), 6 | ); 7 | ?> 8 | 9 |

10 | 11 | renderPartial('_form', array('user'=>$user,'dosen'=>$dosen)); ?> 12 | -------------------------------------------------------------------------------- /protected/views/admin/fakultas/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Admin') => array('/admin/default/index'), 4 | Yii::t('app','Fakultas') => array('/admin/fakultas/index'), 5 | Yii::t('app','Tambah'), 6 | ); 7 | ?> 8 | 9 |

10 | 11 | renderPartial('_form', array('fakultas'=>$fakultas)); ?> 12 | -------------------------------------------------------------------------------- /protected/extensions/giix/views/default/login.php: -------------------------------------------------------------------------------- 1 |
2 | beginWidget('CActiveForm'); ?> 3 |

Please enter your password

4 | 5 | passwordField($model,'password'); ?> 6 | error($model,'password'); ?> 7 | 8 | 9 | 10 | endWidget(); ?> 11 |
12 | -------------------------------------------------------------------------------- /protected/views/admin/kabupaten/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Admin') => array('/admin/default/index'), 4 | Yii::t('app','Kabupaten') => array('/admin/kabupaten/index'), 5 | Yii::t('app','Tambah') 6 | ); 7 | ?> 8 | 9 |

10 | 11 | renderPartial('_form', array('kabupaten'=>$kabupaten)); ?> 12 | -------------------------------------------------------------------------------- /protected/views/admin/kecamatan/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Admin') => array('/admin/default/index'), 4 | Yii::t('app','Kecamatan') => array('/admin/kecamatan/index'), 5 | Yii::t('app','Tambah') 6 | ); 7 | ?> 8 | 9 |

10 | 11 | renderPartial('_form', array('kecamatan'=>$kecamatan)); ?> 12 | -------------------------------------------------------------------------------- /protected/views/admin/mahasiswa/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Admin') => array('/admin/default/index'), 4 | Yii::t('app','Mahasiswa') => array('/admin/mahasiswa/index'), 5 | Yii::t('app','Tambah') 6 | ); 7 | ?> 8 | 9 |

10 | 11 | renderPartial('_form', array('mahasiswa'=>$mahasiswa)); ?> 12 | -------------------------------------------------------------------------------- /framework/web/js/source/jui/css/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Selectable 1.8.11 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Selectable#theming 9 | */ 10 | .ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black;} -------------------------------------------------------------------------------- /protected/migrations/m110415_015156_drop_column_registered_from_mahasiswa.php: -------------------------------------------------------------------------------- 1 | dropColumn('mahasiswa','registered'); 9 | } 10 | 11 | public function safeDown() 12 | { 13 | $this->addColumn('mahasiswa','registered','boolean'); 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /protected/views/admin/kelompok/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Admin') => array('/admin/default/index'), 4 | Yii::t('app','Kelompok/Lokasi') => array('/admin/kelompok/index'), 5 | Yii::t('app','Tambah') 6 | ); 7 | ?> 8 | 9 |

10 | 11 | renderPartial('_form', array('kelompok'=>$kelompok)); ?> 12 | -------------------------------------------------------------------------------- /framework/gii/views/default/index.php: -------------------------------------------------------------------------------- 1 |

Welcome to Yii Code Generator!

2 | 3 |

4 | You may use the following generators to quickly build up your Yii application: 5 |

6 | 11 | 12 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Output.FlashCompat.txt: -------------------------------------------------------------------------------- 1 | Output.FlashCompat 2 | TYPE: bool 3 | VERSION: 4.1.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | If true, HTML Purifier will generate Internet Explorer compatibility 8 | code for all object code. This is highly recommended if you enable 9 | %HTML.SafeObject. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /protected/views/mahasiswa/mahasiswa/registerSuccess.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Mahasiswa')=>array('index'), 4 | Yii::t('app','Registrasi Berhasil'), 5 | ); 6 | ?> 7 |
8 | CHtml::link(Yii::t('app','Login disini'),array('site/login')), 10 | ))?> 11 |
12 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRel.txt: -------------------------------------------------------------------------------- 1 | Attr.AllowedRel 2 | TYPE: lookup 3 | VERSION: 1.6.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | List of allowed forward document relationships in the rel attribute. Common 7 | values may be nofollow or print. By default, this is empty, meaning that no 8 | document relationships are allowed. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.Linkify.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.Linkify 2 | TYPE: bool 3 | VERSION: 2.0.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | This directive turns on linkification, auto-linking http, ftp and 9 | https URLs. a tags with the href attribute 10 | must be allowed. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.NormalizeNewlines.txt: -------------------------------------------------------------------------------- 1 | Core.NormalizeNewlines 2 | TYPE: bool 3 | VERSION: 4.2.0 4 | DEFAULT: true 5 | --DESCRIPTION-- 6 |

7 | Whether or not to normalize newlines to the operating 8 | system default. When false, HTML Purifier 9 | will attempt to preserve mixed newline files. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /protected/extensions/giix/views/default/index.php: -------------------------------------------------------------------------------- 1 |

Welcome to Yii Code Generator!

2 | 3 |

4 | You may use the following generators to quickly build up your Yii application: 5 |

6 | 11 | 12 | -------------------------------------------------------------------------------- /framework/vendors/TextHighlighter/Text/TODO: -------------------------------------------------------------------------------- 1 | # $Id: TODO,v 1.1 2007/06/03 02:35:28 ssttoo Exp $ 2 | 3 | Major issues to solve (but I currently have no idea how) : 4 | 5 | - speedup highlighting process 6 | 7 | - switching between highlighters depending on context, for example : 8 | PHP code -> HTML -> (JavaScript|CSS) 9 | 10 | 11 | # vim: set autoindent tabstop=4 shiftwidth=4 softtabstop=4 tw=78: */ 12 | 13 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Output.CommentScriptContents.txt: -------------------------------------------------------------------------------- 1 | Output.CommentScriptContents 2 | TYPE: bool 3 | VERSION: 2.0.0 4 | DEFAULT: true 5 | --DESCRIPTION-- 6 | Determines whether or not HTML Purifier should attempt to fix up the 7 | contents of script tags for legacy browsers with comments. 8 | --ALIASES-- 9 | Core.CommentScriptContents 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/Printer/ConfigForm.css: -------------------------------------------------------------------------------- 1 | 2 | .hp-config {} 3 | 4 | .hp-config tbody th {text-align:right; padding-right:0.5em;} 5 | .hp-config thead, .hp-config .namespace {background:#3C578C; color:#FFF;} 6 | .hp-config .namespace th {text-align:center;} 7 | .hp-config .verbose {display:none;} 8 | .hp-config .controls {text-align:center;} 9 | 10 | /* vim: et sw=4 sts=4 */ 11 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/tests/phpunit.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /framework/gii/views/common/code.php: -------------------------------------------------------------------------------- 1 | type==='php') 3 | { 4 | echo '
'; 5 | highlight_string($file->content); 6 | echo '
'; 7 | } 8 | else if(in_array($file->type,array('txt','js','css'))) 9 | { 10 | echo '
'; 11 | echo nl2br($file->content); 12 | echo '
'; 13 | } 14 | else 15 | echo '
Preview is not available for this file type.
'; 16 | ?> -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImageAlt.txt: -------------------------------------------------------------------------------- 1 | Attr.DefaultInvalidImageAlt 2 | TYPE: string 3 | DEFAULT: 'Invalid image' 4 | --DESCRIPTION-- 5 | This is the content of the alt tag of an invalid image if the user had not 6 | previously specified an alt attribute. It has no effect when the image is 7 | valid but there was no alt attribute present. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.Language.txt: -------------------------------------------------------------------------------- 1 | Core.Language 2 | TYPE: string 3 | VERSION: 2.0.0 4 | DEFAULT: 'en' 5 | --DESCRIPTION-- 6 | 7 | ISO 639 language code for localizable things in HTML Purifier to use, 8 | which is mainly error reporting. There is currently only an English (en) 9 | translation, so this directive is currently useless. 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.FlashAllowFullScreen.txt: -------------------------------------------------------------------------------- 1 | HTML.FlashAllowFullScreen 2 | TYPE: bool 3 | VERSION: 4.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit embedded Flash content from 8 | %HTML.SafeObject to expand to the full screen. Corresponds to 9 | the allowFullScreen parameter. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.Disable.txt: -------------------------------------------------------------------------------- 1 | URI.Disable 2 | TYPE: bool 3 | VERSION: 1.3.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | Disables all URIs in all forms. Not sure why you'd want to do that 9 | (after all, the Internet's founded on the notion of a hyperlink). 10 |

11 | 12 | --ALIASES-- 13 | Attr.DisableURI 14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /protected/views/admin/mahasiswa/bayarAsuransi.php: -------------------------------------------------------------------------------- 1 | beginWidget('zii.widgets.jui.CJuiDialog',array( 2 | 'id'=>'bayarDiv', 3 | 'options'=>array( 4 | 'title'=>Yii::t('app','Bayar Asuransi'), 5 | 'autoOpen'=>true, 6 | 'modal'=>'true', 7 | 'width'=>'auto', 8 | 'height'=>'auto', 9 | ), 10 | ))?> 11 | renderPartial('_formBayar',array('mahasiswa'=>$mahasiswa))?> 12 | endWidget()?> 13 | -------------------------------------------------------------------------------- /protected/views/admin/user/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Admin') => array('/admin/default/index'), 4 | Yii::t('app','User') => array('/admin/user/index'), 5 | $user->nama => array('/admin/user/view','id' => $user->id), 6 | Yii::t('app','Ubah'), 7 | ); 8 | ?> 9 | 10 |

11 | 12 | renderPartial('_form', array('user'=>$user)); ?> 13 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.DefaultTextDir.txt: -------------------------------------------------------------------------------- 1 | Attr.DefaultTextDir 2 | TYPE: string 3 | DEFAULT: 'ltr' 4 | --DESCRIPTION-- 5 | Defines the default text direction (ltr or rtl) of the document being 6 | parsed. This generally is the same as the value of the dir attribute in 7 | HTML, or ltr if that is not specified. 8 | --ALLOWED-- 9 | 'ltr', 'rtl' 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.RemoveScriptContents.txt: -------------------------------------------------------------------------------- 1 | Core.RemoveScriptContents 2 | TYPE: bool/null 3 | DEFAULT: NULL 4 | VERSION: 2.0.0 5 | DEPRECATED-VERSION: 2.1.0 6 | DEPRECATED-USE: Core.HiddenElements 7 | --DESCRIPTION-- 8 |

9 | This directive enables HTML Purifier to remove not only script tags 10 | but all of their contents. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /framework/web/js/source/jui/css/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Progressbar 1.8.11 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Progressbar#theming 9 | */ 10 | .ui-progressbar{height:2em;text-align:left;}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%;} -------------------------------------------------------------------------------- /index-dev.php: -------------------------------------------------------------------------------- 1 | run(); 14 | -------------------------------------------------------------------------------- /protected/views/site/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Home', 4 | ); 5 | 6 | $this->menu=array( 7 | array('label' => Yii::t('app','Create Berita'), 'url' => array('create')), 8 | array('label' => Yii::t('app','Manage Berita'), 'url' => array('admin')), 9 | ); 10 | ?> 11 | 12 | widget('zii.widgets.CListView', array( 13 | 'dataProvider'=>$dataProvider, 14 | 'itemView'=>'_view', 15 | )); ?> 16 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.HostBlacklist.txt: -------------------------------------------------------------------------------- 1 | URI.HostBlacklist 2 | TYPE: list 3 | VERSION: 1.3.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | List of strings that are forbidden in the host of any URI. Use it to kill 7 | domain names of spam, etc. Note that it will catch anything in the domain, 8 | so moo.com will catch moo.com.example.com. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /protected/extensions/giix/views/common/code.php: -------------------------------------------------------------------------------- 1 | type==='php') 3 | { 4 | echo '
'; 5 | highlight_string($file->content); 6 | echo '
'; 7 | } 8 | else if(in_array($file->type,array('txt','js','css'))) 9 | { 10 | echo '
'; 11 | echo nl2br($file->content); 12 | echo '
'; 13 | } 14 | else 15 | echo '
Preview is not available for this file type.
'; 16 | ?> -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Filter.Custom.txt: -------------------------------------------------------------------------------- 1 | Filter.Custom 2 | TYPE: list 3 | VERSION: 3.1.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 |

7 | This directive can be used to add custom filters; it is nearly the 8 | equivalent of the now deprecated HTMLPurifier->addFilter() 9 | method. Specify an array of concrete implementations. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /protected/views/admin/berita/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Admin') => array('/admin/default/index'), 4 | Yii::t('app','Berita') => array('/admin/berita/index'), 5 | $berita->title => array('/admin/berita/view','id' => $berita->id), 6 | Yii::t('app','Ubah') 7 | ); 8 | ?> 9 | 10 |

11 | 12 | renderPartial('_form', array('berita'=>$berita)); ?> 13 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/config/test.php: -------------------------------------------------------------------------------- 1 | array( 7 | 'fixture'=>array( 8 | 'class'=>'system.test.CDbFixtureManager', 9 | ), 10 | /* uncomment the following to provide test database connection 11 | 'db'=>array( 12 | 'connectionString'=>'DSN for test database', 13 | ), 14 | */ 15 | ), 16 | ) 17 | ); 18 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklistRegexp.txt: -------------------------------------------------------------------------------- 1 | Attr.IDBlacklistRegexp 2 | TYPE: string/null 3 | VERSION: 1.6.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | PCRE regular expression to be matched against all IDs. If the expression is 7 | matches, the ID is rejected. Use this with care: may cause significant 8 | degradation. ID matching is done after all other validation. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.Custom.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.Custom 2 | TYPE: list 3 | VERSION: 2.0.1 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | 7 |

8 | This directive can be used to add custom auto-format injectors. 9 | Specify an array of injector names (class name minus the prefix) 10 | or concrete implementations. Injector class must exist. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /protected/views/admin/setting/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Admin') => array('/admin/default/index'), 4 | Yii::t('app','Setting') => array('/admin/setting/index'), 5 | $setting->key => array('/admin/setting/view','id' => $setting->id), 6 | Yii::t('app','Ubah') 7 | ); 8 | ?> 9 | 10 |

11 | 12 | renderPartial('_form', array('setting'=>$setting)); ?> 13 | -------------------------------------------------------------------------------- /protected/yiic.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem ------------------------------------------------------------- 4 | rem Yii command line script for Windows. 5 | rem This is the bootstrap script for running yiic on Windows. 6 | rem ------------------------------------------------------------- 7 | 8 | @setlocal 9 | 10 | set BIN_PATH=%~dp0 11 | 12 | if "%PHP_COMMAND%" == "" set PHP_COMMAND=php.exe 13 | 14 | %PHP_COMMAND% "%BIN_PATH%yiic.php" %* 15 | 16 | @endlocal -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImage.txt: -------------------------------------------------------------------------------- 1 | Attr.DefaultInvalidImage 2 | TYPE: string 3 | DEFAULT: '' 4 | --DESCRIPTION-- 5 | This is the default image an img tag will be pointed to if it does not have 6 | a valid src attribute. In future versions, we may allow the image tag to 7 | be removed completely, but due to design issues, this is not possible right 8 | now. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Parent.txt: -------------------------------------------------------------------------------- 1 | HTML.Parent 2 | TYPE: string 3 | VERSION: 1.3.0 4 | DEFAULT: 'div' 5 | --DESCRIPTION-- 6 | 7 |

8 | String name of element that HTML fragment passed to library will be 9 | inserted in. An interesting variation would be using span as the 10 | parent element, meaning that only inline tags would be allowed. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /protected/views/admin/jenjang/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Admin') => array('/admin/default/index'), 4 | Yii::t('app','Jurusan') => array('/admin/jenjang/index'), 5 | $jenjang->nama => array('/admin/jenjang/view','id' => $jenjang->id), 6 | Yii::t('app','Ubah') 7 | ); 8 | ?> 9 | 10 |

11 | 12 | renderPartial('_form', array('jenjang'=>$jenjang)); ?> 13 | -------------------------------------------------------------------------------- /protected/views/admin/jurusan/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Admin') => array('/admin/default/index'), 4 | Yii::t('app','Jurusan') => array('/admin/jurusan/index'), 5 | $jurusan->nama => array('/admin/jurusan/view','id' => $jurusan->id), 6 | Yii::t('app','Ubah') 7 | ); 8 | ?> 9 | 10 |

11 | 12 | renderPartial('_form', array('jurusan'=>$jurusan)); ?> 13 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveSpansWithoutAttributes.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.RemoveSpansWithoutAttributes 2 | TYPE: bool 3 | VERSION: 4.0.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | This directive causes span tags without any attributes 8 | to be removed. It will also remove spans that had all attributes 9 | removed during processing. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.DisplayLinkURI.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.DisplayLinkURI 2 | TYPE: bool 3 | VERSION: 3.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | This directive turns on the in-text display of URIs in <a> tags, and disables 8 | those links. For example, example becomes 9 | example (http://example.com). 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.PurifierLinkify 2 | TYPE: bool 3 | VERSION: 2.0.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | Internal auto-formatter that converts configuration directives in 9 | syntax %Namespace.Directive to links. a tags 10 | with the href attribute must be allowed. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.OverrideAllowedSchemes.txt: -------------------------------------------------------------------------------- 1 | URI.OverrideAllowedSchemes 2 | TYPE: bool 3 | DEFAULT: true 4 | --DESCRIPTION-- 5 | If this is set to true (which it is by default), you can override 6 | %URI.AllowedSchemes by simply registering a HTMLPurifier_URIScheme to the 7 | registry. If false, you will also have to update that directive in order 8 | to add more schemes. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /protected/components/widgets/grid/NumberColumn.php: -------------------------------------------------------------------------------- 1 | 'number-column'); 9 | 10 | protected function renderDataCellContent($row,$data) 11 | { 12 | echo $this->grid->dataProvider->pagination->currentPage 13 | * $this->grid->dataProvider->pagination->pageSize + $row+1; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /protected/views/admin/fakultas/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Admin') => array('/admin/default/index'), 4 | Yii::t('app','Fakultas') => array('/admin/fakultas/index'), 5 | $fakultas->nama => array('/admin/fakultas/view','id' => $fakultas->id), 6 | Yii::t('app','Ubah'), 7 | ); 8 | ?> 9 | 10 |

11 | 12 | renderPartial('_form', array('fakultas'=>$fakultas)); ?> 13 | -------------------------------------------------------------------------------- /protected/migrations/m110606_030434_add_ttl_to_mahasiswa.php: -------------------------------------------------------------------------------- 1 | addColumn('mahasiswa','tempatLahir','string'); 8 | $this->addColumn('mahasiswa','tanggalLahir','date'); 9 | } 10 | 11 | public function safeDown() 12 | { 13 | $this->dropColumn('mahasiswa','tempatLahir'); 14 | $this->dropColumn('mahasiswa','tanggalLahir'); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /protected/views/admin/kabupaten/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Admin') => array('/admin/default/index'), 4 | Yii::t('app','Kabupaten') => array('/admin/kabupaten/index'), 5 | $kabupaten->nama => array('/admin/kabupaten/view','id' => $kabupaten->id), 6 | Yii::t('app','Ubah') 7 | ); 8 | ?> 9 | 10 |

11 | 12 | renderPartial('_form', array('kabupaten'=>$kabupaten)); ?> 13 | -------------------------------------------------------------------------------- /protected/views/admin/kecamatan/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Admin') => array('/admin/default/index'), 4 | Yii::t('app','Kecamatan') => array('/admin/kecamatan/index'), 5 | $kecamatan->nama => array('/admin/kecamatan/view','id' => $kecamatan->id), 6 | Yii::t('app','Ubah') 7 | ); 8 | ?> 9 | 10 |

11 | 12 | renderPartial('_form', array('kecamatan'=>$kecamatan)); ?> 13 | -------------------------------------------------------------------------------- /protected/views/admin/kelompok/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Admin') => array('/admin/default/index'), 4 | Yii::t('app','Kelompok') => array('/admin/kelompok/index'), 5 | $kelompok->nama => array('/admin/kelompok/view','id' => $kelompok->id), 6 | Yii::t('app','Ubah') 7 | ); 8 | ?> 9 | 10 |

11 | 12 | renderPartial('_form', array('kelompok'=>$kelompok)); ?> 13 | -------------------------------------------------------------------------------- /protected/views/admin/mahasiswa/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Admin') => array('/admin/default/index'), 4 | Yii::t('app','Mahasiswa') => array('/admin/mahasiswa/index'), 5 | $mahasiswa->nama => array('/admin/mahasiswa/view','id' => $mahasiswa->id), 6 | Yii::t('app','Ubah') 7 | ); 8 | ?> 9 | 10 |

11 | 12 | renderPartial('_form', array('mahasiswa'=>$mahasiswa)); ?> 13 | -------------------------------------------------------------------------------- /protected/migrations/m110319_082220_add_registred_to_mahasiswa.php: -------------------------------------------------------------------------------- 1 | addColumn('mahasiswa','registered','boolean'); 8 | $this->dropColumn('mahasiswa','registred'); 9 | } 10 | 11 | public function safeDown() 12 | { 13 | $this->addColumn('mahasiswa','registred','boolean'); 14 | $this->dropColumn('mahasiswa','registred'); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /protected/migrations/m110330_015538_add_lunas_asuransi.php: -------------------------------------------------------------------------------- 1 | addColumn('mahasiswa','lunasAsuransi','boolean'); 8 | $this->addColumn('mahasiswa','jumlahAsuransi','double'); 9 | } 10 | 11 | public function safeDown() 12 | { 13 | $this->dropColumn('mahasiswa','lunasAsuransi'); 14 | $this->dropColumn('mahasiswa','jumlahAsuransi'); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/yiic.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem ------------------------------------------------------------- 4 | rem Yii command line script for Windows. 5 | rem This is the bootstrap script for running yiic on Windows. 6 | rem ------------------------------------------------------------- 7 | 8 | @setlocal 9 | 10 | set BIN_PATH=%~dp0 11 | 12 | if "%PHP_COMMAND%" == "" set PHP_COMMAND=php.exe 13 | 14 | "%PHP_COMMAND%" "%BIN_PATH%yiic.php" %* 15 | 16 | @endlocal -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Proprietary.txt: -------------------------------------------------------------------------------- 1 | HTML.Proprietary 2 | TYPE: bool 3 | VERSION: 3.1.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to allow proprietary elements and attributes in your 8 | documents, as per HTMLPurifier_HTMLModule_Proprietary. 9 | Warning: This can cause your documents to stop 10 | validating! 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPath.txt: -------------------------------------------------------------------------------- 1 | Cache.SerializerPath 2 | TYPE: string/null 3 | VERSION: 2.0.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

8 | Absolute path with no trailing slash to store serialized definitions in. 9 | Default is within the 10 | HTML Purifier library inside DefinitionCache/Serializer. This 11 | path must be writable by the webserver. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.RemoveInvalidImg.txt: -------------------------------------------------------------------------------- 1 | Core.RemoveInvalidImg 2 | TYPE: bool 3 | DEFAULT: true 4 | VERSION: 1.3.0 5 | --DESCRIPTION-- 6 | 7 |

8 | This directive enables pre-emptive URI checking in img 9 | tags, as the attribute validation strategy is not authorized to 10 | remove elements from the document. Revert to pre-1.3.0 behavior by setting to false. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /protected/views/mahasiswa/kelompok/_view.php: -------------------------------------------------------------------------------- 1 |
2 | lokasi ?>, 3 | kecamatan->nama ?>, 4 | kabupaten->nama ?> 5 | 6 | $data->id))?> 7 | 8 |
9 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.DocURL.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.PurifierLinkify.DocURL 2 | TYPE: string 3 | VERSION: 2.0.1 4 | DEFAULT: '#%s' 5 | ALIASES: AutoFormatParam.PurifierLinkifyDocURL 6 | --DESCRIPTION-- 7 |

8 | Location of configuration documentation to link to, let %s substitute 9 | into the configuration's namespace and directive names sans the percent 10 | sign. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /framework/i18n/data/README.txt: -------------------------------------------------------------------------------- 1 | 2 | CLDR v1.6 (July 2, 2008) 3 | 4 | This directory contains the CLDR data files in form of PHP scripts. 5 | They are obtained by extracting the CLDR data (http://www.unicode.org/cldr/) 6 | with the script "tools/cldr/build.php". 7 | 8 | Only the data relevant to date and number formatting are extracted. 9 | Each PHP file contains an array representing the data for a particular 10 | locale. Data inherited from parent locales are also in the array. 11 | -------------------------------------------------------------------------------- /framework/views/ru/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/yiic: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | 9 | * @link http://www.yiiframework.com/ 10 | * @copyright Copyright © 2008 Yii Software LLC 11 | * @license http://www.yiiframework.com/license/ 12 | * @version $Id: yiic 702 2009-02-18 19:29:48Z qiang.xue $ 13 | */ 14 | 15 | require_once(dirname(__FILE__).'/yiic.php'); 16 | -------------------------------------------------------------------------------- /framework/cli/views/shell/module/views/default/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | $this->module->id, 4 | ); 5 | ?> 6 |

uniqueId . '/' . $this->action->id; ?>

7 | 8 |

9 | This is the view content for action "action->id; ?>". 10 | The action belongs to the controller "" in the "module->id; ?>" module. 11 |

12 |

13 | You may customize this page by editing 14 |

-------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Output.Newline.txt: -------------------------------------------------------------------------------- 1 | Output.Newline 2 | TYPE: string/null 3 | VERSION: 2.0.1 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

8 | Newline string to format final output with. If left null, HTML Purifier 9 | will auto-detect the default newline type of the system and use that; 10 | you can manually override it here. Remember, \r\n is Windows, \r 11 | is Mac, and \n is Unix. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /framework/views/he/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/ja/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/no/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/zh_cn/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | run(); 14 | -------------------------------------------------------------------------------- /protected/tests/yaml/dosen.yml: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | --- 3 | # kkn_test.dosen 4 | - 5 | id: 1 6 | nip: 00001 7 | namaLengkap: Ahmad Tanwir 8 | jenisKelamin: LAKI-LAKI 9 | userId: 2 10 | fakultasId: 2 11 | jurusanId: 14 12 | kontak: 0978767 13 | created: 2011-04-13 10:41:09 14 | - 15 | id: 2 16 | nip: 00002 17 | namaLengkap: Ahmad Tanwir Ii 18 | jenisKelamin: LAKI-LAKI 19 | userId: 3 20 | fakultasId: 3 21 | jurusanId: 18 22 | kontak: 0978767 23 | created: 2011-04-13 10:45:05 24 | ... 25 | -------------------------------------------------------------------------------- /framework/views/el/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/es/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/id/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/ro/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/sk/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/vi/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/lt/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/zh_tw/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/pl/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/pt/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/sv/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protected/views/admin/programStudi/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Program Studis'=>array('index'), 4 | 'Create', 5 | ); 6 | 7 | $this->menu=array( 8 | array('label' => Yii::t('app','List Program Studi'), 'url' => array('index')), 9 | array('label' => Yii::t('app','Manage Program Studi'), 'url' => array('admin')), 10 | ); 11 | ?> 12 | 13 |

14 | 15 | renderPartial('_form', array('programStudi'=>$programStudi)); ?> -------------------------------------------------------------------------------- /framework/views/bg/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /framework/views/hr/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/nl/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index-test.php: -------------------------------------------------------------------------------- 1 | run(); 16 | -------------------------------------------------------------------------------- /protected/migrations/m110330_015314_create_table_setting.php: -------------------------------------------------------------------------------- 1 | createTable('setting',array( 8 | 'id' => 'pk', 9 | 'key' => 'string NOT NULL', 10 | 'value' => 'string NOT NULL', 11 | 'created' => 'DATETIME NOT NULL', 12 | 'modified' => 'DATETIME NOT NULL', 13 | ),'engine=innoDB'); 14 | } 15 | 16 | public function safeDown() 17 | { 18 | $this->dropTable('setting'); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions 2 | TYPE: lookup 3 | VERSION: 4.0.0 4 | DEFAULT: array('td' => true, 'th' => true) 5 | --DESCRIPTION-- 6 |

7 | When %AutoFormat.RemoveEmpty and %AutoFormat.RemoveEmpty.RemoveNbsp 8 | are enabled, this directive defines what HTML elements should not be 9 | removede if they have only a non-breaking space in them. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Cache.DefinitionImpl.txt: -------------------------------------------------------------------------------- 1 | Cache.DefinitionImpl 2 | TYPE: string/null 3 | VERSION: 2.0.0 4 | DEFAULT: 'Serializer' 5 | --DESCRIPTION-- 6 | 7 | This directive defines which method to use when caching definitions, 8 | the complex data-type that makes HTML Purifier tick. Set to null 9 | to disable caching (not recommended, as you will see a definite 10 | performance degradation). 11 | 12 | --ALIASES-- 13 | Core.DefinitionCache 14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /framework/views/fr/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/index.php: -------------------------------------------------------------------------------- 1 | run(); 14 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidChildren.txt: -------------------------------------------------------------------------------- 1 | Core.EscapeInvalidChildren 2 | TYPE: bool 3 | DEFAULT: false 4 | --DESCRIPTION-- 5 | When true, a child is found that is not allowed in the context of the 6 | parent element will be transformed into text as if it were ASCII. When 7 | false, that element and all internal tags will be dropped, though text will 8 | be preserved. There is no option for dropping the element but preserving 9 | child nodes. 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /framework/views/it/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.RemoveProcessingInstructions.txt: -------------------------------------------------------------------------------- 1 | Core.RemoveProcessingInstructions 2 | TYPE: bool 3 | VERSION: 4.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Instead of escaping processing instructions in the form <? ... 7 | ?>, remove it out-right. This may be useful if the HTML 8 | you are validating contains XML processing instruction gunk, however, 9 | it can also be user-unfriendly for people attempting to post PHP 10 | snippets. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.MakeAbsolute.txt: -------------------------------------------------------------------------------- 1 | URI.MakeAbsolute 2 | TYPE: bool 3 | VERSION: 2.1.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | Converts all URIs into absolute forms. This is useful when the HTML 9 | being filtered assumes a specific base path, but will actually be 10 | viewed in a different context (and setting an alternate base URI is 11 | not possible). %URI.Base must be set for this directive to work. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /framework/views/uk/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protected/migrations/m110329_094919_add_created_modifid_to_lampiran.php: -------------------------------------------------------------------------------- 1 | addColumn('program_kkn_lampiran','created','datetime NOT NULL'); 8 | $this->addColumn('program_kkn_lampiran','modified','datetime NOT NULL'); 9 | } 10 | 11 | public function safeDown() 12 | { 13 | $this->dropColumn('program_kkn_lampiran','created'); 14 | $this->dropColumn('program_kkn_lampiran','modified'); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /framework/cli/views/shell/model/test.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | class Test extends CDbTestCase 12 | { 13 | public $fixtures=array( 14 | ''=>'', 15 | ); 16 | 17 | public function testCreate() 18 | { 19 | 20 | } 21 | } -------------------------------------------------------------------------------- /framework/views/lv/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protected/migrations/m110412_041125_add_column_pembimbingId_into_kelompok.php: -------------------------------------------------------------------------------- 1 | addColumn('kelompok','pembimbingId','integer'); 8 | $this->addForeignKey('kelompok_pembimbingId','kelompok','pembimbingId','dosen','id'); 9 | } 10 | 11 | public function safeDown() 12 | { 13 | $this->dropForeignKey('kelompok_pembimbingId','kelompok'); 14 | $this->dropColumn('kelompok','pembimbingId'); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /framework/views/de/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/index-test.php: -------------------------------------------------------------------------------- 1 | run(); 16 | -------------------------------------------------------------------------------- /protected/migrations/m110325_075416_add_column_kampus_to_jurusan_and_prodi.php: -------------------------------------------------------------------------------- 1 | dropForeignKey('program_studi_jurusanId','program_studi'); 8 | $this->dropColumn('program_studi','jurusanId'); 9 | } 10 | 11 | public function safeDown() 12 | { 13 | $this->addColumn('program_studi','jurusanId','integer'); 14 | $this->addForeignKey('program_studi_jurusanId','program_studi','jurusanId','jurusan','id'); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /protected/config/console.php: -------------------------------------------------------------------------------- 1 | dirname(__FILE__).DIRECTORY_SEPARATOR.'..', 7 | 'name'=>'My Console Application', 8 | 'import'=>array( 9 | //'application.models.*', 10 | 'application.components.*', 11 | ), 12 | 'components'=>array( 13 | 'fixture'=>array( 14 | 'class'=>'system.test.CDbFixtureManager', 15 | ), 16 | 'db'=> require(dirname(__FILE__).'/database.php'), 17 | ), 18 | ); 19 | -------------------------------------------------------------------------------- /protected/migrations/m110412_070925_add_program_studi_into_mahasiswa.php: -------------------------------------------------------------------------------- 1 | addColumn('mahasiswa','programStudiId','integer'); 8 | $this->addForeignKey('mahasiswa_programStudiId','mahasiswa', 9 | 'programStudiId','program_studi','id'); 10 | } 11 | 12 | public function safeDown() 13 | { 14 | $this->dropForeignKey('mahasiswa_programStudiId','mahasiswa'); 15 | $this->dropColumn('mahasiswa','programStudiId'); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.CollectErrors.txt: -------------------------------------------------------------------------------- 1 | Core.CollectErrors 2 | TYPE: bool 3 | VERSION: 2.0.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 | Whether or not to collect errors found while filtering the document. This 8 | is a useful way to give feedback to your users. Warning: 9 | Currently this feature is very patchy and experimental, with lots of 10 | possible error messages not yet implemented. It will not cause any 11 | problems, but it may not help your users either. 12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.DisableExternal.txt: -------------------------------------------------------------------------------- 1 | URI.DisableExternal 2 | TYPE: bool 3 | VERSION: 1.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Disables links to external websites. This is a highly effective anti-spam 7 | and anti-pagerank-leech measure, but comes at a hefty price: nolinks or 8 | images outside of your domain will be allowed. Non-linkified URIs will 9 | still be preserved. If you want to be able to link to subdomains or use 10 | absolute URIs, specify %URI.Host for your website. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /protected/config/test.php: -------------------------------------------------------------------------------- 1 | array( 7 | 'urlManager' => array( 8 | 'urlFormat'=>'get', 9 | 'showScriptName' => true, 10 | ), 11 | 'fixture'=>array( 12 | 'class'=>'system.test.CDbFixtureManager', 13 | ), 14 | 'db'=> array( 15 | 'connectionString' => 'mysql:host=localhost;dbname=kkn_test', 16 | 'emulatePrepare' => true, 17 | 'username' => 'kkn', 18 | 'password' => 'kkn', 19 | 'charset' => 'utf8', 20 | ), 21 | ), 22 | ) 23 | ); 24 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.SafeObject.txt: -------------------------------------------------------------------------------- 1 | HTML.SafeObject 2 | TYPE: bool 3 | VERSION: 3.1.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit object tags in documents, with a number of extra 8 | security features added to prevent script execution. This is similar to 9 | what websites like MySpace do to object tags. You should also enable 10 | %Output.FlashCompat in order to generate Internet Explorer 11 | compatibility code for your object tags. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.DisableResources.txt: -------------------------------------------------------------------------------- 1 | URI.DisableResources 2 | TYPE: bool 3 | VERSION: 4.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Disables embedding resources, essentially meaning no pictures. You can 8 | still link to them though. See %URI.DisableExternalResources for why 9 | this might be a good idea. 10 |

11 |

12 | Note: While this directive has been available since 1.3.0, 13 | it didn't actually start doing anything until 4.2.0. 14 |

15 | --# vim: et sw=4 sts=4 16 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/CSS.AllowTricky.txt: -------------------------------------------------------------------------------- 1 | CSS.AllowTricky 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 3.1.0 5 | --DESCRIPTION-- 6 | This parameter determines whether or not to allow "tricky" CSS properties and 7 | values. Tricky CSS properties/values can drastically modify page layout or 8 | be used for deceptive practices but do not directly constitute a security risk. 9 | For example, display:none; is considered a tricky property that 10 | will only be allowed if this directive is set to true. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /protected/migrations/m110417_232704_add_max_column_to_kelompok.php: -------------------------------------------------------------------------------- 1 | addColumn('kelompok','maxAnggota','integer'); 9 | $this->addColumn('kelompok','maxLakiLaki','integer'); 10 | $this->addColumn('kelompok','maxPerempuan','integer'); 11 | } 12 | 13 | public function safeDown() 14 | { 15 | $this->dropColumn('kelompok','maxPerempuan'); 16 | $this->dropColumn('kelompok','maxLakiLaki'); 17 | $this->dropColumn('kelompok','maxAnggota'); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.ConvertDocumentToFragment.txt: -------------------------------------------------------------------------------- 1 | Core.ConvertDocumentToFragment 2 | TYPE: bool 3 | DEFAULT: true 4 | --DESCRIPTION-- 5 | 6 | This parameter determines whether or not the filter should convert 7 | input that is a full document with html and body tags to a fragment 8 | of just the contents of a body tag. This parameter is simply something 9 | HTML Purifier can do during an edge-case: for most inputs, this 10 | processing is not necessary. 11 | 12 | --ALIASES-- 13 | Core.AcceptFullDocuments 14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /protected/components/SideMenu.php: -------------------------------------------------------------------------------- 1 | 7 | This is the logical inverse of %CSS.AllowedProperties, and it will 8 | override that directive or any other directive. If possible, 9 | %CSS.AllowedProperties is recommended over this directive, 10 | because it can sometimes be difficult to tell whether or not you've 11 | forbidden all of the CSS properties you truly would like to disallow. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Doctype.txt: -------------------------------------------------------------------------------- 1 | HTML.Doctype 2 | TYPE: string/null 3 | DEFAULT: NULL 4 | --DESCRIPTION-- 5 | Doctype to use during filtering. Technically speaking this is not actually 6 | a doctype (as it does not identify a corresponding DTD), but we are using 7 | this name for sake of simplicity. When non-blank, this will override any 8 | older directives like %HTML.XHTML or %HTML.Strict. 9 | --ALLOWED-- 10 | 'HTML 4.01 Transitional', 'HTML 4.01 Strict', 'XHTML 1.0 Transitional', 'XHTML 1.0 Strict', 'XHTML 1.1' 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /framework/base/CException.php: -------------------------------------------------------------------------------- 1 | 6 | * @link http://www.yiiframework.com/ 7 | * @copyright Copyright © 2008-2011 Yii Software LLC 8 | * @license http://www.yiiframework.com/license/ 9 | */ 10 | 11 | /** 12 | * CException represents a generic exception for all purposes. 13 | * 14 | * @author Qiang Xue 15 | * @version $Id: CException.php 2799 2011-01-01 19:31:13Z qiang.xue $ 16 | * @package system.base 17 | * @since 1.0 18 | */ 19 | class CException extends Exception 20 | { 21 | } 22 | 23 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.IDPrefix.txt: -------------------------------------------------------------------------------- 1 | Attr.IDPrefix 2 | TYPE: string 3 | VERSION: 1.2.0 4 | DEFAULT: '' 5 | --DESCRIPTION-- 6 | String to prefix to IDs. If you have no idea what IDs your pages may use, 7 | you may opt to simply add a prefix to all user-submitted ID attributes so 8 | that they are still usable, but will not conflict with core page IDs. 9 | Example: setting the directive to 'user_' will result in a user submitted 10 | 'foo' to become 'user_foo' Be sure to set %HTML.EnableAttrID to true 11 | before using this. 12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Attr.Name.UseCDATA.txt: -------------------------------------------------------------------------------- 1 | HTML.Attr.Name.UseCDATA 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 4.0.0 5 | --DESCRIPTION-- 6 | The W3C specification DTD defines the name attribute to be CDATA, not ID, due 7 | to limitations of DTD. In certain documents, this relaxed behavior is desired, 8 | whether it is to specify duplicate names, or to specify names that would be 9 | illegal IDs (for example, names that begin with a digit.) Set this configuration 10 | directive to true to use the relaxed parsing rules. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.DefaultImageAlt.txt: -------------------------------------------------------------------------------- 1 | Attr.DefaultImageAlt 2 | TYPE: string/null 3 | DEFAULT: null 4 | VERSION: 3.2.0 5 | --DESCRIPTION-- 6 | This is the content of the alt tag of an image if the user had not 7 | previously specified an alt attribute. This applies to all images without 8 | a valid alt attribute, as opposed to %Attr.DefaultInvalidImageAlt, which 9 | only applies to invalid images, and overrides in the case of an invalid image. 10 | Default behavior with null is to use the basename of the src tag for the alt. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /framework/views/zh_cn/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/zh_tw/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.RemoveEmpty.RemoveNbsp 2 | TYPE: bool 3 | VERSION: 4.0.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | When enabled, HTML Purifier will treat any elements that contain only 8 | non-breaking spaces as well as regular whitespace as empty, and remove 9 | them when %AutoForamt.RemoveEmpty is enabled. 10 |

11 |

12 | See %AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions for a list of elements 13 | that don't have this behavior applied to them. 14 |

15 | --# vim: et sw=4 sts=4 16 | -------------------------------------------------------------------------------- /framework/views/id/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/ja/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/pl/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/sk/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/gii/generators/module/templates/default/views/default/index.php: -------------------------------------------------------------------------------- 1 | 2 | $this->breadcrumbs=array( 3 | $this->module->id, 4 | ); 5 | ?> 6 |

echo $this->uniqueId . '/' . $this->action->id; ?>

7 | 8 |

9 | This is the view content for action " echo $this->action->id; ?>". 10 | The action belongs to the controller " echo get_class($this); ?>" 11 | in the " echo $this->module->id; ?>" module. 12 |

13 |

14 | You may customize this page by editing echo __FILE__; ?> 15 |

-------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.SafeEmbed.txt: -------------------------------------------------------------------------------- 1 | HTML.SafeEmbed 2 | TYPE: bool 3 | VERSION: 3.1.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit embed tags in documents, with a number of extra 8 | security features added to prevent script execution. This is similar to 9 | what websites like MySpace do to embed tags. Embed is a proprietary 10 | element and will cause your website to stop validating; you should 11 | see if you can use %Output.FlashCompat with %HTML.SafeObject instead 12 | first.

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /framework/views/bg/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/el/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/he/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/no/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/pt/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/ro/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/vi/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/es/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.AllowedSchemes.txt: -------------------------------------------------------------------------------- 1 | URI.AllowedSchemes 2 | TYPE: lookup 3 | --DEFAULT-- 4 | array ( 5 | 'http' => true, 6 | 'https' => true, 7 | 'mailto' => true, 8 | 'ftp' => true, 9 | 'nntp' => true, 10 | 'news' => true, 11 | ) 12 | --DESCRIPTION-- 13 | Whitelist that defines the schemes that a URI is allowed to have. This 14 | prevents XSS attacks from using pseudo-schemes like javascript or mocha. 15 | There is also support for the data and file 16 | URI schemes, but they are not enabled by default. 17 | --# vim: et sw=4 sts=4 18 | -------------------------------------------------------------------------------- /framework/views/de/log-firebug.php: -------------------------------------------------------------------------------- 1 | 24 | -------------------------------------------------------------------------------- /framework/views/hr/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protected/extensions/giix/generators/module/templates/default/views/default/index.php: -------------------------------------------------------------------------------- 1 | 2 | $this->breadcrumbs=array( 3 | $this->module->id, 4 | ); 5 | ?> 6 |

echo $this->uniqueId . '/' . $this->action->id; ?>

7 | 8 |

9 | This is the view content for action " echo $this->action->id; ?>". 10 | The action belongs to the controller " echo get_class($this); ?>" 11 | in the " echo $this->module->id; ?>" module. 12 |

13 |

14 | You may customize this page by editing echo __FILE__; ?> 15 |

-------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.MaxImgLength.txt: -------------------------------------------------------------------------------- 1 | HTML.MaxImgLength 2 | TYPE: int/null 3 | DEFAULT: 1200 4 | VERSION: 3.1.1 5 | --DESCRIPTION-- 6 |

7 | This directive controls the maximum number of pixels in the width and 8 | height attributes in img tags. This is 9 | in place to prevent imagecrash attacks, disable with null at your own risk. 10 | This directive is similar to %CSS.MaxImgLength, and both should be 11 | concurrently edited, although there are 12 | subtle differences in the input format (the HTML max is an integer). 13 |

14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /framework/views/lt/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/ru/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/sv/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/gii/components/UserIdentity.php: -------------------------------------------------------------------------------- 1 | getModule('gii')->password; 12 | if($password===null) 13 | throw new CException('Please configure the "password" property of the "gii" module.'); 14 | else if($password===false || $password===$this->password) 15 | $this->errorCode=self::ERROR_NONE; 16 | else 17 | $this->errorCode=self::ERROR_UNKNOWN_IDENTITY; 18 | return !$this->errorCode; 19 | } 20 | } -------------------------------------------------------------------------------- /framework/views/fr/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/gii/components/TextDiff.php: -------------------------------------------------------------------------------- 1 | render($diff); 21 | } 22 | } -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.Escaping.txt: -------------------------------------------------------------------------------- 1 | Filter.ExtractStyleBlocks.Escaping 2 | TYPE: bool 3 | VERSION: 3.0.0 4 | DEFAULT: true 5 | ALIASES: Filter.ExtractStyleBlocksEscaping, FilterParam.ExtractStyleBlocksEscaping 6 | --DESCRIPTION-- 7 | 8 |

9 | Whether or not to escape the dangerous characters <, > and & 10 | as \3C, \3E and \26, respectively. This is can be safely set to false 11 | if the contents of StyleBlocks will be placed in an external stylesheet, 12 | where there is no risk of it being interpreted as HTML. 13 |

14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Filter.YouTube.txt: -------------------------------------------------------------------------------- 1 | Filter.YouTube 2 | TYPE: bool 3 | VERSION: 3.1.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Warning: Deprecated in favor of %HTML.SafeObject and 8 | %Output.FlashCompat (turn both on to allow YouTube videos and other 9 | Flash content). 10 |

11 |

12 | This directive enables YouTube video embedding in HTML Purifier. Check 13 | this document 14 | on embedding videos for more information on what this filter does. 15 |

16 | --# vim: et sw=4 sts=4 17 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Output.SortAttr.txt: -------------------------------------------------------------------------------- 1 | Output.SortAttr 2 | TYPE: bool 3 | VERSION: 3.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | If true, HTML Purifier will sort attributes by name before writing them back 8 | to the document, converting a tag like: <el b="" a="" c="" /> 9 | to <el a="" b="" c="" />. This is a workaround for 10 | a bug in FCKeditor which causes it to swap attributes order, adding noise 11 | to text diffs. If you're not seeing this bug, chances are, you don't need 12 | this directive. 13 |

14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /protected/components/HeadMenu.php: -------------------------------------------------------------------------------- 1 | 2 | /*$log) 8 | { 9 | $time=date('H:i:s.',$log[3]).sprintf('%03d',(int)(($log[3]-(int)$log[3])*1000)); 10 | if($log[1]===CLogger::LEVEL_WARNING) 11 | $func='warn'; 12 | else if($log[1]===CLogger::LEVEL_ERROR) 13 | $func='error'; 14 | else 15 | $func='log'; 16 | $content=CJavaScript::quote("[$time][$log[1]][$log[2]] $log[0]"); 17 | echo "\tconsole.{$func}(\"{$content}\");\n"; 18 | } 19 | ?> 20 | console.groupEnd(); 21 | } 22 | /*]]>*/ 23 | -------------------------------------------------------------------------------- /framework/views/uk/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protected/extensions/giix/components/TextDiff.php: -------------------------------------------------------------------------------- 1 | render($diff); 21 | } 22 | } -------------------------------------------------------------------------------- /protected/extensions/giix/components/UserIdentity.php: -------------------------------------------------------------------------------- 1 | getModule('gii')->password; 12 | if($password===null) 13 | throw new CException('Please configure the "password" property of the "gii" module.'); 14 | else if($password===false || $password===$this->password) 15 | $this->errorCode=self::ERROR_NONE; 16 | else 17 | $this->errorCode=self::ERROR_UNKNOWN_IDENTITY; 18 | return !$this->errorCode; 19 | } 20 | } -------------------------------------------------------------------------------- /framework/views/lv/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/nl/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protected/migrations/m110325_091132_delete_email_column.php: -------------------------------------------------------------------------------- 1 | dropColumn('fakultas','email'); 8 | $this->dropColumn('jurusan','email'); 9 | $this->dropColumn('jenjang','email'); 10 | $this->dropColumn('program_studi','email'); 11 | } 12 | 13 | public function safeDown() 14 | { 15 | $this->addColumn('fakultas','email','string NOT NULL'); 16 | $this->addColumn('jurusan','email','string NOT NULL'); 17 | $this->addColumn('jenjang','email','string NOT NULL'); 18 | $this->addColumn('program_studi','email','string NOT NULL'); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /framework/views/zh_cn/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/views/layouts/column2.php: -------------------------------------------------------------------------------- 1 | beginContent('//layouts/main'); ?> 2 |
3 |
4 |
5 | 6 |
7 |
8 |
9 | 21 |
22 |
23 | endContent(); ?> -------------------------------------------------------------------------------- /framework/views/ru/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/zh_tw/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /protected/config/dev.php: -------------------------------------------------------------------------------- 1 | array( 7 | 'db'=> require(dirname(__FILE__).'/database.php'), 8 | 'urlManager' => array( 9 | 'urlFormat'=>'get', 10 | 'showScriptName' => true, 11 | ), 12 | 'log'=>array( 13 | 'class'=>'CLogRouter', 14 | 'routes'=>array( 15 | array( 16 | 'class'=>'CFileLogRoute', 17 | 'levels'=>'error, warning', 18 | ), 19 | // uncomment the following to show log messages on web pages 20 | 21 | array( 22 | 'class'=>'CWebLogRoute', 23 | ), 24 | 25 | ), 26 | ), 27 | ), 28 | ) 29 | ); 30 | 31 | -------------------------------------------------------------------------------- /protected/views/admin/kabupaten/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Admin') => array('/admin/default/index'), 4 | Yii::t('app','Kabupaten'), 5 | ); 6 | ?> 7 | 8 |

9 | 'add-button'))?> 10 | widget('zii.widgets.grid.CGridView', array( 11 | 'id'=>'kabupaten-grid', 12 | 'dataProvider'=>$kabupaten->search(), 13 | 'filter'=>$kabupaten, 14 | 'columns'=>array( 15 | array( 16 | 'class' => 'NumberColumn', 17 | ), 18 | 'nama', 19 | array( 20 | 'class'=>'CButtonColumn', 21 | ), 22 | ), 23 | )); ?> 24 | -------------------------------------------------------------------------------- /framework/views/ja/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /protected/views/admin/setting/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Admin') => array('/admin/default/index'), 4 | Yii::t('app','Setting'), 5 | ); 6 | ?> 7 | 8 |

9 | 10 | 'add-button'))?> 11 | 12 | widget('zii.widgets.grid.CGridView', array( 13 | 'id'=>'setting-grid', 14 | 'dataProvider'=>$setting->search(), 15 | 'filter'=>$setting, 16 | 'columns'=>array( 17 | 'id', 18 | 'key', 19 | 'value', 20 | 'created', 21 | 'modified', 22 | array( 23 | 'class'=>'CButtonColumn', 24 | ), 25 | ), 26 | )); ?> 27 | -------------------------------------------------------------------------------- /framework/messages/config.php: -------------------------------------------------------------------------------- 1 | dirname(__FILE__).DIRECTORY_SEPARATOR.'..', 8 | 'messagePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'messages', 9 | 'languages'=>array('zh_cn','zh_tw','de','el','es','sv','he','nl','pt','ru','it','fr','ja','pl','hu','ro','id','vi','bg','lv','sk'), 10 | 'fileTypes'=>array('php'), 11 | 'exclude'=>array( 12 | '.svn', 13 | 'yiilite.php', 14 | 'yiit.php', 15 | '/i18n/data', 16 | '/messages', 17 | '/vendors', 18 | '/web/js', 19 | ), 20 | ); 21 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.DefinitionRev.txt: -------------------------------------------------------------------------------- 1 | HTML.DefinitionRev 2 | TYPE: int 3 | VERSION: 2.0.0 4 | DEFAULT: 1 5 | --DESCRIPTION-- 6 | 7 |

8 | Revision identifier for your custom definition specified in 9 | %HTML.DefinitionID. This serves the same purpose: uniquely identifying 10 | your custom definition, but this one does so in a chronological 11 | context: revision 3 is more up-to-date then revision 2. Thus, when 12 | this gets incremented, the cache handling is smart enough to clean 13 | up any older revisions of your definition as well as flush the 14 | cache. 15 |

16 | --# vim: et sw=4 sts=4 17 | -------------------------------------------------------------------------------- /framework/views/he/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /protected/views/admin/fakultas/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | Yii::t('app','Admin') => array('/admin/default/index'), 4 | Yii::t('app','Fakultas'), 5 | ); 6 | ?> 7 | 8 |

9 | 'add-button'))?> 10 | 11 | widget('zii.widgets.grid.CGridView', array( 12 | 'id'=>'fakultas-grid', 13 | 'dataProvider'=>$fakultas->search(), 14 | 'filter'=>$fakultas, 15 | 'columns'=>array( 16 | array( 17 | 'class' => 'NumberColumn', 18 | ), 19 | 'nama', 20 | 'kode', 21 | array( 22 | 'class'=>'CButtonColumn', 23 | ), 24 | ), 25 | )); ?> 26 | -------------------------------------------------------------------------------- /framework/views/el/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/es/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/ro/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/vi/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.DisableExternalResources.txt: -------------------------------------------------------------------------------- 1 | URI.DisableExternalResources 2 | TYPE: bool 3 | VERSION: 1.3.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Disables the embedding of external resources, preventing users from 7 | embedding things like images from other hosts. This prevents access 8 | tracking (good for email viewers), bandwidth leeching, cross-site request 9 | forging, goatse.cx posting, and other nasties, but also results in a loss 10 | of end-user functionality (they can't directly post a pic they posted from 11 | Flickr anymore). Use it if you don't have a robust user-content moderation 12 | team. 13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /framework/views/bg/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/hr/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------