Re: [web2py] Re: new Starter app (alternative to Welcome app)

2016-03-22 Thread Jason Brower
I agree Massimo. We should have a small wizard to help select what kind of layout we would want. Blank Stupid CSS This one Bookstrap 3 Angular example etc... On Wed, Mar 23, 2016 at 7:43 AM, Massimo Di Pierro wrote: this is really nice. We should make a list of

[web2py] Creating tutorial videos.

2014-08-30 Thread Jason Brower
. BR, Jason Brower -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups web2py-users

Re: [web2py] Re: Web2py, nginx, installation on Raspberry Pi

2014-08-26 Thread Jason Brower
As crazy as it sounds, I did run that script. It was a fresh install from a NOOBS image. There has got to be some different. Just don't know what it is. BR, Jason Brower On Mon, Aug 25, 2014 at 1:20 AM, Art Aquino art9...@gmail.com wrote: Run this script: scripts/setup-web2py-nginx-uwsgi

[web2py] Informating when there is a database change.

2014-07-04 Thread Jason Brower
It would be nice if there was some way for us to see a database change happening. In my production environment I had a big migration happening, but I didn't know this and started getting unexpected time outs all the time. I could get into the admin side and it would have been nice to see that a

[web2py] We need a whats new section in the Web2py Admin page.

2014-03-31 Thread Jason Brower
It would be nice to have a way that you give your version to a server and it responds with what is new both security, stability, and features. It's a little annoying to see an update and have to check the features to see if it is worth it to do the update. BR, Jason Brower -- Resources: - http

[web2py] Feature Request: IS_IN_SET with list:string field type

2014-03-29 Thread Jason Brower
I would love to have a list set with strings but I am able to define if they should be of a certain string type. Does this already exist and I did it wrong, or would this be a good idea to implement. BR, Jason Brower -- Resources: - http://web2py.com - http://web2py.com/book (Documentation

[web2py] Re: Feature Request: IS_IN_SET with list:string field type

2014-03-29 Thread Jason Brower
', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday')) On Sat, 2014-03-29 at 14:50 +0200, Jason Brower wrote: I would love to have a list set with strings but I am able to define if they should be of a certain string type. Does this already exist and I did it wrong, or would this be a good idea

[web2py] Using routes and a subdomain for the ultimate in routing power!

2014-03-26 Thread Jason Brower
: routers = dict( BASE = dict(default_application='melodigram'), ) Does this make sense? BR, Jason Brower -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report

Re: [web2py] Re: Problems with the server stalling out. Setting up debuging.

2014-03-24 Thread Jason Brower
is that it's handle requests right now just fine. BR, Jason Brower On Sun, 2014-02-02 at 12:09 -0800, Niphlod wrote: seems related to apache and timeouts... https://groups.google.com/forum/#!topic/modwsgi/UqmMeV0lhC8 BTW: odd errors and unforgiving syntax complexity is what moved me (among many

[web2py] Copying the database...

2014-03-06 Thread Jason Brower
://username:password@localhost/mydb' -Y 'sqlite://backup.sqlite' And then copy the entire app over to my computer for testing? BR, Jason Brower -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list

[web2py] Virtual Fields not working on print.

2014-02-19 Thread Jason Brower
I have this in the model... import uuid import os import pygeoip gi = pygeoip.GeoIP(os.path.join(request.folder, 'private', 'GeoIP.dat')) def get_country(row): return gi.country_code_by_addr(row.from_where) # -*- coding: utf-8 -*- db.define_table('melodigram_play',

[web2py] Third-party image grabs being redirected...

2014-02-13 Thread Jason Brower
is clickable and goes to just the image and not the cool looking view I am working on that has sound added. Is there a way to catch the situation when the image is pulled alone and then redirect them to the correct location based on that image or url? BR, Jason Brower -- Resources: - http://web2py.com

[web2py] Autodelete, uploadseparate: implementing in production.

2014-02-10 Thread Jason Brower
is the autodelete, this has no effect on current data correct? So any extra files in the system because I neglected to put this field type in are simply going to just be there in the system, right? BR, Jason Brower -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http

Re: [web2py] Problems with the server stalling out. Setting up debuging.

2014-02-04 Thread Jason Brower
HMM, the processes are very fast and never take long. maybe 5 seconds, but most of the time 1 or 2 seconds. Do I really need create a queing server for this? It's going to be a lot of database reading to make it happen smoothly. BR, Jason Brower On Tue, 2014-02-04 at 07:05 -0800, Niphlod wrote

Re: [web2py] Problems with the server stalling out. Setting up debuging.

2014-02-03 Thread Jason Brower
Thanks for the pointers! I run two programs... avconv (ffmpeg) and sox both handle file conversions at the moment an upload happens. They bail pretty easily if there was an error. They are using files I have stored according to my model. BR, Jason Brower On Mon, 2014-02-03 at 19:08 +

Re: [web2py] Re: Problems with the server stalling out. Setting up debuging.

2014-02-02 Thread Jason Brower
Have others had issues similar to this on Amazon? Takes a bit of effort to do such things, and eventually I will need many of the services amazon provide to import the sites abilities. Like S3 and the Transcoding services. It would be a big step to move away from Amazon. Additionally, I think

[web2py] Updating data in auth.user.(data)

2013-02-03 Thread Jason Brower
When I change data in auth_user.first_name for example that data doesn't change in the auth.user.first_name. In otherwords, it seems that when I make a change to a users settings in the database that information is not updated in auth.user. Is this the correct behavior? BR, Jason Brower

[web2py] Coding of the future?

2013-01-31 Thread Jason Brower
Interesting that we have coding tools built into our framework. http://www.webdesignerdepot.com/2013/01/web-ides-the-future-of-coding/ BR, Jason Brower -- --- You received this message because you are subscribed to the Google Groups web2py-users group. To unsubscribe from this group and stop

[web2py] Logging in with applications.

2013-01-18 Thread Jason Brower
I want to allow external devices, like phones, to login to my web2py. My current app runs with only JSON calls is there a way to make the login occure with JSON? BR, Jason --

Re: [web2py] Do we have to have first_name in auth tables?

2013-01-18 Thread Jason Brower
is pretty useful. :) BR, Jason Brower --       --       --

[web2py] How experimental is postgis?

2013-01-17 Thread Jason Brower
I am hoping to use it in an upcoming application.  Does anyone here have issues with this that still need to be resolved? BR, Jason --

Re: [web2py] Added Conditional Validation in the Model...

2012-12-30 Thread Jason Brower
I'll take number 2. :) Looks much cleaner to me!  I new about number 1 but was hoping to see something that sat in the model.  Thanks. BR, Jason Brower On Sun, Dec 30, 2012 at 8:16 AM, Bruno Rocha rochacbr...@gmail.com wrote:  can see two options. 1. Use form validation: def check_user(form

Re: [web2py] Added Conditional Validation in the Model...

2012-12-30 Thread Jason Brower
However.  I just tried it and was told it can't be done. OperationalError: Cannot add a UNIQUE column Error snapshot help class 'pysqlite2.dbapi2.OperationalError'(Cannot add a UNIQUE column) Bummer. BR, Jason Brower On Sun, Dec 30, 2012 at 8:16 AM, Bruno Rocha rochacbr...@gmail.com wrote

[web2py] custom forms can be annoying/confusing...

2012-12-18 Thread Jason Brower
BR, Jason Brower (the confused.) --

Re: [web2py] Sending and Recieving JSON data...

2012-11-18 Thread Jason Brower
? Anyway, the issue can be how to do it on your mobile device (depends or your needs), not the web2py as a server :) On Sun, Nov 18, 2012 at 6:06 AM, Jason Brower enco...@gmail.com wrote: I have a mobile device that sends various data using json

[web2py] Sending and Recieving JSON data...

2012-11-17 Thread Jason Brower
, Jason Brower --

[web2py] How do I include text from a file in static in my email templates?

2012-11-16 Thread Jason Brower
work as I can't use js in email messages. BR, Jason Brower --

[web2py] How do I handle more than 32768 characters in the database?

2012-11-16 Thread Jason Brower
.) BR, Jason Brower --

[web2py] I have a generated pdf file I want to return to the view...

2012-10-22 Thread Jason Brower
.) BR, Jason Brower --

[web2py] Rendering to SVG...

2012-10-21 Thread Jason Brower
Had a fun idea. I would create pdf templates in svg format using inkscape and it's magic. Then when the template is rendered using the render() method, I would using inscape from command line to convert the page to PDF. Fun right? Any problems you see in this? BR, Jason Brower --

[web2py] Forms removing data on errors...

2012-09-22 Thread Jason Brower
server all you like. http://testing.interestid.com Hope you can help. You can use this use if you like. U:testing_user P:testinguser BR, Jason Brower --

[web2py] Somewhere between 1.97 and 2.0.8 I lost translations.

2012-09-11 Thread Jason Brower
It seems that our production system stoped serving translated versions of our website. Even when our browsers are on the correct settings it doesn't switch to our Finnish translations. Any way I could resolve this? Something you need to know? BR, Jason http://interestid.com --

[web2py] Doing larger translations...

2012-08-27 Thread Jason Brower
I am wanting to create large amounts of content that needs to be translated. Is the Lazy T() way the best for this? Whole pages of text will need to be translated. BR, Jason Brower --

Re: [web2py] Web2py expert needed for start-up

2012-07-17 Thread Jason Brower
available on skype or through this email. Best regards, Jason Brower On 07/17/2012 02:23 AM, Pepe C wrote: Hi, We have a set of applications on web2py and we are looking for an expert that can help us to operate and develop them. This is a long-term role taking ~10 hours a week, although we do

Re: [web2py] solicitation for help with public health project for lip reading

2012-07-16 Thread Jason Brower
Sounds fun! Let's talk more about it. skype:super-jason or just use my email... On 07/16/2012 01:23 AM, web-dev-m wrote: I am working on many projects, and I figured I would ask for help on here to see if anyone wants to help with this. We are currently working on a project to help hearing

[web2py] Sending an email on CRUD complete...

2012-07-12 Thread Jason Brower
I am reading in the book: crud.settings.create_onvalidation = StorageList() But I just don't get it. I wanted to send an email when the form submits successfully, and I have created a method for that. send_email(to_email, subject, message) How would I do this? BR, Jason Brower

[web2py] Interesting thing on the book website...

2012-07-11 Thread Jason Brower
When I search for || It stops at the first | and crashes my browser. Are you guys getting this too? BR, Jason

[web2py] REQUEST: Flag if database changes

2012-07-11 Thread Jason Brower
I wonder if the following would be good: A flag would be marked True if there has been an auto-migration. Then you could check if a change has happened and fix items in your database, but not need to search every time a page is run. For example, if there are items that have a None and now need

Re: [web2py] Any jquery gurus out there?

2012-07-10 Thread Jason Brower
What is it that isn't working in IE? On 07/11/2012 01:54 AM, RKS wrote: I know this is probably not the right place to ask, but I am using w2p and post here pretty frequently so I figured what the heck. I'm also in a rush and not finding out what I need on stackoverflow. I have some jquery

Re: [web2py] Re: Has anyone done a detailed security analysis or attempted a methodical attack on web2py?

2012-07-09 Thread Jason Brower
I know a few of these guys, and they relly seem to know their stuff. Let's see if they take the bait. :) They know python and webservices very well. BR, Jason Brower On 07/10/2012 01:24 AM, Massimo Di Pierro wrote: No but I am willing to pay to get it done. On Monday, 9 July 2012 10:48:39

Re: [web2py] When does translation take place.

2012-07-05 Thread Jason Brower
Don't know all the details. But it's best to leave logical things outside of the translations. Otherwise you end up destroying your app when someone does the translation change. The translations can happen anywhere. They are executed as soon as you run them. So T('test') = test it is a

Re: [web2py] html5 background video script

2012-07-05 Thread Jason Brower
There are usually javascript plugins that you can have handle any function you like when the video ends... Never used this but a quick google lead me to here... http://jplayer.org/latest/developer-guide/#jPlayer-events Notice it has event handling for when the video has ended. BR, Jason On

[web2py] Change password without the link...

2012-07-04 Thread Jason Brower
Is there a way that the user can change their password from the default features of auth without getting an email with the link? It seems the only way is the link to get an email with a link to change the password. BR, Jason Brower

Re: [web2py] Forms - MVC model

2012-06-27 Thread Jason Brower
On 06/27/2012 07:30 PM, Jonathan Lundell wrote: On Jun 27, 2012, at 4:08 AM, Pedro Casalinho wrote: This may be a dumb question but, should forms be created in controllers and passed to the view or should they be created in the view, taking into consideration the MVC model MVC is a pretty

Re: [web2py] Webservice to upload files

2012-06-27 Thread Jason Brower
Sure. Easy. Make your model that will hold the files. Create pages that handle the uploading of files. Create pages to handle the downloading of files. The hard part is in the details, for example, what features do you want to have. Which is really something web2py can do be I think you should

Re: [web2py] Users Poll: To keep the button look for the welcome app's auth options, or not ?

2012-06-17 Thread Jason Brower
B.1 looks nice. On 06/17/2012 06:30 AM, Andrew wrote: A week or two ago a change was made to the nav bar to give the auth buttons for Login, Register, etc a button look. This was part of the fix to the dropdown menus to get them to work with bootstrap. Another change was made to revert

Re: [web2py] how to install web2py and deploy web2py application in ubuntu server?

2012-06-14 Thread Jason Brower
as the script I showed you installs postgresql. From web2py, most things are going to be identical to postgres so your not going to notice much of a difference in my opinion. :) Help that explains things for you. BR, Jason Brower On 06/15/2012 06:07 AM, Amit wrote: Thanks Jason for providing

Re: [web2py] how to install web2py and deploy web2py application in ubuntu server?

2012-06-14 Thread Jason Brower
on your local machine? BR, Jason Brower On 06/15/2012 07:15 AM, pbreit wrote: Both MySQL and Postgres are fine. Use whichever you or anyone on your team has experience with and/or is comfortable with. The Rocket web server that comes with Web2py is great for development but most or all people use

Re: [web2py] Is web2py the right tool for a report project?

2012-06-13 Thread Jason Brower
I think web2py would do this very well. I come from experience in jasper reports. --- Jason On 06/13/2012 11:15 PM, thinkwell wrote: I'm rewriting a python report script that processes CSV files and emails the reports on a monthly basis (triggered from system cron). My python script

Re: [web2py] Re: A Web2py CMS like Joomla ?

2012-06-12 Thread Jason Brower
There are also big drawbacks to these cms's for example the sucurity flaws in Joomla are out of this world. Same with drupal, so many plugins, add-ons and other what not with wholes in them it's sometimes very hard to keep up with the issues. I work on drupal based sites all the time and run

[web2py] We should add mariaDB to the list of functioning databases

2012-06-06 Thread Jason Brower
a chance. BR, Jason Brower

Re: [web2py] Fluxflex will be shut down and no longer available on June 30, 2012

2012-06-06 Thread Jason Brower
On 06/06/2012 08:35 PM, Andrew wrote: So where do we go now? I know the owners of Pagodabox. They are looking to support python, and I think web2py should be involved. :) BR, Jason

Re: [web2py] translation from php to python

2012-06-05 Thread Jason Brower
Try using this... http://docs.python.org/library/md5.html What that like is doing is making an md5 sum of all those strings together to make a special unique key. Where that is used I have no idea. BR, Jason Brower On 06/05/2012 03:46 PM, Hassan Alnatour wrote: Dear ALL , i need help

[web2py] Add a user only showing logged in user.

2012-06-03 Thread Jason Brower
do this without a manual form? BR, Jason Brower

[web2py] Fwd: Add a user only showing logged in user.

2012-06-03 Thread Jason Brower
Shizzle, ok, dumb typo on my part. Works fine now. BR, Jason Original Message Subject:Add a user only showing logged in user. Date: Mon, 04 Jun 2012 06:35:06 +0300 From: Jason Brower encomp...@gmail.com To: web2py@googlegroups.com I have been trying to add

[web2py] Data in database as translated...

2012-06-02 Thread Jason Brower
I have some states of an row in the database. read and unread There will be more states later. To do the translations I made this in the the template {{=T(read)}} {{=T(unread)}} {{=T(message.state)}} Do you see a better way for something like this to happen? BR, Jason Brower

[web2py] Thinking of building a bug tracker...

2012-05-31 Thread Jason Brower
I have noticed one other tracker in web2py, but I couldn't demo it. Besides that it is cloning, and I wonder if I could just start from scratch with a few features. One in particular is integrating with web2py a bit. For example, seeing tickets for a particular app and binding the ticket to a

Re: [web2py] cool new wysiwyg editor

2012-05-31 Thread Jason Brower
He just changed it. I have the one with the other license so I guess I will use that for now. I worry he changed it cause I twitted about it. :( And no it's not too expensive. BR, Jason Brower On 05/31/2012 05:57 AM, Anthony wrote: On Wednesday, May 30, 2012 5:16:56 PM UTC-4, Vasile Ermicioi

Re: [web2py] cool new wysiwyg editor

2012-05-31 Thread Jason Brower
Interesting that I didn't see it somehow. Actually, I say the gpl, mit license. On 05/31/2012 05:57 AM, Anthony wrote: On Wednesday, May 30, 2012 5:16:56 PM UTC-4, Vasile Ermicioi wrote: about redactorjs http://redactorjs.com/download/ http://redactorjs.com/download/ You are

Re: [web2py] cool new wysiwyg editor

2012-05-31 Thread Jason Brower
Oh, and it's compatible with refrigerators. :P Says it right in the front page. :O On 05/31/2012 05:57 AM, Anthony wrote: On Wednesday, May 30, 2012 5:16:56 PM UTC-4, Vasile Ermicioi wrote: about redactorjs http://redactorjs.com/download/ http://redactorjs.com/download/ You are

Re: [web2py] Thinking of building a bug tracker...

2012-05-31 Thread Jason Brower
to avoid the requirement. BR, Jason Brower On 05/31/2012 05:32 PM, Bruce Wade wrote: I second this idea and would be interested in helping. However I want to get git integration more then HG :D Thinking we should also have a feature request built into this, because the CEO constantly asks

[web2py] What do you think of this service? Pagodabox

2012-05-31 Thread Jason Brower
, Jason Brower

Re: [web2py] Web2py and XMPP

2012-05-30 Thread Jason Brower
you get to that point I would ping the list again. Good luck! BR, Jason Brower On 05/30/2012 12:07 PM, Román Torres wrote: Thanks for the answer! I think that it is going to be so useful to me. But I have a doubt... How I create my own server? I mean... The people dont have to register

Re: [web2py] Web2py and XMPP

2012-05-30 Thread Jason Brower
I suppose if your boss said you need to do this project with jabber, but a simple chatting server could be done without xmpp at all. So, what is it you really are trying to do and go from there. BR, Jason On 05/30/2012 12:07 PM, Román Torres wrote: Thanks for the answer! I think that it is

[web2py] Trying to autocreate users but having trouble...

2012-05-29 Thread Jason Brower
: |db6ff6dd097fb1d804eabc2b8ecb0d6a|None| Which isn't correct. What am I doing wrong? BR, Jason Brower

Re: [web2py] cool new wysiwyg editor

2012-05-29 Thread Jason Brower
Hardy Har Very true. BR, Jason On 05/29/2012 05:29 AM, Massimo Di Pierro wrote: On Monday, 28 May 2012 17:51:02 UTC-5, Vasile Ermicioi wrote: and no font name, font size That's a plus. It should he handled by css. I will wait a few releases until they will conquer the world

Re: [web2py] Re: Trying to autocreate users but having trouble...

2012-05-29 Thread Jason Brower
Woot. That did it! Thanks! And I never know when to use them or not when moving to a new line. :) BR, Jason Brower On 05/29/2012 04:28 PM, Anthony wrote: db.auth_user.insert(password=db.auth_user.password.validate(password), Validators (including the password CRYPT

Re: [web2py] Web2py and XMPP

2012-05-29 Thread Jason Brower
Your going to need a service running to recording any incoming messages. But this is most likely a good start. http://xmpppy.sourceforge.net/ I have done similar with other technologies. BR, Jason On 05/30/2012 01:49 AM, Román Torres wrote: Hi everybody. Im on a big project, and now I need

[web2py] Migrations not working on Postgres

2012-05-27 Thread Jason Brower
to do with the new table I needed to create, but I though most migrations where handle seamlessly. --- BR, Jason Brower

Re: [web2py] Development Environments vs Live Environment

2012-05-25 Thread Jason Brower
PM, Jason Brower encomp...@gmail.com mailto:encomp...@gmail.com wrote: Locally I only want to use SQLite. And on the deployment I want to use Postgres. Is there a way to make this happen automatically? BR, Jason Brower -- Bruno Rocha [http://rochacbruno.com.br]

Re: [web2py] Re: Trying to create a DAL connection and getting some errors...

2012-05-24 Thread Jason Brower
: Creating new tables dynamically is not allowed. Isn't this just what I am about to do? --- BR, Jason Brower On 05/23/2012 07:04 PM, Massimo Di Pierro wrote: This has been fixed in trunk some time ago self.driver = drivers.get('pg8000') should

[web2py] Development Environments vs Live Environment

2012-05-23 Thread Jason Brower
Locally I only want to use SQLite. And on the deployment I want to use Postgres. Is there a way to make this happen automatically? BR, Jason Brower

[web2py] Trying to create a DAL connection and getting some errors...

2012-05-23 Thread Jason Brower
locally on an amazon system running ubuntu. I created the postres user and it seems to be open and connectable. I have also created the database postgres. Any ideas why it wouldn't work? BR, Jason Brower

Re: [web2py] Development Environments vs Live Environment

2012-05-23 Thread Jason Brower
:18 AM UTC-4, rochacbruno wrote: if request.is_local(): con = sqlite://. else: con = postgres://... db = DAL(con) On Wed, May 23, 2012 at 12:06 PM, Jason Brower encomp...@gmail.com mailto:encomp...@gmail.com wrote: Locally I only want to use SQLite

Re: [web2py] Re: Trying to create a DAL connection and getting some errors...

2012-05-23 Thread Jason Brower
And I just noticed the comment here: Creating new tables dynamically is not allowed. Isn't this just what I am about to do? --- BR, Jason Brower On 05/23/2012 07:04 PM, Massimo Di Pierro wrote: This has been fixed in trunk some time ago self.driver = drivers.get('pg8000') should

[web2py] Problem tranfering to a new database...

2012-05-23 Thread Jason Brower
I now have the database up and running, but when I try to do this: db.export_to_csv_file(open('/home/www-data/web2py/applications/welcome/uploads/file.csv', 'wb')) db2.import_from_csv_file(open('/home/www-data/web2py/applications/welcome/uploads/file.csv', 'rb')) It tells me: Traceback(most

Re: [web2py] Re: Problem tranfering to a new database...

2012-05-23 Thread Jason Brower
Would having an empty table raise this error? On 05/23/2012 08:14 PM, pbreit wrote: Apparently choking on this line: elif not line.startswith('TABLE ') or not line[6:] in self.tables: raise SyntaxError, 'invalid file format' Does your file look OK when taking

Re: [web2py] Re: Problem tranfering to a new database...

2012-05-23 Thread Jason Brower
When I emptied my database locally and tried to connect to the server remotely I get ProgrammingError: ('FATAL','28000','no pg_hba.conf entry for host 85.23.56.232, user postgres, database postgres, SSL off') This is because I haven't setup this computer as a connectable host, I guess. Any

Re: [web2py] Re: Problem tranfering to a new database...

2012-05-23 Thread Jason Brower
I got the connection to work. However, it's now throwing the same error as before. Dang. This is on a blank database to csv. Attached... On 05/24/2012 12:54 AM, pbreit wrote: It might. Can you try with an empty DB? On Wednesday, May 23, 2012 10:50:48 AM UTC-7, encompass wrote: Would

Re: [web2py] Re: Problem tranfering to a new database...

2012-05-23 Thread Jason Brower
error message for this issue could be created. BR, Jason On 05/24/2012 07:15 AM, Jason Brower wrote: I got the connection to work. However, it's now throwing the same error as before. Dang. This is on a blank database to csv. Attached... On 05/24/2012 12:54 AM, pbreit wrote: It might. Can you

[web2py] SQL syntax error when trying to create db...

2012-05-23 Thread Jason Brower
I get this: File/home/jason/Desktop/InterestID_4/Development_Environment/gluon/dal.py,line1386,inlog_execute ret=self.cursor.execute(*a, **b) ProgrammingError:syntax error atornearuser LINE4:user INTEGER REFERENCES auth_user(id)ON DELETE CASCADE, When web2py tries creating it's mode in

Re: [web2py] Error on importing twisted

2012-05-22 Thread Jason Brower
I wonder if reactor is a reserved word in web2py. Could you try giving it a different namespace? from twisted import reactor as another_reactor On 05/23/2012 06:07 AM, Hugh Barker wrote: Hi, I need to run some code that uses the Twisted library from within web2py (listening to multicast

Re: [web2py] Routing stuff in apache instead of web2py

2012-05-21 Thread Jason Brower
How... How does it work? http://www.youtube.com/watch?v=xOrgLj9lOwk I haven't a clue how to check for that. :/ BR, Jason On 05/21/2012 04:05 PM, Jonathan Lundell wrote: On May 20, 2012, at 10:36 PM, Jason Brower wrote: A suppose it would be a little off topic, but I need it for my web2py

Re: [web2py] Routing stuff in apache instead of web2py

2012-05-21 Thread Jason Brower
Fantastic! I looked and on the dynamic parts it shows the powered by tag and on the other parts it doesn't so it clearly is using the other service, apache. Thanks! BR, Jason On 05/21/2012 08:04 PM, Anthony wrote: How to test? What I do is to use curl -I to look at the http

Re: [web2py] Re: 75€ BOUNTY - Massively Complicated Query Required

2012-05-20 Thread Jason Brower
It is not totally implemented or verified at this point. But so far it seems to be working. I will post the answer later along with a special module I also made that uses this method. I think you guys will like it. BR, Jason Brower On 05/18/2012 09:15 PM, Carlos Costa wrote: The answer

[web2py] Routing stuff in apache instead of web2py

2012-05-20 Thread Jason Brower
, Jason Brower

[web2py] Web2py.com is down. :(

2012-05-18 Thread Jason Brower
Darn. When I needed it most. :( BR, Jason

[web2py] Re: 75€ BOUNTY - Massively Complicated Query Required

2012-05-18 Thread Jason Brower
This bounty has, thankfully, been solved. Thank you to all those that have participated! It has saved me so much time! BR, Jason Brower On 05/17/2012 07:28 PM, Jason Brower wrote: I have the event management tool I have been working on for 2 years now and I have made some changes to the code

Re: [web2py] 75€ BOUNTY - Massively Complicated Query Required

2012-05-17 Thread Jason Brower
or other tag relations. Very powerful. br, Jason On 05/17/2012 08:32 PM, Marin Pranjic' wrote: I am not sure if I understand your model. Can you explain tag_link ? Marin On Thu, May 17, 2012 at 6:28 PM, Jason Brower encomp...@gmail.com mailto:encomp...@gmail.com wrote: I have the event

Re: [web2py] Re: 75€ BOUNTY - Massively Complicated Query Required

2012-05-17 Thread Jason Brower
For the third one this is to further show the relevance of a user because they are living near you, but they should be someone that at least has something in common with you. BR, Jason Brower On 05/17/2012 09:22 PM, Andrew wrote: If another user has a tag that UserA is looking

Re: [web2py] Re: 75€ BOUNTY - Massively Complicated Query Required

2012-05-17 Thread Jason Brower
are in the same city. Got it. Yes, that is correct. BR, Jason Brower

Re: [web2py] Re: 75€ BOUNTY - Massively Complicated Query Required

2012-05-17 Thread Jason Brower
¿½ for that implementation as well. :) --- BR, Jason Brower -- Carlos J. Costa Cientista da Computação Esp. Gestão em Telecom EL MELECH NEEMAN! אָמֵן

Re: [web2py] 75€ BOUNTY - Massively Complicated Query Required

2012-05-17 Thread Jason Brower
Yes, it can be redundant. Ignore it if you like. BR, Jason On 05/17/2012 10:32 PM, Marin Pranjić wrote: and why both tag and tag_link have an event.id http://event.id field? is this redundant? On Thu, May 17, 2012 at 7:56 PM, Jason Brower encomp...@gmail.com mailto:encomp...@gmail.com wrote

Re: [web2py] web2py free cookbook raffle

2012-05-17 Thread Jason Brower
On 05/18/2012 06:41 AM, Massimo Di Pierro wrote: http://web2py.com/cookbook Woot, thanks!

[web2py] Custom form with default values...

2012-05-16 Thread Jason Brower
(): db.event_attender.attender.default = auth.user.id Best Regards, Jason Brower

[web2py] Sending files to a controller and nicedit in the view.

2012-05-10 Thread Jason Brower
Is there a way I can build a form on one controller. Then send data to it including a file and various other things And then save that information to a database? Sounds simple right? I want to do it dynamically with my nicEdit integration. That is, I do something just like this...

[web2py] Confused as I thought this would crash...

2011-09-23 Thread Jason Brower
or is it like django where it is lazy and creates another query from that line. BR, Jason Brower

[web2py] Get rid of a label in web2py SQLFORM

2011-08-24 Thread Jason Brower
I have a label I want to get ride of but this doesn't work... Field('email', 'string', label=None), no this... Field('email', 'string', label=), Any other ideas? -- BR, Jason Brower

[web2py] No spaces... now that would be nice...

2011-08-17 Thread Jason Brower
There a quite a few templating features that are nice in django, {% spaceless %} p a href=foo/Foo/a /p {% endspaceless %} This is particular is vital for many sites where spaces are important. For example in a menu there are spaces that push items around and you can't do anything but remove

[web2py] Generic View is not loading...

2011-08-07 Thread Jason Brower
I just realised my generic view is not loading. I get: invalid view (default/events.html) When I get rid of events.html in the default folder. I do have the original generic.html but it still doesn't work. Any reasons why this would happen? BR, Jason Brower

  1   2   3   4   5   6   7   8   >