[web2py] Re: Future of web2py

2019-04-30 Thread Gabor Nyul
We are talking for about 2 years now about a possible web3py and other possible addons to it. What do you think, when we can get the first insight of it? If at all... -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - http

[web2py] Re: Future of web2py

2018-01-23 Thread Gabor Nyul
Are there any news about the new version (web3py or what ever the name will be)? -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this messag

[web2py] Re: Future of web2py

2017-11-08 Thread Gabor Nyul
> > It is based on bottle + gevent + gunicorn + rethinkdb + pydal + vue.js + > some code ported from web2py (templates, helpers, validators, > internationalization, scheduler) > If it will use gunicorn, it means you will drop Windows support (as gunicorn only runs on *nix machines)? It would b

[web2py] Python3 compatibility issue

2017-09-13 Thread Gabor Nyul
Hi, I suggest to replace all print command to python 3 compatible syntax: print ("blah blah") I've seen this for the moment in anyserver.py -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2

Re: [web2py] Re: Performance using MSSQL stored procedures

2016-12-02 Thread Gabor Nyul
yours, those built-in grids aren't the > end-all, be-all and you really are better off with one of the client-side > JS grids that have been mentioned. Fortunately, web2py's still great for > getting the raw data, doing some server-side manipulation and transforming > it into

Re: [web2py] Re: Performance using MSSQL stored procedures

2016-12-01 Thread Gabor Nyul
This is exactly what I'm looking for. I do not want to Excel in that reporting circle. But to achieve this I need tools to help me. And those tools shouldn't give me and the team too much work compared to that Excel based reporting. That why I'm asking questions. 2016. december 1., csütörtök 20:

Re: [web2py] Re: Performance using MSSQL stored procedures

2016-12-01 Thread Gabor Nyul
es in that too that'd > let your users fill out simple forms. Just because it's a reports generator > doesn't mean that your users have to be computer savvy enough to be able to > build the reports from scratch - that's were you come in and setup the > types of report

Re: [web2py] Re: Performance using MSSQL stored procedures

2016-11-30 Thread Gabor Nyul
Well, my users have as good as no computer literary, so the reports (lists) must be predefined for them. Theyhave just to enter some parameters (like date from, date to) Nd run the reports. That's why I'm looking for an easy way to present those lists to them. And of course, all the normal security

[web2py] Performance using MSSQL stored procedures

2016-11-30 Thread Gabor Nyul
Hi, I'm a complete beginner on Web2py. I have to write a complex reporting app (no CRUD, just read only reports (tables, graphs and Excel download possibilities), around 50 reports. The database is already given, so I do not want to create any table, instead of that I have to run big and complex

[web2py] UnicodeDecodeError: 'utf8' codec can't decode byte 0xed in position 14: invalid continuation byte

2016-10-21 Thread Gabor Nyul
I have an MSSQL database with data stored in Hungarian charset. I've tried to use the DataTables example from here: http://www.web2pyslices.com/slice/show/2052/using-datatablesnet-with-web2py-for-ultra-fast-grid-display but I'v got this error. UnicodeDecodeError: 'utf8' codec can't decode byte 0

[web2py] db_codec for Hungarian MSSQL

2016-10-21 Thread Gabor Nyul
When I'm querying our MSSQL database (with Hungarian data in it) I have strange characters instead of the Hungarian accented characters. I've tried to use the db_codec parameter in DAL() but there is no change. I've tried cp1250, latin2 without success. Any idea? -- Resources: - http://web2py.c

[web2py] unicode error

2016-10-21 Thread Gabor Nyul
I wanted to implement the datatable.net sample ( http://www.web2pyslices.com/slice/show/2052/using-datatablesnet-with-web2py-for-ultra-fast-grid-display) in my app. The controller is dead simple: def index(): import json res = json.dumps(db.executesql('select * from bd_aramnemek', as_dict