Skip to content

Instantly share code, notes, and snippets.

@JEEN
Created August 14, 2010 00:23
Show Gist options
  • Save JEEN/523769 to your computer and use it in GitHub Desktop.
Save JEEN/523769 to your computer and use it in GitHub Desktop.
.
|-- Changes
|-- Makefile.PL
|-- README
|-- conf
| |-- log4perl.conf
| `-- messages.yaml
|-- data
| `-- backup
| `-- ....
|-- etc
| |-- init.sql
| `-- schema.sql
|-- lib
| `-- MyApp
| |-- API
| | |-- Category.pm
| | |-- Item.pm
| | |-- ....pm
| | |-- Spec.pm
| | `-- Auc.pm
| |-- API.pm
| |-- CLI
| | `-- Command
| | |-- crawling.pm
| | |-- init_category.pm
| | |-- init_maker.pm
| | |-- init_mt_category.pm
| | |-- init_mt_mapping.pm
| | |-- init_spec.pm
| | `-- mapping_auction.pm
| |-- CLI.pm
| |-- Mail.pm
| |-- Schema
| | `-- Result
| | |-- Category.pm
| | |-- ........
| | |-- Maker.pm
| | `-- Spec.pm
| |-- Schema.pm
| |-- Trait
| | `-- WithDBIC.pm
| |-- Web
| | |-- Controller
| | | |-- Admin
| | | | `-- Goods.pm
| | | |-- Gate.pm
| | | `-- Root.pm
| | |-- Model
| | | |-- API.pm
| | | |-- DB.pm
| | | `-- Validator.pm
| | `-- View
| | |-- JSON.pm
| | |-- Plain.pm
| | `-- TT.pm
| `-- Web.pm
|-- myapp_web.yaml
|-- myapp_web.yaml.dist
|-- root
| |-- favicon.ico
| |-- lib
| | |-- admin
| | | `-- goods
| | | |-- import
| | | |-- export
| | | |-- index
| | | `-- list
| | |-- config
| | | |-- col
| | | |-- main
| | | `-- url
| | |-- gate
| | | `-- noop
| | |-- ----.tt
| | |-- ----.tt
| | |-- site
| | | |-- footer
| | | |-- header
| | | |-- html
| | | |-- layout
| | | `-- wrapper
| | `-- ----.tt
| |-- src
| | |-- error.tt2
| | |-- message.tt2
| | `-- welcome.tt2
| `-- static
| |-- css
| | |-- jquery-ui-1.8.2.custom.css
| | |-- common.css
| | `-- niceforms.css
| |-- images
| | |-- 0.png ....
| | `-- ui-icons_cd0a0a_256x240.png
| `-- js
| |-- flower_bubble.js
| |-- jquery-1.4.2.min.js
| |-- jquery-ui.min.js
| `-- niceforms.js
|-- script
| |-- db_init.pl
| |-- myapp.pl
| |-- myapp_web.psgi
| |-- myapp_web_cgi.pl
| |-- myapp_web_create.pl
| |-- myapp_web_fastcgi.pl
| |-- myapp_web_server.pl
| `-- myapp_web_test.pl
`-- t
|-- 01app.t
|-- 02pod.t
|-- 03podcoverage.t
|-- controller_Admin-Goods.t
|-- controller_Gate.t
|-- model_API.t
|-- model_DB.t
|-- parse_xxxx.t
|-- post_foreign_Blog.t
|-- send_mail.t
|-- view_JSON.t
|-- view_Plain.t
`-- auc.t
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment