├── .gitignore ├── .htaccess ├── LICENSE ├── README.md ├── app ├── .htaccess ├── Config │ ├── Schema │ │ ├── db_acl.php │ │ ├── db_acl.sql │ │ ├── i18n.php │ │ ├── i18n.sql │ │ ├── sessions.php │ │ └── sessions.sql │ ├── acl.ini.php │ ├── acl.php │ ├── bootstrap.php │ ├── core.php │ ├── database.php │ ├── email.php │ ├── routes.php │ └── timesAppSettings.php ├── Console │ ├── Command │ │ ├── AppShell.php │ │ └── Task │ │ │ └── empty │ ├── Templates │ │ └── empty │ ├── cake │ ├── cake.bat │ └── cake.php ├── Controller │ ├── AppController.php │ ├── ClientsController.php │ ├── Component │ │ └── empty │ ├── DashboardController.php │ ├── HoursController.php │ ├── InvoicesController.php │ ├── LinesController.php │ ├── LoginController.php │ ├── MobileController.php │ ├── PaymentsController.php │ ├── ProductsController.php │ ├── ProjectsController.php │ ├── ServicesController.php │ ├── SettingsController.php │ ├── TaxesController.php │ └── UsersController.php ├── Lib │ └── empty ├── Locale │ └── eng │ │ └── LC_MESSAGES │ │ └── empty ├── Model │ ├── AppModel.php │ ├── Behavior │ │ └── empty │ ├── Client.php │ ├── Datasource │ │ └── empty │ ├── Hour.php │ ├── Invoice.php │ ├── Line.php │ ├── Payment.php │ ├── Product.php │ ├── Project.php │ ├── Service.php │ ├── Tax.php │ └── User.php ├── Plugin │ └── empty ├── Test │ ├── Case │ │ ├── Controller │ │ │ └── Component │ │ │ │ └── empty │ │ ├── Model │ │ │ └── Behavior │ │ │ │ └── empty │ │ └── View │ │ │ └── Helper │ │ │ └── empty │ └── Fixture │ │ └── empty ├── Vendor │ ├── tcpdf_min │ │ ├── CHANGELOG.TXT │ │ ├── LICENSE.TXT │ │ ├── README.TXT │ │ ├── composer.json │ │ ├── config │ │ │ └── tcpdf_config.php │ │ ├── fonts │ │ │ ├── courier.php │ │ │ ├── courierb.php │ │ │ ├── courierbi.php │ │ │ ├── courieri.php │ │ │ ├── helvetica.php │ │ │ ├── helveticab.php │ │ │ ├── helveticabi.php │ │ │ ├── helveticai.php │ │ │ ├── symbol.php │ │ │ ├── times.php │ │ │ ├── timesb.php │ │ │ ├── timesbi.php │ │ │ ├── timesi.php │ │ │ └── zapfdingbats.php │ │ ├── include │ │ │ ├── barcodes │ │ │ │ ├── datamatrix.php │ │ │ │ ├── pdf417.php │ │ │ │ └── qrcode.php │ │ │ ├── sRGB.icc │ │ │ ├── tcpdf_colors.php │ │ │ ├── tcpdf_filters.php │ │ │ ├── tcpdf_font_data.php │ │ │ ├── tcpdf_fonts.php │ │ │ ├── tcpdf_images.php │ │ │ └── tcpdf_static.php │ │ ├── tcpdf.php │ │ ├── tcpdf_autoconfig.php │ │ ├── tcpdf_barcodes_1d.php │ │ ├── tcpdf_barcodes_2d.php │ │ ├── tcpdf_import.php │ │ ├── tcpdf_parser.php │ │ └── tools │ │ │ ├── .htaccess │ │ │ └── tcpdf_addfont.php │ └── xtcpdf.php ├── View │ ├── Clients │ │ ├── add.ctp │ │ ├── edit.ctp │ │ └── index.ctp │ ├── Dashboard │ │ └── index.ctp │ ├── Elements │ │ ├── flash_danger.ctp │ │ ├── flash_info.ctp │ │ ├── flash_success.ctp │ │ ├── flash_warning.ctp │ │ ├── footer.ctp │ │ ├── navbar.ctp │ │ ├── paginator.ctp │ │ ├── side_navbar.ctp │ │ └── tiles │ │ │ ├── chart.ctp │ │ │ ├── download_app.ctp │ │ │ ├── due.ctp │ │ │ ├── lines.ctp │ │ │ ├── payments.ctp │ │ │ ├── time.ctp │ │ │ ├── users_status.ctp │ │ │ └── vcard.ctp │ ├── Emails │ │ ├── html │ │ │ ├── default.ctp │ │ │ ├── invoice.ctp │ │ │ └── resetpwd.ctp │ │ └── text │ │ │ ├── default.ctp │ │ │ ├── invoice.ctp │ │ │ └── resetpwd.ctp │ ├── Errors │ │ ├── error400.ctp │ │ └── error500.ctp │ ├── Helper │ │ ├── AppHelper.php │ │ ├── Fn5Helper.php │ │ └── GravatarHelper.php │ ├── Hours │ │ ├── add.ctp │ │ ├── edit.ctp │ │ ├── index.ctp │ │ ├── timer.ctp │ │ └── view.ctp │ ├── Invoices │ │ ├── add.ctp │ │ ├── edit.ctp │ │ ├── get_line.ctp │ │ ├── get_message.ctp │ │ ├── get_projects_by_client.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── Layouts │ │ ├── Emails │ │ │ ├── html │ │ │ │ └── default.ctp │ │ │ └── text │ │ │ │ └── default.ctp │ │ ├── ajax.ctp │ │ ├── dashboard.ctp │ │ ├── default.ctp │ │ ├── error.ctp │ │ ├── flash.ctp │ │ ├── invoice_permalink.ctp │ │ ├── js │ │ │ └── default.ctp │ │ ├── login.ctp │ │ ├── pdf │ │ │ └── default.ctp │ │ ├── rss │ │ │ └── default.ctp │ │ └── xml │ │ │ └── default.ctp │ ├── Lines │ │ ├── add.ctp │ │ ├── edit.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── Login │ │ ├── forgetpwd.ctp │ │ ├── index.ctp │ │ ├── reset.ctp │ │ └── signup.ctp │ ├── Mobile │ │ └── index.ctp │ ├── Payments │ │ ├── add.ctp │ │ ├── get_amount_by_invoice.ctp │ │ └── index.ctp │ ├── Pdf │ │ └── invoice.ctp │ ├── Products │ │ ├── add.ctp │ │ ├── edit.ctp │ │ └── index.ctp │ ├── Projects │ │ ├── add.ctp │ │ ├── edit.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── Scaffolds │ │ └── empty │ ├── Services │ │ ├── add.ctp │ │ ├── edit.ctp │ │ └── index.ctp │ ├── Settings │ │ ├── email.ctp │ │ ├── index.ctp │ │ └── invoices.ctp │ ├── Taxes │ │ ├── add.ctp │ │ ├── edit.ctp │ │ └── index.ctp │ └── Users │ │ ├── add.ctp │ │ ├── edit.ctp │ │ ├── index.ctp │ │ └── profile.ctp ├── index.php ├── tmp │ ├── cache │ │ ├── models │ │ │ └── empty │ │ ├── persistent │ │ │ └── empty │ │ └── views │ │ │ └── empty │ ├── logs │ │ └── empty │ ├── sessions │ │ └── empty │ └── tests │ │ └── empty └── webroot │ ├── .htaccess │ ├── config.php │ ├── css │ ├── app.css │ ├── foundation-icons.css │ └── zebra.css │ ├── favicon.ico │ ├── files │ ├── android │ │ ├── TimesApp.apk │ │ └── empty │ ├── empty │ └── pdf │ │ ├── 1.pdf │ │ ├── nigger.pdf │ │ └── nigger1.pdf │ ├── fonts │ ├── foundation-icons.eot │ ├── foundation-icons.svg │ ├── foundation-icons.ttf │ ├── foundation-icons.woff │ └── svgs │ │ ├── fi-address-book.svg │ │ ├── fi-alert.svg │ │ ├── fi-align-center.svg │ │ ├── fi-align-justify.svg │ │ ├── fi-align-left.svg │ │ ├── fi-align-right.svg │ │ ├── fi-anchor.svg │ │ ├── fi-annotate.svg │ │ ├── fi-archive.svg │ │ ├── fi-arrow-down.svg │ │ ├── fi-arrow-left.svg │ │ ├── fi-arrow-right.svg │ │ ├── fi-arrow-up.svg │ │ ├── fi-arrows-compress.svg │ │ ├── fi-arrows-expand.svg │ │ ├── fi-arrows-in.svg │ │ ├── fi-arrows-out.svg │ │ ├── fi-asl.svg │ │ ├── fi-asterisk.svg │ │ ├── fi-at-sign.svg │ │ ├── fi-background-color.svg │ │ ├── fi-battery-empty.svg │ │ ├── fi-battery-full.svg │ │ ├── fi-battery-half.svg │ │ ├── fi-bitcoin-circle.svg │ │ ├── fi-bitcoin.svg │ │ ├── fi-blind.svg │ │ ├── fi-bluetooth.svg │ │ ├── fi-bold.svg │ │ ├── fi-book-bookmark.svg │ │ ├── fi-book.svg │ │ ├── fi-bookmark.svg │ │ ├── fi-braille.svg │ │ ├── fi-burst-new.svg │ │ ├── fi-burst-sale.svg │ │ ├── fi-burst.svg │ │ ├── fi-calendar.svg │ │ ├── fi-camera.svg │ │ ├── fi-check.svg │ │ ├── fi-checkbox.svg │ │ ├── fi-clipboard-notes.svg │ │ ├── fi-clipboard-pencil.svg │ │ ├── fi-clipboard.svg │ │ ├── fi-clock.svg │ │ ├── fi-closed-caption.svg │ │ ├── fi-cloud.svg │ │ ├── fi-comment-minus.svg │ │ ├── fi-comment-quotes.svg │ │ ├── fi-comment-video.svg │ │ ├── fi-comment.svg │ │ ├── fi-comments.svg │ │ ├── fi-compass.svg │ │ ├── fi-contrast.svg │ │ ├── fi-credit-card.svg │ │ ├── fi-crop.svg │ │ ├── fi-crown.svg │ │ ├── fi-css3.svg │ │ ├── fi-database.svg │ │ ├── fi-die-five.svg │ │ ├── fi-die-four.svg │ │ ├── fi-die-one.svg │ │ ├── fi-die-six.svg │ │ ├── fi-die-three.svg │ │ ├── fi-die-two.svg │ │ ├── fi-dislike.svg │ │ ├── fi-dollar-bill.svg │ │ ├── fi-dollar.svg │ │ ├── fi-download.svg │ │ ├── fi-eject.svg │ │ ├── fi-elevator.svg │ │ ├── fi-euro.svg │ │ ├── fi-eye.svg │ │ ├── fi-fast-forward.svg │ │ ├── fi-female-symbol.svg │ │ ├── fi-female.svg │ │ ├── fi-filter.svg │ │ ├── fi-first-aid.svg │ │ ├── fi-flag.svg │ │ ├── fi-folder-add.svg │ │ ├── fi-folder-lock.svg │ │ ├── fi-folder.svg │ │ ├── fi-foot.svg │ │ ├── fi-foundation.svg │ │ ├── fi-graph-bar.svg │ │ ├── fi-graph-horizontal.svg │ │ ├── fi-graph-pie.svg │ │ ├── fi-graph-trend.svg │ │ ├── fi-guide-dog.svg │ │ ├── fi-hearing-aid.svg │ │ ├── fi-heart.svg │ │ ├── fi-home.svg │ │ ├── fi-html5.svg │ │ ├── fi-indent-less.svg │ │ ├── fi-indent-more.svg │ │ ├── fi-info.svg │ │ ├── fi-italic.svg │ │ ├── fi-key.svg │ │ ├── fi-laptop.svg │ │ ├── fi-layout.svg │ │ ├── fi-lightbulb.svg │ │ ├── fi-like.svg │ │ ├── fi-link.svg │ │ ├── fi-list-bullet.svg │ │ ├── fi-list-number.svg │ │ ├── fi-list-thumbnails.svg │ │ ├── fi-list.svg │ │ ├── fi-lock.svg │ │ ├── fi-loop.svg │ │ ├── fi-magnifying-glass.svg │ │ ├── fi-mail.svg │ │ ├── fi-male-female.svg │ │ ├── fi-male-symbol.svg │ │ ├── fi-male.svg │ │ ├── fi-map.svg │ │ ├── fi-marker.svg │ │ ├── fi-megaphone.svg │ │ ├── fi-microphone.svg │ │ ├── fi-minus-circle.svg │ │ ├── fi-minus.svg │ │ ├── fi-mobile-signal.svg │ │ ├── fi-mobile.svg │ │ ├── fi-monitor.svg │ │ ├── fi-mountains.svg │ │ ├── fi-music.svg │ │ ├── fi-next.svg │ │ ├── fi-no-dogs.svg │ │ ├── fi-no-smoking.svg │ │ ├── fi-page-add.svg │ │ ├── fi-page-copy.svg │ │ ├── fi-page-csv.svg │ │ ├── fi-page-delete.svg │ │ ├── fi-page-doc.svg │ │ ├── fi-page-edit.svg │ │ ├── fi-page-export-csv.svg │ │ ├── fi-page-export-doc.svg │ │ ├── fi-page-export-pdf.svg │ │ ├── fi-page-export.svg │ │ ├── fi-page-filled.svg │ │ ├── fi-page-multiple.svg │ │ ├── fi-page-pdf.svg │ │ ├── fi-page-remove.svg │ │ ├── fi-page-search.svg │ │ ├── fi-page.svg │ │ ├── fi-paint-bucket.svg │ │ ├── fi-paperclip.svg │ │ ├── fi-pause.svg │ │ ├── fi-paw.svg │ │ ├── fi-paypal.svg │ │ ├── fi-pencil.svg │ │ ├── fi-photo.svg │ │ ├── fi-play-circle.svg │ │ ├── fi-play-video.svg │ │ ├── fi-play.svg │ │ ├── fi-plus.svg │ │ ├── fi-pound.svg │ │ ├── fi-power.svg │ │ ├── fi-previous.svg │ │ ├── fi-price-tag.svg │ │ ├── fi-pricetag-multiple.svg │ │ ├── fi-print.svg │ │ ├── fi-prohibited.svg │ │ ├── fi-projection-screen.svg │ │ ├── fi-puzzle.svg │ │ ├── fi-quote.svg │ │ ├── fi-record.svg │ │ ├── fi-refresh.svg │ │ ├── fi-results-demographics.svg │ │ ├── fi-results.svg │ │ ├── fi-rewind-ten.svg │ │ ├── fi-rewind.svg │ │ ├── fi-rss.svg │ │ ├── fi-safety-cone.svg │ │ ├── fi-save.svg │ │ ├── fi-share.svg │ │ ├── fi-sheriff-badge.svg │ │ ├── fi-shield.svg │ │ ├── fi-shopping-bag.svg │ │ ├── fi-shopping-cart.svg │ │ ├── fi-shuffle.svg │ │ ├── fi-skull.svg │ │ ├── fi-social-500px.svg │ │ ├── fi-social-adobe.svg │ │ ├── fi-social-amazon.svg │ │ ├── fi-social-android.svg │ │ ├── fi-social-apple.svg │ │ ├── fi-social-behance.svg │ │ ├── fi-social-bing.svg │ │ ├── fi-social-blogger.svg │ │ ├── fi-social-delicious.svg │ │ ├── fi-social-designer-news.svg │ │ ├── fi-social-deviant-art.svg │ │ ├── fi-social-digg.svg │ │ ├── fi-social-dribbble.svg │ │ ├── fi-social-drive.svg │ │ ├── fi-social-dropbox.svg │ │ ├── fi-social-evernote.svg │ │ ├── fi-social-facebook.svg │ │ ├── fi-social-flickr.svg │ │ ├── fi-social-forrst.svg │ │ ├── fi-social-foursquare.svg │ │ ├── fi-social-game-center.svg │ │ ├── fi-social-github.svg │ │ ├── fi-social-google-plus.svg │ │ ├── fi-social-hacker-news.svg │ │ ├── fi-social-hi5.svg │ │ ├── fi-social-instagram.svg │ │ ├── fi-social-joomla.svg │ │ ├── fi-social-lastfm.svg │ │ ├── fi-social-linkedin.svg │ │ ├── fi-social-medium.svg │ │ ├── fi-social-myspace.svg │ │ ├── fi-social-orkut.svg │ │ ├── fi-social-path.svg │ │ ├── fi-social-picasa.svg │ │ ├── fi-social-pinterest.svg │ │ ├── fi-social-rdio.svg │ │ ├── fi-social-reddit.svg │ │ ├── fi-social-skillshare.svg │ │ ├── fi-social-skype.svg │ │ ├── fi-social-smashing-mag.svg │ │ ├── fi-social-snapchat.svg │ │ ├── fi-social-spotify.svg │ │ ├── fi-social-squidoo.svg │ │ ├── fi-social-stack-overflow.svg │ │ ├── fi-social-steam.svg │ │ ├── fi-social-stumbleupon.svg │ │ ├── fi-social-treehouse.svg │ │ ├── fi-social-tumblr.svg │ │ ├── fi-social-twitter.svg │ │ ├── fi-social-vimeo.svg │ │ ├── fi-social-windows.svg │ │ ├── fi-social-xbox.svg │ │ ├── fi-social-yahoo.svg │ │ ├── fi-social-yelp.svg │ │ ├── fi-social-youtube.svg │ │ ├── fi-social-zerply.svg │ │ ├── fi-social-zurb.svg │ │ ├── fi-sound.svg │ │ ├── fi-star.svg │ │ ├── fi-stop.svg │ │ ├── fi-strikethrough.svg │ │ ├── fi-subscript.svg │ │ ├── fi-superscript.svg │ │ ├── fi-tablet-landscape.svg │ │ ├── fi-tablet-portrait.svg │ │ ├── fi-target-two.svg │ │ ├── fi-target.svg │ │ ├── fi-telephone-accessible.svg │ │ ├── fi-telephone.svg │ │ ├── fi-text-color.svg │ │ ├── fi-thumbnails.svg │ │ ├── fi-ticket.svg │ │ ├── fi-torso-business.svg │ │ ├── fi-torso-female.svg │ │ ├── fi-torso.svg │ │ ├── fi-torsos-all-female.svg │ │ ├── fi-torsos-all.svg │ │ ├── fi-torsos-female-male.svg │ │ ├── fi-torsos-male-female.svg │ │ ├── fi-torsos.svg │ │ ├── fi-trash.svg │ │ ├── fi-trees.svg │ │ ├── fi-trophy.svg │ │ ├── fi-underline.svg │ │ ├── fi-universal-access.svg │ │ ├── fi-unlink.svg │ │ ├── fi-unlock.svg │ │ ├── fi-upload-cloud.svg │ │ ├── fi-upload.svg │ │ ├── fi-usb.svg │ │ ├── fi-video.svg │ │ ├── fi-volume-none.svg │ │ ├── fi-volume-strike.svg │ │ ├── fi-volume.svg │ │ ├── fi-web.svg │ │ ├── fi-wheelchair.svg │ │ ├── fi-widget.svg │ │ ├── fi-wrench.svg │ │ ├── fi-x-circle.svg │ │ ├── fi-x.svg │ │ ├── fi-yen.svg │ │ ├── fi-zoom-in.svg │ │ └── fi-zoom-out.svg │ ├── img │ ├── TimesApp_icon.png │ ├── TimesApp_icon_hover.png │ ├── TimesApp_logo.png │ ├── TimesApp_logo_80px.png │ ├── calendar-disabled.png │ ├── calendar.png │ ├── invoice-status.png │ ├── loadingImage.gif │ ├── minions_404.jpg │ └── minions_500.jpg │ ├── index.php │ ├── js │ ├── Chart.min.js │ ├── app.js │ ├── datepicker.js │ ├── foundation.min.js │ ├── hoursConverter.js │ ├── jquery.min.js │ ├── listClients.js │ ├── modernizr.js │ ├── timer.js │ └── zebra_datepicker.js │ └── test.php ├── index.php ├── lib └── Cake │ ├── Cache │ ├── Cache.php │ ├── CacheEngine.php │ └── Engine │ │ ├── ApcEngine.php │ │ ├── FileEngine.php │ │ ├── MemcacheEngine.php │ │ ├── RedisEngine.php │ │ ├── WincacheEngine.php │ │ └── XcacheEngine.php │ ├── Config │ ├── cacert.pem │ ├── config.php │ ├── routes.php │ └── unicode │ │ └── casefolding │ │ ├── 0080_00ff.php │ │ ├── 0100_017f.php │ │ ├── 0180_024F.php │ │ ├── 0250_02af.php │ │ ├── 0370_03ff.php │ │ ├── 0400_04ff.php │ │ ├── 0500_052f.php │ │ ├── 0530_058f.php │ │ ├── 1e00_1eff.php │ │ ├── 1f00_1fff.php │ │ ├── 2100_214f.php │ │ ├── 2150_218f.php │ │ ├── 2460_24ff.php │ │ ├── 2c00_2c5f.php │ │ ├── 2c60_2c7f.php │ │ ├── 2c80_2cff.php │ │ └── ff00_ffef.php │ ├── Configure │ ├── ConfigReaderInterface.php │ ├── IniReader.php │ └── PhpReader.php │ ├── Console │ ├── Command │ │ ├── AclShell.php │ │ ├── ApiShell.php │ │ ├── AppShell.php │ │ ├── BakeShell.php │ │ ├── CommandListShell.php │ │ ├── ConsoleShell.php │ │ ├── I18nShell.php │ │ ├── SchemaShell.php │ │ ├── ServerShell.php │ │ ├── Task │ │ │ ├── BakeTask.php │ │ │ ├── ControllerTask.php │ │ │ ├── DbConfigTask.php │ │ │ ├── ExtractTask.php │ │ │ ├── FixtureTask.php │ │ │ ├── ModelTask.php │ │ │ ├── PluginTask.php │ │ │ ├── ProjectTask.php │ │ │ ├── TemplateTask.php │ │ │ ├── TestTask.php │ │ │ └── ViewTask.php │ │ ├── TestShell.php │ │ ├── TestsuiteShell.php │ │ └── UpgradeShell.php │ ├── ConsoleErrorHandler.php │ ├── ConsoleInput.php │ ├── ConsoleInputArgument.php │ ├── ConsoleInputOption.php │ ├── ConsoleInputSubcommand.php │ ├── ConsoleOptionParser.php │ ├── ConsoleOutput.php │ ├── HelpFormatter.php │ ├── Shell.php │ ├── ShellDispatcher.php │ ├── TaskCollection.php │ ├── Templates │ │ ├── default │ │ │ ├── actions │ │ │ │ └── controller_actions.ctp │ │ │ ├── classes │ │ │ │ ├── controller.ctp │ │ │ │ ├── fixture.ctp │ │ │ │ ├── model.ctp │ │ │ │ └── test.ctp │ │ │ └── views │ │ │ │ ├── form.ctp │ │ │ │ ├── index.ctp │ │ │ │ └── view.ctp │ │ └── skel │ │ │ ├── .htaccess │ │ │ ├── Config │ │ │ ├── Schema │ │ │ │ ├── db_acl.php │ │ │ │ ├── db_acl.sql │ │ │ │ ├── i18n.php │ │ │ │ ├── i18n.sql │ │ │ │ ├── sessions.php │ │ │ │ └── sessions.sql │ │ │ ├── acl.ini.php │ │ │ ├── acl.php │ │ │ ├── bootstrap.php │ │ │ ├── core.php │ │ │ ├── database.php.default │ │ │ ├── email.php.default │ │ │ └── routes.php │ │ │ ├── Console │ │ │ ├── Command │ │ │ │ ├── AppShell.php │ │ │ │ └── Task │ │ │ │ │ └── empty │ │ │ ├── Templates │ │ │ │ └── empty │ │ │ ├── cake │ │ │ ├── cake.bat │ │ │ └── cake.php │ │ │ ├── Controller │ │ │ ├── AppController.php │ │ │ ├── Component │ │ │ │ └── empty │ │ │ └── PagesController.php │ │ │ ├── Lib │ │ │ └── empty │ │ │ ├── Locale │ │ │ └── eng │ │ │ │ └── LC_MESSAGES │ │ │ │ └── empty │ │ │ ├── Model │ │ │ ├── AppModel.php │ │ │ ├── Behavior │ │ │ │ └── empty │ │ │ └── Datasource │ │ │ │ └── empty │ │ │ ├── Plugin │ │ │ └── empty │ │ │ ├── Test │ │ │ ├── Case │ │ │ │ ├── Controller │ │ │ │ │ └── Component │ │ │ │ │ │ └── empty │ │ │ │ ├── Model │ │ │ │ │ └── Behavior │ │ │ │ │ │ └── empty │ │ │ │ └── View │ │ │ │ │ └── Helper │ │ │ │ │ └── empty │ │ │ └── Fixture │ │ │ │ └── empty │ │ │ ├── Vendor │ │ │ └── empty │ │ │ ├── View │ │ │ ├── Elements │ │ │ │ └── empty │ │ │ ├── Emails │ │ │ │ ├── html │ │ │ │ │ └── default.ctp │ │ │ │ └── text │ │ │ │ │ └── default.ctp │ │ │ ├── Errors │ │ │ │ ├── error400.ctp │ │ │ │ └── error500.ctp │ │ │ ├── Helper │ │ │ │ └── AppHelper.php │ │ │ ├── Layouts │ │ │ │ ├── Emails │ │ │ │ │ ├── html │ │ │ │ │ │ └── default.ctp │ │ │ │ │ └── text │ │ │ │ │ │ └── default.ctp │ │ │ │ ├── ajax.ctp │ │ │ │ ├── default.ctp │ │ │ │ ├── error.ctp │ │ │ │ ├── flash.ctp │ │ │ │ ├── js │ │ │ │ │ └── default.ctp │ │ │ │ ├── rss │ │ │ │ │ └── default.ctp │ │ │ │ └── xml │ │ │ │ │ └── default.ctp │ │ │ ├── Pages │ │ │ │ └── home.ctp │ │ │ └── Scaffolds │ │ │ │ └── empty │ │ │ ├── index.php │ │ │ ├── tmp │ │ │ ├── cache │ │ │ │ ├── models │ │ │ │ │ └── empty │ │ │ │ ├── persistent │ │ │ │ │ ├── empty │ │ │ │ │ └── myapp_cake_core_cake_console_eng │ │ │ │ └── views │ │ │ │ │ └── empty │ │ │ ├── logs │ │ │ │ └── empty │ │ │ ├── sessions │ │ │ │ └── empty │ │ │ └── tests │ │ │ │ └── empty │ │ │ └── webroot │ │ │ ├── .htaccess │ │ │ ├── css │ │ │ └── cake.generic.css │ │ │ ├── favicon.ico │ │ │ ├── files │ │ │ └── empty │ │ │ ├── img │ │ │ ├── cake.icon.png │ │ │ ├── cake.power.gif │ │ │ ├── test-error-icon.png │ │ │ ├── test-fail-icon.png │ │ │ ├── test-pass-icon.png │ │ │ └── test-skip-icon.png │ │ │ ├── index.php │ │ │ ├── js │ │ │ └── empty │ │ │ └── test.php │ ├── cake │ ├── cake.bat │ └── cake.php │ ├── Controller │ ├── CakeErrorController.php │ ├── Component.php │ ├── Component │ │ ├── Acl │ │ │ ├── AclInterface.php │ │ │ ├── DbAcl.php │ │ │ ├── IniAcl.php │ │ │ └── PhpAcl.php │ │ ├── AclComponent.php │ │ ├── Auth │ │ │ ├── AbstractPasswordHasher.php │ │ │ ├── ActionsAuthorize.php │ │ │ ├── BaseAuthenticate.php │ │ │ ├── BaseAuthorize.php │ │ │ ├── BasicAuthenticate.php │ │ │ ├── BlowfishAuthenticate.php │ │ │ ├── BlowfishPasswordHasher.php │ │ │ ├── ControllerAuthorize.php │ │ │ ├── CrudAuthorize.php │ │ │ ├── DigestAuthenticate.php │ │ │ ├── FormAuthenticate.php │ │ │ └── SimplePasswordHasher.php │ │ ├── AuthComponent.php │ │ ├── CookieComponent.php │ │ ├── EmailComponent.php │ │ ├── PaginatorComponent.php │ │ ├── RequestHandlerComponent.php │ │ ├── SecurityComponent.php │ │ └── SessionComponent.php │ ├── ComponentCollection.php │ ├── Controller.php │ └── Scaffold.php │ ├── Core │ ├── App.php │ ├── CakePlugin.php │ ├── Configure.php │ └── Object.php │ ├── Error │ ├── ErrorHandler.php │ ├── ExceptionRenderer.php │ └── exceptions.php │ ├── Event │ ├── CakeEvent.php │ ├── CakeEventListener.php │ └── CakeEventManager.php │ ├── I18n │ ├── I18n.php │ ├── L10n.php │ └── Multibyte.php │ ├── LICENSE.txt │ ├── Log │ ├── CakeLog.php │ ├── CakeLogInterface.php │ ├── Engine │ │ ├── BaseLog.php │ │ ├── ConsoleLog.php │ │ ├── FileLog.php │ │ └── SyslogLog.php │ └── LogEngineCollection.php │ ├── Model │ ├── AclNode.php │ ├── Aco.php │ ├── AcoAction.php │ ├── Aro.php │ ├── Behavior │ │ ├── AclBehavior.php │ │ ├── ContainableBehavior.php │ │ ├── TranslateBehavior.php │ │ └── TreeBehavior.php │ ├── BehaviorCollection.php │ ├── CakeSchema.php │ ├── ConnectionManager.php │ ├── Datasource │ │ ├── CakeSession.php │ │ ├── DataSource.php │ │ ├── Database │ │ │ ├── Mysql.php │ │ │ ├── Postgres.php │ │ │ ├── Sqlite.php │ │ │ └── Sqlserver.php │ │ ├── DboSource.php │ │ └── Session │ │ │ ├── CacheSession.php │ │ │ ├── CakeSessionHandlerInterface.php │ │ │ └── DatabaseSession.php │ ├── I18nModel.php │ ├── Model.php │ ├── ModelBehavior.php │ ├── ModelValidator.php │ ├── Permission.php │ └── Validator │ │ ├── CakeValidationRule.php │ │ └── CakeValidationSet.php │ ├── Network │ ├── CakeRequest.php │ ├── CakeResponse.php │ ├── CakeSocket.php │ ├── Email │ │ ├── AbstractTransport.php │ │ ├── CakeEmail.php │ │ ├── DebugTransport.php │ │ ├── MailTransport.php │ │ └── SmtpTransport.php │ └── Http │ │ ├── BasicAuthentication.php │ │ ├── DigestAuthentication.php │ │ ├── HttpResponse.php │ │ ├── HttpSocket.php │ │ └── HttpSocketResponse.php │ ├── Routing │ ├── Dispatcher.php │ ├── DispatcherFilter.php │ ├── Filter │ │ ├── AssetDispatcher.php │ │ └── CacheDispatcher.php │ ├── Route │ │ ├── CakeRoute.php │ │ ├── PluginShortRoute.php │ │ └── RedirectRoute.php │ └── Router.php │ ├── Test │ ├── Case │ │ ├── AllBehaviorsTest.php │ │ ├── AllCacheTest.php │ │ ├── AllComponentsTest.php │ │ ├── AllConfigureTest.php │ │ ├── AllConsoleTest.php │ │ ├── AllControllerTest.php │ │ ├── AllCoreTest.php │ │ ├── AllDatabaseTest.php │ │ ├── AllDbRelatedTest.php │ │ ├── AllErrorTest.php │ │ ├── AllEventTest.php │ │ ├── AllHelpersTest.php │ │ ├── AllI18nTest.php │ │ ├── AllLogTest.php │ │ ├── AllNetworkTest.php │ │ ├── AllRoutingTest.php │ │ ├── AllTestSuiteTest.php │ │ ├── AllTestsTest.php │ │ ├── AllUtilityTest.php │ │ ├── AllViewTest.php │ │ ├── BasicsTest.php │ │ ├── Cache │ │ │ ├── CacheTest.php │ │ │ └── Engine │ │ │ │ ├── ApcEngineTest.php │ │ │ │ ├── FileEngineTest.php │ │ │ │ ├── MemcacheEngineTest.php │ │ │ │ ├── RedisEngineTest.php │ │ │ │ ├── WincacheEngineTest.php │ │ │ │ └── XcacheEngineTest.php │ │ ├── Configure │ │ │ ├── IniReaderTest.php │ │ │ └── PhpReaderTest.php │ │ ├── Console │ │ │ ├── AllConsoleLibsTest.php │ │ │ ├── AllConsoleTest.php │ │ │ ├── AllShellsTest.php │ │ │ ├── AllTasksTest.php │ │ │ ├── Command │ │ │ │ ├── AclShellTest.php │ │ │ │ ├── ApiShellTest.php │ │ │ │ ├── BakeShellTest.php │ │ │ │ ├── CommandListShellTest.php │ │ │ │ ├── SchemaShellTest.php │ │ │ │ ├── Task │ │ │ │ │ ├── ControllerTaskTest.php │ │ │ │ │ ├── DbConfigTaskTest.php │ │ │ │ │ ├── ExtractTaskTest.php │ │ │ │ │ ├── FixtureTaskTest.php │ │ │ │ │ ├── ModelTaskTest.php │ │ │ │ │ ├── PluginTaskTest.php │ │ │ │ │ ├── ProjectTaskTest.php │ │ │ │ │ ├── TemplateTaskTest.php │ │ │ │ │ ├── TestTaskTest.php │ │ │ │ │ └── ViewTaskTest.php │ │ │ │ └── TestShellTest.php │ │ │ ├── ConsoleErrorHandlerTest.php │ │ │ ├── ConsoleOptionParserTest.php │ │ │ ├── ConsoleOutputTest.php │ │ │ ├── HelpFormatterTest.php │ │ │ ├── ShellDispatcherTest.php │ │ │ ├── ShellTest.php │ │ │ └── TaskCollectionTest.php │ │ ├── Controller │ │ │ ├── Component │ │ │ │ ├── Acl │ │ │ │ │ ├── DbAclTest.php │ │ │ │ │ ├── IniAclTest.php │ │ │ │ │ └── PhpAclTest.php │ │ │ │ ├── AclComponentTest.php │ │ │ │ ├── Auth │ │ │ │ │ ├── ActionsAuthorizeTest.php │ │ │ │ │ ├── BasicAuthenticateTest.php │ │ │ │ │ ├── BlowfishAuthenticateTest.php │ │ │ │ │ ├── ControllerAuthorizeTest.php │ │ │ │ │ ├── CrudAuthorizeTest.php │ │ │ │ │ ├── DigestAuthenticateTest.php │ │ │ │ │ └── FormAuthenticateTest.php │ │ │ │ ├── AuthComponentTest.php │ │ │ │ ├── CookieComponentTest.php │ │ │ │ ├── EmailComponentTest.php │ │ │ │ ├── PaginatorComponentTest.php │ │ │ │ ├── RequestHandlerComponentTest.php │ │ │ │ ├── SecurityComponentTest.php │ │ │ │ └── SessionComponentTest.php │ │ │ ├── ComponentCollectionTest.php │ │ │ ├── ComponentTest.php │ │ │ ├── ControllerMergeVarsTest.php │ │ │ ├── ControllerTest.php │ │ │ ├── PagesControllerTest.php │ │ │ └── ScaffoldTest.php │ │ ├── Core │ │ │ ├── AppTest.php │ │ │ ├── CakePluginTest.php │ │ │ ├── ConfigureTest.php │ │ │ └── ObjectTest.php │ │ ├── Error │ │ │ ├── ErrorHandlerTest.php │ │ │ └── ExceptionRendererTest.php │ │ ├── Event │ │ │ ├── CakeEventManagerTest.php │ │ │ └── CakeEventTest.php │ │ ├── I18n │ │ │ ├── I18nTest.php │ │ │ ├── L10nTest.php │ │ │ └── MultibyteTest.php │ │ ├── Log │ │ │ ├── CakeLogTest.php │ │ │ ├── Engine │ │ │ │ ├── ConsoleLogTest.php │ │ │ │ ├── FileLogTest.php │ │ │ │ └── SyslogLogTest.php │ │ │ └── LogEngineCollectionTest.php │ │ ├── Model │ │ │ ├── AclNodeTest.php │ │ │ ├── Behavior │ │ │ │ ├── AclBehaviorTest.php │ │ │ │ ├── ContainableBehaviorTest.php │ │ │ │ ├── TranslateBehaviorTest.php │ │ │ │ ├── TreeBehaviorAfterTest.php │ │ │ │ ├── TreeBehaviorNumberTest.php │ │ │ │ ├── TreeBehaviorScopedTest.php │ │ │ │ ├── TreeBehaviorTest.php │ │ │ │ └── TreeBehaviorUuidTest.php │ │ │ ├── BehaviorCollectionTest.php │ │ │ ├── CakeSchemaTest.php │ │ │ ├── ConnectionManagerTest.php │ │ │ ├── Datasource │ │ │ │ ├── CakeSessionTest.php │ │ │ │ ├── DataSourceTest.php │ │ │ │ ├── Database │ │ │ │ │ ├── MysqlTest.php │ │ │ │ │ ├── PostgresTest.php │ │ │ │ │ ├── SqliteTest.php │ │ │ │ │ └── SqlserverTest.php │ │ │ │ ├── DboSourceTest.php │ │ │ │ └── Session │ │ │ │ │ ├── CacheSessionTest.php │ │ │ │ │ └── DatabaseSessionTest.php │ │ │ ├── ModelCrossSchemaHabtmTest.php │ │ │ ├── ModelDeleteTest.php │ │ │ ├── ModelIntegrationTest.php │ │ │ ├── ModelReadTest.php │ │ │ ├── ModelTest.php │ │ │ ├── ModelTestBase.php │ │ │ ├── ModelValidationTest.php │ │ │ ├── ModelWriteTest.php │ │ │ ├── Validator │ │ │ │ ├── CakeValidationRuleTest.php │ │ │ │ └── CakeValidationSetTest.php │ │ │ └── models.php │ │ ├── Network │ │ │ ├── CakeRequestTest.php │ │ │ ├── CakeResponseTest.php │ │ │ ├── CakeSocketTest.php │ │ │ ├── Email │ │ │ │ ├── CakeEmailTest.php │ │ │ │ ├── DebugTransportTest.php │ │ │ │ ├── MailTransportTest.php │ │ │ │ └── SmtpTransportTest.php │ │ │ └── Http │ │ │ │ ├── BasicAuthenticationTest.php │ │ │ │ ├── DigestAuthenticationTest.php │ │ │ │ ├── HttpResponseTest.php │ │ │ │ └── HttpSocketTest.php │ │ ├── Routing │ │ │ ├── DispatcherTest.php │ │ │ ├── Filter │ │ │ │ └── AssetDispatcherTest.php │ │ │ ├── Route │ │ │ │ ├── CakeRouteTest.php │ │ │ │ ├── PluginShortRouteTest.php │ │ │ │ └── RedirectRouteTest.php │ │ │ └── RouterTest.php │ │ ├── TestSuite │ │ │ ├── CakeTestCaseTest.php │ │ │ ├── CakeTestFixtureTest.php │ │ │ ├── CakeTestSuiteTest.php │ │ │ ├── ControllerTestCaseTest.php │ │ │ └── HtmlCoverageReportTest.php │ │ ├── Utility │ │ │ ├── CakeNumberTest.php │ │ │ ├── CakeTimeTest.php │ │ │ ├── ClassRegistryTest.php │ │ │ ├── DebuggerTest.php │ │ │ ├── FileTest.php │ │ │ ├── FolderTest.php │ │ │ ├── HashTest.php │ │ │ ├── InflectorTest.php │ │ │ ├── ObjectCollectionTest.php │ │ │ ├── SanitizeTest.php │ │ │ ├── SecurityTest.php │ │ │ ├── SetTest.php │ │ │ ├── StringTest.php │ │ │ ├── ValidationTest.php │ │ │ └── XmlTest.php │ │ └── View │ │ │ ├── Helper │ │ │ ├── CacheHelperTest.php │ │ │ ├── FormHelperTest.php │ │ │ ├── HtmlHelperTest.php │ │ │ ├── JqueryEngineHelperTest.php │ │ │ ├── JsHelperTest.php │ │ │ ├── MootoolsEngineHelperTest.php │ │ │ ├── NumberHelperTest.php │ │ │ ├── PaginatorHelperTest.php │ │ │ ├── PrototypeEngineHelperTest.php │ │ │ ├── RssHelperTest.php │ │ │ ├── SessionHelperTest.php │ │ │ ├── TextHelperTest.php │ │ │ └── TimeHelperTest.php │ │ │ ├── HelperCollectionTest.php │ │ │ ├── HelperTest.php │ │ │ ├── JsonViewTest.php │ │ │ ├── MediaViewTest.php │ │ │ ├── ScaffoldViewTest.php │ │ │ ├── ThemeViewTest.php │ │ │ ├── ViewTest.php │ │ │ └── XmlViewTest.php │ ├── Fixture │ │ ├── AccountFixture.php │ │ ├── AcoActionFixture.php │ │ ├── AcoFixture.php │ │ ├── AcoTwoFixture.php │ │ ├── AdFixture.php │ │ ├── AdvertisementFixture.php │ │ ├── AfterTreeFixture.php │ │ ├── AnotherArticleFixture.php │ │ ├── AppleFixture.php │ │ ├── ArmorFixture.php │ │ ├── ArmorsPlayerFixture.php │ │ ├── AroFixture.php │ │ ├── AroTwoFixture.php │ │ ├── ArosAcoFixture.php │ │ ├── ArosAcoTwoFixture.php │ │ ├── ArticleFeaturedFixture.php │ │ ├── ArticleFeaturedsTagsFixture.php │ │ ├── ArticleFixture.php │ │ ├── ArticlesTagFixture.php │ │ ├── AssertTagsTestCase.php │ │ ├── AttachmentFixture.php │ │ ├── AuthUserCustomFieldFixture.php │ │ ├── AuthUserFixture.php │ │ ├── AuthorFixture.php │ │ ├── BakeArticleFixture.php │ │ ├── BakeArticlesBakeTagFixture.php │ │ ├── BakeCommentFixture.php │ │ ├── BakeTagFixture.php │ │ ├── BasketFixture.php │ │ ├── BidFixture.php │ │ ├── BiddingFixture.php │ │ ├── BiddingMessageFixture.php │ │ ├── BinaryTestFixture.php │ │ ├── BookFixture.php │ │ ├── CacheTestModelFixture.php │ │ ├── CakeSessionFixture.php │ │ ├── CallbackFixture.php │ │ ├── CampaignFixture.php │ │ ├── CategoryFixture.php │ │ ├── CategoryThreadFixture.php │ │ ├── CdFixture.php │ │ ├── CommentFixture.php │ │ ├── ContentAccountFixture.php │ │ ├── ContentFixture.php │ │ ├── CounterCachePostFixture.php │ │ ├── CounterCachePostNonstandardPrimaryKeyFixture.php │ │ ├── CounterCacheUserFixture.php │ │ ├── CounterCacheUserNonstandardPrimaryKeyFixture.php │ │ ├── DataTestFixture.php │ │ ├── DatatypeFixture.php │ │ ├── DependencyFixture.php │ │ ├── DeviceFixture.php │ │ ├── DeviceTypeCategoryFixture.php │ │ ├── DeviceTypeFixture.php │ │ ├── DocumentDirectoryFixture.php │ │ ├── DocumentFixture.php │ │ ├── DomainFixture.php │ │ ├── DomainsSiteFixture.php │ │ ├── ExteriorTypeCategoryFixture.php │ │ ├── FeatureSetFixture.php │ │ ├── FeaturedFixture.php │ │ ├── FilmFileFixture.php │ │ ├── FixturizedTestCase.php │ │ ├── FlagTreeFixture.php │ │ ├── FruitFixture.php │ │ ├── FruitsUuidTagFixture.php │ │ ├── GroupUpdateAllFixture.php │ │ ├── GuildFixture.php │ │ ├── GuildsPlayerFixture.php │ │ ├── HomeFixture.php │ │ ├── ImageFixture.php │ │ ├── InnoFixture.php │ │ ├── ItemFixture.php │ │ ├── ItemsPortfolioFixture.php │ │ ├── JoinABFixture.php │ │ ├── JoinACFixture.php │ │ ├── JoinAFixture.php │ │ ├── JoinBFixture.php │ │ ├── JoinCFixture.php │ │ ├── JoinThingFixture.php │ │ ├── MessageFixture.php │ │ ├── MyCategoriesMyProductsFixture.php │ │ ├── MyCategoriesMyUsersFixture.php │ │ ├── MyCategoryFixture.php │ │ ├── MyProductFixture.php │ │ ├── MyUserFixture.php │ │ ├── NodeFixture.php │ │ ├── NumberTreeFixture.php │ │ ├── NumberTreeTwoFixture.php │ │ ├── NumericArticleFixture.php │ │ ├── OverallFavoriteFixture.php │ │ ├── PersonFixture.php │ │ ├── PlayerFixture.php │ │ ├── PortfolioFixture.php │ │ ├── PostFixture.php │ │ ├── PostsTagFixture.php │ │ ├── PrefixTestFixture.php │ │ ├── PrimaryModelFixture.php │ │ ├── ProductFixture.php │ │ ├── ProductUpdateAllFixture.php │ │ ├── ProjectFixture.php │ │ ├── SampleFixture.php │ │ ├── SecondaryModelFixture.php │ │ ├── SessionFixture.php │ │ ├── SiteFixture.php │ │ ├── SomethingElseFixture.php │ │ ├── SomethingFixture.php │ │ ├── StoriesTagFixture.php │ │ ├── StoryFixture.php │ │ ├── SyfileFixture.php │ │ ├── TagFixture.php │ │ ├── TestPluginArticleFixture.php │ │ ├── TestPluginCommentFixture.php │ │ ├── ThePaperMonkiesFixture.php │ │ ├── ThreadFixture.php │ │ ├── TranslateArticleFixture.php │ │ ├── TranslateFixture.php │ │ ├── TranslateTableFixture.php │ │ ├── TranslateWithPrefixFixture.php │ │ ├── TranslatedArticleFixture.php │ │ ├── TranslatedItemFixture.php │ │ ├── UnconventionalTreeFixture.php │ │ ├── UnderscoreFieldFixture.php │ │ ├── UserFixture.php │ │ ├── UuidFixture.php │ │ ├── UuidTagFixture.php │ │ ├── UuidTreeFixture.php │ │ ├── UuiditemFixture.php │ │ ├── UuiditemsUuidportfolioFixture.php │ │ ├── UuiditemsUuidportfolioNumericidFixture.php │ │ ├── UuidportfolioFixture.php │ │ ├── rss.xml │ │ ├── sample.xml │ │ ├── soap_request.xml │ │ └── soap_response.xml │ ├── bake_compare │ │ └── Controller │ │ │ ├── ActionsUsingSessions.ctp │ │ │ ├── ActionsWithNoSessions.ctp │ │ │ ├── NoActions.ctp │ │ │ ├── NoHelpersOrComponents.ctp │ │ │ └── Scaffold.ctp │ └── test_app │ │ ├── Config │ │ ├── acl.ini │ │ ├── acl.ini.php │ │ ├── acl.php │ │ ├── empty.ini │ │ ├── empty.php │ │ ├── htmlhelper_minimized.ini │ │ ├── htmlhelper_tags.php │ │ ├── nested.ini │ │ ├── no_ini_extension │ │ ├── no_php_extension │ │ ├── no_section.ini │ │ ├── routes.php │ │ ├── var_test.php │ │ └── var_test2.php │ │ ├── Console │ │ ├── Command │ │ │ ├── SampleShell.php │ │ │ └── Task │ │ │ │ └── empty │ │ └── Templates │ │ │ └── test │ │ │ ├── classes │ │ │ └── test_object.ctp │ │ │ └── views │ │ │ └── admin_edit.ctp │ │ ├── Controller │ │ ├── AppController.php │ │ ├── Component │ │ │ └── empty │ │ ├── PagesController.php │ │ ├── TestAppsErrorController.php │ │ ├── TestConfigsController.php │ │ ├── TestsAppsController.php │ │ └── TestsAppsPostsController.php │ │ ├── Error │ │ └── TestAppsExceptionRenderer.php │ │ ├── Lib │ │ ├── Cache │ │ │ └── Engine │ │ │ │ └── TestAppCacheEngine.php │ │ ├── Library.php │ │ ├── Log │ │ │ └── Engine │ │ │ │ └── TestAppLog.php │ │ └── Utility │ │ │ └── TestUtilityClass.php │ │ ├── Locale │ │ ├── cache_test_po │ │ │ └── LC_MESSAGES │ │ │ │ ├── default.po │ │ │ │ ├── dom1.po │ │ │ │ └── dom2.po │ │ ├── eng │ │ │ └── LC_MESSAGES │ │ │ │ └── validation_messages.po │ │ ├── ja_jp │ │ │ └── LC_TIME │ │ ├── nld │ │ │ └── LC_TIME │ │ ├── po │ │ │ ├── LC_MESSAGES │ │ │ │ └── default.po │ │ │ ├── LC_MONETARY │ │ │ │ └── default.po │ │ │ └── LC_TIME │ │ ├── rule_0_mo │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.mo │ │ │ │ └── default.mo │ │ ├── rule_0_po │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.po │ │ │ │ └── default.po │ │ ├── rule_10_mo │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.mo │ │ │ │ └── default.mo │ │ ├── rule_10_po │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.po │ │ │ │ └── default.po │ │ ├── rule_11_mo │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.mo │ │ │ │ └── default.mo │ │ ├── rule_11_po │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.po │ │ │ │ └── default.po │ │ ├── rule_12_mo │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.mo │ │ │ │ └── default.mo │ │ ├── rule_12_po │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.po │ │ │ │ └── default.po │ │ ├── rule_13_mo │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.mo │ │ │ │ └── default.mo │ │ ├── rule_13_po │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.po │ │ │ │ └── default.po │ │ ├── rule_14_mo │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.mo │ │ │ │ └── default.mo │ │ ├── rule_14_po │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.po │ │ │ │ └── default.po │ │ ├── rule_1_mo │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.mo │ │ │ │ └── default.mo │ │ ├── rule_1_po │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.po │ │ │ │ └── default.po │ │ ├── rule_2_mo │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.mo │ │ │ │ └── default.mo │ │ ├── rule_2_po │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.po │ │ │ │ └── default.po │ │ ├── rule_3_mo │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.mo │ │ │ │ └── default.mo │ │ ├── rule_3_po │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.po │ │ │ │ └── default.po │ │ ├── rule_4_mo │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.mo │ │ │ │ └── default.mo │ │ ├── rule_4_po │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.po │ │ │ │ └── default.po │ │ ├── rule_5_mo │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.mo │ │ │ │ └── default.mo │ │ ├── rule_5_po │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.po │ │ │ │ └── default.po │ │ ├── rule_6_mo │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.mo │ │ │ │ └── default.mo │ │ ├── rule_6_po │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.po │ │ │ │ └── default.po │ │ ├── rule_7_mo │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.mo │ │ │ │ └── default.mo │ │ ├── rule_7_po │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.po │ │ │ │ └── default.po │ │ ├── rule_8_mo │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.mo │ │ │ │ └── default.mo │ │ ├── rule_8_po │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.po │ │ │ │ └── default.po │ │ ├── rule_9_mo │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.mo │ │ │ │ └── default.mo │ │ ├── rule_9_po │ │ │ └── LC_MESSAGES │ │ │ │ ├── core.po │ │ │ │ └── default.po │ │ └── time_test │ │ │ └── LC_TIME │ │ ├── Model │ │ ├── AppModel.php │ │ ├── Behavior │ │ │ ├── PersisterOneBehaviorBehavior.php │ │ │ └── PersisterTwoBehaviorBehavior.php │ │ ├── Comment.php │ │ ├── Datasource │ │ │ ├── Database │ │ │ │ └── TestLocalDriver.php │ │ │ ├── Session │ │ │ │ └── TestAppLibSession.php │ │ │ ├── Test2OtherSource.php │ │ │ └── Test2Source.php │ │ ├── Extract.php │ │ ├── PersisterOne.php │ │ ├── PersisterTwo.php │ │ └── Post.php │ │ ├── Plugin │ │ ├── PluginJs │ │ │ ├── Config │ │ │ │ └── bootstrap.php │ │ │ └── webroot │ │ │ │ └── js │ │ │ │ ├── one │ │ │ │ └── plugin_one.js │ │ │ │ └── plugin_js.js │ │ ├── TestPlugin │ │ │ ├── Config │ │ │ │ ├── Schema │ │ │ │ │ └── schema.php │ │ │ │ ├── acl.ini.php │ │ │ │ ├── bootstrap.php │ │ │ │ ├── custom_config.php │ │ │ │ ├── load.php │ │ │ │ ├── more.load.php │ │ │ │ ├── nested.ini │ │ │ │ └── routes.php │ │ │ ├── Console │ │ │ │ ├── Command │ │ │ │ │ ├── ExampleShell.php │ │ │ │ │ └── Task │ │ │ │ │ │ └── OtherTaskTask.php │ │ │ │ └── Templates │ │ │ │ │ └── empty │ │ │ ├── Controller │ │ │ │ ├── Component │ │ │ │ │ ├── OtherComponent.php │ │ │ │ │ ├── PluginsComponent.php │ │ │ │ │ ├── TestPluginComponent.php │ │ │ │ │ └── TestPluginOtherComponent.php │ │ │ │ ├── TestPluginAppController.php │ │ │ │ ├── TestPluginController.php │ │ │ │ └── TestsController.php │ │ │ ├── Lib │ │ │ │ ├── Cache │ │ │ │ │ └── Engine │ │ │ │ │ │ └── TestPluginCacheEngine.php │ │ │ │ ├── Custom │ │ │ │ │ └── Package │ │ │ │ │ │ └── CustomLibClass.php │ │ │ │ ├── Error │ │ │ │ │ └── TestPluginExceptionRenderer.php │ │ │ │ ├── Log │ │ │ │ │ └── Engine │ │ │ │ │ │ └── TestPluginLog.php │ │ │ │ ├── Routing │ │ │ │ │ ├── Filter │ │ │ │ │ │ ├── Test2DispatcherFilter.php │ │ │ │ │ │ └── TestDispatcherFilter.php │ │ │ │ │ └── Route │ │ │ │ │ │ └── TestRoute.php │ │ │ │ ├── TestPluginLibrary.php │ │ │ │ └── TestPluginOtherLibrary.php │ │ │ ├── Locale │ │ │ │ └── po │ │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ └── test_plugin.po │ │ │ │ │ └── LC_MONETARY │ │ │ │ │ └── test_plugin.po │ │ │ ├── Model │ │ │ │ ├── Behavior │ │ │ │ │ ├── TestPluginPersisterOneBehavior.php │ │ │ │ │ └── TestPluginPersisterTwoBehavior.php │ │ │ │ ├── Datasource │ │ │ │ │ ├── Database │ │ │ │ │ │ ├── DboDummy.php │ │ │ │ │ │ └── TestDriver.php │ │ │ │ │ ├── Session │ │ │ │ │ │ └── TestPluginSession.php │ │ │ │ │ ├── TestOtherSource.php │ │ │ │ │ └── TestSource.php │ │ │ │ ├── TestPluginAppModel.php │ │ │ │ ├── TestPluginAuthUser.php │ │ │ │ ├── TestPluginAuthors.php │ │ │ │ ├── TestPluginComment.php │ │ │ │ └── TestPluginPost.php │ │ │ ├── Utility │ │ │ │ └── TestPluginEngine.php │ │ │ ├── Vendor │ │ │ │ ├── Example │ │ │ │ │ └── ExampleExample.php │ │ │ │ ├── sample │ │ │ │ │ └── sample_plugin.php │ │ │ │ └── welcome.php │ │ │ ├── View │ │ │ │ ├── Elements │ │ │ │ │ ├── plugin_element.ctp │ │ │ │ │ ├── sub_dir │ │ │ │ │ │ └── sub_element.ctp │ │ │ │ │ ├── test_plugin_element.ctp │ │ │ │ │ └── translate.ctp │ │ │ │ ├── Emails │ │ │ │ │ └── text │ │ │ │ │ │ └── test_plugin_tpl.ctp │ │ │ │ ├── Helper │ │ │ │ │ ├── OtherHelperHelper.php │ │ │ │ │ ├── PluggedHelperHelper.php │ │ │ │ │ └── TestPluginAppHelper.php │ │ │ │ ├── Layouts │ │ │ │ │ ├── Emails │ │ │ │ │ │ └── text │ │ │ │ │ │ │ └── plug_default.ctp │ │ │ │ │ └── default.ctp │ │ │ │ └── Tests │ │ │ │ │ ├── index.ctp │ │ │ │ │ └── scaffold.form.ctp │ │ │ └── webroot │ │ │ │ ├── css │ │ │ │ ├── test_plugin_asset.css │ │ │ │ ├── theme_one.htc │ │ │ │ └── unknown.extension │ │ │ │ ├── flash │ │ │ │ └── plugin_test.swf │ │ │ │ ├── img │ │ │ │ └── cake.icon.gif │ │ │ │ ├── js │ │ │ │ └── test_plugin │ │ │ │ │ └── test.js │ │ │ │ ├── pdfs │ │ │ │ └── plugin_test.pdf │ │ │ │ └── root.js │ │ └── TestPluginTwo │ │ │ ├── Config │ │ │ └── bootstrap.php │ │ │ └── Console │ │ │ ├── Command │ │ │ ├── ExampleShell.php │ │ │ ├── Task │ │ │ │ └── empty │ │ │ └── WelcomeShell.php │ │ │ └── Templates │ │ │ └── empty │ │ ├── Utility │ │ └── TestAppEngine.php │ │ ├── Vendor │ │ ├── Test │ │ │ ├── MyTest.php │ │ │ └── hello.php │ │ ├── css │ │ │ └── test_asset.css │ │ ├── img │ │ │ ├── test.jpg │ │ │ └── test_2.JPG │ │ ├── sample │ │ │ └── configure_test_vendor_sample.php │ │ ├── somename │ │ │ └── some.name.php │ │ └── welcome.php │ │ ├── View │ │ ├── Elements │ │ │ ├── extended_element.ctp │ │ │ ├── extended_missing_element.ctp │ │ │ ├── html_call.ctp │ │ │ ├── nocache │ │ │ │ ├── contains_nocache.ctp │ │ │ │ ├── plain.ctp │ │ │ │ ├── sub1.ctp │ │ │ │ └── sub2.ctp │ │ │ ├── parent_element.ctp │ │ │ ├── session_helper.ctp │ │ │ ├── test_element.ctp │ │ │ ├── test_element.xml │ │ │ └── type_check.ctp │ │ ├── Emails │ │ │ ├── html │ │ │ │ ├── custom.ctp │ │ │ │ ├── default.ctp │ │ │ │ ├── html.ctp │ │ │ │ ├── image.ctp │ │ │ │ ├── japanese.ctp │ │ │ │ └── nested_element.ctp │ │ │ └── text │ │ │ │ ├── custom.ctp │ │ │ │ ├── custom_helper.ctp │ │ │ │ ├── default.ctp │ │ │ │ ├── japanese.ctp │ │ │ │ └── wide.ctp │ │ ├── Errors │ │ │ ├── error400.ctp │ │ │ └── error500.ctp │ │ ├── Helper │ │ │ └── BananaHelper.php │ │ ├── Layouts │ │ │ ├── Emails │ │ │ │ ├── html │ │ │ │ │ ├── default.ctp │ │ │ │ │ ├── japanese.ctp │ │ │ │ │ └── thin.ctp │ │ │ │ └── text │ │ │ │ │ ├── default.ctp │ │ │ │ │ └── japanese.ctp │ │ │ ├── ajax.ctp │ │ │ ├── ajax2.ctp │ │ │ ├── banana.ctp │ │ │ ├── cache_empty_sections.ctp │ │ │ ├── cache_layout.ctp │ │ │ ├── default.ctp │ │ │ ├── flash.ctp │ │ │ ├── js │ │ │ │ └── default.ctp │ │ │ ├── json │ │ │ │ └── default.ctp │ │ │ ├── multi_cache.ctp │ │ │ ├── rss │ │ │ │ └── default.ctp │ │ │ └── xml │ │ │ │ └── default.ctp │ │ ├── Pages │ │ │ ├── extract.ctp │ │ │ ├── home.ctp │ │ │ └── page.home.ctp │ │ ├── Posts │ │ │ ├── alt_ext.alt │ │ │ ├── cache_empty_sections.ctp │ │ │ ├── cache_form.ctp │ │ │ ├── extend_element.ctp │ │ │ ├── extend_loop.ctp │ │ │ ├── extend_loop_inner.ctp │ │ │ ├── extend_missing_element.ctp │ │ │ ├── extend_self.ctp │ │ │ ├── extend_with_element.ctp │ │ │ ├── helper_overwrite.ctp │ │ │ ├── index.ctp │ │ │ ├── json │ │ │ │ └── index.ctp │ │ │ ├── multiple_nocache.ctp │ │ │ ├── nested_extends.ctp │ │ │ ├── nocache_multiple_element.ctp │ │ │ ├── open_block.ctp │ │ │ ├── parent_1.ctp │ │ │ ├── parent_2.ctp │ │ │ ├── parent_view.ctp │ │ │ ├── scaffold.form.ctp │ │ │ ├── sequencial_nocache.ctp │ │ │ ├── test_nocache_tags.ctp │ │ │ └── xml │ │ │ │ └── index.ctp │ │ ├── Scaffolds │ │ │ └── empty │ │ ├── TestsApps │ │ │ ├── index.ctp │ │ │ └── json │ │ │ │ └── index.ctp │ │ └── Themed │ │ │ └── TestTheme │ │ │ ├── Elements │ │ │ └── test_element.ctp │ │ │ ├── Emails │ │ │ └── text │ │ │ │ └── themed.ctp │ │ │ ├── Layouts │ │ │ └── default.ctp │ │ │ ├── Plugin │ │ │ └── TestPlugin │ │ │ │ ├── Emails │ │ │ │ └── text │ │ │ │ │ └── test_plugin_tpl.ctp │ │ │ │ ├── Layouts │ │ │ │ └── plugin_default.ctp │ │ │ │ └── Tests │ │ │ │ └── index.ctp │ │ │ ├── Posts │ │ │ ├── index.ctp │ │ │ ├── scaffold.index.ctp │ │ │ └── themed.ctp │ │ │ └── webroot │ │ │ ├── css │ │ │ ├── test_asset.css │ │ │ └── theme_webroot.css │ │ │ ├── flash │ │ │ └── theme_test.swf │ │ │ ├── img │ │ │ ├── cake.power.gif │ │ │ └── test.jpg │ │ │ ├── js │ │ │ ├── one │ │ │ │ └── theme_one.js │ │ │ └── theme.js │ │ │ ├── pdfs │ │ │ └── theme_test.pdf │ │ │ └── space image.text │ │ ├── tmp │ │ └── empty │ │ └── webroot │ │ ├── img │ │ └── cake.power.gif │ │ └── theme │ │ └── test_theme │ │ ├── css │ │ ├── theme_webroot.css │ │ └── webroot_test.css │ │ └── img │ │ ├── cake.power.gif │ │ └── test.jpg │ ├── TestSuite │ ├── CakeTestCase.php │ ├── CakeTestLoader.php │ ├── CakeTestRunner.php │ ├── CakeTestSuite.php │ ├── CakeTestSuiteCommand.php │ ├── CakeTestSuiteDispatcher.php │ ├── ControllerTestCase.php │ ├── Coverage │ │ ├── BaseCoverageReport.php │ │ ├── HtmlCoverageReport.php │ │ └── TextCoverageReport.php │ ├── Fixture │ │ ├── CakeFixtureManager.php │ │ ├── CakeTestFixture.php │ │ └── CakeTestModel.php │ ├── Reporter │ │ ├── CakeBaseReporter.php │ │ ├── CakeHtmlReporter.php │ │ └── CakeTextReporter.php │ └── templates │ │ ├── footer.php │ │ ├── header.php │ │ ├── menu.php │ │ ├── missing_connection.php │ │ ├── phpunit.php │ │ └── xdebug.php │ ├── Utility │ ├── CakeNumber.php │ ├── CakeTime.php │ ├── ClassRegistry.php │ ├── Debugger.php │ ├── File.php │ ├── Folder.php │ ├── Hash.php │ ├── Inflector.php │ ├── ObjectCollection.php │ ├── Sanitize.php │ ├── Security.php │ ├── Set.php │ ├── String.php │ ├── Validation.php │ └── Xml.php │ ├── VERSION.txt │ ├── View │ ├── Elements │ │ ├── exception_stack_trace.ctp │ │ └── sql_dump.ctp │ ├── Errors │ │ ├── fatal_error.ctp │ │ ├── missing_action.ctp │ │ ├── missing_behavior.ctp │ │ ├── missing_component.ctp │ │ ├── missing_connection.ctp │ │ ├── missing_controller.ctp │ │ ├── missing_database.ctp │ │ ├── missing_datasource.ctp │ │ ├── missing_datasource_config.ctp │ │ ├── missing_helper.ctp │ │ ├── missing_layout.ctp │ │ ├── missing_plugin.ctp │ │ ├── missing_table.ctp │ │ ├── missing_view.ctp │ │ ├── pdo_error.ctp │ │ ├── private_action.ctp │ │ └── scaffold_error.ctp │ ├── Helper.php │ ├── Helper │ │ ├── CacheHelper.php │ │ ├── FormHelper.php │ │ ├── HtmlHelper.php │ │ ├── JqueryEngineHelper.php │ │ ├── JsBaseEngineHelper.php │ │ ├── JsHelper.php │ │ ├── MootoolsEngineHelper.php │ │ ├── NumberHelper.php │ │ ├── PaginatorHelper.php │ │ ├── PrototypeEngineHelper.php │ │ ├── RssHelper.php │ │ ├── SessionHelper.php │ │ ├── TextHelper.php │ │ └── TimeHelper.php │ ├── HelperCollection.php │ ├── JsonView.php │ ├── MediaView.php │ ├── ScaffoldView.php │ ├── Scaffolds │ │ ├── form.ctp │ │ ├── index.ctp │ │ └── view.ctp │ ├── ThemeView.php │ ├── View.php │ ├── ViewBlock.php │ └── XmlView.php │ ├── basics.php │ └── bootstrap.php ├── plugins └── empty ├── timesapp_empty_v0.1.9.sql ├── timesapp_withData_v0.2.1.sql └── vendors └── empty /.htaccess: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine on 3 | RewriteRule ^$ app/webroot/ [L] 4 | RewriteRule (.*) app/webroot/$1 [L] 5 | -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine on 3 | RewriteRule ^$ webroot/ [L] 4 | RewriteRule (.*) webroot/$1 [L] 5 | -------------------------------------------------------------------------------- /app/Config/Schema/i18n.sql: -------------------------------------------------------------------------------- 1 | # $Id$ 2 | # 3 | # Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 4 | # 5 | # Licensed under The MIT License 6 | # For full copyright and license information, please see the LICENSE.txt 7 | # Redistributions of files must retain the above copyright notice. 8 | # MIT License (http://www.opensource.org/licenses/mit-license.php) 9 | 10 | CREATE TABLE i18n ( 11 | id int(10) NOT NULL auto_increment, 12 | locale varchar(6) NOT NULL, 13 | model varchar(255) NOT NULL, 14 | foreign_key int(10) NOT NULL, 15 | field varchar(255) NOT NULL, 16 | content mediumtext, 17 | PRIMARY KEY (id), 18 | # UNIQUE INDEX I18N_LOCALE_FIELD(locale, model, foreign_key, field), 19 | # INDEX I18N_LOCALE_ROW(locale, model, foreign_key), 20 | # INDEX I18N_LOCALE_MODEL(locale, model), 21 | # INDEX I18N_FIELD(model, foreign_key, field), 22 | # INDEX I18N_ROW(model, foreign_key), 23 | INDEX locale (locale), 24 | INDEX model (model), 25 | INDEX row_id (foreign_key), 26 | INDEX field (field) 27 | ); -------------------------------------------------------------------------------- /app/Config/Schema/sessions.sql: -------------------------------------------------------------------------------- 1 | # $Id$ 2 | # 3 | # Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 4 | # 1785 E. Sahara Avenue, Suite 490-204 5 | # Las Vegas, Nevada 89104 6 | # 7 | # Licensed under The MIT License 8 | # For full copyright and license information, please see the LICENSE.txt 9 | # Redistributions of files must retain the above copyright notice. 10 | # MIT License (http://www.opensource.org/licenses/mit-license.php) 11 | 12 | CREATE TABLE cake_sessions ( 13 | id varchar(255) NOT NULL default '', 14 | data text, 15 | expires int(11) default NULL, 16 | PRIMARY KEY (id) 17 | ); -------------------------------------------------------------------------------- /app/Console/Command/AppShell.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | × 4 | -------------------------------------------------------------------------------- /app/View/Elements/flash_info.ctp: -------------------------------------------------------------------------------- 1 |
2 | 3 | × 4 |
-------------------------------------------------------------------------------- /app/View/Elements/flash_success.ctp: -------------------------------------------------------------------------------- 1 |
2 | 3 | × 4 |
-------------------------------------------------------------------------------- /app/View/Elements/flash_warning.ctp: -------------------------------------------------------------------------------- 1 |
2 | 3 | × 4 |
-------------------------------------------------------------------------------- /app/View/Elements/paginator.ctp: -------------------------------------------------------------------------------- 1 |

2 | Paginator->counter(array( 4 | 'format' => __('Page {:page} of {:pages}, showing {:current} records out of {:count} total, starting on record {:start}, ending on {:end}') 5 | )); 6 | ?> 7 |

8 |
9 | Paginator->prev('←' . __('Previous'), array(), null, array('class' => 'prev disabled')); 11 | echo $this->Paginator->numbers(array('separator' => ' ')); 12 | echo $this->Paginator->next(__('Next') . '→', array(), null, array('class' => 'next disabled')); 13 | ?> 14 |
-------------------------------------------------------------------------------- /app/View/Elements/side_navbar.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/View/Elements/tiles/download_app.ctp: -------------------------------------------------------------------------------- 1 |
2 |
3 |

4 |
5 |
6 |

Download mobile app for android devices.

7 | Download 8 |
9 | 10 | -------------------------------------------------------------------------------- /app/View/Elements/tiles/payments.ctp: -------------------------------------------------------------------------------- 1 |
2 |
3 |

4 | 9 |
10 | 11 | 17 |
-------------------------------------------------------------------------------- /app/View/Elements/tiles/users_status.ctp: -------------------------------------------------------------------------------- 1 |
2 |
3 |

4 |
5 | 6 |

7 | 8 |

9 | 10 | 11 | 12 | 18 |
-------------------------------------------------------------------------------- /app/View/Elements/tiles/vcard.ctp: -------------------------------------------------------------------------------- 1 |
2 | 9 | 15 |
-------------------------------------------------------------------------------- /app/View/Emails/html/default.ctp: -------------------------------------------------------------------------------- 1 | 19 | ' . $line . "

\n"; 24 | endforeach; 25 | ?> -------------------------------------------------------------------------------- /app/View/Emails/text/default.ctp: -------------------------------------------------------------------------------- 1 | 19 | -------------------------------------------------------------------------------- /app/View/Emails/text/invoice.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/View/Emails/text/resetpwd.ctp: -------------------------------------------------------------------------------- 1 | Click on the link below to reset Your Password , 2 | 3 | -------------------------------------------------------------------------------- /app/View/Invoices/get_message.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/View/Invoices/get_projects_by_client.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/View/Layouts/Emails/html/default.ctp: -------------------------------------------------------------------------------- 1 | 19 | 20 | 21 | 22 | <?php echo $title_for_layout; ?> 23 | 24 | 25 | fetch('content'); ?> 26 | 27 |

TimesApp

28 | 29 | -------------------------------------------------------------------------------- /app/View/Layouts/Emails/text/default.ctp: -------------------------------------------------------------------------------- 1 | 19 | fetch('content'); ?> 20 | 21 | This email was sent using the CakePHP Framework, http://cakephp.org. 22 | -------------------------------------------------------------------------------- /app/View/Layouts/ajax.ctp: -------------------------------------------------------------------------------- 1 | 19 | fetch('content'); ?> 20 | -------------------------------------------------------------------------------- /app/View/Layouts/js/default.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /app/View/Layouts/pdf/default.ctp: -------------------------------------------------------------------------------- 1 | Rss->document( 10 | $this->Rss->channel( 11 | array(), $channel, $this->fetch('content') 12 | ) 13 | ); 14 | ?> 15 | -------------------------------------------------------------------------------- /app/View/Layouts/xml/default.ctp: -------------------------------------------------------------------------------- 1 | fetch('content'); ?> 2 | -------------------------------------------------------------------------------- /app/View/Mobile/index.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/View/Payments/get_amount_by_invoice.ctp: -------------------------------------------------------------------------------- 1 | 4 | Please, add an amount greater than 0.00 and lesser than or equal to . 5 | -------------------------------------------------------------------------------- /app/View/Products/add.ctp: -------------------------------------------------------------------------------- 1 |
2 | Form->create('Product'); ?> 3 |
4 | 5 | Form->input('code'); 7 | echo $this->Form->input('status'); 8 | echo $this->Form->input('description'); 9 | echo $this->Form->input('unit_price'); 10 | echo $this->Form->input('tax_id'); 11 | ?> 12 |
13 | Form->end(__('Submit')); ?> 14 |
15 |
16 |

17 | 23 |
24 | -------------------------------------------------------------------------------- /app/View/Scaffolds/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/app/View/Scaffolds/empty -------------------------------------------------------------------------------- /app/View/Services/add.ctp: -------------------------------------------------------------------------------- 1 |
2 | Form->create('Service'); ?> 3 |
4 | 5 | Form->input('code'); 7 | echo $this->Form->input('status'); 8 | echo $this->Form->input('description'); 9 | echo $this->Form->input('rate'); 10 | echo $this->Form->input('tax_id'); 11 | ?> 12 |
13 | Form->end(__('Submit')); ?> 14 |
15 |
16 |

17 | 23 |
24 | -------------------------------------------------------------------------------- /app/View/Taxes/add.ctp: -------------------------------------------------------------------------------- 1 |
2 | Form->create('Tax'); ?> 3 |
4 | 5 | Form->input('description'); 7 | echo $this->Form->input('status'); 8 | echo $this->Form->input('rate'); 9 | ?> 10 |
11 | Form->end(__('Submit')); ?> 12 |
13 |
14 |

15 | 19 |
20 | -------------------------------------------------------------------------------- /app/index.php: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine On 3 | RewriteCond %{REQUEST_FILENAME} !-d 4 | RewriteCond %{REQUEST_FILENAME} !-f 5 | RewriteRule ^ index.php [L] 6 | 7 | -------------------------------------------------------------------------------- /app/webroot/config.php: -------------------------------------------------------------------------------- 1 | 'NoTimeasdfasdf', 3 | 'currency' => '€', 4 | 'country' => 'Spain', 5 | 'stateProvince' => 'Andalucia', 6 | 'address' => 'nowhere', 7 | 'city' => 'Córdoba', 8 | 'zipCode' => '1400', 9 | 'email' => 'noreply@notime.es', 10 | 'fax' => '555 555 555', 11 | 'phone' => '555 555 555', 12 | 'mobile' => '555 555 555', 13 | ); -------------------------------------------------------------------------------- /app/webroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/app/webroot/favicon.ico -------------------------------------------------------------------------------- /app/webroot/files/android/TimesApp.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/app/webroot/files/android/TimesApp.apk -------------------------------------------------------------------------------- /app/webroot/files/android/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/app/webroot/files/android/empty -------------------------------------------------------------------------------- /app/webroot/files/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/app/webroot/files/empty -------------------------------------------------------------------------------- /app/webroot/files/pdf/1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/app/webroot/files/pdf/1.pdf -------------------------------------------------------------------------------- /app/webroot/files/pdf/nigger.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/app/webroot/files/pdf/nigger.pdf -------------------------------------------------------------------------------- /app/webroot/files/pdf/nigger1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/app/webroot/files/pdf/nigger1.pdf -------------------------------------------------------------------------------- /app/webroot/fonts/foundation-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/app/webroot/fonts/foundation-icons.eot -------------------------------------------------------------------------------- /app/webroot/fonts/foundation-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/app/webroot/fonts/foundation-icons.ttf -------------------------------------------------------------------------------- /app/webroot/fonts/foundation-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/app/webroot/fonts/foundation-icons.woff -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-arrow-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-arrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-arrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-arrow-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-background-color.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-battery-empty.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-battery-full.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-battery-half.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-bold.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-bookmark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-braille.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-check.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 10 | 11 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-cloud.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-comment.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-contrast.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-credit-card.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-css3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-die-one.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-folder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-heart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-home.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-html5.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-italic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-minus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-mobile.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-monitor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-music.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-page.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-pencil.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-play-video.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-play.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-prohibited.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-record.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-rewind.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-shield.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-shopping-bag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-social-adobe.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-social-delicious.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-social-drive.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-social-dropbox.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-social-facebook.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-social-flickr.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-social-forrst.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-social-hacker-news.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-social-path.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-social-windows.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-stop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-unlock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-video.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /app/webroot/fonts/svgs/fi-volume-none.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/webroot/img/TimesApp_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/app/webroot/img/TimesApp_icon.png -------------------------------------------------------------------------------- /app/webroot/img/TimesApp_icon_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/app/webroot/img/TimesApp_icon_hover.png -------------------------------------------------------------------------------- /app/webroot/img/TimesApp_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/app/webroot/img/TimesApp_logo.png -------------------------------------------------------------------------------- /app/webroot/img/TimesApp_logo_80px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/app/webroot/img/TimesApp_logo_80px.png -------------------------------------------------------------------------------- /app/webroot/img/calendar-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/app/webroot/img/calendar-disabled.png -------------------------------------------------------------------------------- /app/webroot/img/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/app/webroot/img/calendar.png -------------------------------------------------------------------------------- /app/webroot/img/invoice-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/app/webroot/img/invoice-status.png -------------------------------------------------------------------------------- /app/webroot/img/loadingImage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/app/webroot/img/loadingImage.gif -------------------------------------------------------------------------------- /app/webroot/img/minions_404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/app/webroot/img/minions_404.jpg -------------------------------------------------------------------------------- /app/webroot/img/minions_500.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/app/webroot/img/minions_500.jpg -------------------------------------------------------------------------------- /lib/Cake/Config/config.php: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine on 3 | RewriteRule ^$ webroot/ [L] 4 | RewriteRule (.*) webroot/$1 [L] 5 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/Config/Schema/i18n.sql: -------------------------------------------------------------------------------- 1 | # $Id$ 2 | # 3 | # Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 4 | # 5 | # Licensed under The MIT License 6 | # For full copyright and license information, please see the LICENSE.txt 7 | # Redistributions of files must retain the above copyright notice. 8 | # MIT License (http://www.opensource.org/licenses/mit-license.php) 9 | 10 | CREATE TABLE i18n ( 11 | id int(10) NOT NULL auto_increment, 12 | locale varchar(6) NOT NULL, 13 | model varchar(255) NOT NULL, 14 | foreign_key int(10) NOT NULL, 15 | field varchar(255) NOT NULL, 16 | content mediumtext, 17 | PRIMARY KEY (id), 18 | # UNIQUE INDEX I18N_LOCALE_FIELD(locale, model, foreign_key, field), 19 | # INDEX I18N_LOCALE_ROW(locale, model, foreign_key), 20 | # INDEX I18N_LOCALE_MODEL(locale, model), 21 | # INDEX I18N_FIELD(model, foreign_key, field), 22 | # INDEX I18N_ROW(model, foreign_key), 23 | INDEX locale (locale), 24 | INDEX model (model), 25 | INDEX row_id (foreign_key), 26 | INDEX field (field) 27 | ); -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/Config/Schema/sessions.php: -------------------------------------------------------------------------------- 1 | array('type' => 'string', 'null' => false, 'key' => 'primary'), 31 | 'data' => array('type' => 'text', 'null' => true, 'default' => null), 32 | 'expires' => array('type' => 'integer', 'null' => true, 'default' => null), 33 | 'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => 1)) 34 | ); 35 | 36 | } 37 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/Config/Schema/sessions.sql: -------------------------------------------------------------------------------- 1 | # $Id$ 2 | # 3 | # Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 4 | # 1785 E. Sahara Avenue, Suite 490-204 5 | # Las Vegas, Nevada 89104 6 | # 7 | # Licensed under The MIT License 8 | # For full copyright and license information, please see the LICENSE.txt 9 | # Redistributions of files must retain the above copyright notice. 10 | # MIT License (http://www.opensource.org/licenses/mit-license.php) 11 | 12 | CREATE TABLE cake_sessions ( 13 | id varchar(255) NOT NULL default '', 14 | data text, 15 | expires int(11) default NULL, 16 | PRIMARY KEY (id) 17 | ); -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/Console/Command/AppShell.php: -------------------------------------------------------------------------------- 1 | 19 | ' . $line . "

\n"; 24 | endforeach; 25 | ?> -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Emails/text/default.ctp: -------------------------------------------------------------------------------- 1 | 19 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Errors/error400.ctp: -------------------------------------------------------------------------------- 1 | 10 |

11 |

12 | : 13 | '{$url}'" 16 | ); ?> 17 |

18 | 0): 20 | echo $this->element('exception_stack_trace'); 21 | endif; 22 | ?> 23 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Errors/error500.ctp: -------------------------------------------------------------------------------- 1 | 10 |

11 |

12 | : 13 | 14 |

15 | 0): 17 | echo $this->element('exception_stack_trace'); 18 | endif; 19 | ?> 20 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Helper/AppHelper.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | <?php echo $title_for_layout; ?> 14 | 15 | 16 | fetch('content'); ?> 17 | 18 |

This email was sent using the CakePHP Framework

19 | 20 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Layouts/Emails/text/default.ctp: -------------------------------------------------------------------------------- 1 | 19 | fetch('content'); ?> 20 | 21 | This email was sent using the CakePHP Framework, http://cakephp.org. 22 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Layouts/ajax.ctp: -------------------------------------------------------------------------------- 1 | 10 | fetch('content'); ?> 11 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Layouts/flash.ctp: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | Html->charset(); ?> 14 | <?php echo $page_title; ?> 15 | 16 | 17 | 18 | 19 | 24 | 25 | 26 |

27 | 28 | 29 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Layouts/js/default.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Layouts/rss/default.ctp: -------------------------------------------------------------------------------- 1 | Rss->document( 10 | $this->Rss->channel( 11 | array(), $channel, $this->fetch('content') 12 | ) 13 | ); 14 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Layouts/xml/default.ctp: -------------------------------------------------------------------------------- 1 | fetch('content'); ?> 2 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/View/Scaffolds/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Console/Templates/skel/View/Scaffolds/empty -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/index.php: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine On 3 | RewriteCond %{REQUEST_FILENAME} !-d 4 | RewriteCond %{REQUEST_FILENAME} !-f 5 | RewriteRule ^ index.php [L] 6 | 7 | -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/webroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Console/Templates/skel/webroot/favicon.ico -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/webroot/files/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Console/Templates/skel/webroot/files/empty -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/webroot/img/cake.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Console/Templates/skel/webroot/img/cake.icon.png -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/webroot/img/cake.power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Console/Templates/skel/webroot/img/cake.power.gif -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/webroot/img/test-error-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Console/Templates/skel/webroot/img/test-error-icon.png -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/webroot/img/test-fail-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Console/Templates/skel/webroot/img/test-fail-icon.png -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/webroot/img/test-pass-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Console/Templates/skel/webroot/img/test-pass-icon.png -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/webroot/img/test-skip-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Console/Templates/skel/webroot/img/test-skip-icon.png -------------------------------------------------------------------------------- /lib/Cake/Console/Templates/skel/webroot/js/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Console/Templates/skel/webroot/js/empty -------------------------------------------------------------------------------- /lib/Cake/Test/Fixture/sample.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | defect 5 | 6 | 7 | enhancement 8 | 9 | -------------------------------------------------------------------------------- /lib/Cake/Test/Fixture/soap_request.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | IBM 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /lib/Cake/Test/Fixture/soap_response.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 34.5 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /lib/Cake/Test/bake_compare/Controller/NoActions.ctp: -------------------------------------------------------------------------------- 1 | array( 5 | 'form' => 'start form', 6 | 'formend' => 'finish form', 7 | 'hiddenblock' => '' 8 | ) 9 | ); -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Config/nested.ini: -------------------------------------------------------------------------------- 1 | ; Test file for testing ini files with . syntax 2 | [database] 3 | db.username = mark 4 | db.password = secret 5 | 6 | [nesting] 7 | one.two.three = 3 8 | a.b.c.d = On 9 | 10 | [bools] 11 | test_on = on 12 | test_off = off 13 | test_yes = yes 14 | test_no = no 15 | test_true = true 16 | test_false = false 17 | test_null = null 18 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Config/no_ini_extension: -------------------------------------------------------------------------------- 1 | ; Test file for testing config file without .ini extension. 2 | some_key = some_value 3 | bool_key = 1 4 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Config/no_php_extension: -------------------------------------------------------------------------------- 1 | array( 5 | 'Third' => array( 6 | 'ThirdDeepest' => 'buried3' 7 | ) 8 | ) 9 | ); 10 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Config/no_section.ini: -------------------------------------------------------------------------------- 1 | some_key = some_value 2 | bool_key = 1 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Config/routes.php: -------------------------------------------------------------------------------- 1 | 'tests_apps', 'action' => 'some_method')); 23 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Config/var_test.php: -------------------------------------------------------------------------------- 1 | 'value', 4 | 'Deep' => array( 5 | 'Deeper' => array( 6 | 'Deepest' => 'buried' 7 | ) 8 | ), 9 | 'TestAcl' => array( 10 | 'classname' => 'Original' 11 | ) 12 | ); 13 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Config/var_test2.php: -------------------------------------------------------------------------------- 1 | 'value2', 4 | 'Deep' => array( 5 | 'Second' => array( 6 | 'SecondDeepest' => 'buried2' 7 | ) 8 | ), 9 | 'TestAcl' => array( 10 | 'classname' => 'Overwrite', 11 | 'custom' => 'one' 12 | ) 13 | ); 14 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Console/Command/Task/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Console/Command/Task/empty -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Console/Templates/test/classes/test_object.ctp: -------------------------------------------------------------------------------- 1 | I got rendered 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Console/Templates/test/views/admin_edit.ctp: -------------------------------------------------------------------------------- 1 | admin_edit template -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Controller/Component/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Controller/Component/empty -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Controller/TestAppsErrorController.php: -------------------------------------------------------------------------------- 1 | array( 9 | 'some' => 'config' 10 | ) 11 | ); 12 | 13 | } 14 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Error/TestAppsExceptionRenderer.php: -------------------------------------------------------------------------------- 1 | layout = 'banana'; 14 | } catch (Exception $e) { 15 | $controller = new Controller($request, $response); 16 | $controller->viewPath = 'Errors'; 17 | } 18 | return $controller; 19 | } 20 | 21 | } 22 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Lib/Library.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Lib 15 | * @since CakePHP(tm) v 1.3 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | 19 | /** 20 | * Class Library 21 | * 22 | * @package Cake.Test.TestApp.Lib 23 | */ 24 | class Library { 25 | } 26 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Lib/Utility/TestUtilityClass.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Lib.Utility 15 | * @since CakePHP(tm) v 1.3 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | 19 | /** 20 | * Class TestUtilityClass 21 | * 22 | * @package Cake.Test.TestApp.Lib.Utility 23 | */ 24 | class TestUtilityClass { 25 | } 26 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/cache_test_po/LC_MESSAGES/default.po: -------------------------------------------------------------------------------- 1 | msgid "default.foo" 2 | msgstr "Default Foo" 3 | 4 | msgid "default.bar" 5 | msgstr "Default Bar" 6 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/cache_test_po/LC_MESSAGES/dom1.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "Test Domain 1" 3 | 4 | msgid "dom1.foo" 5 | msgstr "Dom 1 Foo" 6 | 7 | msgid "dom1.bar" 8 | msgstr "Dom 1 Bar" 9 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/cache_test_po/LC_MESSAGES/dom2.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "Test Domain" 3 | 4 | msgid "dom2.foo" 5 | msgstr "Dom 2 Foo" 6 | 7 | msgid "dom2.bar" 8 | msgstr "Dom 2 Bar" 9 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/eng/LC_MESSAGES/validation_messages.po: -------------------------------------------------------------------------------- 1 | msgid "Validation failed: %s" 2 | msgstr "Translated validation failed: %s" 3 | 4 | msgid "arg1" 5 | msgstr "Translated arg1" -------------------------------------------------------------------------------- /lib/Cake/Test/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)" -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_0_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_0_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_0_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_0_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_10_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_10_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_10_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_10_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_11_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_11_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_11_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_11_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_12_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_12_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_12_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_12_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_13_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_13_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_13_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_13_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_14_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_14_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_14_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_14_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_1_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_1_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_1_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_1_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_2_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_2_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_2_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_2_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_3_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_3_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_3_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_3_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_4_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_4_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_4_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_4_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_5_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_5_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_5_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_5_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_6_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_6_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_6_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_6_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_7_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_7_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_7_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_7_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_7_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%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 7 (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 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 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_8_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_8_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_8_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_8_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_9_mo/LC_MESSAGES/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_9_mo/LC_MESSAGES/core.mo -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Locale/rule_9_mo/LC_MESSAGES/default.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Locale/rule_9_mo/LC_MESSAGES/default.mo -------------------------------------------------------------------------------- /lib/Cake/Test/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Model/Comment.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Plugin.TestPlugin.Config 15 | * @since CakePHP(tm) v 1.3 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | 19 | $config['plugin_load'] = '/test_app/plugins/test_plugin/config/load.php'; 20 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/Config/more.load.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Plugin.TestPlugin.Config 15 | * @since CakePHP(tm) v 1.3 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | 19 | $config['plugin_more_load'] = '/test_app/plugins/test_plugin/config/more.load.php'; 20 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/Config/nested.ini: -------------------------------------------------------------------------------- 1 | ; Test file for testing ini files with . syntax 2 | [database] 3 | db.username = bar 4 | db.password = foo 5 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/Config/routes.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Plugin.TestPlugin.Lib 15 | * @since CakePHP(tm) v 1.2.0.5432 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | 19 | /** 20 | * Class TestPluginLibrary 21 | * 22 | * @package Cake.Test.TestApp.Plugin.TestPlugin.Lib 23 | */ 24 | class TestPluginLibrary { 25 | } 26 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/Model/Datasource/Database/DboDummy.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Plugin.TestPlugin.Vendor 15 | * @since CakePHP(tm) v 1.2.0.7629 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | ?> 19 | This is the welcome.php file in test_plugin/vendors directory -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/View/Elements/plugin_element.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/View/Elements/sub_dir/sub_element.ctp: -------------------------------------------------------------------------------- 1 | Content from TestPlugin.Elements/sub_dir/sub_element 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/View/Elements/test_plugin_element.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/View/Elements/translate.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/View/Emails/text/test_plugin_tpl.ctp: -------------------------------------------------------------------------------- 1 | Into TestPlugin. 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/View/Helper/TestPluginAppHelper.php: -------------------------------------------------------------------------------- 1 | fetch('content'); ?> 3 | 4 | This email was sent using the TestPlugin. 5 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/View/Layouts/default.ctp: -------------------------------------------------------------------------------- 1 | test plugin default layout -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/View/Tests/index.ctp: -------------------------------------------------------------------------------- 1 | test plugin index -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/View/Tests/scaffold.form.ctp: -------------------------------------------------------------------------------- 1 | test_plugin add/edit scaffold view -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/css/test_plugin_asset.css: -------------------------------------------------------------------------------- 1 | /* this is the test plugin asset css file */ 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/css/theme_one.htc: -------------------------------------------------------------------------------- 1 | htc file -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/css/unknown.extension: -------------------------------------------------------------------------------- 1 | Testing a file with unknown extension to mime mapping. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/flash/plugin_test.swf: -------------------------------------------------------------------------------- 1 | this is just a test to load swf file from the plugin. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/img/cake.icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/img/cake.icon.gif -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/js/test_plugin/test.js: -------------------------------------------------------------------------------- 1 | alert("Test App"); -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/pdfs/plugin_test.pdf: -------------------------------------------------------------------------------- 1 | this is just a test to load pdf file from the plugin. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPlugin/webroot/root.js: -------------------------------------------------------------------------------- 1 | alert('I am a root level file!'); -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Plugin/TestPluginTwo/Config/bootstrap.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Vendor.Test 15 | * @since CakePHP(tm) v 1.2.0.4206 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | ?> 19 | This is the MyTest.php file -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Vendor/Test/hello.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Vendor.Test 15 | * @since CakePHP(tm) v 1.2.0.4206 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | ?> 19 | This is the hello.php file in Test directory -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Vendor/css/test_asset.css: -------------------------------------------------------------------------------- 1 | /* this is the test asset css file */ 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Vendor/img/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Vendor/img/test.jpg -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Vendor/img/test_2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/Vendor/img/test_2.JPG -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Vendor/sample/configure_test_vendor_sample.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Vendor.sample 15 | * @since CakePHP(tm) v 1.2.0.4206 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | 19 | /** 20 | * Class ConfigureTestVendorSample 21 | * 22 | * @package Cake.Test.TestApp.Vendor.sample 23 | */ 24 | class ConfigureTestVendorSample { 25 | } 26 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Vendor/somename/some.name.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Vendor.somename 15 | * @since CakePHP(tm) v 1.2.0.4206 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | ?> 19 | This is a file with dot in file name -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/Vendor/welcome.php: -------------------------------------------------------------------------------- 1 | 6 | * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 7 | * 8 | * Licensed under The MIT License 9 | * For full copyright and license information, please see the LICENSE.txt 10 | * Redistributions of files must retain the above copyright notice 11 | * 12 | * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) 13 | * @link http://book.cakephp.org/2.0/en/development/testing.html CakePHP(tm) Tests 14 | * @package Cake.Test.TestApp.Vendor 15 | * @since CakePHP(tm) v 1.2.0.7629 16 | * @license http://www.opensource.org/licenses/mit-license.php MIT License 17 | */ 18 | ?> 19 | This is the welcome.php file in vendors directory -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/extended_element.ctp: -------------------------------------------------------------------------------- 1 | extend('parent_element'); ?> 2 | Element content. 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/extended_missing_element.ctp: -------------------------------------------------------------------------------- 1 | extend('noneexistent_parent_element'); ?> 2 | Element content. 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/html_call.ctp: -------------------------------------------------------------------------------- 1 | Html->link('Test', 'http://example.com'); 3 | ?> -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/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 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/nocache/plain.ctp: -------------------------------------------------------------------------------- 1 |

Cache Me

2 |

B. In Plain Element

3 | log('2. in plain element') ?> 4 | 5 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/nocache/sub1.ctp: -------------------------------------------------------------------------------- 1 | element('nocache/sub2'); ?> 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/nocache/sub2.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/parent_element.ctp: -------------------------------------------------------------------------------- 1 | Parent Element. 2 | fetch('content'); ?> 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/session_helper.ctp: -------------------------------------------------------------------------------- 1 |
2 |

3 |

4 |

5 |
-------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/test_element.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/test_element.xml: -------------------------------------------------------------------------------- 1 |

test element

2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Elements/type_check.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/html/custom.ctp: -------------------------------------------------------------------------------- 1 |

Here is your value:

2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/html/default.ctp: -------------------------------------------------------------------------------- 1 | ' . $line . '

'; 6 | endforeach; 7 | ?> -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/html/image.ctp: -------------------------------------------------------------------------------- 1 | Html->image('image.gif', array( 4 | 'alt' => 'cool image', 5 | 'width' => 100, 6 | 'height' => 100, 7 | 'fullBase' => true, 8 | )); 9 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/html/japanese.ctp: -------------------------------------------------------------------------------- 1 |

ここにあなたの設定した値が入ります:

2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/html/nested_element.ctp: -------------------------------------------------------------------------------- 1 | Before the element. 2 | element('html_call'); ?> 3 | After the element. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/text/custom.ctp: -------------------------------------------------------------------------------- 1 | Here is your value: 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/text/custom_helper.ctp: -------------------------------------------------------------------------------- 1 | Right now: Time->toAtom($time); ?> 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/text/default.ctp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/text/japanese.ctp: -------------------------------------------------------------------------------- 1 | ここにあなたの設定した値が入ります: 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Emails/text/wide.ctp: -------------------------------------------------------------------------------- 1 | This element has some text that is just too wide to comply with email standards. 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Errors/error400.ctp: -------------------------------------------------------------------------------- 1 |

2 |

3 | : 4 | '{$url}'" 7 | ); ?> 8 |

9 | 0): 11 | echo $this->element('exception_stack_trace'); 12 | endif; 13 | ?> 14 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Errors/error500.ctp: -------------------------------------------------------------------------------- 1 |

2 |

3 | : 4 | 5 |

6 | 0): 8 | echo $this->element('exception_stack_trace'); 9 | endif; 10 | ?> 11 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Helper/BananaHelper.php: -------------------------------------------------------------------------------- 1 | peeled'; 9 | } 10 | 11 | } 12 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/Emails/html/default.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | <?php echo $title_for_layout; ?> 6 | 7 | 8 | 9 | fetch('content'); ?> 10 | 11 |

This email was sent using the CakePHP Framework

12 | 13 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/Emails/html/japanese.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | <?php echo $title_for_layout; ?> 6 | 7 | 8 | 9 | fetch('content'); ?> 10 | 11 |

このメールは CakePHP Framework を利用して送信しました。

12 | 13 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/Emails/html/thin.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | <?php echo $title_for_layout; ?> 6 | 7 | 8 | 9 | fetch('content'); ?> 10 | 11 |

This email was sent using the CakePHP Framework

12 | 13 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/Emails/text/default.ctp: -------------------------------------------------------------------------------- 1 | 2 | fetch('content'); ?> 3 | 4 | This email was sent using the CakePHP Framework, http://cakephp.org. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/Emails/text/japanese.ctp: -------------------------------------------------------------------------------- 1 | 2 | fetch('content'); ?> 3 | 4 | CakePHP Framework を使って送信したメールです。 http://cakephp.org. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/ajax.ctp: -------------------------------------------------------------------------------- 1 | fetch('content'); ?> -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/ajax2.ctp: -------------------------------------------------------------------------------- 1 | Ajax! 2 | fetch('content'); ?> -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/banana.ctp: -------------------------------------------------------------------------------- 1 | 2 | Banana->peel(); 4 | ?> 5 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/cache_empty_sections.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <?php echo $title_for_layout; ?> 5 | 6 | 7 | 8 | 9 | 10 | fetch('content'); ?> 11 | 12 | 13 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/cache_layout.ctp: -------------------------------------------------------------------------------- 1 |

This is regular text

2 | 3 | 4 | 5 | 6 | fetch('content'); ?> 7 | 8 | 9 | 10 | 11 | 12 | 13 |

Additional regular text.

-------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/flash.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <?php echo $page_title?> 5 | Html->charset(); ?> 6 | 7 | 8 | 9 | 10 | 15 | 16 | 17 |

18 | 19 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/js/default.ctp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/json/default.ctp: -------------------------------------------------------------------------------- 1 | fetch('content'); ?> -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/multi_cache.ctp: -------------------------------------------------------------------------------- 1 |

This is regular text

2 | 3 |

A. Layout Before Content

4 | log('1. layout before content') ?> 5 | 6 | element('nocache/plain'); ?> 7 | 8 |

C. Layout After Test Element But Before Content

9 | log('3. layout after test element but before content') ?> 10 | 11 | fetch('content'); ?> 12 | 13 |

E. Layout After Content

14 | log('5. layout after content') ?> 15 | 16 |

Additional regular text.

17 | element('nocache/contains_nocache'); ?> 18 | 19 |

G. Layout After Content And After Element With No Cache Tags

20 | log('7. layout after content and after element with no cache tags') ?> 21 | 22 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/rss/default.ctp: -------------------------------------------------------------------------------- 1 | Rss->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 $this->Rss->document( 12 | $this->Rss->channel( 13 | array(), $channel, $this->fetch('content') 14 | ) 15 | ); 16 | 17 | ?> -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Layouts/xml/default.ctp: -------------------------------------------------------------------------------- 1 | '; ?> 2 | fetch('content'); ?> 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Pages/page.home.ctp: -------------------------------------------------------------------------------- 1 | Empty page with a dot in the filename. 2 | Used to test plugin.view and missing plugins. 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/alt_ext.alt: -------------------------------------------------------------------------------- 1 | alt ext -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/cache_empty_sections.ctp: -------------------------------------------------------------------------------- 1 | View Content 2 | 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/cache_form.ctp: -------------------------------------------------------------------------------- 1 |
2 | 3 | Form->create('User'); ?> 4 |
5 | 6 | Form->input('username'); 8 | echo $this->Form->input('email'); 9 | echo $this->Form->input('password'); 10 | ?> 11 |
12 | Form->end('Submit'); ?> 13 | 14 |
-------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/extend_element.ctp: -------------------------------------------------------------------------------- 1 | extend('parent_view'); ?> 2 | View content. 3 | element('extended_element'); ?> 4 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/extend_loop.ctp: -------------------------------------------------------------------------------- 1 | extend('extend_loop_inner'); ?> 2 | Outer element. 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/extend_loop_inner.ctp: -------------------------------------------------------------------------------- 1 | extend('extend_loop'); ?> 2 | Inner loop element. 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/extend_missing_element.ctp: -------------------------------------------------------------------------------- 1 | element('extended_missing_element'); ?> 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/extend_self.ctp: -------------------------------------------------------------------------------- 1 | extend('extend_self'); ?> 2 | To infinifty and beyond. 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/extend_with_element.ctp: -------------------------------------------------------------------------------- 1 | element('test_element'); ?> 2 | extend('parent_view'); ?> 3 | The view 4 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/helper_overwrite.ctp: -------------------------------------------------------------------------------- 1 | Html->link('Test link', '#'); 4 | ?> -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/index.ctp: -------------------------------------------------------------------------------- 1 | posts index -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/json/index.ctp: -------------------------------------------------------------------------------- 1 | Paginator->options['url']) ? $this->Paginator->options['url'] : null; 4 | 5 | $formatted = array( 6 | 'user' => $user['User']['username'], 7 | 'list' => array(), 8 | 'paging' => $paging, 9 | ); 10 | foreach ($user['Item'] as $item) { 11 | $formatted['list'][] = $item['name']; 12 | } 13 | 14 | echo json_encode($formatted); 15 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/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-- -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/nested_extends.ctp: -------------------------------------------------------------------------------- 1 | extend('parent_1'); 3 | $this->assign('sidebar', 'Sidebar Content.'); 4 | ?> 5 | This is the first template. 6 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/nocache_multiple_element.ctp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | element('nocache/sub1'); ?> -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/open_block.ctp: -------------------------------------------------------------------------------- 1 | start('no_close'); 3 | echo 'This block has no close :('; 4 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/parent_1.ctp: -------------------------------------------------------------------------------- 1 | extend('parent_2'); 3 | ?> 4 | This is the first parent. 5 | fetch('content'); ?> 6 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/parent_2.ctp: -------------------------------------------------------------------------------- 1 | This is the second parent. 2 | fetch('content'); ?> 3 | fetch('sidebar'); ?> 4 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/parent_view.ctp: -------------------------------------------------------------------------------- 1 | Parent View. 2 | fetch('content') ?> 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/scaffold.form.ctp: -------------------------------------------------------------------------------- 1 | test_app posts add/edit scaffold view -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/sequencial_nocache.ctp: -------------------------------------------------------------------------------- 1 |

Content

2 | 3 |

D. In View File

4 | log('4. in view file') ?> 5 | 6 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Posts/xml/index.ctp: -------------------------------------------------------------------------------- 1 | array('user' => array())); 3 | foreach ($users as $user) { 4 | $data['users']['user'][] = array('@' => $user['User']['username']); 5 | } 6 | echo Xml::fromArray($data)->saveXml(); 7 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Scaffolds/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/View/Scaffolds/empty -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/TestsApps/index.ctp: -------------------------------------------------------------------------------- 1 | This is the TestsAppsController index view 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/TestsApps/json/index.ctp: -------------------------------------------------------------------------------- 1 | {"cakephp":"cool"} -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Elements/test_element.ctp: -------------------------------------------------------------------------------- 1 | Hi, I'm the test element. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Emails/text/themed.ctp: -------------------------------------------------------------------------------- 1 | In TestTheme 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Layouts/default.ctp: -------------------------------------------------------------------------------- 1 | default test_theme layout 2 | fetch('content') ?> 3 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Plugin/TestPlugin/Emails/text/test_plugin_tpl.ctp: -------------------------------------------------------------------------------- 1 | Into TestPlugin. (themed) 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Plugin/TestPlugin/Layouts/plugin_default.ctp: -------------------------------------------------------------------------------- 1 | test_plugin test_plugin_theme default layout -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Plugin/TestPlugin/Tests/index.ctp: -------------------------------------------------------------------------------- 1 | test plugin index theme view -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Posts/index.ctp: -------------------------------------------------------------------------------- 1 | posts index themed view -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Posts/scaffold.index.ctp: -------------------------------------------------------------------------------- 1 | I'm a themed scaffold file. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/Posts/themed.ctp: -------------------------------------------------------------------------------- 1 | posts themed themed file. 2 | 3 | element('test_element'); ?> 4 | 5 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/css/test_asset.css: -------------------------------------------------------------------------------- 1 | /* this is the test asset css file */ 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/css/theme_webroot.css: -------------------------------------------------------------------------------- 1 | /* theme webroot css file */ 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/flash/theme_test.swf: -------------------------------------------------------------------------------- 1 | this is just a test to load swf file from the theme. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/img/cake.power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/img/cake.power.gif -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/img/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/img/test.jpg -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/js/one/theme_one.js: -------------------------------------------------------------------------------- 1 | // nested theme js file -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/js/theme.js: -------------------------------------------------------------------------------- 1 | // root theme js file -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/pdfs/theme_test.pdf: -------------------------------------------------------------------------------- 1 | this is just a test to load pdf file from the theme. -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/View/Themed/TestTheme/webroot/space image.text: -------------------------------------------------------------------------------- 1 | This is not an image. 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/tmp/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/tmp/empty -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/webroot/img/cake.power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/webroot/img/cake.power.gif -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/webroot/theme/test_theme/css/theme_webroot.css: -------------------------------------------------------------------------------- 1 | /* override the theme webroot css file */ 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/webroot/theme/test_theme/css/webroot_test.css: -------------------------------------------------------------------------------- 1 | /* this is the webroot test asset css file */ 2 | -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/webroot/theme/test_theme/img/cake.power.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/webroot/theme/test_theme/img/cake.power.gif -------------------------------------------------------------------------------- /lib/Cake/Test/test_app/webroot/theme/test_theme/img/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/lib/Cake/Test/test_app/webroot/theme/test_theme/img/test.jpg -------------------------------------------------------------------------------- /plugins/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/plugins/empty -------------------------------------------------------------------------------- /vendors/empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkbox/TimesApp/8a34ac1c5c4fff3019ca4266c3021c5f160cd77f/vendors/empty --------------------------------------------------------------------------------