Re: [web2py] Re: Application developed with web2py like Django People

2010-11-17 Thread António Ramos
AHH, found a big problem! I need to create a table with 940 fields and web2py complains that it is over 255 What to do to resolve this? i dont want to partition my table because the record realy has 940 fields in my database (Lotus Notes) that i want to migrate to web2py. António 2010/11/17

[web2py] Model field limit

2010-11-19 Thread António Ramos
Hello, how many fields can i define in a model? Best regards António

Re: [web2py] Re: New Admin Design: Suggested Improvement

2010-11-19 Thread António Ramos
Let me say that the admin page is nice but as a Lotus Note programmer i have a excelent admin interface. Please check it out http://www.alanlepofsky.net/alepofsky/alanblog.nsf/dx/best-looking-lotus-notes-ever/content/M2?OpenElement Its just an idea, Its a lot easier to find and app by an

[web2py] about cron tasks

2010-11-19 Thread António Ramos
Hello, can cron tasks write output to web2py console? I think not but it would be interesting to have the possibility to debug or just print messages to the console. Also in the admin i think that is important to have a task manager page to see all the cron tasks running in the server without

Re: [web2py] Re: New Admin Design: Suggested Improvement

2010-11-20 Thread António Ramos
Hello, i suggest to keep the admin interface quest open because for someone entering web2py for the first time its the most important thing. Maybe a contest for the best admin interface? and a price for the winner too. The framework is fantastic, i discovered python and i love it. So i went

Re: [web2py] Re: New Admin Design: Suggested Improvement

2010-11-20 Thread António Ramos
no, what i meant was that the edit should be the url itself or the button, other options should be in the right click because they are less important Best regards António 2010/11/20 Anthony abasta...@gmail.com On Nov 20, 1:44 pm, António Ramos ramstei...@gmail.com wrote: I hate having

Re: [web2py] Re: New Admin Design: Suggested Improvement

2010-11-20 Thread António Ramos
i got for that one. A much cleaner workspace is better for future evolution . Also the discovery of features is a natural process of web apps and only hurts the first time. After that everybody will say: That is nice, a lot better than before. Its like a loop where you use ony one variable

Re: [web2py] graph node python

2010-11-20 Thread António Ramos
Only for mac :( Go for http://www.graphviz.org/Gallery.php 2010/11/20 Luis Díaz diazluis2...@gmail.com +1 http://nodebox.net/code/index.php/Boost_Graph -- Díaz Luis TSU Analisis de Sistemas Universidad de Carabobo http://web2pyfacil.blogspot.com/ Facultad de

Re: [web2py] Re: web2py admin 2.0

2010-11-20 Thread António Ramos
All of that in the browser is outstanding I cant wait to use it. Just one detail that would be also important. Is it possible to add bellow the editarea a frame with the python shell? Also as a lotus notes programmer as i said previously where we have a workspace also with icons, we change the

Re: [web2py] Re: web2py admin 2.0

2010-11-20 Thread António Ramos
right :) Thas is EXCELLENT! Antonio Em 20 de novembro de 2010 23:37, António Ramos ramstei...@gmail.comescreveu: All of that in the browser is outstanding I cant wait to use it. Just one detail that would be also important. Is it possible to add bellow the editarea a frame

[web2py] How to lauch an app from the edit page

2010-11-22 Thread António Ramos
Hello, when i´m in the edit page for App1 for example, how can i lauch this app without having to go back to Installed Applications page or search for index link and edit it and then Try View !!! Am i missing something here? Best regards antónio

Re: [web2py] about cron tasks

2010-11-22 Thread António Ramos
I my pc it does not print. Also the path to the script have to include the absolute path? Can it be a controller script? Antonio 2010/11/22 Vinicius Assef vinicius...@gmail.com 2010/11/19 António Ramos ramstei...@gmail.com: Hello, can cron tasks write output to web2py console? Just use

[web2py] Type in Book 3rd Edition

2010-11-22 Thread António Ramos
In Web2py book, page 297 ,line 16 of code. Missing : Best regards António

Re: [web2py] Re: Type in Book 3rd Edition

2010-11-22 Thread António Ramos
Chapter 7 Topic On validation line 16 : missing!!! 2010/11/22 cjrh caleb.hatti...@gmail.com On Nov 22, 7:57 pm, António Ramos ramstei...@gmail.com wrote: In Web2py book, page 297 ,line 16 of code. Missing : I don't have my hard-copy of the book handy, could you specify the place

[web2py] How to call function from other app?

2010-11-22 Thread António Ramos
Hello, i have this need I want to create an app1 to validate and compute some data from other apps After that i want to create many apps to send data to be processed by app1 and returned by app1 to those apps. What is the best way? I looked at SQLFORM onvalidation to send fields to a function

Re: [web2py] about cron tasks

2010-11-23 Thread António Ramos
or other for that purpose. Also in admin there should be available all cron tasks to be edited by editpad. Right? Best regards António Em 22 de novembro de 2010 15:34, António Ramos ramstei...@gmail.comescreveu: I my pc it does not print. Also the path to the script have to include the absolute

[web2py] send attachment via xmlrpclib

2010-11-24 Thread António Ramos
Hello, Is it possible to send an attachment from a python program to an web2py app via xmlrpclib? I have a working app with xmlrpc exposed i have a python program that has this code import xmlrpclib server = xmlrpclib.ServerProxy(' http://127.0.0.1:8000/BlaBlaBla/default/call/xmlrpc') what

Re: [web2py] Re: send attachment via xmlrpclib

2010-11-24 Thread António Ramos
but if i want, using the shell, to add and image manually do i use db.photo.insert('file'=varwithFile) ? *my test model is db.define_table('photo', Field('file','upload'))* Best regards António

Re: [web2py] Re: send attachment via xmlrpclib

2010-11-24 Thread António Ramos
or 'filename.txt' stream = request.vars.varwithFile.file or open(filename,'rb') db.photo.insert(file=db.photo.file.store(stream),filename=filename) On Nov 24, 3:37 pm, António Ramos ramstei...@gmail.com wrote: but if i want, using the shell, to add and image manually do i use db.photo.insert('file

Re: [web2py] Re: send attachment via xmlrpclib

2010-11-25 Thread António Ramos
is the problem? best regards António 2010/11/25 mdipierro mdipie...@cs.depaul.edu This reads the entire file in ram. Only ok for small files. May be a vulnerability if anybody can access this service. On Nov 24, 5:16 pm, António Ramos ramstei...@gmail.com wrote: i got xmlrpclib

[web2py] Bug in model validator (require vs requires) ?

2010-11-26 Thread António Ramos
Hello i have a model and this line db.trabalhadores.empreiteiro.*require*=IS_IN_DB(db,'empreiteiros.id ','%(empreiteiro)s') it hapens that there is no error from web2py but when i insert a record i got no dropdownlist for field empreiteiro. After copy paste some examples i noticed that it is not

Re: [web2py] Bug in model validator (require vs requires) ?

2010-11-26 Thread António Ramos
or requires messages each type I write a line of code? May be you need a IDE (eclispe with python plugin) that will try to complete the code you are typing... It may prevent some typo. Richard 2010/11/26 António Ramos ramstei...@gmail.com Hello i have a model and this line

[web2py] onvalidation valid for every form button?

2010-11-29 Thread António Ramos
Hello i want to use a form and want to use the onvalidation to call a function. My question is , Is the submit button the only way to trigger the onvalidation event ? I ask this because i want 2 buttons, the first submits with var=1 and the second submit with var=2 How can i use this 2 buttons

[web2py] Conditional IS_NOT_EMPTY

2010-12-02 Thread António Ramos
hello, in a model i define a table tab1 and a field f1 that if some condition is met should be not empty, otherwise could be empty How do i code this situation at model level? Best regards António

[web2py] Time to relax, off topic - Simple IQ Testing.

2010-12-03 Thread António Ramos
2+3=10 7+2=63 6+5=66 8+4=96 So: 9+7=??? What is the answer? They say the IQ of people that can find it is above 120 Dont write here the answer.. Just the time, maybe

Re: [web2py] Timepicker

2010-12-05 Thread António Ramos
+1 Dojo is sponsored by IBM, i think, and is behind Lotus Notes Xpages technology. António 2010/12/4 Branko Vukelic bg.bra...@gmail.com Since we've discussed the topic of timepickers before, I've just stumbled upon a very good solution from the Dojo camp. Here's a demo.

Re: [web2py] Re: couchdb anybody?

2010-12-08 Thread António Ramos
For dummies why not a video tutorial on using couchdb with web2py? I would help a lot for newcommers and for web2py in general! Best regards António 2010/12/8 mdipierro mdipie...@cs.depaul.edu Please make sure you have the latest sql.py from trunk. CouchDB should call the rollback at 2325

[web2py] About Workflow and Collapsible sections in forms

2010-12-27 Thread António Ramos
Hello, i have an app in Lotus Notes that i designed for my company. It manages workflows and is a great improvement in my work. I want to create something similar in web2py but lotus notes has collapsible sections in forms that are very easily configured and very usefull when restriction access to

[web2py] Python job oportunity

2010-12-29 Thread António Ramos
Beats me https://docs.google.com/document/d/1LzT4fCd135lzgWiXGut6k4WoC9t7eV-6RSnUexNxezM/edit?hl=en_GB#

Re: [web2py] Python job oportunity

2010-12-29 Thread António Ramos
friends. So easy to decrypt the message. Em 29 de dezembro de 2010 15:25, António Ramos ramstei...@gmail.comescreveu: Beats me https://docs.google.com/document/d/1LzT4fCd135lzgWiXGut6k4WoC9t7eV-6RSnUexNxezM/edit?hl=en_GB# -- Bruno Rocha http://about.me/rochacbruno/bio

Re: [web2py] Python job oportunity

2010-12-29 Thread António Ramos
,\x1d\x07\rl\x03\...@m\x0eb\x1d\x03\x10\x0ezm\x06\x0c\x1d\t\x17\x1f[(\x18L' ' ' xor(job_opportunity,k) GET THE RESULT HERE! -- Bruno Rocha http://about.me/rochacbruno/bio Em 29 de dezembro de 2010 16:13, António Ramos ramstei...@gmail.comescreveu: i just xored every char

Re: [web2py] Re: Powertable remarks

2010-12-30 Thread António Ramos
Hello, my opinion is that is great , but for normal use, i think the programmer should not try to reinvent the wheel every time he needs a table. So my suggestion is that you could make a widget to permit the creation of the table in a snap. Best regards António 2010/12/30 Bruno Rocha

Re: [web2py] Re: Powertable remarks

2010-12-30 Thread António Ramos
widget like i saw in maximo movie in vimeo here http://www.vimeo.com/13485916 2010/12/30 rochacbruno rochacbr...@gmail.com Hello, my opinion is that is great , but for normal use, i think the programmer should not try to reinvent the wheel every time he needs a table. So my suggestion is

[web2py] Fwd: [python.pt] [Fwd: Python Developer Role - contract]

2011-01-04 Thread António Ramos
Hi Marco, I’m currently looking for a Python Developer with knowledge of C++ for leading financial institution. They need developers with excellent Python and strong knowledge of C++ development. The role will involve working on a complex trading system and will require candidates to create and

Re: [web2py] Re: powerTable plugin - video demonstration

2011-01-05 Thread António Ramos
Yes, i agree. But, to push you a litle more here is my suggestion for a dummy programmer. In your video i can see you have all paramenters in your head. The regular programmer dont know all that so why not create a wizard or a webpage with all parameters to create a table and the user just fills

[web2py] Web2py Most Wanted

2011-01-14 Thread António Ramos
hello, to help web2py in the best possible way and in the least amount of time , why dont Maximo suggest the plugins or areas where ther is a lack of a plugin or code. This way we, discipules of py, dont loose time with details and get a real chalenge from the Master ? I suggest one: Workflow

Re: [web2py] Re: Long-running controllers

2011-01-20 Thread António Ramos
Please add to the book your suggestion. 2011/1/19 Massimo Di Pierro massimo.dipie...@gmail.com Your code does not block the server. Only blocks the session associated to your browser to guarantee integrity of the data in your session. If you know that the block function takes time and it does

Re: [web2py] Re: Powertable remarks

2011-01-27 Thread António Ramos
That was an excelent question! Any answer from Bruno? Thanks António 2011/1/18 Johann Spies johann.sp...@gmail.com I started this thread: On 17 December 2010 12:11, Johann Spies johann.sp...@gmail.com wrote: * I have tested it this morning on a table with more just over 8200 entries

Re: [web2py] Re: PDF Reports with Pisa

2011-01-28 Thread António Ramos
what about reportlab? 2011/1/28 Lucas D'Avila lucass...@gmail.com Can you be more specific? have any suggestions to improve this? -- Lucas D'Avila http://flavors.me/lucasdavila Em 28/01/2011 05:46, mart msenecal...@gmail.com escreveu: Just letting you now... I looking to see it in

[web2py] web2py auth with Novell Edirectory

2012-02-23 Thread António Ramos
Can i use web2py auth with Novell Edirectory any sample code? thank you António

[web2py] OFF-TOPIC - Udacity - Educating the 21st Century

2012-02-24 Thread António Ramos
Nice way of teaching. They teach python and robotics using python http://www.youtube.com/user/Udacity?feature=watch

Re: [web2py] Re: Workflow engine for web2py

2012-02-27 Thread António Ramos
can make use of workflow utility readily. Richard 2012/2/7 António Ramos ramstei...@gmail.com How to use this in web2py ? dummies tutorial? 2012/2/7 omicron jacques.bouss...@gmail.com This library is small and easy to use: http://www.hforge.org/itools/docs/workflow/

[web2py] raspberry pi

2012-03-13 Thread António Ramos
it would be nice to be able to install web2py in raspberry pi http://www.raspberrypi.org/

[web2py] tropo Instant voice and sms with python code

2012-03-13 Thread António Ramos
check this out www.tropo.com nice!

[web2py] Offtopic: What is the most important thing that every software developer should know?

2012-03-15 Thread António Ramos
just forwarding -- Forwarded message -- From: Nikhil Marathe nsm.nik...@gmail.com Date: 2012/1/23 Subject: [nodejs] Offtopic: What is the most important thing that every software developer should know? To: nod...@googlegroups.com Hi, I would really appreciate it if you

Re: [web2py] Re: [video] websockets com web2py e tornado

2012-03-22 Thread António Ramos
I disaggree. I´m portuguese and Bruno is perfect explaining websockets in web2py! Add english subtitles!!! 2012/3/22 Bruno Rocha rochacbr...@gmail.com Sorry, this is in Portuguese and should go only to Brazilian groups... On Thu, Mar 22, 2012 at 5:10 AM, Bruno Rocha

[web2py] run a controller function from the command line - SEND ARGUMENTS!!!

2012-04-04 Thread António Ramos
hello i have this command line python web2py -S app/controller/function -M It works ok Now i want ( I NEED!) to pass arguments to mu function How to? thank you António

Re: [web2py] Re: run a controller function from the command line - SEND ARGUMENTS!!!

2012-04-04 Thread António Ramos
my index def index(temp='None'): ... python web2py.py -S myapp/default/index -M -A does not send aaa to index function Index function temp variable has None and not Thank you António 2012/4/4 Massimo Di Pierro massimo.dipie...@gmail.com web2py.py -S app -M -N -R script.py -A

Re: [web2py] Re: run a controller function from the command line - SEND ARGUMENTS!!!

2012-04-04 Thread António Ramos
i changed to another function reload, so i can open my index in the browser executing python web2py.py -S myapp/default/reload -M -A i get the error reload() takes exactly 1 argument (0 given) Thank you António Em 4 de abril de 2012 16:31, António Ramos ramstei...@gmail.com escreveu

Re: [web2py] Re: run a controller function from the command line - SEND ARGUMENTS!!!

2012-04-04 Thread António Ramos
I have a PBX in linux that can call scripts in python I´m trying to call a script in my web2py app and pass some vars. i have a script in python that in the end calls another script os.system(python /../../web2py.py -S app/default/reload/ -M -A arg1) Thank you António 2012/4/4 Anthony

Re: [web2py] Re: run a controller function from the command line - SEND ARGUMENTS!!!

2012-04-05 Thread António Ramos
ok, my pbx can run python scripts but these python scripts must reside in an internal folder of the pbx. So i have a script that calls the web2py script. So far so good? Next how do i call a module function from the command line, so i can pass this line to my script via os.system('python

Re: [web2py] Re: run a controller function from the command line - SEND ARGUMENTS!!!

2012-04-05 Thread António Ramos
Maybe a web service is more suitable Em 5 de abril de 2012 10:05, António Ramos ramstei...@gmail.com escreveu: ok, my pbx can run python scripts but these python scripts must reside in an internal folder of the pbx. So i have a script that calls the web2py script. So far so good? Next

Re: [web2py] Madeira Cloud

2012-04-08 Thread António Ramos
Madeira is the name of an Island in Portugal :) 2012/4/8 Massimo Di Pierro massimo.dipie...@gmail.com http://www.madeiracloud.com/

Re: [web2py] Re: Workflow engine for web2py

2012-04-16 Thread António Ramos
I suggest a workflow as a service. I have a database where i define all workflows for all databases. I have something like this way in a Lotus Notes environment. I get away with it very nicely. :) If i keep control fields in my record like, readers authors step next step formula code to execute

Re: [web2py] Re: Workflow engine for web2py

2012-04-16 Thread António Ramos
with this aproach? Em 16 de abril de 2012 07:44, António Ramos ramstei...@gmail.com escreveu: I suggest a workflow as a service. I have a database where i define all workflows for all databases. I have something like this way in a Lotus Notes environment. I get away with it very nicely. :) If i

Re: [web2py] Re: RFC: web2py-based workflow engine

2012-05-02 Thread António Ramos
Please see my workflow framework in Lotus Notes, in the end of creating rules, i use graphviz to draw the graph of the workflow.. http://www.youtube.com/watch?v=zMNwqAtiFOw Also i manage centrally all rules and all apps point to my framework like a workflow as a service. Easier to manage. i

[web2py] An insult to web2py ?

2012-05-03 Thread António Ramos
a person just wrote this about web2py in a portuguese forum Anyone care to coment? Viva, Eu conheci primeiro o web2py e só uns meses depois o Django. Ao início achei bastante interessante (a ferramenta de admin, tutorial fácil de seguir, etc.). O que me fez saltar do web2py para o django e

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

2012-05-22 Thread António Ramos
Yes , please add the workflow... I need it badly :) 2012/5/22 Ross Peoples ross.peop...@gmail.com There may even be an experimental workflow engine in there if I can finish it in time.

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

2012-05-22 Thread António Ramos
I have about 44 apps that i can convert to web2py if workflow engine available. :P 2012/5/22 António Ramos ramstei...@gmail.com Yes , please add the workflow... I need it badly :) 2012/5/22 Ross Peoples ross.peop...@gmail.com There may even be an experimental workflow engine

Re: [web2py] Re: Innovation under Austerity

2012-06-06 Thread António Ramos
WOW quoting. the next facebook should never happen. Its intermediated inovation serving the needs of finnanceer, not serving the needs of people. which is not to say that social networking shouldnt happend, it shouldnt happend with a man in the midle attack. 2012/6/6 Massimo Di Pierro

Re: [web2py] Re: Innovation under Austerity

2012-06-06 Thread António Ramos
we are just Sheeple! 2012/6/6 Cliff Kachinske cjk...@gmail.com Re: Facebook and other 'Free' social networking sites, this old quote applies: If you aren't paying for it, you are not the customer. You are the product. On Tuesday, June 5, 2012 7:02:25 PM UTC-4, mcm wrote: F2C2012:

[web2py] simple pyquestion dictionaries

2011-02-08 Thread António Ramos
is there a more compact way of doing this? var1={'1':'','2':'','3':'','4':'','5':'','6':'','7':'','8':'','9':'','10':'','11':'','12':'','13':'','14':'','15':'','16':'','17':'','18':'','19':''} Thanks António

[web2py] Sharing knowledge in this group. What is the point ?

2011-02-21 Thread António Ramos
Hello, I see a lot of good knowledge being shared in this discussion group. But i would like to know this from the book or another tutorial ,and not have to search in google. I think that someone should be watching for user problems and as soon as we have good material for a paper about

Re: [web2py] Re: Sharing knowledge in this group. What is the point ?

2011-02-22 Thread António Ramos
A long time ago i learned Turbo Pascal and loved it. One of the reasons was the help. It was very good, the theory and in the end the examples.Just copy and paste to try. I did not need to go out for help. This is a framework! Why not include in web2py context help with theory and examples for

[web2py] About python exec function

2011-04-14 Thread António Ramos
hello, this is a python question. Not web2py. I need to execute a python script via Component Object Model for example python = Dispatch('Python.Interpreter') line = line from another python file python.Exec(line) It work until if finds in the python file something like for x in range(1,10):

[web2py] CarPool web2py anyone?

2011-05-12 Thread António Ramos
hello, this is just an idea. Is there a carpool site made in web2py? in Portugal http://www.carpool.com.pt/ Best regards António

[web2py] pythonanywhere

2011-05-20 Thread António Ramos
hello guys do you know http://www.resolversystems.com/ they have a spreadsheet with python as a scripting language. Its awsome. Please check it also they have in beta test http://www.pythonanywhere.com/ its python in the browser!

Re: [web2py] Re: pythonanywhere

2011-05-20 Thread António Ramos
/spreadsheet On May 20, 6:55 am, António Ramos ramstei...@gmail.com wrote: hello guys do you know http://www.resolversystems.com/ they have a spreadsheet with python as a scripting language. Its awsome. Please check it also they have in beta test http

Re: [web2py] Re: pythonanywhere

2011-05-20 Thread António Ramos
check this screencast http://www.resolversystems.com/screencasts/console/ Em 20 de maio de 2011 18:04, António Ramos ramstei...@gmail.com escreveu: Sorry maximo but resolversystems product is much more than your spreadsheet. You looked but you did not see (where did y heard this before

Re: [web2py] Re: pythonanywhere

2011-05-21 Thread António Ramos
WEB2PY Best regards António 2011/5/21 Andrew Thompson andre...@aktzero.com On 5/20/2011 1:04 PM, António Ramos wrote: Sorry maximo but resolversystems product is much more than your spreadsheet. They are in the business of making spreadsheet related products, therefore

[web2py] Off topic : Extintion Level Event on September ?

2011-06-23 Thread António Ramos
what do you think of this? http://ssd.jpl.nasa.gov/sbdb.cgi?sstr=elenin;orb=1;cov=0;log=0;cad=0#orb

[web2py] web2py with jquery mobile?

2011-07-14 Thread António Ramos
hello, is there sample video showing how to use web2py and jquery mobile ? maybe a an appliance to download from web2py. thank you Antonio

Re: [web2py] Re: web2py with jquery mobile?

2011-07-15 Thread António Ramos
download and install the plugin in a web2py app gives me error!!! 2011/7/14 Anthony abasta...@gmail.com http://web2py.com/plugins/plugin_jqmobile/about

Re: [web2py] Re: web2py with jquery mobile?

2011-07-15 Thread António Ramos
type 'exceptions.WindowsError'([Error 32] The process cannot access the file because it is being used by another process: 'D:/web2py10/web2py/deposit/web2py.plugin.jqmobile.w2p') Em 15 de julho de 2011 09:28, António Ramos ramstei...@gmail.com escreveu: download and install the plugin

[web2py] pythoncom isn't in frozen sys.path.

2011-07-15 Thread António Ramos
Can someone explain why i have this error a lot? I google it and seems that del sys.frozen resolves the problem but the next time i run web2py i have the same error thank you António

[web2py] passing dictionary in URL not working. I Get a string

2011-07-19 Thread António Ramos
hello i have this in a view li{{=A(amostra,_href=URL(r=request,*c='amostra',f='get',* vars={'amostra':amostra,*'amostra_detalhe':Amostra[amostra]*}))}} Amostra is a dictionary amostra is every element in Amostra every amostra of Amostra is a dictionary in this view i iterate over

Re: [web2py] passing dictionary in URL not working. I Get a string

2011-07-19 Thread António Ramos
So what is the best way to pass a dictionary from one page to the other? can i do session.dictvar=mydictvar? thank you António 2011/7/19 Jonathan Lundell jlund...@pobox.com On Jul 19, 2011, at 10:15 AM, António Ramos wrote: hello i have this in a view li{{=A(amostra,_href=URL(r=request

[web2py] HTLM Helper URL. How to pass html tags as arguments

2011-07-20 Thread António Ramos
hello i have a simple view with some html and no db defined in the background *EXAMPLE VIEW* select option value=volvoVolvo/option option value=saabSaab/option option value=mercedesMercedes/option option value=audiAudi/option /select {{=LI(A('something', _href=URL('show', args=??))}} if i

Re: [web2py] Re: CAS Auth with other technologies

2011-07-21 Thread António Ramos
I have Novell EDirectory, can i use web2py with Novell auth? How to to use it? thank you 2011/7/20 Massimo Di Pierro massimo.dipie...@gmail.com The CAS server supports but 1 and 2 but defaults to 2 which is more portable. It should work with third party clients out of the box. On Jul

Re: [web2py] passing dictionary in URL not working. I Get a string

2011-07-21 Thread António Ramos
Thank you a lot. 2011/7/21 Manuele Pesenti manuele.pese...@gmail.com On 19/07/2011 19:37, António Ramos wrote: So what is the best way to pass a dictionary from one page to the other? can i do session.dictvar=mydictvar? http://docs.python.org/library/json.html this is a solution I

[web2py] what to put in models besides models?

2011-07-21 Thread António Ramos
hello, i have some startup variables that i defined in db.py when i go to database administration i get an error. Traceback (most recent call last): File gluon/restricted.py, line 192, in restricted File D:/web2py10/web2py/applications/Lims/views/appadmin.html, line 109, in module TypeError:

Re: [web2py] Re: what to put in models besides models?

2011-07-21 Thread António Ramos
My traceback gives this in line 109 * for db in sorted(databases):* * * * * * * 2011/7/21 Anthony abasta...@gmail.com On Thursday, July 21, 2011 12:01:56 PM UTC-4, pbreit wrote: I think in theory you should be able to do that, but do you really want to be opening all those files on every

[web2py] GAE deploy only on UNIX Systems?

2011-07-21 Thread António Ramos
why is that? It does not work on windows? thank you

[web2py] In app wizard where are the themes and plug ins?

2011-07-21 Thread António Ramos
The subject says it all Where are they? I saw a video from Massimo and in the wizard i saw a lot of themes and plug ins. thank you António

[web2py] Web2py Certification Program ?

2011-07-22 Thread António Ramos
Hello, Why not create a web2py certification program? It would be good for the programmer and for web2py Thank you António

[web2py] Admin is disabled because insecure channel

2011-07-22 Thread António Ramos
i´m trying to access my server from another machine. i started web2py with this command line c:\web2py\web2py.exe -i 192.168.1.8 How to solve it? thank you António

[web2py] web2py videos on the internet

2011-07-22 Thread António Ramos
Sorry all post lately but its pertinent ( i think... :) all videos that i found in the internet are made by massimo(99,99%). Great videos but i think that with a lot of people using and loving web2py there shoud be videos from other users experience. Maximo could stimulate his students to

Re: [web2py] Admin is disabled because insecure channel

2011-07-22 Thread António Ramos
can i use https with rocket? how to? thank you António 2011/7/22 Bruno Rocha rochacbr...@gmail.com Use https or change security checks at your own risk in applications/admin/models 0.py and access.py. 2011/7/22 António Ramos ramstei...@gmail.com i´m trying to access my server from

Re: [web2py] Re: Admin is disabled because insecure channel

2011-07-22 Thread António Ramos
that contains ssl certificate -k SSL_PRIVATE_KEY, --ssl_private_key=SSL_PRIVATE_KEY file that contains ssl private key ... these are all the options you need. You must run two copies one on port 80 and one on port 443. On Jul 22, 9:20 am, António Ramos ramstei

[web2py] Tutorial about making a Layout

2011-07-24 Thread António Ramos
hello, i´m having dificulty understanding how to make my own layout. The web2p book is very fast explaining this. Where can i find a video about making a layout? thank you António

Re: [web2py] Re: Tutorial about making a Layout

2011-07-24 Thread António Ramos
Ok, but the book is only text i need some images to understand. i read this tutorial in portuguese with some images to go along to see what we are talking about layouts but the example does not work as expected . http://www.tuxtilt.com/web2py-views-e-static-files-layout/ I need a layout for

Re: [web2py] Re: Tutorial about making a Layout

2011-07-24 Thread António Ramos
My dificulty is the {{ include }}tag If a layout has for example 4 include tags how does the view knows where to put the content. Also the block tag is the same as the include tag? thank you António 2011/7/24 Bruno Rocha rochacbr...@gmail.com I wrote something in pt-BR

[web2py] About the About page

2011-07-25 Thread António Ramos
Hello, just a suggestion I need more pages like the about page. Pages that are static and not related to views or controllers or models. The about page functionality shoud be more generic and allow for other pages to be available in the app Maybe a WYSIWYG for creating this pages(welcome page,

Re: [web2py] Re: export data to OOO and Excel

2011-07-25 Thread António Ramos
How about a video tutorial exporting to excel? 2011/7/25 selecta gr...@delarue-berlin.de Have a look at http://tlc2.hg.sourceforge.net/hgweb/tlc2/tlc2/file/d68f1405e1c5/views/generic.xls http://tlc2.hg.sourceforge.net/hgweb/tlc2/tlc2/file/d68f1405e1c5/views/generic.xlsx they use tablib

Re: [web2py] Re: About the About page

2011-07-25 Thread António Ramos
Oops, you are right! 2011/7/25 cjrh caleb.hatti...@gmail.com On Jul 25, 10:50 am, António Ramos ramstei...@gmail.com wrote: Maybe a WYSIWYG for creating this pages(welcome page, app manual page,etc). plugin_wiki?

[web2py] Ticket issued: unrecoverable

2011-07-25 Thread António Ramos
Hello, when i try to acces my server admin remotely with FQDN and not by ip i get this error *Ticket issued: unrecoverable* Why? thank you

Re: [web2py] Re: Ticket issued: unrecoverable

2011-07-25 Thread António Ramos
Sorry, i´m no expert. What do you mean? try trunk? Sorry António 2011/7/25 Massimo Di Pierro massimo.dipie...@gmail.com never seen this before. can you try trunk? On Jul 25, 6:44 am, António Ramos ramstei...@gmail.com wrote: Hello, when i try to acces my server admin remotely with FQDN

Re: [web2py] Re: Ticket issued: unrecoverable

2011-07-25 Thread António Ramos
this is the link http://apps.cires.pt:10800/Lims/Default/index if you try http://194.65.91.152:10800/Lims/Default/index it works ok António Em 25 de julho de 2011 13:37, António Ramos ramstei...@gmail.com escreveu: Sorry, i´m no expert. What do you mean? try trunk? Sorry António 2011

Re: [web2py] Re: Ticket issued: unrecoverable

2011-07-25 Thread António Ramos
Its working. Was a DNS problem. Sorry Em 25 de julho de 2011 13:51, António Ramos ramstei...@gmail.com escreveu: this is the link http://apps.cires.pt:10800/Lims/Default/index if you try http://194.65.91.152:10800/Lims/Default/index it works ok António Em 25 de julho de 2011 13:37

Re: [web2py] Re: Ticket issued: unrecoverable

2011-07-25 Thread António Ramos
Lundström kenneth.t.lundst...@gmail.com What kind of a problem was it? Kenneth Its working. Was a DNS problem. Sorry Em 25 de julho de 2011 13:51, António Ramos ramstei...@gmail.comescreveu: this is the link http://apps.cires.pt:10800/Lims/Default/index if you try http

  1   2   3   4   5   6   7   8   9   10   >