Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/scriptform/commit/f9214bfd4d730ed6251cdb047b7ff79de2a5f440?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
10 additions and
6 deletions
src/formrender.py
src/scriptform.py
@ -180,9 +180,12 @@ class FormRender(object):
checked = ' '
if o_value == value :
checked = ' checked '
radio_elems . append ( tpl_option . format ( name = name , value = value ,
checked = checked , label = o_label , classes = classes ,
style = style ) )
radio_elems . append ( tpl_option . format ( name = name ,
value = value ,
checked = checked ,
label = o_label ,
classes = classes ,
style = style ) )
return u ' ' . join ( radio_elems )
def r_field_checkbox ( self , name , checked , classes = ' ' , style = " " ) :
@ -204,8 +207,9 @@ class FormRender(object):
if o_value == value :
selected = ' selected '
select_elems . append ( tpl_option . format ( value = o_value ,
selected = selected , label = o_label ,
style = style ) )
selected = selected ,
label = o_label ,
style = style ) )
tpl = self . field_tpl [ ' select ' ]
return tpl . format ( name = name , select_elems = ' ' . join ( select_elems ) ,
@ -203,7 +203,7 @@ def main(): # pragma: no cover
# Generate a password for use in the `users` section
import getpass
plain_pw = getpass . getpass ( )
if not plain_pw = = getpass . getpass ( ' Repeat password: ' ) :
if plain_pw ! = getpass . getpass ( ' Repeat password: ' ) :
sys . stderr . write ( " Passwords do not match. \n " )
sys . exit ( 1 )
sys . stdout . write ( hashlib . sha256 ( plain_pw ) . hexdigest ( ) + ' \n ' )