[web2py] demo down

2013-02-10 Thread Sebastian E. Ovide
the interactive demo from the official web sire ( http://web2py.com/demo_admin) is down: admin disabled because unable to access password file -- Sebastian E. Ovide -- --- You received this message because you are subscribed to the Google Groups web2py-users group. To unsubscribe from

[web2py] Re: demo down

2013-02-10 Thread Sebastian E. Ovide
also: http://www.web2py.com/welcome On 10 February 2013 12:04, Sebastian E. Ovide sebastian.ov...@gmail.comwrote: the interactive demo from the official web sire ( http://web2py.com/demo_admin) is down: admin disabled because unable to access password file -- Sebastian E. Ovide

Re: [web2py] Moving Data From Sqlite To MySql

2012-06-06 Thread Sebastian E. Ovide
database from sqlite to mysql ? regards, -- Sebastian E. Ovide

Re: [web2py] Error connecting with mysql database

2012-06-06 Thread Sebastian E. Ovide
would try to replace *Like* with something else ? it is a MySql (SQL) keyword... On Wed, Jun 6, 2012 at 1:08 PM, Hassan Alnatour halna...@gardeniatelco.comwrote: Field('Like','integer',default=1), -- Sebastian E. Ovide

Re: [web2py] How to limit upload speed in web2py?

2012-06-06 Thread Sebastian E. Ovide
via your webserver config... On Wed, Jun 6, 2012 at 8:14 AM, Charles Tang atao...@gmail.com wrote: I am using SQLForm to submit a large file and want to limit the upload speed. How to do it ? Thanks. -- Sebastian E. Ovide

[web2py] file upload field dissapears if form is not valid

2012-05-20 Thread Sebastian E. Ovide
except for the files upload. Therefore the user is *forced* to upload the files again... Is it working as designed ? thanks -- Sebastian E. Ovide

Re: [web2py] Re: file upload field dissapears if form is not valid

2012-05-20 Thread Sebastian E. Ovide
red message (as it should), keeping all the values of the form as entered by the user except for the files upload. Therefore the user is *forced* to upload the files again... Is it working as designed ? thanks -- Sebastian E. Ovide

[web2py] how to see line number or errors in my own module

2012-05-19 Thread Sebastian E. Ovide
-- Sebastian E. Ovide

[web2py] is globalenv official ?

2012-05-19 Thread Sebastian E. Ovide
Hi all, I've seen *globalenv* in current which is I find very useful.. as It is not documented in the official book (at least the search cannot find it), just wondering if it is part of the official web2py and therefore it will be there for ever.. thanks -- Sebastian E. Ovide

Re: [web2py] How to get the selected menu / active menu ?

2012-05-19 Thread Sebastian E. Ovide
this in my view to display the active menu : {{=[x[0] for x in response.menu if x[1]==True][0]}} It's working well, but is there no better and more efficient way ? Thanks, -- Sebastian E. Ovide

Re: [web2py] Re: error deleting a row if the file uploaded is missing?

2012-05-19 Thread Sebastian E. Ovide
Is it working as intended ? thanks -- Sebastian E. Ovide -- Sebastian E. Ovide

Re: [web2py] Re: how to see line number or errors in my own module

2012-05-19 Thread Sebastian E. Ovide
**import.py, line 132, in __call__ raise e # Don't hide something that went wrong AttributeError: 'dict' object has no attribute 'auth' 289. from messaging import Msg -- Sebastian E. Ovide -- Sebastian E. Ovide

Re: [web2py] Re: What to expect in web2py 2.0

2012-05-19 Thread Sebastian E. Ovide
2012 14:34:07 UTC-5, Pystar wrote: I am really curious at what features to expect in web2py version 2.0 and when it would be released? Anyone? Massimo? -- Sebastian E. Ovide

Re: [web2py] Re: URL vars doesn't like Storage

2012-05-17 Thread Sebastian E. Ovide
the Storage into dict ? thanks -- Sebastian E. Ovide -- Sebastian E. Ovide

Re: [web2py] Re: URL vars doesn't like Storage

2012-05-17 Thread Sebastian E. Ovide
ast _vars = ast.literal_eval(request.vars.vars[0]) if request.vars.vars else {} Anthony -- Sebastian E. Ovide

Re: [web2py] Re: URL vars doesn't like Storage

2012-05-17 Thread Sebastian E. Ovide
())) if form.process().accepted: subject = 'FEEDBACK: %s' % urllib.unquote(request.get_**vars.url) response.flash = 'Thanks for your feedback' Anthony -- Sebastian E. Ovide

[web2py] URL vars doesn't like Storage

2012-05-16 Thread Sebastian E. Ovide
') AttributeError: 'str' object has no attribute 'has_key' Any better way than converting the Storage into dict ? thanks -- Sebastian E. Ovide

[web2py] error deleting a row if the file uploaded is missing?

2012-05-13 Thread Sebastian E. Ovide
Is it working as intended ? thanks -- Sebastian E. Ovide

Re: [web2py] Common controller functionality

2012-05-13 Thread Sebastian E. Ovide
of handling common controller functionality. I'm curious as to why web2py didn't follow this approach? Is there a recommended way of handling code that is common to a group of controllers (besides sticking it at the top of a controller file)? -- Sebastian E. Ovide

Re: [web2py] Re: Common controller functionality

2012-05-13 Thread Sebastian E. Ovide
this approach? Is there a recommended way of handling code that is common to a group of controllers (besides sticking it at the top of a controller file)? -- Sebastian E. Ovide

Re: [web2py] Re: Common controller functionality

2012-05-13 Thread Sebastian E. Ovide
follow this approach? Is there a recommended way of handling code that is common to a group of controllers (besides sticking it at the top of a controller file)? -- Sebastian E. Ovide -- Sebastian E. Ovide

[web2py] wysiwyg editor saving ALL in a blob (including pictures)

2012-05-13 Thread Sebastian E. Ovide
do you think ? thanks -- Sebastian E. Ovide

Re: [web2py] Re: storing more than 1 millions uploaded files

2012-05-12 Thread Sebastian E. Ovide
levels of sub-folders for uploaded files. Maybe subclass Field for that upload field and roll your own .store() and .retrieve() methods. Anthony -- Sebastian E. Ovide

Re: [web2py] To uuid or not?

2012-05-12 Thread Sebastian E. Ovide
. Is there still a place for uuid-based references? When? Regards Johann -- Because experiencing your loyal love is better than life itself, my lips will praise you. (Psalm 63:3) -- Sebastian E. Ovide

[web2py] deleting row with files

2012-05-12 Thread Sebastian E. Ovide
to automatize the file deletion ? thanks -- Sebastian E. Ovide

Re: [web2py] deleting row with files

2012-05-12 Thread Sebastian E. Ovide
nice... it works (I suspect that the subfolder that was self generated is not deleted as it will be created anyway at some point...) On Sat, May 12, 2012 at 8:30 PM, Bruno Rocha rochacbr...@gmail.com wrote: autodelete=True On Sat, May 12, 2012 at 4:15 PM, Sebastian E. Ovide

[web2py] storing more than 1 millions uploaded files

2012-05-11 Thread Sebastian E. Ovide
files the system will get slow... Am I correct ? is it possible to configure web2py to use more than one level (per table/field) ? thanks ? -- Sebastian E. Ovide

Re: [web2py] Re: form in layout.html?

2012-05-09 Thread Sebastian E. Ovide
the ajax_trap=True fixed the form which nows call search_bar... but redirect (URL('services', vars={'qry':form.vars.qry})) is rendered inside the component What I'm trying to do, is to include a simple form in the layout.html that calls a function (as it is now, with the ajax_trap trick),

Re: [web2py] Eclipse and autocomplete

2012-05-02 Thread Sebastian E. Ovide
messages? I rather like having autocomplete functioning since, as a beginner, it helps me discover functionality that I might otherwise miss (besides saving some typing). Please accept my thanks in advance for any help on this. Cordially, Rod Watkins -- Sebastian E. Ovide

Re: [web2py] Re: Eclipse highlighting errors in my web2py app

2012-05-02 Thread Sebastian E. Ovide
looking for it, and that is counter-productive. Thanks a lot for any information. -- Sebastian E. Ovide

Re: [web2py] Re: sqlite int field that behave as string ?

2012-05-01 Thread Sebastian E. Ovide
E. Ovide

[web2py] sqlite int field that behave as string ?

2012-04-29 Thread Sebastian E. Ovide
agreement.client_stars FROM agreement WHERE (agreement.client_stars 10);' note: probably (I don't remember) it was String at some point... any ideas ? -- Sebastian E. Ovide

Re: [web2py] Re: Ubuntu and Python3

2012-04-26 Thread Sebastian E. Ovide
-- Because experiencing your loyal love is better than life itself, my lips will praise you. (Psalm 63:3) -- Sebastian E. Ovide

[web2py] welcome application calls lockerz.com ?

2012-04-25 Thread Sebastian E. Ovide
Hi All, I've just noticed that web2py welcome application is doing calls like this http://pts.lockerz.com/1x1.gif?ver=0.1app=a2auuid=e91edf70-1558-4a46-8ef1-5081e621377devent=loadurl=http%3A%2F%2Flocalhost%3A8000%2Fwelcome%2Fdefault%2Findexreferrer= any ideas ? thanks -- Sebastian E. Ovide

[web2py] python question: how to reuse this code

2012-04-22 Thread Sebastian E. Ovide
]).select() if len(providers) == 1: theProvider = providers[0] return dict(theProvider=theProvider) thanks -- Sebastian E. Ovide

Re: [web2py] Re: Continuous Integration

2012-04-22 Thread Sebastian E. Ovide
, but it is largely theoretical. -- Sebastian E. Ovide

Re: [web2py] Re: python question: how to reuse this code

2012-04-22 Thread Sebastian E. Ovide
=theProvider) thanks -- Sebastian E. Ovide -- Sebastian E. Ovide

Re: [web2py] Re: extra column with random number to make record not guessable

2012-04-19 Thread Sebastian E. Ovide
an article with several implementations: http://kevin.vanzonneveld.net/**techblog/article/create_short_** ids_with_php_like_youtube_or_**tinyurl/http://kevin.vanzonneveld.net/techblog/article/create_short_ids_with_php_like_youtube_or_tinyurl/ -- Sebastian E. Ovide

[web2py] extra column with random number to make record not guessable

2012-04-14 Thread Sebastian E. Ovide
some magic that add an extra column with an unique random number thanks -- Sebastian E. Ovide

Re: [web2py] Re: extra column with random number to make record not guessable

2012-04-14 Thread Sebastian E. Ovide
the ID from the URL)... just wondering if web2py has already some magic that add an extra column with an unique random number thanks -- Sebastian E. Ovide -- Sebastian E. Ovide

[web2py] why web2py is not listed in Google App Engine ? (Django is there!)

2012-02-15 Thread Sebastian E. Ovide
Hi List, As we all know, web2py runs very nicely in GAE. So why do they mention Django and not web2py in http://code.google.com/appengine/docs/python/python27/newin27.html ??? -- Sebastian E. Ovide

Re: [web2py] Re: keep shared objects permanently in RAM: Is it possible ?

2012-02-12 Thread Sebastian E. Ovide
/online/pages/man2/mmap.2.html If you are on Linux here you find some quick explanation how mmap, tmpfs and shm fs relate to each others: http://stackoverflow.com/questions/904581/shmem-vs-tmpfs-vs-mmap -- Sebastian E. Ovide

Re: [web2py] Re: keep shared objects permanently in RAM: Is it possible ?

2012-02-09 Thread Sebastian E. Ovide
AM, Michele Comitini michele.comit...@gmail.com wrote: You can reach a very high level of parallelism with lower dead-locking probability than with java threads. any source about that ? (any paper, benchmarks etc...) -- Sebastian E. Ovide

Re: [web2py] Re: keep shared objects permanently in RAM: Is it possible ?

2012-02-08 Thread Sebastian E. Ovide
will last for the lifetime of the web2py instance. -- Sebastian E. Ovide

Re: [web2py] Re: keep shared objects permanently in RAM: Is it possible ?

2012-02-07 Thread Sebastian E. Ovide
, permanently importing the data in a module. -- Sebastian E. Ovide

Re: [web2py] web2py long term projects: experiences ?

2012-02-07 Thread Sebastian E. Ovide
developing I think is quite big, work with millons of records, and is very complex and has many lines of code and many tables, is an internal application for a national company. how many full time dev are working in this team ? thanks again Sebastian E. Ovide

Re: [web2py] Re: keep shared objects permanently in RAM: Is it possible ?

2012-02-06 Thread Sebastian E. Ovide
or MongoDB seems to be what you are looking for! On Sun, Feb 5, 2012 at 9:58 PM, Sebastian E. Ovide sebastian.ov...@gmail.com wrote: Hi All, Is it possible to keep a BIG chunk of information in memory RAM permanently (without reloading it for each new session/request

Re: [web2py] Re: keep shared objects permanently in RAM: Is it possible ?

2012-02-06 Thread Sebastian E. Ovide
? Or you have 16gb of data, and each client accesses a small part of that (still pretty big hardware, but a lot more achievable)? -- Sebastian E. Ovide

Re: [web2py] Re: keep shared objects permanently in RAM: Is it possible ?

2012-02-06 Thread Sebastian E. Ovide
pattern to hold small data in memory, but never used it with anything large. So maybe you should play with this idea and see how it responds. -- Sebastian E. Ovide

Re: [web2py] Re: keep shared objects permanently in RAM: Is it possible ?

2012-02-06 Thread Sebastian E. Ovide
improvement was obtained using special indexes (created by lucene) stored in SSD... but still to slow for us... so the only solution was to use a special tree all in memory just investigating if there is something else in the open source that could save us Weblogic licences -- Sebastian E

[web2py] keep shared objects permanently in RAM: Is it possible ?

2012-02-05 Thread Sebastian E. Ovide
to be done on the data, ALL of it must be in memory at the same time, and due for the size of it, it is not practical to load/save it for each request. (to slow) thanks -- Sebastian E. Ovide

Re: [web2py] Any bored developers want to help?

2012-02-03 Thread Sebastian E. Ovide
will update the development version of the site later today and provide a link to see the new youadworld.com (not complete yet, but getting close) On Thu, Feb 2, 2012 at 1:19 AM, Sebastian E. Ovide sebastian.ov...@gmail.com wrote: did you use web2py for ethicaldeal.com and youadworld.com

[web2py] web2py long term projects: experiences ?

2012-02-03 Thread Sebastian E. Ovide
-- Sebastian E. Ovide

Re: [web2py] Any bored developers want to help?

2012-02-02 Thread Sebastian E. Ovide
-- Sebastian E. Ovide

Re: [web2py] cluster: distributed locks

2012-01-27 Thread Sebastian E. Ovide
, but there is a Locking plugin http://web2py.com/plugins/default/locking On Thu, Jan 26, 2012 at 7:05 AM, Sebastian E. Ovide sebastianov...@gmail.com wrote: ok, I guess that the answer is no... (or I didn't formulate the question correctly) On Thu, Jan 19, 2012 at 11:51 PM, sebastian sebastianov

Re: [web2py] Re: begin a transaction manually ?

2012-01-27 Thread Sebastian E. Ovide
...@gmail.com escreveu: You cannot clone it. but can make two. On Jan 26, 3:10 am, Sebastian E. Ovide sebastian.ov...@gmail.com wrote: 2) yes but not concurrently, unless you have two db objects. Is it possible to clone a db object ? instead of declare 2 (or n) db objects in the model, can I

Re: [web2py] cluster: distributed locks

2012-01-26 Thread Sebastian E. Ovide
() do more staff any better idea ? thansk -- Sebastian E. Ovide

Re: [web2py] Re: begin a transaction manually ?

2012-01-26 Thread Sebastian E. Ovide
2) yes but not concurrently, unless you have two db objects. Is it possible to clone a db object ? instead of declare 2 (or n) db objects in the model, can I create a new one a controller based on db declared in the model ? -- Sebastian E. Ovide

Re: [web2py] NInja IDE 2.0b and Plugin contest

2011-10-26 Thread Sebastian E. Ovide
contest http://www.ninja-ide.org/plugins/ Any taker to create a web2py plugin? What features do people think a web2py plugin for Ninja-IDE should have? -- Bruno Rocha [http://rochacbruno.com.br] -- http://martin.tecnodoc.com.ar -- Sebastian E. Ovide

Re: [web2py] Web2py on android

2011-10-20 Thread Sebastian E. Ovide
/stopping-gears.html and will no longer be available as of December 2011. Seems Google has drop it... Richard On Wed, Oct 19, 2011 at 1:10 PM, Sebastian E. Ovide sebastian.ov...@gmail.com wrote: have you considered Google Gears ? 2011/10/19 António Ramos ramstei...@gmail.com hello, can i

Re: [web2py] Web2py on android

2011-10-19 Thread Sebastian E. Ovide
syncronize content with a server.Example at the end of the day. Also the tablet may be used by everyone besides the admin. Am i in the wrong lane? -- Sebastian E. Ovide

Re: [web2py] IMPORTANT

2011-10-13 Thread Sebastian E. Ovide
things for other environments... On Wed, Oct 12, 2011 at 2:59 PM, Massimo Di Pierro massimo.dipie...@gmail.com wrote: Do we need a policy about this? Do we want see other people political/religious/philosophical statements in there emails? -- Sebastian E. Ovide

Re: [web2py] criticism of web2py

2011-10-04 Thread Sebastian E. Ovide
are not mainstream, but just curios what do you think? Sincerely, Gour -- “In the material world, conceptions of good and bad are all mental speculations…” (Sri Caitanya Mahaprabhu) http://atmarama.net | Hlapicina (Croatia) | GPG: 52B5C810 -- Sebastian E. Ovide

Re: [web2py] spinejs with Web2py

2011-09-30 Thread Sebastian E. Ovide
that it should be very trivial to use good luck ! On Thu, Sep 29, 2011 at 5:32 PM, Carl m...@carlroach.com wrote: Is anyone using spinejs with web2py and has ajax calls working? -- Sebastian E. Ovide

Re: [web2py] what about web2py 2.0?

2011-09-20 Thread Sebastian E. Ovide
for a clean up? -- Sebastian E. Ovide

Re: [web2py] Re: how to use cgi in web2py

2011-09-08 Thread Sebastian E. Ovide
believe me... web2py in a sharehost using CGI it is very SLOW ! (tested in iPage)... On Thu, Sep 8, 2011 at 12:30 PM, Web2Py Freak halna...@gardeniatelco.comwrote: there is nothing about using CGI just : web2py provides a file cgihandler.py to interface to CGI. -- Sebastian E. Ovide

Re: [web2py] R: Re: web2py hosting

2011-08-28 Thread Sebastian E. Ovide
FluxFlex hostinghttp://vimeo.com/28112026 on Vimeo by Massimo Di Pierro. http://vimeo.com/28112026 -- Sebastian E. Ovide

Re: [web2py] linux help

2011-08-26 Thread Sebastian E. Ovide
what about something like this ? #!/bin/bash if test /path/to/VERSION -nt /path/to/VERSION.track then # touch VERSION.track # restart apache else nothing fi and run it in cron once every 5 minutes or so On Fri, Aug 26, 2011 at 5:43 PM, Massimo Di Pierro massimo.dipie...@gmail.com

Re: [web2py] Re: GAE questions...

2011-08-21 Thread Sebastian E. Ovide
under the covers. cfh -- Sebastian E. Ovide

[web2py] GAE questions...

2011-08-19 Thread Sebastian E. Ovide
workarounds ? (by workaround I mean running extra queries for mimicking any of those features..) thanks -- Sebastian E. Ovide

Re: [web2py] The web2py grid/crud plugin you've always dreamed about!

2011-07-23 Thread Sebastian E. Ovide
://www.blouweb.com ] -- Sebastian E. Ovide

[web2py] loading image in A(cid=request.cid) within a component

2011-07-21 Thread Sebastian E. Ovide
-- Sebastian E. Ovide

Re: [web2py] Re: loading image in A(cid=request.cid) within a component

2011-07-21 Thread Sebastian E. Ovide
time that a link is clicked (within each link) ? (I'm talking about A links with cid=request.cid, not about LOAD) thanks -- Sebastian E. Ovide -- Sebastian E. Ovide

Re: [web2py] Re: bug in crud with load and ajax=false

2011-07-20 Thread Sebastian E. Ovide
{{=form}} -- Sebastian E. Ovide

Re: [web2py] Re: bug in crud with load and ajax=false

2011-07-20 Thread Sebastian E. Ovide
,1) #form=SQLFORM(db.customer,1) return dict(form=XML(form.xml())) TEST.HTML VIEW {{extend 'layout.html'}} {{=LOAD(c='crm',f='testload.**lo**ad', ajax=False, ajax_trap=True)}} TESTLOAD.LOAD VIEW {{=form}} -- Sebastian E. Ovide -- Sebastian E

Re: [web2py] Re: A(cid=request.cid) inside a component inside another component ? bug or working as expected ?

2011-07-19 Thread Sebastian E. Ovide
(..., target='inner') A(..., cid='inner' Anthony -- Sebastian E. Ovide

[web2py] LOADing a crud throws an error after upgrading to 1.97.1

2011-07-19 Thread Sebastian E. Ovide
,message=None)) any idea ? -- Sebastian E. Ovide

Re: [web2py] Re: bug in crud with load and ajax=false

2011-07-19 Thread Sebastian E. Ovide
)}} TESTLOAD.LOAD VIEW {{=form}} -- Sebastian E. Ovide

[web2py] A(cid=request.cid) inside a component inside another component ? bug or working as expected ?

2011-07-18 Thread Sebastian E. Ovide
I'm using cid=request.env.http_web2py_component_elemen) thanks -- Sebastian E. Ovide

Re: [web2py] Re: DAL: query sorted by calculated column ?

2011-07-18 Thread Sebastian E. Ovide
. to sort by the virtual field you can: db(db.tabletest.id0).select().sort(lambda r: r.tot) hope that helps. (i did not test my code, just typed quickly, beware of typos) cfh -- Sebastian E. Ovide

[web2py] DAL: query sorted by calculated column ?

2011-07-17 Thread Sebastian E. Ovide
Hi All, is it possible to do something like this ? select num_yes, num_no, num_yes-num_no as tot from table order by tot thanks -- Sebastian E. Ovide

Re: [web2py] Re: OffTopic Google+

2011-07-06 Thread Sebastian E. Ovide
for Google here, as I hate Facebook. -- Sebastian E. Ovide

Re: [web2py] Re: OffTopic Google+

2011-07-06 Thread Sebastian E. Ovide
is cool and all (I haven't tried it yet), but Circles is the Facebook killing feature for me. -- Sebastian E. Ovide

[web2py] login on dialog

2011-06-29 Thread Sebastian E. Ovide
Hi All, is there an easy way to create a popup like dialog for logins ? I mean using web2py auth something like this: http://web2py.uservoice.com/forums/42577-general when you click on like thanks -- Sebastian E. Ovide

Re: [web2py] suggestion for improvement for A

2011-06-28 Thread Sebastian E. Ovide
: You can pass a loading image to the load function On 6/27/11 6:13 PM, Sebastian E. Ovide wrote: Hi All, some times a link A will reload a component (via cid=request.cid). In those situations would be nice to have some kind of loading message displayed. thanks -- Sebastian E. Ovide

Re: [web2py] Re: proven hosting sites for web2py

2011-06-28 Thread Sebastian E. Ovide
... More logs...http://blog.web2py.es/category/hosting-web2py/page/4/ On Jun 28, 6:21 pm, Vasile Ermicioi elff...@gmail.com wrote: +1 for webfaction, soon I will post a website built with web2py and hosted by webfaction, I am very happy with them -- Sebastian E

Re: [web2py] suggestion for improvement for A

2011-06-28 Thread Sebastian E. Ovide
); }); } would it break anything ? On Tue, Jun 28, 2011 at 8:57 AM, Sebastian E. Ovide sebastian.ov...@gmail.com wrote: I mean the A function... say that you have a link which reload the component... and the response takes few seconds... in these few seconds you could click the link again

[web2py] suggestion for improvement for A

2011-06-27 Thread Sebastian E. Ovide
Hi All, some times a link A will reload a component (via cid=request.cid). In those situations would be nice to have some kind of loading message displayed. thanks -- Sebastian E. Ovide

Re: [web2py] Re: web2py with Eclipse

2011-06-27 Thread Sebastian E. Ovide
That's it ! thanks On Mon, Jun 27, 2011 at 1:16 AM, Pierre Thibault pierre.thibau...@gmail.com wrote: from applications.soso.models.some_module import my_db_helper_here I'm sorry I forgot the some_module in my first example. -- Sebastian E. Ovide

[web2py] how strongly coupled are LOAD with web2py_ajax.html and web2py_ajax.js ?

2011-06-26 Thread Sebastian E. Ovide
also LOAD, web2py_ajax.html and web2py_ajax.js ? Just wondering how difficult would maintaining one (many) application(s) be as everytime that I've update I need to update web2py and update all the applications static files related to web2py... Thanks -- Sebastian E. Ovide

Re: [web2py] Re: how strongly coupled are LOAD with web2py_ajax.html and web2py_ajax.js ?

2011-06-26 Thread Sebastian E. Ovide
E. Ovide

Re: [web2py] Re: web2py with Eclipse

2011-06-26 Thread Sebastian E. Ovide
also from applications.myapp.models import * and added a __init__.py inside the models folder any other ideas ? On Sun, Jun 26, 2011 at 8:39 PM, Pierre Thibault pierre.thibau...@gmail.com wrote: if 0: from applications.myapp.models import myfunc -- Sebastian E. Ovide

Re: [web2py] Re: web2py with Eclipse

2011-06-26 Thread Sebastian E. Ovide
add info: from applications.soso.models import my_db_helper_here eclipse give this error: Unresolved import: my_db_helper_here Unused import: my_db_helper_here On Sun, Jun 26, 2011 at 11:43 PM, Sebastian E. Ovide sebastian.ov...@gmail.com wrote: Thanks Pierr, I was trying to do

[web2py] let eclipse find global functions defined in model folder

2011-06-25 Thread Sebastian E. Ovide
Hi All, I've add a bunch of imports into my plugin controller and model which fixed all my eclipse errors. Now I've added a function into my plugin model but it is not seen by Eclipse in my plugin controller. any ideas ? -- Sebastian E. Ovide

Re: [web2py] Re: For Massimo: which version of book to buy?

2011-06-24 Thread Sebastian E. Ovide
is a good fall-back if I can't find what I want. Things are moving quickly - when will the next paper version be available? Paul. -- Sebastian E. Ovide

[web2py] update a field from a record from a table given all as parameters

2011-06-24 Thread Sebastian E. Ovide
Hi All, how can I do something like this: def update_my_field(tablename, columnname, id,value): db.tablename(id).update_record(columnname=value) update_my_field(my_table,my_column,123,hello world) thanks -- Sebastian E. Ovide

Re: [web2py] Re: update a field from a record from a table given all as parameters

2011-06-24 Thread Sebastian E. Ovide
massimo.dipie...@gmail.com wrote: def update_my_field(tablename, columnname, id,value): db(db[tablename].id==id).update(**{columnname:value}) update_my_field(my_table,my_column,123,hello world) On Jun 24, 3:08 pm, Sebastian E. Ovide sebastian.ov...@gmail.com wrote: Hi All, how can I do

Re: [web2py] Re: Speed of rendering html data (10,000+ rows)

2011-06-21 Thread Sebastian E. Ovide
why you need to return 10k records in one go ? -- Sebastian E. Ovide

[web2py] what is globals() ?

2011-06-21 Thread Sebastian E. Ovide
Hi All, I see globals() everywhere and even if intuitively I guess what it is, I'd like to find more info about it... thanks -- Sebastian E. Ovide

Re: [web2py] Re: For Massimo: which version of book to buy?

2011-06-18 Thread Sebastian E. Ovide
: Wouldn't it be better at this point to use the online version and just contribute to the project using the link on the main page? -- Sebastian E. Ovide

  1   2   3   >