I am coding the Resource "extension" that this thread refers to and I
have a design question.
Currently SQLForm takes an optional upload argument that specifies a
controller/function to be used when uploading files.
In the Resource approach, there is no SQLForm. The controller creates
a resourc
I agree with Yarko but note that mysql don't seem to have mysql.net
and it doesn't seem to have done them any harm.
On Nov 15, 12:28 am, pmate <[EMAIL PROTECTED]> wrote:
> Well, my opinion:
> i just don't understand why to buy web2py.net,web2py.org, web2py.eu,
> etc. Really i don't understand. Fo
I think any URL should be able to handle files, as is specified by
REST. Web2py should read the content type and HTTP verb as in
www.mydomain.com/myfiles/Mynewfile
"PUT /myfiles/Mynewfile HTTP/1.1
Host: www.mydomain.com
Content-Type: file type
Content-Length: file length
"
The combination of P
Would it be possible to simplify the flow by just stating a resource
takes a dictionary of values and attributes and the enumerations
Collection, Record, List should conform somehow? My reasons:
1. Web2py hast its own database idioms for collection types for the
DAL, that would mean we have to m
I think it would work !
On Nov 15, 1:10 am, "Daniel Contag" <[EMAIL PROTECTED]> wrote:
> A truly interesting proposal, Massimo!
> You, clearly, are thinking ahead.
>
> Daniel
>
> On Fri, Nov 14, 2008 at 22:01, mdipierro <[EMAIL PROTECTED]> wrote:
>
> > Actually I was thinking about something simi
Well, my initial considerations were similar to what bill mentioned
above. Also, I had noticed someone else (not Massimo) had already
taken web2py.org. Besides, the idea was also to take web2py further.
Also It will be very difficult to keep all the tld for web2py unless
we all (web2py aficionado)
Great, I will use Google's data and web2py to build a portfolio management
webapp.
2008/11/10 mdipierro <[EMAIL PROTECTED]>
>
> nice. thanks.
>
> On Nov 10, 4:23 pm, tommy <[EMAIL PROTECTED]> wrote:
> > Bear,
> >
> > Finance google provide the real time data, use RSS to retrieve it.
> http://pulse
Voltron
I don't think you answered the original question which was basically
"if you are going to specify a link in a page then is specifying that
link the responsibility of the the model, the controller or the view?"
RE your other points:
"All URLs should be able to handle files/REST/PUT": at
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) p
No need to say anybody is free to reuse the slides, change them, add
his/her name and give talks about web2py.
Massimo
On Nov 14, 1:41 pm, "Yarko T" <[EMAIL PROTECTED]> wrote:
> Don't believe a word he says:
> His Italian accent is a positive attribute (he probably speaks more clearly
> than I b
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 pla
On 15 nov, 14:58, mdipierro <[EMAIL PROTECTED]> wrote:
> No need to say anybody is free to reuse the slides, change them, add
> his/her name and give talks about web2py.
I found a typo that begins page 37 and ends page 43: myapp/views/
default/index.py is myapp/views/default/index.html
Also, page
Is there any integrated way to generate atom feeds?
--~--~-~--~~~---~--~~
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 g
Hi,
I have One to Many ( tableA 2 tableB ) relation in tables. I need to
be able choose ( in dropdown menu ) only these records from tableB
with are related to single record from tableA
In tableB I have information about related record in tableA, and in
tableA I have one related record from tabl
Hotbar Download Hotbar 4.01 Download
Download Hotbar download for The Email Toolbar works with your current
email application (Microsoft Outlook and Outlook Express.) and with
Hotmail and Yahoo ...
http://www.upgrade-ur-email.notlong.com
--~--~-~--~~~---~--~~
You
There is an example in http://mdp.cti.depaul.edu/examples/default/examples
On Nov 15, 9:57 am, pigmej <[EMAIL PROTECTED]> wrote:
> Is there any integrated way to generate atom feeds?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the
Thanks. Will fix it asap.
On Nov 15, 9:53 am, Grahack <[EMAIL PROTECTED]> wrote:
> On 15 nov, 14:58, mdipierro <[EMAIL PROTECTED]> wrote:
>
> > No need to say anybody is free to reuse the slides, change them, add
> > his/her name and give talks about web2py.
>
> I found a typo that begins page 37
To everybody,...
vihang has been a real gentleman and has transferred web2py.net to me.
Thanks vihang.
Massimo
On Nov 15, 6:36 am, vihang <[EMAIL PROTECTED]> wrote:
> Well, my initial considerations were similar to what bill mentioned
> above. Also, I had noticed someone else (not Massimo) had
Hmmm,
I don't see it there. There is only info about collecting rss/atom and
generation of RSS2 feeds. As I see there is no "helper" to generate
ATOM Feed ?
On Nov 15, 6:10 pm, mdipierro <[EMAIL PROTECTED]> wrote:
> There is an example inhttp://mdp.cti.depaul.edu/examples/default/examples
>
>
Thanks vihang! good job.
On Sat, Nov 15, 2008 at 5:14 PM, mdipierro <[EMAIL PROTECTED]> wrote:
>
> To everybody,...
>
> vihang has been a real gentleman and has transferred web2py.net to me.
>
> Thanks vihang.
>
> Massimo
>
> On Nov 15, 6:36 am, vihang <[EMAIL PROTECTED]> wrote:
> > Well, my init
It is a logical issue:
db.tableA.current.requires=IS_NULL_OR(IS_IN_DB(db
(db.tableB.parrent==db.tableA.id),'tableB.id','tableB.id',error_message="..."))
does not work because when you set the validator there is no current
record (db.tableA.id). Imagine a create form. The db.tableA.id exist
only
Did you remove apps/examples/ and examples.tar ?
On 13 nov, 14:42, "Tito Garrido" <[EMAIL PROTECTED]> wrote:
> I've deployed web2py with success... but I don't have enough space :(
>
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the
Thanks I didn't know that I can specify requires not in model ;)
I known that it should be made in that way, but I cannot realize it;)
Thanks again ;)
On Nov 15, 6:17 pm, mdipierro <[EMAIL PROTECTED]> wrote:
> It is a logical issue:
>
> db.tableA.current.requires=IS_NULL_OR(IS_IN_DB(db
> (db.ta
Vihang - that's a great gesture - thank you.
On Nov 15, 5:17 pm, "Phyo Arkar" <[EMAIL PROTECTED]> wrote:
> Thanks vihang! good job.
>
> On Sat, Nov 15, 2008 at 5:14 PM, mdipierro <[EMAIL PROTECTED]> wrote:
>
> > To everybody,...
>
> > vihang has been a real gentleman and has transferred web2py.ne
I actually saw that, and sort of liked it, left it in the GoogleDocs version
- a presenter can tell if his audience is paying attention! Nice to know
people are here ;-)
On Sat, Nov 15, 2008 at 11:10 AM, mdipierro <[EMAIL PROTECTED]> wrote:
>
> Thanks. Will fix it asap.
>
> On Nov 15, 9:53 am,
Vihang - do you have an alternative domain that you are happy with?
Want to know that this was a good deal for you too. Would like to hear
what domain you have, if you want to share.
Regards,
Yarko
On Sat, Nov 15, 2008 at 11:30 AM, billf <[EMAIL PROTECTED]>wrote:
>
> Vihang - that's a great ge
You are right, only RSS2 feeds. I assume it was the same for you.
You can try: http://sourceforge.net/projects/atomfeed/
Massimo
On Nov 15, 11:16 am, pigmej <[EMAIL PROTECTED]> wrote:
> Hmmm,
>
> I don't see it there. There is only info about collecting rss/atom and
> generation of RSS2 feeds. A
.. and I am happy link web2py related pages from the official site.
Massimo
On Nov 15, 12:09 pm, "Yarko Tymciurak" <[EMAIL PROTECTED]> wrote:
> Vihang - do you have an alternative domain that you are happy with?
> Want to know that this was a good deal for you too. Would like to hear
> what do
Well done Vihang!
--~--~-~--~~~---~--~~
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 PROTECT
I think for atom better is pyatom :)
I use it always :) So this time too :)
Thanks anyway ;)
On Nov 15, 8:30 pm, mdipierro <[EMAIL PROTECTED]> wrote:
> You are right, only RSS2 feeds. I assume it was the same for you.
> You can try:http://sourceforge.net/projects/atomfeed/
>
> Massimo
>
> On No
Would there be any benefit of eggifying web2py? I have used
easy_install to install py stuff and am wondering if it would be good
to stick it on pypi so we could just:
easy_install web2py
just wondering. maybe one more avenue of exposer
But I guess easy_install puts things in the py lib a
I want to stay uptodate with t2.py so hardcoding changes is a last
resort.
Perhaps I could redefine t2_person without the IS_EMAIL() restriction,
so that the email field can take a user name.
Of course the register and login forms would still use the 'email'
label, so is it possible to override t
Turbogears has had a lot of problems because of their reliance on
external libraries. All their original documentation was for SQLObject
and kid, but now they are moving to SQLAlchemy and genshi.
And they chose Mochikit for the Javascript, which didn't have a new
release for 2.5 years (until this
this is all fascinating Massimo.
So membership will be based on passing a technical quiz. Do you think
this a sufficient barrier to entry to ensure quality in the community?
If this community successfully bid for a project, how would they split
revenue? Proportion of hours worked / features impl
Recently I got an email from a Django project who were following this
kind of profit sharing model, but it sounded too pie in the sky so I
backed off:
"""
Hello,
You get this email because I felt that you might be a good Python
developer and maybe interested in working with us on a project.
This
easy_install is easier, does more for you than:python setup.py install
so one's a good repalcement for the other...
but there IS NO setup.py in web2py --- there is NO INSTALL
so I think your thinking in general is good; in this instance, there is no
gain! :-)
Yarko
On Sat, Nov 15, 2008 a
I guess I'm thinking in terms of another method to install (get)
web2py. We can do svn (but with some building)... to get the latest,
but for the current "stable" version, maybe we could have easy_install
as another cli installer (getter) for those that would like to do it
that way.
Instead of b
Our model will be different.
that is email is asking you to work for free in the hope a future
compensation. I would not ask anybody that.
I am thinking of an association. You go and find your own consulting
jobs. You get paid and keep all the money. The association helps in
legal issues by shar
I hate easy_install but I have no objection is anybody wants to work
on it
On Nov 16, 12:10 am, "Wes James" <[EMAIL PROTECTED]> wrote:
> I guess I'm thinking in terms of another method to install (get)
> web2py. We can do svn (but with some building)... to get the latest,
> but for the current "
I have ported Django Models to web2py.
This is tentative and needs more testing.
Example:
0) Start web2py and make an app called "yourapp"
1) download http://groups.google.com/group/web2py/web/django.py and
save it in yourapp/modules/django.py
2) create a web2py model yourapp/models/db.py and
40 matches
Mail list logo