-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Setup a new BOP application and create a simple entry point.
Write a new application which tracks a user's status within a forum.
Models contain the ORM (object relational mapping) and application business logic.
-
Biz.Model: business logic and persistence
-
Biz.FormModel: user input validation and application business logic
-
Biz.ListModel: tabular data-set with paging and sorting
-
Biz.PropertyModel: CRUD (create/read/update/delete) to a database table
-
-
Biz.Action: transient business logic
-
UI.Facade: provides URI route to the Task and application text to the Views
-
Agent.Dispatcher: Adapters to server APIs (apache)
-
Agent.Cookie: User authentication state
-
Agent.Task: The unit of work in an Agent
-
Agent.Request: key-value store for context of a single (usually HTTP) request
-
ShellUtil: command line View and Controller
-
Test.Language: HTTP and email acceptance testing
-
Test.Unit: Declarative execution of object methods
- Agenda
- Getting Started
- My-Status Example Application
- Model
- View
- Task
- Application Support
- Testing
- Miscellaneous