├── app
├── plugins
│ ├── empty
│ └── acl_admin
│ │ ├── views
│ │ ├── _generic
│ │ │ ├── ajax_redirect.thtml
│ │ │ └── download.thtml
│ │ ├── acl_node
│ │ │ ├── plain.thtml
│ │ │ └── notswad.thtml
│ │ ├── errors
│ │ │ ├── missingTable.thtml
│ │ │ ├── missingConnection.thtml
│ │ │ ├── missingHelperFile.thtml
│ │ │ ├── missingComponentFile.thtml
│ │ │ ├── missing_connection.thtml
│ │ │ ├── missing_helper_file.thtml
│ │ │ ├── missing_component_file.thtml
│ │ │ ├── missing_user_table.thtml
│ │ │ ├── missing_acl_tables.thtml
│ │ │ └── missing_table.thtml
│ │ ├── layouts
│ │ │ ├── flash_error.thtml
│ │ │ ├── flash_info.thtml
│ │ │ ├── flash_warn.thtml
│ │ │ ├── ajax.thtml
│ │ │ ├── error.thtml
│ │ │ └── noswad_demo.css
│ │ └── elements
│ │ │ ├── menu.thtml
│ │ │ └── pagination.thtml
│ │ ├── models
│ │ └── dummy.php
│ │ ├── acl_admin_app_model.php
│ │ └── controllers
│ │ ├── download_me_controller.php
│ │ ├── aros_acos_controller.php
│ │ └── acl_node_controller.php
├── tests
│ ├── groups
│ │ └── empty
│ ├── cases
│ │ ├── models
│ │ │ ├── empty
│ │ │ ├── group.test.php
│ │ │ └── book.test.php
│ │ ├── behaviors
│ │ │ └── empty
│ │ ├── components
│ │ │ └── empty
│ │ ├── controllers
│ │ │ ├── empty
│ │ │ ├── books_controller.test.php
│ │ │ ├── tasks_controller.test.php
│ │ │ ├── users_controller.test.php
│ │ │ ├── groups_controller.test.php
│ │ │ ├── clients_controller.test.php
│ │ │ ├── neracas_controller.test.php
│ │ │ ├── catalogs_controller.test.php
│ │ │ ├── projects_controller.test.php
│ │ │ ├── worklogs_controller.test.php
│ │ │ ├── contracts_controller.test.php
│ │ │ ├── documents_controller.test.php
│ │ │ ├── tasknotes_controller.test.php
│ │ │ ├── bukubesars_controller.test.php
│ │ │ ├── transactions_controller.test.php
│ │ │ ├── accounting_accounts_controller.test.php
│ │ │ ├── accounting_transactions_controller.test.php
│ │ │ └── accounting_transaction_types_controller.test.php
│ │ └── helpers
│ │ │ └── empty
│ └── fixtures
│ │ ├── empty
│ │ ├── group_fixture.php
│ │ ├── book_fixture.php
│ │ └── accounting_transaction_type_fixture.php
├── views
│ ├── errors
│ │ └── empty
│ ├── helpers
│ │ └── empty
│ ├── elements
│ │ ├── empty
│ │ ├── tab
│ │ │ ├── dashboard.ctp
│ │ │ ├── document.ctp
│ │ │ ├── setting.ctp
│ │ │ ├── page.ctp
│ │ │ ├── activity.ctp
│ │ │ ├── finance.ctp
│ │ │ ├── human_resource.ctp
│ │ │ └── accounting.ctp
│ │ ├── nav_accounting_admin.ctp
│ │ └── nav_accounting_report.ctp
│ ├── layouts
│ │ ├── js
│ │ │ ├── empty
│ │ │ └── default.ctp
│ │ ├── rss
│ │ │ ├── empty
│ │ │ └── default.ctp
│ │ └── xml
│ │ │ ├── empty
│ │ │ └── default.ctp
│ ├── scaffolds
│ │ └── empty
│ ├── tasks
│ │ ├── ajax_upload.ctp
│ │ └── tasklist.ctp
│ ├── users
│ │ ├── build_acl.ctp
│ │ └── edit.ctp
│ ├── dashboards
│ │ └── index.ctp
│ ├── pages
│ │ └── home.ctp
│ ├── accounting_reportings
│ │ ├── neraca_lajur.ctp
│ │ └── jurnal_penutup.ctp
│ ├── worklogs
│ │ ├── log_row.ctp
│ │ ├── add.ctp
│ │ └── edit.ctp
│ ├── neracas
│ │ ├── add.ctp
│ │ └── edit.ctp
│ ├── configurations
│ │ └── allow.ctp
│ ├── finance_accounts
│ │ ├── add.ctp
│ │ └── edit.ctp
│ ├── finance_years
│ │ ├── add.ctp
│ │ └── edit.ctp
│ ├── contracts
│ │ ├── id_add.ctp
│ │ └── id_edit.ctp
│ ├── finance_incomes
│ │ ├── add.ctp
│ │ └── edit.ctp
│ ├── finance_expenses
│ │ ├── add.ctp
│ │ └── edit.ctp
│ ├── finance_budgets
│ │ ├── add.ctp
│ │ └── edit.ctp
│ ├── bukubesars
│ │ ├── add.ctp
│ │ └── edit.ctp
│ ├── invoices
│ │ ├── add.ctp
│ │ └── edit.ctp
│ ├── groups
│ │ ├── add.ctp
│ │ └── edit.ctp
│ ├── tasknotes
│ │ ├── add.ctp
│ │ └── edit.ctp
│ ├── projects
│ │ └── edit_team.ctp
│ ├── invoiceitems
│ │ ├── add.ctp
│ │ └── edit.ctp
│ ├── books
│ │ ├── add.ctp
│ │ └── edit.ctp
│ └── catalogs
│ │ ├── add.ctp
│ │ └── edit.ctp
├── models
│ ├── behaviors
│ │ └── empty
│ ├── datasources
│ │ └── empty
│ ├── aco.php
│ ├── aro.php
│ ├── finance_year.php
│ ├── finance_account.php
│ ├── transaction.php
│ ├── invoiceitem.php
│ ├── finance_budget.php
│ ├── finance_expense.php
│ ├── finance_income.php
│ ├── journal.php
│ ├── client.php
│ ├── catalog.php
│ ├── transaksibukubesar.php
│ ├── tasknote.php
│ ├── taskstatus.php
│ ├── users_project.php
│ ├── neraca.php
│ ├── group.php
│ ├── contract.php
│ ├── invoice.php
│ ├── book.php
│ ├── bukubesar.php
│ ├── document.php
│ └── log.php
├── controllers
│ ├── components
│ │ └── empty
│ └── dashboards_controller.php
├── locale
│ └── eng
│ │ └── LC_MESSAGES
│ │ └── empty
├── vendors
│ └── shells
│ │ ├── tasks
│ │ └── empty
│ │ └── templates
│ │ └── empty
├── tmp
│ └── cache
│ │ ├── cake_core_object_map
│ │ ├── cake_core_default_eng
│ │ ├── cake_core_default_en_us
│ │ ├── cake_model_default_users_projects
│ │ ├── cake_model_default_taskstatuses
│ │ ├── cake_model_default_groups
│ │ ├── cake_model_default_accounting_journal
│ │ ├── cake_model_default_logs
│ │ ├── cake_model_default_catalogs
│ │ ├── cake_model_default_accounting_journal_transaction
│ │ ├── cake_model_default_tasknotes
│ │ ├── cake_model_default_worklogs
│ │ ├── cake_model_default_acos
│ │ ├── cake_model_default_aros
│ │ ├── cake_model_default_contracts
│ │ ├── cake_core_core_paths
│ │ ├── cake_model_default_aros_acos
│ │ ├── cake_model_default_clients
│ │ ├── cake_model_default_users
│ │ ├── cake_model_default_internal_list
│ │ ├── cake_model_default_accounting_accounts
│ │ ├── cake_model_default_projects
│ │ ├── cake_model_default_documents
│ │ └── cake_model_default_accounting_buku_besars
├── webroot
│ ├── favicon.ico
│ ├── img
│ │ ├── Thumbs.db
│ │ ├── graph.png
│ │ ├── money.png
│ │ ├── btn_login.png
│ │ ├── cake.icon.gif
│ │ ├── icon
│ │ │ ├── f1.png
│ │ │ ├── key.png
│ │ │ ├── Thumbs.db
│ │ │ ├── add_48.png
│ │ │ ├── clock.png
│ │ │ ├── finish.png
│ │ │ ├── calendar.png
│ │ │ ├── home_16.png
│ │ │ ├── home_48.png
│ │ │ ├── info_16.png
│ │ │ ├── save_16.png
│ │ │ ├── table_48.png
│ │ │ └── worklog.png
│ │ ├── loader1.gif
│ │ ├── loader2.gif
│ │ ├── loader3.gif
│ │ ├── loader4.gif
│ │ ├── loader5.gif
│ │ ├── worklog.png
│ │ ├── baby_sleep.gif
│ │ ├── baby_sleep.jpg
│ │ ├── cake.power.gif
│ │ ├── logo-final.png
│ │ ├── loader_small.gif
│ │ ├── logo_internal.png
│ │ ├── share_folder.png
│ │ └── paper&pencil_48.png
│ ├── css
│ │ ├── img
│ │ │ ├── Thumbs.db
│ │ │ ├── bg_th.png
│ │ │ ├── close.gif
│ │ │ ├── 12_col.gif
│ │ │ ├── 16_col.gif
│ │ │ ├── bg_side.png
│ │ │ ├── chk_off.png
│ │ │ ├── chk_on.png
│ │ │ ├── rdo_off.png
│ │ │ ├── rdo_on.png
│ │ │ ├── slidebg.gif
│ │ │ ├── spinner.gif
│ │ │ ├── bg_button.png
│ │ │ ├── bg_input.png
│ │ │ ├── bg_nav-01.png
│ │ │ ├── box_10_bg.png
│ │ │ ├── box_10_top.png
│ │ │ ├── box_12_top.png
│ │ │ ├── box_16_bg.png
│ │ │ ├── box_16_top.png
│ │ │ ├── box_4_bg.png
│ │ │ ├── box_4_top.png
│ │ │ ├── menubarbg.png
│ │ │ ├── bg_tool_bar.png
│ │ │ ├── blue_bull_16.png
│ │ │ ├── box_4_bottom.png
│ │ │ ├── box_4_nav_bg.png
│ │ │ ├── images
│ │ │ │ └── Thumbs.db
│ │ │ ├── paperclip_10.png
│ │ │ ├── red_bull_16.png
│ │ │ ├── titlebar_bg.png
│ │ │ ├── bg_button_hover.png
│ │ │ ├── bg_nav-02-arrow.png
│ │ │ ├── bg_nav-02-btm.png
│ │ │ ├── bg_nav-02-top.png
│ │ │ ├── black_bull_16.png
│ │ │ ├── box_10_bottom.png
│ │ │ ├── box_10_dark_bg.png
│ │ │ ├── box_10_dark_top.png
│ │ │ ├── box_12_bottom.png
│ │ │ ├── box_12_content.png
│ │ │ ├── box_12_main_bg.png
│ │ │ ├── box_12_main_top.png
│ │ │ ├── box_16_bottom.png
│ │ │ ├── box_4_nav_top.png
│ │ │ ├── box_4_top_first.png
│ │ │ ├── dark-table-head.gif
│ │ │ ├── login_box_top.png
│ │ │ ├── login_page_bg.png
│ │ │ ├── menubarbg-hover.png
│ │ │ ├── bg-page_nav-left.png
│ │ │ ├── bg-page_nav-right.png
│ │ │ ├── bg_button_sprite.png
│ │ │ ├── bg_nav-01-current.png
│ │ │ ├── box_4_nav_bottom.png
│ │ │ ├── bright-table-head.gif
│ │ │ ├── login_box_bottom.png
│ │ │ ├── login_box_content.png
│ │ │ ├── bg-sub_nav_02_01-btm.png
│ │ │ ├── bg-sub_nav_02_01-top.png
│ │ │ ├── box_10_dark_bottom.png
│ │ │ ├── box_12_main_bottom.png
│ │ │ ├── dark-table-head-left.gif
│ │ │ ├── bright-table-head-left.gif
│ │ │ ├── dark-table-head-right.gif
│ │ │ └── bright-table-head-right.gif
│ │ ├── images
│ │ │ ├── Thumbs.db
│ │ │ ├── foxmenu_bg-OFF.gif
│ │ │ ├── menubar_hover.jpg
│ │ │ ├── foxmenu_bg-OVER.gif
│ │ │ ├── menu_ex_hover_bg.jpg
│ │ │ ├── menubar_default.jpg
│ │ │ ├── menu_ex_arrow_defa.jpg
│ │ │ ├── menu_ex_arrow_hover.jpg
│ │ │ └── no_standards_message.jpg
│ │ ├── reset.css
│ │ ├── text.css
│ │ └── ffp.css
│ ├── images
│ │ ├── Thumbs.db
│ │ ├── black.png
│ │ ├── blank.gif
│ │ ├── close.gif
│ │ ├── next.gif
│ │ ├── prev.gif
│ │ ├── arrow-up.gif
│ │ ├── black-70.png
│ │ ├── loading.gif
│ │ ├── overlay.png
│ │ ├── arrow-down.gif
│ │ ├── closelabel.gif
│ │ ├── nextlabel.gif
│ │ ├── prevlabel.gif
│ │ └── ajax-loading.gif
│ ├── files
│ │ └── tasks
│ │ │ ├── 1
│ │ │ └── 3.jpg
│ │ │ ├── 4
│ │ │ └── desktop.ini
│ │ │ ├── 5
│ │ │ └── save_16.png
│ │ │ └── 6
│ │ │ ├── save_16.png
│ │ │ └── worklog.png
│ ├── .htaccess
│ └── js
│ │ └── app.js
├── .htaccess
└── config
│ ├── database.php
│ └── sql
│ ├── sessions.sql
│ └── i18n.sql
├── vendors
├── css
│ └── empty
├── js
│ └── empty
└── shells
│ ├── tasks
│ └── empty
│ └── templates
│ └── empty
├── cake
├── VERSION.txt
├── tests
│ └── test_app
│ │ ├── views
│ │ ├── errors
│ │ │ └── empty
│ │ ├── pages
│ │ │ └── empty
│ │ ├── elements
│ │ │ ├── empty
│ │ │ ├── test_element.ctp
│ │ │ ├── nocache
│ │ │ │ ├── plain.ctp
│ │ │ │ ├── sub2.ctp
│ │ │ │ ├── contains_nocache.ctp
│ │ │ │ └── sub1.ctp
│ │ │ └── email
│ │ │ │ └── text
│ │ │ │ └── default.ctp
│ │ ├── helpers
│ │ │ └── empty
│ │ ├── scaffolds
│ │ │ └── empty
│ │ ├── posts
│ │ │ ├── index.ctp
│ │ │ ├── scaffold.edit.ctp
│ │ │ ├── cache_empty_sections.ctp
│ │ │ ├── nocache_multiple_element.ctp
│ │ │ ├── multiple_nocache.ctp
│ │ │ └── cache_form.ctp
│ │ ├── themed
│ │ │ └── test_theme
│ │ │ │ ├── posts
│ │ │ │ └── index.ctp
│ │ │ │ └── layouts
│ │ │ │ └── default.ctp
│ │ ├── tests_apps
│ │ │ └── index.ctp
│ │ └── layouts
│ │ │ ├── xml
│ │ │ └── default.ctp
│ │ │ ├── js
│ │ │ └── default.ctp
│ │ │ ├── session_helper.ctp
│ │ │ ├── rss
│ │ │ └── default.ctp
│ │ │ ├── cache_empty_sections.ctp
│ │ │ └── ajax.ctp
│ │ ├── models
│ │ ├── behaviors
│ │ │ └── empty
│ │ ├── datasources
│ │ │ └── empty
│ │ ├── post.php
│ │ └── comment.php
│ │ ├── controllers
│ │ └── components
│ │ │ └── empty
│ │ ├── vendors
│ │ ├── shells
│ │ │ ├── tasks
│ │ │ │ └── empty
│ │ │ └── templates
│ │ │ │ └── empty
│ │ ├── css
│ │ │ └── test_asset.css
│ │ └── img
│ │ │ └── test.jpg
│ │ ├── plugins
│ │ ├── test_plugin
│ │ │ ├── vendors
│ │ │ │ ├── shells
│ │ │ │ │ ├── tasks
│ │ │ │ │ │ └── empty
│ │ │ │ │ └── templates
│ │ │ │ │ │ └── empty
│ │ │ │ ├── js
│ │ │ │ │ └── test_plugin
│ │ │ │ │ │ └── test.js
│ │ │ │ ├── css
│ │ │ │ │ └── test_plugin_asset.css
│ │ │ │ └── img
│ │ │ │ │ └── cake.icon.gif
│ │ │ ├── views
│ │ │ │ ├── tests
│ │ │ │ │ ├── index.ctp
│ │ │ │ │ └── scaffold.edit.ctp
│ │ │ │ ├── layouts
│ │ │ │ │ └── default.ctp
│ │ │ │ └── themed
│ │ │ │ │ └── test_plugin_theme
│ │ │ │ │ ├── tests
│ │ │ │ │ └── index.ctp
│ │ │ │ │ └── layouts
│ │ │ │ │ └── default.ctp
│ │ │ └── locale
│ │ │ │ └── po
│ │ │ │ └── LC_MONETARY
│ │ │ │ └── test_plugin.po
│ │ ├── test_plugin_two
│ │ │ └── vendors
│ │ │ │ └── shells
│ │ │ │ ├── tasks
│ │ │ │ └── empty
│ │ │ │ └── templates
│ │ │ │ └── empty
│ │ └── plugin_js
│ │ │ └── vendors
│ │ │ └── js
│ │ │ └── plugin_js.js
│ │ └── locale
│ │ ├── rule_0_mo
│ │ └── LC_MESSAGES
│ │ │ ├── core.mo
│ │ │ └── default.mo
│ │ ├── rule_1_mo
│ │ └── LC_MESSAGES
│ │ │ ├── core.mo
│ │ │ └── default.mo
│ │ ├── rule_2_mo
│ │ └── LC_MESSAGES
│ │ │ ├── core.mo
│ │ │ └── default.mo
│ │ ├── rule_3_mo
│ │ └── LC_MESSAGES
│ │ │ ├── core.mo
│ │ │ └── default.mo
│ │ ├── rule_4_mo
│ │ └── LC_MESSAGES
│ │ │ ├── core.mo
│ │ │ └── default.mo
│ │ ├── rule_5_mo
│ │ └── LC_MESSAGES
│ │ │ ├── core.mo
│ │ │ └── default.mo
│ │ ├── rule_6_mo
│ │ └── LC_MESSAGES
│ │ │ ├── core.mo
│ │ │ └── default.mo
│ │ ├── rule_7_mo
│ │ └── LC_MESSAGES
│ │ │ ├── core.mo
│ │ │ └── default.mo
│ │ ├── rule_8_mo
│ │ └── LC_MESSAGES
│ │ │ ├── core.mo
│ │ │ └── default.mo
│ │ ├── rule_9_mo
│ │ └── LC_MESSAGES
│ │ │ ├── core.mo
│ │ │ └── default.mo
│ │ ├── rule_10_mo
│ │ └── LC_MESSAGES
│ │ │ ├── core.mo
│ │ │ └── default.mo
│ │ ├── rule_11_mo
│ │ └── LC_MESSAGES
│ │ │ ├── core.mo
│ │ │ └── default.mo
│ │ ├── rule_12_mo
│ │ └── LC_MESSAGES
│ │ │ ├── core.mo
│ │ │ └── default.mo
│ │ ├── rule_13_mo
│ │ └── LC_MESSAGES
│ │ │ ├── core.mo
│ │ │ └── default.mo
│ │ ├── rule_14_mo
│ │ └── LC_MESSAGES
│ │ │ ├── core.mo
│ │ │ └── default.mo
│ │ ├── po
│ │ └── LC_MONETARY
│ │ │ └── default.po
│ │ ├── rule_0_po
│ │ └── LC_MESSAGES
│ │ │ ├── core.po
│ │ │ └── default.po
│ │ ├── rule_2_po
│ │ └── LC_MESSAGES
│ │ │ ├── core.po
│ │ │ └── default.po
│ │ ├── rule_1_po
│ │ └── LC_MESSAGES
│ │ │ ├── core.po
│ │ │ └── default.po
│ │ ├── rule_14_po
│ │ └── LC_MESSAGES
│ │ │ ├── default.po
│ │ │ └── core.po
│ │ ├── rule_5_po
│ │ └── LC_MESSAGES
│ │ │ ├── default.po
│ │ │ └── core.po
│ │ ├── rule_12_po
│ │ └── LC_MESSAGES
│ │ │ ├── default.po
│ │ │ └── core.po
│ │ ├── rule_4_po
│ │ └── LC_MESSAGES
│ │ │ ├── core.po
│ │ │ └── default.po
│ │ ├── rule_8_po
│ │ └── LC_MESSAGES
│ │ │ ├── core.po
│ │ │ └── default.po
│ │ ├── rule_3_po
│ │ └── LC_MESSAGES
│ │ │ ├── core.po
│ │ │ └── default.po
│ │ ├── rule_11_po
│ │ └── LC_MESSAGES
│ │ │ └── default.po
│ │ ├── rule_13_po
│ │ └── LC_MESSAGES
│ │ │ └── default.po
│ │ ├── rule_9_po
│ │ └── LC_MESSAGES
│ │ │ ├── core.po
│ │ │ └── default.po
│ │ ├── rule_6_po
│ │ └── LC_MESSAGES
│ │ │ ├── core.po
│ │ │ └── default.po
│ │ ├── rule_7_po
│ │ └── LC_MESSAGES
│ │ │ └── core.po
│ │ └── rule_10_po
│ │ └── LC_MESSAGES
│ │ └── default.po
├── console
│ └── libs
│ │ └── templates
│ │ └── skel
│ │ ├── plugins
│ │ └── empty
│ │ ├── tmp
│ │ ├── logs
│ │ │ └── empty
│ │ ├── tests
│ │ │ └── empty
│ │ ├── sessions
│ │ │ └── empty
│ │ └── cache
│ │ │ ├── models
│ │ │ └── empty
│ │ │ ├── views
│ │ │ └── empty
│ │ │ └── persistent
│ │ │ └── empty
│ │ ├── tests
│ │ ├── fixtures
│ │ │ └── empty
│ │ ├── groups
│ │ │ └── empty
│ │ └── cases
│ │ │ ├── helpers
│ │ │ └── empty
│ │ │ ├── models
│ │ │ └── empty
│ │ │ ├── behaviors
│ │ │ └── empty
│ │ │ ├── components
│ │ │ └── empty
│ │ │ └── controllers
│ │ │ └── empty
│ │ ├── views
│ │ ├── elements
│ │ │ ├── empty
│ │ │ └── email
│ │ │ │ └── text
│ │ │ │ └── default.ctp
│ │ ├── errors
│ │ │ └── empty
│ │ ├── helpers
│ │ │ └── empty
│ │ ├── pages
│ │ │ └── empty
│ │ ├── scaffolds
│ │ │ └── empty
│ │ └── layouts
│ │ │ ├── xml
│ │ │ └── default.ctp
│ │ │ ├── js
│ │ │ └── default.ctp
│ │ │ ├── rss
│ │ │ └── default.ctp
│ │ │ └── ajax.ctp
│ │ ├── models
│ │ ├── behaviors
│ │ │ └── empty
│ │ └── datasources
│ │ │ └── empty
│ │ ├── controllers
│ │ └── components
│ │ │ └── empty
│ │ ├── locale
│ │ └── eng
│ │ │ └── LC_MESSAGES
│ │ │ └── empty
│ │ ├── vendors
│ │ └── shells
│ │ │ ├── tasks
│ │ │ └── empty
│ │ │ └── templates
│ │ │ └── empty
│ │ ├── webroot
│ │ ├── favicon.ico
│ │ ├── img
│ │ │ ├── cake.icon.gif
│ │ │ └── cake.power.gif
│ │ └── .htaccess
│ │ ├── .htaccess
│ │ ├── config
│ │ └── sql
│ │ │ ├── sessions.sql
│ │ │ └── i18n.sql
│ │ └── index.php
├── libs
│ └── view
│ │ ├── layouts
│ │ ├── xml
│ │ │ └── default.ctp
│ │ ├── js
│ │ │ └── default.ctp
│ │ ├── rss
│ │ │ └── default.ctp
│ │ └── ajax.ctp
│ │ └── elements
│ │ └── email
│ │ └── text
│ │ └── default.ctp
└── config
│ └── config.php
├── .gitignore
└── .htaccess
/app/plugins/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendors/css/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendors/js/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/tests/groups/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/views/errors/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/views/helpers/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/VERSION.txt:
--------------------------------------------------------------------------------
1 | 1.2.6
--------------------------------------------------------------------------------
/app/models/behaviors/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/models/datasources/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/tests/cases/models/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/tests/fixtures/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/views/elements/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/views/layouts/js/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/views/layouts/rss/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/views/layouts/xml/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/views/scaffolds/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendors/shells/tasks/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/controllers/components/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/locale/eng/LC_MESSAGES/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/tests/cases/behaviors/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/tests/cases/components/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/tests/cases/controllers/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/tests/cases/helpers/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/vendors/shells/tasks/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/views/tasks/ajax_upload.ctp:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/views/users/build_acl.ctp:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendors/shells/templates/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/vendors/shells/templates/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/tests/test_app/views/errors/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/tests/test_app/views/pages/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/views/dashboards/index.ctp:
--------------------------------------------------------------------------------
1 | halo
2 |
--------------------------------------------------------------------------------
/cake/tests/test_app/models/behaviors/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/tests/test_app/views/elements/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/tests/test_app/views/helpers/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/tests/test_app/views/scaffolds/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/plugins/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/tmp/logs/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/tmp/tests/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/tests/test_app/controllers/components/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/tests/test_app/models/datasources/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/tests/test_app/vendors/shells/tasks/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/tests/fixtures/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/tests/groups/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/tmp/sessions/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/views/elements/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/views/errors/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/views/helpers/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/views/pages/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/tests/test_app/vendors/shells/templates/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/tests/test_app/views/posts/index.ctp:
--------------------------------------------------------------------------------
1 | posts index
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/models/behaviors/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/models/datasources/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/tests/cases/helpers/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/tests/cases/models/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/tmp/cache/models/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/tmp/cache/views/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/views/scaffolds/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/controllers/components/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/locale/eng/LC_MESSAGES/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/tests/cases/behaviors/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/tests/cases/components/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/tests/cases/controllers/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/tmp/cache/persistent/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/vendors/shells/tasks/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/vendors/shells/templates/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/tests/test_app/plugins/test_plugin/vendors/shells/tasks/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/tests/test_app/plugins/test_plugin/vendors/shells/templates/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/tests/test_app/plugins/test_plugin_two/vendors/shells/tasks/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/plugins/acl_admin/views/_generic/ajax_redirect.thtml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/tests/test_app/plugins/test_plugin/views/tests/index.ctp:
--------------------------------------------------------------------------------
1 | test plugin index
--------------------------------------------------------------------------------
/cake/tests/test_app/plugins/test_plugin_two/vendors/shells/templates/empty:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/tests/test_app/vendors/css/test_asset.css:
--------------------------------------------------------------------------------
1 | this is the test asset css file
--------------------------------------------------------------------------------
/cake/tests/test_app/plugins/plugin_js/vendors/js/plugin_js.js:
--------------------------------------------------------------------------------
1 | alert('win sauce');
--------------------------------------------------------------------------------
/cake/tests/test_app/views/themed/test_theme/posts/index.ctp:
--------------------------------------------------------------------------------
1 | posts index themed view
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # app/tmp/cache/*
2 | # app/tmp/logs/*
3 | # app/tmp/tests/*
4 | .svn
5 |
--------------------------------------------------------------------------------
/cake/tests/test_app/plugins/test_plugin/vendors/js/test_plugin/test.js:
--------------------------------------------------------------------------------
1 | alert("Test App");
--------------------------------------------------------------------------------
/cake/tests/test_app/views/posts/scaffold.edit.ctp:
--------------------------------------------------------------------------------
1 | test_app posts add/edit scaffold view
--------------------------------------------------------------------------------
/cake/tests/test_app/views/tests_apps/index.ctp:
--------------------------------------------------------------------------------
1 | This is the TestsAppsController index view
--------------------------------------------------------------------------------
/cake/tests/test_app/views/themed/test_theme/layouts/default.ctp:
--------------------------------------------------------------------------------
1 | default test_theme layout
--------------------------------------------------------------------------------
/app/plugins/acl_admin/views/acl_node/plain.thtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/cake/tests/test_app/plugins/test_plugin/views/layouts/default.ctp:
--------------------------------------------------------------------------------
1 | test plugin default layout
--------------------------------------------------------------------------------
/cake/tests/test_app/views/elements/test_element.ctp:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/plugins/acl_admin/views/errors/missingTable.thtml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/tmp/cache/cake_core_object_map:
--------------------------------------------------------------------------------
1 | 1277878853
2 | a:1:{s:6:"plugin";a:1:{i:0;s:8:"AclAdmin";}}
3 |
--------------------------------------------------------------------------------
/app/webroot/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/favicon.ico
--------------------------------------------------------------------------------
/app/models/aco.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/models/aro.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/views/layouts/xml/default.ctp:
--------------------------------------------------------------------------------
1 | header()); ?>
2 |
--------------------------------------------------------------------------------
/app/views/tasks/tasklist.ctp:
--------------------------------------------------------------------------------
1 | element("list_task", array("tasks"=>$tasks)) ?>
2 |
--------------------------------------------------------------------------------
/app/webroot/img/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/Thumbs.db
--------------------------------------------------------------------------------
/app/webroot/img/graph.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/graph.png
--------------------------------------------------------------------------------
/app/webroot/img/money.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/money.png
--------------------------------------------------------------------------------
/cake/tests/test_app/plugins/test_plugin/views/tests/scaffold.edit.ctp:
--------------------------------------------------------------------------------
1 | test_plugin add/edit scaffold view
--------------------------------------------------------------------------------
/app/plugins/acl_admin/views/errors/missingConnection.thtml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/plugins/acl_admin/views/errors/missingHelperFile.thtml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/views/pages/home.ctp:
--------------------------------------------------------------------------------
1 | Interal Use Only
2 | Sistem informasi internal Javan IT Services
--------------------------------------------------------------------------------
/app/webroot/css/img/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/Thumbs.db
--------------------------------------------------------------------------------
/app/webroot/css/img/bg_th.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/bg_th.png
--------------------------------------------------------------------------------
/app/webroot/css/img/close.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/close.gif
--------------------------------------------------------------------------------
/app/webroot/images/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/images/Thumbs.db
--------------------------------------------------------------------------------
/app/webroot/images/black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/images/black.png
--------------------------------------------------------------------------------
/app/webroot/images/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/images/blank.gif
--------------------------------------------------------------------------------
/app/webroot/images/close.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/images/close.gif
--------------------------------------------------------------------------------
/app/webroot/images/next.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/images/next.gif
--------------------------------------------------------------------------------
/app/webroot/images/prev.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/images/prev.gif
--------------------------------------------------------------------------------
/app/webroot/img/btn_login.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/btn_login.png
--------------------------------------------------------------------------------
/app/webroot/img/cake.icon.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/cake.icon.gif
--------------------------------------------------------------------------------
/app/webroot/img/icon/f1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/icon/f1.png
--------------------------------------------------------------------------------
/app/webroot/img/icon/key.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/icon/key.png
--------------------------------------------------------------------------------
/app/webroot/img/loader1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/loader1.gif
--------------------------------------------------------------------------------
/app/webroot/img/loader2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/loader2.gif
--------------------------------------------------------------------------------
/app/webroot/img/loader3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/loader3.gif
--------------------------------------------------------------------------------
/app/webroot/img/loader4.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/loader4.gif
--------------------------------------------------------------------------------
/app/webroot/img/loader5.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/loader5.gif
--------------------------------------------------------------------------------
/app/webroot/img/worklog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/worklog.png
--------------------------------------------------------------------------------
/cake/libs/view/layouts/xml/default.ctp:
--------------------------------------------------------------------------------
1 | header(); ?>
2 |
--------------------------------------------------------------------------------
/app/plugins/acl_admin/views/errors/missingComponentFile.thtml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/webroot/css/img/12_col.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/12_col.gif
--------------------------------------------------------------------------------
/app/webroot/css/img/16_col.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/16_col.gif
--------------------------------------------------------------------------------
/app/webroot/css/img/bg_side.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/bg_side.png
--------------------------------------------------------------------------------
/app/webroot/css/img/chk_off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/chk_off.png
--------------------------------------------------------------------------------
/app/webroot/css/img/chk_on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/chk_on.png
--------------------------------------------------------------------------------
/app/webroot/css/img/rdo_off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/rdo_off.png
--------------------------------------------------------------------------------
/app/webroot/css/img/rdo_on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/rdo_on.png
--------------------------------------------------------------------------------
/app/webroot/css/img/slidebg.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/slidebg.gif
--------------------------------------------------------------------------------
/app/webroot/css/img/spinner.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/spinner.gif
--------------------------------------------------------------------------------
/app/webroot/files/tasks/1/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/files/tasks/1/3.jpg
--------------------------------------------------------------------------------
/app/webroot/images/arrow-up.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/images/arrow-up.gif
--------------------------------------------------------------------------------
/app/webroot/images/black-70.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/images/black-70.png
--------------------------------------------------------------------------------
/app/webroot/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/images/loading.gif
--------------------------------------------------------------------------------
/app/webroot/images/overlay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/images/overlay.png
--------------------------------------------------------------------------------
/app/webroot/img/baby_sleep.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/baby_sleep.gif
--------------------------------------------------------------------------------
/app/webroot/img/baby_sleep.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/baby_sleep.jpg
--------------------------------------------------------------------------------
/app/webroot/img/cake.power.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/cake.power.gif
--------------------------------------------------------------------------------
/app/webroot/img/icon/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/icon/Thumbs.db
--------------------------------------------------------------------------------
/app/webroot/img/icon/add_48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/icon/add_48.png
--------------------------------------------------------------------------------
/app/webroot/img/icon/clock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/icon/clock.png
--------------------------------------------------------------------------------
/app/webroot/img/icon/finish.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/icon/finish.png
--------------------------------------------------------------------------------
/app/webroot/img/logo-final.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/logo-final.png
--------------------------------------------------------------------------------
/cake/tests/test_app/plugins/test_plugin/vendors/css/test_plugin_asset.css:
--------------------------------------------------------------------------------
1 | this is the test plugin asset css file
--------------------------------------------------------------------------------
/app/webroot/css/images/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/images/Thumbs.db
--------------------------------------------------------------------------------
/app/webroot/css/img/bg_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/bg_button.png
--------------------------------------------------------------------------------
/app/webroot/css/img/bg_input.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/bg_input.png
--------------------------------------------------------------------------------
/app/webroot/css/img/bg_nav-01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/bg_nav-01.png
--------------------------------------------------------------------------------
/app/webroot/css/img/box_10_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/box_10_bg.png
--------------------------------------------------------------------------------
/app/webroot/css/img/box_10_top.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/box_10_top.png
--------------------------------------------------------------------------------
/app/webroot/css/img/box_12_top.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/box_12_top.png
--------------------------------------------------------------------------------
/app/webroot/css/img/box_16_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/box_16_bg.png
--------------------------------------------------------------------------------
/app/webroot/css/img/box_16_top.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/box_16_top.png
--------------------------------------------------------------------------------
/app/webroot/css/img/box_4_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/box_4_bg.png
--------------------------------------------------------------------------------
/app/webroot/css/img/box_4_top.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/box_4_top.png
--------------------------------------------------------------------------------
/app/webroot/css/img/menubarbg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/menubarbg.png
--------------------------------------------------------------------------------
/app/webroot/images/arrow-down.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/images/arrow-down.gif
--------------------------------------------------------------------------------
/app/webroot/images/closelabel.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/images/closelabel.gif
--------------------------------------------------------------------------------
/app/webroot/images/nextlabel.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/images/nextlabel.gif
--------------------------------------------------------------------------------
/app/webroot/images/prevlabel.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/images/prevlabel.gif
--------------------------------------------------------------------------------
/app/webroot/img/icon/calendar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/icon/calendar.png
--------------------------------------------------------------------------------
/app/webroot/img/icon/home_16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/icon/home_16.png
--------------------------------------------------------------------------------
/app/webroot/img/icon/home_48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/icon/home_48.png
--------------------------------------------------------------------------------
/app/webroot/img/icon/info_16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/icon/info_16.png
--------------------------------------------------------------------------------
/app/webroot/img/icon/save_16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/icon/save_16.png
--------------------------------------------------------------------------------
/app/webroot/img/icon/table_48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/icon/table_48.png
--------------------------------------------------------------------------------
/app/webroot/img/icon/worklog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/icon/worklog.png
--------------------------------------------------------------------------------
/app/webroot/img/loader_small.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/loader_small.gif
--------------------------------------------------------------------------------
/app/webroot/img/logo_internal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/logo_internal.png
--------------------------------------------------------------------------------
/app/webroot/img/share_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/share_folder.png
--------------------------------------------------------------------------------
/cake/tests/test_app/plugins/test_plugin/views/themed/test_plugin_theme/tests/index.ctp:
--------------------------------------------------------------------------------
1 | test plugin index theme view
--------------------------------------------------------------------------------
/cake/tests/test_app/views/layouts/xml/default.ctp:
--------------------------------------------------------------------------------
1 | header(); ?>
2 |
--------------------------------------------------------------------------------
/app/plugins/acl_admin/views/_generic/download.thtml:
--------------------------------------------------------------------------------
1 | Download
2 | Enjoy the download.
--------------------------------------------------------------------------------
/app/webroot/css/img/bg_tool_bar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/bg_tool_bar.png
--------------------------------------------------------------------------------
/app/webroot/css/img/blue_bull_16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/blue_bull_16.png
--------------------------------------------------------------------------------
/app/webroot/css/img/box_4_bottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/box_4_bottom.png
--------------------------------------------------------------------------------
/app/webroot/css/img/box_4_nav_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/box_4_nav_bg.png
--------------------------------------------------------------------------------
/app/webroot/css/img/images/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/images/Thumbs.db
--------------------------------------------------------------------------------
/app/webroot/css/img/paperclip_10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/paperclip_10.png
--------------------------------------------------------------------------------
/app/webroot/css/img/red_bull_16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/red_bull_16.png
--------------------------------------------------------------------------------
/app/webroot/css/img/titlebar_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/titlebar_bg.png
--------------------------------------------------------------------------------
/app/webroot/images/ajax-loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/images/ajax-loading.gif
--------------------------------------------------------------------------------
/app/webroot/img/paper&pencil_48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/img/paper&pencil_48.png
--------------------------------------------------------------------------------
/app/models/finance_year.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/webroot/css/img/bg_button_hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/bg_button_hover.png
--------------------------------------------------------------------------------
/app/webroot/css/img/bg_nav-02-arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/bg_nav-02-arrow.png
--------------------------------------------------------------------------------
/app/webroot/css/img/bg_nav-02-btm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/bg_nav-02-btm.png
--------------------------------------------------------------------------------
/app/webroot/css/img/bg_nav-02-top.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/bg_nav-02-top.png
--------------------------------------------------------------------------------
/app/webroot/css/img/black_bull_16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/black_bull_16.png
--------------------------------------------------------------------------------
/app/webroot/css/img/box_10_bottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/box_10_bottom.png
--------------------------------------------------------------------------------
/app/webroot/css/img/box_10_dark_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/box_10_dark_bg.png
--------------------------------------------------------------------------------
/app/webroot/css/img/box_10_dark_top.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/box_10_dark_top.png
--------------------------------------------------------------------------------
/app/webroot/css/img/box_12_bottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/box_12_bottom.png
--------------------------------------------------------------------------------
/app/webroot/css/img/box_12_content.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/box_12_content.png
--------------------------------------------------------------------------------
/app/webroot/css/img/box_12_main_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/box_12_main_bg.png
--------------------------------------------------------------------------------
/app/webroot/css/img/box_12_main_top.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/box_12_main_top.png
--------------------------------------------------------------------------------
/app/webroot/css/img/box_16_bottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/box_16_bottom.png
--------------------------------------------------------------------------------
/app/webroot/css/img/box_4_nav_top.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/box_4_nav_top.png
--------------------------------------------------------------------------------
/app/webroot/css/img/box_4_top_first.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/box_4_top_first.png
--------------------------------------------------------------------------------
/app/webroot/css/img/dark-table-head.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/dark-table-head.gif
--------------------------------------------------------------------------------
/app/webroot/css/img/login_box_top.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/login_box_top.png
--------------------------------------------------------------------------------
/app/webroot/css/img/login_page_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/login_page_bg.png
--------------------------------------------------------------------------------
/app/webroot/css/img/menubarbg-hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/menubarbg-hover.png
--------------------------------------------------------------------------------
/app/webroot/files/tasks/5/save_16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/files/tasks/5/save_16.png
--------------------------------------------------------------------------------
/app/webroot/files/tasks/6/save_16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/files/tasks/6/save_16.png
--------------------------------------------------------------------------------
/app/webroot/files/tasks/6/worklog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/files/tasks/6/worklog.png
--------------------------------------------------------------------------------
/cake/tests/test_app/views/posts/cache_empty_sections.ctp:
--------------------------------------------------------------------------------
1 | View Content
2 |
3 |
--------------------------------------------------------------------------------
/app/plugins/acl_admin/views/layouts/flash_error.thtml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/plugins/acl_admin/views/layouts/flash_info.thtml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/plugins/acl_admin/views/layouts/flash_warn.thtml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/webroot/css/images/foxmenu_bg-OFF.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/images/foxmenu_bg-OFF.gif
--------------------------------------------------------------------------------
/app/webroot/css/images/menubar_hover.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/images/menubar_hover.jpg
--------------------------------------------------------------------------------
/app/webroot/css/img/bg-page_nav-left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/bg-page_nav-left.png
--------------------------------------------------------------------------------
/app/webroot/css/img/bg-page_nav-right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/bg-page_nav-right.png
--------------------------------------------------------------------------------
/app/webroot/css/img/bg_button_sprite.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/bg_button_sprite.png
--------------------------------------------------------------------------------
/app/webroot/css/img/bg_nav-01-current.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/bg_nav-01-current.png
--------------------------------------------------------------------------------
/app/webroot/css/img/box_4_nav_bottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/box_4_nav_bottom.png
--------------------------------------------------------------------------------
/app/webroot/css/img/bright-table-head.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/bright-table-head.gif
--------------------------------------------------------------------------------
/app/webroot/css/img/login_box_bottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/login_box_bottom.png
--------------------------------------------------------------------------------
/app/webroot/css/img/login_box_content.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/login_box_content.png
--------------------------------------------------------------------------------
/app/webroot/files/tasks/4/desktop.ini:
--------------------------------------------------------------------------------
1 | [DeleteOnCopy]
2 | Owner=dphran
3 | Personalized=5
4 | PersonalizedName=My Documents
5 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/views/layouts/xml/default.ctp:
--------------------------------------------------------------------------------
1 | header(); ?>
2 |
--------------------------------------------------------------------------------
/cake/tests/test_app/vendors/img/test.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/vendors/img/test.jpg
--------------------------------------------------------------------------------
/app/models/finance_account.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/webroot/css/images/foxmenu_bg-OVER.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/images/foxmenu_bg-OVER.gif
--------------------------------------------------------------------------------
/app/webroot/css/images/menu_ex_hover_bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/images/menu_ex_hover_bg.jpg
--------------------------------------------------------------------------------
/app/webroot/css/images/menubar_default.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/images/menubar_default.jpg
--------------------------------------------------------------------------------
/app/webroot/css/img/bg-sub_nav_02_01-btm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/bg-sub_nav_02_01-btm.png
--------------------------------------------------------------------------------
/app/webroot/css/img/bg-sub_nav_02_01-top.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/bg-sub_nav_02_01-top.png
--------------------------------------------------------------------------------
/app/webroot/css/img/box_10_dark_bottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/box_10_dark_bottom.png
--------------------------------------------------------------------------------
/app/webroot/css/img/box_12_main_bottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/box_12_main_bottom.png
--------------------------------------------------------------------------------
/app/webroot/css/img/dark-table-head-left.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/dark-table-head-left.gif
--------------------------------------------------------------------------------
/cake/tests/test_app/plugins/test_plugin/views/themed/test_plugin_theme/layouts/default.ctp:
--------------------------------------------------------------------------------
1 | test_plugin test_plugin_theme default layout
--------------------------------------------------------------------------------
/app/webroot/css/images/menu_ex_arrow_defa.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/images/menu_ex_arrow_defa.jpg
--------------------------------------------------------------------------------
/app/webroot/css/images/menu_ex_arrow_hover.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/images/menu_ex_arrow_hover.jpg
--------------------------------------------------------------------------------
/app/webroot/css/img/bright-table-head-left.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/bright-table-head-left.gif
--------------------------------------------------------------------------------
/app/webroot/css/img/dark-table-head-right.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/dark-table-head-right.gif
--------------------------------------------------------------------------------
/app/plugins/acl_admin/models/dummy.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/views/layouts/js/default.ctp:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/webroot/css/images/no_standards_message.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/images/no_standards_message.jpg
--------------------------------------------------------------------------------
/app/webroot/css/img/bright-table-head-right.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/app/webroot/css/img/bright-table-head-right.gif
--------------------------------------------------------------------------------
/app/plugins/acl_admin/acl_admin_app_model.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/plugins/acl_admin/views/layouts/ajax.thtml:
--------------------------------------------------------------------------------
1 | check('Message.flash')) $session->flash(); ?>
2 |
--------------------------------------------------------------------------------
/cake/libs/view/layouts/js/default.ctp:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/tmp/cache/cake_core_default_eng:
--------------------------------------------------------------------------------
1 | 1277861068
2 | a:1:{s:11:"LC_MESSAGES";a:2:{s:0:"";a:1:{s:7:"default";a:0:{}}s:2:"en";a:1:{s:7:"default";a:0:{}}}}
3 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/webroot/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/console/libs/templates/skel/webroot/favicon.ico
--------------------------------------------------------------------------------
/app/tmp/cache/cake_core_default_en_us:
--------------------------------------------------------------------------------
1 | 1277878853
2 | a:1:{s:11:"LC_MESSAGES";a:2:{s:0:"";a:1:{s:7:"default";a:0:{}}s:5:"en-us";a:1:{s:7:"default";a:0:{}}}}
3 |
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_0_mo/LC_MESSAGES/core.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_0_mo/LC_MESSAGES/core.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_1_mo/LC_MESSAGES/core.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_1_mo/LC_MESSAGES/core.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_2_mo/LC_MESSAGES/core.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_2_mo/LC_MESSAGES/core.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_3_mo/LC_MESSAGES/core.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_3_mo/LC_MESSAGES/core.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_4_mo/LC_MESSAGES/core.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_4_mo/LC_MESSAGES/core.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_5_mo/LC_MESSAGES/core.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_5_mo/LC_MESSAGES/core.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_6_mo/LC_MESSAGES/core.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_6_mo/LC_MESSAGES/core.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_7_mo/LC_MESSAGES/core.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_7_mo/LC_MESSAGES/core.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_8_mo/LC_MESSAGES/core.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_8_mo/LC_MESSAGES/core.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_9_mo/LC_MESSAGES/core.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_9_mo/LC_MESSAGES/core.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/views/elements/nocache/plain.ctp:
--------------------------------------------------------------------------------
1 | Cache Me
2 | B. In Plain Element
3 | log('2. in plain element') ?>
4 |
5 |
--------------------------------------------------------------------------------
/cake/tests/test_app/views/layouts/js/default.ctp:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/.htaccess:
--------------------------------------------------------------------------------
1 |
2 | RewriteEngine on
3 | RewriteRule ^$ app/webroot/ [L]
4 | RewriteRule (.*) app/webroot/$1 [L]
5 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/webroot/img/cake.icon.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/console/libs/templates/skel/webroot/img/cake.icon.gif
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/webroot/img/cake.power.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/console/libs/templates/skel/webroot/img/cake.power.gif
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_0_mo/LC_MESSAGES/default.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_0_mo/LC_MESSAGES/default.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_10_mo/LC_MESSAGES/core.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_10_mo/LC_MESSAGES/core.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_11_mo/LC_MESSAGES/core.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_11_mo/LC_MESSAGES/core.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_12_mo/LC_MESSAGES/core.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_12_mo/LC_MESSAGES/core.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_13_mo/LC_MESSAGES/core.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_13_mo/LC_MESSAGES/core.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_14_mo/LC_MESSAGES/core.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_14_mo/LC_MESSAGES/core.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_1_mo/LC_MESSAGES/default.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_1_mo/LC_MESSAGES/default.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_2_mo/LC_MESSAGES/default.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_2_mo/LC_MESSAGES/default.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_3_mo/LC_MESSAGES/default.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_3_mo/LC_MESSAGES/default.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_4_mo/LC_MESSAGES/default.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_4_mo/LC_MESSAGES/default.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_5_mo/LC_MESSAGES/default.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_5_mo/LC_MESSAGES/default.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_6_mo/LC_MESSAGES/default.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_6_mo/LC_MESSAGES/default.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_7_mo/LC_MESSAGES/default.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_7_mo/LC_MESSAGES/default.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_8_mo/LC_MESSAGES/default.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_8_mo/LC_MESSAGES/default.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_9_mo/LC_MESSAGES/default.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_9_mo/LC_MESSAGES/default.mo
--------------------------------------------------------------------------------
/app/.htaccess:
--------------------------------------------------------------------------------
1 |
2 | RewriteEngine on
3 | RewriteRule ^$ webroot/ [L]
4 | RewriteRule (.*) webroot/$1 [L]
5 |
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_10_mo/LC_MESSAGES/default.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_10_mo/LC_MESSAGES/default.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_11_mo/LC_MESSAGES/default.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_11_mo/LC_MESSAGES/default.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_12_mo/LC_MESSAGES/default.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_12_mo/LC_MESSAGES/default.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_13_mo/LC_MESSAGES/default.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_13_mo/LC_MESSAGES/default.mo
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_14_mo/LC_MESSAGES/default.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/locale/rule_14_mo/LC_MESSAGES/default.mo
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/views/layouts/js/default.ctp:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/cake/tests/test_app/plugins/test_plugin/vendors/img/cake.icon.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ATA/internal/master/cake/tests/test_app/plugins/test_plugin/vendors/img/cake.icon.gif
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/.htaccess:
--------------------------------------------------------------------------------
1 |
2 | RewriteEngine on
3 | RewriteRule ^$ webroot/ [L]
4 | RewriteRule (.*) webroot/$1 [L]
5 |
--------------------------------------------------------------------------------
/cake/tests/test_app/views/elements/nocache/sub2.ctp:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/cake/tests/test_app/views/layouts/session_helper.ctp:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/views/elements/tab/dashboard.ctp:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/app/webroot/.htaccess:
--------------------------------------------------------------------------------
1 |
2 | RewriteEngine On
3 | RewriteCond %{REQUEST_FILENAME} !-d
4 | RewriteCond %{REQUEST_FILENAME} !-f
5 | RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
6 |
--------------------------------------------------------------------------------
/cake/tests/test_app/views/elements/nocache/contains_nocache.ctp:
--------------------------------------------------------------------------------
1 | Cache Me
2 |
3 | F. In Element With No Cache Tags
4 | log('6. In element with no cache tags') ?>
5 |
6 |
--------------------------------------------------------------------------------
/app/plugins/acl_admin/views/errors/missing_connection.thtml:
--------------------------------------------------------------------------------
1 | No Database
2 |
3 |
This plugin is for use adminstering the cake DB ACL solution; to use it you will need a database and to create the ACL tables.
4 |
--------------------------------------------------------------------------------
/cake/tests/test_app/views/posts/nocache_multiple_element.ctp:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | element('nocache/sub1'); ?>
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/webroot/.htaccess:
--------------------------------------------------------------------------------
1 |
2 | RewriteEngine On
3 | RewriteCond %{REQUEST_FILENAME} !-d
4 | RewriteCond %{REQUEST_FILENAME} !-f
5 | RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
6 |
--------------------------------------------------------------------------------
/cake/tests/test_app/views/elements/nocache/sub1.ctp:
--------------------------------------------------------------------------------
1 | element('nocache/sub2'); ?>
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/app/controllers/dashboards_controller.php:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/app/views/layouts/rss/default.ctp:
--------------------------------------------------------------------------------
1 | header();
3 |
4 | if (!isset($channel)) {
5 | $channel = array();
6 | }
7 | if (!isset($channel['title'])) {
8 | $channel['title'] = $title_for_layout;
9 | }
10 |
11 | echo $rss->document(
12 | $rss->channel(
13 | array(), $channel, $content_for_layout
14 | )
15 | );
16 | ?>
--------------------------------------------------------------------------------
/cake/libs/view/layouts/rss/default.ctp:
--------------------------------------------------------------------------------
1 | header();
3 |
4 | if (!isset($channel)) {
5 | $channel = array();
6 | }
7 | if (!isset($channel['title'])) {
8 | $channel['title'] = $title_for_layout;
9 | }
10 |
11 | echo $rss->document(
12 | $rss->channel(
13 | array(), $channel, $content_for_layout
14 | )
15 | );
16 | ?>
--------------------------------------------------------------------------------
/cake/tests/test_app/views/posts/multiple_nocache.ctp:
--------------------------------------------------------------------------------
1 | --view start--
2 |
3 |
4 |
5 |
6 | this view has 3 nocache blocks
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | --view end--
--------------------------------------------------------------------------------
/app/plugins/acl_admin/views/errors/missing_helper_file.thtml:
--------------------------------------------------------------------------------
1 | Missing Helper File
2 |
3 |
You have accessed a controller that requires the helper. This hasn't been included in the download, as the author is not AD7six; if you wish to use this controller, find this helper (on the bakery, wiki or a blog).
4 |
--------------------------------------------------------------------------------
/cake/tests/test_app/views/layouts/rss/default.ctp:
--------------------------------------------------------------------------------
1 | header();
3 |
4 | if (!isset($channel)) {
5 | $channel = array();
6 | }
7 | if (!isset($channel['title'])) {
8 | $channel['title'] = $title_for_layout;
9 | }
10 |
11 | echo $rss->document(
12 | $rss->channel(
13 | array(), $channel, $content_for_layout
14 | )
15 | );
16 |
17 | ?>
--------------------------------------------------------------------------------
/app/plugins/acl_admin/views/errors/missing_component_file.thtml:
--------------------------------------------------------------------------------
1 | Missing Component File
2 |
3 |
You have accessed a controller that requires the component. This hasn't been included in the download, as the author is not AD7six; if you wish to use this controller, find this helper (on the bakery, wiki or a blog).
4 |
--------------------------------------------------------------------------------
/app/tmp/cache/cake_model_default_users_projects:
--------------------------------------------------------------------------------
1 | 1277878855
2 | a:3:{s:2:"id";a:5:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:20;s:3:"key";s:7:"primary";}s:7:"user_id";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:20;}s:10:"project_id";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:20;}}
3 |
--------------------------------------------------------------------------------
/app/views/elements/nav_accounting_admin.ctp:
--------------------------------------------------------------------------------
1 |
2 |
3 | >
4 | link(__('Account', true),array(
5 | 'controller' => 'accounting_accounts','action'=>'index'
6 | ),array(), false, false); ?>
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/views/layouts/rss/default.ctp:
--------------------------------------------------------------------------------
1 | header();
3 |
4 | if (!isset($channel)) {
5 | $channel = array();
6 | }
7 | if (!isset($channel['title'])) {
8 | $channel['title'] = $title_for_layout;
9 | }
10 |
11 | echo $rss->document(
12 | $rss->channel(
13 | array(), $channel, $content_for_layout
14 | )
15 | );
16 |
17 | ?>
--------------------------------------------------------------------------------
/app/tmp/cache/cake_model_default_taskstatuses:
--------------------------------------------------------------------------------
1 | 1277878855
2 | a:3:{s:2:"id";a:5:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:11;s:3:"key";s:7:"primary";}s:4:"name";a:5:{s:4:"type";s:6:"string";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:255;s:3:"key";s:6:"unique";}s:11:"description";a:4:{s:4:"type";s:6:"string";s:4:"null";b:1;s:7:"default";N;s:6:"length";i:1000;}}
3 |
--------------------------------------------------------------------------------
/app/plugins/acl_admin/views/errors/missing_user_table.thtml:
--------------------------------------------------------------------------------
1 | No User Model
2 |
3 |
You need to tell this plugin what your user model is called to be able to use this function.
4 |
If you don't have users already set up on your system, you need an authentication solution such as link('DAuth','http://bakery.cakephp.org/articles/view/147')?>
5 |
--------------------------------------------------------------------------------
/app/views/accounting_reportings/neraca_lajur.ctp:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | renderElement("nav_accounting_report")?>
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/app/views/accounting_reportings/jurnal_penutup.ctp:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | renderElement("nav_accounting_report")?>
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/cake/tests/test_app/views/posts/cache_form.ctp:
--------------------------------------------------------------------------------
1 |
2 |
3 | create('User');?>
4 |
5 |
6 | input('username');
8 | echo $form->input('email');
9 | echo $form->input('password');
10 | ?>
11 |
12 | end('Submit');?>
13 |
14 |
--------------------------------------------------------------------------------
/app/tmp/cache/cake_model_default_groups:
--------------------------------------------------------------------------------
1 | 1277878855
2 | a:4:{s:2:"id";a:5:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:11;s:3:"key";s:7:"primary";}s:4:"name";a:4:{s:4:"type";s:6:"string";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:100;}s:7:"created";a:4:{s:4:"type";s:8:"datetime";s:4:"null";b:1;s:7:"default";N;s:6:"length";N;}s:8:"modified";a:4:{s:4:"type";s:8:"datetime";s:4:"null";b:1;s:7:"default";N;s:6:"length";N;}}
3 |
--------------------------------------------------------------------------------
/app/models/transaction.php:
--------------------------------------------------------------------------------
1 | array(
9 | 'className' => 'Book',
10 | 'foreignKey' => 'book_id',
11 | 'conditions' => '',
12 | 'fields' => '',
13 | 'order' => ''
14 | )
15 | );
16 |
17 | }
18 | ?>
--------------------------------------------------------------------------------
/app/views/worklogs/log_row.ctp:
--------------------------------------------------------------------------------
1 |
2 |
3 | niceShort($log['created']); ?>
4 |
5 |
6 |
7 |
8 |
9 | link(__('Delete', true), array('action'=>'log_delete', $log['id']), null, sprintf(__('Are you sure you want to delete # %s?', true), $log['id'])); ?>
10 |
11 |
12 |
--------------------------------------------------------------------------------
/app/models/invoiceitem.php:
--------------------------------------------------------------------------------
1 | array(
9 | 'className' => 'Invoice',
10 | 'foreignKey' => 'invoice_id',
11 | 'conditions' => '',
12 | 'fields' => '',
13 | 'order' => ''
14 | )
15 | );
16 |
17 | }
18 | ?>
--------------------------------------------------------------------------------
/app/tmp/cache/cake_model_default_accounting_journal:
--------------------------------------------------------------------------------
1 | 1277878853
2 | a:4:{s:2:"id";a:5:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:11;s:3:"key";s:7:"primary";}s:4:"note";a:4:{s:4:"type";s:4:"text";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}s:7:"created";a:4:{s:4:"type";s:9:"timestamp";s:4:"null";b:0;s:7:"default";s:17:"CURRENT_TIMESTAMP";s:6:"length";N;}s:7:"user_id";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:11;}}
3 |
--------------------------------------------------------------------------------
/app/views/neracas/add.ctp:
--------------------------------------------------------------------------------
1 |
2 | create('Neraca');?>
3 |
4 |
5 | input('nama');
7 | echo $form->input('keterangan');
8 | ?>
9 |
10 | end('Submit');?>
11 |
12 |
13 |
14 | link(__('List Neracas', true), array('action' => 'index'));?>
15 |
16 |
17 |
--------------------------------------------------------------------------------
/app/views/elements/tab/document.ctp:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | link("Document","/documents",array("class"=>($submodul=="documents")?"current":"")); ?>
6 | link("Catalog","/catalogs",array("class"=>($submodul=="catalogs")?"current":"")); ?>
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/views/elements/tab/setting.ctp:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | link("Group","/groups",array("class"=>($submodul=="groups")?"current":"")); ?>
6 | link("Access Control","/configurations",array("class"=>($submodul=="configurations")?"current":"")); ?>
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/plugins/acl_admin/controllers/download_me_controller.php:
--------------------------------------------------------------------------------
1 | DownloadPlugin->go($this->plugin,$confirmed,$extras);
12 | }
13 | }
14 | ?>
--------------------------------------------------------------------------------
/app/views/configurations/allow.ctp:
--------------------------------------------------------------------------------
1 | link('Deny',"deny/$id/".$groupname.$controller.$method,array('update' => $id));
11 | }
12 | else{
13 | echo $ajax->link('Allow',"allow/$id/".$groupname.$controller.$method,array('update' => $id));
14 | echo "Deny";
15 | }
16 | ?>
17 |
--------------------------------------------------------------------------------
/app/views/finance_accounts/add.ctp:
--------------------------------------------------------------------------------
1 |
2 | create('FinanceAccount');?>
3 |
4 |
5 | input('name');
7 | echo $form->input('description');
8 | ?>
9 |
10 | end('Submit');?>
11 |
12 |
13 |
14 | link(__('List FinanceAccounts', true), array('action'=>'index'));?>
15 |
16 |
17 |
--------------------------------------------------------------------------------
/app/plugins/acl_admin/views/acl_node/notswad.thtml:
--------------------------------------------------------------------------------
1 | The Acl Node class
2 | At the time of writing, some of the functionality for the cake acl node class is missing/incorrect. There are a number of tickets created for these, but if you are interested to see what changes have been made to the ACL node class they are available on link('Noswad','http://www.noswad.me.uk/AclAdmin/AclNode')?>.
3 | Below is your own acl node class.
4 |
5 |
--------------------------------------------------------------------------------
/app/config/database.php:
--------------------------------------------------------------------------------
1 | 'mysql',
6 | // 'persistent' => false,
7 | // 'host' => '192.168.0.15',
8 | // 'login' => 'devel',
9 | // 'password' => 'devel',
10 | // 'database' => 'internal',
11 | //);
12 |
13 | var $default = array(
14 | 'driver' => 'mysql',
15 | 'persistent' => false,
16 | 'host' => 'localhost',
17 | 'login' => 'root',
18 | 'password' => 'root',
19 | 'database' => 'internal',
20 | );
21 |
22 | }
23 | ?>
24 |
--------------------------------------------------------------------------------
/app/tmp/cache/cake_model_default_logs:
--------------------------------------------------------------------------------
1 | 1277878855
2 | a:5:{s:2:"id";a:5:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:11;s:3:"key";s:7:"primary";}s:10:"worklog_id";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:11;}s:7:"content";a:4:{s:4:"type";s:4:"text";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}s:7:"created";a:4:{s:4:"type";s:8:"datetime";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}s:8:"modified";a:4:{s:4:"type";s:8:"datetime";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}}
3 |
--------------------------------------------------------------------------------
/app/tmp/cache/cake_model_default_catalogs:
--------------------------------------------------------------------------------
1 | 1277878855
2 | a:5:{s:2:"id";a:5:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:11;s:3:"key";s:7:"primary";}s:4:"name";a:4:{s:4:"type";s:6:"string";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:255;}s:11:"description";a:4:{s:4:"type";s:4:"text";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}s:7:"created";a:4:{s:4:"type";s:8:"datetime";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}s:8:"modified";a:4:{s:4:"type";s:8:"datetime";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}}
3 |
--------------------------------------------------------------------------------
/app/views/finance_years/add.ctp:
--------------------------------------------------------------------------------
1 |
2 | create('FinanceYear');?>
3 |
4 |
5 | input('name');
7 | echo $form->input('description');
8 | echo $form->input('active');
9 | ?>
10 |
11 | end('Submit');?>
12 |
13 |
14 |
15 | link(__('List FinanceYears', true), array('action'=>'index'));?>
16 |
17 |
18 |
--------------------------------------------------------------------------------
/app/views/worklogs/add.ctp:
--------------------------------------------------------------------------------
1 |
2 | create('Worklog');?>
3 |
4 |
5 | input('user_id');
7 | echo $form->input('start');
8 | echo $form->input('end');
9 | echo $form->input('log');
10 | ?>
11 |
12 | end('Submit');?>
13 |
14 |
15 |
16 | link(__('List Worklogs', true), array('action'=>'index'));?>
17 |
18 |
19 |
--------------------------------------------------------------------------------
/app/views/contracts/id_add.ctp:
--------------------------------------------------------------------------------
1 |
2 | create('Contract');?>
3 |
4 |
5 | input('user_id');
7 | echo $form->input('duration');
8 | echo $form->input('description');
9 | echo $form->input('salary');
10 | ?>
11 |
12 | end('Submit');?>
13 |
14 |
15 |
16 | link(__('List Contracts', true), array('action'=>'index'));?>
17 |
18 |
19 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/config/sql/sessions.sql:
--------------------------------------------------------------------------------
1 | # $Id$
2 | #
3 | # Copyright 2005-2010, Cake Software Foundation, Inc.
4 | # 1785 E. Sahara Avenue, Suite 490-204
5 | # Las Vegas, Nevada 89104
6 | #
7 | # Licensed under The MIT License
8 | # Redistributions of files must retain the above copyright notice.
9 | # http://www.opensource.org/licenses/mit-license.php The MIT License
10 |
11 | CREATE TABLE cake_sessions (
12 | id varchar(255) NOT NULL default '',
13 | data text,
14 | expires int(11) default NULL,
15 | PRIMARY KEY (id)
16 | );
--------------------------------------------------------------------------------
/app/views/elements/tab/page.ctp:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
link("←".$back['title'], $back['url'],array(),false,false) ?>
5 |
6 |
7 |
link($next['title']."→", $next['url'],array(),false,false) ?>
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/app/models/finance_budget.php:
--------------------------------------------------------------------------------
1 | array(
7 | 'className' => 'FinanceAccount',
8 | 'foreignKey' => 'finance_account_id',
9 | 'conditions' => '',
10 | 'fields' => '',
11 | 'order' => ''
12 | ),
13 | 'FinanceYear' => array(
14 | 'className' => 'FinanceYear',
15 | 'foreignKey' => 'finance_year_id',
16 | 'conditions' => '',
17 | 'fields' => '',
18 | 'order' => ''
19 | )
20 | );
21 | }
22 | ?>
--------------------------------------------------------------------------------
/app/models/finance_expense.php:
--------------------------------------------------------------------------------
1 | array(
7 | 'className' => 'FinanceAccount',
8 | 'foreignKey' => 'finance_account_id',
9 | 'conditions' => '',
10 | 'fields' => '',
11 | 'order' => ''
12 | ),
13 | 'FinanceYear' => array(
14 | 'className' => 'FinanceYear',
15 | 'foreignKey' => 'finance_year_id',
16 | 'conditions' => '',
17 | 'fields' => '',
18 | 'order' => ''
19 | )
20 | );
21 | }
22 | ?>
--------------------------------------------------------------------------------
/app/models/finance_income.php:
--------------------------------------------------------------------------------
1 | array(
7 | 'className' => 'FinanceAccount',
8 | 'foreignKey' => 'finance_account_id',
9 | 'conditions' => '',
10 | 'fields' => '',
11 | 'order' => ''
12 | ),
13 | 'FinanceYear' => array(
14 | 'className' => 'FinanceYear',
15 | 'foreignKey' => 'finance_year_id',
16 | 'conditions' => '',
17 | 'fields' => '',
18 | 'order' => ''
19 | )
20 | );
21 | }
22 | ?>
--------------------------------------------------------------------------------
/app/config/sql/sessions.sql:
--------------------------------------------------------------------------------
1 | # $Id: sessions.sql 7118 2008-06-04 20:49:29Z gwoo $
2 | #
3 | # Copyright 2005-2008, Cake Software Foundation, Inc.
4 | # 1785 E. Sahara Avenue, Suite 490-204
5 | # Las Vegas, Nevada 89104
6 | #
7 | # Licensed under The MIT License
8 | # Redistributions of files must retain the above copyright notice.
9 | # http://www.opensource.org/licenses/mit-license.php The MIT License
10 |
11 | CREATE TABLE cake_sessions (
12 | id varchar(255) NOT NULL default '',
13 | data text,
14 | expires int(11) default NULL,
15 | PRIMARY KEY (id)
16 | );
--------------------------------------------------------------------------------
/app/models/journal.php:
--------------------------------------------------------------------------------
1 | array(
8 | 'className' => 'JournalTransaction',
9 | 'foreignKey' => 'accounting_journal_id',
10 | 'dependent' => true,
11 | 'conditions' => '',
12 | 'fields' => '',
13 | 'order' => '',
14 | 'limit' => '',
15 | 'offset' => '',
16 | 'exclusive' => '',
17 | 'finderQuery' => '',
18 | 'counterQuery' => ''
19 | )
20 | );
21 | }
22 | ?>
--------------------------------------------------------------------------------
/app/views/elements/tab/activity.ctp:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | link("Task","/tasks", array("class"=>($submodul=="tasks")?"current":"")); ?>
6 | link("Worklog","/worklogs",array("class"=>($submodul=="worklogs")?"current":"")); ?>
7 | link("Project","/projects",array("class"=>($submodul=="projects")?"current":"")); ?>
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/views/finance_incomes/add.ctp:
--------------------------------------------------------------------------------
1 |
2 | create('FinanceIncome');?>
3 |
4 |
5 | input('finance_account_id');
7 | echo $form->input('description');
8 | echo $form->input('value');
9 | echo $form->input('pic');
10 | ?>
11 |
12 | end('Submit');?>
13 |
14 |
15 |
16 | link(__('List FinanceIncomes', true), array('action'=>'index'));?>
17 |
18 |
19 |
--------------------------------------------------------------------------------
/app/tmp/cache/cake_model_default_accounting_journal_transaction:
--------------------------------------------------------------------------------
1 | 1277878853
2 | a:5:{s:2:"id";a:5:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:11;s:3:"key";s:7:"primary";}s:21:"accounting_journal_id";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:11;}s:21:"accounting_account_id";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:11;}s:4:"type";a:4:{s:4:"type";s:22:"enum('DEBIT','CREDIT')";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:6;}s:6:"amount";a:4:{s:4:"type";s:5:"float";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}}
3 |
--------------------------------------------------------------------------------
/app/views/finance_expenses/add.ctp:
--------------------------------------------------------------------------------
1 |
2 | create('FinanceExpense');?>
3 |
4 |
5 | input('finance_account_id');
7 | echo $form->input('description');
8 | echo $form->input('value');
9 | echo $form->input('pic');
10 | ?>
11 |
12 | end('Submit');?>
13 |
14 |
15 |
16 | link(__('List FinanceExpenses', true), array('action'=>'index'));?>
17 |
18 |
19 |
--------------------------------------------------------------------------------
/app/models/client.php:
--------------------------------------------------------------------------------
1 | array(
9 | 'className' => 'Project',
10 | 'foreignKey' => 'client_id',
11 | 'dependent' => false,
12 | 'conditions' => '',
13 | 'fields' => '',
14 | 'order' => '',
15 | 'limit' => '',
16 | 'offset' => '',
17 | 'exclusive' => '',
18 | 'finderQuery' => '',
19 | 'counterQuery' => ''
20 | )
21 | );
22 |
23 | }
24 | ?>
--------------------------------------------------------------------------------
/app/views/elements/tab/finance.ctp:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | link("Transaction","/transactions",array("class"=>($submodul=="transactions")?"current":"")); ?>
6 | link("Invoice","/invoices",array("class"=>($submodul=="invoices")?"current":"")); ?>
7 | link("Book","/books",array("class"=>($submodul=="books")?"current":"")); ?>
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/models/catalog.php:
--------------------------------------------------------------------------------
1 | array(
9 | 'className' => 'Document',
10 | 'foreignKey' => 'catalog_id',
11 | 'dependent' => false,
12 | 'conditions' => '',
13 | 'fields' => '',
14 | 'order' => '',
15 | 'limit' => '',
16 | 'offset' => '',
17 | 'exclusive' => '',
18 | 'finderQuery' => '',
19 | 'counterQuery' => ''
20 | )
21 | );
22 |
23 | }
24 | ?>
--------------------------------------------------------------------------------
/app/models/transaksibukubesar.php:
--------------------------------------------------------------------------------
1 | array('numeric'),
7 | 'keterangan' => array('notempty')
8 | );
9 |
10 | //The Associations below have been created with all possible keys, those that are not needed can be removed
11 | var $belongsTo = array(
12 | 'Bukubesar' => array(
13 | 'className' => 'Bukubesar',
14 | 'foreignKey' => 'bukubesar_id',
15 | 'conditions' => '',
16 | 'fields' => '',
17 | 'order' => ''
18 | )
19 | );
20 |
21 | }
22 | ?>
--------------------------------------------------------------------------------
/app/models/tasknote.php:
--------------------------------------------------------------------------------
1 | array(
9 | 'className' => 'Task',
10 | 'foreignKey' => 'task_id',
11 | 'conditions' => '',
12 | 'fields' => '',
13 | 'order' => ''
14 | ),
15 | 'User' => array(
16 | 'className' => 'User',
17 | 'foreignKey' => 'user_id',
18 | 'conditions' => '',
19 | 'fields' => '',
20 | 'order' => ''
21 | )
22 | );
23 |
24 | }
25 | ?>
26 |
--------------------------------------------------------------------------------
/app/tmp/cache/cake_model_default_tasknotes:
--------------------------------------------------------------------------------
1 | 1277878855
2 | a:6:{s:2:"id";a:5:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:11;s:3:"key";s:7:"primary";}s:7:"task_id";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:11;}s:7:"user_id";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:11;}s:4:"note";a:4:{s:4:"type";s:4:"text";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}s:7:"created";a:4:{s:4:"type";s:8:"datetime";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}s:8:"modified";a:4:{s:4:"type";s:8:"datetime";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}}
3 |
--------------------------------------------------------------------------------
/app/views/elements/tab/human_resource.ctp:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | link("Client","/clients", array("class"=>($submodul=="clients")?"current":"")); ?>
6 | link("Employee","/users",array("class"=>($submodul=="employees")?"current":"")); ?>
7 | link("Contract","/contracts",array("class"=>($submodul=="contracts")?"current":"")); ?>
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/views/finance_budgets/add.ctp:
--------------------------------------------------------------------------------
1 |
2 | create('FinanceBudget');?>
3 |
4 |
5 | input('finance_account_id');
7 | echo $form->input('income');
8 | echo $form->input('expense');
9 | echo $form->input('start');
10 | echo $form->input('end');
11 | ?>
12 |
13 | end('Submit');?>
14 |
15 |
16 |
17 | link(__('List FinanceBudgets', true), array('action'=>'index'));?>
18 |
19 |
20 |
--------------------------------------------------------------------------------
/app/plugins/acl_admin/views/elements/menu.thtml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/views/bukubesars/add.ctp:
--------------------------------------------------------------------------------
1 |
2 | create('Bukubesar');?>
3 |
4 |
5 | data['Bukubesar']['neraca_id'])?$form->input('neraca_id',array('type'=>'hidden')):$form->input('neraca_id');
7 | echo $form->input('nama');
8 | echo $form->input('keterangan');
9 | ?>
10 |
11 | end('Submit');?>
12 |
13 |
14 |
15 | link(__('List Bukubesars', true), array('action' => 'index'));?>
16 |
17 |
18 |
--------------------------------------------------------------------------------
/app/views/elements/tab/accounting.ctp:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | link("Jurnal","/journal/index",array("class"=>($submodul=="journal")?"current":"")); ?>
6 | link("Reporting","/accounting_reportings",array("class"=>($submodul=="reporting")?"current":"")); ?>
7 | link("Admin","/accounting_accounts",array("class"=>($submodul=="admin")?"current":"")); ?>
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/cake/tests/test_app/views/layouts/cache_empty_sections.ctp:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/app/models/taskstatus.php:
--------------------------------------------------------------------------------
1 | array(
9 | 'className' => 'Task',
10 | 'foreignKey' => 'taskstatus_id',
11 | 'dependent' => false,
12 | 'conditions' => '',
13 | 'fields' => '',
14 | 'order' => '',
15 | 'limit' => '',
16 | 'offset' => '',
17 | 'exclusive' => '',
18 | 'finderQuery' => '',
19 | 'counterQuery' => ''
20 | )
21 | );
22 |
23 | }
24 | ?>
25 |
--------------------------------------------------------------------------------
/app/webroot/css/reset.css:
--------------------------------------------------------------------------------
1 | html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}:focus{outline:0}ins{text-decoration:none}del{text-decoration:line-through}table{border-collapse:collapse;border-spacing:0}
--------------------------------------------------------------------------------
/app/plugins/acl_admin/controllers/aros_acos_controller.php:
--------------------------------------------------------------------------------
1 | menuContext['options']['aros_aco']['active']=true; // setting the menu manually
8 | $constraint = null;
9 | list($order,$limit,$page) = $this->Pagination->init($constraint);
10 | $this->data = $this->ArosAco->findAll($constraint, null, $order, $limit, $page);
11 | }
12 |
13 | function delete ($id) {
14 | $this->ArosAco->del($id);
15 | $this->redirect($this->referer('/'.$this->PluginName));
16 | }
17 | }
18 | ?>
--------------------------------------------------------------------------------
/app/models/users_project.php:
--------------------------------------------------------------------------------
1 | array(
9 | // 'className' => 'User',
10 | // 'foreignKey' => 'user_id',
11 | // 'conditions' => '',
12 | // 'fields' => '',
13 | // 'order' => ''
14 | // ),
15 | // 'Project' => array(
16 | // 'className' => 'Project',
17 | // 'foreignKey' => 'project_id',
18 | // 'conditions' => '',
19 | // 'fields' => '',
20 | // 'order' => ''
21 | // )
22 | //);
23 |
24 | }
25 | ?>
26 |
--------------------------------------------------------------------------------
/app/views/invoices/add.ctp:
--------------------------------------------------------------------------------
1 | css("form",null,array(),false);
3 | ?>
4 |
5 |
6 |
7 |
8 | create('Invoice');?>
9 |
10 |
11 | input('client_id');?>
12 |
13 |
14 | * indicates required fields
15 |
16 | image("icon/save_16.png") ?> Save
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/app/views/groups/add.ctp:
--------------------------------------------------------------------------------
1 | css("form",null,array(),false);
3 | ?>
4 |
5 |
6 |
7 |
8 | create('Group');?>
9 |
10 |
11 | input('name'); ?>
12 |
13 |
14 |
15 | * indicates required fields
16 |
17 | image("icon/save_16.png") ?> Save
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/app/views/tasknotes/add.ctp:
--------------------------------------------------------------------------------
1 |
2 | create('Tasknote');?>
3 |
4 |
5 | input('task_id',array("type"=>"select","readonly"=>true));
9 | else
10 | echo "Task is not exists";
11 | }
12 | else{
13 | echo $form->input('task_id');
14 | }
15 | echo $form->input('note');
16 | ?>
17 |
18 | end('Submit');?>
19 |
20 |
21 |
22 | link(__('List Tasknotes', true), array('action'=>'index'));?>
23 |
24 |
25 |
--------------------------------------------------------------------------------
/app/tests/cases/controllers/books_controller.test.php:
--------------------------------------------------------------------------------
1 | Books = new TestBooks();
15 | $this->Books->constructClasses();
16 | }
17 |
18 | function testBooksControllerInstance() {
19 | $this->assertTrue(is_a($this->Books, 'BooksController'));
20 | }
21 |
22 | function tearDown() {
23 | unset($this->Books);
24 | }
25 | }
26 | ?>
--------------------------------------------------------------------------------
/app/tests/cases/controllers/tasks_controller.test.php:
--------------------------------------------------------------------------------
1 | Tasks = new TestTasks();
15 | $this->Tasks->constructClasses();
16 | }
17 |
18 | function testTasksControllerInstance() {
19 | $this->assertTrue(is_a($this->Tasks, 'TasksController'));
20 | }
21 |
22 | function tearDown() {
23 | unset($this->Tasks);
24 | }
25 | }
26 | ?>
--------------------------------------------------------------------------------
/app/tests/cases/controllers/users_controller.test.php:
--------------------------------------------------------------------------------
1 | Users = new TestUsers();
15 | $this->Users->constructClasses();
16 | }
17 |
18 | function testUsersControllerInstance() {
19 | $this->assertTrue(is_a($this->Users, 'UsersController'));
20 | }
21 |
22 | function tearDown() {
23 | unset($this->Users);
24 | }
25 | }
26 | ?>
--------------------------------------------------------------------------------
/app/models/neraca.php:
--------------------------------------------------------------------------------
1 | array('notempty')
8 | );
9 |
10 | //The Associations below have been created with all possible keys, those that are not needed can be removed
11 | var $hasMany = array(
12 | 'Bukubesar' => array(
13 | 'className' => 'Bukubesar',
14 | 'foreignKey' => 'neraca_id',
15 | 'dependent' => false,
16 | 'conditions' => '',
17 | 'fields' => '',
18 | 'order' => '',
19 | 'limit' => '',
20 | 'offset' => '',
21 | 'exclusive' => '',
22 | 'finderQuery' => '',
23 | 'counterQuery' => ''
24 | )
25 | );
26 |
27 | }
28 | ?>
--------------------------------------------------------------------------------
/app/tests/cases/controllers/groups_controller.test.php:
--------------------------------------------------------------------------------
1 | Groups = new TestGroups();
15 | $this->Groups->constructClasses();
16 | }
17 |
18 | function testGroupsControllerInstance() {
19 | $this->assertTrue(is_a($this->Groups, 'GroupsController'));
20 | }
21 |
22 | function tearDown() {
23 | unset($this->Groups);
24 | }
25 | }
26 | ?>
--------------------------------------------------------------------------------
/app/tmp/cache/cake_model_default_worklogs:
--------------------------------------------------------------------------------
1 | 1277878855
2 | a:7:{s:2:"id";a:5:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:11;s:3:"key";s:7:"primary";}s:7:"user_id";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:11;}s:5:"start";a:4:{s:4:"type";s:8:"datetime";s:4:"null";b:1;s:7:"default";N;s:6:"length";N;}s:3:"end";a:4:{s:4:"type";s:8:"datetime";s:4:"null";b:1;s:7:"default";N;s:6:"length";N;}s:11:"active_time";a:4:{s:4:"type";s:4:"time";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}s:7:"created";a:4:{s:4:"type";s:8:"datetime";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}s:8:"modified";a:4:{s:4:"type";s:8:"datetime";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}}
3 |
--------------------------------------------------------------------------------
/app/views/invoices/edit.ctp:
--------------------------------------------------------------------------------
1 | css("form",null,array(),false);
3 | ?>
4 |
5 |
6 |
7 |
8 | create('Invoice');?>
9 | input('id') ?>
10 |
11 |
12 | input('client_id');?>
13 |
14 |
15 | * indicates required fields
16 |
17 | image("icon/save_16.png") ?> Save
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/app/tmp/cache/cake_model_default_acos:
--------------------------------------------------------------------------------
1 | 1277878853
2 | a:7:{s:2:"id";a:5:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:10;s:3:"key";s:7:"primary";}s:9:"parent_id";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:1;s:7:"default";N;s:6:"length";i:10;}s:5:"model";a:4:{s:4:"type";s:6:"string";s:4:"null";b:1;s:7:"default";N;s:6:"length";i:255;}s:11:"foreign_key";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:1;s:7:"default";N;s:6:"length";i:10;}s:5:"alias";a:4:{s:4:"type";s:6:"string";s:4:"null";b:1;s:7:"default";N;s:6:"length";i:255;}s:3:"lft";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:1;s:7:"default";N;s:6:"length";i:10;}s:4:"rght";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:1;s:7:"default";N;s:6:"length";i:10;}}
3 |
--------------------------------------------------------------------------------
/app/tmp/cache/cake_model_default_aros:
--------------------------------------------------------------------------------
1 | 1277878853
2 | a:7:{s:2:"id";a:5:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:10;s:3:"key";s:7:"primary";}s:9:"parent_id";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:1;s:7:"default";N;s:6:"length";i:10;}s:5:"model";a:4:{s:4:"type";s:6:"string";s:4:"null";b:1;s:7:"default";N;s:6:"length";i:255;}s:11:"foreign_key";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:1;s:7:"default";N;s:6:"length";i:10;}s:5:"alias";a:4:{s:4:"type";s:6:"string";s:4:"null";b:1;s:7:"default";N;s:6:"length";i:255;}s:3:"lft";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:1;s:7:"default";N;s:6:"length";i:10;}s:4:"rght";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:1;s:7:"default";N;s:6:"length";i:10;}}
3 |
--------------------------------------------------------------------------------
/app/tmp/cache/cake_model_default_contracts:
--------------------------------------------------------------------------------
1 | 1277878855
2 | a:7:{s:2:"id";a:5:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:11;s:3:"key";s:7:"primary";}s:7:"user_id";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:11;}s:8:"duration";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:11;}s:11:"description";a:4:{s:4:"type";s:4:"text";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}s:6:"salary";a:4:{s:4:"type";s:5:"float";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}s:7:"created";a:4:{s:4:"type";s:8:"datetime";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}s:8:"modified";a:4:{s:4:"type";s:8:"datetime";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}}
3 |
--------------------------------------------------------------------------------
/app/views/neracas/edit.ctp:
--------------------------------------------------------------------------------
1 |
2 | create('Neraca');?>
3 |
4 |
5 | input('id');
7 | echo $form->input('nama');
8 | echo $form->input('keterangan');
9 | ?>
10 |
11 | end('Submit');?>
12 |
13 |
14 |
15 | link(__('Delete', true), array('action' => 'delete', $form->value('Neraca.id')), null, sprintf(__('Are you sure you want to delete # %s?', true), $form->value('Neraca.id'))); ?>
16 | link(__('List Neracas', true), array('action' => 'index'));?>
17 |
18 |
19 |
--------------------------------------------------------------------------------
/app/models/group.php:
--------------------------------------------------------------------------------
1 | array(
9 | 'className' => 'User',
10 | 'foreignKey' => 'group_id',
11 | 'dependent' => false,
12 | 'conditions' => '',
13 | 'fields' => '',
14 | 'order' => '',
15 | 'limit' => '',
16 | 'offset' => '',
17 | 'exclusive' => '',
18 | 'finderQuery' => '',
19 | 'counterQuery' => ''
20 | )
21 | );
22 |
23 | var $actsAs = array('Acl' => array('requester'));
24 |
25 | function parentNode() {
26 | return null;
27 | }
28 |
29 |
30 | }
31 | ?>
--------------------------------------------------------------------------------
/app/tests/cases/controllers/clients_controller.test.php:
--------------------------------------------------------------------------------
1 | Clients = new TestClients();
15 | $this->Clients->constructClasses();
16 | }
17 |
18 | function testClientsControllerInstance() {
19 | $this->assertTrue(is_a($this->Clients, 'ClientsController'));
20 | }
21 |
22 | function tearDown() {
23 | unset($this->Clients);
24 | }
25 | }
26 | ?>
--------------------------------------------------------------------------------
/app/tests/cases/controllers/neracas_controller.test.php:
--------------------------------------------------------------------------------
1 | Neracas = new TestNeracas();
15 | $this->Neracas->constructClasses();
16 | }
17 |
18 | function testNeracasControllerInstance() {
19 | $this->assertTrue(is_a($this->Neracas, 'NeracasController'));
20 | }
21 |
22 | function endTest() {
23 | unset($this->Neracas);
24 | }
25 | }
26 | ?>
--------------------------------------------------------------------------------
/app/tmp/cache/cake_core_core_paths:
--------------------------------------------------------------------------------
1 | 1277878853
2 | a:10:{s:4:"libs";a:1:{i:0;s:30:"/home/user/internal/cake/libs/";}s:5:"model";a:1:{i:0;s:36:"/home/user/internal/cake/libs/model/";}s:8:"behavior";a:1:{i:0;s:46:"/home/user/internal/cake/libs/model/behaviors/";}s:10:"controller";a:1:{i:0;s:41:"/home/user/internal/cake/libs/controller/";}s:9:"component";a:1:{i:0;s:52:"/home/user/internal/cake/libs/controller/components/";}s:4:"view";a:1:{i:0;s:35:"/home/user/internal/cake/libs/view/";}s:6:"helper";a:1:{i:0;s:43:"/home/user/internal/cake/libs/view/helpers/";}s:4:"cake";a:1:{i:0;s:25:"/home/user/internal/cake/";}s:6:"vendor";a:1:{i:0;s:28:"/home/user/internal/vendors/";}s:5:"shell";a:1:{i:0;s:38:"/home/user/internal/cake/console/libs/";}}
3 |
--------------------------------------------------------------------------------
/app/views/tasknotes/edit.ctp:
--------------------------------------------------------------------------------
1 |
2 | create('Tasknote');?>
3 |
4 |
5 | input('id');
7 | echo $form->input('task_id');
8 | echo $form->input('note');
9 | ?>
10 |
11 | end('Submit');?>
12 |
13 |
14 |
15 | link(__('Delete', true), array('action'=>'delete', $form->value('Tasknote.id')), null, sprintf(__('Are you sure you want to delete # %s?', true), $form->value('Tasknote.id'))); ?>
16 | link(__('List Tasknotes', true), array('action'=>'index'));?>
17 |
18 |
19 |
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/po/LC_MONETARY/default.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: CakePHP I18N & I10N Team \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
12 | "X-Poedit-Language: Three Forms of Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 | msgid ""
15 | msgstr "header"
16 |
17 | msgid "Plural Rule 1"
18 | msgstr "Monetary Po (translated)"
--------------------------------------------------------------------------------
/app/views/groups/edit.ctp:
--------------------------------------------------------------------------------
1 | css("form",null,array(),false);
3 | ?>
4 |
5 |
6 |
7 |
8 | create('Group');?>
9 | input('id'); ?>
10 |
11 |
12 |
13 | input('name'); ?>
14 |
15 |
16 |
17 | * indicates required fields
18 |
19 | image("icon/save_16.png") ?> Save
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/app/webroot/js/app.js:
--------------------------------------------------------------------------------
1 | function closeModalbox()
2 | {
3 | if ($('closeModalbox')) {
4 | // hide the modal box
5 | Modalbox.hide();
6 | // refresh the current page
7 | location.reload(true);
8 | } else {
9 | // resize to content (in case of validation error messages)
10 | Modalbox.resizeToContent()
11 | }
12 | return true;
13 | }
14 |
15 | function toggleView(whatClass, mode){
16 | var elements = $$("."+whatClass);
17 | if (elements.size() > 0) {
18 | for (var index = 0, length = elements.size(); index < length; ++index) {
19 | if(mode)
20 | Effect.Appear(elements[index]);
21 | else
22 | Effect.Fade(elements[index]);
23 | }
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/app/tests/cases/controllers/catalogs_controller.test.php:
--------------------------------------------------------------------------------
1 | Catalogs = new TestCatalogs();
15 | $this->Catalogs->constructClasses();
16 | }
17 |
18 | function testCatalogsControllerInstance() {
19 | $this->assertTrue(is_a($this->Catalogs, 'CatalogsController'));
20 | }
21 |
22 | function tearDown() {
23 | unset($this->Catalogs);
24 | }
25 | }
26 | ?>
--------------------------------------------------------------------------------
/app/tests/cases/controllers/projects_controller.test.php:
--------------------------------------------------------------------------------
1 | Projects = new TestProjects();
15 | $this->Projects->constructClasses();
16 | }
17 |
18 | function testProjectsControllerInstance() {
19 | $this->assertTrue(is_a($this->Projects, 'ProjectsController'));
20 | }
21 |
22 | function tearDown() {
23 | unset($this->Projects);
24 | }
25 | }
26 | ?>
--------------------------------------------------------------------------------
/app/tests/cases/controllers/worklogs_controller.test.php:
--------------------------------------------------------------------------------
1 | Worklogs = new TestWorklogs();
15 | $this->Worklogs->constructClasses();
16 | }
17 |
18 | function testWorklogsControllerInstance() {
19 | $this->assertTrue(is_a($this->Worklogs, 'WorklogsController'));
20 | }
21 |
22 | function tearDown() {
23 | unset($this->Worklogs);
24 | }
25 | }
26 | ?>
--------------------------------------------------------------------------------
/app/views/projects/edit_team.ctp:
--------------------------------------------------------------------------------
1 |
2 |
3 |
Edit Team Member
4 |
5 | create("Project", array("url"=>"/projects/edit"));
7 | echo $form->input("id");
8 | echo $form->input('User', array('multiple' => 'checkbox', "label"=>false));
9 | ?>
10 |
11 |
12 | image("icon/save_16.png") ?> Save
13 | link(" Cancel","/projects/index",array("class"=>"cancel button passive"))?>
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/app/tests/cases/controllers/contracts_controller.test.php:
--------------------------------------------------------------------------------
1 | Contracts = new TestContracts();
15 | $this->Contracts->constructClasses();
16 | }
17 |
18 | function testContractsControllerInstance() {
19 | $this->assertTrue(is_a($this->Contracts, 'ContractsController'));
20 | }
21 |
22 | function tearDown() {
23 | unset($this->Contracts);
24 | }
25 | }
26 | ?>
--------------------------------------------------------------------------------
/app/tests/cases/controllers/documents_controller.test.php:
--------------------------------------------------------------------------------
1 | Documents = new TestDocuments();
15 | $this->Documents->constructClasses();
16 | }
17 |
18 | function testDocumentsControllerInstance() {
19 | $this->assertTrue(is_a($this->Documents, 'DocumentsController'));
20 | }
21 |
22 | function tearDown() {
23 | unset($this->Documents);
24 | }
25 | }
26 | ?>
--------------------------------------------------------------------------------
/app/tests/cases/controllers/tasknotes_controller.test.php:
--------------------------------------------------------------------------------
1 | Tasknotes = new TestTasknotes();
15 | $this->Tasknotes->constructClasses();
16 | }
17 |
18 | function testTasknotesControllerInstance() {
19 | $this->assertTrue(is_a($this->Tasknotes, 'TasknotesController'));
20 | }
21 |
22 | function tearDown() {
23 | unset($this->Tasknotes);
24 | }
25 | }
26 | ?>
--------------------------------------------------------------------------------
/app/plugins/acl_admin/views/elements/pagination.thtml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/tmp/cache/cake_model_default_aros_acos:
--------------------------------------------------------------------------------
1 | 1277878853
2 | a:7:{s:2:"id";a:5:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:10;s:3:"key";s:7:"primary";}s:6:"aro_id";a:5:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:10;s:3:"key";s:5:"index";}s:6:"aco_id";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:10;}s:7:"_create";a:4:{s:4:"type";s:6:"string";s:4:"null";b:0;s:7:"default";s:1:"0";s:6:"length";i:2;}s:5:"_read";a:4:{s:4:"type";s:6:"string";s:4:"null";b:0;s:7:"default";s:1:"0";s:6:"length";i:2;}s:7:"_update";a:4:{s:4:"type";s:6:"string";s:4:"null";b:0;s:7:"default";s:1:"0";s:6:"length";i:2;}s:7:"_delete";a:4:{s:4:"type";s:6:"string";s:4:"null";b:0;s:7:"default";s:1:"0";s:6:"length";i:2;}}
3 |
--------------------------------------------------------------------------------
/app/tests/cases/controllers/bukubesars_controller.test.php:
--------------------------------------------------------------------------------
1 | Bukubesars = new TestBukubesars();
15 | $this->Bukubesars->constructClasses();
16 | }
17 |
18 | function testBukubesarsControllerInstance() {
19 | $this->assertTrue(is_a($this->Bukubesars, 'BukubesarsController'));
20 | }
21 |
22 | function endTest() {
23 | unset($this->Bukubesars);
24 | }
25 | }
26 | ?>
--------------------------------------------------------------------------------
/app/views/finance_accounts/edit.ctp:
--------------------------------------------------------------------------------
1 |
2 | create('FinanceAccount');?>
3 |
4 |
5 | input('id');
7 | echo $form->input('name');
8 | echo $form->input('description');
9 | ?>
10 |
11 | end('Submit');?>
12 |
13 |
14 |
15 | link(__('Delete', true), array('action'=>'delete', $form->value('FinanceAccount.id')), null, sprintf(__('Are you sure you want to delete # %s?', true), $form->value('FinanceAccount.id'))); ?>
16 | link(__('List FinanceAccounts', true), array('action'=>'index'));?>
17 |
18 |
19 |
--------------------------------------------------------------------------------
/app/views/bukubesars/edit.ctp:
--------------------------------------------------------------------------------
1 |
2 | create('Bukubesar');?>
3 |
4 |
5 | input('id');
7 | echo $form->input('neraca_id');
8 | echo $form->input('nama');
9 | echo $form->input('keterangan');
10 | ?>
11 |
12 | end('Submit');?>
13 |
14 |
15 |
16 | link(__('Delete', true), array('action' => 'delete', $form->value('Bukubesar.id')), null, sprintf(__('Are you sure you want to delete # %s?', true), $form->value('Bukubesar.id'))); ?>
17 | link(__('List Bukubesars', true), array('action' => 'index'));?>
18 |
19 |
20 |
--------------------------------------------------------------------------------
/app/views/invoiceitems/add.ctp:
--------------------------------------------------------------------------------
1 |
2 | create('Invoiceitem');?>
3 |
4 |
5 | input('invoice_id');
7 | echo $form->input('description');
8 | echo $form->input('amount');
9 | ?>
10 |
11 | end('Submit');?>
12 |
13 |
14 |
15 | link(__('List Invoiceitems', true), array('action'=>'index'));?>
16 | link(__('List Invoices', true), array('controller'=> 'invoices', 'action'=>'index')); ?>
17 | link(__('New Invoice', true), array('controller'=> 'invoices', 'action'=>'add')); ?>
18 |
19 |
20 |
--------------------------------------------------------------------------------
/app/views/finance_years/edit.ctp:
--------------------------------------------------------------------------------
1 |
2 | create('FinanceYear');?>
3 |
4 |
5 | input('id');
7 | echo $form->input('name');
8 | echo $form->input('description');
9 | echo $form->input('active');
10 | ?>
11 |
12 | end('Submit');?>
13 |
14 |
15 |
16 | link(__('Delete', true), array('action'=>'delete', $form->value('FinanceYear.id')), null, sprintf(__('Are you sure you want to delete # %s?', true), $form->value('FinanceYear.id'))); ?>
17 | link(__('List FinanceYears', true), array('action'=>'index'));?>
18 |
19 |
20 |
--------------------------------------------------------------------------------
/app/views/worklogs/edit.ctp:
--------------------------------------------------------------------------------
1 |
2 | create('Worklog');?>
3 |
4 |
5 | input('id');
7 | echo $form->input('user_id');
8 | echo $form->input('start');
9 | echo $form->input('end');
10 | echo $form->input('log');
11 | ?>
12 |
13 | end('Submit');?>
14 |
15 |
16 |
17 | link(__('Delete', true), array('action'=>'delete', $form->value('Worklog.id')), null, sprintf(__('Are you sure you want to delete # %s?', true), $form->value('Worklog.id'))); ?>
18 | link(__('List Worklogs', true), array('action'=>'index'));?>
19 |
20 |
21 |
--------------------------------------------------------------------------------
/app/tests/cases/controllers/transactions_controller.test.php:
--------------------------------------------------------------------------------
1 | Transactions = new TestTransactions();
15 | $this->Transactions->constructClasses();
16 | }
17 |
18 | function testTransactionsControllerInstance() {
19 | $this->assertTrue(is_a($this->Transactions, 'TransactionsController'));
20 | }
21 |
22 | function tearDown() {
23 | unset($this->Transactions);
24 | }
25 | }
26 | ?>
--------------------------------------------------------------------------------
/app/tmp/cache/cake_model_default_clients:
--------------------------------------------------------------------------------
1 | 1277878855
2 | a:8:{s:2:"id";a:5:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:11;s:3:"key";s:7:"primary";}s:4:"name";a:4:{s:4:"type";s:6:"string";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:255;}s:7:"address";a:4:{s:4:"type";s:4:"text";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}s:14:"contact_person";a:4:{s:4:"type";s:6:"string";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:255;}s:5:"email";a:4:{s:4:"type";s:6:"string";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:255;}s:5:"phone";a:4:{s:4:"type";s:6:"string";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:255;}s:7:"created";a:4:{s:4:"type";s:8:"datetime";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}s:8:"modified";a:4:{s:4:"type";s:8:"datetime";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}}
3 |
--------------------------------------------------------------------------------
/app/views/contracts/id_edit.ctp:
--------------------------------------------------------------------------------
1 |
2 | create('Contract');?>
3 |
4 |
5 | input('id');
7 | echo $form->input('user_id');
8 | echo $form->input('duration');
9 | echo $form->input('description');
10 | echo $form->input('salary');
11 | ?>
12 |
13 | end('Submit');?>
14 |
15 |
16 |
17 | link(__('Delete', true), array('action'=>'delete', $form->value('Contract.id')), null, sprintf(__('Are you sure you want to delete # %s?', true), $form->value('Contract.id'))); ?>
18 | link(__('List Contracts', true), array('action'=>'index'));?>
19 |
20 |
21 |
--------------------------------------------------------------------------------
/app/tmp/cache/cake_model_default_users:
--------------------------------------------------------------------------------
1 | 1277878855
2 | a:8:{s:2:"id";a:5:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:11;s:3:"key";s:7:"primary";}s:8:"group_id";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:11;}s:8:"username";a:4:{s:4:"type";s:6:"string";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:255;}s:8:"password";a:4:{s:4:"type";s:6:"string";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:255;}s:8:"fullname";a:4:{s:4:"type";s:6:"string";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:255;}s:5:"email";a:4:{s:4:"type";s:6:"string";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:255;}s:7:"created";a:4:{s:4:"type";s:8:"datetime";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}s:8:"modified";a:4:{s:4:"type";s:8:"datetime";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}}
3 |
--------------------------------------------------------------------------------
/app/models/contract.php:
--------------------------------------------------------------------------------
1 | array(
9 | 'className' => 'User',
10 | 'foreignKey' => 'user_id',
11 | 'conditions' => '',
12 | 'fields' => '',
13 | 'order' => ''
14 | )
15 | );
16 |
17 | var $hasMany = array(
18 | 'Document' => array(
19 | 'className' => 'Document',
20 | 'foreignKey' => 'contract_id',
21 | 'dependent' => false,
22 | 'conditions' => '',
23 | 'fields' => '',
24 | 'order' => '',
25 | 'limit' => '',
26 | 'offset' => '',
27 | 'exclusive' => '',
28 | 'finderQuery' => '',
29 | 'counterQuery' => ''
30 | )
31 | );
32 |
33 | }
34 | ?>
--------------------------------------------------------------------------------
/app/plugins/acl_admin/views/layouts/error.thtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | NoswaD Demo Fatal Error
5 | ';
7 | echo file_get_contents(dirname(__FILE__).DS.'noswad_demo.css');
8 | echo '';
9 | ?>
10 |
11 |
12 |
13 |
14 |
15 | check('Message.flash')) {
17 | $session->flash();
18 | }
19 | echo $content_for_layout;
20 | ?>
21 |
22 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/app/models/invoice.php:
--------------------------------------------------------------------------------
1 | array(
9 | 'className' => 'Client',
10 | 'foreignKey' => 'client_id',
11 | 'conditions' => '',
12 | 'fields' => '',
13 | 'order' => ''
14 | )
15 | );
16 |
17 | var $hasMany = array(
18 | 'Invoiceitem' => array(
19 | 'className' => 'Invoiceitem',
20 | 'foreignKey' => 'invoice_id',
21 | 'dependent' => false,
22 | 'conditions' => '',
23 | 'fields' => '',
24 | 'order' => '',
25 | 'limit' => '',
26 | 'offset' => '',
27 | 'exclusive' => '',
28 | 'finderQuery' => '',
29 | 'counterQuery' => ''
30 | )
31 | );
32 |
33 | }
34 | ?>
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_0_po/LC_MESSAGES/core.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: CakePHP I18N & I10N Team \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=1; plural=0;\n"
12 | "X-Poedit-Language: Single Form Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1 (from core)"
16 | msgstr "Plural Rule 0 (from core translated)"
17 |
18 | msgid "%d = 1 (from core)"
19 | msgid_plural "%d = 0 or > 1 (from core)"
20 | msgstr[0] "%d ends with any # (from core translated)"
21 |
22 |
--------------------------------------------------------------------------------
/app/views/finance_incomes/edit.ctp:
--------------------------------------------------------------------------------
1 |
2 | create('FinanceIncome');?>
3 |
4 |
5 | input('id');
7 | echo $form->input('finance_account_id');
8 | echo $form->input('description');
9 | echo $form->input('value');
10 | echo $form->input('pic');
11 | ?>
12 |
13 | end('Submit');?>
14 |
15 |
16 |
17 | link(__('Delete', true), array('action'=>'delete', $form->value('FinanceIncome.id')), null, sprintf(__('Are you sure you want to delete # %s?', true), $form->value('FinanceIncome.id'))); ?>
18 | link(__('List FinanceIncomes', true), array('action'=>'index'));?>
19 |
20 |
21 |
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_0_po/LC_MESSAGES/default.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: CakePHP I18N & I10N Team \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=1; plural=0;\n"
12 | "X-Poedit-Language: Single Form Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1"
16 | msgstr "Plural Rule 0 (translated)"
17 |
18 | msgid "%d = 1"
19 | msgid_plural "%d = 0 or > 1"
20 | msgstr[0] "%d ends with any # (translated)"
21 |
22 | #~ msgid "Plural-Forms 1"
23 | #~ msgstr "Plural-Forms 0"
24 |
25 |
--------------------------------------------------------------------------------
/app/views/finance_expenses/edit.ctp:
--------------------------------------------------------------------------------
1 |
2 | create('FinanceExpense');?>
3 |
4 |
5 | input('id');
7 | echo $form->input('finance_account_id');
8 | echo $form->input('description');
9 | echo $form->input('value');
10 | echo $form->input('pic');
11 | ?>
12 |
13 | end('Submit');?>
14 |
15 |
16 |
17 | link(__('Delete', true), array('action'=>'delete', $form->value('FinanceExpense.id')), null, sprintf(__('Are you sure you want to delete # %s?', true), $form->value('FinanceExpense.id'))); ?>
18 | link(__('List FinanceExpenses', true), array('action'=>'index'));?>
19 |
20 |
21 |
--------------------------------------------------------------------------------
/cake/tests/test_app/plugins/test_plugin/locale/po/LC_MONETARY/test_plugin.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: CakePHP I18N & I10N Team \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=2; plural=n != 1;\n"
12 | "X-Poedit-Language: Two Forms of Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1"
16 | msgstr "Monetary Plural Rule 1 (from plugin)"
17 |
18 | msgid "%d = 1"
19 | msgid_plural "%d = 0 or > 1"
20 | msgstr[0] "Monetary %d = 1 (from plugin)"
21 | msgstr[1] "Monetary %d = 0 or > 1 (from plugin)"
22 |
23 |
--------------------------------------------------------------------------------
/app/tmp/cache/cake_model_default_internal_list:
--------------------------------------------------------------------------------
1 | 1277878853
2 | a:34:{i:0;s:19:"accounting_accounts";i:1;s:22:"accounting_buku_besars";i:2;s:18:"accounting_journal";i:3;s:30:"accounting_journal_transaction";i:4;s:28:"accounting_transaction_types";i:5;s:23:"accounting_transactions";i:6;s:4:"acos";i:7;s:4:"aros";i:8;s:9:"aros_acos";i:9;s:5:"books";i:10;s:10:"bukubesars";i:11;s:8:"catalogs";i:12;s:7:"clients";i:13;s:9:"contracts";i:14;s:9:"documents";i:15;s:16:"finance_accounts";i:16;s:15:"finance_budgets";i:17;s:16:"finance_expenses";i:18;s:15:"finance_incomes";i:19;s:13:"finance_years";i:20;s:6:"groups";i:21;s:12:"invoiceitems";i:22;s:8:"invoices";i:23;s:4:"logs";i:24;s:7:"neracas";i:25;s:8:"projects";i:26;s:9:"tasknotes";i:27;s:5:"tasks";i:28;s:12:"taskstatuses";i:29;s:12:"transactions";i:30;s:19:"transaksibukubesars";i:31;s:5:"users";i:32;s:14:"users_projects";i:33;s:8:"worklogs";}
3 |
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_2_po/LC_MESSAGES/core.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: CakePHP I18N & I10N Team \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=2; plural=n>1;\n"
12 | "X-Poedit-Language: Two Forms of Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1 (from core)"
16 | msgstr "Plural Rule 2 (from core translated)"
17 |
18 | msgid "%d = 1 (from core)"
19 | msgid_plural "%d = 0 or > 1 (from core)"
20 | msgstr[0] "%d = 0 or 1 (from core translated)"
21 | msgstr[1] "%d > 1 (from core translated)"
22 |
23 |
--------------------------------------------------------------------------------
/app/tests/cases/controllers/accounting_accounts_controller.test.php:
--------------------------------------------------------------------------------
1 | AccountingAccounts = new TestAccountingAccounts();
15 | $this->AccountingAccounts->constructClasses();
16 | }
17 |
18 | function testAccountingAccountsControllerInstance() {
19 | $this->assertTrue(is_a($this->AccountingAccounts, 'AccountingAccountsController'));
20 | }
21 |
22 | function endTest() {
23 | unset($this->AccountingAccounts);
24 | }
25 | }
26 | ?>
--------------------------------------------------------------------------------
/app/views/finance_budgets/edit.ctp:
--------------------------------------------------------------------------------
1 |
2 | create('FinanceBudget');?>
3 |
4 |
5 | input('id');
7 | echo $form->input('finance_account_id');
8 | echo $form->input('income');
9 | echo $form->input('expense');
10 | echo $form->input('start');
11 | echo $form->input('end');
12 | ?>
13 |
14 | end('Submit');?>
15 |
16 |
17 |
18 | link(__('Delete', true), array('action'=>'delete', $form->value('FinanceBudget.id')), null, sprintf(__('Are you sure you want to delete # %s?', true), $form->value('FinanceBudget.id'))); ?>
19 | link(__('List FinanceBudgets', true), array('action'=>'index'));?>
20 |
21 |
22 |
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_1_po/LC_MESSAGES/core.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: CakePHP I18N & I10N Team \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=2; plural=n != 1;\n"
12 | "X-Poedit-Language: Two Forms of Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1 (from core)"
16 | msgstr "Plural Rule 1 (from core translated)"
17 |
18 | msgid "%d = 1 (from core)"
19 | msgid_plural "%d = 0 or > 1 (from core)"
20 | msgstr[0] "%d = 1 (from core translated)"
21 | msgstr[1] "%d = 0 or > 1 (from core translated)"
22 |
23 |
--------------------------------------------------------------------------------
/app/tmp/cache/cake_model_default_accounting_accounts:
--------------------------------------------------------------------------------
1 | 1277878853
2 | a:7:{s:2:"id";a:5:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:20;s:3:"key";s:7:"primary";}s:5:"nomor";a:5:{s:4:"type";s:6:"string";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:255;s:3:"key";s:6:"unique";}s:4:"name";a:5:{s:4:"type";s:6:"string";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:255;s:3:"key";s:6:"unique";}s:12:"account_type";a:4:{s:4:"type";s:57:"enum('AKTIVA','KEWAJIBAN','EKUITAS','PENDAPATAN','BEBAN')";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:10;}s:9:"estimates";a:4:{s:4:"type";s:22:"enum('DEBIT','CREDIT')";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:6;}s:7:"display";a:4:{s:4:"type";s:7:"boolean";s:4:"null";b:0;s:7:"default";s:1:"1";s:6:"length";i:1;}s:9:"parent_id";a:5:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";s:1:"0";s:6:"length";i:20;s:3:"key";s:5:"index";}}
3 |
--------------------------------------------------------------------------------
/app/models/book.php:
--------------------------------------------------------------------------------
1 | array(
9 | 'className' => 'Transaction',
10 | 'foreignKey' => 'book_id',
11 | 'dependent' => false,
12 | 'conditions' => '',
13 | 'fields' => '',
14 | 'order' => '',
15 | 'limit' => '',
16 | 'offset' => '',
17 | 'exclusive' => '',
18 | 'finderQuery' => '',
19 | 'counterQuery' => ''
20 | )
21 | );
22 |
23 | function getAll(){
24 | $sql = "SELECT Book.id, Book.name as name, Book.description as description, sum(transactions.amount) as saldo FROM `books` as Book left join transactions on Book.id = transactions.book_id group by Book.id ";
25 | return $this->query($sql);
26 | }
27 |
28 | }
29 | ?>
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_14_po/LC_MESSAGES/default.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-10-09 19:20-0300\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: Renan Gonçalves \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=3; plural=n%10==1 ? 0 : n%10==2 ? 1 : 2;\n"
12 | "X-Poedit-Language: Three Forms of Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1"
16 | msgstr "Plural Rule 14 (translated)"
17 |
18 | msgid "%d = 1"
19 | msgid_plural "%d = 0 or > 1"
20 | msgstr[0] "%d ends in 1 (translated)"
21 | msgstr[1] "%d ends in 2 (translated)"
22 | msgstr[2] "%d everything else (translated)"
23 |
24 |
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_2_po/LC_MESSAGES/default.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: CakePHP I18N & I10N Team \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=2; plural=n>1;\n"
12 | "X-Poedit-Language: Two Forms of Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1"
16 | msgstr "Plural Rule 2 (translated)"
17 |
18 | msgid "%d = 1"
19 | msgid_plural "%d = 0 or > 1"
20 | msgstr[0] "%d = 0 or 1 (translated)"
21 | msgstr[1] "%d > 1 (translated)"
22 |
23 | #~ msgid "Plural-Forms 1"
24 | #~ msgstr "Plural-Forms 1 (translated)"
25 |
26 |
--------------------------------------------------------------------------------
/app/plugins/acl_admin/views/errors/missing_acl_tables.thtml:
--------------------------------------------------------------------------------
1 | config);
4 | $source = defined('ACL_DATABASE')?ACL_DATABASE:'default';
5 | $connection = $db->getDataSource($source);
6 | $sources = $connection->listSources();
7 | $prefix = $connection->config['prefix'];
8 | // Add the prefix to the sql
9 | $sql = file_get_contents (CONFIGS.'sql'.DS.'db_acl.sql');
10 | if ($prefix) {
11 | $sql = r("TABLE ", "TABLE $prefix", $sql);
12 | }
13 | ?>
14 | No ACL Tables
15 |
16 |
This plugin is for use adminstering the cake DB ACL solution; to use it you will need to create the ACL tables.
17 |
The sql you need to run is in your config folder, change the prefix if necessary, it's included below:
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_1_po/LC_MESSAGES/default.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: CakePHP I18N & I10N Team \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=2; plural=n != 1;\n"
12 | "X-Poedit-Language: Two Forms of Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1"
16 | msgstr "Plural Rule 1 (translated)"
17 |
18 | msgid "%d = 1"
19 | msgid_plural "%d = 0 or > 1"
20 | msgstr[0] "%d = 1 (translated)"
21 | msgstr[1] "%d = 0 or > 1 (translated)"
22 |
23 | #~ msgid "Plural-Forms 1"
24 | #~ msgstr "Plural-Forms 1 (translated)"
25 |
26 |
--------------------------------------------------------------------------------
/app/plugins/acl_admin/controllers/acl_node_controller.php:
--------------------------------------------------------------------------------
1 | set('geshi', $geshi );
12 | $this->render();
13 | } else {
14 | $this->autoLayout = false;
15 | $this->render('plain');
16 | }
17 | } else {
18 | $this->render('notswad');
19 | }
20 | }
21 |
22 | function beforeRender () {
23 | parent::beforeRender();
24 | $this->viewVars['MenuContext']['options']['acl_node']['active']=true;
25 | }
26 | }
27 | ?>
--------------------------------------------------------------------------------
/app/tests/fixtures/group_fixture.php:
--------------------------------------------------------------------------------
1 | array('type'=>'integer', 'null' => false, 'default' => NULL, 'key' => 'primary'),
10 | 'name' => array('type'=>'string', 'null' => false, 'default' => NULL, 'length' => 100),
11 | 'created' => array('type'=>'datetime', 'null' => true, 'default' => NULL),
12 | 'modified' => array('type'=>'datetime', 'null' => true, 'default' => NULL),
13 | 'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => 1))
14 | );
15 | var $records = array(array(
16 | 'id' => 1,
17 | 'name' => 'Lorem ipsum dolor sit amet',
18 | 'created' => '2009-04-07 11:12:56',
19 | 'modified' => '2009-04-07 11:12:56'
20 | ));
21 | }
22 | ?>
--------------------------------------------------------------------------------
/app/views/books/add.ctp:
--------------------------------------------------------------------------------
1 | css("form",null,array(),false);
3 | $javascript->link('prototype', false);
4 | $javascript->link('scriptaculous', false);
5 | $javascript->link('autoExpandContract', false);
6 | ?>
7 |
8 |
9 |
10 |
11 | create('Book');?>
12 |
13 |
14 | input('name'); ?>
15 | input('desctiption', array("class"=>"expand")); ?>
16 |
17 |
18 |
19 | * indicates required fields
20 |
21 | image("icon/save_16.png") ?> Save
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_5_po/LC_MESSAGES/default.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: CakePHP I18N & I10N Team \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n"
12 |
13 | msgid "Plural Rule 1"
14 | msgstr "Plural Rule 5 (translated)"
15 |
16 | msgid "%d = 1"
17 | msgid_plural "%d = 0 or > 1"
18 | msgstr[0] "%d = 1 (translated)"
19 | msgstr[1] "%d = 0 or ends in 01-19 (translated)"
20 | msgstr[2] "%d everything else (translated)"
21 |
22 | #~ msgid "Plural-Forms 1"
23 | #~ msgstr "Plural-Forms 1 (translated)"
24 |
25 |
--------------------------------------------------------------------------------
/app/views/catalogs/add.ctp:
--------------------------------------------------------------------------------
1 | css("form",null,array(),false);
3 | $javascript->link('prototype', false);
4 | $javascript->link('scriptaculous', false);
5 | $javascript->link('autoExpandContract', false);
6 | ?>
7 |
8 |
9 |
10 |
11 | create('Catalog');?>
12 |
13 |
14 | input('name'); ?>
15 | input('desctiption', array("class"=>"expand")); ?>
16 |
17 |
18 |
19 | * indicates required fields
20 |
21 | image("icon/save_16.png") ?> Save
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/app/tests/cases/controllers/accounting_transactions_controller.test.php:
--------------------------------------------------------------------------------
1 | AccountingTransactions = new TestAccountingTransactions();
15 | $this->AccountingTransactions->constructClasses();
16 | }
17 |
18 | function testAccountingTransactionsControllerInstance() {
19 | $this->assertTrue(is_a($this->AccountingTransactions, 'AccountingTransactionsController'));
20 | }
21 |
22 | function endTest() {
23 | unset($this->AccountingTransactions);
24 | }
25 | }
26 | ?>
--------------------------------------------------------------------------------
/app/plugins/acl_admin/views/errors/missing_table.thtml:
--------------------------------------------------------------------------------
1 | config);
4 | $connection = $db->getDataSource('default');
5 | $sources = $connection->listSources();
6 | $prefix = $connection->config['prefix'];
7 | // Add the prefix to the sql
8 | $sql = file_get_contents (APP.'plugins'.DS.$this->plugin.DS.'structure.sql');
9 | if ($prefix) {
10 | $sql = str_replace("TABLE ", "TABLE $prefix", $sql);
11 | }
12 | $this->set('sql',$sql);
13 | ?>
14 | Missing Database table
15 |
16 |
The sql for all of the models used in this plugin is shown below.
17 |
In the event that the model ( table) is not listed, the missing table is not related to the plugin, but something inherited.
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/app/tests/cases/models/group.test.php:
--------------------------------------------------------------------------------
1 | Group =& ClassRegistry::init('Group');
12 | }
13 |
14 | function testGroupInstance() {
15 | $this->assertTrue(is_a($this->Group, 'Group'));
16 | }
17 |
18 | function testGroupFind() {
19 | $this->Group->recursive = -1;
20 | $results = $this->Group->find('first');
21 | $this->assertTrue(!empty($results));
22 |
23 | $expected = array('Group' => array(
24 | 'id' => 1,
25 | 'name' => 'Lorem ipsum dolor sit amet',
26 | 'created' => '2009-04-07 11:12:56',
27 | 'modified' => '2009-04-07 11:12:56'
28 | ));
29 | $this->assertEqual($results, $expected);
30 | }
31 | }
32 | ?>
--------------------------------------------------------------------------------
/app/views/users/edit.ctp:
--------------------------------------------------------------------------------
1 | css("form",null,array(),false);
3 | ?>
4 |
5 |
26 |
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_12_po/LC_MESSAGES/default.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-10-09 19:20-0300\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: Renan Gonçalves \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==2 ? 1 : n==0 || (n>=3 && n<=10) ? 2 : 3;\n"
12 | "X-Poedit-Language: Four Forms of Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1"
16 | msgstr "Plural Rule 12 (translated)"
17 |
18 | msgid "%d = 1"
19 | msgid_plural "%d = 0 or > 1"
20 | msgstr[0] "%d is 1 (translated)"
21 | msgstr[1] "%d is 2 (translated)"
22 | msgstr[2] "%d is 0 or 3-10 (translated)"
23 | msgstr[3] "%d everything else (translated)"
24 |
25 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/config/sql/i18n.sql:
--------------------------------------------------------------------------------
1 | # $Id$
2 | #
3 | # Copyright 2005-2010, Cake Software Foundation, Inc.
4 | #
5 | # Licensed under The MIT License
6 | # Redistributions of files must retain the above copyright notice.
7 | # http://www.opensource.org/licenses/mit-license.php The MIT License
8 |
9 | CREATE TABLE i18n (
10 | id int(10) NOT NULL auto_increment,
11 | locale varchar(6) NOT NULL,
12 | model varchar(255) NOT NULL,
13 | foreign_key int(10) NOT NULL,
14 | field varchar(255) NOT NULL,
15 | content mediumtext,
16 | PRIMARY KEY (id),
17 | # UNIQUE INDEX I18N_LOCALE_FIELD(locale, model, foreign_key, field),
18 | # INDEX I18N_LOCALE_ROW(locale, model, foreign_key),
19 | # INDEX I18N_LOCALE_MODEL(locale, model),
20 | # INDEX I18N_FIELD(model, foreign_key, field),
21 | # INDEX I18N_ROW(model, foreign_key),
22 | INDEX locale (locale),
23 | INDEX model (model),
24 | INDEX row_id (foreign_key),
25 | INDEX field (field)
26 | );
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_4_po/LC_MESSAGES/core.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: CakePHP I18N & I10N Team \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n"
12 | "X-Poedit-Language: Three Forms of Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1 (from core)"
16 | msgstr "Plural Rule 4 (from core translated)"
17 |
18 | msgid "%d = 1 (from core)"
19 | msgid_plural "%d = 0 or > 1 (from core)"
20 | msgstr[0] "%d = 1 (from core translated)"
21 | msgstr[1] "%d = 2 (from core translated)"
22 | msgstr[2] "%d everything else (from core translated)"
23 |
24 |
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_4_po/LC_MESSAGES/default.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: CakePHP I18N & I10N Team \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n"
12 | "X-Poedit-Language: Three Forms of Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1"
16 | msgstr "Plural Rule 4 (translated)"
17 |
18 | msgid "%d = 1"
19 | msgid_plural "%d = 0 or > 1"
20 | msgstr[0] "%d = 1 (translated)"
21 | msgstr[1] "%d = 2 (translated)"
22 | msgstr[2] "%d everything else (translated)"
23 |
24 | #~ msgid "Plural-Forms 1"
25 | #~ msgstr "Plural-Forms 1 (translated)"
26 |
27 |
--------------------------------------------------------------------------------
/app/views/books/edit.ctp:
--------------------------------------------------------------------------------
1 | css("form",null,array(),false);
3 | $javascript->link('prototype', false);
4 | $javascript->link('scriptaculous', false);
5 | $javascript->link('autoExpandContract', false);
6 | ?>
7 |
8 |
9 |
10 |
11 | create('Book');?>
12 | input('id'); ?>
13 |
14 |
15 | input('name'); ?>
16 | input('desctiption', array("class"=>"expand")); ?>
17 |
18 |
19 |
20 | * indicates required fields
21 |
22 | image("icon/save_16.png") ?> Save
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_14_po/LC_MESSAGES/core.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-10-09 19:20-0300\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: Renan Gonçalves \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=3; plural=n%10==1 ? 0 : n%10==2 ? 1 : 2;\n"
12 | "X-Poedit-Language: Three Forms of Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1 (from core)"
16 | msgstr "Plural Rule 14 (from core translated)"
17 |
18 | msgid "%d = 1 (from core)"
19 | msgid_plural "%d = 0 or > 1 (from core)"
20 | msgstr[0] "%d ends in 1 (from core translated)"
21 | msgstr[1] "%d ends in 2 (from core translated)"
22 | msgstr[2] "%d everything else (from core translated)"
23 |
24 |
--------------------------------------------------------------------------------
/app/models/bukubesar.php:
--------------------------------------------------------------------------------
1 | array('numeric'),
7 | 'nama' => array('notempty')
8 | );
9 |
10 | //The Associations below have been created with all possible keys, those that are not needed can be removed
11 | var $belongsTo = array(
12 | 'Neraca' => array(
13 | 'className' => 'Neraca',
14 | 'foreignKey' => 'neraca_id',
15 | 'conditions' => '',
16 | 'fields' => '',
17 | 'order' => ''
18 | )
19 | );
20 |
21 | var $hasMany = array(
22 | 'Transaksibukubesar' => array(
23 | 'className' => 'Transaksibukubesar',
24 | 'foreignKey' => 'bukubesar_id',
25 | 'dependent' => false,
26 | 'conditions' => '',
27 | 'fields' => '',
28 | 'order' => '',
29 | 'limit' => '',
30 | 'offset' => '',
31 | 'exclusive' => '',
32 | 'finderQuery' => '',
33 | 'counterQuery' => ''
34 | )
35 | );
36 |
37 | }
38 | ?>
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_8_po/LC_MESSAGES/core.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: CakePHP I18N & I10N Team \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
12 | "X-Poedit-Language: Three Forms of Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1 (from core)"
16 | msgstr "Plural Rule 8 (from core translated)"
17 |
18 | msgid "%d = 1 (from core)"
19 | msgid_plural "%d = 0 or > 1 (from core)"
20 | msgstr[0] "%d is 1 (from core translated)"
21 | msgstr[1] "%d is 2-4 (from core translated)"
22 | msgstr[2] "%d everything else (from core translated)"
23 |
24 |
--------------------------------------------------------------------------------
/app/config/sql/i18n.sql:
--------------------------------------------------------------------------------
1 | # $Id: i18n.sql 7945 2008-12-19 02:16:01Z gwoo $
2 | #
3 | # Copyright 2005-2008, Cake Software Foundation, Inc.
4 | #
5 | # Licensed under The MIT License
6 | # Redistributions of files must retain the above copyright notice.
7 | # http://www.opensource.org/licenses/mit-license.php The MIT License
8 |
9 | CREATE TABLE i18n (
10 | id int(10) NOT NULL auto_increment,
11 | locale varchar(6) NOT NULL,
12 | model varchar(255) NOT NULL,
13 | foreign_key int(10) NOT NULL,
14 | field varchar(255) NOT NULL,
15 | content mediumtext,
16 | PRIMARY KEY (id),
17 | # UNIQUE INDEX I18N_LOCALE_FIELD(locale, model, foreign_key, field),
18 | # INDEX I18N_LOCALE_ROW(locale, model, foreign_key),
19 | # INDEX I18N_LOCALE_MODEL(locale, model),
20 | # INDEX I18N_FIELD(model, foreign_key, field),
21 | # INDEX I18N_ROW(model, foreign_key),
22 | INDEX locale (locale),
23 | INDEX model (model),
24 | INDEX row_id (foreign_key),
25 | INDEX field (field)
26 | );
27 |
--------------------------------------------------------------------------------
/app/tmp/cache/cake_model_default_projects:
--------------------------------------------------------------------------------
1 | 1277878855
2 | a:10:{s:2:"id";a:5:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:11;s:3:"key";s:7:"primary";}s:4:"name";a:4:{s:4:"type";s:6:"string";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:255;}s:11:"description";a:4:{s:4:"type";s:4:"text";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}s:9:"client_id";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:11;}s:5:"start";a:4:{s:4:"type";s:4:"date";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}s:3:"end";a:4:{s:4:"type";s:4:"date";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}s:5:"value";a:4:{s:4:"type";s:5:"float";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}s:7:"user_id";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:11;}s:7:"created";a:4:{s:4:"type";s:8:"datetime";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}s:8:"modified";a:4:{s:4:"type";s:8:"datetime";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}}
3 |
--------------------------------------------------------------------------------
/app/views/catalogs/edit.ctp:
--------------------------------------------------------------------------------
1 | css("form",null,array(),false);
3 | $javascript->link('prototype', false);
4 | $javascript->link('scriptaculous', false);
5 | $javascript->link('autoExpandContract', false);
6 | ?>
7 |
8 |
9 |
10 |
11 | create('Catalog');?>
12 | input('id'); ?>
13 |
14 |
15 | input('name'); ?>
16 | input('desctiption', array("class"=>"expand")); ?>
17 |
18 |
19 |
20 | * indicates required fields
21 |
22 | image("icon/save_16.png") ?> Save
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/app/models/document.php:
--------------------------------------------------------------------------------
1 | array(
9 | 'className' => 'Catalog',
10 | 'foreignKey' => 'catalog_id',
11 | 'conditions' => '',
12 | 'fields' => '',
13 | 'order' => ''
14 | ),
15 | 'Contract' => array(
16 | 'className' => 'Contract',
17 | 'foreignKey' => 'contract_id',
18 | 'conditions' => '',
19 | 'fields' => '',
20 | 'order' => ''
21 | ),
22 | 'User' => array(
23 | 'className' => 'User',
24 | 'foreignKey' => 'user_id',
25 | 'conditions' => '',
26 | 'fields' => '',
27 | 'order' => ''
28 | ),
29 | 'Task' => array(
30 | 'className' => 'Task',
31 | 'foreignKey' => 'task_id',
32 | 'conditions' => '',
33 | 'fields' => '',
34 | 'order' => ''
35 | )
36 | );
37 |
38 | }
39 | ?>
--------------------------------------------------------------------------------
/app/models/log.php:
--------------------------------------------------------------------------------
1 | array(
9 | 'className' => 'Worklog',
10 | 'foreignKey' => 'worklog_id',
11 | 'conditions' => '',
12 | 'fields' => '',
13 | 'order' => ''
14 | )
15 | );
16 |
17 | public function getLog($worklogId)
18 | {
19 | $logs = $this->find('all', array('fields' => array('content', 'time(created) as time'), 'conditions' => array('worklog_id' => $worklogId)));
20 | $data = array();
21 |
22 | foreach($logs as $log) {
23 | $temp = array();
24 | $temp['content'] = $log['Log']['content'];
25 | $temp['time'] = $log[0]['time'];
26 | $data[] = $temp;
27 | }
28 | return $data;
29 | }
30 | }
31 | ?>
32 |
--------------------------------------------------------------------------------
/app/views/elements/nav_accounting_report.ctp:
--------------------------------------------------------------------------------
1 |
2 |
3 | >
4 | link(__('Buku Besar', true),array(
5 | 'action'=>'buku_besar'
6 | ),array(), false, false); ?>
7 |
8 | >
9 | link(__('Neraca Saldo', true),array(
10 | 'action'=>'neraca_saldo'
11 | ),array(), false, false); ?>
12 |
13 | >
14 | link(__('Neraca', true),array(
15 | 'action'=>'neraca'
16 | ),array(), false, false); ?>
17 |
18 | >
19 | link(__('Laba Rugi', true),array(
20 | 'action'=>'laba_rugi'
21 | ),array(), false, false); ?>
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_8_po/LC_MESSAGES/default.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: CakePHP I18N & I10N Team \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
12 | "X-Poedit-Language: Three Forms of Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1"
16 | msgstr "Plural Rule 8 (translated)"
17 |
18 | msgid "%d = 1"
19 | msgid_plural "%d = 0 or > 1"
20 | msgstr[0] "%d is 1 (translated)"
21 | msgstr[1] "%d is 2-4 (translated)"
22 | msgstr[2] "%d everything else (translated)"
23 |
24 | #~ msgid "Plural-Forms 1"
25 | #~ msgstr "Plural-Forms 1 (translated)"
26 |
27 |
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_3_po/LC_MESSAGES/core.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: CakePHP I18N & I10N Team \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n"
12 | "X-Poedit-Language: Three Forms of Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1 (from core)"
16 | msgstr "Plural Rule 3 (from core translated)"
17 |
18 | msgid "%d = 1 (from core)"
19 | msgid_plural "%d = 0 or > 1 (from core)"
20 | msgstr[0] "%d ends 1 but not 11 (from core translated)"
21 | msgstr[1] "%d everything else (from core translated)"
22 | msgstr[2] "%d = 0 (from core translated)"
23 |
24 |
--------------------------------------------------------------------------------
/app/tests/cases/controllers/accounting_transaction_types_controller.test.php:
--------------------------------------------------------------------------------
1 | AccountingTransactionTypes = new TestAccountingTransactionTypes();
15 | $this->AccountingTransactionTypes->constructClasses();
16 | }
17 |
18 | function testAccountingTransactionTypesControllerInstance() {
19 | $this->assertTrue(is_a($this->AccountingTransactionTypes, 'AccountingTransactionTypesController'));
20 | }
21 |
22 | function endTest() {
23 | unset($this->AccountingTransactionTypes);
24 | }
25 | }
26 | ?>
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/index.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_11_po/LC_MESSAGES/default.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-10-09 19:20-0300\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: Renan Gonçalves \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : n>=3 && n<=6 ? 2 : n>=7 && n<=10 ? 3 : 4;\n"
12 | "X-Poedit-Language: Five Forms of Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1"
16 | msgstr "Plural Rule 11 (translated)"
17 |
18 | msgid "%d = 1"
19 | msgid_plural "%d = 0 or > 1"
20 | msgstr[0] "%d is 1 (translated)"
21 | msgstr[1] "%d is 2 (translated)"
22 | msgstr[2] "%d is 3-6 (translated)"
23 | msgstr[3] "%d is 7-10 (translated)"
24 | msgstr[4] "%d everything else (translated)"
25 |
26 |
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_13_po/LC_MESSAGES/default.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-10-09 19:20-0300\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: Renan Gonçalves \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==0 || (n%100>=1 && n%100<=10) ? 1 : n%100>=11 && n%100<=20 ? 2 : 3;\n"
12 | "X-Poedit-Language: Four Forms of Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1"
16 | msgstr "Plural Rule 13 (translated)"
17 |
18 | msgid "%d = 1"
19 | msgid_plural "%d = 0 or > 1"
20 | msgstr[0] "%d is 1 (translated)"
21 | msgstr[1] "%d is 0 or ends in 01-10 (translated)"
22 | msgstr[2] "%d ends in 11-20 (translated)"
23 | msgstr[3] "%d everything else (translated)"
24 |
25 |
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_3_po/LC_MESSAGES/default.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: CakePHP I18N & I10N Team \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n"
12 | "X-Poedit-Language: Three Forms of Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1"
16 | msgstr "Plural Rule 3 (translated)"
17 |
18 | msgid "%d = 1"
19 | msgid_plural "%d = 0 or > 1"
20 | msgstr[0] "%d ends 1 but not 11 (translated)"
21 | msgstr[1] "%d everything else (translated)"
22 | msgstr[2] "%d = 0 (translated)"
23 |
24 | #~ msgid "Plural-Forms 1"
25 | #~ msgstr "Plural-Forms 1 (translated)"
26 |
27 |
--------------------------------------------------------------------------------
/app/tests/cases/models/book.test.php:
--------------------------------------------------------------------------------
1 | Book =& ClassRegistry::init('Book');
12 | }
13 |
14 | function testBookInstance() {
15 | $this->assertTrue(is_a($this->Book, 'Book'));
16 | }
17 |
18 | function testBookFind() {
19 | $this->Book->recursive = -1;
20 | $results = $this->Book->find('first');
21 | $this->assertTrue(!empty($results));
22 |
23 | $expected = array('Book' => array(
24 | 'id' => 1,
25 | 'name' => 'Lorem ipsum dolor sit amet',
26 | 'description' => 'Lorem ipsum dolor sit amet',
27 | 'created' => '2009-04-07 10:01:00',
28 | 'updated' => '2009-04-07 10:01:00'
29 | ));
30 | $this->assertEqual($results, $expected);
31 | }
32 | }
33 | ?>
--------------------------------------------------------------------------------
/cake/libs/view/layouts/ajax.ctp:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_5_po/LC_MESSAGES/core.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: CakePHP I18N & I10N Team \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n"
12 | "X-Poedit-Language: Three Forms of Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1 (from core)"
16 | msgstr "Plural Rule 5 (from core translated)"
17 |
18 | msgid "%d = 1 (from core)"
19 | msgid_plural "%d = 0 or > 1 (from core)"
20 | msgstr[0] "%d = 1 (from core translated)"
21 | msgstr[1] "%d = 0 or ends in 01-19 (from core translated)"
22 | msgstr[2] "%d everything else (from core translated)"
23 |
24 |
--------------------------------------------------------------------------------
/cake/config/config.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app/tmp/cache/cake_model_default_documents:
--------------------------------------------------------------------------------
1 | 1277878855
2 | a:10:{s:2:"id";a:5:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:11;s:3:"key";s:7:"primary";}s:10:"catalog_id";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:1;s:7:"default";N;s:6:"length";i:11;}s:4:"name";a:4:{s:4:"type";s:6:"string";s:4:"null";b:1;s:7:"default";N;s:6:"length";i:200;}s:11:"description";a:4:{s:4:"type";s:4:"text";s:4:"null";b:1;s:7:"default";N;s:6:"length";N;}s:8:"filename";a:4:{s:4:"type";s:6:"string";s:4:"null";b:1;s:7:"default";N;s:6:"length";i:200;}s:11:"contract_id";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:1;s:7:"default";N;s:6:"length";i:11;}s:7:"user_id";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:1;s:7:"default";N;s:6:"length";i:11;}s:7:"task_id";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:1;s:7:"default";N;s:6:"length";i:11;}s:7:"created";a:4:{s:4:"type";s:8:"datetime";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}s:8:"modified";a:4:{s:4:"type";s:8:"datetime";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}}
3 |
--------------------------------------------------------------------------------
/app/tmp/cache/cake_model_default_accounting_buku_besars:
--------------------------------------------------------------------------------
1 | 1277878853
2 | a:9:{s:2:"id";a:5:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:20;s:3:"key";s:7:"primary";}s:21:"accounting_account_id";a:5:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:20;s:3:"key";s:5:"index";}s:25:"accounting_transaction_id";a:5:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:20;s:3:"key";s:5:"index";}s:9:"estimates";a:4:{s:4:"type";s:22:"enum('DEBIT','CREDIT')";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:6;}s:6:"amount";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:20;}s:5:"debit";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:20;}s:6:"credit";a:4:{s:4:"type";s:7:"integer";s:4:"null";b:0;s:7:"default";N;s:6:"length";i:20;}s:7:"created";a:4:{s:4:"type";s:8:"datetime";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}s:8:"modified";a:4:{s:4:"type";s:8:"datetime";s:4:"null";b:0;s:7:"default";N;s:6:"length";N;}}
3 |
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_9_po/LC_MESSAGES/core.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: CakePHP I18N & I10N Team \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
12 | "X-Poedit-Language: Three Forms of Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1 (from core)"
16 | msgstr "Plural Rule 9 (from core translated)"
17 |
18 | msgid "%d = 1 (from core)"
19 | msgid_plural "%d = 0 or > 1 (from core)"
20 | msgstr[0] "%d is 1 (from core translated)"
21 | msgstr[1] "%d ends in 2-4, not 12-14 (from core translated)"
22 | msgstr[2] "%d everything else (from core translated)"
23 |
24 |
--------------------------------------------------------------------------------
/cake/tests/test_app/models/post.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/tests/test_app/views/layouts/ajax.ctp:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/cake/libs/view/elements/email/text/default.ctp:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/app/plugins/acl_admin/views/layouts/noswad_demo.css:
--------------------------------------------------------------------------------
1 | #menu{
2 | height:50px;
3 | background:grey;
4 | }
5 | #menu ul{
6 | width:100%;
7 | }
8 |
9 | #menu ul li{
10 | list-style-type:none;
11 | display:inline;
12 | }
13 |
14 | #menu ul li a{
15 | font-weight:bold;
16 | display:block;
17 | float:left;
18 | color:#000;
19 | width:12%;
20 | height:50px;
21 | line-height:50px;
22 | text-align:center;
23 | margin:0 auto;
24 | }
25 | #menu ul li a:hover, #menu ul li a.active{
26 | background:white;
27 | }
28 |
29 | .flash_message {
30 | text-align: center;
31 | position: relative;
32 | margin-left: 20%;
33 | margin-right: 20%;
34 | padding:4px;
35 | margin-top: 0px;
36 | margin-bottom: 20px;
37 | background-color: #e5f0fc;
38 | border: 1px solid #ccc;
39 | }
40 | .flash_warn {
41 | background-color: #e5f0fc;
42 | border:1px solid yellow;
43 | }
44 | .flash_error {
45 | background-color:#FFE8E8;
46 | border:1px solid red;
47 | color: red;
48 | }
49 | #pagination {
50 | text-align:center;
51 | }
52 |
--------------------------------------------------------------------------------
/app/webroot/css/text.css:
--------------------------------------------------------------------------------
1 | body{text-align: left;font:12px/1.5em "Helvetica","Arial","Lucida Grande","Trebuchet MS",Helvetica,Arial,sans-serif}
2 | hr{border:0 #ccc solid;border-top-width:1px;clear:both;height:0}
3 |
4 | h1 { margin-bottom: 0.4em; font-size: 2.2em; line-height: 1.2em; }
5 | h2 {
6 | margin-bottom: 0em;
7 | font-family: Helvetica, Arial, sans-serif;
8 | font-size: 1.8em;
9 | font-style: normal;
10 | letter-spacing: -0.1px;
11 | line-height: 1.2em;
12 | color: #99CCCC;
13 | }
14 | h2 span{font-weight:normal; color: rgb(120, 140, 160)}
15 | #tab h2{color:#555;margin-bottom:12px;}
16 | .page h2{}
17 | h3 { margin-bottom: 0.2em; font-size: 1.2em; line-height: 1.1em; color:#345;letter-spacing:0px;}
18 | h3 span{color: rgb(120, 140, 160)}
19 | h4 { margin-bottom: 0.2em; font-size: 1.1em; line-height: 1.1em;}
20 | h5 { margin-bottom: 0.1em; font-size: 1.1em; line-height: 1.1em; color:#666666;}
21 | h6 { margin-bottom: 0.1em; font-size: 1em; line-height: 1em; }
22 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/views/layouts/ajax.ctp:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_9_po/LC_MESSAGES/default.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: CakePHP I18N & I10N Team \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
12 | "X-Poedit-Language: Three Forms of Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1"
16 | msgstr "Plural Rule 9 (translated)"
17 |
18 | msgid "%d = 1"
19 | msgid_plural "%d = 0 or > 1"
20 | msgstr[0] "%d is 1 (translated)"
21 | msgstr[1] "%d ends in 2-4, not 12-14 (translated)"
22 | msgstr[2] "%d everything else (translated)"
23 |
24 | #~ msgid "Plural-Forms 1"
25 | #~ msgstr "Plural-Forms 1 (translated)"
26 |
27 |
--------------------------------------------------------------------------------
/cake/tests/test_app/models/comment.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/cake/tests/test_app/views/elements/email/text/default.ctp:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/app/tests/fixtures/book_fixture.php:
--------------------------------------------------------------------------------
1 | array('type'=>'integer', 'null' => false, 'default' => NULL, 'key' => 'primary'),
10 | 'name' => array('type'=>'string', 'null' => false, 'default' => NULL),
11 | 'description' => array('type'=>'string', 'null' => false, 'default' => NULL),
12 | 'created' => array('type'=>'datetime', 'null' => false, 'default' => NULL),
13 | 'updated' => array('type'=>'datetime', 'null' => false, 'default' => NULL),
14 | 'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => 1))
15 | );
16 | var $records = array(array(
17 | 'id' => 1,
18 | 'name' => 'Lorem ipsum dolor sit amet',
19 | 'description' => 'Lorem ipsum dolor sit amet',
20 | 'created' => '2009-04-07 10:01:00',
21 | 'updated' => '2009-04-07 10:01:00'
22 | ));
23 | }
24 | ?>
--------------------------------------------------------------------------------
/app/views/invoiceitems/edit.ctp:
--------------------------------------------------------------------------------
1 |
2 | create('Invoiceitem');?>
3 |
4 |
5 | input('id');
7 | echo $form->input('invoice_id');
8 | echo $form->input('description');
9 | echo $form->input('amount');
10 | ?>
11 |
12 | end('Submit');?>
13 |
14 |
15 |
16 | link(__('Delete', true), array('action'=>'delete', $form->value('Invoiceitem.id')), null, sprintf(__('Are you sure you want to delete # %s?', true), $form->value('Invoiceitem.id'))); ?>
17 | link(__('List Invoiceitems', true), array('action'=>'index'));?>
18 | link(__('List Invoices', true), array('controller'=> 'invoices', 'action'=>'index')); ?>
19 | link(__('New Invoice', true), array('controller'=> 'invoices', 'action'=>'add')); ?>
20 |
21 |
22 |
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_12_po/LC_MESSAGES/core.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-10-09 19:20-0300\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: Renan Gonçalves \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==2 ? 1 : n==0 || (n>=3 && n<=10) ? 2 : 3;\n"
12 | "X-Poedit-Language: Four Forms of Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1 (from core)"
16 | msgstr "Plural Rule 12 (from core translated)"
17 |
18 | msgid "%d = 1 (from core)"
19 | msgid_plural "%d = 0 or > 1 (from core)"
20 | msgstr[0] "%d is 1 (from core translated)"
21 | msgstr[1] "%d is 2 (from core translated)"
22 | msgstr[2] "%d is 0 or 3-10 (from core translated)"
23 | msgstr[3] "%d everything else (from core translated)"
24 |
25 |
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_6_po/LC_MESSAGES/core.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: CakePHP I18N & I10N Team \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
12 | "X-Poedit-Language: Three Forms of Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1 (from core)"
16 | msgstr "Plural Rule 6 (from core translated)"
17 |
18 | msgid "%d = 1 (from core)"
19 | msgid_plural "%d = 0 or > 1 (from core)"
20 | msgstr[0] "%d ends in 1, not 11 (from core translated)"
21 | msgstr[1] "%d everything else (from core translated)"
22 | msgstr[2] "%d ends in 0 or ends in 10-20 (from core translated)"
23 |
24 |
--------------------------------------------------------------------------------
/cake/console/libs/templates/skel/views/elements/email/text/default.ctp:
--------------------------------------------------------------------------------
1 |
25 |
--------------------------------------------------------------------------------
/app/tests/fixtures/accounting_transaction_type_fixture.php:
--------------------------------------------------------------------------------
1 | array('type'=>'integer', 'null' => false, 'default' => NULL, 'length' => 20, 'key' => 'primary'),
10 | 'name' => array('type'=>'string', 'null' => false, 'default' => NULL),
11 | 'account_debit_id' => array('type'=>'integer', 'null' => false, 'default' => NULL, 'length' => 20),
12 | 'account_credit_id' => array('type'=>'integer', 'null' => false, 'default' => NULL, 'length' => 20),
13 | 'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => 1))
14 | );
15 | var $records = array(array(
16 | 'id' => 1,
17 | 'name' => 'Lorem ipsum dolor sit amet',
18 | 'account_debit_id' => 1,
19 | 'account_credit_id' => 1
20 | ));
21 | }
22 | ?>
--------------------------------------------------------------------------------
/app/webroot/css/ffp.css:
--------------------------------------------------------------------------------
1 | /* FancyForm styles */
2 |
3 | /*adjust to taste*/
4 |
5 | label.checked,
6 | label.unchecked,
7 | label.selected,
8 | label.unselected{
9 | position:relative;
10 | display:block;
11 | padding:0.5em;
12 | padding-left:32px;
13 | background-position:8px center;
14 | background-repeat:no-repeat;
15 | border:1px solid #252525;
16 | margin:3px;
17 | clear:both;
18 | cursor:pointer
19 | }
20 |
21 | label.checked{
22 | background-image:url(img/chk_on.png);
23 | }
24 |
25 | label.unchecked{
26 | background-image:url(img/chk_off.png);
27 | }
28 |
29 | label.selected{
30 | background-image:url(img/rdo_on.png);
31 | }
32 |
33 | label.unselected{
34 | background-image:url(img/rdo_off.png);
35 | }
36 |
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_6_po/LC_MESSAGES/default.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: CakePHP I18N & I10N Team \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
12 | "X-Poedit-Language: Three Forms of Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1"
16 | msgstr "Plural Rule 6 (translated)"
17 |
18 | msgid "%d = 1"
19 | msgid_plural "%d = 0 or > 1"
20 | msgstr[0] "%d ends in 1, not 11 (translated)"
21 | msgstr[1] "%d everything else (translated)"
22 | msgstr[2] "%d ends in 0 or ends in 10-20 (translated)"
23 |
24 | #~ msgid "Plural-Forms 1"
25 | #~ msgstr "Plural-Forms 1 (translated)"
26 |
27 |
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_7_po/LC_MESSAGES/core.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: CakePHP I18N & I10N Team \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
12 | "X-Poedit-Language: Three Forms of Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1 (from core)"
16 | msgstr "Plural Rule 7 (from core translated)"
17 |
18 | msgid "%d = 1 (from core)"
19 | msgid_plural "%d = 0 or > 1 (from core)"
20 | msgstr[0] "%d ends in 1, not 11 (from core translated)"
21 | msgstr[1] "%d ends in 2-4, not 12-14 (from core translated)"
22 | msgstr[2] "%d everything else (from core translated)"
23 |
24 |
--------------------------------------------------------------------------------
/cake/tests/test_app/locale/rule_10_po/LC_MESSAGES/default.po:
--------------------------------------------------------------------------------
1 | msgid ""
2 | msgstr ""
3 | "Project-Id-Version: CakePHP Testsuite\n"
4 | "POT-Creation-Date: 2008-05-15 02:51-0700\n"
5 | "PO-Revision-Date: \n"
6 | "Last-Translator: CakePHP I18N & I10N Team \n"
7 | "Language-Team: CakePHP I18N & I10N Team \n"
8 | "MIME-Version: 1.0\n"
9 | "Content-Type: text/plain; charset=UTF-8\n"
10 | "Content-Transfer-Encoding: 8bit\n"
11 | "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
12 | "X-Poedit-Language: Four Forms of Plurals\n"
13 | "X-Poedit-SourceCharset: utf-8\n"
14 |
15 | msgid "Plural Rule 1"
16 | msgstr "Plural Rule 10 (translated)"
17 |
18 | msgid "%d = 1"
19 | msgid_plural "%d = 0 or > 1"
20 | msgstr[0] "%d ends in 1 (translated)"
21 | msgstr[1] "%d ends in 2 (translated)"
22 | msgstr[2] "%d ends in 03-04 (translated)"
23 | msgstr[3] "%d everything else (translated)"
24 |
25 | #~ msgid "Plural-Forms 1"
26 | #~ msgstr "Plural-Forms 1 (translated)"
27 |
28 |
--------------------------------------------------------------------------------