Skip to content

Spelling fix #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ it is generally avalible in every file
an include file contains one function
function main(app) // app is like dependeny injection
{
this // usualy: this=app, but might be an other object yo like to extend in this function
this // usually: this=app, but might be an other object yo like to extend in this function
this.foo=function(){};
}

Expand Down Expand Up @@ -46,7 +46,7 @@ and you can create "page" type controllers in +templates/website+
to build the website

a page is a `templates_object` as defined in double templets (nodejs meta templates)
a page also contains a path or pathbegins propery it is for the router.
a page also contains a path or pathbegins property it is for the router.

a module has setupfirst(app),setupfirst(app)

Expand Down Expand Up @@ -75,7 +75,7 @@ http://www.hkvstore.com/phpmaker/


The first idea about application structure was:
the application is a single aplication but i can be defined in several moduls.
the application is a single application but i can be defined in several moduls.

now i find it hard to implement everything i shared objects.

Expand All @@ -94,7 +94,7 @@ application definition can be spread between many moduls for convinience

a module extends the application object or the application's shared objects boted in the tree chart above.

it is posible to define a model in a module, then call kind of a macro function
it is possible to define a model in a module, then call kind of a macro function
that adds all (edit,add,delete,list) functions and templates and urls to the application
as defined by that model.
also you can define all those by your self so you can make custom pages.
Expand Down