Public paste
illi-structure
By: fruffl | Date: Jan 15 2010 14:11 | Format: None | Expires: never | Size: 2.69 KB | Hits: 906

  1. ILLI
  2.                 -> BootLoader                                                   init boot
  3.                         -> BootConstructuer                                     construct boot
  4.                                 -> errors                                               error object for internal and public error-handling
  5.                                         -> public                                               formvalidation-/uri-errors; user stuff
  6.                                         -> internal                                             foobar... log stuff
  7.                                 -> registry                                             save global values
  8.                                 -> settings                                             save the settings
  9.                                         -> core                                                 fw core settings
  10.                                         -> application                                          fw application settings
  11.                                                 -> routing                                              mvc routing table
  12.                                                 -> outputcaseregistrar                                  manage the frontend case by module-name
  13.                                                                                                         i. e. render '/site' as image
  14.                                                 -> config                                               custom configuration
  15.                                 -> kernel                                               kernel is the base for validation and parsing
  16.                                         -> headers                                              header-management
  17.                                         -> params                                               params object
  18.                                                 -> uri                                                  parse and manage uri/request
  19.                                                 -> get                                                  parse and manage get-data
  20.                                                 -> post                                                 parse and manage post-data
  21.                                                 -> file                                                 parse and manage file/uploads
  22.                                                 -> session                                              parse and manage sessions
  23.                                                 -> cookie                                               parse and manage cookies
  24.                                         -> api                                                  api-object contains global objects/libraries
  25.                                                                                                 with tools and helpers for controllers/actions
  26.                                                 -> scopes                                               event-classified tools
  27.                                                         -> url-generator
  28.                                                         -> math
  29.                                                         -> database
  30.                                                         ->
  31.                                         -> uri-forwarder                                        repair broken uri (secure)
  32.                                         -> dispatcher                                           extract mvc from uri
  33.                                 -> frontend                                             library for output-elements; connect sub by modulecase (module = case)
  34.                                         -> theme-manager                                        theme-manager with global properties, fonts and colors
  35.                                                 -> css output api                                       css generator
  36.                                                         -> template                                     template-manager
  37.                                                                 -> loader                                       loader
  38.                                                                 -> dynamic css generator                                theme css
  39.                                                         -> css validator                                css validation
  40.                                                 -> xhtml output api                                     website-generator
  41.                                                         -> template                                     template-manager
  42.                                                                 -> loader                                       loader
  43.                                                                 -> partials                                     patial-library
  44.                                                         -> forms-manager                                forms
  45.                                                                 -> generator                                    generator
  46.                                                                 -> validation                                   validator
  47.                                                         -> xhtml-validator                              xhtml-validation
  48.                                                         -> meta-auto-keyword-generator
  49.                                                         -> optimizer
  50.                                                                 -> comment-handler
  51.                                                                 -> whitespace-handler
  52.                                                 -> image api                                            images
  53.                                                         -> image                                                thumbnails etc
  54.                                                         -> dynamic image                                        math-stuff etc
  55.                                                         -> captcha                                              captcha-images
  56.                                                         -> icon                                                 matrix 2-bit icon creator
  57.                                                 -> xml api
  58.                                                         -> writer
  59.                                                         -> reader
  60.                                                         -> parser
  61.                        
  62.                         -> moduleconstructuer                                           save the modules and set the required fronend-cases
  63.                                 -> module                                                       module
  64.                                         -> controller  
  65.                                                 -> layout
  66.                                                 -> action
  67.                                                         -> view
  68.                         -> output
  69.                                 -> internal errors handler
  70.                                 -> public errors handler
  71.                                 ->