h
I don't mind doing, just opening it up for any more-qualified
presenters.
This is the meetup: http://www.meetup.com/sfpython/
Thanks,
Mark
On Nov 6, 1:26 pm, "Yarko T" <[EMAIL PROTECTED]> wrote:
> Interesting but the strength of the words trouble me a bit... (ha
Anyone feel comfortable giving a web2py demo to the San Francisco
Python meetup? The next session is going to be a Pylons demo. I'm
not sure how many framework-centric demos they'd like to do, but worth
a suggestion to the group.
I really only have functional knowledge of web2py and not much
te
http://groups.google.com/group/web2py/browse_thread/thread/445149728735784a
On Nov 7, 4:33 pm, mark <[EMAIL PROTECTED]> wrote:
> I was at that meetup and was one of the ones expressing my opinion of
> web2py... hopefully anything I said about Django wasn't interpreted as
>
Sounds good. If I end up putting anything together, I'll post it
here. If anyone else has any demo materials and wouldn't mind posting
them, that would be great.
Mark
On Nov 8, 6:37 am, mdipierro <[EMAIL PROTECTED]> wrote:
> Good idea. I have to make some for pyworks next
same ways (only two machine install is the
one that gets me), Adobe Reader will still be a better host
application than VitalSource Bookshelf.
That said, the material in the book is worth every penny. You'll be
happy to purchase it after an hour or so of use.
Mark
On Nov 20, 9:51 am, md
so buying the book does not qualify the buyer for an electronic copy
as well?
On Oct 14, 7:12 am, mdipierro <[EMAIL PROTECTED]> wrote:
> Not yet
>
> On Oct 14, 12:23 am, vihang <[EMAIL PROTECTED]> wrote:
>
> > any update on the pdf version for thebook?
>
> > On Oct 12, 8:43 pm, mdipierro <[EMAIL
Hi airdrummer
I have been experiencing the same issue and was confused by that
AlterEgo entry. According the Mozilla SSL error code page here (http://
www.mozilla.org/projects/security/pki/nss/ref/ssl/sslerr.html)
"This generally indicates that the remote peer system has a flawed
implementation
4 records. The number will
be displayed correctly if I remove the groupby from grid.
Thanks,
Mark
--
It is great to know. Thanks!
On Tuesday, January 22, 2013 5:03:08 PM UTC-5, Massimo Di Pierro wrote:
>
> This this been fixed in trunk some time ago.
>
> On Friday, 18 January 2013 11:21:20 UTC-6, Mark wrote:
>>
>> For web2py 2.2.1.
>>
>> When I use groupby
I also hope this can be done. In sqlhtml.py, simply change following code:
if left is not None:
tablenames += db._adapter.tables(left)
into:
if left is not None:
if isinstance(left, (list)):
for l in left:
tablenames +=
Yes, it works. Thanks!
On Wednesday, January 30, 2013 10:28:23 AM UTC-5, Massimo Di Pierro wrote:
>
> This is in trunk. Can you please check it.
>
> On Wednesday, 23 January 2013 10:02:03 UTC-6, Mark wrote:
>>
>> I also hope this can be done. In sqlhtml.py, simp
I think this can be done in "edit" page of each record. If a record is not
editable based on some conditions, redirect it to another page.
# In edit page of each record
if len(request.args) > 2 and request.args[-3] == 'edit':
record = db[request.args[-2]](request.args[-1])
if record_not_e
The grandparent, parent, child relationships maybe too complex for
smartgrid, or maybe a bug in smartgrid? Try to use the IF statement to
differentiate the relationships:
if 'DictionaryType.languageID' in request.args:
db.Word.dictionaryTypeID.represent = lambda id:
db.DictionaryType(id).di
If you only need date, use Field('appointment_date', 'date') instead. If
you want to keep 'datetime', can do appointment_date.date() also. Mark
On Thursday, February 28, 2013 8:51:53 PM UTC-5, jjg0 wrote:
>
> Hi Everyone! I have another 'new guy'
e-create a new table because there may be some
conflict. Or try to define a new field or define a brand new table, and use
requires=IS_DATE() for the field. It is easier to test by a new table.
Mark
On Friday, March 1, 2013 7:06:01 PM UTC-5, jjg0 wrote:
>
> I may have marked this answered a bit
If you don't have a view (such as index.html), the generic view
(generic.html) will be used. Isn't it clear?
On Thursday, March 14, 2013 7:54:38 AM UTC-4, Sarbjit singh wrote:
>
> In the 5th edition of web2py manual, for the example of images app, I have
> one doubt :-
>
> As per that app code,
. So my question is if
> default/index.html does exist, then why generic.html is being used?
>
> hope this clears my doubt
>
> -Sarbjit
>
>
> On Thursday, March 14, 2013 9:04:31 PM UTC+5:30, Mark wrote:
>>
>> If you don't have a view (such as index.html), the gener
try form.vars.sharedServiceID=sharedServiceID
On Sunday, March 17, 2013 3:13:58 AM UTC-4, Alex Glaros wrote:
>
> I'm trying to automatically populate child FK field "sharedServiceID"
> using the controller below, but the field gets filled with "none"
>
> Do you see any flaw in the controller for
Alex,
Sorry, I don't have any related examples and don't know how to do it. I
guess you may need a jquery dialog and a while loop, which continue to run
until the dialog return "No".
Mark
On Monday, March 18, 2013 11:01:27 AM UTC-4, Alex Glaros wrote:
>
> It wor
:
visible !important;}
.wrapper tr:hover {background-color:#C5C5C5}
Header 1header 2
Header 3header 4
cell 1cell 2cell 3cell 4
cell 2cell 3cell 6cell 7
cell 2cell 3cell 6cell 7
cell 2cell 3cell 6cell 7
cell 2cell 3cell 6cell 7
cell 2cell 3cell 6cell 7
Thanks,
Mark
--
---
You received
Derek,
It is a great solution. Thank you so much! I hope this "-ms-overflow-x:
scroll;" should be included in SQLFORM.grid by default.
Mark
On Monday, March 25, 2013 1:49:03 PM UTC-4, Derek wrote:
>
> Add a vendor-specific tag for IE...
>
> -ms-overflow-x: scroll;
>
&g
I opened a ticket at
http://code.google.com/p/web2py/issues/detail?id=1406&start=100
Thanks
On Monday, March 25, 2013 3:46:04 PM UTC-4, Niphlod wrote:
>
> file a bug for it, so it gets tracked. ...
>
> On Monday, March 25, 2013 8:01:18 PM UTC+1, Mark wrote:
>>
>>
I met the same problem and found a solution. I changed the id field into a
button, and actually, any fields can be buttons or links in the grid.
For example:
db.person.id.represent=lambda id,r:
DIV(A('View',_class='button',_href=URL('table',args=['person','view','person',r.id])),
_class='row_
Hi All,
I want to add an exception to IS_NOT_IN_DB so that either
IS_IN_SET(('n/a','N/A')) or
IS_NOT_IN_DB(db,'computer_hardware.serial_number') is acceptable.
I don't know if I need to write a custom validator. Any help is appreciated!
Mark
--
ils can go
through.
Mark
On Wednesday, November 21, 2012 2:32:26 PM UTC-5, Daniele wrote:
>
> I'm trying to send emails upon user registration. This is what I have in
> my models file:
>
> mail = auth.settings.mailer
> mail.settings.server = 'smtp.gmail.com:587'
ing well. I try to
run expire_sessions.py in command line:
web2py -S admin -R applications/admin/cron/expire_sessions.py
web2py -S myapp -R applications/admin/cron/expire_sessions.py
With "-S myapp" option, the expire_sessions.py did work for myapp, but "-S
admin" option didn't.
Thanks,
Mark
--
Thanks Massimo. I just opened a ticket.
Mark
On Tuesday, November 27, 2012 11:35:21 AM UTC-5, Massimo Di Pierro wrote:
>
> I think is an authentication problem. Somehow security broke this. Please
> open a ticket.
>
> On Monday, 26 November 2012 13:30:28 UTC-6, Mark wrote:
>&
If McAfee is running on the server, McAfee blocked the emails sending from
web2py, which isn't on the whitelist of McAfee. Try to change web2py.exe
into apache.exe
On Wednesday, November 28, 2012 10:20:55 AM UTC-5, Aurelijus Useckas wrote:
>
> Hey, strange situation. Would apreciate your help...
lidation, but how can login_onvalidation work
but register_onvalidation not? Is this a bug or are there better ways to
implement case insensitive email?
Thanks,
Mark
--
ry or grid to display
the max value in each group?
Any help will be greatly appreciated.
Mark
--
This code overrides the customized email settings such as IS_LOWER(). I
hope this code should be changed to allow customized email settings.
Just opened a ticket for it:
http://code.google.com/p/web2py/issues/detail?id=1212
Thanks
On Thursday, November 29, 2012 1:30:54 PM UTC-5, Mark wrote:
&g
Based on your model, records in table2 are parent records, and records in
table3 are child records. I think the ondelete means on_parent_delete.
Mark
On Tuesday, December 11, 2012 10:42:47 AM UTC-5, Richard wrote:
>
> Here the error ERREUR: UPDATE ou DELETE
> sur la table « table
rid = SQLFORM.grid(query,left=left)
On Friday, December 7, 2012 9:26:20 AM UTC-5, Mark wrote:
>
> Hello,
>
> I have following records in a table for example:
>
> id, key, value
> 10, AA, 838
> 11, BB, 135
> 12, BB, 147
> 13, AA, 400
> 14, AA, 999
> 15, AA, 625
>
Do you have any kind of backup files for the database? Or, do your
server/computer backup daily or weekly? If there are any backup files, you
can restore the deleted data easily.
Mark
On Wednesday, December 19, 2012 8:21:27 AM UTC-5, Aurelijus Useckas wrote:
>
> I've deleted user
bootstrap-responsive.min.css caused the problems. Maybe the whole bootstrap
need to be re-configured. Removed
response.files.append(URL('static','css/bootstrap-responsive.min.css'))
from layout.html will fix most of the problems.
Mark
On Saturday, April 13, 2013 5:29:39
deletable = False
if 'edit' in request.args:
record = db[table](request.args[-1])
if some condition of record:
deletable = True
grid = SQLFORM.grid(db[table], deletable = deletable)
On Sunday, April 14, 2013 3:12:31 PM UTC-4, Dan wrote:
>
> Mark
SQLFORM.grid(, editargs=dict(comments=False))
or
SQLFORM.grid(, formstyle='bootstrap')
On Monday, April 22, 2013 2:15:35 PM UTC-4, Christian Espinoza wrote:
>
> Hi guys, somebody know how hide the comments column at a edit form using
> SQLFORM.grid() ??
>
> I can do it using jquery wi
Hello,
I want to use startswith in a query like following, but it didn't work:
db.person.name.startswith(db.student.name)
What is wrong in this query? Is there a better way for it or a work
around? Any help would be greatly appreciated.
Thanks
--
Resources:
- http://web2py.com
- http://web2
Hi Derek,
Thank you very much for your answer. I get the idea.
On Monday, October 28, 2013 12:06:54 PM UTC-4, Derek wrote:
>
> You're going to need a value for db.student.name... so you'll need a join
> or something.
>
> On Monday, October 28, 2013 8:50:29 AM UTC-7
UTC-4, viniciusban wrote:
>
> rows = db(db.person.name.startswith("John")).select()
>
> On Mon, Oct 28, 2013 at 1:50 PM, Mark >
> wrote:
> > Hello,
> >
> > I want to use startswith in a query like following, but it didn't work:
> >
> &
sults. Thanks
On Monday, October 28, 2013 4:07:56 PM UTC-4, viniciusban wrote:
>
> Could you supply an example of what you intend to achieve, preferably a
> query?
>
> On Mon, Oct 28, 2013 at 5:17 PM, Mark >
> wrote:
> > Viniciusban,
> >
> > Thank you fo
Niphlod,
Thank you very much for your detail answers. It seems that your new data
model is better, and is the way to go.
My old model may be fine for my small database using the "OR". I may try
both and compare.
Thanks!
On Monday, October 28, 2013 6:20:31 PM UTC-4, Niphlod wrote:
>
> ok. ther
FYI
That group is closed for posting.
On Saturday, May 5, 2018 at 10:07:30 PM UTC-5, Massimo Di Pierro wrote:
>
> Thank you.
>
> On Wednesday, 2 May 2018 16:48:52 UTC-5, marco mansilla wrote:
>>
>> I know this is the main communication channel for web2py users community,
>> but just in case anyo
Hello everyone,
First off, many thanks to all the contributors here who have made web2py
amazing.
We (MyIRE) are currently rolling out our reproducible clinical trials
platform which uses web2py.
As we roll it out publicly, we're going to be looking for more talented
individuals to work on
A few thoughts:
Can you connect from the server where the ldap account is located?
What does that connection string look like?
Looking here:
https://github.com/web2py/web2py/blob/master/gluon/contrib/login_methods/ldap_auth.py
It boils down to the init_ldap method and ldap.initialize()
You ca
Hey Rodrigo,
What are you looking for in particular?
There's a number of open and closed source implementations available.
On Sunday, July 29, 2018 at 2:52:19 PM UTC-5, Rodrigo attique santana wrote:
>
> Hi guys.
>
> I was looking for and found nothing about web2py project management systems.
https://bitbucket.org/MarkGraves/web2pytest
On Friday, October 12, 2018 at 9:40:12 AM UTC-5, Bryan Chance wrote:
>
> Does anyone know of a web2py.test replacement? The link I see everywhere
> is for what looks to be a deleted repo:
> https://github.com/viniciusban/web2py.test
>
>
--
Resources:
Hello,
I use Web2py 2.4.5 with built-in Rocket on windows 2008 server, and was
told that it is SSL POODLE vulnerable and must switch into TLS instead.
Is it possible to switch SSL into TLS in Rocket? Or, how to handle this SSL
POODLE issue?
I appreciate your help in advance!
--
Resources:
Thanks Dave!
I have problems to upgrade, also I am not sure if upgrade to the newest
web2py can solve this problem.
I will try Apache or nginx if there is no way to switch to TLS in Rocket.
On Friday, June 19, 2015 at 6:52:04 PM UTC-4, Dave S wrote:
>
>
>
> On Friday, June 19, 2015 at 3:38:08
This "CRON: Disabled because no file locking" error message means you
didn't install pywin32
On Thursday, July 9, 2015 at 4:58:03 AM UTC-4, Dmitry Ermolaev wrote:
>
>
> I use Windows and Apache 2.2
>
> in crontab:
>
> #crontab
> */1 * * * * root *cron/ws_run
>
> in controller cron.py:
> if
Hello,
I got an error in python3.7, web2py 2.18.3.
Testing the following client side code in python2.7:
server = ServerProxy('https://127.0.0.1/myapp/query/call/xmlrpc',
context=ssl._create_unverified_context())
server.test_xmlrpc()
If web2py run in python2.7, everything is fine.
If web2py run
I am using either Rocket or Azure, and get the same error.
Yes, there is a ticket, which I didn't realize before:
Traceback (most recent call last):
File "R:\web2py\gluon\restricted.py", line 219, in restricted
exec(ccode, environment)
File "R:\web2py\applications\myapp\models\db.py", lin
'disbled' should be 'disabled'. If it doesn't work, I think you can try to
use hide(), or prop('disabled', true)
On Friday, September 27, 2019 at 6:48:54 AM UTC-4, mostwanted wrote:
>
> I'm using SQLFORM.factory() to capture a specific detail but i want it to
> be submitted once, to avoid the m
Change the '{{=qtnBtn}}' into 'input', it should work. I guess
the reference is wrong (not dynamic).
On Friday, September 27, 2019 at 2:24:43 PM UTC-4, mostwanted wrote:
>
> Hey @Mark, thanks for replying but none of the solutions are working! I
> fixed disable
I submitted the bug report to the github.
Thank you very much.
On Sunday, October 6, 2019 at 5:29:31 PM UTC-4, Dave S wrote:
>
>
>
> On Friday, September 27, 2019 at 6:39:00 AM UTC-7, Mark wrote:
>>
>> I am using either Rocket or Azure, and get the same error.
>
Hello,
I try to use the following JQuery code in Web2py 2.18.3 or 2.4.5, but it
didn't work. I hope that the table header is fixed/floating, and I am not
sure if there is a better way to do it in web2py. The link to
jquery.floatThead is https://mkoryak.github.io/floatThead/. Any help would
be
Never mind, I just found the solution. The code need to be changed to "var
$table = $('table');"
On Monday, December 9, 2019 at 1:42:34 PM UTC-5, Mark wrote:
>
> Hello,
>
> I try to use the following JQuery code in Web2py 2.18.3 or 2.4.5, but it
> didn'
ramework.
My excuse for the long waiting for my answer, but I starting my own
business.
While I'm also busy with school.
But I've made request on Hogeschool Rotterdam to support web2py.
And they where very positieve, so I keep you all posted.
regards Mark Breedveld,
On Apr 20, 7:06 pm,
on the web2py group and you will found a hole thread
on this.
I hope i have informed you well.
regards Mark Breedveld,
www.markbreedveld.nl
On 21 mei, 07:37, Trollkarlen wrote:
> For packaging i sugest using thehttp://build.opensuse.org.
> Its a service where you can package for all mage
re with virtual machine builder of Novell Suse.
Which is also quite good.
You all here soon of me.
regards Mark Breedveld,
www.markbreedveld.nl
(process).
Which has the difficultes guidelines.
And copy the main structure to opensuse, so we have one and same
structure.
Change it to there guidelines and get a working process for both.
Are there're any volentares for packaging web2py?
Regards
Mark Breedveld
www.markbreedveld.nl
Ps. does anyone know how to contact dimo or his progress on the gluon
packages?
On 2 jun, 09:56, Mark Breedveld wrote:
> Hello everyone,
>
> I've took a look at build.opensuse.org and seems to be good.
> I haven't tested it, but because I do not have time for that.
>
>
Correction his name was Dima
On 2 jun, 09:57, Mark Breedveld wrote:
> Ps. does anyone know how to contactdimoor his progress on the gluon
> packages?
>
> On 2 jun, 09:56, Mark Breedveld wrote:
>
> > Hello everyone,
>
> > I've took a look at build.opensuse.org
Correction; I just find out how to build debian packages with
build.opensuse.org
http://wiki.opensuse.org/openSUSE:Build_Service_Debian_builds
So now it seems is a very good plan.
regards Mark Breedveld
On 2 jun, 09:57, Mark Breedveld wrote:
> Ps. does anyone know how to contactdimoor
es of debian/novell
opensuse.
And last but not least. The current publishing way has not the be
changed.
I hope the idea is clear and I hope to hear of you al soon.
regards Mark Breedveld,
On May 27, 1:38 pm, Mark Breedveld wrote:
> My excuse for my late reaction, but you all landed up my spamb
eel wrote:
> Mark,
>
> That sounds like a great idea.
>
> Chris
>
> On Jun 18, 5:33 am, mdipierro wrote:
>
>
>
> > This is an excellent idea.
>
> > On Jun 17, 12:35 pm, Mark Breedveld wrote:
>
> > > Hello everone,
>
> > > I'
I've done some research on turnkey.
And its much better than the thing a made.
I will test it in the coming week.
and the results will come as soon as possible.
regards,
Mark Breedveld,
On 17 feb, 07:41, Massimo Di Pierro wrote:
> I am trying to make a web2py appliance for turnkey lin
the core iso.
sudo tklpatch turnkey-core-2009.10-hardy-x86.iso web2py_patch
I ran the commando on a ubuntu machine,
but should it not be a core turnkey machine?
Or doesn't that matter?
regards Mark Breedveld,
www.mbreed.nl
On Mar 3, 5:41 am, mdipierro wrote:
> Thank you Mark.
>
> On
I have an Turnkey instance ready and try it as soon as possible.
greetings,
Mark,
On 11 mrt, 16:07, Massimo Di Pierro wrote:
> Try this
>
> web2py_patch.zip
> 3KWeergevenDownloaden
>
>
--
You received this message because you are subscribed to the Google Groups
"
y_src.zip after unzip web2py_src.zip.
I haven't test the above statement.
But i will once you have released an new patch.
greetings Mark Breedveld,
On Mar 12, 1:42 pm, Christopher Steel wrote:
> I will check this out for you later today as well.
>
> Chris
>
> On Feb 17
kager.
And publish improved patches.
I would like to hear your opinion on this topic.
greetings Mark Breedveld,
On Mar 3, 2:38 pm, Mark Breedveld wrote:
> I've done some research onturnkey.
> And its much better than the thing a made.
>
> I will test it in the coming week.
>
#x27;s a slow proces which will take a while.
We could launch a new post.
Maybe there is one in the web2py community.
greetings Mark Breedveld,
On Mar 20, 5:31 pm, mdipierro wrote:
> I think this is a great idea. Do you know any debian developer?
>
> On Mar 20, 10:21 am, Mark Breedveld
d web2py with apache trough
mod_proxy
and so on...
If you have advice or a contribution, please react.
Greetings,
Mark Breedveld,
--
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To post to this group, send email to web...@googlegroups.c
I fairly interested in your opinion.
regards Mark Breedveld,
On Mar 21, 1:15 pm, Dima Barsky wrote:
> On Mar 20, 5:01 pm, Mark Breedveld wrote:
>
> > The web2py community is searching help ondebian/ ubuntu packaging.
> > The are concrete plans to deploy web2py as Turnkey Appliance.
t; keep us posted.
>
> > I had some problems with the one I posted:
> > 1) the apt-get install get stuck and I have to restart a few times
> > 2) it is supposed to use the PAM user password for admin but PAM does
> > not seem to allow the app to login as root
> >
ing a few of those things on short notice.
But i'm quite busy at the moment, so it might take a few days.
And there are a few things more to discuss.
Coming in my following mail later this day.
Regards Mark Breedveld,
Ps. Massimo could you make a seperation between app and
reate work arounds.
My excuse for putting things in a hurry.
Regards,
Mark Breedveld,
-Oorspronkelijk bericht-
Van: web2py@googlegroups.com [mailto:web...@googlegroups.com] Namens Dima
Barsky
Verzonden: maandag 22 maart 2010 18:55
Aan: web2py-users
Onderwerp: [web2py] Re: D
one else can confirm this.
Then I believe that Dima is able to define a directory structure for non
compiled apps.
With or without links.
I suggest we first do the non compiled apps.
So we can consider that as done.
Before we continue to discuss the compiled apps,
Regards Mark Breedveld,
P.s. we
web2py.py? //Because this aint user data, but the
application/webserver
- Who decides which package is allowed in the repo? We might contact them.
I hope this is a right conclusion from all those mails
Regards Mark Breedveld,
-Oorspronkelijk bericht-
Van: web2py@googlegroups.com [
Ill used ms outlook as mailer, but I could return to webmail.
If that is the problem.
Mark
-Oorspronkelijk bericht-
Van: web2py@googlegroups.com [mailto:web...@googlegroups.com] Namens
mdipierro
Verzonden: maandag 22 maart 2010 22:54
Aan: web2py-users
Onderwerp: [web2py] Re: Debian
could put the applications
imported through web2py mechanisme?
regards Mark
On Mar 23, 12:38 am, Dima Barsky wrote:
> > Where would you put php files? I have seen them in /var/www/
>
> Massimo,
>
> I'm sorry to disappoint you, but any script you might've seen in
never ever overwrite each other (I agree with
you on that too)
It is the most advance solution till now,
But it's quite complex.
Because of various way to run web2py.
And it isn't very concrete at the moment,
But it's a start.
Regards Mark,
-Oorspronkelijk bericht--
secure, fast and advanced server.
We have to come with a good plan,
because it is hard to change it.
regards Mark
On Mar 22, 9:10 pm, Kuba Kucharski wrote:
> web2py application are higher level. Like php scripts in www
> directory. They are edtable. They are apps within web2py. They are
>
i'm looking forward to your design plan.
It sounds good and i'm confident that it will.
regards
Mark Breedveld,
On Mar 23, 7:47 pm, mdipierro wrote:
> I understand. You do not have to develop the all thing. Can you show a
> pseudcode example of what the script would do?
>
&
make it more collaborative and a good spread of the work.
Regards Mark Breedveld,
On Mar 23, 8:40 pm, Dima Barsky wrote:
> On Mar 23, 6:00 pm, mdipierro wrote:
>
> > I do not have any object. I think I need more details to understand it
> > better. I think you should give it a
road.
regards,
Mark Breedveld,
--
Subscription settings: http://groups.google.com/group/web2py/subscribe?hl=en
a repo that we could use for package code/script? Who approves
or creates the debian packages for every release? And how should we
use it?
I'm new to the opensource, so any advice would be welcome.
regards Mark,
On Apr 20, 4:09 pm, mdipierro wrote:
> This is partially true. I approves ch
discuss,
but first I'll study the answer you give me and come up with an idea
== more questions :p.
regards
Mark Breedveld,
I'm curious if something like this:
http://www.rgagnon.com/javadetails/java-0441.html
Can be done with web2py?
Essentially I need to:
response.status = 401
response.headers["WWW-Authenticate"] = "NTLM"
>From a controller.
The response.status doesn't seem to do anything as it still returns 200
iew, so we can
discuss it.
greetings and another apologise,
Mark Breedveld,
www.markbreedveld.nl
P.s. mdipierro, would it be possible too do the graduation project as
an exchange student at the DePaul University in Chicago. (I would like
too hear your answer off-topic)
On 14 okt, 01:12, "
manager of web2py.
regards Mark,
On 14 okt, 08:38, José L. wrote:
> On 14 oct, 02:36, Mark Breedveld wrote:
>
>
>
> > Hello Guys,
>
> > My apologise for my late update on the project.
> > Had to get my propedeuse :p.
>
> > And next 1 - 1,5 year I hope
all try to follow this topic.
Mark,
On 14 okt, 20:03, José L. wrote:
> On 14 oct, 17:24, Mark Breedveld wrote:
>
> > I've not so much time.
> > But we have done this discussion before.
> > There where three problems with packaging web2py.
>
> > - Really f
gst&q=debian#550ed09fbf7af9f2
There are some other topics, search for turnkeylinux, where this is
mentioned.
I recall Dimo Barsky was busy with packaging Gluon, but I've been out
for a while.
I don't know him, but he might help with this.
It was chaos post again, but I hope this one helps:p
u say you can pass the guidelines, please do so.
Because it makes it more complex than necessary.
Mark
On Oct 15, 7:06 pm, José L. wrote:
> On 15 oct, 13:32, Mark Breedveld wrote:
>
>
>
> > You have the idea. Thanks for clearing it towards the others.
>
> > My guesses it
the discussion.
Can you package web2py as you have in mind, besides the writing
rights? Which you will discuss later on I guess.
Mark,
Look for orbited - a comet server that people were showing it off
(with TurboGears, but like everything associated with TG it's a
component that can be used in other contexts) at Pycon 2008...
> Anyone used this kind of stuff with web2py yet, or at least with
> python ?
--
_Mark_
--~--~-
A actually *is a logo*; B is a picture of a globe :-) (A pretty one,
sure, but...)
And the left half of A makes a good icon by itself, for use in other
context where it has already been associated with the name...
On Thu, Aug 13, 2009 at 12:29 PM, Massimo Di
Pierro wrote:
> Two logos have been
A
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To post to this group, send email to web2py@googlegroups.com
To unsubscribe from this group, send email to
web2py+unsubscr...@googlegroups.com
>> Thanks; this has been reported. Massimo will have to reset his server
>> when he gets back from hiking in a few days.
Massimo might want to give another body admin rights to his server.
Seems rather horrible that the face of the project "web2py.com" is out
of commission for so long.
Are ther
> ==
> ### setup WSGI
> WSGIScriptAlias /apps /usr/local/web2py/current/wsgihandler.py
> WSGIDaemonProcess web2py user=apache group=apache \
> home=/usr/local/web2py/current \
> processes=10 maximum-requests=500
>
>
> Order allow,deny
> Allow from a
1 - 100 of 566 matches
Mail list logo