[web2py:11428] Re: we have more friends

2008-11-07 Thread mark
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

[web2py:11429] San Francisco Python Meetup

2008-11-07 Thread mark
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

[web2py:11430] Re: we have more friends

2008-11-07 Thread mark
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 >

[web2py:11582] Re: San Francisco Python Meetup

2008-11-10 Thread mark
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

[web2py:12653] Re: web2py book in PDF at $12.50

2008-11-29 Thread mark
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

[web2py:10238] Re: web2py book finally online in PDF

2008-10-14 Thread mark
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

[web2py:11085] Re: ssl_error_rx_record_too_long

2008-11-04 Thread Mark
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

[web2py] bug in smartgrid groupby

2013-01-18 Thread Mark
4 records. The number will be displayed correctly if I remove the groupby from grid. Thanks, Mark --

[web2py] Re: bug in smartgrid groupby

2013-01-23 Thread 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

[web2py] Re: Grid with multiple left joins

2013-01-23 Thread Mark
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 +=

[web2py] Re: Grid with multiple left joins

2013-01-30 Thread Mark
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

[web2py] Re: change writable for each record?

2013-02-17 Thread Mark
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

Re: [web2py] Re: Smartgrid: How to display value from foreign table in a table when only foreign key is in table

2013-02-25 Thread Mark
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

[web2py] Re: datetime - compare dates while ignoring time

2013-02-28 Thread Mark
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'

[web2py] Re: datetime - compare dates while ignoring time

2013-03-01 Thread Mark
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

[web2py] Re: Doubt in the example provided on web2py manual page 98

2013-03-14 Thread Mark
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,

[web2py] Re: Doubt in the example provided on web2py manual page 98

2013-03-15 Thread Mark
. 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

[web2py] Re: automatically populate child field with parent field

2013-03-18 Thread Mark
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

[web2py] Re: automatically populate child field with parent field

2013-03-18 Thread Mark
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

[web2py] Table scrollbar problem in IE

2013-03-25 Thread Mark
: 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

[web2py] Re: Table scrollbar problem in IE

2013-03-25 Thread Mark
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

[web2py] Re: Table scrollbar problem in IE

2013-03-25 Thread Mark
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: >> >>

[web2py] Re: option to move smartgrid buttons to the left side

2012-10-05 Thread Mark
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_

[web2py] IS_NOT_IN_DB exception

2012-10-23 Thread Mark
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 --

[web2py] Re: Unable to send email in web2py

2012-11-26 Thread 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'

[web2py] How to run expire_sessions.py in 2.2.1?

2012-11-26 Thread Mark
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 --

[web2py] Re: How to run expire_sessions.py in 2.2.1?

2012-11-27 Thread 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: >&

[web2py] Re: Unable to send emails (mail.send) from server

2012-11-29 Thread Mark
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...

[web2py] case insensitive email problems

2012-11-29 Thread Mark
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 --

[web2py] need help with groupby in grid

2012-12-07 Thread Mark
ry or grid to display the max value in each group? Any help will be greatly appreciated. Mark --

[web2py] Re: case insensitive email problems

2012-12-10 Thread 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

Re: [web2py] Question about ondelete='CASCADE'

2012-12-11 Thread Mark
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

[web2py] Re: need help with groupby in grid

2012-12-12 Thread Mark
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 >

[web2py] Re: help please

2012-12-19 Thread Mark
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

[web2py] Re: help with css

2013-04-17 Thread Mark
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

[web2py] Re: Conditional deletes (ondelete etc) in sqlform.grid

2013-04-18 Thread Mark
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

[web2py] Re: How hide comments column (w2p_fc) from SQLFORM.grid() when edit some record

2013-04-24 Thread 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

[web2py] how to use startswith in query

2013-10-28 Thread Mark
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

[web2py] Re: how to use startswith in query

2013-10-28 Thread Mark
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

Re: [web2py] how to use startswith in query

2013-10-28 Thread Mark
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: > > > &

Re: [web2py] how to use startswith in query

2013-10-28 Thread Mark
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

Re: [web2py] how to use startswith in query

2013-10-28 Thread Mark
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

[web2py] Re: [OFF TOPIC] Telegram Group for Web2py users

2018-05-24 Thread mark
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

[web2py] (commercial solicitation) web2py development projects

2018-05-29 Thread mark
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

[web2py] Re: LDAP Authentication never work

2018-07-04 Thread mark
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

[web2py] Re: system project manager in web2py

2018-07-29 Thread mark
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.

[web2py] Re: web2py.test replacement

2018-10-12 Thread mark
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:

[web2py] SSL POODLE vulnerable

2015-06-19 Thread Mark
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:

[web2py] Re: SSL POODLE vulnerable

2015-06-21 Thread Mark
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

[web2py] Re: cron - not work?

2015-07-13 Thread Mark
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

[web2py] xmlrpc python3 error

2019-09-26 Thread Mark
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

[web2py] Re: xmlrpc python3 error

2019-09-27 Thread Mark
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

[web2py] Re: How can I disable SQLFORM.factory() form button after clicking once?

2019-09-27 Thread Mark
'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

[web2py] Re: How can I disable SQLFORM.factory() form button after clicking once?

2019-09-27 Thread Mark
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

[web2py] Re: xmlrpc python3 error

2019-10-07 Thread Mark
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. >

[web2py] JQuery floatThead floating table header

2019-12-09 Thread Mark
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

[web2py] Re: JQuery floatThead floating table header

2019-12-09 Thread Mark
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'

[web2py] Re: Debian Packaging

2010-05-17 Thread Mark Breedveld
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,

[web2py] Re: Debian Packaging

2010-05-27 Thread Mark Breedveld
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

[web2py] Re: Debian Packaging

2010-05-27 Thread Mark Breedveld
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

[web2py] Re: Debian Packaging

2010-06-02 Thread Mark Breedveld
(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

[web2py] Re: Debian Packaging

2010-06-02 Thread Mark Breedveld
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. > >

[web2py] Re: Debian Packaging

2010-06-02 Thread Mark Breedveld
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

[web2py] Re: Debian Packaging

2010-06-02 Thread Mark Breedveld
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

[web2py] Re: Debian Packaging

2010-06-17 Thread Mark Breedveld
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

[web2py] Re: Debian Packaging

2010-07-02 Thread Mark Breedveld
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'

[web2py] Re: trunkeylinux help

2010-03-03 Thread Mark Breedveld
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

[web2py] Re: trunkeylinux help

2010-03-11 Thread Mark Breedveld
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

[web2py] Re: turnkeylinux help

2010-03-11 Thread Mark Breedveld
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 "

[web2py] Re: trunkeylinux help

2010-03-20 Thread Mark Breedveld
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

[web2py] Re: trunkeylinux help

2010-03-20 Thread Mark Breedveld
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. >

[web2py] Re: trunkeylinux help

2010-03-20 Thread Mark Breedveld
#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

[web2py] Debian / Ubuntu packager needed!

2010-03-20 Thread 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

[web2py] Re: Debian / Ubuntu packager needed!

2010-03-21 Thread Mark Breedveld
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.

RE: [web2py] Re: turnkeylinux help

2010-03-21 Thread Mark Breedveld
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 > >

RE: [web2py] Re: Debian / Ubuntu packager needed!

2010-03-22 Thread Mark Breedveld
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

RE: [web2py] Re: Debian / Ubuntu packager needed!

2010-03-22 Thread Mark Breedveld
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

RE: [web2py] Re: Debian / Ubuntu packager needed!

2010-03-22 Thread Mark Breedveld
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

RE: [web2py] Re: Debian / Ubuntu packager needed!

2010-03-22 Thread Mark Breedveld
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 [

RE: [web2py] Re: Debian / Ubuntu packager needed!

2010-03-22 Thread Mark Breedveld
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

[web2py] Re: Debian / Ubuntu packager needed!

2010-03-23 Thread Mark Breedveld
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

[web2py] Re: Debian / Ubuntu packager needed!

2010-03-23 Thread Mark Breedveld
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--

[web2py] Re: Debian / Ubuntu packager needed!

2010-03-23 Thread Mark Breedveld
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 >

[web2py] Re: Debian / Ubuntu packager needed!

2010-03-23 Thread Mark Breedveld
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? > &

[web2py] Re: Debian / Ubuntu packager needed!

2010-04-03 Thread Mark Breedveld
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

[web2py] Debian Packaging

2010-04-20 Thread Mark Breedveld
road. regards, Mark Breedveld, -- Subscription settings: http://groups.google.com/group/web2py/subscribe?hl=en

[web2py] Re: Debian Packaging

2010-04-20 Thread Mark Breedveld
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

[web2py] Re: Debian Packaging

2010-04-20 Thread Mark Breedveld
discuss, but first I'll study the answer you give me and come up with an idea == more questions :p. regards Mark Breedveld,

[web2py] NTLM Challenge Response

2010-04-28 Thread Mark Larsen
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

[web2py] Re: Packaging web2py for Debian

2010-10-13 Thread Mark Breedveld
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, "

[web2py] Re: Packaging web2py for Debian

2010-10-14 Thread Mark Breedveld
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

[web2py] Re: Packaging web2py for Debian

2010-10-14 Thread Mark Breedveld
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

[web2py] Re: Packaging web2py for Debian

2010-10-15 Thread Mark Breedveld
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

[web2py] Re: Packaging web2py for Debian

2010-10-16 Thread Mark Breedveld
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

[web2py] Re: Packaging web2py for Debian

2010-10-16 Thread Mark Breedveld
the discussion. Can you package web2py as you have in mind, besides the writing rights? Which you will discuss later on I guess. Mark,

[web2py:27125] Re: Is this doable : input from one client, display to another ?

2009-07-21 Thread Mark Eichin
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_ --~--~-

[web2py:28546] Re: logo

2009-08-13 Thread Mark Eichin
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

[web2py:28553] Re: logo

2009-08-13 Thread Mark Larsen
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

[web2py:29032] Re: Web2py.com down

2009-08-20 Thread Mark Larsen
>> 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

[web2py:29033] Re: Deployment Issues on CentOS

2009-08-20 Thread Mark Larsen
> == > ### 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   2   3   4   5   6   >