[web2py] Re: Cannot login via web2py mobile admin (V 2.0.6)

2012-09-25 Thread Oli
I also have the same Problem with Samsung SII.

Am Dienstag, 25. September 2012 14:17:13 UTC+2 schrieb Massimo Di Pierro:
>
> Anybody else having this problem? I do not have an iphone to try it. :-(
>
> On Tuesday, 25 September 2012 04:01:56 UTC-5, Gerd wrote:
>>
>> Hi!
>>
>> I'm running V2.0.9 and still it is not possible to login via an iphone 
>> (tried it with safari and chrome)
>>
>> Gerd
>>
>> Am Montag, 3. September 2012 15:47:35 UTC+2 schrieb Massimo Di Pierro:
>>>
>>> Please check trunk. I think the problem is that admin requires https.
>>>
>>> On Monday, 3 September 2012 08:44:22 UTC-5, Massimo Di Pierro wrote:

 Ouch! Can can fix this.

 On Monday, 3 September 2012 07:27:33 UTC-5, Gerd wrote:
>
> Hi!
>
> First i want to thank Massimo and all the other contributors for their 
> great work!
>
> I've found an issue:
> When trying to login to the admin interface via an iPhone the "web2py 
> mobile admin" shows up, and there the Login-Button is not a button but a 
> text-field, see the screenshot
>
> regards
> Gerd
>
>
>

-- 





[web2py] high availability

2012-12-09 Thread Oli
could this be a part of w2p.

http://sqlrelay.sourceforge.net/documentation.html

-- 





[web2py] Problem with plugin_PowerFormWizard and Internetexplorer

2012-01-23 Thread Oli
I use the plugin_PowerFormWizard for a registration and all works fine with 
firefox and chrome. But if I use the Internetexplorer 6,7,8,9 nothing 
happens, no error but also no registration. Is there anybody who could help 
me?

OF.

Code 

def index():
# Ausgewaehlte Veranstaltung
Veranstaltungsausgewaehlt = 
db(db.veranstaltung.auswahl==True).select(db.veranstaltung.name)[0]['name']

# Erklaerung zur Meldung
Erklaerung = """Durch die Teilnahme am internationalen Fellbacher 
6/12-Stundenlauf wird der in der Ausschreibung veröffentlichte 
Haftungsausschluss anerkannt. Mit der Anmeldung wird bestätigt, dass für 
den Lauf ausreichend trainiert wurde und für die Teilnahme keine ärztlichen 
Bedenken vorliegen. Es besteht Einverständnis, dass die persönlichen Daten 
im Rahmen der organisatorischen Durchführung der Veranstaltung genutzt 
werden dürfen. Es werden keine Vergütungsansprüche für Fotos, Filmaufnahmen 
usw., die im Rahmen der Veranstaltung gemacht werden, erhoben. Mit der 
Durchführung der Anmeldung wird versichert, dass die Daten in der Meldung 
richtig sind und die Ausschreibung anerkannt wird."""

# STEPS: A dict with fields for each step
# title and legend will be descriptions
mysteps = [dict(title='ich akzeptiere', legend='ich akzeptieren den 
obigen Inhalt des Textes', fields=['akzeptiert']),
   dict(title='Disziplin', legend='gewünschten Lauf auswählen', 
fields=['lauf']),
   dict(title='Person',legend='persönliche Daten 
eingeben',fields=['nachname','vorname','nationalitaet','geburtsdatum','geschlecht','email']),
   dict(title='Adressse', legend='Adressdaten eingeben', 
fields=['strasse','ort']),
   dict(title='Verein / Staffel', legend='Vereinsname oder 
Staffelname und die Namen (Nach-, Vorname) der Staffelteilnehmer eingeben', 
fields=['vereinstaffel','staffelteilnehmer']),
   dict(title='Bank', legend='Bankverbindung eingeben', 
fields=['kontoinhaber','geldinstitut','blz','kontonr'])]
   
   # ,
   # dict(title='eigenes Zelt?', legend='Wird ein eigenes Zelt 
mitgebracht?', fields=['eigeneszelt']),
   # dict(title='Unterkunft', legend='Unterkunft im Jugendraum 
von Freitag auf Samstag gewünscht ?', fields=['unterkunft',])]

# IMPORT: Import the module
from plugin_PowerFormWizard import PowerFormWizard

# CUSTOMIZE: Set some options
# Client side validation
# Show legends, hide descriptions
options = {'description':True, 'legend':False, 'validate':True}

# CREATE: Create the form object just like the SQLFORM - PASS the 
options
form = PowerFormWizard(db.meldungen, steps=mysteps, options=options) 

# VALIDATE: web2py form validation
if form.accepts(request.vars, session):
# Preis aus dem Eintrag des Laufs entnehmen und in Betrag speichern
from gluon.tools import Mail
import string
mail=Mail()
mail.settings.server='smtp.gmail.com:587'
mail.settings.login='em...@googlemail.com:PASSWORD'
mail.settings.sender='em...@googlemail.com'
sendtoemail = form.vars.email

# Laufbezeichnung aus den Formulardaten ermitteln
laufbezeichnung = 
db(db.lauf.id==form.vars.lauf).select(db.lauf.bezeichnung)[0]['bezeichnung']

# Betrag aus den Formulardaten des Feldes - Lauf - ermitteln
betrag = 
string.split(string.split(db(db.lauf.id==form.vars.lauf).select(db.lauf.bezeichnung)[0]['bezeichnung'],
 
" - ")[1],".")[0]

# Betrag in den Datensatz schreiben.
db(db.meldungen.id==form.vars.id).update(betrag=betrag)

#send the message
mail.send(to=[sendtoemail], subject='Anmeldebestätigung - TSV 
Schmiden Leichtatletik - %s' % Veranstaltungsausgewaehlt, message='Hallo %s 
%s,\n\ndie Anmeldung: %s ist eingegangen. \n\nVielen Dank\nTSV Schmiden 
Leichtathletik' %(form.vars.vorname, form.vars.nachname, laufbezeichnung))

response.flash = "Vielen Dank für Ihre Meldung - TSV Schmiden 
Leichtathletik."

elif form.errors: 
form.step_validation() # VERY IMPORTANT FOR VALIDATION
response.flash = "Bei der Eingabe Ihrer Anmeldung ist ein Fehler 
aufgetreten."

# Enjoy!
return dict(Erklaerung=Erklaerung , 
Veranstaltungsausgewaehlt=Veranstaltungsausgewaehlt, form=form)



Re: [web2py] Problem with plugin_PowerFormWizard and Internetexplorer

2012-01-24 Thread Oli
thanks, i will try this later. I found a workaround for my Problem. The 
PowerFormWizard form was integrated in a Website of googlesites. When i 
open an extra window, which is not integrated in googlesites, all works 
fine.
 
Thanks OF.


[web2py] Re: lungo.js

2012-02-05 Thread Oli
we should have a mobile solution for web2py "out of the box". Would this be 
possible?

[web2py] Re: CRUD / SQLFORM.grid permissions

2012-03-02 Thread Oli
look at this: http://web2py.com/books/default/chapter/29/7?search=Permission

Am Freitag, 2. März 2012 10:40:58 UTC+1 schrieb Serpent_Guard:

> Is there a way to limit CRUD and/or SQLFORM.grid objects to only operating 
> on a subset of records, so they can be used as managers for records based 
> on ownership?  As far as I can tell, CRUD works on either a whole table 
> level or single record label, nothing in between.  SQLFORM.grid does this 
> quite well, with its second argument being a database query to select its 
> records.  This is nice, but the problem is that I can still use the form to 
> view or edit other records that don't belong to me (/index/view/4 - I can 
> change the '4' to any number I want, and the grid brings in the data 
> without complaint).  It seems the query is only used when displaying the 
> records as a list, after that there's no validation to make sure that the 
> record being requested for editing actually matches the query passed into 
> the form constructor.



[web2py] Re: CRUD / SQLFORM.grid permissions

2012-03-03 Thread Oli
try this:

# model
db.define_table('adress',
   Field('name'),
   Field('email'),
   Field('created_by', db.auth_user, default=auth.user_id))

# controller
def index():
"""
example action using the internationalization operator T and flash
rendered by views/default/index.html or views/generic.html
"""
# user_id = db.adress.select()
query=((db.adress.created_by==auth.user_id))
grid = SQLFORM.grid(query=query)
return locals()  

OF.


Am Samstag, 3. März 2012 18:18:09 UTC+1 schrieb Serpent_Guard:
>
> Yeah, I saw that, I guess I'm just a bit confused on how to implement it; 
> what I want is for each user to have CRUD permissions on a given table, but 
> only for records they've created themselves.  Not sure how to do that with 
> groups.  I have it working now with a custom DAL query, so it's not 
> super-critical at this point that I get it working with groups at this 
> point, but it'd be good to know.
>
>
> On Friday, March 2, 2012 2:52:24 AM UTC-7, Oli wrote:
>>
>> look at this: 
>> http://web2py.com/books/default/chapter/29/7?search=Permission
>>
>> Am Freitag, 2. März 2012 10:40:58 UTC+1 schrieb Serpent_Guard:
>>
>>> Is there a way to limit CRUD and/or SQLFORM.grid objects to only 
>>> operating on a subset of records, so they can be used as managers for 
>>> records based on ownership?  As far as I can tell, CRUD works on either a 
>>> whole table level or single record label, nothing in between.  SQLFORM.grid 
>>> does this quite well, with its second argument being a database query to 
>>> select its records.  This is nice, but the problem is that I can still use 
>>> the form to view or edit other records that don't belong to me 
>>> (/index/view/4 - I can change the '4' to any number I want, and the grid 
>>> brings in the data without complaint).  It seems the query is only used 
>>> when displaying the records as a list, after that there's no validation to 
>>> make sure that the record being requested for editing actually matches the 
>>> query passed into the form constructor.
>>
>>

[web2py] Re: when I run web2p[y in Vista, and I click on adminstrative, what password do I enter???

2012-04-01 Thread Oli
You have to register yourself. 

Am Sonntag, 1. April 2012 08:05:38 UTC+2 schrieb jayvandal:
>
>
>

[web2py] Re: web2py 2.14.6 is OUT

2016-05-15 Thread Oli



- new installation of 2.14.6 from web2py_src.zip -

After I comment out the auth.wiki in ./default/index I got the following error. 

Traceback (most recent call last):
  File "/home/LACompetitions/web2py/gluon/restricted.py", line 227, in 
restricted
exec ccode in environment
  File 
"/home/LACompetitions/web2py2-14-6/applications/LAC/controllers/default.py" 
,
 line 60, in 
  File "/home/LACompetitions/web2py/gluon/globals.py", line 417, in 
self._caller = lambda f: f()
  File 
"/home/LACompetitions/web2py2-14-6/applications/LAC/controllers/default.py" 
,
 line 20, in index
return auth.wiki()
  File "/home/LACompetitions/web2py/gluon/tools.py", line 4687, in wiki
groups=groups)
  File "/home/LACompetitions/web2py/gluon/tools.py", line 6454, in __init__
auth.add_membership(gid)
UnboundLocalError: local variable 'gid' referenced before assignment



Am Dienstag, 10. Mai 2016 02:31:38 UTC+2 schrieb Massimo Di Pierro:
>
> A few vulnerabilities have been found in admin. One of them was serious 
> and it made admin vulnerable to brute force password attacks under some 
> conditions.
> They have been been fixed in version 2.14.6. If you expose admin publicly, 
> we recommend you upgrade immediately.
>
> Anyway, we remind everybody that it is not recommended to expose admin in 
> production environments. Run it locally and connect to it using a ssh 
> tunnel instead.
>
> Many takes to Narendra for funding and reporting the vulnerabilities, 
> Leonel for fixing them, and Richard and Simone for adding many tests and 
> fixing bugs.
>
> Massimo 
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] integration for viewerjs

2016-05-25 Thread Oli
is there a possibility to integrate the documentviewer viewerjs?

http://viewerjs.org/

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] posibility to disable the mobile admin interface

2016-11-22 Thread Oli
is there a posibility to disable the mobile interface? there is only a white 
screen on pythonanywhere.com with web2py version 2.14.6 .

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: github - please follow

2013-12-18 Thread Oli
done!

Am Sonntag, 25. August 2013 01:26:03 UTC+2 schrieb Massimo Di Pierro:

> web2py has many users but few github followers. This is a problem because 
> the number of followers is a metric that can be used to guess popularity. 
>
> You can help.
>
> Get a github account and click on the star. 
> https://github.com/web2py/web2py
>
> It costs nothing and has benefits. For example you can receive 
> notificatios when we make improvements.
>
> Massimo 
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[web2py] auth.wiki Tagcloud show only the first 20 items

2014-03-25 Thread Oli
In the auth.wiki Tagcloud only the first 20 items displayed. Is there a 
possibility to change the value?
 
 

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
<>

[web2py] Azure actice directory

2018-08-04 Thread Oli
is it possible to use MS azure actice directory for authentication in web2py?

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Imagesize with MARKMIN and width in 100% and height auto possible?

2018-09-23 Thread Oli
is it possible to place an image with MARKMIN and not with absolute size in 
pixel?

For example:

[[alt-string for the image [the image title] 
http://www.web2py.com/examples/static/web2py_logo.png right *width=100% 
height=auto*]] 

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] create an EML-File for download

2018-10-19 Thread Oli
Hi everyone,

Greetings! I have a question. How is it possible to save and download an 
E-Mail as EML-File instead of send it?

# email
mail.send ( to = sendto,
 subject = 'Userinformation',
reply_to = email,
  attachments = [mail.Attachment(Headerbild, content_id='Headerbild'),
 mail.Attachment(SSBLogo, 
content_id='SSB-Logo')],
   message = ("Test...", html)
  )

Regards,
Oliver


-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: How can I open a page on a new tab?

2014-04-17 Thread Oli
 
URL('Link for a new tab', _class="btn" , _title=T("in a new tab"), 
_href=URL("default","yourcontroller",args=[row.id]), *_target='_blank'*)

Am Donnerstag, 17. April 2014 09:41:35 UTC+2 schrieb csavorgn:

> Hi,
> I'm using a SQLFORM.factory to let the user enter some data and I added a 
> button using
>
> buttons=[INPUT(_type="submit",_value="Go!")]
>
> When "Go!" is pressed a new page is opened using the following code:
>
> if form.process().accepted:
> redirect(URL("default","go", vars=dict(name=form.vars.name)))
>
> Is there a way to open the page ".../default/go?name=carlo#" in a new tab?
> Thanks
> Carlo
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: How can I open a temporary PDF in a new tab

2014-04-23 Thread Oli
 
URL('Link for a new tab', _class="btn" , _title=T("in a new tab"), 
_href=URL("default","yourcontroller",args=[*row.id* ]), 
*_target='_blank'*)

Am Mittwoch, 23. April 2014 15:55:50 UTC+2 schrieb csavorgn:

> Hi everyone,
> I'm using a SQLFORM.factory to get the data I need to generate a PDF file 
> using ReportLab.
> I'm using a submit  button to check for the data entered and to open a new 
> page using redirect:
>
> redirect(URL("default","result", vars=dict(start=form.vars.date_start,
>end=form.vars.date_end)))
>
> In the controller default.py I defined
> def result():
> start = request.vars['start']
> end = request.vars['end']
> filename = os.path.join(request.folder,'private',str(uuid4()))
> create_pdf(filename, db, start, end)
> response.headers['Content-Type']='application/pdf'
> data = open(filename,"rb").read()
> os.unlink(filename)
> return data
>
> (The code I'm using is more complex than this.)
>
> Maybe it is not the cleanest way to do this, but when I click on the 
> button the temporary PDF opens on the same tab in the browser.
>
> In my app I would like to get a different behaviour: when I click on the 
> submit button the PDF should open on a new tab. The PDF should be temporary 
> as it is in my current code.
> How can I achieve the behaviour I want?
>
> Thanks
>
> Carlo
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: How can I open a temporary PDF in a new tab

2014-04-24 Thread Oli
 
*example with a button. You can put the button in SQLFORM.factory:*
 
def index():
# in an new tab
# *_target='_blank'*
 
*# set start and end for example with SQLFORM.factory*
 
button = A('create a pdf-report in an new tab', _class="btn" , 
_title=T("create PDF-report"), _href=URL("default","result"), args=[start, 
end]), *_target='_blank'*)
 
return dict(button=button)
def result():
start = request.vars['start']
end = request.vars['end']
filename = os.path.join(request.folder,'private',str(uuid4()))
create_pdf(filename, db, start, end)
response.headers['Content-Type']='application/pdf'
data = open(filename,"rb").read()
os.unlink(filename)
return data
 
 

Am Mittwoch, 23. April 2014 15:55:50 UTC+2 schrieb csavorgn:

> Hi everyone,
> I'm using a SQLFORM.factory to get the data I need to generate a PDF file 
> using ReportLab.
> I'm using a submit  button to check for the data entered and to open a new 
> page using redirect:
>
> redirect(URL("default","result", vars=dict(start=form.vars.date_start,
>end=form.vars.date_end)))
>
> In the controller default.py I defined
> def result():
> start = request.vars['start']
> end = request.vars['end']
> filename = os.path.join(request.folder,'private',str(uuid4()))
> create_pdf(filename, db, start, end)
> response.headers['Content-Type']='application/pdf'
> data = open(filename,"rb").read()
> os.unlink(filename)
> return data
>
> (The code I'm using is more complex than this.)
>
> Maybe it is not the cleanest way to do this, but when I click on the 
> button the temporary PDF opens on the same tab in the browser.
>
> In my app I would like to get a different behaviour: when I click on the 
> submit button the PDF should open on a new tab. The PDF should be temporary 
> as it is in my current code.
> How can I achieve the behaviour I want?
>
> Thanks
>
> Carlo
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: How can I open a temporary PDF in a new tab

2014-04-24 Thread Oli

Am Mittwoch, 23. April 2014 15:55:50 UTC+2 schrieb csavorgn:
>
> Hi everyone,
> I'm using a SQLFORM.factory to get the data I need to generate a PDF file 
> using ReportLab.
> I'm using a submit  button to check for the data entered and to open a new 
> page using redirect:
>
> redirect(URL("default","result", vars=dict(start=form.vars.date_start,
>end=form.vars.date_end)))
>
> In the controller default.py I defined
> def result():
> start = request.vars['start']
> end = request.vars['end']
> filename = os.path.join(request.folder,'private',str(uuid4()))
> create_pdf(filename, db, start, end)
> response.headers['Content-Type']='application/pdf'
> data = open(filename,"rb").read()
> os.unlink(filename)
> return data
>
> (The code I'm using is more complex than this.)
>
> Maybe it is not the cleanest way to do this, but when I click on the 
> button the temporary PDF opens on the same tab in the browser.
>
> In my app I would like to get a different behaviour: when I click on the 
> submit button the PDF should open on a new tab. The PDF should be temporary 
> as it is in my current code.
> How can I achieve the behaviour I want?
>
> Thanks
>
> Carlo
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: Create a copy record button in SQLFORM?

2014-05-02 Thread Oli
I hope this help.

def copy_and_edit():
"""
copy_and_edit
"""
record = db.t_disciplin(request.args[0])

vals = {}
for k,v in record.items():
if k in db.t_disciplin.fields:
if k == 'f_title':
v = v + "_copy"
recname = str(v) # Needed to redirect the page to the right 
record
if k != 'id':
vals[k] = v

db.t_disziplin.insert(**vals)

rec = db(db.t_disziplin.f_title == recname).select().first()
rec_id = rec.id

# redirect for edit the new record
redirect(URL(r=request, 
f='konstanten/t_disciplin/edit/t_disciplin',args=str(rec_id)))



Am Freitag, 2. Mai 2014 14:29:26 UTC+2 schrieb LoveWeb2py:
>
> Hello,
>
> There are many times when I just want to copy the values of one record in 
> my sqlform and create a new record, but modify the content and save it. Is 
> there an easy way to do this with web2py or would I have to write the code? 
>
> Many thanks
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: orderby / case

2014-06-14 Thread Oli
try this

copy the first part of the field in for example "Orderfield1" and the 
second part of the field in for example "Orderfield2". Then you can sort 
the result as you want.

"Original Field"
01 A...
02 B...
03 C...

Orderfield1 Orderfield2
01 A... 
02 B...
03 C...

Then change the Title of Orderfield1 and Orderfield2 in "Original Field".

Am Samstag, 14. Juni 2014 08:39:32 UTC+2 schrieb Kenneth:
>
> Hi,
>
> I have a table that contains 5 items. Usually I order them by product 
> name. Now I'd like to order them so a specific ID is first and then the 
> rest. As everything else is ready I'm looking into making the SQL query do 
> the ordering. 
>
> I found a posting ( 
> https://groups.google.com/forum/?fromgroups#!searchin/web2py/orderby$20$20case/web2py/B9iM-r1rV0A/jPMBmoSv2kgJ
>  
> ) where CASE was used with orderby but I just couldn't understand how to 
> get it working. 
>
> Is this the way or is there an other way to do this?
>
>
> Kenneth
>
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] cannot access web2py.com today

2014-06-20 Thread Oli
is web2py.con down today?

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: cannot access web2py.com today

2014-06-25 Thread Oli
is web2py.com down today?

Am Freitag, 20. Juni 2014 10:17:22 UTC+2 schrieb Niphlod:
>
> nope, it's up
>
> http://www.downforeveryoneorjustme.com/web2py.com
>
> On Friday, June 20, 2014 9:12:50 AM UTC+2, Oli wrote:
>>
>> is web2py.con down today?
>>
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: Another multiple file upload and file drop area demo, this time using dropzone.js

2014-08-09 Thread Oli
is there a possibilty to change the number of folders/files or set the folders 
to year/month/day?

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: float usage; 2 decimals

2014-08-14 Thread Oli
please show your model, comtroller and view

Am Freitag, 11. Juli 2014 11:50:30 UTC+2 schrieb Stefan van den Eertwegh:
>
> Hi,
>
> I have a float type in the define tables and when he inserts 3.50 into the 
> database he makes 4.0 off it.
> How comes that it rounds off the float? And not uses the usage of 2 
> decimals?
>
> Thank you!
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: Total newbie, advice on storing scans

2014-08-21 Thread Oli
Hi Gari,
 
I have a prototyp with web2py where you can upload an image and make an 
ocr-recognition. The prototype is not very complex. One table for the 
images and a process which starts "tesseract" for every uploaded image and 
put the textresult in the database to the documents.

Am Mittwoch, 20. August 2014 22:03:39 UTC+2 schrieb Gary Cowell:

> Hi
>
> I'm writing a web app for my home server to allow me to scan and store 
> images of official correspondence, so I can shred the paper and recycle it. 
>  A document archive.
>
> I have the scanner components written [using pyinsane]
>
> I have an idea of the models required, tables to hold the sender, date, 
> page number, header ref, header date, received date etc.
>
> What I want to know is how best to handle the scanning and image storing.
>
> I don't really [I don't think] want to store the images in the database, 
> be that sqlite or pgsql [or do I?]
>
> At the moment my python scanner scans the image, and stores it in a 
> directory which is a NFS mount on my NAS. 
>
> My web2py application would have to read this image and present it for 
> confirmation, checking before storing the index entry, and the path to the 
> image into the database.
>
> So, firstly, how best to present the scanned image to the user for 
> acceptance, can I do this from an arbitrary location [guessing not], I do 
> have a PIL image in memory, so can I present that in web2py, if I can't 
> link an IMG= to the arbitrary disk location
>
> Sorry if my questions sound vague, I'm just getting to grips with web2py [ 
> used it a whole 3 days! ]
>
> Thanks for any pointers. Including NO! YOU FOOL! DON'T DO IT!
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: How to import MySQL database of web2py app in pythonanywhrere

2014-08-22 Thread Oli
 

create a database on pythonanywhere 
 
for excample: 
 
Database host adress  : mysql.server
Username  : yourusername
Database Name : db1
Password  : yourpassword

then go to your database modell db.py and change the default 
 
from: db = DAL('sqlite://storage.sqlite',pool_size=1,check_reserved=['all'])
 
to:   db = 
DAL('mysql://yourusername:yourpassword@mysql.server/yourusername$yourpassword',pool_size=1,check_reserved=['all'])
 
this should work

Am Freitag, 22. August 2014 12:29:07 UTC+2 schrieb Nitin Shrivastav:

> I want to host my web2py application on python anywhere with MySQL 
> database on my domain.how to import MySQL database ?

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: sqlform.grid default search value

2014-09-05 Thread Oli
yes, for example if you have a sqlform.grid you can define the search as 
keyword in the URL.
 
> 
https://SERVER/application/controller/function?keywords=table.field+starts+with+%22A%22
 

Am Donnerstag, 4. September 2014 23:37:53 UTC+2 schrieb Douglas Campbell:

> Is it possible to have a default search value in an sqlform.grid? I do not 
> see the option in the docs and have not figured out a work around.
>
> What I truly want to do is have the page JUST load the search bar and not 
> the database results. Then once a search term is entered it shows the 
> results in the sqlform.grid. I was going to just have a default search 
> value when the page loads like "Enter_your_search_term_here" that would 
> return no results from the database.
>
> Thanks, 
>
>
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: sqlform.grid default search value

2014-09-07 Thread Oli
try this little app: 
https://w2p.pythonanywhere.com/defaultSearch/default/index

no search:https://w2p.pythonanywhere.com/defaultSearch/default/index

with search:  
https://w2p.pythonanywhere.com/defaultSearch/default/index?keywords=Bill



Am Freitag, 5. September 2014 15:13:58 UTC+2 schrieb Douglas Campbell:
>
> I had tried that, but I can not get a route to work that would 
> automatically redirect me to ?keywords=something
>
> I tried adding it to routes.py but it just ignores everything after the 
> '?'. Any tips for getting a route to work that redirects me to the keyword 
> URL? 
>
>
> On Friday, September 5, 2014 7:08:39 AM UTC-5, Oli wrote:
>>
>> yes, for example if you have a sqlform.grid you can define the search as 
>> keyword in the URL.
>>  
>> > 
>> https://SERVER/application/controller/function?keywords=table.field+starts+with+%22A%22
>>  
>>
>> Am Donnerstag, 4. September 2014 23:37:53 UTC+2 schrieb Douglas Campbell:
>>
>>> Is it possible to have a default search value in an sqlform.grid? I do 
>>> not see the option in the docs and have not figured out a work around.
>>>
>>> What I truly want to do is have the page JUST load the search bar and 
>>> not the database results. Then once a search term is entered it shows the 
>>> results in the sqlform.grid. I was going to just have a default search 
>>> value when the page loads like "Enter_your_search_term_here" that would 
>>> return no results from the database.
>>>
>>> Thanks, 
>>>
>>>
>>>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: Deployment of Web2py Framework on Linux redhat version 6 then configure with apache

2014-09-07 Thread Oli
have a look to the book: 
http://web2py.com/books/default/chapter/29/09/access-control?search=apache

Am Samstag, 6. September 2014 07:23:55 UTC+2 schrieb Kamal Mohemed:
>
> Hi to everyone,
>
> I downloaded web2py frame work and run on the web2py default server it is 
> working fine, but we want that should be run with apache server with some 
> different url how to do that?
>
> Thanks
> Kamal
> Research scientist
> NRSC, ISRO
>
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: create web2py application with 2 database

2014-10-09 Thread Oli
see there - 
https://groups.google.com/forum/?fromgroups#!searchin/web2py/dal$20test$20prod/web2py/NCH0_lcWD_g/sPydNBZgPz0J

Am Donnerstag, 9. Oktober 2014 02:00:24 UTC+2 schrieb 黄祥:

> hi, 
>
> is it possible to create web2py application with 2 database? 1 for real 
> data and 1 for fake data (tax reporting to government)
> if possible how can i achieve it using web2py application?
>
> thanks and best regards,
> stifan
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: web2py 2.9.12 is OUT

2015-01-18 Thread Oli
Is it possible that there is an errory in 2.9.12 with simplejson?

Traceback (most recent call last):
  File "/home/oliver/apps/web2py/gluon/restricted.py", line 224, in restricted
exec ccode in environment
  File 
"/home/oliver/apps/web2py/applications/stoppwatch/controllers/default.py" 
, 
line 81, in 
  File "/home/oliver/apps/web2py/gluon/globals.py", line 393, in 
self._caller = lambda f: f()
  File 
"/home/oliver/apps/web2py/applications/stoppwatch/controllers/default.py" 
, 
line 25, in import_data
from simplejson import loads
  File "/home/oliver/apps/web2py/gluon/custom_import.py", line 92, in 
custom_importer
return base_importer(pname, globals, locals, fromlist, level)
ImportError: No module named simplejson


Am Samstag, 17. Januar 2015 07:20:14 UTC+1 schrieb Massimo Di Pierro:
>
> Changelog:
>
> - Modular DAL, thanks Giovanni
> - Added coverage support, thanks Niphlod
> - More tests, thanks Niphlod and Paolo Valleri
> - Added support for show_if in readonly sqlform, thanks Paolo
> - Tornado HTTPS support, thanks Diego
> - Improved scheduler, thanks Niphlod
> - Email timeout support
> - Made web2py's custom_import work with circular imports, thanks Jack Kuan
> - Added Portuguese, Catalan, and Burmese translations
> - Allow map_hyphen to work for application names, thanks Tim Nyborg
> - New module appconfig.py, thanks Niphlod
> - Added geospatial support to Teradata adaptor, thanks Andrew Willimott
> - Many bug fixes
>
> I am sure I am forgetting something. Thanks to all those who contributed. 
> The major change is the new modular DAL. I am sure this will break 
> something. So please report problems and will address them.
>
>
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: web2py 2.9.12 is OUT

2015-01-25 Thread Oli
there is a problem with headers- and fields - definition in a new installed 
2.9.12 from sourcecode. The result is in undefined order and changed after 
every reload.

the definition:
def address():
#
# Definition - Grid
headers = {'t_address.id':'ID',
   't_address.f_lastname':'1:Nachname',
   't_address.f_firstname':'2:Vorname',
   't_address.f_email':'3:E-Mail',
   't_address.f_phone':'4:Telefon',
   't_address.f_street':'5:Straße',
   't_address.f_location':'6:Ort'}

fields = {db.t_address.id,
  db.t_address.f_lastname,
  db.t_address.f_firstname,
  db.t_address.f_email,
  db.t_address.f_phone,
  db.t_address.f_street,
  db.t_address.f_location}

address = SQLFORM.grid(db.t_address, headers=headers, fields=fields)

return dict(addess=address)

the results:

first result:
  - 2:Vorname 

6:Ort 

ID 

3:E-Mail 

4:Telefon 

1:Nachname 

5:Straße 


then reload 

second result: - 5:Straße 

2:Vorname 

6:Ort 

3:E-Mail 

ID 

4:Telefon 

1:Nachname 

is this a bug?

Am Samstag, 17. Januar 2015 07:20:14 UTC+1 schrieb Massimo Di Pierro:
>
> Changelog:
>
> - Modular DAL, thanks Giovanni
> - Added coverage support, thanks Niphlod
> - More tests, thanks Niphlod and Paolo Valleri
> - Added support for show_if in readonly sqlform, thanks Paolo
> - Tornado HTTPS support, thanks Diego
> - Improved scheduler, thanks Niphlod
> - Email timeout support
> - Made web2py's custom_import work with circular imports, thanks Jack Kuan
> - Added Portuguese, Catalan, and Burmese translations
> - Allow map_hyphen to work for application names, thanks Tim Nyborg
> - New module appconfig.py, thanks Niphlod
> - Added geospatial support to Teradata adaptor, thanks Andrew Willimott
> - Many bug fixes
>
> I am sure I am forgetting something. Thanks to all those who contributed. 
> The major change is the new modular DAL. I am sure this will break 
> something. So please report problems and will address them.
>
>
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: web2py 2.9.12 is OUT

2015-01-25 Thread Oli
thank you, it works now

Am Samstag, 17. Januar 2015 07:20:14 UTC+1 schrieb Massimo Di Pierro:
>
> Changelog:
>
> - Modular DAL, thanks Giovanni
> - Added coverage support, thanks Niphlod
> - More tests, thanks Niphlod and Paolo Valleri
> - Added support for show_if in readonly sqlform, thanks Paolo
> - Tornado HTTPS support, thanks Diego
> - Improved scheduler, thanks Niphlod
> - Email timeout support
> - Made web2py's custom_import work with circular imports, thanks Jack Kuan
> - Added Portuguese, Catalan, and Burmese translations
> - Allow map_hyphen to work for application names, thanks Tim Nyborg
> - New module appconfig.py, thanks Niphlod
> - Added geospatial support to Teradata adaptor, thanks Andrew Willimott
> - Many bug fixes
>
> I am sure I am forgetting something. Thanks to all those who contributed. 
> The major change is the new modular DAL. I am sure this will break 
> something. So please report problems and will address them.
>
>
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: Future of web2py

2017-11-05 Thread Oli
I find a post from RethinkDB. RethinkDB is shutting down. 


Am Samstag, 27. Mai 2017 09:11:02 UTC+2 schrieb Andrea Fae':
>
> Hello guys,
> I'd like to know if there will be future of web2py? Any information about 
> it?
> Thanks
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: grid

2015-06-17 Thread Oli
 
set paginate to the size you want.
 
SQLFORM.grid(..., paginate=1, ...)
 
see 
http://web2py.com/books/default/chapter/29/07/forms-and-validators?search=SQLFORM.grid+signature#SQLFORM-grid-signature

Am Mittwoch, 17. Juni 2015 08:57:42 UTC+2 schrieb 
jackso...@quantachrome.com:

> Is there anyway to make a SQLform.grid scroll instead of using page 
> numbers.
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: Is there any alternative to Pythonanywhere hosting?

2015-08-14 Thread Oli

Am Freitag, 14. August 2015 05:38:24 UTC+2 schrieb Joe:
>
> I am using Pythonanywhwere and having some problems. Can anyone recommend 
> an other hosting for web2py apps where the support understands the web2py 
> framework and they can actually fix problems when needed?
>
 
I put my big apps in an Cloudstore and use wget to load the apps on 
pythonanywhere.
 

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: Is there any alternative to Pythonanywhere hosting?

2015-08-14 Thread Oli

Am Freitag, 14. August 2015 09:28:03 UTC+2 schrieb Joe:
>
> Is that because you had an issue with your bigger apps on pythonanywhere? 
> If so, how did you realize that the app size was the problem? I am still 
> trying figure out what the problem is with my app.
> On Friday, August 14, 2015 at 3:09:01 PM UTC+8, Oli wrote:
>>
>>
>> Am Freitag, 14. August 2015 05:38:24 UTC+2 schrieb Joe:
>>>
>>> I am using Pythonanywhwere and having some problems. Can anyone 
>>> recommend an other hosting for web2py apps where the support understands 
>>> the web2py framework and they can actually fix problems when needed?
>>>
>>  
>> I put my big apps in an Cloudstore and use wget to load the apps on 
>> pythonanywhere.
>>
>  
the Upload with the "web2py admin Interface" is limited. This is not a 
Limit from web2py
 

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] SQLFORM.smartgrid change the Links

2015-08-21 Thread Oli
is there a posibility to change the linktext in the SQLFORM.smartgrid from 
for example "files" to "files(10)" to Show the related files from the 
parent?
 
 

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Log4j

2021-12-13 Thread Oli
does anybody know if web2py use  Log4j?

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/85f9c6ed-8607-426f-8709-af966b27ad99n%40googlegroups.com.


[web2py:18513] Auth via xml-rpc

2009-03-24 Thread oli...@googlemail.com

Hi,

I started using web2py as a data backend and therefore most of the
function are exported via xml-rpc and only a few views exists for a
minimal web-interface.

Now I have the following problem. I have added the "Auth" service and
it works really fine when I work with the web-interfaces (views).

But how do I authenticate a user via xml-rpc?

Thanks in advance,
Oli

--~--~-~--~~~---~--~~
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 
web2py+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en
-~--~~~~--~~--~--~---