[web2py] manage web2py app

2017-12-08 Thread 黄祥
just curious how do people manage their web2py app (versioning, testing, deployment), trying to combine the tools to web2py project like dropbox, github, jenkins, etc. e.g. # dropbox git run in terminal cd ~/dropbox/git/web2py/web2pyapp git clone https://github.com/username/web2pyapp cd web2pyapp

[web2py] Re: fonts.googleapis

2017-12-08 Thread Alex Beskopilny
On Friday, December 8, 2017 at 1:06:35 PM UTC+3, T.R.Rajkumar wrote: > > I have an application. The views extend layout.html. When there is no > internet connection my pages wait for fonts.googleapis.com > I dont want that to happen. How to remove the dependecy on > fonts.gooleapis.com > hI! 1

[web2py] Remote database synchronization

2017-12-08 Thread Scott Hunter
The technique put forth in Chapter 6 of the book says every record must "reference the UUID instead of the id", and the example redefines a field of db.dog from `Field('owner', db.person),` to Field('owner', length=64),``, adding `db.dog.owner.requires = IS_IN_DB(db,'person.uuid','%(name)s')`.

Re: [web2py] Re: Web2Py + VueJS SPA (Webpack)

2017-12-08 Thread Dave S
On Friday, December 8, 2017 at 11:24:25 AM UTC-8, Ramos wrote: > > I like very much the framework http://deployd.com/ > > It produces and updates automatically according to our data model a js > file that is loaded to the user frontend and permits to deal with the > datamodel directly from the

Re: [web2py] Re: Web2Py + VueJS SPA (Webpack)

2017-12-08 Thread António Ramos
I like very much the framework http://deployd.com/ It produces and updates automatically according to our data model a js file that is loaded to the user frontend and permits to deal with the datamodel directly from the browser... This way there is no need to REST http://docs.deployd.com/docs/coll

[web2py] Re: fonts.googleapis

2017-12-08 Thread 黄祥
i think you can download it (*.ttf, *.woff, *.woff2, etc) and change the url (font.googleapis.com) into your downloaded path in your css best regards, stifan -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code

[web2py] Re: fonts.googleapis

2017-12-08 Thread T.R.Rajkumar
Its an intranet application. On Friday, December 8, 2017 at 3:36:35 PM UTC+5:30, T.R.Rajkumar wrote: > > I have an application. The views extend layout.html. When there is no > internet connection my pages wait for fonts.googleapis.com > I dont want that to happen. How to remove the dependecy on

[web2py] fonts.googleapis

2017-12-08 Thread T.R.Rajkumar
I have an application. The views extend layout.html. When there is no internet connection my pages wait for fonts.googleapis.com I dont want that to happen. How to remove the dependecy on fonts.gooleapis.com -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://git