├── .gitignore ├── framework ├── cli │ ├── runtime │ │ └── .yii │ └── views │ │ ├── webapp │ │ ├── assets │ │ │ └── .yii │ │ ├── images │ │ │ └── .yii │ │ ├── protected │ │ │ ├── extensions │ │ │ │ └── .yii │ │ │ ├── messages │ │ │ │ └── .yii │ │ │ ├── runtime │ │ │ │ └── .yii │ │ │ ├── tests │ │ │ │ ├── unit │ │ │ │ │ └── .yii │ │ │ │ ├── fixtures │ │ │ │ │ └── .yii │ │ │ │ ├── report │ │ │ │ │ └── .yii │ │ │ │ ├── bootstrap.php │ │ │ │ ├── phpunit.xml │ │ │ │ └── WebTestCase.php │ │ │ ├── commands │ │ │ │ └── shell │ │ │ │ │ └── .yii │ │ │ ├── .htaccess │ │ │ ├── yiic │ │ │ ├── data │ │ │ │ └── testdrive.db │ │ │ ├── yiic.php │ │ │ ├── views │ │ │ │ ├── layouts │ │ │ │ │ ├── column1.php │ │ │ │ │ └── column2.php │ │ │ │ └── site │ │ │ │ │ ├── error.php │ │ │ │ │ ├── pages │ │ │ │ │ └── about.php │ │ │ │ │ └── index.php │ │ │ ├── config │ │ │ │ ├── console.php │ │ │ │ └── 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 │ │ └── fixture.php │ │ └── controller │ │ └── view.php ├── .htaccess ├── views │ ├── pl │ │ ├── log.php │ │ ├── error.php │ │ ├── error400.php │ │ ├── error403.php │ │ ├── error404.php │ │ ├── error500.php │ │ ├── error503.php │ │ ├── exception.php │ │ ├── profile-summary.php │ │ ├── profile-callstack.php │ │ ├── profile-summary-firebug.php │ │ ├── profile-callstack-firebug.php │ │ └── log-firebug.php │ ├── it │ │ ├── error400.php │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── zh_tw │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-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 │ │ └── profile-summary-firebug.php │ ├── zh_cn │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── id │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── profile-callstack-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 │ ├── ro │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── sv │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── bg │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── nl │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── pt │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── fr │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── de │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── log-firebug.php │ └── profile-summary-firebug.php ├── yii-powered.png ├── web │ ├── js │ │ └── source │ │ │ ├── rating │ │ │ ├── star.gif │ │ │ └── delete.gif │ │ │ ├── jquery.multifile.js │ │ │ ├── treeview │ │ │ └── images │ │ │ │ ├── file.gif │ │ │ │ ├── minus.gif │ │ │ │ ├── plus.gif │ │ │ │ ├── folder.gif │ │ │ │ ├── folder-closed.gif │ │ │ │ ├── treeview-gray.gif │ │ │ │ ├── treeview-red.gif │ │ │ │ ├── treeview-black.gif │ │ │ │ ├── treeview-default.gif │ │ │ │ ├── treeview-famfamfam.gif │ │ │ │ ├── treeview-gray-line.gif │ │ │ │ ├── treeview-red-line.gif │ │ │ │ ├── treeview-black-line.gif │ │ │ │ ├── treeview-default-line.gif │ │ │ │ └── treeview-famfamfam-line.gif │ │ │ └── autocomplete │ │ │ └── indicator.gif │ └── 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 │ │ │ └── detailview │ │ │ └── styles.css │ ├── vendors │ │ └── jui │ │ │ └── css │ │ │ └── base │ │ │ └── images │ │ │ ├── ui-anim_basic_16x16.gif │ │ │ ├── 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 │ ├── README │ └── UPGRADE ├── vendors │ ├── htmlpurifier │ │ └── standalone │ │ │ └── HTMLPurifier │ │ │ ├── ConfigSchema │ │ │ ├── schema │ │ │ │ ├── info.ini │ │ │ │ ├── CSS.txt │ │ │ │ ├── Attr.txt │ │ │ │ ├── Core.txt │ │ │ │ ├── FilterParam.txt │ │ │ │ ├── HTML.txt │ │ │ │ ├── URI.txt │ │ │ │ ├── Test.txt │ │ │ │ ├── Output.txt │ │ │ │ ├── Cache.txt │ │ │ │ ├── Filter.txt │ │ │ │ ├── AutoFormatParam.txt │ │ │ │ ├── AutoFormat.txt │ │ │ │ ├── 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 │ │ │ │ ├── Attr.AllowedRel.txt │ │ │ │ ├── AutoFormat.Linkify.txt │ │ │ │ ├── Output.CommentScriptContents.txt │ │ │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ │ │ ├── Core.Language.txt │ │ │ │ ├── URI.Disable.txt │ │ │ │ ├── Attr.DefaultTextDir.txt │ │ │ │ ├── AutoFormatParam.PurifierLinkifyDocURL.txt │ │ │ │ ├── Core.RemoveScriptContents.txt │ │ │ │ ├── URI.DisableResources.txt │ │ │ │ ├── URI.HostBlacklist.txt │ │ │ │ ├── Filter.Custom.txt │ │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ │ ├── AutoFormat.Custom.txt │ │ │ │ ├── Attr.DefaultInvalidImage.txt │ │ │ │ ├── HTML.Parent.txt │ │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ │ ├── Filter.YouTube.txt │ │ │ │ ├── URI.OverrideAllowedSchemes.txt │ │ │ │ ├── HTML.Proprietary.txt │ │ │ │ ├── Cache.SerializerPath.txt │ │ │ │ ├── Core.RemoveInvalidImg.txt │ │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ │ │ ├── Output.Newline.txt │ │ │ │ ├── URI.AllowedSchemes.txt │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ │ ├── Core.EscapeInvalidChildren.txt │ │ │ │ ├── URI.MakeAbsolute.txt │ │ │ │ ├── Core.CollectErrors.txt │ │ │ │ ├── URI.DisableExternal.txt │ │ │ │ ├── CSS.AllowTricky.txt │ │ │ │ ├── Core.ConvertDocumentToFragment.txt │ │ │ │ ├── FilterParam.ExtractStyleBlocksEscaping.txt │ │ │ │ ├── HTML.Doctype.txt │ │ │ │ ├── Attr.IDPrefix.txt │ │ │ │ ├── HTML.Attr.Name.UseCDATA.txt │ │ │ │ ├── Attr.DefaultImageAlt.txt │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt │ │ │ │ ├── HTML.MaxImgLength.txt │ │ │ │ ├── HTML.SafeEmbed.txt │ │ │ │ ├── Filter.ExtractStyleBlocks.Escaping.txt │ │ │ │ ├── Output.SortAttr.txt │ │ │ │ ├── HTML.SafeObject.txt │ │ │ │ ├── FilterParam.ExtractStyleBlocksTidyImpl.txt │ │ │ │ ├── HTML.DefinitionRev.txt │ │ │ │ ├── URI.DisableExternalResources.txt │ │ │ │ ├── Attr.AllowedFrameTargets.txt │ │ │ │ ├── Core.EscapeNonASCIICharacters.txt │ │ │ │ ├── Core.MaintainLineNumbers.txt │ │ │ │ ├── HTML.BlockWrapper.txt │ │ │ │ ├── Core.HiddenElements.txt │ │ │ │ ├── Filter.ExtractStyleBlocks.TidyImpl.txt │ │ │ │ ├── URI.MungeResources.txt │ │ │ │ ├── CSS.AllowedProperties.txt │ │ │ │ ├── CSS.MaxImgLength.txt │ │ │ │ ├── HTML.AllowedAttributes.txt │ │ │ │ ├── Attr.EnableID.txt │ │ │ │ ├── Attr.IDPrefixLocal.txt │ │ │ │ ├── URI.Base.txt │ │ │ │ ├── Core.DirectLexLineNumberSyncInterval.txt │ │ │ │ ├── HTML.CoreModules.txt │ │ │ │ ├── HTML.TidyLevel.txt │ │ │ │ └── Core.AggressivelyFixLt.txt │ │ │ ├── Exception.php │ │ │ └── Interchange │ │ │ │ └── Namespace.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 ├── db │ ├── CDbException.php │ └── schema │ │ └── pgsql │ │ └── CPgsqlTableSchema.php ├── messages │ └── config.php ├── test │ └── CTestCase.php └── yiic.bat ├── protected ├── .htaccess ├── models │ └── Session.php ├── data │ └── testdrive.db ├── yiic ├── runtime │ └── state.bin ├── tests │ ├── fixtures │ │ ├── Kegiatan.php │ │ ├── Session.php │ │ ├── KenaikanJabatan.php │ │ ├── jabatan.php │ │ ├── jenis_dupak.php │ │ ├── penilai.php │ │ ├── sub_unsur.php │ │ ├── kegiatan.php │ │ ├── lampiran.php │ │ ├── unsur.php │ │ ├── catatan_pengusul.php │ │ ├── catatan_ketua_penilai.php │ │ ├── catatan_tim_penilai.php │ │ ├── kenaikan_jabatan.php │ │ ├── kti.php │ │ ├── butir_kegiatan.php │ │ ├── subunsur.php │ │ ├── karya_ilmiah.php │ │ ├── dupak.php │ │ ├── kti_item.php │ │ ├── pegawai.php │ │ └── nilai.php │ ├── unit │ │ ├── KtiTest.php │ │ ├── DupakTest.php │ │ ├── NilaiTest.php │ │ ├── UnsurTest.php │ │ ├── JabatanTest.php │ │ ├── KtiItemTest.php │ │ ├── PegawaiTest.php │ │ ├── PenilaiTest.php │ │ ├── SessionTest.php │ │ ├── KegiatanTest.php │ │ ├── LampiranTest.php │ │ ├── SubUnsurTest.php │ │ ├── SubunsurTest.php │ │ ├── JenisDupakTest.php │ │ ├── KaryaIlmiahTest.php │ │ ├── ButirKegiatanTest.php │ │ ├── butir_kegiatanTest.php │ │ ├── CatatanPengusulTest.php │ │ ├── KenaikanJabatanTest.php │ │ ├── CatatanTimPenilaiTest.php │ │ └── CatatanKetuaPenilaiTest.php │ ├── bootstrap.php │ ├── phpunit.xml │ ├── functional │ │ ├── KtiTest.php │ │ ├── DupakTest.php │ │ ├── NilaiTest.php │ │ ├── UnsurTest.php │ │ ├── JabatanTest.php │ │ ├── KtiItemTest.php │ │ ├── PegawaiTest.php │ │ ├── KegiatanTest.php │ │ ├── SubUnsurTest.php │ │ ├── SubunsurTest.php │ │ ├── JenisDupakTest.php │ │ ├── ButirKegiatanTest.php │ │ └── KenaikanJabatanTest.php │ └── WebTestCase.php ├── views │ ├── dupak │ │ ├── finish.php │ │ ├── index.php │ │ ├── update.php │ │ └── create.php │ ├── layouts │ │ ├── column1.php │ │ └── column2.php │ ├── dupakWizard │ │ ├── index.php │ │ ├── stepFive.php │ │ ├── stepFour.php │ │ ├── stepThree.php │ │ └── pegawai.php │ ├── site │ │ ├── error.php │ │ ├── pages │ │ │ └── about.php │ │ └── index.php │ ├── jenisDupak │ │ ├── _view.php │ │ ├── create.php │ │ ├── index.php │ │ ├── update.php │ │ ├── _search.php │ │ ├── _form.php │ │ └── view.php │ ├── nilai │ │ ├── 1create.php │ │ ├── index.php │ │ └── update.php │ ├── unsur │ │ ├── create.php │ │ ├── index.php │ │ ├── _view.php │ │ └── update.php │ ├── jabatan │ │ ├── create.php │ │ ├── _view.php │ │ ├── index.php │ │ ├── update.php │ │ ├── _search.php │ │ ├── _form.php │ │ └── view.php │ ├── pegawai │ │ ├── create.php │ │ ├── index.php │ │ └── update.php │ ├── kegiatan │ │ ├── create.php │ │ ├── index.php │ │ ├── _view.php │ │ ├── update.php │ │ └── view.php │ ├── kti │ │ ├── index.php │ │ ├── _view.php │ │ ├── update.php │ │ ├── view.php │ │ └── _search.php │ ├── subUnsur │ │ ├── create.php │ │ ├── index.php │ │ ├── _view.php │ │ └── update.php │ ├── butirKegiatan │ │ ├── create.php │ │ ├── index.php │ │ ├── update.php │ │ └── _view.php │ ├── ktiItem │ │ ├── index.php │ │ └── update.php │ └── kenaikanJabatan │ │ ├── create.php │ │ ├── index.php │ │ ├── _view.php │ │ ├── update.php │ │ └── _search.php ├── yiic.php ├── config │ ├── console.php │ └── test.php ├── yiic.bat └── components │ └── ActiveRecord.php ├── themes └── classic │ └── views │ └── .htaccess ├── db ├── db.mwb ├── db.png └── db.mwb.bak ├── css └── bg.gif ├── .htaccess ├── index.php └── index-test.php /.gitignore: -------------------------------------------------------------------------------- 1 | assets 2 | -------------------------------------------------------------------------------- /framework/cli/runtime/.yii: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /framework/cli/views/shell/module/components/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/shell/module/messages/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/shell/module/models/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/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 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/themes/classic/views/layouts/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/themes/classic/views/system/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/db.mwb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/jabatan/master/db/db.mwb -------------------------------------------------------------------------------- /db/db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/jabatan/master/db/db.png -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /css/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/jabatan/master/css/bg.gif -------------------------------------------------------------------------------- /db/db.mwb.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/jabatan/master/db/db.mwb.bak -------------------------------------------------------------------------------- /framework/cli/views/webapp/themes/classic/views/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /protected/models/Session.php: -------------------------------------------------------------------------------- 1 | array( 6 | ), 7 | 'sample2'=>array( 8 | ), 9 | */ 10 | ); 11 | -------------------------------------------------------------------------------- /protected/tests/fixtures/Session.php: -------------------------------------------------------------------------------- 1 | array( 6 | ), 7 | 'sample2'=>array( 8 | ), 9 | */ 10 | ); 11 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Cache.txt: -------------------------------------------------------------------------------- 1 | Cache 2 | DESCRIPTION: Configuration for DefinitionCache and related subclasses. 3 | -------------------------------------------------------------------------------- /framework/web/js/source/treeview/images/treeview-default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/jabatan/master/framework/web/js/source/treeview/images/treeview-default.gif -------------------------------------------------------------------------------- /framework/web/js/source/treeview/images/treeview-famfamfam.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/jabatan/master/framework/web/js/source/treeview/images/treeview-famfamfam.gif -------------------------------------------------------------------------------- /framework/web/js/source/treeview/images/treeview-gray-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/jabatan/master/framework/web/js/source/treeview/images/treeview-gray-line.gif -------------------------------------------------------------------------------- /framework/web/js/source/treeview/images/treeview-red-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/jabatan/master/framework/web/js/source/treeview/images/treeview-red-line.gif -------------------------------------------------------------------------------- /protected/tests/fixtures/KenaikanJabatan.php: -------------------------------------------------------------------------------- 1 | array( 6 | ), 7 | 'sample2'=>array( 8 | ), 9 | */ 10 | ); 11 | -------------------------------------------------------------------------------- /framework/web/js/source/treeview/images/treeview-black-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/jabatan/master/framework/web/js/source/treeview/images/treeview-black-line.gif -------------------------------------------------------------------------------- /framework/web/js/source/treeview/images/treeview-default-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/jabatan/master/framework/web/js/source/treeview/images/treeview-default-line.gif -------------------------------------------------------------------------------- /framework/web/js/source/treeview/images/treeview-famfamfam-line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/jabatan/master/framework/web/js/source/treeview/images/treeview-famfamfam-line.gif -------------------------------------------------------------------------------- /framework/zii/vendors/jui/css/base/images/ui-anim_basic_16x16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/jabatan/master/framework/zii/vendors/jui/css/base/images/ui-anim_basic_16x16.gif -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Filter.txt: -------------------------------------------------------------------------------- 1 | Filter 2 | DESCRIPTION: Directives for turning filters on and off, or specifying custom filters. 3 | -------------------------------------------------------------------------------- /framework/zii/vendors/jui/css/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/jabatan/master/framework/zii/vendors/jui/css/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /framework/zii/vendors/jui/css/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/jabatan/master/framework/zii/vendors/jui/css/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /framework/zii/vendors/jui/css/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/jabatan/master/framework/zii/vendors/jui/css/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /framework/zii/vendors/jui/css/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/jabatan/master/framework/zii/vendors/jui/css/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /framework/zii/vendors/jui/css/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/jabatan/master/framework/zii/vendors/jui/css/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /protected/views/dupak/finish.php: -------------------------------------------------------------------------------- 1 |

Finish

2 |
    3 | 4 |
  1. 5 | 6 |
7 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormatParam.txt: -------------------------------------------------------------------------------- 1 | AutoFormatParam 2 | DESCRIPTION: Configuration for customizing auto-formatting functionality 3 | -------------------------------------------------------------------------------- /framework/zii/vendors/jui/css/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/jabatan/master/framework/zii/vendors/jui/css/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /framework/zii/vendors/jui/css/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/jabatan/master/framework/zii/vendors/jui/css/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /framework/zii/vendors/jui/css/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/jabatan/master/framework/zii/vendors/jui/css/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /framework/zii/vendors/jui/css/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/jabatan/master/framework/zii/vendors/jui/css/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /framework/zii/vendors/jui/css/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/jabatan/master/framework/zii/vendors/jui/css/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /framework/zii/vendors/jui/css/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/jabatan/master/framework/zii/vendors/jui/css/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /framework/zii/vendors/jui/css/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/jabatan/master/framework/zii/vendors/jui/css/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /protected/tests/fixtures/jabatan.php: -------------------------------------------------------------------------------- 1 | array( 6 | 'nama' => '', 7 | ), 8 | 'sample2'=>array( 9 | 'nama' => '', 10 | ), 11 | */ 12 | ); 13 | -------------------------------------------------------------------------------- /framework/zii/vendors/jui/css/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/jabatan/master/framework/zii/vendors/jui/css/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /protected/tests/fixtures/jenis_dupak.php: -------------------------------------------------------------------------------- 1 | array( 6 | 'nama' => '', 7 | ), 8 | 'sample2'=>array( 9 | 'nama' => '', 10 | ), 11 | */ 12 | ); 13 | -------------------------------------------------------------------------------- /framework/cli/views/shell/module/controllers/DefaultController.php: -------------------------------------------------------------------------------- 1 | render('index'); 8 | } 9 | } -------------------------------------------------------------------------------- /protected/yiic.php: -------------------------------------------------------------------------------- 1 | Injectors) 3 | -------------------------------------------------------------------------------- /protected/tests/unit/KtiTest.php: -------------------------------------------------------------------------------- 1 | 'Kti', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /protected/tests/unit/DupakTest.php: -------------------------------------------------------------------------------- 1 | 'Dupak', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /protected/tests/unit/NilaiTest.php: -------------------------------------------------------------------------------- 1 | 'Nilai', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /protected/tests/unit/UnsurTest.php: -------------------------------------------------------------------------------- 1 | 'Unsur', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /protected/tests/unit/JabatanTest.php: -------------------------------------------------------------------------------- 1 | 'Jabatan', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /protected/tests/unit/KtiItemTest.php: -------------------------------------------------------------------------------- 1 | 'KtiItem', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /protected/tests/unit/PegawaiTest.php: -------------------------------------------------------------------------------- 1 | 'Pegawai', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /protected/tests/unit/PenilaiTest.php: -------------------------------------------------------------------------------- 1 | 'Penilai', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /protected/tests/unit/SessionTest.php: -------------------------------------------------------------------------------- 1 | 'Session', 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/tests/unit/KegiatanTest.php: -------------------------------------------------------------------------------- 1 | 'Kegiatan', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /protected/tests/unit/LampiranTest.php: -------------------------------------------------------------------------------- 1 | 'Lampiran', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /protected/tests/unit/SubUnsurTest.php: -------------------------------------------------------------------------------- 1 | 'SubUnsur', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /protected/tests/unit/SubunsurTest.php: -------------------------------------------------------------------------------- 1 | 'Subunsur', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/yiic.php: -------------------------------------------------------------------------------- 1 | 'JenisDupak', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /protected/tests/unit/KaryaIlmiahTest.php: -------------------------------------------------------------------------------- 1 | 'KaryaIlmiah', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /protected/views/layouts/column1.php: -------------------------------------------------------------------------------- 1 | beginContent('application.views.layouts.main'); ?> 2 |
3 |
4 | 5 |
6 |
7 | endContent(); ?> -------------------------------------------------------------------------------- /protected/tests/fixtures/penilai.php: -------------------------------------------------------------------------------- 1 | array( 6 | 'ketua' => '', 7 | 'dupak_id' => '', 8 | ), 9 | 'sample2'=>array( 10 | 'ketua' => '', 11 | 'dupak_id' => '', 12 | ), 13 | */ 14 | ); 15 | -------------------------------------------------------------------------------- /protected/tests/fixtures/sub_unsur.php: -------------------------------------------------------------------------------- 1 | array( 6 | 'nama' => '', 7 | 'unsur_id' => '', 8 | ), 9 | 'sample2'=>array( 10 | 'nama' => '', 11 | 'unsur_id' => '', 12 | ), 13 | */ 14 | ); 15 | -------------------------------------------------------------------------------- /protected/tests/unit/ButirKegiatanTest.php: -------------------------------------------------------------------------------- 1 | 'ButirKegiatan', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /protected/tests/fixtures/kegiatan.php: -------------------------------------------------------------------------------- 1 | array( 6 | 'nama' => '', 7 | 'sub_unsur_id' => '', 8 | ), 9 | 'sample2'=>array( 10 | 'nama' => '', 11 | 'sub_unsur_id' => '', 12 | ), 13 | */ 14 | ); 15 | -------------------------------------------------------------------------------- /protected/tests/fixtures/lampiran.php: -------------------------------------------------------------------------------- 1 | array( 6 | 'deskripsi' => '', 7 | 'dupak_id' => '', 8 | ), 9 | 'sample2'=>array( 10 | 'deskripsi' => '', 11 | 'dupak_id' => '', 12 | ), 13 | */ 14 | ); 15 | -------------------------------------------------------------------------------- /protected/tests/fixtures/unsur.php: -------------------------------------------------------------------------------- 1 | array( 6 | 'nama' => '', 7 | 'jenis_dupak_id' => '', 8 | ), 9 | 'sample2'=>array( 10 | 'nama' => '', 11 | 'jenis_dupak_id' => '', 12 | ), 13 | */ 14 | ); 15 | -------------------------------------------------------------------------------- /protected/tests/unit/butir_kegiatanTest.php: -------------------------------------------------------------------------------- 1 | 'butir_kegiatan', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /protected/tests/unit/CatatanPengusulTest.php: -------------------------------------------------------------------------------- 1 | 'CatatanPengusul', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /protected/tests/unit/KenaikanJabatanTest.php: -------------------------------------------------------------------------------- 1 | 'KenaikanJabatan', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /protected/tests/fixtures/catatan_pengusul.php: -------------------------------------------------------------------------------- 1 | array( 6 | 'deskripsi' => '', 7 | 'dupak_id' => '', 8 | ), 9 | 'sample2'=>array( 10 | 'deskripsi' => '', 11 | 'dupak_id' => '', 12 | ), 13 | */ 14 | ); 15 | -------------------------------------------------------------------------------- /protected/tests/unit/CatatanTimPenilaiTest.php: -------------------------------------------------------------------------------- 1 | 'CatatanTimPenilai', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/views/layouts/column1.php: -------------------------------------------------------------------------------- 1 | beginContent('application.views.layouts.main'); ?> 2 |
3 |
4 | 5 |
6 |
7 | endContent(); ?> -------------------------------------------------------------------------------- /protected/tests/fixtures/catatan_ketua_penilai.php: -------------------------------------------------------------------------------- 1 | array( 6 | 'deskripsi' => '', 7 | 'dupak_id' => '', 8 | ), 9 | 'sample2'=>array( 10 | 'deskripsi' => '', 11 | 'dupak_id' => '', 12 | ), 13 | */ 14 | ); 15 | -------------------------------------------------------------------------------- /protected/tests/fixtures/catatan_tim_penilai.php: -------------------------------------------------------------------------------- 1 | array( 6 | 'deskripsi' => '', 7 | 'dupak_id' => '', 8 | ), 9 | 'sample2'=>array( 10 | 'deskripsi' => '', 11 | 'dupak_id' => '', 12 | ), 13 | */ 14 | ); 15 | -------------------------------------------------------------------------------- /protected/tests/fixtures/kenaikan_jabatan.php: -------------------------------------------------------------------------------- 1 | array( 6 | 'pegawai_id' => '', 7 | 'jabatan_id' => '', 8 | ), 9 | 'sample2'=>array( 10 | 'pegawai_id' => '', 11 | 'jabatan_id' => '', 12 | ), 13 | */ 14 | ); 15 | -------------------------------------------------------------------------------- /protected/tests/fixtures/kti.php: -------------------------------------------------------------------------------- 1 | array( 6 | 'kenaikan_jabatan_id' => '', 7 | 'dupak_id' => '', 8 | ), 9 | 'sample2'=>array( 10 | 'kenaikan_jabatan_id' => '', 11 | 'dupak_id' => '', 12 | ), 13 | */ 14 | ); 15 | -------------------------------------------------------------------------------- /protected/views/dupakWizard/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Dupak Wizard', 4 | );?> 5 |

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

6 | 7 |

You may change the content of this page by modifying the file .

8 | -------------------------------------------------------------------------------- /protected/tests/unit/CatatanKetuaPenilaiTest.php: -------------------------------------------------------------------------------- 1 | 'CatatanKetuaPenilai', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /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/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 | dirname(__FILE__).DIRECTORY_SEPARATOR.'..', 7 | 'name'=>'My Console Application', 8 | ); -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | 8 | Whether or not to allow safe, proprietary CSS values. 9 |

10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /protected/tests/fixtures/butir_kegiatan.php: -------------------------------------------------------------------------------- 1 | array( 6 | 'nama' => '', 7 | 'kegiatan_id' => '', 8 | 'parent_id' => '', 9 | ), 10 | 'sample2'=>array( 11 | 'nama' => '', 12 | 'kegiatan_id' => '', 13 | 'parent_id' => '', 14 | ), 15 | */ 16 | ); 17 | -------------------------------------------------------------------------------- /protected/tests/fixtures/subunsur.php: -------------------------------------------------------------------------------- 1 | array( 6 | 'nama' => '', 7 | 'unsur_id' => '', 8 | 'jenis_dupak_id' => '', 9 | ), 10 | 'sample2'=>array( 11 | 'nama' => '', 12 | 'unsur_id' => '', 13 | 'jenis_dupak_id' => '', 14 | ), 15 | */ 16 | ); 17 | -------------------------------------------------------------------------------- /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 .

-------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/config/console.php: -------------------------------------------------------------------------------- 1 | dirname(__FILE__).DIRECTORY_SEPARATOR.'..', 7 | 'name'=>'My Console Application', 8 | ); -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /protected/views/dupakWizard/stepFive.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Dupak Wizard'=>array('dupakWizard/index'), 4 | 'StepFive', 5 | );?> 6 |

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

7 | 8 |

You may change the content of this page by modifying the file .

9 | -------------------------------------------------------------------------------- /protected/views/dupakWizard/stepFour.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Dupak Wizard'=>array('dupakWizard/index'), 4 | 'StepFour', 5 | );?> 6 |

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

7 | 8 |

You may change the content of this page by modifying the file .

9 | -------------------------------------------------------------------------------- /protected/views/dupakWizard/stepThree.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Dupak Wizard'=>array('dupakWizard/index'), 4 | 'StepThree', 5 | );?> 6 |

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

7 | 8 |

You may change the content of this page by modifying the file .

9 | -------------------------------------------------------------------------------- /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/tests/bootstrap.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 .

-------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 'HTML Purifier XNone' 10 | ); 11 | 12 | // vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /protected/views/dupakWizard/pegawai.php: -------------------------------------------------------------------------------- 1 | widget('zii.widgets.CDetailView', array( 2 | 'data'=>$pegawai, 3 | 'attributes'=>array( 4 | 'id', 5 | 'nip', 6 | 'nama', 7 | 'nskp', 8 | 'tempat_lahir', 9 | 'tanggal_lahir', 10 | 'tmt', 11 | 'bidang_kepakaran', 12 | 'jabatan', 13 | ), 14 | )); ?> 15 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/jenisDupak/_view.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | getAttributeLabel('id')); ?>: 4 | id), array('view', 'id'=>$data->id)); ?> 5 |
6 | 7 | getAttributeLabel('nama')); ?>: 8 | nama); ?> 9 |
10 | 11 | 12 |
-------------------------------------------------------------------------------- /protected/views/nilai/1create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Nilais'=>array('index'), 4 | 'Create', 5 | ); 6 | 7 | $this->menu=array( 8 | array('label'=>'List Nilai', 'url'=>array('index')), 9 | array('label'=>'Manage Nilai', 'url'=>array('admin')), 10 | ); 11 | ?> 12 | 13 |

Create Nilai

14 | 15 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/unsur/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Unsurs'=>array('index'), 4 | 'Create', 5 | ); 6 | 7 | $this->menu=array( 8 | array('label'=>'List Unsur', 'url'=>array('index')), 9 | array('label'=>'Manage Unsur', 'url'=>array('admin')), 10 | ); 11 | ?> 12 | 13 |

Create Unsur

14 | 15 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/tests/phpunit.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /protected/views/jabatan/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Jabatans'=>array('index'), 4 | 'Create', 5 | ); 6 | 7 | $this->menu=array( 8 | array('label'=>'List Jabatan', 'url'=>array('index')), 9 | array('label'=>'Manage Jabatan', 'url'=>array('admin')), 10 | ); 11 | ?> 12 | 13 |

Create Jabatan

14 | 15 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/pegawai/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Pegawais'=>array('index'), 4 | 'Create', 5 | ); 6 | 7 | $this->menu=array( 8 | array('label'=>'List Pegawai', 'url'=>array('index')), 9 | array('label'=>'Manage Pegawai', 'url'=>array('admin')), 10 | ); 11 | ?> 12 | 13 |

Create Pegawai

14 | 15 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/jabatan/_view.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | getAttributeLabel('id')); ?>: 4 | id), array('view', 'id'=>$data->id)); ?> 5 |
6 | 7 | getAttributeLabel('nama')); ?>: 8 | nama); ?> 9 |
10 | 11 |
12 | -------------------------------------------------------------------------------- /protected/views/kegiatan/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Kegiatans'=>array('index'), 4 | 'Create', 5 | ); 6 | 7 | $this->menu=array( 8 | array('label'=>'List Kegiatan', 'url'=>array('index')), 9 | array('label'=>'Manage Kegiatan', 'url'=>array('admin')), 10 | ); 11 | ?> 12 | 13 |

Create Kegiatan

14 | 15 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/kti/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Ktis', 4 | ); 5 | 6 | $this->menu=array( 7 | array('label'=>'Create Kti', 'url'=>array('create')), 8 | array('label'=>'Manage Kti', 'url'=>array('admin')), 9 | ); 10 | ?> 11 | 12 |

Ktis

13 | 14 | widget('zii.widgets.CListView', array( 15 | 'dataProvider'=>$dataProvider, 16 | 'itemView'=>'_view', 17 | )); ?> 18 | -------------------------------------------------------------------------------- /protected/views/subUnsur/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Sub Unsurs'=>array('index'), 4 | 'Create', 5 | ); 6 | 7 | $this->menu=array( 8 | array('label'=>'List SubUnsur', 'url'=>array('index')), 9 | array('label'=>'Manage SubUnsur', 'url'=>array('admin')), 10 | ); 11 | ?> 12 | 13 |

Create SubUnsur

14 | 15 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/tests/fixtures/karya_ilmiah.php: -------------------------------------------------------------------------------- 1 | array( 6 | 'judul' => '', 7 | 'p2jp_instansi' => '', 8 | 'p2jp_lipi' => '', 9 | 'keterangan' => '', 10 | 'kti_id' => '', 11 | ), 12 | 'sample2'=>array( 13 | 'judul' => '', 14 | 'p2jp_instansi' => '', 15 | 'p2jp_lipi' => '', 16 | 'keterangan' => '', 17 | 'kti_id' => '', 18 | ), 19 | */ 20 | ); 21 | -------------------------------------------------------------------------------- /protected/views/dupak/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Dupaks', 4 | ); 5 | 6 | $this->menu=array( 7 | array('label'=>'Create Dupak', 'url'=>array('create')), 8 | array('label'=>'Manage Dupak', 'url'=>array('admin')), 9 | ); 10 | ?> 11 | 12 |

Dupaks

13 | 14 | widget('zii.widgets.CListView', array( 15 | 'dataProvider'=>$dataProvider, 16 | 'itemView'=>'_view', 17 | )); ?> 18 | -------------------------------------------------------------------------------- /protected/views/jenisDupak/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Jenis Dupaks'=>array('index'), 4 | 'Create', 5 | ); 6 | 7 | $this->menu=array( 8 | array('label'=>'List JenisDupak', 'url'=>array('index')), 9 | array('label'=>'Manage JenisDupak', 'url'=>array('admin')), 10 | ); 11 | ?> 12 | 13 |

Create JenisDupak

14 | 15 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/nilai/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Nilais', 4 | ); 5 | 6 | $this->menu=array( 7 | array('label'=>'Create Nilai', 'url'=>array('create')), 8 | array('label'=>'Manage Nilai', 'url'=>array('admin')), 9 | ); 10 | ?> 11 | 12 |

Nilais

13 | 14 | widget('zii.widgets.CListView', array( 15 | 'dataProvider'=>$dataProvider, 16 | 'itemView'=>'_view', 17 | )); ?> 18 | -------------------------------------------------------------------------------- /protected/views/unsur/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Unsurs', 4 | ); 5 | 6 | $this->menu=array( 7 | array('label'=>'Create Unsur', 'url'=>array('create')), 8 | array('label'=>'Manage Unsur', 'url'=>array('admin')), 9 | ); 10 | ?> 11 | 12 |

Unsurs

13 | 14 | widget('zii.widgets.CListView', array( 15 | 'dataProvider'=>$dataProvider, 16 | 'itemView'=>'_view', 17 | )); ?> 18 | -------------------------------------------------------------------------------- /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/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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /protected/views/jabatan/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Jabatans', 4 | ); 5 | 6 | $this->menu=array( 7 | array('label'=>'Create Jabatan', 'url'=>array('create')), 8 | array('label'=>'Manage Jabatan', 'url'=>array('admin')), 9 | ); 10 | ?> 11 | 12 |

Jabatans

13 | 14 | widget('zii.widgets.CListView', array( 15 | 'dataProvider'=>$dataProvider, 16 | 'itemView'=>'_view', 17 | )); ?> 18 | -------------------------------------------------------------------------------- /protected/views/pegawai/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Pegawais', 4 | ); 5 | 6 | $this->menu=array( 7 | array('label'=>'Create Pegawai', 'url'=>array('create')), 8 | array('label'=>'Manage Pegawai', 'url'=>array('admin')), 9 | ); 10 | ?> 11 | 12 |

Pegawais

13 | 14 | widget('zii.widgets.CListView', array( 15 | 'dataProvider'=>$dataProvider, 16 | 'itemView'=>'_view', 17 | )); ?> 18 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/tests/phpunit.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /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/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/tests/fixtures/dupak.php: -------------------------------------------------------------------------------- 1 | array( 6 | 'nomor' => '', 7 | 'mp_mulai' => '', 8 | 'mp_selesai' => '', 9 | 'kenaikan_jabatan_id' => '', 10 | 'jenis_dupak_id' => '', 11 | ), 12 | 'sample2'=>array( 13 | 'nomor' => '', 14 | 'mp_mulai' => '', 15 | 'mp_selesai' => '', 16 | 'kenaikan_jabatan_id' => '', 17 | 'jenis_dupak_id' => '', 18 | ), 19 | */ 20 | ); 21 | -------------------------------------------------------------------------------- /protected/views/butirKegiatan/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Butir Kegiatans'=>array('index'), 4 | 'Create', 5 | ); 6 | 7 | $this->menu=array( 8 | array('label'=>'List ButirKegiatan', 'url'=>array('index')), 9 | array('label'=>'Manage ButirKegiatan', 'url'=>array('admin')), 10 | ); 11 | ?> 12 | 13 |

Create ButirKegiatan

14 | 15 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/kegiatan/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Kegiatans', 4 | ); 5 | 6 | $this->menu=array( 7 | array('label'=>'Create Kegiatan', 'url'=>array('create')), 8 | array('label'=>'Manage Kegiatan', 'url'=>array('admin')), 9 | ); 10 | ?> 11 | 12 |

Kegiatans

13 | 14 | widget('zii.widgets.CListView', array( 15 | 'dataProvider'=>$dataProvider, 16 | 'itemView'=>'_view', 17 | )); ?> 18 | -------------------------------------------------------------------------------- /protected/views/ktiItem/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Kti Items', 4 | ); 5 | 6 | $this->menu=array( 7 | array('label'=>'Create KtiItem', 'url'=>array('create')), 8 | array('label'=>'Manage KtiItem', 'url'=>array('admin')), 9 | ); 10 | ?> 11 | 12 |

Kti Items

13 | 14 | widget('zii.widgets.CListView', array( 15 | 'dataProvider'=>$dataProvider, 16 | 'itemView'=>'_view', 17 | )); ?> 18 | -------------------------------------------------------------------------------- /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/AutoFormatParam.PurifierLinkifyDocURL.txt: -------------------------------------------------------------------------------- 1 | AutoFormatParam.PurifierLinkifyDocURL 2 | TYPE: string 3 | VERSION: 2.0.1 4 | DEFAULT: '#%s' 5 | --DESCRIPTION-- 6 | 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 | 13 | -------------------------------------------------------------------------------- /protected/views/subUnsur/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Sub Unsurs', 4 | ); 5 | 6 | $this->menu=array( 7 | array('label'=>'Create SubUnsur', 'url'=>array('create')), 8 | array('label'=>'Manage SubUnsur', 'url'=>array('admin')), 9 | ); 10 | ?> 11 | 12 |

Sub Unsurs

13 | 14 | widget('zii.widgets.CListView', array( 15 | 'dataProvider'=>$dataProvider, 16 | 'itemView'=>'_view', 17 | )); ?> 18 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | run(); 14 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.DisableResources.txt: -------------------------------------------------------------------------------- 1 | URI.DisableResources 2 | TYPE: bool 3 | VERSION: 1.3.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

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

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /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/views/jenisDupak/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Jenis Dupaks', 4 | ); 5 | 6 | $this->menu=array( 7 | array('label'=>'Create JenisDupak', 'url'=>array('create')), 8 | array('label'=>'Manage JenisDupak', 'url'=>array('admin')), 9 | ); 10 | ?> 11 | 12 |

Jenis Dupaks

13 | 14 | widget('zii.widgets.CListView', array( 15 | 'dataProvider'=>$dataProvider, 16 | 'itemView'=>'_view', 17 | )); ?> 18 | -------------------------------------------------------------------------------- /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/tests/fixtures/kti_item.php: -------------------------------------------------------------------------------- 1 | array( 6 | 'judul' => '', 7 | 'unsur' => '', 8 | 'p2jp_instansi' => '', 9 | 'p2jp_lipi' => '', 10 | 'keterangan' => '', 11 | 'kti_id' => '', 12 | ), 13 | 'sample2'=>array( 14 | 'judul' => '', 15 | 'unsur' => '', 16 | 'p2jp_instansi' => '', 17 | 'p2jp_lipi' => '', 18 | 'keterangan' => '', 19 | 'kti_id' => '', 20 | ), 21 | */ 22 | ); 23 | -------------------------------------------------------------------------------- /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/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/butirKegiatan/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Butir Kegiatans', 4 | ); 5 | 6 | $this->menu=array( 7 | array('label'=>'Create ButirKegiatan', 'url'=>array('create')), 8 | array('label'=>'Manage ButirKegiatan', 'url'=>array('admin')), 9 | ); 10 | ?> 11 | 12 |

Butir Kegiatans

13 | 14 | widget('zii.widgets.CListView', array( 15 | 'dataProvider'=>$dataProvider, 16 | 'itemView'=>'_view', 17 | )); ?> 18 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/index.php: -------------------------------------------------------------------------------- 1 | run(); 13 | -------------------------------------------------------------------------------- /protected/views/kenaikanJabatan/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Kenaikan Jabatan'=>array('index'), 4 | 'Create', 5 | ); 6 | 7 | $this->menu=array( 8 | array('label'=>'List KenaikanJabatan', 'url'=>array('index')), 9 | array('label'=>'Manage KenaikanJabatan', 'url'=>array('admin')), 10 | ); 11 | ?> 12 | 13 |

Create KenaikanJabatan

14 | 15 | renderPartial('_form', array('kenaikanJabatan'=>$kenaikanJabatan)); ?> 16 | -------------------------------------------------------------------------------- /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/Filter.YouTube.txt: -------------------------------------------------------------------------------- 1 | Filter.YouTube 2 | TYPE: bool 3 | VERSION: 3.1.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | This directive enables YouTube video embedding in HTML Purifier. Check 8 | this document 9 | on embedding videos for more information on what this filter does. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /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/views/kenaikanJabatan/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Kenaikan Jabatans', 4 | ); 5 | 6 | $this->menu=array( 7 | array('label'=>'Create KenaikanJabatan', 'url'=>array('create')), 8 | array('label'=>'Manage KenaikanJabatan', 'url'=>array('admin')), 9 | ); 10 | ?> 11 | 12 |

Kenaikan Jabatans

13 | 14 | widget('zii.widgets.CListView', array( 15 | 'dataProvider'=>$dataProvider, 16 | 'itemView'=>'_view', 17 | )); ?> 18 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/Interchange/Namespace.php: -------------------------------------------------------------------------------- 1 | 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 | -------------------------------------------------------------------------------- /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/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/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 | --# vim: et sw=4 sts=4 16 | -------------------------------------------------------------------------------- /framework/views/ru/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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-test.php: -------------------------------------------------------------------------------- 1 | run(); 16 | -------------------------------------------------------------------------------- /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/id/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protected/views/subUnsur/_view.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | getAttributeLabel('id')); ?>: 4 | id), array('view', 'id'=>$data->id)); ?> 5 |
6 | 7 | getAttributeLabel('nama')); ?>: 8 | nama); ?> 9 |
10 | 11 | getAttributeLabel('unsur_id')); ?>: 12 | unsur_id); ?> 13 |
14 | 15 | 16 |
-------------------------------------------------------------------------------- /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/el/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/es/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/it/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/ro/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/sv/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protected/tests/fixtures/pegawai.php: -------------------------------------------------------------------------------- 1 | array( 6 | 'nip' => '', 7 | 'nama' => '', 8 | 'nskp' => '', 9 | 'tempat_lahir' => '', 10 | 'tanggal_lahir' => '', 11 | 'tmt' => '', 12 | 'bidang_kepakaran' => '', 13 | 'jabatan_id' => '', 14 | ), 15 | 'sample2'=>array( 16 | 'nip' => '', 17 | 'nama' => '', 18 | 'nskp' => '', 19 | 'tempat_lahir' => '', 20 | 'tanggal_lahir' => '', 21 | 'tmt' => '', 22 | 'bidang_kepakaran' => '', 23 | 'jabatan_id' => '', 24 | ), 25 | */ 26 | ); 27 | -------------------------------------------------------------------------------- /protected/views/kegiatan/_view.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | getAttributeLabel('id')); ?>: 4 | id), array('view', 'id'=>$data->id)); ?> 5 |
6 | 7 | getAttributeLabel('nama')); ?>: 8 | nama); ?> 9 |
10 | 11 | getAttributeLabel('sub_unsur_id')); ?>: 12 | sub_unsur_id); ?> 13 |
14 | 15 | 16 |
-------------------------------------------------------------------------------- /protected/views/unsur/_view.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | getAttributeLabel('id')); ?>: 4 | id), array('view', 'id'=>$data->id)); ?> 5 |
6 | 7 | getAttributeLabel('nama')); ?>: 8 | nama); ?> 9 |
10 | 11 | getAttributeLabel('jenis_dupak_id')); ?>: 12 | jenis_dupak_id); ?> 13 |
14 | 15 | 16 |
-------------------------------------------------------------------------------- /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/bg/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /framework/views/nl/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/pt/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/fr/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protected/tests/fixtures/nilai.php: -------------------------------------------------------------------------------- 1 | array( 6 | 'ip_lama' => '', 7 | 'ip_baru' => '', 8 | 'ip_jumlah' => '', 9 | 'tp_lama' => '', 10 | 'tp_baru' => '', 11 | 'tp_jumlah' => '', 12 | 'butir_kegiatan_id' => '', 13 | 'dupak_id' => '', 14 | ), 15 | 'sample2'=>array( 16 | 'ip_lama' => '', 17 | 'ip_baru' => '', 18 | 'ip_jumlah' => '', 19 | 'tp_lama' => '', 20 | 'tp_baru' => '', 21 | 'tp_jumlah' => '', 22 | 'butir_kegiatan_id' => '', 23 | 'dupak_id' => '', 24 | ), 25 | */ 26 | ); 27 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/index-test.php: -------------------------------------------------------------------------------- 1 | run(); 16 | -------------------------------------------------------------------------------- /protected/views/kenaikanJabatan/_view.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | getAttributeLabel('id')); ?>: 4 | id), array('view', 'id'=>$data->id)); ?> 5 |
6 | 7 | getAttributeLabel('pegawai_id')); ?>: 8 | pegawai_id); ?> 9 |
10 | 11 | getAttributeLabel('jabatan_id')); ?>: 12 | jabatan_id); ?> 13 |
14 | 15 | 16 |
-------------------------------------------------------------------------------- /protected/views/kti/_view.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | getAttributeLabel('id')); ?>: 4 | id), array('view', 'id'=>$data->id)); ?> 5 |
6 | 7 | getAttributeLabel('kenaikan_jabatan_id')); ?>: 8 | kenaikan_jabatan_id); ?> 9 |
10 | 11 | getAttributeLabel('dupak_id')); ?>: 12 | dupak_id); ?> 13 |
14 | 15 | 16 |
-------------------------------------------------------------------------------- /framework/views/de/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /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/views/kti/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Ktis'=>array('index'), 4 | $model->id=>array('view','id'=>$model->id), 5 | 'Update', 6 | ); 7 | 8 | $this->menu=array( 9 | array('label'=>'List Kti', 'url'=>array('index')), 10 | array('label'=>'Create Kti', 'url'=>array('create')), 11 | array('label'=>'View Kti', 'url'=>array('view', 'id'=>$model->id)), 12 | array('label'=>'Manage Kti', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

Update Kti id; ?>

17 | 18 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/dupak/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Dupaks'=>array('index'), 4 | $model->id=>array('view','id'=>$model->id), 5 | 'Update', 6 | ); 7 | 8 | $this->menu=array( 9 | array('label'=>'List Dupak', 'url'=>array('index')), 10 | array('label'=>'Create Dupak', 'url'=>array('create')), 11 | array('label'=>'View Dupak', 'url'=>array('view', 'id'=>$model->id)), 12 | array('label'=>'Manage Dupak', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

Update Dupak id; ?>

17 | 18 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/nilai/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Nilais'=>array('index'), 4 | $model->id=>array('view','id'=>$model->id), 5 | 'Update', 6 | ); 7 | 8 | $this->menu=array( 9 | array('label'=>'List Nilai', 'url'=>array('index')), 10 | array('label'=>'Create Nilai', 'url'=>array('create')), 11 | array('label'=>'View Nilai', 'url'=>array('view', 'id'=>$model->id)), 12 | array('label'=>'Manage Nilai', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

Update Nilai id; ?>

17 | 18 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/unsur/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Unsurs'=>array('index'), 4 | $model->id=>array('view','id'=>$model->id), 5 | 'Update', 6 | ); 7 | 8 | $this->menu=array( 9 | array('label'=>'List Unsur', 'url'=>array('index')), 10 | array('label'=>'Create Unsur', 'url'=>array('create')), 11 | array('label'=>'View Unsur', 'url'=>array('view', 'id'=>$model->id)), 12 | array('label'=>'Manage Unsur', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

Update Unsur id; ?>

17 | 18 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /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/components/ActiveRecord.php: -------------------------------------------------------------------------------- 1 | _session === null){ 10 | $this->_session = new CHttpSession; 11 | $this->_session->open(); 12 | } 13 | 14 | } 15 | 16 | public function setSession($data) 17 | { 18 | $this->_session[get_class($this)]= $data; 19 | } 20 | 21 | public function getSession() 22 | { 23 | return isset($this->_session[get_class($this)])? 24 | $this->_session[get_class($this)]:false; 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/FilterParam.ExtractStyleBlocksEscaping.txt: -------------------------------------------------------------------------------- 1 | FilterParam.ExtractStyleBlocksEscaping 2 | TYPE: bool 3 | VERSION: 3.0.0 4 | DEFAULT: true 5 | ALIASES: Filter.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 | 15 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /protected/views/jabatan/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Jabatans'=>array('index'), 4 | $model->id=>array('view','id'=>$model->id), 5 | 'Update', 6 | ); 7 | 8 | $this->menu=array( 9 | array('label'=>'List Jabatan', 'url'=>array('index')), 10 | array('label'=>'Create Jabatan', 'url'=>array('create')), 11 | array('label'=>'View Jabatan', 'url'=>array('view', 'id'=>$model->id)), 12 | array('label'=>'Manage Jabatan', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

Update Jabatan id; ?>

17 | 18 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/ktiItem/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Kti Items'=>array('index'), 4 | $model->id=>array('view','id'=>$model->id), 5 | 'Update', 6 | ); 7 | 8 | $this->menu=array( 9 | array('label'=>'List KtiItem', 'url'=>array('index')), 10 | array('label'=>'Create KtiItem', 'url'=>array('create')), 11 | array('label'=>'View KtiItem', 'url'=>array('view', 'id'=>$model->id)), 12 | array('label'=>'Manage KtiItem', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

Update KtiItem id; ?>

17 | 18 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/pegawai/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Pegawais'=>array('index'), 4 | $model->id=>array('view','id'=>$model->id), 5 | 'Update', 6 | ); 7 | 8 | $this->menu=array( 9 | array('label'=>'List Pegawai', 'url'=>array('index')), 10 | array('label'=>'Create Pegawai', 'url'=>array('create')), 11 | array('label'=>'View Pegawai', 'url'=>array('view', 'id'=>$model->id)), 12 | array('label'=>'Manage Pegawai', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

Update Pegawai id; ?>

17 | 18 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /framework/base/CException.php: -------------------------------------------------------------------------------- 1 | 6 | * @link http://www.yiiframework.com/ 7 | * @copyright Copyright © 2008-2010 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 1678 2010-01-07 21:02:00Z 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 | -------------------------------------------------------------------------------- /protected/views/kegiatan/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Kegiatans'=>array('index'), 4 | $model->id=>array('view','id'=>$model->id), 5 | 'Update', 6 | ); 7 | 8 | $this->menu=array( 9 | array('label'=>'List Kegiatan', 'url'=>array('index')), 10 | array('label'=>'Create Kegiatan', 'url'=>array('create')), 11 | array('label'=>'View Kegiatan', 'url'=>array('view', 'id'=>$model->id)), 12 | array('label'=>'Manage Kegiatan', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

Update Kegiatan id; ?>

17 | 18 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /protected/views/subUnsur/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Sub Unsurs'=>array('index'), 4 | $model->id=>array('view','id'=>$model->id), 5 | 'Update', 6 | ); 7 | 8 | $this->menu=array( 9 | array('label'=>'List SubUnsur', 'url'=>array('index')), 10 | array('label'=>'Create SubUnsur', 'url'=>array('create')), 11 | array('label'=>'View SubUnsur', 'url'=>array('view', 'id'=>$model->id)), 12 | array('label'=>'Manage SubUnsur', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

Update SubUnsur id; ?>

17 | 18 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /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/db/CDbException.php: -------------------------------------------------------------------------------- 1 | 6 | * @link http://www.yiiframework.com/ 7 | * @copyright Copyright © 2008-2010 Yii Software LLC 8 | * @license http://www.yiiframework.com/license/ 9 | */ 10 | 11 | /** 12 | * CDbException represents an exception that is caused by some DB-related operations. 13 | * 14 | * @author Qiang Xue 15 | * @version $Id: CDbException.php 1678 2010-01-07 21:02:00Z qiang.xue $ 16 | * @package system.db 17 | * @since 1.0 18 | */ 19 | class CDbException extends CException 20 | { 21 | } -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /protected/views/jenisDupak/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Jenis Dupaks'=>array('index'), 4 | $model->id=>array('view','id'=>$model->id), 5 | 'Update', 6 | ); 7 | 8 | $this->menu=array( 9 | array('label'=>'List JenisDupak', 'url'=>array('index')), 10 | array('label'=>'Create JenisDupak', 'url'=>array('create')), 11 | array('label'=>'View JenisDupak', 'url'=>array('view', 'id'=>$model->id)), 12 | array('label'=>'Manage JenisDupak', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

Update JenisDupak id; ?>

17 | 18 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /framework/views/zh_cn/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/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 probably want 11 | to enable this with %HTML.SafeObject. 12 | Highly experimental. 13 |

14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /framework/views/id/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/ja/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/zh_tw/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/bg/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/el/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/he/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/it/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/no/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/pl/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/pt/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/ro/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/ru/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/sv/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protected/views/butirKegiatan/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Butir Kegiatans'=>array('index'), 4 | $model->id=>array('view','id'=>$model->id), 5 | 'Update', 6 | ); 7 | 8 | $this->menu=array( 9 | array('label'=>'List ButirKegiatan', 'url'=>array('index')), 10 | array('label'=>'Create ButirKegiatan', 'url'=>array('create')), 11 | array('label'=>'View ButirKegiatan', 'url'=>array('view', 'id'=>$model->id)), 12 | array('label'=>'Manage ButirKegiatan', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

Update ButirKegiatan id; ?>

17 | 18 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /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/views/es/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /framework/views/de/log-firebug.php: -------------------------------------------------------------------------------- 1 | 24 | -------------------------------------------------------------------------------- /protected/views/kenaikanJabatan/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Kenaikan Jabatans'=>array('index'), 4 | $model->id=>array('view','id'=>$model->id), 5 | 'Update', 6 | ); 7 | 8 | $this->menu=array( 9 | array('label'=>'List KenaikanJabatan', 'url'=>array('index')), 10 | array('label'=>'Create KenaikanJabatan', 'url'=>array('create')), 11 | array('label'=>'View KenaikanJabatan', 'url'=>array('view', 'id'=>$model->id)), 12 | array('label'=>'Manage KenaikanJabatan', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

Update KenaikanJabatan id; ?>

17 | 18 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /framework/views/fr/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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 may also want to 10 | enable %HTML.SafeEmbed for maximum interoperability with Internet Explorer, 11 | although embed tags will cause your website to stop validating. 12 | Highly experimental. 13 |

14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /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'), 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 | ); -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/FilterParam.ExtractStyleBlocksTidyImpl.txt: -------------------------------------------------------------------------------- 1 | FilterParam.ExtractStyleBlocksTidyImpl 2 | TYPE: mixed/null 3 | VERSION: 3.1.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 |

7 | If left NULL, HTML Purifier will attempt to instantiate a csstidy 8 | class to use for internal cleaning. This will usually be good enough. 9 |

10 |

11 | However, for trusted user input, you can set this to false to 12 | disable cleaning. In addition, you can supply your own concrete implementation 13 | of Tidy's interface to use, although I don't know why you'd want to do that. 14 |

15 | -------------------------------------------------------------------------------- /protected/views/jabatan/_search.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | beginWidget('CActiveForm', array( 4 | 'action'=>Yii::app()->createUrl($this->route), 5 | 'method'=>'get', 6 | )); ?> 7 | 8 |
9 | label($model,'id'); ?> 10 | textField($model,'id'); ?> 11 |
12 | 13 |
14 | label($model,'nama'); ?> 15 | textField($model,'nama',array('size'=>60,'maxlength'=>255)); ?> 16 |
17 | 18 |
19 | 20 |
21 | 22 | endWidget(); ?> 23 | 24 |
-------------------------------------------------------------------------------- /protected/views/butirKegiatan/_view.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | getAttributeLabel('id')); ?>: 4 | id), array('view', 'id'=>$data->id)); ?> 5 |
6 | 7 | getAttributeLabel('nama')); ?>: 8 | nama); ?> 9 |
10 | 11 | getAttributeLabel('kegiatan_id')); ?>: 12 | kegiatan_id); ?> 13 |
14 | 15 | getAttributeLabel('parent_id')); ?>: 16 | parent_id); ?> 17 |
18 | 19 | 20 |
-------------------------------------------------------------------------------- /protected/views/jenisDupak/_search.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | beginWidget('CActiveForm', array( 4 | 'action'=>Yii::app()->createUrl($this->route), 5 | 'method'=>'get', 6 | )); ?> 7 | 8 |
9 | label($model,'id'); ?> 10 | textField($model,'id'); ?> 11 |
12 | 13 |
14 | label($model,'nama'); ?> 15 | textField($model,'nama',array('size'=>60,'maxlength'=>255)); ?> 16 |
17 | 18 |
19 | 20 |
21 | 22 | endWidget(); ?> 23 | 24 |
-------------------------------------------------------------------------------- /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/nl/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protected/views/dupak/create.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Dupaks'=>array('index'), 4 | 'Create', 5 | ); 6 | 7 | $this->menu=array( 8 | array('label'=>'List Dupak', 'url'=>array('index')), 9 | array('label'=>'Manage Dupak', 'url'=>array('admin')), 10 | ); 11 | ?> 12 | 13 | widget('zii.widgets.CDetailView', array( 14 | 'data'=>$kenaikanJabatan->pegawai, 15 | 'attributes'=>array( 16 | 'id', 17 | 'nip', 18 | 'nama', 19 | 'nskp', 20 | 'tempat_lahir', 21 | 'tanggal_lahir', 22 | 'tmt', 23 | 'bidang_kepakaran', 24 | 'jabatan', 25 | ), 26 | )); ?> 27 | 28 |

Create Dupak

29 | 30 | renderPartial('_form', array('dupak'=>$dupak)); ?> 31 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/views/layouts/column2.php: -------------------------------------------------------------------------------- 1 | beginContent('application.views.layouts.main'); ?> 2 |
3 |
4 |
5 | 6 |
7 |
8 |
9 | 21 |
22 |
23 | endContent(); ?> -------------------------------------------------------------------------------- /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/zh_cn/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/zh_tw/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /protected/tests/functional/KtiTest.php: -------------------------------------------------------------------------------- 1 | 'Kti', 7 | ); 8 | 9 | public function testShow() 10 | { 11 | $this->open('?r=kti/view&id=1'); 12 | } 13 | 14 | public function testCreate() 15 | { 16 | $this->open('?r=kti/create'); 17 | } 18 | 19 | public function testUpdate() 20 | { 21 | $this->open('?r=kti/update&id=1'); 22 | } 23 | 24 | public function testDelete() 25 | { 26 | $this->open('?r=kti/view&id=1'); 27 | } 28 | 29 | public function testList() 30 | { 31 | $this->open('?r=kti/index'); 32 | } 33 | 34 | public function testAdmin() 35 | { 36 | $this->open('?r=kti/admin'); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /framework/views/ja/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/ru/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/he/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/el/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/es/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/ro/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.AllowedFrameTargets.txt: -------------------------------------------------------------------------------- 1 | Attr.AllowedFrameTargets 2 | TYPE: lookup 3 | DEFAULT: array() 4 | --DESCRIPTION-- 5 | Lookup table of all allowed link frame targets. Some commonly used link 6 | targets include _blank, _self, _parent and _top. Values should be 7 | lowercase, as validation will be done in a case-sensitive manner despite 8 | W3C's recommendation. XHTML 1.0 Strict does not permit the target attribute 9 | so this directive will have no effect in that doctype. XHTML 1.1 does not 10 | enable the Target module by default, you will have to manually enable it 11 | (see the module documentation for more details.) 12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.EscapeNonASCIICharacters.txt: -------------------------------------------------------------------------------- 1 | Core.EscapeNonASCIICharacters 2 | TYPE: bool 3 | VERSION: 1.4.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | This directive overcomes a deficiency in %Core.Encoding by blindly 7 | converting all non-ASCII characters into decimal numeric entities before 8 | converting it to its native encoding. This means that even characters that 9 | can be expressed in the non-UTF-8 encoding will be entity-ized, which can 10 | be a real downer for encodings like Big5. It also assumes that the ASCII 11 | repetoire is available, although this is the case for almost all encodings. 12 | Anyway, use UTF-8! 13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.MaintainLineNumbers.txt: -------------------------------------------------------------------------------- 1 | Core.MaintainLineNumbers 2 | TYPE: bool/null 3 | VERSION: 2.0.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

8 | If true, HTML Purifier will add line number information to all tokens. 9 | This is useful when error reporting is turned on, but can result in 10 | significant performance degradation and should not be used when 11 | unnecessary. This directive must be used with the DirectLex lexer, 12 | as the DOMLex lexer does not (yet) support this functionality. 13 | If the value is null, an appropriate value will be selected based 14 | on other configuration. 15 |

16 | --# vim: et sw=4 sts=4 17 | -------------------------------------------------------------------------------- /framework/views/id/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/it/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /protected/tests/functional/DupakTest.php: -------------------------------------------------------------------------------- 1 | 'Dupak', 7 | ); 8 | 9 | public function testShow() 10 | { 11 | $this->open('?r=dupak/view&id=1'); 12 | } 13 | 14 | public function testCreate() 15 | { 16 | $this->open('?r=dupak/create'); 17 | } 18 | 19 | public function testUpdate() 20 | { 21 | $this->open('?r=dupak/update&id=1'); 22 | } 23 | 24 | public function testDelete() 25 | { 26 | $this->open('?r=dupak/view&id=1'); 27 | } 28 | 29 | public function testList() 30 | { 31 | $this->open('?r=dupak/index'); 32 | } 33 | 34 | public function testAdmin() 35 | { 36 | $this->open('?r=dupak/admin'); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /protected/tests/functional/NilaiTest.php: -------------------------------------------------------------------------------- 1 | 'Nilai', 7 | ); 8 | 9 | public function testShow() 10 | { 11 | $this->open('?r=nilai/view&id=1'); 12 | } 13 | 14 | public function testCreate() 15 | { 16 | $this->open('?r=nilai/create'); 17 | } 18 | 19 | public function testUpdate() 20 | { 21 | $this->open('?r=nilai/update&id=1'); 22 | } 23 | 24 | public function testDelete() 25 | { 26 | $this->open('?r=nilai/view&id=1'); 27 | } 28 | 29 | public function testList() 30 | { 31 | $this->open('?r=nilai/index'); 32 | } 33 | 34 | public function testAdmin() 35 | { 36 | $this->open('?r=nilai/admin'); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /protected/tests/functional/UnsurTest.php: -------------------------------------------------------------------------------- 1 | 'Unsur', 7 | ); 8 | 9 | public function testShow() 10 | { 11 | $this->open('?r=unsur/view&id=1'); 12 | } 13 | 14 | public function testCreate() 15 | { 16 | $this->open('?r=unsur/create'); 17 | } 18 | 19 | public function testUpdate() 20 | { 21 | $this->open('?r=unsur/update&id=1'); 22 | } 23 | 24 | public function testDelete() 25 | { 26 | $this->open('?r=unsur/view&id=1'); 27 | } 28 | 29 | public function testList() 30 | { 31 | $this->open('?r=unsur/index'); 32 | } 33 | 34 | public function testAdmin() 35 | { 36 | $this->open('?r=unsur/admin'); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /framework/cli/views/shell/model/fixture.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | return array( 11 | /* 12 | 'sample1'=>array( 13 | columns as $name=>$column) { 14 | if($table->sequenceName===null || $table->primaryKey!==$column->name) 15 | echo "\t\t'$name' => '',\n"; 16 | } ?> 17 | ), 18 | 'sample2'=>array( 19 | columns as $name=>$column) { 20 | if($table->sequenceName===null || $table->primaryKey!==$column->name) 21 | echo "\t\t'$name' => '',\n"; 22 | } ?> 23 | ), 24 | */ 25 | ); 26 | -------------------------------------------------------------------------------- /framework/views/bg/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/no/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/pt/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/sv/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/test/CTestCase.php: -------------------------------------------------------------------------------- 1 | 6 | * @link http://www.yiiframework.com/ 7 | * @copyright Copyright © 2008-2010 Yii Software LLC 8 | * @license http://www.yiiframework.com/license/ 9 | */ 10 | 11 | require_once('PHPUnit/Framework.php'); 12 | require_once('PHPUnit/Framework/TestCase.php'); 13 | 14 | /** 15 | * CTestCase is the base class for all test case classes. 16 | * 17 | * @author Qiang Xue 18 | * @version $Id: CTestCase.php 1907 2010-03-14 05:14:49Z qiang.xue $ 19 | * @package system.test 20 | * @since 1.1 21 | */ 22 | abstract class CTestCase extends PHPUnit_Framework_TestCase 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /framework/zii/UPGRADE: -------------------------------------------------------------------------------- 1 | 2 | Upgrading Instructions for Zii Extension Library for Yii v1.1.1 3 | =============================================================== 4 | 5 | !!!IMPORTANT!!! 6 | 7 | The following upgrading instructions are cumulative. That is, 8 | if you want to upgrade from version A to version C and there is 9 | version B between A and C, you need to following the instructions 10 | for both A and B. 11 | 12 | Upgrading from v1.1.0 13 | --------------------- 14 | 15 | - The default theme for JQuery UI widgets was changed from 'smoothness' to 'base'. 16 | If you are using 'smoothness', you will need to manually download this theme from 17 | jqueryui.com and configure the 'theme' property of the JQuery UI widgets accordingly. -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.BlockWrapper.txt: -------------------------------------------------------------------------------- 1 | HTML.BlockWrapper 2 | TYPE: string 3 | VERSION: 1.3.0 4 | DEFAULT: 'p' 5 | --DESCRIPTION-- 6 | 7 |

8 | String name of element to wrap inline elements that are inside a block 9 | context. This only occurs in the children of blockquote in strict mode. 10 |

11 |

12 | Example: by default value, 13 | <blockquote>Foo</blockquote> would become 14 | <blockquote><p>Foo</p></blockquote>. 15 | The <p> tags can be replaced with whatever you desire, 16 | as long as it is a block level element. 17 |

18 | --# vim: et sw=4 sts=4 19 | -------------------------------------------------------------------------------- /framework/views/fr/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /protected/tests/functional/JabatanTest.php: -------------------------------------------------------------------------------- 1 | 'Jabatan', 7 | ); 8 | 9 | public function testShow() 10 | { 11 | $this->open('?r=jabatan/view&id=1'); 12 | } 13 | 14 | public function testCreate() 15 | { 16 | $this->open('?r=jabatan/create'); 17 | } 18 | 19 | public function testUpdate() 20 | { 21 | $this->open('?r=jabatan/update&id=1'); 22 | } 23 | 24 | public function testDelete() 25 | { 26 | $this->open('?r=jabatan/view&id=1'); 27 | } 28 | 29 | public function testList() 30 | { 31 | $this->open('?r=jabatan/index'); 32 | } 33 | 34 | public function testAdmin() 35 | { 36 | $this->open('?r=jabatan/admin'); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /protected/tests/functional/KtiItemTest.php: -------------------------------------------------------------------------------- 1 | 'KtiItem', 7 | ); 8 | 9 | public function testShow() 10 | { 11 | $this->open('?r=ktiItem/view&id=1'); 12 | } 13 | 14 | public function testCreate() 15 | { 16 | $this->open('?r=ktiItem/create'); 17 | } 18 | 19 | public function testUpdate() 20 | { 21 | $this->open('?r=ktiItem/update&id=1'); 22 | } 23 | 24 | public function testDelete() 25 | { 26 | $this->open('?r=ktiItem/view&id=1'); 27 | } 28 | 29 | public function testList() 30 | { 31 | $this->open('?r=ktiItem/index'); 32 | } 33 | 34 | public function testAdmin() 35 | { 36 | $this->open('?r=ktiItem/admin'); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /protected/tests/functional/PegawaiTest.php: -------------------------------------------------------------------------------- 1 | 'Pegawai', 7 | ); 8 | 9 | public function testShow() 10 | { 11 | $this->open('?r=pegawai/view&id=1'); 12 | } 13 | 14 | public function testCreate() 15 | { 16 | $this->open('?r=pegawai/create'); 17 | } 18 | 19 | public function testUpdate() 20 | { 21 | $this->open('?r=pegawai/update&id=1'); 22 | } 23 | 24 | public function testDelete() 25 | { 26 | $this->open('?r=pegawai/view&id=1'); 27 | } 28 | 29 | public function testList() 30 | { 31 | $this->open('?r=pegawai/index'); 32 | } 33 | 34 | public function testAdmin() 35 | { 36 | $this->open('?r=pegawai/admin'); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /protected/views/jabatan/_form.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | beginWidget('CActiveForm', array( 4 | 'id'=>'jabatan-form', 5 | 'enableAjaxValidation'=>false, 6 | )); ?> 7 | 8 |

Fields with * are required.

9 | 10 | errorSummary($model); ?> 11 | 12 |
13 | labelEx($model,'nama'); ?> 14 | textField($model,'nama',array('size'=>60,'maxlength'=>255)); ?> 15 | error($model,'nama'); ?> 16 |
17 | 18 |
19 | isNewRecord ? 'Create' : 'Save'); ?> 20 |
21 | 22 | endWidget(); ?> 23 | 24 |
-------------------------------------------------------------------------------- /framework/views/nl/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/zii/widgets/assets/detailview/styles.css: -------------------------------------------------------------------------------- 1 | table.detail-view .null 2 | { 3 | color: pink; 4 | } 5 | 6 | table.detail-view 7 | { 8 | background: white; 9 | border-collapse: collapse; 10 | width: 100%; 11 | margin: 0; 12 | } 13 | 14 | table.detail-view th, table.detail-view td 15 | { 16 | font-size: 0.9em; 17 | border: 1px white solid; 18 | padding: 0.3em 0.6em; 19 | vertical-align: top; 20 | } 21 | 22 | table.detail-view th 23 | { 24 | text-align: right; 25 | width: 160px; 26 | } 27 | 28 | table.detail-view tr.odd 29 | { 30 | background:#E5F1F4; 31 | } 32 | 33 | table.detail-view tr.even 34 | { 35 | background:#F8F8F8; 36 | } 37 | 38 | table.detail-view tr.odd th 39 | { 40 | } 41 | 42 | table.detail-view tr.even th 43 | { 44 | } 45 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.HiddenElements.txt: -------------------------------------------------------------------------------- 1 | Core.HiddenElements 2 | TYPE: lookup 3 | --DEFAULT-- 4 | array ( 5 | 'script' => true, 6 | 'style' => true, 7 | ) 8 | --DESCRIPTION-- 9 | 10 |

11 | This directive is a lookup array of elements which should have their 12 | contents removed when they are not allowed by the HTML definition. 13 | For example, the contents of a script tag are not 14 | normally shown in a document, so if script tags are to be removed, 15 | their contents should be removed to. This is opposed to a b 16 | tag, which defines some presentational changes but does not hide its 17 | contents. 18 |

19 | --# vim: et sw=4 sts=4 20 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.TidyImpl.txt: -------------------------------------------------------------------------------- 1 | Filter.ExtractStyleBlocks.TidyImpl 2 | TYPE: mixed/null 3 | VERSION: 3.1.0 4 | DEFAULT: NULL 5 | ALIASES: FilterParam.ExtractStyleBlocksTidyImpl 6 | --DESCRIPTION-- 7 |

8 | If left NULL, HTML Purifier will attempt to instantiate a csstidy 9 | class to use for internal cleaning. This will usually be good enough. 10 |

11 |

12 | However, for trusted user input, you can set this to false to 13 | disable cleaning. In addition, you can supply your own concrete implementation 14 | of Tidy's interface to use, although I don't know why you'd want to do that. 15 |

16 | --# vim: et sw=4 sts=4 17 | -------------------------------------------------------------------------------- /framework/yiic.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem ------------------------------------------------------------- 4 | rem Yii command line script for Windows. 5 | rem 6 | rem This is the bootstrap script for running yiic on Windows. 7 | rem 8 | rem @author Qiang Xue 9 | rem @link http://www.yiiframework.com/ 10 | rem @copyright Copyright © 2008 Yii Software LLC 11 | rem @license http://www.yiiframework.com/license/ 12 | rem @version $Id: yiic.bat 2 2008-09-28 12:03:53Z qiang.xue $ 13 | rem ------------------------------------------------------------- 14 | 15 | @setlocal 16 | 17 | set YII_PATH=%~dp0 18 | 19 | if "%PHP_COMMAND%" == "" set PHP_COMMAND=php.exe 20 | 21 | %PHP_COMMAND% "%YII_PATH%yiic" %* 22 | 23 | @endlocal -------------------------------------------------------------------------------- /protected/tests/functional/KegiatanTest.php: -------------------------------------------------------------------------------- 1 | 'Kegiatan', 7 | ); 8 | 9 | public function testShow() 10 | { 11 | $this->open('?r=kegiatan/view&id=1'); 12 | } 13 | 14 | public function testCreate() 15 | { 16 | $this->open('?r=kegiatan/create'); 17 | } 18 | 19 | public function testUpdate() 20 | { 21 | $this->open('?r=kegiatan/update&id=1'); 22 | } 23 | 24 | public function testDelete() 25 | { 26 | $this->open('?r=kegiatan/view&id=1'); 27 | } 28 | 29 | public function testList() 30 | { 31 | $this->open('?r=kegiatan/index'); 32 | } 33 | 34 | public function testAdmin() 35 | { 36 | $this->open('?r=kegiatan/admin'); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /protected/tests/functional/SubUnsurTest.php: -------------------------------------------------------------------------------- 1 | 'SubUnsur', 7 | ); 8 | 9 | public function testShow() 10 | { 11 | $this->open('?r=subUnsur/view&id=1'); 12 | } 13 | 14 | public function testCreate() 15 | { 16 | $this->open('?r=subUnsur/create'); 17 | } 18 | 19 | public function testUpdate() 20 | { 21 | $this->open('?r=subUnsur/update&id=1'); 22 | } 23 | 24 | public function testDelete() 25 | { 26 | $this->open('?r=subUnsur/view&id=1'); 27 | } 28 | 29 | public function testList() 30 | { 31 | $this->open('?r=subUnsur/index'); 32 | } 33 | 34 | public function testAdmin() 35 | { 36 | $this->open('?r=subUnsur/admin'); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /protected/tests/functional/SubunsurTest.php: -------------------------------------------------------------------------------- 1 | 'Subunsur', 7 | ); 8 | 9 | public function testShow() 10 | { 11 | $this->open('?r=subunsur/view&id=1'); 12 | } 13 | 14 | public function testCreate() 15 | { 16 | $this->open('?r=subunsur/create'); 17 | } 18 | 19 | public function testUpdate() 20 | { 21 | $this->open('?r=subunsur/update&id=1'); 22 | } 23 | 24 | public function testDelete() 25 | { 26 | $this->open('?r=subunsur/view&id=1'); 27 | } 28 | 29 | public function testList() 30 | { 31 | $this->open('?r=subunsur/index'); 32 | } 33 | 34 | public function testAdmin() 35 | { 36 | $this->open('?r=subunsur/admin'); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /protected/views/jenisDupak/_form.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | beginWidget('CActiveForm', array( 4 | 'id'=>'jenis-dupak-form', 5 | 'enableAjaxValidation'=>false, 6 | )); ?> 7 | 8 |

Fields with * are required.

9 | 10 | errorSummary($model); ?> 11 | 12 |
13 | labelEx($model,'nama'); ?> 14 | textField($model,'nama',array('size'=>60,'maxlength'=>255)); ?> 15 | error($model,'nama'); ?> 16 |
17 | 18 |
19 | isNewRecord ? 'Create' : 'Save'); ?> 20 |
21 | 22 | endWidget(); ?> 23 | 24 |
-------------------------------------------------------------------------------- /protected/views/site/index.php: -------------------------------------------------------------------------------- 1 | pageTitle=Yii::app()->name; ?> 2 | 3 |

Welcome to name); ?>

4 | 5 |

Congratulations! You have successfully created your Yii application.

6 | 7 |

You may change the content of this page by modifying the following two files:

8 |
    9 |
  • View file:
  • 10 |
  • Layout file: getLayoutFile('main'); ?>
  • 11 |
12 | 13 |

For more details on how to further develop this application, please read 14 | the documentation. 15 | Feel free to ask in the forum, 16 | should you have any questions.

-------------------------------------------------------------------------------- /framework/db/schema/pgsql/CPgsqlTableSchema.php: -------------------------------------------------------------------------------- 1 | 6 | * @link http://www.yiiframework.com/ 7 | * @copyright Copyright © 2008-2010 Yii Software LLC 8 | * @license http://www.yiiframework.com/license/ 9 | */ 10 | 11 | /** 12 | * CPgsqlTable represents the metadata for a PostgreSQL table. 13 | * 14 | * @author Qiang Xue 15 | * @version $Id: CPgsqlTableSchema.php 1678 2010-01-07 21:02:00Z qiang.xue $ 16 | * @package system.db.schema.pgsql 17 | * @since 1.0 18 | */ 19 | class CPgsqlTableSchema extends CDbTableSchema 20 | { 21 | /** 22 | * @var string name of the schema that this table belongs to. 23 | */ 24 | public $schemaName; 25 | } 26 | -------------------------------------------------------------------------------- /protected/tests/functional/JenisDupakTest.php: -------------------------------------------------------------------------------- 1 | 'JenisDupak', 7 | ); 8 | 9 | public function testShow() 10 | { 11 | $this->open('?r=jenisDupak/view&id=1'); 12 | } 13 | 14 | public function testCreate() 15 | { 16 | $this->open('?r=jenisDupak/create'); 17 | } 18 | 19 | public function testUpdate() 20 | { 21 | $this->open('?r=jenisDupak/update&id=1'); 22 | } 23 | 24 | public function testDelete() 25 | { 26 | $this->open('?r=jenisDupak/view&id=1'); 27 | } 28 | 29 | public function testList() 30 | { 31 | $this->open('?r=jenisDupak/index'); 32 | } 33 | 34 | public function testAdmin() 35 | { 36 | $this->open('?r=jenisDupak/admin'); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/views/site/index.php: -------------------------------------------------------------------------------- 1 | pageTitle=Yii::app()->name; ?> 2 | 3 |

Welcome to name); ?>

4 | 5 |

Congratulations! You have successfully created your Yii application.

6 | 7 |

You may change the content of this page by modifying the following two files:

8 |
    9 |
  • View file:
  • 10 |
  • Layout file: getLayoutFile('main'); ?>
  • 11 |
12 | 13 |

For more details on how to further develop this application, please read 14 | the documentation. 15 | Feel free to ask in the forum, 16 | should you have any questions.

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

7 | If true, any URI munging directives like %URI.Munge 8 | will also apply to embedded resources, such as <img src="">. 9 | Be careful enabling this directive if you have a redirector script 10 | that does not use the Location HTTP header; all of your images 11 | and other embedded resources will break. 12 |

13 |

14 | Warning: It is strongly advised you use this in conjunction 15 | %URI.MungeSecretKey to mitigate the security risk of an open redirector. 16 |

17 | --# vim: et sw=4 sts=4 18 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/CSS.AllowedProperties.txt: -------------------------------------------------------------------------------- 1 | CSS.AllowedProperties 2 | TYPE: lookup/null 3 | VERSION: 3.1.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

8 | If HTML Purifier's style attributes set is unsatisfactory for your needs, 9 | you can overload it with your own list of tags to allow. Note that this 10 | method is subtractive: it does its job by taking away from HTML Purifier 11 | usual feature set, so you cannot add an attribute that HTML Purifier never 12 | supported in the first place. 13 |

14 |

15 | Warning: If another directive conflicts with the 16 | elements here, that directive will win and override. 17 |

18 | --# vim: et sw=4 sts=4 19 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/CSS.MaxImgLength.txt: -------------------------------------------------------------------------------- 1 | CSS.MaxImgLength 2 | TYPE: string/null 3 | DEFAULT: '1200px' 4 | VERSION: 3.1.1 5 | --DESCRIPTION-- 6 |

7 | This parameter sets the maximum allowed length on img tags, 8 | effectively the width and height properties. 9 | Only absolute units of measurement (in, pt, pc, mm, cm) and pixels (px) are allowed. This is 10 | in place to prevent imagecrash attacks, disable with null at your own risk. 11 | This directive is similar to %HTML.MaxImgLength, and both should be 12 | concurrently edited, although there are 13 | subtle differences in the input format (the CSS max is a number with 14 | a unit). 15 |

16 | --# vim: et sw=4 sts=4 17 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.AllowedAttributes.txt: -------------------------------------------------------------------------------- 1 | HTML.AllowedAttributes 2 | TYPE: lookup/null 3 | VERSION: 1.3.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

8 | If HTML Purifier's attribute set is unsatisfactory, overload it! 9 | The syntax is "tag.attr" or "*.attr" for the global attributes 10 | (style, id, class, dir, lang, xml:lang). 11 |

12 |

13 | Warning: If another directive conflicts with the 14 | elements here, that directive will win and override. For 15 | example, %HTML.EnableAttrID will take precedence over *.id in this 16 | directive. You must set that directive to true before you can use 17 | IDs at all. 18 |

19 | --# vim: et sw=4 sts=4 20 | -------------------------------------------------------------------------------- /framework/views/de/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 24 | -------------------------------------------------------------------------------- /protected/tests/WebTestCase.php: -------------------------------------------------------------------------------- 1 | setBrowserUrl(TEST_BASE_URL); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.EnableID.txt: -------------------------------------------------------------------------------- 1 | Attr.EnableID 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 1.2.0 5 | --DESCRIPTION-- 6 | Allows the ID attribute in HTML. This is disabled by default due to the 7 | fact that without proper configuration user input can easily break the 8 | validation of a webpage by specifying an ID that is already on the 9 | surrounding HTML. If you don't mind throwing caution to the wind, enable 10 | this directive, but I strongly recommend you also consider blacklisting IDs 11 | you use (%Attr.IDBlacklist) or prefixing all user supplied IDs 12 | (%Attr.IDPrefix). When set to true HTML Purifier reverts to the behavior of 13 | pre-1.2.0 versions. 14 | --ALIASES-- 15 | HTML.EnableAttrID 16 | --# vim: et sw=4 sts=4 17 | -------------------------------------------------------------------------------- /protected/tests/functional/ButirKegiatanTest.php: -------------------------------------------------------------------------------- 1 | 'ButirKegiatan', 7 | ); 8 | 9 | public function testShow() 10 | { 11 | $this->open('?r=butirKegiatan/view&id=1'); 12 | } 13 | 14 | public function testCreate() 15 | { 16 | $this->open('?r=butirKegiatan/create'); 17 | } 18 | 19 | public function testUpdate() 20 | { 21 | $this->open('?r=butirKegiatan/update&id=1'); 22 | } 23 | 24 | public function testDelete() 25 | { 26 | $this->open('?r=butirKegiatan/view&id=1'); 27 | } 28 | 29 | public function testList() 30 | { 31 | $this->open('?r=butirKegiatan/index'); 32 | } 33 | 34 | public function testAdmin() 35 | { 36 | $this->open('?r=butirKegiatan/admin'); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /framework/cli/views/shell/controller/view.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 9 | '$label', 10 | );"; 11 | } 12 | else 13 | { 14 | $route=$controller.'/index'; 15 | $route[0]=strtolower($route[0]); 16 | $action=ucfirst($action); 17 | echo "\$this->breadcrumbs=array( 18 | '$label'=>array('$route'), 19 | '$action', 20 | );"; 21 | } 22 | ?> 23 | ?> 24 |

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

25 | 26 |

You may change the content of this page by modifying the file echo __FILE__; ?>.

27 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.IDPrefixLocal.txt: -------------------------------------------------------------------------------- 1 | Attr.IDPrefixLocal 2 | TYPE: string 3 | VERSION: 1.2.0 4 | DEFAULT: '' 5 | --DESCRIPTION-- 6 | Temporary prefix for IDs used in conjunction with %Attr.IDPrefix. If you 7 | need to allow multiple sets of user content on web page, you may need to 8 | have a seperate prefix that changes with each iteration. This way, 9 | seperately submitted user content displayed on the same page doesn't 10 | clobber each other. Ideal values are unique identifiers for the content it 11 | represents (i.e. the id of the row in the database). Be sure to add a 12 | seperator (like an underscore) at the end. Warning: this directive will 13 | not work unless %Attr.IDPrefix is set to a non-empty value! 14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /protected/views/jabatan/view.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Jabatans'=>array('index'), 4 | $model->id, 5 | ); 6 | 7 | $this->menu=array( 8 | array('label'=>'List Jabatan', 'url'=>array('index')), 9 | array('label'=>'Create Jabatan', 'url'=>array('create')), 10 | array('label'=>'Update Jabatan', 'url'=>array('update', 'id'=>$model->id)), 11 | array('label'=>'Delete Jabatan', 'url'=>'#', 'linkOptions'=>array('submit'=>array('delete','id'=>$model->id),'confirm'=>'Are you sure to delete this item?')), 12 | array('label'=>'Manage Jabatan', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

View Jabatan #id; ?>

17 | 18 | widget('zii.widgets.CDetailView', array( 19 | 'data'=>$model, 20 | 'attributes'=>array( 21 | 'id', 22 | 'nama', 23 | ), 24 | )); ?> 25 | -------------------------------------------------------------------------------- /protected/views/kti/view.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Ktis'=>array('index'), 4 | $model->id, 5 | ); 6 | 7 | $this->menu=array( 8 | array('label'=>'List Kti', 'url'=>array('index')), 9 | array('label'=>'Create Kti', 'url'=>array('create')), 10 | array('label'=>'Update Kti', 'url'=>array('update', 'id'=>$model->id)), 11 | array('label'=>'Delete Kti', 'url'=>'#', 'linkOptions'=>array('submit'=>array('delete','id'=>$model->id),'confirm'=>'Are you sure to delete this item?')), 12 | array('label'=>'Manage Kti', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

View Kti #id; ?>

17 | 18 | widget('zii.widgets.CDetailView', array( 19 | 'data'=>$model, 20 | 'attributes'=>array( 21 | 'id', 22 | 'kenaikan_jabatan_id', 23 | 'dupak_id', 24 | ), 25 | )); ?> 26 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.Base.txt: -------------------------------------------------------------------------------- 1 | URI.Base 2 | TYPE: string/null 3 | VERSION: 2.1.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

8 | The base URI is the URI of the document this purified HTML will be 9 | inserted into. This information is important if HTML Purifier needs 10 | to calculate absolute URIs from relative URIs, such as when %URI.MakeAbsolute 11 | is on. You may use a non-absolute URI for this value, but behavior 12 | may vary (%URI.MakeAbsolute deals nicely with both absolute and 13 | relative paths, but forwards-compatibility is not guaranteed). 14 | Warning: If set, the scheme on this URI 15 | overrides the one specified by %URI.DefaultScheme. 16 |

17 | --# vim: et sw=4 sts=4 18 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.DirectLexLineNumberSyncInterval.txt: -------------------------------------------------------------------------------- 1 | Core.DirectLexLineNumberSyncInterval 2 | TYPE: int 3 | VERSION: 2.0.0 4 | DEFAULT: 0 5 | --DESCRIPTION-- 6 | 7 |

8 | Specifies the number of tokens the DirectLex line number tracking 9 | implementations should process before attempting to resyncronize the 10 | current line count by manually counting all previous new-lines. When 11 | at 0, this functionality is disabled. Lower values will decrease 12 | performance, and this is only strictly necessary if the counting 13 | algorithm is buggy (in which case you should report it as a bug). 14 | This has no effect when %Core.MaintainLineNumbers is disabled or DirectLex is 15 | not being used. 16 |

17 | --# vim: et sw=4 sts=4 18 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.CoreModules.txt: -------------------------------------------------------------------------------- 1 | HTML.CoreModules 2 | TYPE: lookup 3 | VERSION: 2.0.0 4 | --DEFAULT-- 5 | array ( 6 | 'Structure' => true, 7 | 'Text' => true, 8 | 'Hypertext' => true, 9 | 'List' => true, 10 | 'NonXMLCommonAttributes' => true, 11 | 'XMLCommonAttributes' => true, 12 | 'CommonAttributes' => true, 13 | ) 14 | --DESCRIPTION-- 15 | 16 |

17 | Certain modularized doctypes (XHTML, namely), have certain modules 18 | that must be included for the doctype to be an conforming document 19 | type: put those modules here. By default, XHTML's core modules 20 | are used. You can set this to a blank array to disable core module 21 | protection, but this is not recommended. 22 |

23 | --# vim: et sw=4 sts=4 24 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.TidyLevel.txt: -------------------------------------------------------------------------------- 1 | HTML.TidyLevel 2 | TYPE: string 3 | VERSION: 2.0.0 4 | DEFAULT: 'medium' 5 | --DESCRIPTION-- 6 | 7 |

General level of cleanliness the Tidy module should enforce. 8 | There are four allowed values:

9 |
10 |
none
11 |
No extra tidying should be done
12 |
light
13 |
Only fix elements that would be discarded otherwise due to 14 | lack of support in doctype
15 |
medium
16 |
Enforce best practices
17 |
heavy
18 |
Transform all deprecated elements and attributes to standards 19 | compliant equivalents
20 |
21 | 22 | --ALLOWED-- 23 | 'none', 'light', 'medium', 'heavy' 24 | --# vim: et sw=4 sts=4 25 | -------------------------------------------------------------------------------- /protected/tests/functional/KenaikanJabatanTest.php: -------------------------------------------------------------------------------- 1 | 'KenaikanJabatan', 7 | ); 8 | 9 | public function testShow() 10 | { 11 | $this->open('?r=kenaikanJabatan/view&id=1'); 12 | } 13 | 14 | public function testCreate() 15 | { 16 | $this->open('?r=kenaikanJabatan/create'); 17 | } 18 | 19 | public function testUpdate() 20 | { 21 | $this->open('?r=kenaikanJabatan/update&id=1'); 22 | } 23 | 24 | public function testDelete() 25 | { 26 | $this->open('?r=kenaikanJabatan/view&id=1'); 27 | } 28 | 29 | public function testList() 30 | { 31 | $this->open('?r=kenaikanJabatan/index'); 32 | } 33 | 34 | public function testAdmin() 35 | { 36 | $this->open('?r=kenaikanJabatan/admin'); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /protected/views/layouts/column2.php: -------------------------------------------------------------------------------- 1 | beginContent('application.views.layouts.main'); ?> 2 |
3 |
4 |
5 | 6 |
7 |
8 |
9 | 21 |
22 |
23 | endContent(); ?> 24 | 25 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/tests/WebTestCase.php: -------------------------------------------------------------------------------- 1 | setBrowserUrl(TEST_BASE_URL); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /protected/views/kenaikanJabatan/_search.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | beginWidget('CActiveForm', array( 4 | 'action'=>Yii::app()->createUrl($this->route), 5 | 'method'=>'get', 6 | )); ?> 7 | 8 |
9 | label($model,'id'); ?> 10 | textField($model,'id'); ?> 11 |
12 | 13 |
14 | label($model,'pegawai_id'); ?> 15 | textField($model,'pegawai_id'); ?> 16 |
17 | 18 |
19 | label($model,'jabatan_id'); ?> 20 | textField($model,'jabatan_id'); ?> 21 |
22 | 23 |
24 | 25 |
26 | 27 | endWidget(); ?> 28 | 29 |
-------------------------------------------------------------------------------- /protected/views/kti/_search.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | beginWidget('CActiveForm', array( 4 | 'action'=>Yii::app()->createUrl($this->route), 5 | 'method'=>'get', 6 | )); ?> 7 | 8 |
9 | label($model,'id'); ?> 10 | textField($model,'id'); ?> 11 |
12 | 13 |
14 | label($model,'kenaikan_jabatan_id'); ?> 15 | textField($model,'kenaikan_jabatan_id'); ?> 16 |
17 | 18 |
19 | label($model,'dupak_id'); ?> 20 | textField($model,'dupak_id'); ?> 21 |
22 | 23 |
24 | 25 |
26 | 27 | endWidget(); ?> 28 | 29 |
-------------------------------------------------------------------------------- /protected/views/jenisDupak/view.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Jenis Dupaks'=>array('index'), 4 | $model->id, 5 | ); 6 | 7 | $this->menu=array( 8 | array('label'=>'List JenisDupak', 'url'=>array('index')), 9 | array('label'=>'Create JenisDupak', 'url'=>array('create')), 10 | array('label'=>'Update JenisDupak', 'url'=>array('update', 'id'=>$model->id)), 11 | array('label'=>'Delete JenisDupak', 'url'=>'#', 'linkOptions'=>array('submit'=>array('delete','id'=>$model->id),'confirm'=>'Are you sure to delete this item?')), 12 | array('label'=>'Manage JenisDupak', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

View JenisDupak #id; ?>

17 | 18 | widget('zii.widgets.CDetailView', array( 19 | 'data'=>$model, 20 | 'attributes'=>array( 21 | 'id', 22 | 'nama', 23 | ), 24 | )); ?> 25 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.AggressivelyFixLt.txt: -------------------------------------------------------------------------------- 1 | Core.AggressivelyFixLt 2 | TYPE: bool 3 | VERSION: 2.1.0 4 | DEFAULT: true 5 | --DESCRIPTION-- 6 |

7 | This directive enables aggressive pre-filter fixes HTML Purifier can 8 | perform in order to ensure that open angled-brackets do not get killed 9 | during parsing stage. Enabling this will result in two preg_replace_callback 10 | calls and at least two preg_replace calls for every HTML document parsed; 11 | if your users make very well-formed HTML, you can set this directive false. 12 | This has no effect when DirectLex is used. 13 |

14 |

15 | Notice: This directive's default turned from false to true 16 | in HTML Purifier 3.2.0. 17 |

18 | --# vim: et sw=4 sts=4 19 | -------------------------------------------------------------------------------- /protected/views/kegiatan/view.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Kegiatans'=>array('index'), 4 | $model->id, 5 | ); 6 | 7 | $this->menu=array( 8 | array('label'=>'List Kegiatan', 'url'=>array('index')), 9 | array('label'=>'Create Kegiatan', 'url'=>array('create')), 10 | array('label'=>'Update Kegiatan', 'url'=>array('update', 'id'=>$model->id)), 11 | array('label'=>'Delete Kegiatan', 'url'=>'#', 'linkOptions'=>array('submit'=>array('delete','id'=>$model->id),'confirm'=>'Are you sure to delete this item?')), 12 | array('label'=>'Manage Kegiatan', 'url'=>array('admin')), 13 | ); 14 | ?> 15 | 16 |

View Kegiatan #id; ?>

17 | 18 | widget('zii.widgets.CDetailView', array( 19 | 'data'=>$model, 20 | 'attributes'=>array( 21 | 'id', 22 | 'nama', 23 | 'sub_unsur_id', 24 | ), 25 | )); ?> 26 | --------------------------------------------------------------------------------