Mibbit the web client it uses has been banned from the IRC server,
1000's of people use it. I'll contact http://www.mibbit.com
On Jun 22, 12:26 pm, Pynthon Pynthon wrote:
> Hello
>
> When I want to enter the chat it returns "Terminated". What is the problem?
>
> Thanks,
> Pynthon
--~--~-
Nothing to do with you, so don't worry :)
On Jun 22, 1:27 pm, Pynthon Pynthon wrote:
> Need I to mail Mibbit? But I didn't do anything in the IRC? Also not in
> other IRC...
>
> 2009/6/22 ceej
>
>
>
> > Mibbit the web client it uses has been banned from the
Hi there,
I would just like to say that, web2py is a python programming
framework not a designing one and it's a lot easier to use than most.
I can implement the greatest of design that any designer could dream
up with ease. I do not understand when you say "the html views could
perhaps bit more
yes you can do:
routes_in=(
('/admin(?P.*)', '/admin\g'),
('/login(?P.*)', '/myapp/auth/login\g'),
('/logout(?P.*)', '/myapp/auth/logout\g'),
('/register(?P.*)', '/myapp/auth/register\g'),
('/verify_email(?P.*)', '/myapp/auth/verify_email\g'),
('/change_password(?P.*)', '/myapp/auth/change_
in your routes.py file, just add to routes.example.py and rename to
routes.py.
On Jul 1, 9:51 pm, "mr.freeze" wrote:
> Can I use routes.py to make my application run from:http://myserver
> instead of:http://myserver/myapp
>
> If not, can it be done another way? My domain name and app are the
>
Hey all,
Thought you might be interested in a python debugger for firefox, it's
like FirePHP http://firepython.binaryage.com/ maybe we could integrate
this into web2py? There is already a way for django :)
--~--~-~--~~~---~--~~
You received this message because yo
s:http://www.web2py.com-enterprise python
> > framework || Latest version 1.64.2 || need to paste code use -http://cj.nu/y
> > || Google Groups -http://cj.nu/u|| To get someone's attention just
> > type their name into the channel/room || Don't ask to ask - just ask
> >
We should also start another topic maybe to see if T2 should be added
as it's really easy to create a branch for a certain feature and merge
it back.
On Nov 7, 1:55 pm, ceej <[EMAIL PROTECTED]> wrote:
> I was adding it to github as all the other frameworks are there, it's
&g
I was adding it to github as all the other frameworks are there, it's
still converting to GIT it's been going for 1 1/2 days on my
computer
On Nov 7, 11:37 am, "Yarko T" <[EMAIL PROTECTED]> wrote:
> Not to worry - nothing there yet... it has links towww.web2py.com,
> attributes Masssimo and
Hi all,
I've added web2py on http://github.org |
http://github.com/web2py/web2py/tree/master
If you don't have GIT you can just click download to download as .zip
or .tar :)
This isn't replacing the current svn or bazzar repo's its just an
extra one, you can never have too much choice in how y
I will do just send me and email whenever you update it :)
On Nov 8, 2:28 pm, mdipierro <[EMAIL PROTECTED]> wrote:
> OK but please keep it in sync.
>
> Massimo
>
> On Nov 8, 4:10 pm, ceej <[EMAIL PROTECTED]> wrote:
>
> > Hi all,
>
> > I've added
er projects handle this?
>
> >> Massimo
>
> >> On Nov 8, 10:54 pm, "Yarko T" <[EMAIL PROTECTED]> wrote:
> >> > I agree, Massimo:
> >> > You need to define an additional variable besides the release number -
> >> call
>
Hi there,
In my routes I have
routes_in=(
('/admin(?P.*)', '/admin\g'),
('/my_app/(?P.+)', '/my_app/\g'),
('^.*:/$', '/my_app/main/index'),
('/(?P.+)', '/my_app/\g'),
)
routes_out=(
('/admin(?P.*)', '/admin\g'),
('/my_app/(?P.+)', '/\g'),
)
Which makes my URLS like mydomain.com/
Is know
All up to date at http://github.com/web2py/web2py/tree/master also :)
On Nov 11, 5:17 pm, "Yarko T" <[EMAIL PROTECTED]> wrote:
> 1.49.1 changeset has been mirrored tohttp://bitbucket.org/yarko/web2py
>
> On Tue, Nov 11, 2008 at 7:04 PM, mdipierro <[EMAIL PROTECTED]> wrote:
>
> > One of the latest
:)
I will soon make it automated :)
On Nov 11, 6:07 pm, "Yarko T" <[EMAIL PROTECTED]> wrote:
> Thanks for starting this, ceej.
> I'm now bought into removing reasonable barriers we can to encourage people
> from all corners to contribute.
>
> You've
Phyo,
To get the data from the form that's submitted you can to
request.vars.file.file.read():
And to write it to uploads you can do something like
_folder='%(folder)suploads/'%{'folder': request.folder}
main_token=md5.new(str(datetime.datetime.now
())).hexdigest()
Nice, I also installed it on my hacked 2.0 iphone awhile ago and it
works like a charm. :)
On Nov 16, 4:33 pm, mdipierro <[EMAIL PROTECTED]> wrote:
> http://www.rosswalker.co.uk/tv_sounds/sounds_files_20081022_3079652/s...
>
> On Nov 16, 5:48 pm, achipa <[EMAIL PROTECTED]> wrote:
>
> >http://www.
Maybe I should do a screen cast of that also :)
On Nov 16, 4:36 pm, ceej <[EMAIL PROTECTED]> wrote:
> Nice, I also installed it on my hacked 2.0 iphone awhile ago and it
> works like a charm. :)
>
> On Nov 16, 4:33 pm, mdipierro <[EMAIL PROTECTED]> wrote:
>
>
Using your example Massimo:
db.define_table('person',SQLField('name'))
def index():
form=SQLFORM(db.person)
if form.accepts(request.vars,session)
return dict(form=form)
{{if form.errors:}}{{=form.errors}}{{pass}}
{{=form.hidden_fields()}}
Could i do:
{{if form.errors.name:}}
rm.errors[error_name],'class': div_class}))
def value(self,form_value):
if request.vars.has_key('name') and not
response.message_sent:
response.write(request.vars[form_value])
Then In my view i can just do:
{{form.error(contact_form,'name')}}
Very nice, did you see my previous post?
http://groups.google.com/group/web2py/browse_thread/thread/9bd0c9a576ab7868/a6585d40d86f9b02#a6585d40d86f9b02
On Nov 17, 10:51 am, mdipierro <[EMAIL PROTECTED]> wrote:
> I posted web2py 1.50
>
> this fixes some bug introduced in 1.49 with custom forms, the
If you type web2py in the search box it doesn't find it, maybe you
should let lulu know that :)
On Nov 18, 6:37 pm, cesmiga <[EMAIL PROTECTED]> wrote:
> 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?
ED]> wrote:
> Well done ceej!
>
> Just one problem , a little slow (heavy) on my slow speed connection. Else ,
> it is fine.
>
> :)
>
> On Wed, Nov 19, 2008 at 5:48 AM, Yarko Tymciurak <[EMAIL PROTECTED]> wrote:
> > Nice! And powered by web2py too ;-)
On Nov 19, 8:33 am, "mr.freeze" <[EMAIL PROTECTED]> wrote:
> Very cool. What did you use do generate the products menu? Does the
> site use T2?
>
> On Nov 19, 1:06 am, ceej <[EMAIL PROTECTED]> wrote:
>
> > Thank you all :)
>
> > @Phyo, there is no c
I have no idea where this came from because it was all working fine I
haven't changed anything but when I ran the command again I get this
http://paste.pocoo.org/show/91854/
Any ideas?
Thank you in advance
--~--~-~--~~~---~--~~
You received this message because yo
Never mind it was a migration issue :)
On Nov 19, 5:40 pm, ceej <[EMAIL PROTECTED]> wrote:
> I have no idea where this came from because it was all working fine I
> haven't changed anything but when I ran the command again I get
> thishttp://paste.pocoo.org/show/91854/
>
Hi Massimo,
I've tried:
_update_clip_fields=[
'title',
'description',
'tags',
'length'
]
post_save=SQLFORM(db.videos,fields=_update_clip_fields)
if post_save.accepts(post_save,session):
response.flash="Updated Video"
return dict(_video=_video,post_save=post_save)
B
_save.accepts(request.vars,session):
>
> but you know this already.
>
> Massimo
>
> On Nov 20, 12:17 pm, ceej <[EMAIL PROTECTED]> wrote:
>
> > Hi Massimo,
>
> > I've tried:
>
> > _update_clip_fields=[
> > 'title',
> &
Using post_save=SQLFORM(db.videos,_video,fields=_update_clip_fields)
can you not specify just certain fields you would like to update
because I'm getting SyntaxError: user is tampering with form. (_video)
being my records.
On Nov 20, 10:24 am, ceej <[EMAIL PROTECTED]> wrote:
> Mass
Ok, as you know this isn't my first time installing web2py. I've just
installed it on a clean centos 5.2 OS it starts fine, but when I go to
log into admin it looks like it's logging in but then takes me to the
login again with no errors. I checked the nohup output and it has
WARNING:root:no cache
I've set the perssions to 777 (rexrexrex). So it shouldn't be that.
On Nov 20, 4:03 pm, achipa <[EMAIL PROTECTED]> wrote:
> cache.disk should not prevent that... sounds more like wrong
> permissions for your sessions dir to me ?
>
> On Nov 21, 12:56 am, ceej <[EM
lications/admin/controllers/default.py:index()
>
> Around line 93 is the test for password --- also gluon/validators.py::class
> CRYPT() -- might give you a hint to something corrupt installed (or partial
> installed - like sha, md5, hmac)..
>
> On Thu, Nov 20, 2008 at 6:13 PM, ceej
Ok i got it working (something wrong with the version control) thank
you both for your help :)
On Nov 20, 5:27 pm, ceej <[EMAIL PROTECTED]> wrote:
> I had a look into it but it appears to be fine, it's very strange as
> the application was pulled straight from version
make make updates with custom forms really easy instead of having to
add those lines yourself.
On Nov 20, 10:51 am, ceej <[EMAIL PROTECTED]> wrote:
> Using post_save=SQLFORM(db.videos,_video,fields=_update_clip_fields)
> can you not specify just certain fields you would like to update
It's because web2py checks web2py.com to see if your version matches
with the latest version and Massimo just updated the server. In your
app you can create a model named 0.py and add CHECK_VERSION=False to
stop this :)
On Nov 21, 1:34 pm, "mr.freeze" <[EMAIL PROTECTED]> wrote:
> Yes, the trunk v
I seem to be getting an error, I'm importing like this:
import applications.myapp.modules.Genshi4web2py as Genshi4web2py
response.postprocessing.append(lambda x: Genshi4web2py.render(x,
request, response))
but i get this:
http://paste.pocoo.org/show/93469/
On Dec 1, 11:23 am, Timothy Farrell <
-macosx-10.5-
i386.egg
Processing dependencies for genshi
Finished processing dependencies for genshi
On Dec 1, 3:42 pm, ceej <[EMAIL PROTECTED]> wrote:
> I seem to be getting an error, I'm importing like this:
>
> import applications.myapp.modules.Genshi4web
Was just a bad install, I installed using mac ports and now works just
fine :)
On Dec 1, 3:45 pm, ceej <[EMAIL PROTECTED]> wrote:
> and i do have genshi installed:
>
> blank:source blank$ easy_install genshi
> Searching for genshi
> Best match: Genshi 0.5.1
> Processing G
templates?
Many thanks
On Dec 1, 4:10 pm, ceej <[EMAIL PROTECTED]> wrote:
> Was just a bad install, I installed using mac ports and now works just
> fine :)
>
> On Dec 1, 3:45 pm, ceej <[EMAIL PROTECTED]> wrote:
>
> > and i do have genshi installed:
>
> > b
wrote:
> Make sure that you're included file is also a proper XML file with the
> appropriate namespaces. The official method is explained
> here:http://genshi.edgewall.org/wiki/GenshiTutorial#AddingaLayoutTemplate
> Let me know if you'd like some more help beyond that.
> -t
Hey,
I have in my controller:
post_save=SQLFORM(db.ads)
if post_save.accepts(request.vars,session,formname=None):
import md5, datetime, os
_file_name=md5.new(str(datetime.datetime.now())).hexdigest()
+".gif"
_folder='%(folder)suploads/adverts/'%{'folder': request.folder}
Never mind I forgot the enctype="multipart/form-data" again doh!!!
On Dec 5, 4:01 pm, ceej <[EMAIL PROTECTED]> wrote:
> Hey,
>
> I have in my controller:
>
> post_save=SQLFORM(db.ads)
> if post_save.accepts(request.vars,session,formname=None)
Hey Massimo,
You could use one they have at http://flowplayer.org also I would do
+1 for using their player instead as it's amazing, check out the
script section.
On Dec 9, 10:42 am, mdipierro <[EMAIL PROTECTED]> wrote:
> Can somebody point me to a better sample flv movie (<1MB)
>
> http://web2p
It also uses jQuery :)
On Dec 9, 11:07 am, ceej <[EMAIL PROTECTED]> wrote:
> Hey Massimo,
>
> You could use one they have athttp://flowplayer.orgalso I would do
> +1 for using their player instead as it's amazing, check out the
> script section.
>
> On De
http://flowplayer.org/demos/index.html
On Dec 9, 11:09 am, ceej <[EMAIL PROTECTED]> wrote:
> It also uses jQuery :)
>
> On Dec 9, 11:07 am, ceej <[EMAIL PROTECTED]> wrote:
>
> > Hey Massimo,
>
> > You could use one they have athttp://flowplayer.orgalsoI
Yes, I think it has many more features and is a lot better in
general :)
On Dec 9, 12:42 pm, mdipierro <[EMAIL PROTECTED]> wrote:
> are you suggesting flowplayer over the current one?
>
> Masssimo
>
> On Dec 9, 1:13 pm, ceej <[EMAIL PROTECTED]> wrote:
>
> >ht
get tohttp://flowplayer.org (been down for an hour or so)
>
> > On Tue, Dec 9, 2008 at 1:45 PM, ceej <[EMAIL PROTECTED]> wrote:
>
> >> Yes, I think it has many more features and is a lot better in
> >> general :)
>
> >> On Dec 9, 12:42 pm, mdipierr
Massimo,
What lines are you trying to give height to?
On Dec 10, 2:43 pm, mdipierro <[EMAIL PROTECTED]> wrote:
> I gave a new css to t3 (web2py.appspot.com/t3) but I do not know how
> to increase the line-hight.
> I tried putting line-height in various places in the styles page but
> it is ignor
How do you create a page? I can't see a link anywhere
http://screencast.com/t/HCsfsNVjsF
On Dec 11, 2:48 pm, mdipierro wrote:
> You can edit all pages. including main! You just cannot attach
> documents and add comments to main.
>
> Massmo
>
> On Dec 11, 4:45 pm, "Yarko Tymciurak" wrote:
>
> >
You should also give a few users certain admin privileges so that they
can revert pages to a previous state, delete comments, pages and maybe
even ban/block people incase there is people spamming etc
On Dec 11, 2:52 pm, ceej wrote:
> How do you create a page? I can't se
e changes, no
> rollback (as ceej points out), no way to create pages, etc. etc.
>
> this is not ready for prime-time.
>
> On Thu, Dec 11, 2008 at 4:56 PM, ceej wrote:
>
> > You should also give a few users certain admin privileges so that they
> > can revert pages to a
no history of who made changes,
> > no rollback (as ceej points out), no way to create pages, etc. etc.
>
> > this is not ready for prime-time.
>
> > On Thu, Dec 11, 2008 at 4:56 PM, ceej wrote:
>
> >> You should also give a few users certain admin privile
I created a shortcut http://web2pywiki.com :)
On Dec 11, 3:10 pm, ceej wrote:
> I agree, the community would greatly benefit from this :)
>
> On Dec 11, 3:07 pm, "Yarko Tymciurak" wrote:
>
> > Good concept though... let's get it ready to use...
>
> &
Hi there,
I've done a clean install of T3, all file permissions are correct but
for some reason it doesn't write. I'm using a mac right now for
development. http://screencast.com/t/ADnsPHcdqd8 (I haven't changed or
touched anything)
Any ideas?
Many thanks
--~--~-~--~~~--
Also doing test/testing to create a menu called test and a sub menu
called testing gives this error: http://screencast.com/t/Hbe5ppJwBM
and removing the validation causes Internal error.
On Dec 11, 8:34 pm, ceej wrote:
> Hi there,
>
> I've done a clean install of T3, all file p
o...
>
> -wj
>
> On Thu, Dec 11, 2008 at 10:00 PM, ceej wrote:
>
> > Also doing test/testing to create a menu called test and a sub menu
> > called testing gives this error:http://screencast.com/t/Hbe5ppJwBM
> > and removing the validation causes Internal error.
p.s. thank you Wes James :)
On Dec 11, 9:06 pm, "Wes James" wrote:
> http://www.vimeo.com/2450936
>
> at about 6:33 in the video...
>
> -wj
>
> On Thu, Dec 11, 2008 at 10:00 PM, ceej wrote:
>
> > Also doing test/testing to create a menu called test and
Spoke to soon, now this is strange. So updating settings works, but
anything else in that menu doesn't save...
Any ideas?
On Dec 11, 9:32 pm, "Wes James" wrote:
> np :)
>
> On Thu, Dec 11, 2008 at 10:21 PM, ceej wrote:
>
> > p.s. thank you Wes James :)
>
Hey all,
I've created a site http://www.web2pychat.com which will let you chat
to people in the irc web2py room without downloading anything. I'ts
built on the new T3, it's very early beta and I will be adding a lot
more soon. Special thanks to Mibbit :)
So there is no excuse for any web2py uses
Thank you everyone :)
> Shame the in-built translation is only visible to other Mibbit clients
Everyone one can see the translated text, just not the english part in
the () brackets :)
On Dec 12, 8:18 am, Fran wrote:
> Shame the in-built translation is only visible to other Mibbit clients
> -
at won't save. Everything else
like registration, page edit, admin section etc does fine. It's very
strange. (no errors either)
On Dec 12, 8:19 am, "Wes James" wrote:
> ceej,
>
> i just tried it again. new svn, new copy of t3, copied t3 in via
> admin, reg'd, th
I like the idea of t3 but I also really like the idea of t2, I feel t2
should be separate from t3 and the extra features in t2 that are
specifically for t3 should be in a separate module extending t2.
Because t2 is a great module to plug into any application and helps
speed up the development proc
ht?
>
> web2py, T2 and T3 are quite confusing, i guess we may need a plugins
> system for web2py.
>
> vince
>
> On Dec 15, 2:01 pm, mdipierro wrote:
>
> > This is what I meant. t2 is contained and will be contained in t3.
>
> > On Dec 14, 4:11 pm, ceej wrote:
>
Hey,
When I run web2py on Apache2/CentOS 5 Using mod_proxy everything works
fine. But if I switch to mod_wsgi the server starts up fine so I know
it's not my mod_wsgi config but i get this internal error
http://paste.pocoo.org/show/95614/ any ideas?
Many thanks
--~--~-~--~~--
31 am, Timothy Farrell wrote:
> Same computer? same installation of Python?
> ceej wrote:Hey, When I run web2py on Apache2/CentOS 5 Using mod_proxy
> everything works fine. But if I switch to mod_wsgi the server starts up fine
> so I know it's not my mod_wsgi config but i get this
ct.org/selinux-faq-fc5/#id2962669
>
> -wj
>
> On Tue, Dec 16, 2008 at 11:19 AM, ceej wrote:
>
> > Hey,
>
> > When I run web2py on Apache2/CentOS 5 Using mod_proxy everything works
> > fine. But if I switch to mod_wsgi the server starts up fine so I know
> &
Someone else should try CentOS 5 / Apache / mod_wsgi, because
everything I have done is correct but it still won't find the mysqldb
module. Which is very strange because if I run it using mod_proxy it
finds it fine. even running python import mysqldb works fine :/
On Dec 16, 11:15 am,
http://www.web2pychat.com :)
On Dec 19, 3:45 am, mmstud wrote:
> By the way, have you thought to open / join irc channel for web2py
> discussion? #web2py dozens of small questions could be easily and fast
> answered there, what do you think? pylons and turbogears has a quite
> nice and active c
We should put the chat details and site on the front page so people
know about it :)
On Dec 19, 9:32 am, "Joel Merrick" wrote:
> irc.freenode.net #web2py
>
> none of this web based pointy clicky stuff ;)
>
> On Fri, Dec 19, 2008 at 11:45 AM, mmstud wrote:
>
> > By the way, have you thought to o
Merry Christmas Everyone :)
On Dec 24, 10:12 am, "Tito Garrido" wrote:
> Merry Christmas Folks!
>
>
>
> On Wed, Dec 24, 2008 at 2:26 PM, pmate wrote:
>
> > Merry Christmas to all of you and to your families.
> > Let's hope it will bring to all a little more of peace.
>
> > Paolo
>
> > On Dec 23
The reason is it's missing the cache folder under admin/welcome/
example, the reason is GIT doesn't store emtpy folders in it. So any
other empty folder will be missing also. I could add an __init__.py
file to each folder which would fix this issue. What does everyone
think?
On Jan 15, 3:28 pm, m
BigBaaadBob,
I can do what Robin suggested and have the blank dirs there using that
code, so that won't be a problem from now on. Also the GIT repo is
kept up by me so none of the other repos will have .gitignore :)
On Jan 15, 9:14 pm, BigBaaadBob wrote:
> Ceej is right, and I rea
Looking good Massimo :)
I did notice a spelling mistake on the download section which I think
should read closed instead of clised ( http://screencast.com/t/LVHpr3A5Mjw
)
On Feb 3, 1:34 pm, mdipierro wrote:
> Any better?
>
> https://mdp.cti.depaul.edu/examples2
>
> Thanks Fran for the spell che
Hi all,
I haven't been arround for the last week because I've been moving
across states. I'm actually creating a web2py API like the jQuery one
( http://api.jquery.com ) which will be up in beta next week. Anyone
who wants to help with this please feel free to contact me.
On Feb 25, 7:00 am, Fra
Hey All,
I'm creating a desktop application that works on Mac, Windows and
Linux. It will have a total reference to all web2py functions plus
lots of tips and trick like setting up your first server, using
widgets and so on. The application will automatically update and also
work offline. I built
ed.
>
> Massimo
>
> On Mar 2, 3:03 pm, ceej wrote:
>
> > Hey All,
>
> > I'm creating a desktop application that works on Mac, Windows and
> > Linux. It will have a total reference to all web2py functions plus
> > lots of tips and trick like setting up y
Versioning in web2py admin would be great, it would mean you could
purely develop online on the same server using a test environment and
then update the production server once stable. I've often found that
updating from a local copy from my machine can cause some headaches
and not work the same wa
I can take a look, what were the problems you were having?
On Mar 3, 9:52 am, mdipierro wrote:
> Can you help with that? I could never get Amy editor to work as it
> should. Too bad because it is one of the best editors out there if not
> the best.
>
> Massimo
>
> On Mar 3,
Ok :)
On Mar 3, 11:20 am, mdipierro wrote:
> I will send you an email about this.
>
> On Mar 3, 11:16 am, ceej wrote:
>
>
>
> > I can take a look, what were the problems you were having?
>
> > On Mar 3, 9:52 am, mdipierro wrote:
>
> > > Can you he
Hi luckyboy,
To make your sessions store in the database simply add session.connect
(request, response, db=db) to your db.py model.
Follow the the link for an example of using memcached
http://mdp.cti.depaul.edu/AlterEgo/default/show/69
On Mar 3, 6:35 pm, luckyboy wrote:
> Hi all, I'm new to w
Hey,
I really think by doing db.your_table.insert(id=2,name='test') should
override the tables id being inserted to 2 (or whatever you set).
Other wise you have to do:
new_row=db.your_table.insert(name='test')
db(db.your_table.id==new_row).update(id=2)
db.commit()
--~--~-~--~~
;empty" ids? If it exists already, why don't you update the existing
> > entry? If the id does not exist already, then why is it important to
> > control the value?
>
> > On Mar 4, 9:41 am, ceej wrote:
>
> > > Hey,
>
> > > I really think by
I know that MySQL and sqlite allow you to do this and I would think
the other databases do also.
On Mar 4, 9:32 pm, mdipierro wrote:
> The problem is not web2py's. The problem is, to all supported backends
> allow this?
>
> On Mar 4, 2:20 pm, ceej wrote:
>
>
>
> &g
How would this apply not using csv and doing a manual
keep_in_sync_row=db.your_table.insert(id=my_own_id,name='test') ?
On Mar 7, 8:12 pm, mdipierro wrote:
> If the table has a field called "uuid" it is used and the record is
> inserted or updated accordingly.
>
> Massimo
>
> On Mar 7, 6:31 pm,
I'm just saying when it comes to not using CSV import feature we
should make it possible to do keep_in_sync_row=db.your_table.insert
(id=my_own_id,name='test')
On Mar 8, 6:52 pm, Yarko Tymciurak wrote:
> On Sun, Mar 8, 2009 at 3:05 PM, ceej wrote:
>
> > How would t
So this will override the normal auto id assign function.
On Mar 9, 12:41 pm, ceej wrote:
> I'm just saying when it comes to not using CSV import feature we
> should make it possible to do keep_in_sync_row=db.your_table.insert
> (id=my_own_id,name='test')
>
> On M
he same rules) --- if you INTEND to trigger
> it, then we assume you KNOW what you are doing, and accept the data
> consequences.
>
> How does this sound?
>
> (I've been rather thinking out loud).
>
> Regards,
> Yarko
>
>
>
> On Mon, Mar 9, 2009 at 12:41
I think this sounds like a great idea. +1
On Mar 11, 2:10 pm, blackthorne wrote:
> hi
>
> As my experience with web2py grows I find an increased need to make it
> work in 2 main environments/behaviors.
>
> The first mode would be "development" and it should run with smaller
> buffers, extra debu
[alt+f1] for save, I changed it because of the issue of adding s when
saving :)
On Mar 16, 5:30 pm, mdipierro wrote:
> It contains some bug fixes to the new gluon.tools.Service and CJ port
> of the Amy editor. [crtl+S] for save and [tab] for auto-completion.
>
> To use Amy instead of edit_area i
@Francisco,
I'm on the same setup as yourself and typing ' works just fine, it
does 'your_content' like textmate does. If you also want to use the
old editor you can edit 0.py in admin and change it from amy to
edit_area :)
@Massimo
I'll post them here in a bit :)
On Mar 16, 6:28 pm, Francisco
an get amy up in Google Chrome, but not in Firefox 3.0.7
> (same running web2py - 2 browsers side-by-side)...
> also, at least in Chrome tab appears to just insert a tab...
>
> On Mon, Mar 16, 2009 at 5:55 PM, ceej wrote:
>
> > [alt+f1] for save, I changed it because of the
works in Chrome... (but
> the colors are terrible).
>
> On Mon, Mar 16, 2009 at 6:41 PM, ceej wrote:
>
> > @Yarko, if you're updating a previous app you need to clear your cache
> > and restart the browser etc... I would also do this anyway even if you
> > are
@Yarko, It's not that, I can't fix the problem if I can't see it :)
On Mar 16, 8:53 pm, Yarko Tymciurak wrote:
> Sigh -
> I see you are in disbelief... Ok - I will put some screen shots together for
> you...
>
>
>
> On Mon, Mar 16, 2009 at 6:58 PM, ceej wro
Or webfaction $9.50 a month down to $5.50 if you pay up front :)
http://www.webfaction.com/services/hosting
On Mar 18, 1:47 pm, Skylar Saveland wrote:
> Well, you can get VPS for $20/month from slicehost.
>
> On Mar 17, 8:13 am, aneesha wrote:
>
>
>
> > Hi
>
> > Any suggestions for web2py host
Hey,
I'm using the custom error routes and it get's the error code and the
ticket number, but is there a way to get the full URL of the page that
errored out? This would be really useful.
Many thanks
--~--~-~--~~~---~--~~
You received this message because you are
Thank you Vidul I tried that before but it seems to be working now
I've updated my server :)
On Mar 18, 7:03 pm, Vidul Petrov wrote:
> Hi,
>
> I guess you mean "request.env.http_referer"?
>
> On Mar 19, 12:20 am, ceej wrote:
>
>
>
> > Hey,
>
&g
Spoke to soon, it only gives you the last working URL "not" the one
that errors out. So my question is still valid :)
On Mar 18, 7:03 pm, Vidul Petrov wrote:
> Hi,
>
> I guess you mean "request.env.http_referer"?
>
> On Mar 19, 12:20 am, ceej wrote:
>
&
We are, http://www.web2py.com it was updated last week so it no longer
points to the other domain :)
On Mar 24, 12:39 pm, Jason Brower wrote:
> Don't you think web2py would be a better product if we had it at, for
> example, web2py.org? I am willing to pay for something like this.
> Regards,
>
Someone needs to take a video cam and record it :)
On Apr 1, 1:16 pm, TheDude wrote:
> So who's going to it? It's in about 4 hours from now in Boston. I
> can't believe I drove all the way from South Georgia just for it! For
> some of those interested/near the area...
>
> We will be talking abou
lol ;)
On Apr 1, 1:31 pm, TheDude wrote:
> ceej, DirectTV will be sponsoring the event, so it'll be featured on
> channel 328. As for cable users, the recordings will be placed online
> very shortly after. As for Yarko's mom, we will be featuring a segment
> of it in full
1 - 100 of 129 matches
Mail list logo