[web2py] Web2Py Database Web Interface
All: At one time I thought I saw a project available for a Web2Py Database Web Interface. Does anyone know if one exists? Thanks. Christopher -- You received this message because you are subscribed to the Google Groups "web2py-users" group. To post to this group, send email to web...@googlegroups.com. To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/web2py?hl=en.
[web2py] Re: Web2Py Database Web Interface
Ciastek, I was thinking of something more like a SQuirreL SQL client type idea for Web2Py. http://squirrel-sql.sourceforge.net/ Since Web2Py does everything from the web interface, it would be really great to have an implementation of something like this in the "Admin" interface. Thanks, Christopher Smiga On Apr 8, 10:59 am, ciastek wrote: > On Apr 7, 8:27 pm, cesmiga wrote:> At one time I thought > I saw a project available for aWeb2PyDatabase > >WebInterface. Does anyone know if one exists? > > This one?http://gaesql.appspot.com/ > Found in Book, 6.4 (http://web2py.com/book/default/section/6/4) -- You received this message because you are subscribed to the Google Groups "web2py-users" group. To post to this group, send email to web...@googlegroups.com. To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/web2py?hl=en.
[web2py] Our membership is steadily growing!
All: We know what a wonderful web framework Web2Py is and I just looked at our group membership. Our membership numbers are growing steadily and I can't wait till we hit the threshold of rapid acceptance. This is really great since Web2Py does not have the marketing other Python web frame works have. Congratulations to a great community and project. I love Web2Py. :-) Regards, Christopher -- To unsubscribe, reply using "remove me" as the subject.
[web2py:23240] Re: Does web2py still supports python 2.4?
Mariano, I got this information from the link below. web2py Download http://www.web2py.com/examples/default/download Current Version 1.63.3 (2009-06-02 22:13:56) * for Windows * for Mac * source code for all platforms (requires Python 2.5, runs on Windows and most Unix systems, including Linux and BSD) * latest development snapshot for BZR * latest development snapshot for SVN * Production Distribution/VMWare appliance (coming soon) Christopher Mariano Mara wrote: > I'm trying to migrate a web2py app to a centos server that comes with Python > 2.4.3 > So far I hit errors with hashlib and uuid (easily fixed installing > python-hashlib and python-uuid). However now I have a problem with the code: > > $ ./web2py.py > Traceback (most recent call last): > File "./web2py.py", line 17, in ? > import gluon.widget > File "/opt/bzr/web2py/gluon/widget.py", line 30, in ? > from main import HttpServer, save_password > File "/opt/bzr/web2py/gluon/main.py", line 38, in ? > from globals import Request, Response, Session > File "/opt/bzr/web2py/gluon/globals.py", line 16, in ? > from compileapp import run_view_in > File "/opt/bzr/web2py/gluon/compileapp.py", line 23, in ? > from sqlhtml import SQLFORM, SQLTABLE > File "/opt/bzr/web2py/gluon/sqlhtml.py", line 37 > value='' if value is None else str(value), > ^ > SyntaxError: invalid syntax > > Of course I can fix this and other problems I may find but maybe if you're > not supporting 2.4 anymore I should focus in installing 2.5 in this server. > > Thanks in advance > Mariano --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:23642] What happened to "db.py" when creating a new app???
Hey gang! I tried to create a new application this evening with... #> ./web2py.py -S testapp and the application builds in the "applications" directory, but I don't see "db.py" file in the "models" directory. Listed below is what I have in the models directory. -rw-r--r-- 1 root staff 649 2009-04-29 10:47 0_imports.py -rw-r--r-- 1 root staff 1296 2009-04-29 14:14 0.py -rw-r--r-- 1 root staff 2290 2009-05-23 13:36 access.py -rw-r--r-- 1 root staff 1262 2009-05-11 00:50 menu.py Did something change that I was not aware of? I can't find a... db = SQLDB(... entry in any of the files in this directory. What changed? Here is the current version I'm working with. r...@vm-debian-5:/opt/web2py# cat VERSION Version 1.63.5 (2009-06-03 23:35:00) I just tried this at the Web2Py UI and "db.py" successfully creates. Something is broke with... #> ./web2py.py -S Thank you, Christopher --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:23643] Re: What happened to "db.py" when creating a new app???
Just another note on this issue. While running... #> ./web2py.py -S testapp after the application was aplready created., Web2Py does not recognize the application already exists either. Christopher cesmiga wrote: > Hey gang! > > I tried to create a new application this evening with... > > #> ./web2py.py -S testapp > > and the application builds in the "applications" directory, but I > don't see "db.py" file in the "models" directory. Listed below is > what I have in the models directory. > > -rw-r--r-- 1 root staff 649 2009-04-29 10:47 0_imports.py > -rw-r--r-- 1 root staff 1296 2009-04-29 14:14 0.py > -rw-r--r-- 1 root staff 2290 2009-05-23 13:36 access.py > -rw-r--r-- 1 root staff 1262 2009-05-11 00:50 menu.py > > Did something change that I was not aware of? I can't find a... > > db = SQLDB(... > > entry in any of the files in this directory. What changed? > > Here is the current version I'm working with. > > r...@vm-debian-5:/opt/web2py# cat VERSION > Version 1.63.5 (2009-06-03 23:35:00) > > I just tried this at the Web2Py UI and "db.py" successfully creates. > Something is broke with... > > #> ./web2py.py -S > > Thank you, > Christopher --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:23693] Re: What happened to "db.py" when creating a new app???
Massimo, The latest trunk (rev 1014) works as designed. Christopher mdipierro wrote: > This I cannot reproduce. Please try the latest trunk anyway. > > On Jun 9, 12:16 am, cesmiga wrote: > > Just another note on this issue. While running... > > > > #> ./web2py.py -S testapp > > > > after the application was aplready created., Web2Py does not recognize > > the application already exists either. > > > > Christopher > > > > cesmiga wrote: > > > Hey gang! > > > > > I tried to create a new application this evening with... > > > > > #> ./web2py.py -S testapp > > > > > and the application builds in the "applications" directory, but I > > > don't see "db.py" file in the "models" directory. Listed below is > > > what I have in the models directory. > > > > > -rw-r--r-- 1 root staff 649 2009-04-29 10:47 0_imports.py > > > -rw-r--r-- 1 root staff 1296 2009-04-29 14:14 0.py > > > -rw-r--r-- 1 root staff 2290 2009-05-23 13:36 access.py > > > -rw-r--r-- 1 root staff 1262 2009-05-11 00:50 menu.py > > > > > Did something change that I was not aware of? I can't find a... > > > > > db = SQLDB(... > > > > > entry in any of the files in this directory. What changed? > > > > > Here is the current version I'm working with. > > > > > r...@vm-debian-5:/opt/web2py# cat VERSION > > > Version 1.63.5 (2009-06-03 23:35:00) > > > > > I just tried this at the Web2Py UI and "db.py" successfully creates. > > > Something is broke with... > > > > > #> ./web2py.py -S > > > > > Thank you, > > > Christopher --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:23720] Should we be tracking bugs and enhancement requests at Launchpad?
All: I'm not sure if this has been discussed in the past and would like to hear more if we should be tracking bugs and enhancement requests at Launchpad? https://launchpad.net/web2py Wouldn't it make code management and processes more manageable and more folks could aid with QA. Thank you, Christopher --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:23744] Re: Should we be tracking bugs and enhancement requests at Launchpad?
Massimo, Thank you for the update. My apologies since this was discussed earlier. Christopher mdipierro wrote: > Yes and no. > > We are moving to mercurial very very soon and move away from launchpad > so I would prefer we use google code for bug tracking. > It is also faster for me to access. > > Anyway, I never said that we should use bug tracking. I only asked to > first email the list to make sure you indeed found a bug. What happens > is that when you ask, it is easier for me to fix and then respond than > for me to submit a bug, fix the bug and close the ticket. > > We only have one open bug (or more like a required change in behavior) > that I know of, the one about redirection in login. I also have 3 > pending patches from Hans and Alexey. > > Massimo > > > > On Jun 9, 11:16 am, Jason Brower wrote: > > Sadly, I agree, but 1 month ago, the choice was made to stick to what we > > have now. I REALLY want that to happen. > > Regards, > > Jason Brower > > > > On Tue, 2009-06-09 at 08:56 -0700, cesmiga wrote: > > > All: > > > > > I'm not sure if this has been discussed in the past and would like to > > > hear more if we should be tracking bugs and enhancement requests at > > > Launchpad? > > > > >https://launchpad.net/web2py > > > > > Wouldn't it make code management and processes more manageable and > > > more folks could aid with QA. > > > > > Thank you, > > > Christopher --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:23942] Web2Py Informix Support
Massimo, Did the information I sent via email about "More Web2Py InformixDb testing" help with the code corrections needed to better support Informix with Web2Py? Please let me know how I can help in this area to make Informix a success with Web2Py. Thank you, Christopher --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:27530] Informix issue where Web2Py creates the necessary table but doesn't know it was created.
I have an Informix database (testdb) where web2py creates the necessary table but returns the following error from the web UI. I have looked through the code, but haven't been able to locate the exact area of the problem. Would someone point me in the direction of where to specifically look for this. Traceback (most recent call last): File "/opt/web2py_svn_rev1141/gluon/restricted.py", line 178, in restricted exec ccode in environment File "/opt/web2py_svn_rev1141/applications/testapp/models/db.py", line 57, in auth.define_tables() # creates all needed tables File "/opt/web2py_svn_rev1141/gluon/tools.py", line 528, in define_tables self.__get_migrate(self.settings.table_user_name, migrate)) File "/opt/web2py_svn_rev1141/gluon/sql.py", line 1008, in define_table query = t._create(migrate=migrate) File "/opt/web2py_svn_rev1141/gluon/sql.py", line 1343, in _create self._db._execute(query) File "/opt/web2py_svn_rev1141/gluon/sql.py", line 902, in self._execute = lambda a: self._cursor.execute(a[:-1]) ProgrammingError: SQLCODE -310 in EXECUTE: S0001: Base table or viewed table already exists Informix returns the -310 which means... -310Table table-name already exists in database. This statement tries to create a table with the name that is shown, but one with that name already exists. Only one table with a given name can exist in a single database. (In an ANSI-compliant database, the name of the user that created a table name qualifies it, so one table of a given name per user can exist.) Check the spelling of the name; if it is as you intended, and you are sure it should not exist, check that you are using the right database. You can review the names of all tables in this database by querying systables as follows: SELECT tabname FROM systables WHERE tabid > 99 This statement will display only names of permanent tables, not temporary tables. Temporary tables do not appear in systables. If the name does not appear, end your database session and start a new one. Temporary tables will be dropped. Thank you, Christopher --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py-users" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:30446] I'd like to see people add their web2py developed sites to an area of "www.web2py.com"?
All: Do you all believe it would be advantageous to the project for people to add their web2py developed sites to an area of "www.web2py.com"? The reason I ask this question is because I believe our community would grow if people could see what folks are doing with Web2Py and the expertise in our community. This would help promote Web2py. :-) Christopher --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py-users" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:30665] Enable line numbering in the admin interface editor???
All: Is there a way to enable line numbering in the admin interface editor? Thank you, Christopher --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py-users" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:30725] Re: Enable line numbering in the admin interface editor???
suiato wrote: > On 9月11日, 午前10:00, cesmiga wrote: > > All: > > > > Is there a way to enable line numbering in the admin interface editor? > > i see line numbers on the web2py editor when editing models/ > controllers/views. > what is 'admin interface editor'? > > > > > Thank you, > > Christopher This is the same editor you describe for editing models/controllers/ views Christopher --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py-users" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:33264] Re: web2py 1.68.1 is OUT
Massimo, Excellent news about Ingres support in Web2Py. There is no other web framework that supports as many databases that I know of. Just a reminder, would you have someone add Ingres information to the home page at... http://www.web2py.com/ Thanks, Christopher On Oct 20, 1:56 pm, mdipierro wrote: > Please try it! > > 1.68.1 > New cron > New hindi and spanish translation > cached uploads allow for progress bars (thanks AndCycle) > ingres support (thanks Chris) > legacy database support for db2, mssql with non-int primary keys > (thanks Denes) > default setting of content-type (this may cause strange behavior in > old apps when downloading images) > IS_UPPER and IS_LOWER works with unicode > CLENUP not takes regex of allowed/now allowed chartares > New rewrite.py allows dynamic routes > Better error messages for IS_INT_* and IS_FLOAT_* > > Massimo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py-users" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:36380] Re: web2py users growth
All: Is Web2Py being marketed to a broader audience. Do we have media coverage in trade and developer magazines. Are other people writing books for Web2Py. This project is the best I know of and I know others would feel the same if they were informed. How will Web2Py be pushed to a broader audience? Thanks, Christopher Smiga On Dec 2, 9:21 pm, mdipierro wrote: > I agree but that is difficult to measure. > > On Dec 2, 7:59 pm, waTR wrote: > > > I think a more valid statistic is # of postings/ month. I would argue > > an inactive user is not necessarily a good thing. Not to throw water > > on the great news or anything. It is still a positive indicator that > > the user numbers are growing. Go web2py!! > > > On Dec 2, 3:58 pm, mdipierro wrote: > > > > yes. > > > > On Dec 2, 4:28 pm, DenesL wrote: > > > > > y-axis: users, > > > > x-axis: days(?) > > > > > On Dec 2, 2:48 pm, mdipierro wrote: > > > > > >https://www.web2py.com/examples/static/users.jpg -- You received this message because you are subscribed to the Google Groups "web2py-users" group. To post to this group, send email to web...@googlegroups.com. To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/web2py?hl=en.
[web2py:11613] Re: web2py 1.48 is OUT
Massimo, I downloaded Web2Py 1.48 and see you added InformixDB support. Here is a silly question. Is there some sort of standard test plan or should I develop one. I don't mind developing my own test plan since I do this professionally anyway. Thank you, Christopher Smiga Software Test Engineer Cisco Systems - Video Technology Group mdipierro wrote: > I posted web2py 1.48. Many many many small changes. faster and better > than ever. > Please give it a try and check if any of your apps break. > > Massimo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:11641] Re: web2py 1.48 is OUT
Massimo, I'll test it this week and get back to you. Christopher mdipierro wrote: > Hi Christopher, > > thanks for your interest. > > I did not add informix support yet. It is very close to being > supported but I do not have informix therefore it has never been > tested yet. Some debugging may be needed. > > Would you be able to run this test: > > cd gluon/ > edit sql.py, in the last doctest, replace connection string in > SQLDB() with something like > SQLDB('informix://username:[EMAIL PROTECTED]/database') > python sql.py > > please send me the output of the tests or, if you can, try fix what > breaks. > > If you could help writing more and better tests that would be great. > > Massimo > > > On Nov 10, 10:06 pm, cesmiga <[EMAIL PROTECTED]> wrote: > > Massimo, > > > > I downloaded Web2Py 1.48 and see you added InformixDB support. Here > > is a silly question. Is there some sort of standard test plan or > > should I develop one. I don't mind developing my own test plan since > > I do this professionally anyway. > > > > Thank you, > > Christopher Smiga > > Software Test Engineer > > Cisco Systems - Video Technology Group > > > > mdipierro wrote: > > > I posted web2py 1.48. Many many many small changes. faster and better > > > than ever. > > > Please give it a try and check if any of your apps break. > > > > > Massimo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:11885] Re: web2py foundation
Massimo, I look forward to hearing more about this. The idea is very exciting. Christopher mdipierro wrote: > Actually I was thinking about something similar but also different. > > I want to create an association of users, not a foundation. The > purpose of the association would be: > > 1) promote the use of free software in general (not just web2py) > 2) select the best open software that works with web2py (cherokee, > linux, postgresql, etc.) > 3) certify members as experts in web2py and in those other software > technologies selected by the members > 4) provide a portal where members (and member companies) can host > their profile and be contacted > 5) help members work together to compete with large consulting > companies for jobs. > 6) help members with legal issues when dealing with clients > 7) maintain a database of projects completed by the members and > accessible to members only > > I want us to compete with this: > > http://www-935.ibm.com/services/us/gbs/bus/html/bcs_index.html > > not with Plone or other small Python projects. > > Think about it. There are more than 600 people on this list, growing > exponentially. We already distributed all over the world. We are all > very skilled people. We are unified by the love for the same > technologies. We do have a better product than the competition. We > only need more organization. Why do we need an employer? In > manufacturing there is a need for capital in order to buy the "means > of production". Thus investors provide capital and get shares of the > revenue in return. We do not need "means of production", we have > laptops, we do not need an office, we do not need investments, and we > do not need to share our profit. We just need to be recognized as > leaders in our field and attract clients. I think we can do that. > > Who is in? > > There are legal issues to be resolved. The web site will be up soon > for people to sign up, take a quiz, and become members. > > Massimo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:11887] Re: web2py 1.48 is OUT (Informix)
Massimo, Just want to give you an update on the Informix test schedule. I didn't have a test server so I built a box with Solaris UNIX. Next week I'll install Informix and build the database to begin work. My apologies for not having this done by weekend as committed. Before I forget. My plan is to utilize this system as a dedicated Informix/ Web2Py test and development server. Thank you, Christopher mdipierro wrote: > Hi Christopher, > > thanks for your interest. > > I did not add informix support yet. It is very close to being > supported but I do not have informix therefore it has never been > tested yet. Some debugging may be needed. > > Would you be able to run this test: > > cd gluon/ > edit sql.py, in the last doctest, replace connection string in > SQLDB() with something like > SQLDB('informix://username:[EMAIL PROTECTED]/database') > python sql.py > > please send me the output of the tests or, if you can, try fix what > breaks. > > If you could help writing more and better tests that would be great. > > Massimo > > > On Nov 10, 10:06 pm, cesmiga <[EMAIL PROTECTED]> wrote: > > Massimo, > > > > I downloaded Web2Py 1.48 and see you added InformixDB support. Here > > is a silly question. Is there some sort of standard test plan or > > should I develop one. I don't mind developing my own test plan since > > I do this professionally anyway. > > > > Thank you, > > Christopher Smiga > > Software Test Engineer > > Cisco Systems - Video Technology Group > > > > mdipierro wrote: > > > I posted web2py 1.48. Many many many small changes. faster and better > > > than ever. > > > Please give it a try and check if any of your apps break. > > > > > Massimo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:12121] Re: web2py book in PDF at $12.50
Massimo, I just ordered the book also. Thank you for making this much more affordable. Are you going to link this eBook on the web site? I hope you do so more people will purchase it and assist in growing the community. Christopher Smiga mdipierro wrote: > http://www.lulu.com/content/4968879 > > This is without the Wiley cover since Wiley could not accommodate the > requirements but it is the same book. > If you buy it, let me know if lulu.com works for you. > > Please do not redistribute it or you get me in trouble. > > Massimo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:20302] Q: Will "wwwSQLdesigner" be added into the "Web2Py" release cycle???
Massimo, I don't know if this question has been asked before, but is it possible to include "wwwSQLdesigner" into "Web2Py"? wwwSQLdesigner http://code.google.com/p/wwwsqldesigner/ I have been playing with this web based, JavaScript ERM application and it is pretty cool. I hope the author continues to develop it or others are contribute. This sweet baby really helps people develop "Web2Py" models. "wwwSQLdesigner" + "Web2Py" is the "icing on the cake"! Is anyone associated with "Web2Py" assisting with development of "wwwSQLdesigner". I see the... [ Generate SQL (web2py) ] button option when configured. This stuff ROCKS!!! Thank you, Christopher --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:22376] How to create an application from Web2Py shell and DAL
All: I'm looking for documentation about how to create a web2py application from the shell. Does anyone have information on this? Also, does anyone have information about the Web2Py shell and/or DAL. Thank you, Christopher --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:22385] Re: How to create an application from Web2Py shell and DAL
Massimo, Here is what I see when I try to create a new application with the latest Web2Py. From the webUI, I have no problem creating a new application. Christopher ++ r...@vm-debian-5:/opt/web2py# ./web2py.py -S testApp WARNING:root:Informix support is experimental WARNING:root:GUI not available because Tk library is not installed default applications appear to be installed already web2py Enterprise Web Framework Created by Massimo Di Pierro, Copyright 2007-2009 Version 1.62.3 (2009-05-19 23:25:03) Database drivers available: SQLite3, Postgre, Informix Starting cron... application testApp does not exist, create (y/n)?y Traceback (most recent call last): File "./web2py.py", line 20, in gluon.widget.start(cron=True) File "/opt/web2py/gluon/widget.py", line 752, in start import_models=options.import_models, startfile=options.run) File "/opt/web2py/gluon/shell.py", line 141, in run gluon.fileutils.untar('welcome.tar', adir) File "/opt/web2py/gluon/fileutils.py", line 151, in untar _extractall(file, dir) File "/opt/web2py/gluon/fileutils.py", line 133, in _extractall return _cls(filename, 'r').extractall(path, members) File "/usr/lib/python2.5/tarfile.py", line 1062, in __init__ fileobj = file(name, self.mode) IOError: [Errno 2] No such file or directory: 'welcome.tar' + Here is what I see in the directory. r...@vm-debian-5:/opt/web2py# ls -l applications/testApp/ total 4 drwxr-xr-x 2 root root 4096 2009-05-22 06:35 cron mdipierro wrote: > Have you tried? > > web2py.py -h > > On May 22, 8:47 am, cesmiga wrote: > > All: > > > > I'm looking for documentation about how to create a web2py application > > from the shell. Does anyone have information on this? Also, does > > anyone have information about the Web2Py shell and/or DAL. > > > > Thank you, > > Christopher --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:22387] Re: How to create an application from Web2Py shell and DAL
Massimo, I'm not sure if this is a related issue, but I see the following when I run... r...@vm-debian-5:/opt/web2py# ./web2py.py -S admin -M WARNING:root:Informix support is experimental WARNING:root:GUI not available because Tk library is not installed default applications appear to be installed already web2py Enterprise Web Framework Created by Massimo Di Pierro, Copyright 2007-2009 Version 1.62.3 (2009-05-19 23:25:03) Database drivers available: SQLite3, Postgre, Informix Starting cron... Traceback (most recent call last): File "/opt/web2py/gluon/restricted.py", line 107, in restricted exec ccode in environment File "applications/admin/models/access.py", line 34, in port = int(request.env.server_port) TypeError: int() argument must be a string or a number, not 'NoneType' The syntax listed below works fine without the -M r...@vm-debian-5:/opt/web2py# ./web2py.py -S admin WARNING:root:Informix support is experimental WARNING:root:GUI not available because Tk library is not installed default applications appear to be installed already web2py Enterprise Web Framework Created by Massimo Di Pierro, Copyright 2007-2009 Version 1.62.3 (2009-05-19 23:25:03) Database drivers available: SQLite3, Postgre, Informix Starting cron... WARNING:root:import IPython error, use default python shell Python 2.5.2 (r252:60911, Jan 4 2009, 17:40:26) [GCC 4.3.2] on linux2 Type "help", "copyright", "credits" or "license" for more information. (InteractiveConsole) >>> Christopher mdipierro wrote: > You found a bug! > > Will fix it now. > > On May 22, 9:35 am, cesmiga wrote: > > Massimo, > > > > Here is what I see when I try to create a new application with the > > latest Web2Py. From the webUI, I have no problem creating a new > > application. > > > > Christopher > > > > ++ > > > > r...@vm-debian-5:/opt/web2py# ./web2py.py -S testApp > > WARNING:root:Informix support is experimental > > WARNING:root:GUI not available because Tk library is not installed > > default applications appear to be installed already > > web2py Enterprise Web Framework > > Created by Massimo Di Pierro, Copyright 2007-2009 > > Version 1.62.3 (2009-05-19 23:25:03) > > Database drivers available: SQLite3, Postgre, Informix > > Starting cron... > > application testApp does not exist, create (y/n)?y > > Traceback (most recent call last): > > File "./web2py.py", line 20, in > > gluon.widget.start(cron=True) > > File "/opt/web2py/gluon/widget.py", line 752, in start > > import_models=options.import_models, startfile=options.run) > > File "/opt/web2py/gluon/shell.py", line 141, in run > > gluon.fileutils.untar('welcome.tar', adir) > > File "/opt/web2py/gluon/fileutils.py", line 151, in untar > > _extractall(file, dir) > > File "/opt/web2py/gluon/fileutils.py", line 133, in _extractall > > return _cls(filename, 'r').extractall(path, members) > > File "/usr/lib/python2.5/tarfile.py", line 1062, in __init__ > > fileobj = file(name, self.mode) > > IOError: [Errno 2] No such file or directory: 'welcome.tar' > > > > + > > > > Here is what I see in the directory. > > > > r...@vm-debian-5:/opt/web2py# ls -l applications/testApp/ > > total 4 > > drwxr-xr-x 2 root root 4096 2009-05-22 06:35 cron > > > > mdipierro wrote: > > > Have you tried? > > > > > web2py.py -h > > > > > On May 22, 8:47 am, cesmiga wrote: > > > > All: > > > > > > I'm looking for documentation about how to create a web2py application > > > > from the shell. Does anyone have information on this? Also, does > > > > anyone have information about the Web2Py shell and/or DAL. > > > > > > Thank you, > > > > Christopher > > > > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:22390] Re: How to create an application from Web2Py shell and DAL
Massimo, My apologies, but I'm having trouble finding the trunk. Would you point me to the location of that for download. Thank you, Christopher mdipierro wrote: > fixed. try trunk again. > > > On May 22, 9:35 am, cesmiga wrote: > > Massimo, > > > > Here is what I see when I try to create a new application with the > > latest Web2Py. From the webUI, I have no problem creating a new > > application. > > > > Christopher > > > > ++ > > > > r...@vm-debian-5:/opt/web2py# ./web2py.py -S testApp > > WARNING:root:Informix support is experimental > > WARNING:root:GUI not available because Tk library is not installed > > default applications appear to be installed already > > web2py Enterprise Web Framework > > Created by Massimo Di Pierro, Copyright 2007-2009 > > Version 1.62.3 (2009-05-19 23:25:03) > > Database drivers available: SQLite3, Postgre, Informix > > Starting cron... > > application testApp does not exist, create (y/n)?y > > Traceback (most recent call last): > > File "./web2py.py", line 20, in > > gluon.widget.start(cron=True) > > File "/opt/web2py/gluon/widget.py", line 752, in start > > import_models=options.import_models, startfile=options.run) > > File "/opt/web2py/gluon/shell.py", line 141, in run > > gluon.fileutils.untar('welcome.tar', adir) > > File "/opt/web2py/gluon/fileutils.py", line 151, in untar > > _extractall(file, dir) > > File "/opt/web2py/gluon/fileutils.py", line 133, in _extractall > > return _cls(filename, 'r').extractall(path, members) > > File "/usr/lib/python2.5/tarfile.py", line 1062, in __init__ > > fileobj = file(name, self.mode) > > IOError: [Errno 2] No such file or directory: 'welcome.tar' > > > > +++++ > > > > Here is what I see in the directory. > > > > r...@vm-debian-5:/opt/web2py# ls -l applications/testApp/ > > total 4 > > drwxr-xr-x 2 root root 4096 2009-05-22 06:35 cron > > > > mdipierro wrote: > > > Have you tried? > > > > > web2py.py -h > > > > > On May 22, 8:47 am, cesmiga wrote: > > > > All: > > > > > > I'm looking for documentation about how to create a web2py application > > > > from the shell. Does anyone have information on this? Also, does > > > > anyone have information about the Web2Py shell and/or DAL. > > > > > > Thank you, > > > > Christopher > > > > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:22392] Re: How to create an application from Web2Py shell and DAL
Massimo, I found the SVN trunk and downloaded the code. The new code successfully creates a new application, but I see a problem when running the following. r...@vm-debian-5:~/web2py_trunk/web2py.googlecode.com/svn/trunk# ./ web2py.py -S admin -M WARNING:root:Informix support is experimental WARNING:root:GUI not available because Tk library is not installed default applications appear to be installed already web2py Enterprise Web Framework Created by Massimo Di Pierro, Copyright 2007-2009 Version 1.62.3 (2009-05-22 09:54:53) Database drivers available: SQLite3, Postgre, Informix Starting cron... Traceback (most recent call last): File "/root/web2py_trunk/web2py.googlecode.com/svn/trunk/gluon/ restricted.py", line 107, in restricted exec ccode in environment File "applications/admin/models/access.py", line 34, in port = int(request.env.server_port) TypeError: int() argument must be a string or a number, not 'NoneType' --- AND --- r...@vm-debian-5:~/web2py_trunk/web2py.googlecode.com/svn/trunk# ./ web2py.py -S testapp -M WARNING:root:Informix support is experimental WARNING:root:GUI not available because Tk library is not installed default applications appear to be installed already web2py Enterprise Web Framework Created by Massimo Di Pierro, Copyright 2007-2009 Version 1.62.3 (2009-05-22 09:54:53) Database drivers available: SQLite3, Postgre, Informix Starting cron... Traceback (most recent call last): File "/root/web2py_trunk/web2py.googlecode.com/svn/trunk/gluon/ restricted.py", line 107, in restricted exec ccode in environment File "applications/testapp/models/access.py", line 34, in port = int(request.env.server_port) TypeError: int() argument must be a string or a number, not 'NoneType' Christopher cesmiga wrote: > Massimo, > > My apologies, but I'm having trouble finding the trunk. Would you > point me to the location of that for download. > > Thank you, > Christopher > > mdipierro wrote: > > fixed. try trunk again. > > > > > > On May 22, 9:35 am, cesmiga wrote: > > > Massimo, > > > > > > Here is what I see when I try to create a new application with the > > > latest Web2Py. From the webUI, I have no problem creating a new > > > application. > > > > > > Christopher > > > > > > ++ > > > > > > r...@vm-debian-5:/opt/web2py# ./web2py.py -S testApp > > > WARNING:root:Informix support is experimental > > > WARNING:root:GUI not available because Tk library is not installed > > > default applications appear to be installed already > > > web2py Enterprise Web Framework > > > Created by Massimo Di Pierro, Copyright 2007-2009 > > > Version 1.62.3 (2009-05-19 23:25:03) > > > Database drivers available: SQLite3, Postgre, Informix > > > Starting cron... > > > application testApp does not exist, create (y/n)?y > > > Traceback (most recent call last): > > > File "./web2py.py", line 20, in > > > gluon.widget.start(cron=True) > > > File "/opt/web2py/gluon/widget.py", line 752, in start > > > import_models=options.import_models, startfile=options.run) > > > File "/opt/web2py/gluon/shell.py", line 141, in run > > > gluon.fileutils.untar('welcome.tar', adir) > > > File "/opt/web2py/gluon/fileutils.py", line 151, in untar > > > _extractall(file, dir) > > > File "/opt/web2py/gluon/fileutils.py", line 133, in _extractall > > > return _cls(filename, 'r').extractall(path, members) > > > File "/usr/lib/python2.5/tarfile.py", line 1062, in __init__ > > > fileobj = file(name, self.mode) > > > IOError: [Errno 2] No such file or directory: 'welcome.tar' > > > > > > + > > > > > > Here is what I see in the directory. > > > > > > r...@vm-debian-5:/opt/web2py# ls -l applications/testApp/ > > > total 4 > > > drwxr-xr-x 2 root root 4096 2009-05-22 06:35 cron > > > > > > mdipierro wrote: > > > > Have you tried? > > > > > > > web2py.py -h > > > > > > > On May 22, 8:47 am, cesmiga wrote: > > > > > All: > > > > > > > > I'm looking for documentation about how to create a web2py application > > > > > from the shell. Does anyone have information on this? Also, does > > > > > anyone have information about the Web2Py shell and/or DAL. > > > > > > > > Thank you, > > > > > Christopher > > > > > > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:22404] Re: How to create an application from Web2Py shell and DAL
Massimo, The newly created application (testapp) will not load as a module in the shell when the "welcome" app does. Listed is what I see with the latest trunk fix. TESTAPP APP r...@vm-debian-5:~/web2py.googlecode.com/svn/trunk# ./web2py.py -S testapp -M WARNING:root:Informix support is experimental WARNING:root:GUI not available because Tk library is not installed default applications appear to be installed already web2py Enterprise Web Framework Created by Massimo Di Pierro, Copyright 2007-2009 Version 1.62.3 (2009-05-22 09:54:53) Database drivers available: SQLite3, Postgre, Informix Starting cron... Traceback (most recent call last): File "/root/web2py.googlecode.com/svn/trunk/gluon/restricted.py", line 107, in restricted exec ccode in environment File "applications/testapp/models/access.py", line 34, in port = int(request.env.server_port) TypeError: int() argument must be a string or a number, not 'NoneType' WELCOME APP r...@vm-debian-5:~/web2py.googlecode.com/svn/trunk# ./web2py.py -S welcome -M WARNING:root:Informix support is experimental WARNING:root:GUI not available because Tk library is not installed default applications appear to be installed already web2py Enterprise Web Framework Created by Massimo Di Pierro, Copyright 2007-2009 Version 1.62.3 (2009-05-22 09:54:53) Database drivers available: SQLite3, Postgre, Informix Starting cron... WARNING:root:import IPython error, use default python shell Python 2.5.2 (r252:60911, Jan 4 2009, 17:40:26) [GCC 4.3.2] on linux2 Type "help", "copyright", "credits" or "license" for more information. (InteractiveConsole) Christopher mdipierro wrote: > This is not a bug. Not all modules can be executed from the shell. The > admin app has modules that cannot. Try with welcome or your own app. > > massimo > > On May 22, 10:40 am, cesmiga wrote: > > Massimo, > > > > I found the SVN trunk and downloaded the code. The new code > > successfully creates a new application, but I see a problem when > > running the following. > > > > r...@vm-debian-5:~/web2py_trunk/web2py.googlecode.com/svn/trunk# ./ > > web2py.py -S admin -M > > WARNING:root:Informix support is experimental > > WARNING:root:GUI not available because Tk library is not installed > > default applications appear to be installed already > > web2py Enterprise Web Framework > > Created by Massimo Di Pierro, Copyright 2007-2009 > > Version 1.62.3 (2009-05-22 09:54:53) > > Database drivers available: SQLite3, Postgre, Informix > > Starting cron... > > Traceback (most recent call last): > > File "/root/web2py_trunk/web2py.googlecode.com/svn/trunk/gluon/ > > restricted.py", line 107, in restricted > > exec ccode in environment > > File "applications/admin/models/access.py", line 34, in > > port = int(request.env.server_port) > > TypeError: int() argument must be a string or a number, not 'NoneType' > > > > --- AND --- > > > > r...@vm-debian-5:~/web2py_trunk/web2py.googlecode.com/svn/trunk# ./ > > web2py.py -S testapp -M > > WARNING:root:Informix support is experimental > > WARNING:root:GUI not available because Tk library is not installed > > default applications appear to be installed already > > web2py Enterprise Web Framework > > Created by Massimo Di Pierro, Copyright 2007-2009 > > Version 1.62.3 (2009-05-22 09:54:53) > > Database drivers available: SQLite3, Postgre, Informix > > Starting cron... > > Traceback (most recent call last): > > File "/root/web2py_trunk/web2py.googlecode.com/svn/trunk/gluon/ > > restricted.py", line 107, in restricted > > exec ccode in environment > > File "applications/testapp/models/access.py", line 34, in > > port = int(request.env.server_port) > > TypeError: int() argument must be a string or a number, not 'NoneType' > > > > Christopher > > > > cesmiga wrote: > > > Massimo, > > > > > My apologies, but I'm having trouble finding the trunk. Would you > > > point me to the location of that for download. > > > > > Thank you, > > > Christopher > > > > > mdipierro wrote: > > > > fixed. try trunk again. > > > > > > On May 22, 9:35 am, cesmiga wrote: > > > > > Massimo, > > > > > > > Here is what I see when I try to create a new application with the > > > > > latest Web2Py. From the webUI, I have no problem creating a new > > > > > application. > > > > > > > Christopher > > > > > > >
[web2py:22739] Is there a way to place apps in a separate directory from the "applications" directory?
All: I've been looking around and was wondering if there is a way to place apps in a separate directory from the "applications" directory? From: /opt/web2py/applications To: /opt/web2py_apps Thank you, Christopher --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:22745] Re: Is there a way to place apps in a separate directory from the "applications" directory?
Virhilo, I was thinking about this approach, but was hoping for a more customizable method via web2py. Is there another way to do this aside from a sym link? Christopher virhilo wrote: > ln -s /opt/web2py_apps /opt/web2py/applications/ > > On 27 Maj, 15:55, cesmiga wrote: > > All: > > > > I've been looking around and was wondering if there is a way to place > > apps in a separate directory from the "applications" directory? > > > > From: > > /opt/web2py/applications > > > > To: > > /opt/web2py_apps > > > > Thank you, > > Christopher --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:22748] Re: Is there a way to place apps in a separate directory from the "applications" directory?
Kuba, The reason is to separate Web2Py from developed applications. The same idea is usually done with databases. Separate the data (in this case Web2Py apps) from the application (Web2Py). This should ease with upgrades and other administration/development tasks. Christopher Kuba Kucharski wrote: > What is the purpose? could you explain more? > > -- > Kuba --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:22750] Re: Is there a way to place apps in a separate directory from the "applications" directory?
Ok! I've been thinking about some of the things we discussed in this thread and it must remain simple. I'll stick with the sym link idea since anything else is more complex. After all, the reason we love "Web2Py" is because development practice utilizes the KIS (Keep It Simple) method. Thanks for all your support and thoughts. I hope I didn't take too much time from anyone since I was trying to make it more complicated than I should have. I'll smack my own hand for this one. ;-) Thanks again, Christopher cesmiga wrote: > Kuba, > > The reason is to separate Web2Py from developed applications. The same > idea is usually done with databases. Separate the data (in this case > Web2Py apps) from the application (Web2Py). This should ease with > upgrades and other administration/development tasks. > > Christopher > > > > Kuba Kucharski wrote: > > What is the purpose? could you explain more? > > > > -- > > Kuba --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:22824] Re: web2py and Debian
Massimo, This is a great idea. I use Debian exclusively and to have Web2Py in the repository does bring credibility to the project. Django was added to the Debian repository some time ago. ;-) Here is some information for anyone interested in becoming a Debian Package Maintainer for Web2Py. http://wiki.debian.org/Maintainers Christopher mdipierro wrote: > I am told that often being int the Debian > software repositories is an indication that a project has hit the > "mainstream". > What do we do to get there? Can somebody help? > > Massimo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:22825] Re: web2py and Debian
Massimo, I forgot to mention when a package is accepted into the Debian Software Repository, there are other benefits outside of the mainstream idea. Many other Linux distributions (ie. Ubuntu, Mepis, Knoppix, etc) use the Debian Software Repository to build their bundles. There are many benefits to this. Web2Py has it going on and this is a step in the right direction. I also want to thank you for all the work you do with the project. The methods and ideas in place are refreshing. Christopher cesmiga wrote: > Massimo, > > This is a great idea. I use Debian exclusively and to have Web2Py in > the repository does bring credibility to the project. Django was > added to the Debian repository some time ago. ;-) > > Here is some information for anyone interested in becoming a Debian > Package Maintainer for Web2Py. > > http://wiki.debian.org/Maintainers > > Christopher > > > mdipierro wrote: > > I am told that often being int the Debian > > software repositories is an indication that a project has hit the > > "mainstream". > > What do we do to get there? Can somebody help? > > > > Massimo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:22829] Re: web2py and Debian
Massimo, It sure would be fun. My heaping plate of commitments and responsibilities is spilling over right now. Let me think it over and I'll get back with you. Christopher mdipierro wrote: > Want to be in charge of this? > > On May 28, 10:23 am, cesmiga wrote: > > Massimo, > > > > I forgot to mention when a package is accepted into the Debian > > Software Repository, there are other benefits outside of the > > mainstream idea. Many other Linux distributions (ie. Ubuntu, Mepis, > > Knoppix, etc) use the Debian Software Repository to build their > > bundles. > > > > There are many benefits to this. Web2Py has it going on and this is a > > step in the right direction. > > > > I also want to thank you for all the work you do with the project. The > > methods and ideas in place are refreshing. > > > > Christopher > > > > cesmiga wrote: > > > Massimo, > > > > > This is a great idea. I use Debian exclusively and to have Web2Py in > > > the repository does bring credibility to the project. Django was > > > added to the Debian repository some time ago. ;-) > > > > > Here is some information for anyone interested in becoming a Debian > > > Package Maintainer for Web2Py. > > > > >http://wiki.debian.org/Maintainers > > > > > Christopher > > > > > mdipierro wrote: > > > > I am told that often being int the Debian > > > > software repositories is an indication that a project has hit the > > > > "mainstream". > > > > What do we do to get there? Can somebody help? > > > > > > Massimo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:22836] Re: web2py and Debian
AchipA, I'm not a registered Debian Developer and would have to go through the process. Would you be interested in this area? I have tinkered with creating a *.deb package, but never completed the task since the effort had no purpose other than just doing it. Christopher AchipA wrote: > Christopher, are you a registered Debian developer ? I have packaged > web2py for debian and Ubuntu but don't have a registered status so > can't push them into official repositories. > > On May 28, 7:02 pm, cesmiga wrote: > > Massimo, > > > > It sure would be fun. My heaping plate of commitments and > > responsibilities is spilling over right now. Let me think it over and > > I'll get back with you. > > > > Christopher > > > > mdipierro wrote: > > > Want to be in charge of this? > > > > > On May 28, 10:23 am, cesmiga wrote: > > > > Massimo, > > > > > > I forgot to mention when a package is accepted into the Debian > > > > Software Repository, there are other benefits outside of the > > > > mainstream idea. Many other Linux distributions (ie. Ubuntu, Mepis, > > > > Knoppix, etc) use the Debian Software Repository to build their > > > > bundles. > > > > > > There are many benefits to this. Web2Py has it going on and this is a > > > > step in the right direction. > > > > > > I also want to thank you for all the work you do with the project. The > > > > methods and ideas in place are refreshing. > > > > > > Christopher > > > > > > cesmiga wrote: > > > > > Massimo, > > > > > > > This is a great idea. I use Debian exclusively and to have Web2Py in > > > > > the repository does bring credibility to the project. Django was > > > > > added to the Debian repository some time ago. ;-) > > > > > > > Here is some information for anyone interested in becoming a Debian > > > > > Package Maintainer for Web2Py. > > > > > > > http://wiki.debian.org/Maintainers > > > > > > > Christopher > > > > > > > mdipierro wrote: > > > > > > I am told that often being int the Debian > > > > > > software repositories is an indication that a project has hit the > > > > > > "mainstream". > > > > > > What do we do to get there? Can somebody help? > > > > > > > > Massimo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:22846] Re: web2py and Debian
Jurgis, That is a great idea and it would be a quick solution. Ok! I don't mean to go over the deep end on this, but there are many things to consider here. What about YUM for RPM, MSI (Microsoft Installer) and OS-X packages. Regardless of the platform package management releases, I have been thinking about the pace (fast) at which Web2Py is developed. By the time a package is sent into a package management repository (ie. Debian), the software would be very old. Has there been any discussion to modify the release cycle to something that is smoother. I'm not complaining because I like the rapid enhancements, modifications, and fixes. On the other hand, should we consider some a release process? I'm just thinking out loud and know it's another layer in the software life cycle. Bureaucracy and red tape is not a good thing in my opinion. Thank you for reading my ramblings on this. Having Web2Py in the Debian Software Repository is a good thought, but what is the final cost/benefit to it. Presently Web2Py so easy to install, even a Cave Man could do it? :-) Christopher Jurgis wrote: > > I have packaged > > web2py for debian and Ubuntu but don't have a registered status so > > can't push them into official repositories. > > would be cool, if one could download them from some universe place -- > maybe web2py.com for the start? :) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---
[web2py:22928] Re: new DAL
Massimo, Will the new DAL be backwards compatible with the existing DAL? The reason I ask is because I have been using "WWW SQL Designer" and hope to continue using it with the new DAL. Thank you, Christopher mdipierro wrote: > I am finishing a rewrite of the new DAL. It may be done in one week or > two but I could use some help. > I can explain exactly what to do. I need people to write and run tests > for the supported backends. > > It will be beackward compatible and have some new features including > dealing with tables that do not have the 'id' field, realnames > different than virtualnames for tables and columns, a certain degree > of fail safety when multiple databases present, and be very modular > and extensible (to add new engines and new fields and add methods to > handle the fields values). It is also be smaller and I think faster > than the old one. > > Yes, this is possible and already have it working for sqlite. > > Let me know if you can help. I need a serious commitment and proven > expertise on this list. > > Massimo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~--~~~~--~~--~--~---