[web2py] Re: web2py 2.9.6 is out!

2014-09-11 Thread Copper Lark
support for SAML2 (with pysaml2) in docs not found ( -- 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 message because you are

[web2py] new widgets from s-cubism.com

2014-09-08 Thread Copper Lark
a beautifull widgets http://dev.s-cubism.com/web2py_plugins will be included in official pack? Form Widgets - Horizontal Radio Widget http://dev.s-cubism.com/plugin_hradio_widget http://dev.s-cubism.com/plugin_hradio_widget A radio widget arranging its buttons horizontally -

[web2py] routes.py + route_in for Parameter-based system

2014-08-18 Thread Copper Lark
How made Streaming virtual files in Parameter-based system in routes.py route_in=( ('.*.(php|PHP|asp|ASP|jsp|JSP)','jammer/default/jam'), ) I try: routers = dict( # base router BASE=dict( default_application='ipay', domains = { 'www.ipo-polza.ru' :

[web2py] Re: error(10053, 'An established connection was aborted by the software in your host machine')

2014-07-15 Thread Copper Lark
How I may resolve this error mySQL? понедельник, 14 июля 2014 г., 16:44:41 UTC+4 пользователь Niphlod написал: so, you figured out that you can't connect to mysql. did you try to see if it's reachable ? On Monday, July 14, 2014 2:43:12 PM UTC+2, Copper Lark wrote: -- Resources: - http

[web2py] Re: error(10053, 'An established connection was aborted by the software in your host machine')

2014-07-15 Thread Copper Lark
I found: Socket-Close(); but in web2py how to close mySQL connections? вторник, 15 июля 2014 г., 23:04:20 UTC+4 пользователь Copper Lark написал: How I may resolve this error mySQL? -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py

[web2py] error(10053, 'An established connection was aborted by the software in your host machine')

2014-07-14 Thread Copper Lark
Versionweb2py™Version 2.9.5-trunk+timestamp.2014.03.29.21.54.41Traceback 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. Traceback (most recent call last): File C:\web2py-m\gluon\main.py, line 539, in wsgibase BaseAdapter.close_all_instances('rollback') File C:\web2py-m\gluon\dal.py,

[web2py] Re: error(10053, 'An established connection was aborted by the software in your host machine')

2014-07-14 Thread Copper Lark
i use apache type 'exceptions.RuntimeError' Failure to connect, tried 5 times: Traceback (most recent call last): File C:\web2py-m\gluon\dal.py, line 7848, in __init__ self._adapter = ADAPTERS[self._dbname](**kwargs) File C:\web2py-m\gluon\dal.py, line 688, in __call__ obj = super(AdapterMeta,

[web2py] Re: error(10053, 'An established connection was aborted by the software in your host machine')

2014-07-14 Thread Copper Lark
[Mon Jul 14 15:33:33 2014] [warn] pid file C:/Program Files (x86)/Apache Software Foundation/Apache2.2/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run? [Mon Jul 14 15:33:37 2014] [notice] Apache/2.2.25 (Win32) mod_wsgi/3.5-BRANCH Python/2.7.6 mod_ssl/2.2.25 OpenSSL/0.9.8y

[web2py] unpickling stack underflow

2013-12-29 Thread Copper Lark
Traceback (most recent call last): File C:\web2py-m\gluon\restricted.py, line 217, in restricted exec ccode in environment File C:/web2py-m/applications/ipay\compiled\models.db.py, line 69, in module File C:\web2py-m\gluon\dal.py, line 7935, in define_table table =

[web2py] DAL cooperate errors

2013-12-11 Thread Copper Lark
cooperate not work in many cases grid = SQLFORM.grid(db7p.deals, left=db7p.deals.on(db.cl_deals.deal_id==db7p.deals.id)) # not work! or in table define: db.define_table('cl_deals', Field('deal_id', db.db7p_deals), # not work! ... -- Resources: - http://web2py.com -

[web2py] Re: DAL cooperate errors

2013-12-11 Thread Copper Lark
Here is error in web2py soft - not used other DAL objects среда, 11 декабря 2013 г., 23:54:43 UTC+4 пользователь Copper Lark написал: cooperate not work in many cases grid = SQLFORM.grid(db7p.deals, left=db7p.deals.on(db.cl_deals.deal_id==db7p.deals.id)) # not work! or in table define

[web2py] Re: how show images from side sites?

2013-11-05 Thread Copper Lark
воскресенье, 3 ноября 2013 г., 18:30:12 UTC+4 пользователь Anthony написал: {{ = XML('img src=%s' % 'https://some_url/image01.jpg') ) }} The above code is fine, except there is an extra ) at the end. Another option is to use the IMG helper: {{=IMG(_src='https://some_url/image01.jpg')}}

[web2py] how show images from side sites?

2013-11-03 Thread Copper Lark
I save a image source url in my db and how I may show this image on my page? {{ = XML('img src=%s' % 'https://some_url/image01.jpg') ) }} this not work ( if I try ths url in browser - it showed for example https://money.yandex.ru/i/shop/mosenergosbut.gif -- Resources: - http://web2py.com -

[web2py] unique=True for complex fields?

2013-09-14 Thread Copper Lark
db.define_table('tab', Field('exchg_id', 'reference exchgs', required=True), Field('xcurr_id', 'reference xcurrs', required=True), Field('key1', compute=lambda r: %s:%s % (r['exchg_id'], r['xcurr_id']), length=55, unique=True, required=True), ) not work (( --