It's not reachable since a couple of days, and it's a very valuable
tool for web2py users...
José L.
Hi all, I have to made a new website/webapplication. It is structured
as following:
Home page (header, a little login form, several text and images, footer)
Page 1 (not too different from home page...)
Page 2 (idem)
Page 3 (idem)
Control panel to manage contents of all other pages (insert text,
im
I dont know if this is the correct place to post this, but I have
found a typo in
http://web2py.com/book/default/section/3/9
In the wiki code presented (first block, the db model) at lines 39 and
48 a function parameter (an empty string) is not correctly enclosed
causing a syntax error. Or maybe I
My VPS provider is having some major problems. I'm going to move it
tomorrow if they can't resolve. It should be back up within a day.
On Jun 9, 2:24 am, José L. wrote:
> It's not reachable since a couple of days, and it's a very valuable
> tool for web2py users...
>
> José L.
I mean the uuid_key's first two letters...
On jún. 9, 08:45, szimszon wrote:
> I wasn't able to continue the thread in
> http://groups.google.com/group/web2py/browse_frm/thread/a81248fec1dce...
>
> So...
>
> I imagine that I would have lots of files say some 10 000 or more. :)
> I think with ext
Hi,
a Task Scheduler Plugin would be very nice.
Kindly keep me posted about your progress!
What exactly is the Problem, do you have a traceback?
On 8 Jun., 05:42, Doug Warren wrote:
> So I'm writing a plugin to handle scheduling of tasks with a dynamic
> granularity of a second or less, and I
env(a, import_models=False, c=1, f=1, dir='', extra_request={})
Return web2py execution environment for application (a), controller
(c), function (f). If import_models is True the exec all application
models into the environment.
extra_request allows you to pass along any extra variables to the
re
That is the thing, its *almost* the same, but its not a true postgres
sequence. Postgres already has many years of development making sure
their auto number works, why can't I just use that instead of trying
to hack around the limitations of a system?
I don't have a choice. I *must* have native su
We have not fully agreed on the spec of PluginManager, it has been
added as a proof of concept, however no plugins to date have been
implemented with it. There are hundreds of posts debated what it
should do.
Currently the spec for plugins is you can do anything you want as long
as it has the word
Just use the welcome application. That should do it.
But your approach is pretty, well, novice. Lots of questions need to be
answered both by yourself and others.
What will change on the site, and when.
Can you program in python, html, css, js, or other languages? (This
helps you determine what ki
I have a field in my database that I would like to order in a particular
way. It is string.
Could I order the item by stating what should be first second third, and
then the rest can be alphabetical.
In particular.
db.orders, orderby=db.orders.status
That way I can get all the "Completed" and the
I wonder if it would be better to sort by type.
/uploads/table_name/field_name/
Working with those images/files should be done from a database don't you
think? When I deal with large amounts of files I use the console.
BR,
Jason Brower
On Tue, 2010-06-08 at 23:45 -0700, szimszon wrote:
> I wasn'
Hello,
ez-css is great for layout, I'm using it.
for typography, you could use the "typography.css" of blueprint.
On Jun 8, 4:03 pm, Salvor Hardin wrote:
> I'm looking for a great CSS framework to use with web2py.
>
> Someone in this group mentioned using Blueprint for typography and ez-
> css
Hmm... there are a lot of possibility to separate files into
folders...
I typically would have lots of files with the same type...
In the mean time I have a path to separate the uploaded files into
subdirectories based on uuid_key's first X character:
cut
--- sql.py.orig 2010-06-08 23:
Hi Jason, thanks for answer. In a hurry I just exposed my problem in
too basic terms.
I have started extending the wiki example in the web2py book, it seem
to be what I need. My request was for a sort of "template"... I
founded it, so thanks.
gls
I have no problem to dealing with large amounts of files its just the
underlaying filesystem is just not for storing large number of files
in one directory. I speak about ext2/ext3 which I use...
Some threads about it:
http://serverfault.com/questions/129953/maximum-number-of-files-in-one-ext3-di
Hello,
I implement the RBAC in my app and I try to figure it out how I can add more
table in the dropbox of auth_permission table... There is only the auth_
table in the dropbox... I'm not experienced with RBAC and web2py then the
information in web2py book are a bit short to me.
Thanks.
Jonhy
Mind this works if web2py is serving static files, not if apache does.
On Jun 9, 1:06 am, annet wrote:
> Massimo,
>
> I used:
>
> > {{=A('terms of service',_href=URL(r=request,c='static',f='cms/files/
> > tos_fitwise.pdf',vars=dict(attachment=True)))}}
>
> and it works, so problem solved thanks.
thanks. here is a good place.
On Jun 9, 3:25 am, Giuseppe Luca Scrofani wrote:
> I dont know if this is the correct place to post this, but I have
> found a typo inhttp://web2py.com/book/default/section/3/9
> In the wiki code presented (first block, the db model) at lines 39 and
> 48 a function p
In postgresql you get it native:
Field('yourtfield',SQLCustomType('integer','SERIAL PRIMARY
KEY',encoder=(lambda x: int(x)),decoder=(lambda x:x)))
On Jun 9, 5:28 am, Thadeus Burgess wrote:
> That is the thing, its *almost* the same, but its not a true postgres
> sequence. Postgres already has ma
You have two options:
1) perform 4 quesries
rows=db(query_first).select()+db(query_second).select()
+db(query_third).select()+db(query_others).select(orderby=criteria)
2) perform one query and sort them in memoery
rows=db(...).select().sort(lambda row: yoursortingfunction(row))
On Jun 9, 5:38
please email me this as an attachment.
On Jun 9, 6:50 am, szimszon wrote:
> Hmm... there are a lot of possibility to separate files into
> folders...
>
> I typically would have lots of files with the same type...
>
> In the mean time I have a path to separate the uploaded files into
> subdirector
Great. What about sqlite?
--
Thadeus
On Wed, Jun 9, 2010 at 8:41 AM, mdipierro wrote:
> In postgresql you get it native:
>
> Field('yourtfield',SQLCustomType('integer','SERIAL PRIMARY
> KEY',encoder=(lambda x: int(x)),decoder=(lambda x:x)))
>
> On Jun 9, 5:28 am, Thadeus Burgess wrote:
>> T
On Wed, Jun 9, 2010 at 3:34 AM, Thadeus Burgess wrote:
> We have not fully agreed on the spec of PluginManager, it has been
> added as a proof of concept, however no plugins to date have been
> implemented with it. There are hundreds of posts debated what it
> should do.
>
> Currently the spec for
I am testing this (both sqlite and postgresql). How do you do it in
raw sql?
This does not work in sqlite sql
CREATE TABLE a(
id INTEGER PRIMARY KEY AUTOINCREMENT,
d CHAR(512),
b INTEGER AUTOINCREMENT
);
It does not seem to like two AUTOINCREMENT fields (which is what I
thought).
O
I am not sure about the postgresql solution. Tell me how you do it in
SQL and i tell you how to do in web2pyese.
On Jun 9, 9:01 am, Thadeus Burgess wrote:
> Great. What about sqlite?
>
> --
> Thadeus
>
> On Wed, Jun 9, 2010 at 8:41 AM, mdipierro wrote:
> > In postgresql you get it native:
>
> >
Hello,
I have different types of data that must be selected, but a dropbox is not
adequate. A popup that could list in columns my different data type would be
an interesting alternative. Is there exist a plugin that would do that? I
search for the code of calendar date picker included in web2py ..
On Jun 9, 2010, at 5:54 AM, Pepe wrote:
> Hello,
>
> ez-css is great for layout, I'm using it.
>
> for typography, you could use the "typography.css" of blueprint.
That's what I'm doing. I started out with blueprint, but switched my layout to
ez-css to get a variable-width section. Highly reco
On Tue, Jun 8, 2010 at 02:09, mdipierro wrote:
> send us some slides when done.
>
sure, u will sharing voice recoder ;-)
> On Jun 7, 2:29 am, Anand Vaidya wrote:
>> Pycon APAC 2010 is scheduled to run from 9th to 11th in Singapore.
>>
>> On the 10th June, 11:10am we have a talk :
>>
>> "Electro
On a second thought of this matterthis is nonsense.
If a table has two autoincrement fields ("id" and "other") they always
contain the same values or values that differ for a constant offset
(If the started with different values). That is why some database
backends probably do not even support
I like ez-css a lot also. It that is very flexible, super fast to
learn and use (no manual required really) and it works great for
creating "flowable" sites as well.
As a result of this discussion I am going to give the blueprint
typography.css a shot.
the Blueprint license seems very interesting
Postgres
CREATE TABLE foo (
id integer PRIMARY KEY SERIAL,
bar varchar,
did integer DEFAULT SERIAL);
Or...
CREATE SEQUENCE seq_foo_did START 2;
CREATE TABLE foo (
id integer PRIMARY KEY SERIAL,
bar varchar,
did integer DEFAULT nextval('seq_foo_did'));
SQLite however does not support multi
well, I am posting in trunk a modifiled sql.py that
allows Field('name','autoincrement') and generates the following code
for postgresql (only postgresql). Give it a try.
Massimo
On Jun 9, 10:38 am, Thadeus Burgess wrote:
> Postgres
>
> CREATE TABLE foo (
> id integer PRIMARY KEY SERIAL,
> bar
This is not going to stay, it is just for you to look at.
Consider defining the field as integer and create a trigger using SQL
to autofill this field.
On Jun 9, 10:52 am, mdipierro wrote:
> well, I am posting in trunk a modifiled sql.py that
>
> allows Field('name','autoincrement') and generates
Already done :)
On jún. 9, 15:45, mdipierro wrote:
> please email me this as an attachment.
>
> On Jun 9, 6:50 am, szimszon wrote:
>
> > Hmm... there are a lot of possibility to separate files into
> > folders...
>
> > I typically would have lots of files with the same type...
>
> > In the mean
Hi Ed,
Just move the entire web2py source folder and you should be good to
develop. To save some space you can delete the examples app and
potentially the welcome app (if you don't need to create new apps
directly on the target system). I was looking into this at my last
contract and I think the p
Understood. I will test this ASAP.
--
Thadeus
On Wed, Jun 9, 2010 at 11:05 AM, mdipierro wrote:
> This is not going to stay, it is just for you to look at.
> Consider defining the field as integer and create a trigger using SQL
> to autofill this field.
>
> On Jun 9, 10:52 am, mdipierro wro
On Mon, Jun 7, 2010 at 15:55, ed wrote:
> I would like to install web2py with the minimal footprint on an embedded
> Arm system. The embedded Arm system already has Python 2.6 installed.
>
> What files do I need to install for web2py to run?
> What do you expect the total MB size to be?
>
> Is th
I send email out to 150 club members. No problems with simple emails.
However with attachments only PC users can see and download them,
while Mac uses cannot even see the attachments.
using web2py 1.79.1 on webfaction with webfaction email servers
My code (simplified):
from gluon.tools import Ma
I do not know how to help about this. This seems more of a problem
with smtlib than web2py. If anybody has any more insight about this
please let us know.
The idea of linking the attachment seems a better way anyway because
less load on the email server.
On Jun 9, 12:46 pm, Bob_in_Comox wrote
Nice, I will try number one as I still don't know what the heck a lambda
is.
Best regards,
Jason Brower
On Wed, 2010-06-09 at 06:44 -0700, mdipierro wrote:
> You have two options:
>
> 1) perform 4 quesries
>
> rows=db(query_first).select()+db(query_second).select()
> +db(query_third).select()+d
It's in the default welcome example if you want to use it in a form. Or
if your using a 'date' in your model you should have a date picker by
default.
Best Regards,
Jason Brower
On Wed, 2010-06-09 at 11:10 -0400, Jean Guy wrote:
> Hello,
>
> I have different types of data that must be selected,
I found datepicker it is in /static...
I'm still searching for a data picker in which I could list data from
differents tables and let them be selected by check box...
Jonhy
2010/6/9 Jason Brower
> It's in the default welcome example if you want to use it in a form. Or
> if your using a 'da
>>> a=lambda b: 'c'
is the same as
>>> def a(b): return 'c'
but often you see
>>> def f(a): a()
>>> f(lambda b: 'c')
'c'
this means that within f, a=lambda b:'c' but outside f, the function
has no name. The function (lambda) exist only for the purposed to be
passed to f.
On Ju
When I try to change the avatar image in the profile I get a weird
error... This is the actual pickle, as I have no way to read the files
while I don't have admin access. Hence why I reported this feature about
a month ago.
(dp1
S'output'
p2
S''
sS'layer'
p3
S'Framework'
p4
sS'code'
p5
S''
sS'trace
And if I refresh the page that had the error, resubmitting. It logs me
out and puts me at the loggin screen.
It also seems to have worked when I am logged in.(Image changed and
everything.) Very funky indeed.
BR,
J
On Wed, 2010-06-09 at 22:02 +0300, Jason Brower wrote:
> When I try to change the
Does it make sense to have the value of uploadseparate be any
different than 2? It is already 3844 subfolders.
On Jun 9, 11:15 am, szimszon wrote:
> Already done :)
>
> On jún. 9, 15:45, mdipierro wrote:
>
> > please email me this as an attachment.
>
> > On Jun 9, 6:50 am, szimszon wrote:
>
> >
Sorry to bump my own message but is there a better way to handle this?
On Jun 4, 2010 8:02 AM, "Doug Warren" wrote:
Yes, but the foreign key here is many to one, not one to one. (I
guess I should have been more clear:
if db(fk_table.id > 0).count() == 0:
db.fk_table.insert(name="The Foreign Ke
You can rewrite
if db(fk_table.id > 0).count() == 0:
db.fk_table.insert(name="The Foreign Key")
if db(table2.id > 0).count() == 0:
fk = db(db.fk_table.name == "The Foreign Key").select()[0]
db.table2.insert(name = "Some name", fk_id = fk.id, field2="some
value")
as
fk = db(db.fk_tabl
What version of web2py I need use to try that, I download right now
a 1.79.2 version from home site and in that version don't work that
modification, and I not permission to download a trunk version.
On Jun 9, 12:30 am, mdipierro wrote:
> I changed the validator in trunk IS_IN_DB. Now it should b
sorry. Trunk version only
On Jun 9, 2:36 pm, kike wrote:
> What version of web2py I need use to try that, I download right now
> a 1.79.2 version from home site and in that version don't work that
> modification, and I not permission to download a trunk version.
>
> On Jun 9, 12:30 am, mdipierro
what do you mean "no permission" You do not need permission.
On Jun 9, 2:36 pm, kike wrote:
> What version of web2py I need use to try that, I download right now
> a 1.79.2 version from home site and in that version don't work that
> modification, and I not permission to download a trunk version.
This was fixed in 1.79.1
On Jun 9, 2:05 pm, Jason Brower wrote:
> And if I refresh the page that had the error, resubmitting. It logs me
> out and puts me at the loggin screen.
> It also seems to have worked when I am logged in.(Image changed and
> everything.) Very funky indeed.
> BR,
> J
>
> O
Good question :)
Originally I was about to use only the first letter of uuid_key :) and
a parameter true or false :)
It's the gnome way to doing things. Keep it simple to the
endusers... :-D
But after that I considered to use the first two characters than came
the idea to have an integer paramete
let my explain, in the address http://web2py.com/examples/default/download
in the trunk part are two link, the first mercurial repository in the
section http://code.google.com/p/web2py/downloads/list they show me
the error 403 Forbidden and tell me my client not have permission to
get that url, and
I suggest a subfolder for every table.field and one for every
combinations of the first 2 chars?
The simpler the better.
On Jun 9, 3:01 pm, szimszon wrote:
> Good question :)
>
> Originally I was about to use only the first letter of uuid_key :) and
> a parameter true or false :)
> It's the gnome
you should just type:
hg clone https://web2py.googlecode.com/hg/ web2py
in your shell and it will donwload a copy
On Jun 9, 3:08 pm, kike wrote:
> let my explain, in the addresshttp://web2py.com/examples/default/download
> in the trunk part are two link, the first mercurial repository in the
>
Hello:
I am trying to use flot to draw a graph by reading the data from the
database
I am stuck, need an example
Yep! Thank you. I knew there would be a more idiomatic way of
writing it, just wasn't sure what it would be.
On Wed, Jun 9, 2010 at 12:27 PM, mdipierro wrote:
> You can rewrite
>
> if db(fk_table.id > 0).count() == 0:
> db.fk_table.insert(name="The Foreign Key")
> if db(table2.id > 0).count(
Fran proposed cleaning up the bzr branch since it is getting slow. the
easiest way to do it is bu deleting all previous revisions and their
history. Any strong objection?
Massimo
Although this does not uses flot, it can give an idea.
http://web2py.com/appliances/default/show/12
On Jun 9, 3:20 pm, dbb wrote:
> Hello:
> I am trying to use flot to draw a graph by reading the data from the
> database
> I am stuck, need an example
the same problems I not permission. and now what
On Jun 9, 4:12 pm, mdipierro wrote:
> you should just type:
>
> hg clonehttps://web2py.googlecode.com/hg/web2py
>
> in your shell and it will donwload a copy
>
> On Jun 9, 3:08 pm, kike wrote:
>
> > let my explain, in the addresshttp://web2py.
As I mentioned, with the object caching works well.
When I create the object you pass as argument the db. The problem I
have is that when I save something in the database fails me because
the base is closed.
...
File "/usr/home/jose/web2py/applications/py_ccu/modules/
incidencias.py", line 124, i
I forget mention I'm cuban, and in my country I not access to
googlecode
On Jun 9, 4:37 pm, kike wrote:
> the same problems I not permission. and now what
>
> On Jun 9, 4:12 pm, mdipierro wrote:
>
> > you should just type:
>
> > hg clonehttps://web2py.googlecode.com/hg/web2py
>
> > in your s
On Wed, Jun 9, 2010 at 17:36, mdipierro wrote:
> Fran proposed cleaning up the bzr branch since it is getting slow. the
> easiest way to do it is bu deleting all previous revisions and their
> history. Any strong objection?
I think we should maintain only mercurial.
--
Álvaro Justen - Turicas
Hi,
I am trying to create an orm setup like in ruby on rails with the DAL.
I have a user, post, and tag model.
A user has many posts.
A tag belongs to a user.
A post has and belongs to many tags.
A tag has and belongs to many posts.
I have 4 separate files in my models folder: db.py, user.py, pos
No. This the main issue with web2py design. This is the price we pay
for not having imports of models.
On Jun 9, 4:21 pm, Binh wrote:
> Hi,
>
> I am trying to create an orm setup like in ruby on rails with the DAL.
> I have a user, post, and tag model.
> A user has many posts.
> A tag belongs to
I would share some pretty libraries.
I like them a lot and maybe you'll like them
elRTE :Open source WYSIWYG editor for website
Demo: http://elrte.ru/en/elrte/demo
Web: http://elrte.ru/en
elFinder: File manager for website (Finder osx style)
Demo: http://elrte.ru/en/elfinder/demo
Web: http://elr
There is no reason you need to use webfaction's mail servers if you
are hosted on webfaction.
try connecting to a different mail server, and run some tests and see
what happens.
On Jun 9, 12:49 pm, mdipierro wrote:
> I do not know how to help about this. This seems more of a problem
> with smtl
really nice. Perhaps it is a time for an admin^2
On Jun 9, 4:49 pm, GoldenTiger wrote:
> I would share some pretty libraries.
> I like them a lot and maybe you'll like them
>
> elRTE :Open source WYSIWYG editor for website
> Demo:http://elrte.ru/en/elrte/demo
> Web:http://elrte.ru/en
>
> elFinder
That is exactly what I was thinking :)
On 10 jun, 00:07, mdipierro wrote:
> really nice. Perhaps it is a time for an admin^2
>
> On Jun 9, 4:49 pm, GoldenTiger wrote:
>
> > I would share some pretty libraries.
> > I like them a lot and maybe you'll like them
>
> > elRTE :Open source WYSIWYG ed
At http://www.ez-css.org/rapid_prototyping , code of Module3A and
Module3B are identical, but looks different.
I don't understand it. Any help please?
On 9 jun, 17:36, Christopher Steel wrote:
> I like ez-css a lot also. It that is very flexible, super fast to
> learn and use (no manual requi
If we were to do this, should have a single tree of applications and
sub trees for models/views/controllers/etc. (option 1) or should have
separate pages for the list of apps and one for the tree structure
inside an app (option 2).
Actually this would be easy now that I have seen not elRTE and
elF
Perhaps for embedded system, it could be good using Stackless
python .
Anyway, I didn't investigate about, so I'm not sure of being a good
idea.
On 9 jun, 18:50, Álvaro Justen wrote:
> On Mon, Jun 7, 2010 at 15:55, ed wrote:
> > I would like to install web2py with the minimal footprint on an em
On 9 jun, 17:38, Jose wrote:
> As I mentioned, with the object caching works well.
> When I create the object you pass as argument the db. The problem I
> have is that when I save something in the database fails me because
> the base is closed.
>
> ...
> File "/usr/home/jose/web2py/applications/
VPS provider fail. I'm on the hunt for a new provider. I hope to have
it back up tomorrow.
On Jun 9, 2010, at 5:39 PM, GoldenTiger wrote:
> At http://www.ez-css.org/rapid_prototyping , code of Module3A and
> Module3B are identical, but looks different.
>
> I don't understand it. Any help please?
The classes are subtly different. The difference is whether column 3, which
does not ha
On Jun 9, 5:59 pm, Jonathan Lundell wrote:
> On Jun 9, 2010, at 5:39 PM, GoldenTiger wrote:
>
> > Athttp://www.ez-css.org/rapid_prototyping, code of Module3A and
> > Module3B are identical, but looks different.
>
> > I don't understand it. Any help please?
>
> The classes are subtly different. T
Well, maybe both of admin versions could start working together, or
testing them as independient apps...
but I don't know admin internally, so I can't be very usefull by now
On 10 jun, 00:43, mdipierro wrote:
> If we were to do this, should have a single tree of applications and
> sub trees for
Thanks a lot, now I understand it :)
On 10 jun, 01:06, Yarko Tymciurak wrote:
> On Jun 9, 5:59 pm, Jonathan Lundell wrote:
>
> > On Jun 9, 2010, at 5:39 PM, GoldenTiger wrote:
>
> > > Athttp://www.ez-css.org/rapid_prototyping, code of Module3A and
> > > Module3B are identical, but looks differ
I ran into this a few nights ago, and if I wasn't about to leave on a
vacation I'd try some prototype code for it, but from what I can tell
at the end of any request all open database connections are marked to
be closed (Except for those needed to keep the connection pool up to
it's proper size.)
last time i was wrestling with the forms i noticed that everything has
nice class names - use css to put no-wrap on the label class.
(firebug plugin to firefox really helps with inspecting generated
HTML).
also i think i read something about being able to specify table or div
based layouts for for
One more question please
About fieldset, I can read:
"This solution is a hack as it relies on fieldset to escape caveats
related to DIVs. It should not be used for production"
Which problems could be found if used for production?
On 10 jun, 01:17, GoldenTiger wrote:
> Thanks a lot, now I under
Sorry to bump an old email, but was this changed at some point?
(master) [dwar...@thebigwave gluon]$ grep pool_size\= *
dal.py:def __init__(self,db,uri,pool_size=0,folder=None,db_codec ='UTF-8'):
dal.py:def __init__(self,db,uri,pool_size=0,folder=None,db_codec ='UTF-8'):
dal.py:def __in
yes, this was always zero, mostly because it does not work with sqlite
(default db) and because when introduced we did not want to change the
previous behavior (backward compatibility).
On Jun 9, 6:59 pm, Doug Warren wrote:
> Sorry to bump an old email, but was this changed at some point?
> (mast
slicehost! =)
--
Thadeus
On Wed, Jun 9, 2010 at 6:01 PM, mr.freeze wrote:
> VPS provider fail. I'm on the hunt for a new provider. I hope to have
> it back up tomorrow.
>
There are some things you can do to alleviate the situation.
First, you can name you models so that they execute in the correct order.
A_db.py
B_user.py
C_post.py
E_tag.py
That said, I usually try to keep all related models in the same file.
In your case you might have
B_user.py
C_weblog.py
Si
I don't know the answer but I may have found a clue. When I try to
manually install the pwauth line of the script, it's not found in the
repository. I copied Massimo's vimeo instructions exactly and got the
same error.
Oddly, it started working when I screwed with the link (but probably
not as in
vps.net
I have not rebooted or restarted apache in 3 months (except when
upgraded web2py) and only tickets due to known application bugs.
On Jun 9, 9:13 pm, Thadeus Burgess wrote:
> slicehost! =)
>
> --
> Thadeus
>
> On Wed, Jun 9, 2010 at 6:01 PM, mr.freeze wrote:
> > VPS provider fail. I'm on
My approach is to use
db_blablabla1.py
db_blablabla2.py
db_blablabla3.py
where db_blablabla.py defiles all tables that link each other for a
specific purpose. The different files are independent and therefore
the order of execution is not important.
On Jun 9, 9:20 pm, Thadeus Burgess wrote
You do not need it. Comment that part of the script related to pam.
On Jun 9, 9:21 pm, cadrentes wrote:
> I don't know the answer but I may have found a clue. When I try to
> manually install the pwauth line of the script, it's not found in the
> repository. I copied Massimo's vimeo instruction
Statusactive
Distro Ubuntu 9.10 (karmic)
Age 7 months
Datacenter DFW1
Since I live in Austin, I like having my server so close. Most of
slicehosts servers are in Dallas, they allocate your server based on
your address, however they do have them located elsewhere and can
reque
FWIW, I've had 600+ days of uptime running Debian + Apache + qmail at
www.linode.com. It was rebooted recently to switch from uml to xen.
I have two nodes there, one Debian (sarge) in Texas and one Ubuntu
10.04 in New Jersey.
Linode's web-based interface is amazing (I love being able to resize
my
Hi all,
attached is a patch for gql.py. Please review and Massimo, if people
like this, can we add it to trunk?
what does it do? it allows you to do key queries on Google App Engine.
this means that you can now perform all ID queries on tables in google
app engine. for example:
bel
Notwithstanding my backup option of using links instead of
attachments, I discovered a way to make email attachments work for
both PC users as well as Mac users:
Line 294 of gluon.tools.py:
payload_in = MIMEMultipart.MIMEMultipart('related')
changed to:
payload_in = MIMEMultipart.MIMEMultip
The belongs is fine but I have a couple of problems:
1) adding __key__ in extra is not backward compatible because it
changes the way records in Rows is acceessed
2) if you say db(db.table.id<1000) it does not actually select records
if id<1000 but Key(id) wrote:
> Hi all,
>
> attached is a patch
In trunk! :-)
On Jun 9, 11:04 pm, Bob_in_Comox wrote:
> Notwithstanding my backup option of using links instead of
> attachments, I discovered a way to make email attachments work for
> both PC users as well as Mac users:
>
> Line 294 of gluon.tools.py:
> payload_in = MIMEMultipart.MIMEMultipa
Thanks, thought I was installing the latest version. But I wasn't.
Best Regards,
Jason Brower
On Wed, 2010-06-09 at 12:54 -0700, mdipierro wrote:
> This was fixed in 1.79.1
>
> On Jun 9, 2:05 pm, Jason Brower wrote:
> > And if I refresh the page that had the error, resubmitting. It logs me
> >
1) i don't mind removing __key__ from extra. it was just something i
was using while figuring it out. (though i don't understand what it
changes in how Rows is accessed).
2) The Key on GAE is a base64 encoded string of "table_name:
id=" (for the simple no-ancestor case). My understanding of how
Controller would be useful for a facebook canvas app where all
requests are delegated to all the other controllers.
The example facebook app shows the use of pyfacebook to handle
requests on the index action in the default controller.
Is it possible to hookup pyfacebook in a DRY way that all contr
1 - 100 of 113 matches
Mail list logo