Re: [web2py] Re: 10.24$ reward for a recipe logging a user

2012-03-26 Thread bussiere bussiere
i will try (i'am at work) and if it works (i hope it will) please give
me your paypal and drink something for me.

Regards
Bussiere





"Les nouvelles technologies offrent pleins de nouvelles possibilités,
pleins de possibilités d'erreurs surtout en fait."
insurance.aes256 : http://goo.gl/gHyAY
-BEGIN PGP PUBLIC KEY BLOCK-
Version: GnuPG v1.2.1 (MingW32) - WinPT 0.7.96rc1

mQGiBE9sjdsRBADsY+DaDgj+pDuGLNVL6Dc+ghCxaEBK+9nwBvKPGIUocz13V42P
5Jn/NJ9zRgZNdg5XbhohN2ltas8Nr09rrRQXbBk8zjCg/Qr0a4LmfA3j128SwCfZ
aTe5zlo/WSSuGv6kWGe/KZrLmiQoZRTDbZzqWyZxuJRkcpgsZc+jYRXJHwCgualT
LpC23Ja3plM6J6noFaqAlMUEAKZGDadSS/BW4gckw9XqSHRex7/XyWU4sqVQlhMy
5DEIba7H8cU6grww+p/cYa3OCocv5Mycf6MbWDCPrtsG0X08u8PgEaE29BsLIgSm
JF6r8y4Rgwj5xyCMTaxql82S+tZHyScpAoQ0a+xlTwxMZMuwK9p6b7oipXHL+UPN
sDfkBACoYLS4PQPFotqWI96j83NNLwEumUzA6Rqyas8w6Xwr51quA65y/0nBmMmp
l58tKN7eyc5+bIpRX5bGG6ktCUHnfzk9uvnG7peilWzYT6+AJ3gbBgMGLBPByJBN
NH+nLjzsh4PzIxuSHLMiK5FkDNE2B95kaahIg42SQPT80LyvDLQlYnVzc2llcmVf
cHJpdmF0ZSA8YnVzc2llcmVAZ21haWwuY29tPohZBBMRAgAZBQJPbI3bBAsHAwID
FQIDAxYCAQIeAQIXgAAKCRAYpzZWoPP7b0h0AJ4n9feBF2FH4JUGhLU3XL3eIrOX
9gCfZbN4JHYl/nRLL4uHrceRUk1M9Pm5Ac0ET2yN3hAHAK5MypLMT50yklt1n/pQ
MjrFXuvM9IQvVyQemHMUBqKqxPTVMJLn86mR5mTLMqs+WVAqei8GTsQeSSvHyIbk
8RvYrKY7aK2RVZUV1dHQ6PII0w3BI5C0L9GM/UyIq0VRXTW6zjp9hS/xgn5SrQad
VIdGQKFVJa9h5/AzgjseARMQRkTQA/xX5/WmHxXaXUPhGxCeFsoqs53UFz1rkHYx
mus2WiD0gHbJ58DiMlVmupeNumi4e9wa+mYuW4qGwjzsQn9ZFNdoiUFzQrqZa6o+
Son+yZpGe/H9VidrWR5LhwD7AAMGBv9bhswvwpQ23X0kGItv7/jHVr/RJui7FAXY
mOM4WAoUv/5ttPHf8OifWmeUDPlzm4txvR5a7t4hhVDehek1J7FEVvfG+ffcHiPP
kkFaUv2EgrXziozt/Vkr2nngsKO5FpRJe9GSqn68uZirhwbkHSKX6LPNFTWSYR3E
fefnsCaP82OJDBFGFMg2aMsz9QL85bg58fgHU972kLTePXUVAh3gaxb6qpjwZt2b
yrCGJ/rnmIc/IWH8TJtHI5Yf3Abx2vlFTtzRH0CwVXuO0msjcfRS8NSm/ih5
0ssElxKU6IhGBBgRAgAGBQJPbI3eAAoJEBinNlag8/tvoBEAn2Yqu0UFC5OSjD1Y
JQ00FFjNVestAJ0XctcbmhKaFuQ46SccW8C2JDG/xA==
=+VZi
-END PGP PUBLIC KEY BLOCK-



On Mon, Mar 26, 2012 at 12:00 PM, selecta  wrote:
> password="toto"
> my_crypt = CRYPT(key=auth.settings.hmac_key)
> crypt_pass = my_crypt(password)[0]
>   user =
> db.auth_user.insert(Surnom="Surnom",email="email5@toto",username="titi",password=crypt_pass,)
>    from gluon.storage import Storage
> session.auth =
> Storage(user=user,expiration=auth.settings.expiration,hmac_key=str(uuid4()))
>    auth.user = Storage(auth.settings.table_user._filter_fields(user,
> id=True))
>   auth.environment.session.auth = Storage(user=user,
> last_visit=request.now,expiration=auth.settings.expiration)
> redirect(URL('inscriptioninvit'))
>
>    On Monday, March 26, 2012 11:53:28 AM UTC+2, selecta wrote:
>>
>> did you see this slice
>>
>> http://www.web2pyslices.com/slice/show/1443/auto-login-when-you-come-from-localhost
>> it logs you in when you come from localhost, just exchange the if an there
>> you go :D
>>
>> On Monday, March 26, 2012 2:11:29 AM UTC+2, bussiere adrien wrote:
>>>
>>> it's more a logical problem than your framework.
>>>
>>> I just want to know how to log a user.
>>>
>>> Bussiere
>>>
>>> Le lundi 26 mars 2012 01:35:04 UTC+2, Massimo Di Pierro a écrit :

 I have been on the road and hard to keep up up with posts. If this issue
 is still open please open a ticket so it can be tracked.

 On Sunday, 25 March 2012 11:57:20 UTC-5, bussiere adrien wrote:
>
> I want to create myself a user then log him.
> This for an open source project
> : https://github.com/bussiere/jackpoint
> I've been on it for 3 days now.
>
> I want to create a user then loggin him and auth him.
> If you find it just give me your paypal in private buy you a drink.
>
> Here is my code :
> def test():
>
>   password="toto"
> my_crypt = CRYPT(key=auth.settings.hmac_key)
> crypt_pass = my_crypt(password)[0]
> user = db.auth_user.insert(
>    Surnom="Surnom",
>    email="email5@toto",
>    username="titi",
>    password=crypt_pass,
>    )
> db.commit()
>
> user = auth.login_bare("titi",password)
> session.auth =
> Storage(user=user,expiration=auth.settings.expiration,hmac_key=str(uuid4()))
> redirect(URL('inscriptioninvit'))
>
> @auth.requires_login()
> def inscriptioninvit():
>  return "hello"


Re: [web2py] Re: Current status of adapting OrientDB for web2py

2012-03-20 Thread bussiere bussiere
Thanks by the way for the works.

Bussiere



"Les nouvelles technologies offrent pleins de nouvelles possibilités,
pleins de possibilités d'erreurs surtout en fait."
insurance.aes256 : http://goo.gl/gHyAY




On Sun, Mar 18, 2012 at 11:32 PM, Vasile Ermicioi  wrote:
> hi,
>
> I can write one,
> I tried it (some samples), I like its concept and features (key value db,
> document db, and graph db, sql  queries,  full text index support and so on)
> but I am waiting for the 1.0 release which is planned to be released in mid
> of April according to their roadmap


Re: [web2py] Re: {{pass}} problems

2012-03-14 Thread bussiere bussiere
Found just that before my modification in defult.py i was in a file.
My modifcatin change the file the new file wasincorrect

thanks
time to sleep
Bussiere



"Les nouvelles technologies offrent pleins de nouvelles possibilités,
pleins de possibilités d'erreurs surtout en fait."
insurance.aes256 : http://goo.gl/gHyAY




On Wed, Mar 14, 2012 at 11:30 PM, bussiere bussiere  wrote:
> The project is here :
> i'am under debian now and i've pull my project.
> https://github.com/bussiere/jackpoint
> And it still dont work i'am ready to pay a beer for the explanation
> and the solution
> if you have a paypal account $5.
>
> Regards
>
>
>
> "Les nouvelles technologies offrent pleins de nouvelles possibilités,
> pleins de possibilités d'erreurs surtout en fait."
> insurance.aes256 : http://goo.gl/gHyAY
>
>
>
>
> On Wed, Mar 14, 2012 at 9:28 PM, bussiere bussiere  wrote:
>> dammit still not work they are here :
>> https://github.com/bussiere/jackpoint/blob/master/applications/init/errors/127.0.0.1.2012-03-14.20-56-03.76ae121a-f33b-439d-b403-1d1707ae4fb7
>>
>> https://github.com/bussiere/jackpoint/blob/master/applications/init/views/layout.html
>>
>> https://github.com/bussiere/jackpoint/blob/master/applications/init/views/default/user.html
>>
>> god dam it >.>
>>
>> Thanks by the way.
>>
>> I'am under windows seven and i have stopped and restart / closed webpy
>>
>> Regards
>> Bussiere
>>
>>
>>
>> "Les nouvelles technologies offrent pleins de nouvelles possibilités,
>> pleins de possibilités d'erreurs surtout en fait."
>> insurance.aes256 : http://goo.gl/gHyAY
>>
>>
>>
>>
>> On Wed, Mar 14, 2012 at 9:24 PM, bussiere bussiere  
>> wrote:
>>> an actual error i will try again ...
>>>
>>> Thanks
>>> Bussiere
>>>
>>>
>>>
>>> "Les nouvelles technologies offrent pleins de nouvelles possibilités,
>>> pleins de possibilités d'erreurs surtout en fait."
>>> insurance.aes256 : http://goo.gl/gHyAY
>>>
>>>
>>>
>>>
>>> On Wed, Mar 14, 2012 at 9:05 PM, Anthony  wrote:
>>>> I tried your exact layout.html and user.html, and it works fine for me, 
>>>> with
>>>> 2 or 3 {{pass}} statements (only 2 are required -- the third is ignored).
>>>> The only problem I see is that you're putting your CSS in a  tag, but
>>>> it should be a 

Re: [web2py] Re: {{pass}} problems

2012-03-14 Thread bussiere bussiere
The project is here :
i'am under debian now and i've pull my project.
https://github.com/bussiere/jackpoint
And it still dont work i'am ready to pay a beer for the explanation
and the solution
if you have a paypal account $5.

Regards



"Les nouvelles technologies offrent pleins de nouvelles possibilités,
pleins de possibilités d'erreurs surtout en fait."
insurance.aes256 : http://goo.gl/gHyAY




On Wed, Mar 14, 2012 at 9:28 PM, bussiere bussiere  wrote:
> dammit still not work they are here :
> https://github.com/bussiere/jackpoint/blob/master/applications/init/errors/127.0.0.1.2012-03-14.20-56-03.76ae121a-f33b-439d-b403-1d1707ae4fb7
>
> https://github.com/bussiere/jackpoint/blob/master/applications/init/views/layout.html
>
> https://github.com/bussiere/jackpoint/blob/master/applications/init/views/default/user.html
>
> god dam it >.>
>
> Thanks by the way.
>
> I'am under windows seven and i have stopped and restart / closed webpy
>
> Regards
> Bussiere
>
>
>
> "Les nouvelles technologies offrent pleins de nouvelles possibilités,
> pleins de possibilités d'erreurs surtout en fait."
> insurance.aes256 : http://goo.gl/gHyAY
>
>
>
>
> On Wed, Mar 14, 2012 at 9:24 PM, bussiere bussiere  wrote:
>> an actual error i will try again ...
>>
>> Thanks
>> Bussiere
>>
>>
>>
>> "Les nouvelles technologies offrent pleins de nouvelles possibilités,
>> pleins de possibilités d'erreurs surtout en fait."
>> insurance.aes256 : http://goo.gl/gHyAY
>>
>>
>>
>>
>> On Wed, Mar 14, 2012 at 9:05 PM, Anthony  wrote:
>>> I tried your exact layout.html and user.html, and it works fine for me, with
>>> 2 or 3 {{pass}} statements (only 2 are required -- the third is ignored).
>>> The only problem I see is that you're putting your CSS in a  tag, but
>>> it should be a 

Re: [web2py] Re: {{pass}} problems

2012-03-14 Thread bussiere bussiere
dammit still not work they are here :
https://github.com/bussiere/jackpoint/blob/master/applications/init/errors/127.0.0.1.2012-03-14.20-56-03.76ae121a-f33b-439d-b403-1d1707ae4fb7

https://github.com/bussiere/jackpoint/blob/master/applications/init/views/layout.html

https://github.com/bussiere/jackpoint/blob/master/applications/init/views/default/user.html

god dam it >.>

Thanks by the way.

I'am under windows seven and i have stopped and restart / closed webpy

Regards
Bussiere



"Les nouvelles technologies offrent pleins de nouvelles possibilités,
pleins de possibilités d'erreurs surtout en fait."
insurance.aes256 : http://goo.gl/gHyAY




On Wed, Mar 14, 2012 at 9:24 PM, bussiere bussiere  wrote:
> an actual error i will try again ...
>
> Thanks
> Bussiere
>
>
>
> "Les nouvelles technologies offrent pleins de nouvelles possibilités,
> pleins de possibilités d'erreurs surtout en fait."
> insurance.aes256 : http://goo.gl/gHyAY
>
>
>
>
> On Wed, Mar 14, 2012 at 9:05 PM, Anthony  wrote:
>> I tried your exact layout.html and user.html, and it works fine for me, with
>> 2 or 3 {{pass}} statements (only 2 are required -- the third is ignored).
>> The only problem I see is that you're putting your CSS in a  tag, but
>> it should be a 

Re: [web2py] Re: {{pass}} problems

2012-03-14 Thread bussiere bussiere
an actual error i will try again ...

Thanks
Bussiere



"Les nouvelles technologies offrent pleins de nouvelles possibilités,
pleins de possibilités d'erreurs surtout en fait."
insurance.aes256 : http://goo.gl/gHyAY




On Wed, Mar 14, 2012 at 9:05 PM, Anthony  wrote:
> I tried your exact layout.html and user.html, and it works fine for me, with
> 2 or 3 {{pass}} statements (only 2 are required -- the third is ignored).
> The only problem I see is that you're putting your CSS in a  tag, but
> it should be a 

Re: [web2py] Re: {{pass}} problems

2012-03-14 Thread bussiere bussiere
still not work :




  
  Projet Jackpoint


body{
color:#b7d14e;
background-color:#000f00;
margin:4px;
margin-top:0px;
font-family:monospace;
}
a:link{
color:#94d118;
}
a:visited{
color:#94a443;
}
{{include}}

and not :

{{extend 'layout.html'}}


   __ __   _
   \ \  __ _  ___| | ___ __   ___ (_)_ __ | |_
\ \/ _` |/ __| |/ / '_ \ / _ \| | '_ \| __|
 /\_/ / (_| | (__|   <| |_) | (_) | | | | | |_
 \___/ \__,_|\___|_|\_\ .__/ \___/|_|_| |_|\__|
  |_|

{{=T( request.args(0).replace('_',' ').capitalize() )}}

  {{=form}}
  {{if request.args(0)=='login':}}
  {{if not 'register' in auth.settings.actions_disabled:}}
  
  {{pass}}
  {{pass}}
  {{pass}}


Vous avez une invitation ? Follow the rabbit ...
FAQ
<!--
  jQuery("#web2py_user_form input:visible:enabled:first").focus();
  //-->



or
{{extend 'layout.html'}}


   __ __   _
   \ \  __ _  ___| | ___ __   ___ (_)_ __ | |_
\ \/ _` |/ __| |/ / '_ \ / _ \| | '_ \| __|
 /\_/ / (_| | (__|   <| |_) | (_) | | | | | |_
 \___/ \__,_|\___|_|\_\ .__/ \___/|_|_| |_|\__|
  |_|

{{=T( request.args(0).replace('_',' ').capitalize() )}}

  {{=form}}
  {{if request.args(0)=='login':}}
  {{if not 'register' in auth.settings.actions_disabled:}}
  
  {{pass}}
  {{pass}}



Vous avez une invitation ? Follow the rabbit ...
FAQ
<!--
  jQuery("#web2py_user_form input:visible:enabled:first").focus();
  //-->






"Les nouvelles technologies offrent pleins de nouvelles possibilités,
pleins de possibilités d'erreurs surtout en fait."
insurance.aes256 : http://goo.gl/gHyAY





-- Forwarded message --
From: bussiere bussiere 
Date: Wed, Mar 14, 2012 at 8:39 PM
Subject: Re: [web2py] Re: {{pass}} problems
To: web2py@googlegroups.com


it's not that but htanks :
layout.html



 
 Projet Jackpoint


body{
color:#b7d14e;
background-color:#000f00;
margin:4px;
margin-top:0px;
font-family:monospace;
}
a:link{
color:#94d118;
}
a:visited{
color:#94a443;
}
{{include}}

user.html :
{{extend 'layout.html'}}


  __             _                _       _
  \ \  __ _  ___| | ___ __   ___ (_)_ __ | |_
   \ \/ _` |/ __| |/ / '_ \ / _ \| | '_ \| __|
 /\_/ / (_| | (__|   <| |_) | (_) | | | | | |_
 \___/ \__,_|\___|_|\_\ .__/ \___/|_|_| |_|\__|
                     |_|

{{=T( request.args(0).replace('_',' ').capitalize() )}}

 {{=form}}
 {{if request.args(0)=='login':}}
 {{if not 'register' in auth.settings.actions_disabled:}}
 
 {{pass}}
 {{pass}}
 {{pass}}

Vous avez une invitation ? Follow the rabbit ...
FAQ
<!--
     jQuery("#web2py_user_form input:visible:enabled:first").focus();
     //-->


and it's still not working even with two pass.

Regards
Bussiere





"Les nouvelles technologies offrent pleins de nouvelles possibilités,
pleins de possibilités d'erreurs surtout en fait."
insurance.aes256 : http://goo.gl/gHyAY




On Wed, Mar 14, 2012 at 8:16 PM, Anthony  wrote:
> Your layout.html needs an {{include}} at the end to tell it where to insert
> the user.html view. Also, looks like user.html has one too many {{pass}}
> statements (you just need two to close the two if blocks).
>
> Anthony
>
>
> On Wednesday, March 14, 2012 3:10:52 PM UTC-4, bussiere adrien wrote:
>>
>> i don't understand the pass ...
>> I anyone have a better tutorial than the official one.
>>
>> Here is my layout.html :
>>
>> > "http ://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
>> 
>> 
>>   
>>   Projet Jackpoint
>> 
>> 
>> body{
>> color:#b7d14e;
>> background-color:#000f00;
>> margin:4px;
>> margin-top:0px;
>> font-family:monospace;
>> }
>> a:link{
>> color:#94d118;
>> }
>> a:visited{
>> color:#94a443;
>> }
>>
>>
>> here is my user.html :
>> {{extend 'layout.html'}}
>> 
>> 
>>    __             _                _       _
>>    \ \  __ _  ___| | ___ __   ___ (_)_ __ | |_
>>     \ \/ _` |/ __| |/ / '_ \ / _ \| | '_ \| __|
>>  /\_/ / (_| | (__|   <| |_) | (_) | | | | | |_
>>  \___/ \__,_|\___|_|\_\ .__/ \___/|_|_| |_|\__|
>>                       |_|
>> 
>> {{=T( request.args(0).replace('_',' ').capitalize() )}}
>> 
>>   {{=form}}
>>   {{if request.args(0)=='login':}}
>>   {{if not 'register' in auth.settings.actions_disabled:}}
>>   
>>   {{pass}}
>>   {{pass}}
>>   {{pass}}
>> 
>> Vous avez une invitation ? Follow the rabbit
>> ...
>> FAQ
>> <!--
>>       jQuery("#web2py_user_form input:visible:enabled:first").focus();
>>       //-->
>>
>> 
>>
>> Why does it say to me that there is not enough {{pass}} ?
>> I have no pass in layout.html and in user html 3 pass.
>>
>> And before tryieng to make a layout and put the balise extend layout it
>> worked fine.
>>
>>
>> regards
>> Bussiere


Re: [web2py] Re: {{pass}} problems

2012-03-14 Thread bussiere bussiere
it's not that but htanks :
layout.html



  
  Projet Jackpoint


body{
color:#b7d14e;
background-color:#000f00;
margin:4px;
margin-top:0px;
font-family:monospace;
}
a:link{
color:#94d118;
}
a:visited{
color:#94a443;
}
{{include}}

user.html :
{{extend 'layout.html'}}


   __ __   _
   \ \  __ _  ___| | ___ __   ___ (_)_ __ | |_
\ \/ _` |/ __| |/ / '_ \ / _ \| | '_ \| __|
 /\_/ / (_| | (__|   <| |_) | (_) | | | | | |_
 \___/ \__,_|\___|_|\_\ .__/ \___/|_|_| |_|\__|
  |_|

{{=T( request.args(0).replace('_',' ').capitalize() )}}

  {{=form}}
  {{if request.args(0)=='login':}}
  {{if not 'register' in auth.settings.actions_disabled:}}
  
  {{pass}}
  {{pass}}
  {{pass}}

Vous avez une invitation ? Follow the rabbit ...
FAQ



and it's still not working even with two pass.

Regards
Bussiere





"Les nouvelles technologies offrent pleins de nouvelles possibilités,
pleins de possibilités d'erreurs surtout en fait."
insurance.aes256 : http://goo.gl/gHyAY




On Wed, Mar 14, 2012 at 8:16 PM, Anthony  wrote:
> Your layout.html needs an {{include}} at the end to tell it where to insert
> the user.html view. Also, looks like user.html has one too many {{pass}}
> statements (you just need two to close the two if blocks).
>
> Anthony
>
>
> On Wednesday, March 14, 2012 3:10:52 PM UTC-4, bussiere adrien wrote:
>>
>> i don't understand the pass ...
>> I anyone have a better tutorial than the official one.
>>
>> Here is my layout.html :
>>
>> > "http ://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
>> 
>> 
>>   
>>   Projet Jackpoint
>> 
>> 
>> body{
>> color:#b7d14e;
>> background-color:#000f00;
>> margin:4px;
>> margin-top:0px;
>> font-family:monospace;
>> }
>> a:link{
>> color:#94d118;
>> }
>> a:visited{
>> color:#94a443;
>> }
>>
>>
>> here is my user.html :
>> {{extend 'layout.html'}}
>> 
>> 
>>    __             _                _       _
>>    \ \  __ _  ___| | ___ __   ___ (_)_ __ | |_
>>     \ \/ _` |/ __| |/ / '_ \ / _ \| | '_ \| __|
>>  /\_/ / (_| | (__|   <| |_) | (_) | | | | | |_
>>  \___/ \__,_|\___|_|\_\ .__/ \___/|_|_| |_|\__|
>>                       |_|
>> 
>> {{=T( request.args(0).replace('_',' ').capitalize() )}}
>> 
>>   {{=form}}
>>   {{if request.args(0)=='login':}}
>>   {{if not 'register' in auth.settings.actions_disabled:}}
>>   
>>   {{pass}}
>>   {{pass}}
>>   {{pass}}
>> 
>> Vous avez une invitation ? Follow the rabbit
>> ...
>> FAQ
>> 
>>
>> 
>>
>> Why does it say to me that there is not enough {{pass}} ?
>> I have no pass in layout.html and in user html 3 pass.
>>
>> And before tryieng to make a layout and put the balise extend layout it
>> worked fine.
>>
>>
>> regards
>> Bussiere


Re: [web2py] Re: call function in template layout

2012-03-14 Thread bussiere bussiere
Thanks

Bussiere



"Les nouvelles technologies offrent pleins de nouvelles possibilités,
pleins de possibilités d'erreurs surtout en fait."
insurance.aes256 : http://goo.gl/gHyAY




On Wed, Mar 14, 2012 at 12:15 PM, Wikus van de Merwe
 wrote:
> In a view you can only call functions defined in this view or a one being
> extended/included:
> http://web2py.com/books/default/chapter/29/5#Functions-in-views
>
> More complex data processing should be done in the controller. Views should
> just present the data.
> Make the form transformation in the controller and pass the result to the
> view along with the form.
>
> def index():
>   form = SQLFORM(...)
>   something = encadrement(form)
>   return dict(form=form, something=something)
>


Re: [web2py] web2py recipe book

2012-03-12 Thread bussiere bussiere
Thanks

Just as needed for my project.

Bussiere



"Les nouvelles technologies offrent pleins de nouvelles possibilités,
pleins de possibilités d'erreurs surtout en fait."
insurance.aes256 : http://goo.gl/gHyAY




On Mon, Mar 12, 2012 at 4:02 PM, Jim Steil  wrote:
> I just ordered it and saw that it would be available on the 15th.  I was
> going to order both hardcopy and electronic until I saw that shipping cost
> to the US was over $14.  I just got the e-version.
>
>    -Jim
>
>
> On 3/12/2012 8:49 AM, bussiere bussiere wrote:
>>
>> The cookbook is still labelled as pre order.
>>
>> When will it be out please ?
>>
>> Regards
>> Bussiere
>>
>>
>>
>> "Les nouvelles technologies offrent pleins de nouvelles possibilités,
>> pleins de possibilités d'erreurs surtout en fait."
>> insurance.aes256 : http://goo.gl/gHyAY
>>
>>
>>
>>
>> On Mon, Mar 12, 2012 at 10:35 AM, lyn2py  wrote:
>>>
>>> Any idea if future updates to the book will be free if the ebook version
>>> is purchased?
>>>
>>> Thanks!


Re: [web2py] web2py recipe book

2012-03-12 Thread bussiere bussiere
The cookbook is still labelled as pre order.

When will it be out please ?

Regards
Bussiere



"Les nouvelles technologies offrent pleins de nouvelles possibilités,
pleins de possibilités d'erreurs surtout en fait."
insurance.aes256 : http://goo.gl/gHyAY




On Mon, Mar 12, 2012 at 10:35 AM, lyn2py  wrote:
> Any idea if future updates to the book will be free if the ebook version is 
> purchased?
>
> Thanks!


Re: [web2py] Re: Custom register form with personnalised Auth

2012-03-12 Thread bussiere bussiere
Thanks again

regards
Bussiere



"Les nouvelles technologies offrent pleins de nouvelles possibilités,
pleins de possibilités d'erreurs surtout en fait."
insurance.aes256 : http://goo.gl/gHyAY




On Mon, Mar 12, 2012 at 1:43 AM, Massimo Di Pierro
 wrote:
> you the fields you do not want to db.table.field.writeable=False and the use
> the regular SQLFORM(db.table)
>
>
> On Sunday, 11 March 2012 11:15:41 UTC-5, bussiere adrien wrote:
>>
>> here is my auth table :
>> (the beginning my table is correct)
>> db.define_table(
>>     auth.settings.table_user_name,
>>    Field('Nom'),
>>    Field('Prenom'),
>>    Field('Telephone'),
>>    # NOte on user is intern and the user don't hve to see it.
>>    Field('Note on user'),
>>
>> How to make a custom sqlform from it ?
>> like :
>> def user():
>>     # i just want some things what is needed (passwd name and all but NOT
>> note on user on the form
>>     form = SQLFORM([auth.settings.Nom,auth.settings.Prenom])
>>     return dict(form=form)
>>
>> Regards
>> Bussiere


[web2py] Web2py cookbook

2012-03-12 Thread bussiere bussiere
Does anyone know when the web2py cookbook will be available please ?

Regards
Bussiere



"Les nouvelles technologies offrent pleins de nouvelles possibilités,
pleins de possibilités d'erreurs surtout en fait."
insurance.aes256 : http://goo.gl/gHyAY


Re: [web2py] Re: How to call other web2py applications from within a web2py application

2012-03-10 Thread bussiere bussiere
Bruno :
Thanks for your devoting.

Bussiere



"Les nouvelles technologies offrent pleins de nouvelles possibilités,
pleins de possibilités d'erreurs surtout en fait."
insurance.aes256 : http://goo.gl/gHyAY




On Sat, Mar 10, 2012 at 4:11 AM, Bruno Rocha  wrote:
> I have a working website using two apps, hosted at different servers but
> using the same database/session. I will take it to remember the
> implementation in details and write a recipe in web2pyslices.
>
>
> On Fri, Mar 9, 2012 at 11:00 PM, Bruce Wade  wrote:
>>
>> How about you provide an example, considering you sound like the expert at
>> it :D
>>
>>
>> On Fri, Mar 9, 2012 at 5:53 PM, Bruno Rocha  wrote:
>>>
>>> **important: to share the same user/session information, you have to
>>> share the same auth.hmac_key
>>>
>>>
>>> --
>>>
>>> Bruno Rocha
>>> [http://rochacbruno.com.br]
>>>
>>
>>
>>
>> --
>> --
>> Regards,
>> Bruce Wade
>> http://ca.linkedin.com/in/brucelwade
>> http://www.wadecybertech.com
>> http://www.warplydesigned.com
>> http://www.fitnessfriendsfinder.com
>
>
>
>
> --
>
> Bruno Rocha
> [http://rochacbruno.com.br]
>