Browse Source

bug #52: make the status list more coherent+ add automatic status for items containing tasks

damien 11 years ago
parent
commit
3ed3ea508b

+ 2 - 1
pboard/pboard/model/auth.py View File

@@ -121,7 +121,8 @@ class User(DeclarativeBase):
121 121
 
122 122
         # Make sure the hashed password is a unicode object at the end of the
123 123
         # process because SQLAlchemy _wants_ unicode objects for Unicode cols
124
-        password = password.decode('utf-8')
124
+        # FIXME - D.A. - 2013-11-20 - The following line has been removed since using python3. Is this normal ?!
125
+        # password = password.decode('utf-8')
125 126
 
126 127
         return password
127 128
 

+ 1 - 1
pboard/pboard/templates/about.mak View File

@@ -99,7 +99,7 @@
99 99
     <div class="span8 offset2">
100 100
       <div class="text-center">
101 101
         <p style="margin: 1em 0 0 0;">
102
-          <a class="btn btn-success" href="mailto:pod+alphatest@accorsi.info?subject=feedback about pod software">
102
+          <a class="btn btn-success" href="mailto:damien.accorsi+pod@free.fr?subject=feedback about pod software">
103 103
             <i class="fa fa-envelope-o"></i>
104 104
             <strong>${_("email us")}</strong>
105 105
           </a> ${_("and we will reply to you.")}

+ 1 - 1
pboard/pboard/templates/pod.mak View File

@@ -26,7 +26,7 @@
26 26
 
27 27
 <%def name='SignUpForm(psCssMinHeight="1em")'>
28 28
   <div class="span3">
29
-    <form class="well" style="min-height: ${psCssMinHeight};" action="${tg.url('/public_api/create_account')}">
29
+    <form class="well" method="POST" style="min-height: ${psCssMinHeight};" action="${tg.url('/public_api/create_account')}">
30 30
       <fieldset>
31 31
         <legend>Want to try?</legend>
32 32
         <input type="text"     name="email"            id="email" placeholder="Email"><br/>