Changeset 1246 for trunk/rp/trac
- Timestamp:
- 01/30/08 15:42:22 (11 months ago)
- Location:
- trunk/rp/trac/infocard_acct/0.11/infocard_acct
- Files:
-
- 2 modified
-
templates/authenticate.html (modified) (1 diff)
-
web_ui.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/rp/trac/infocard_acct/0.11/infocard_acct/templates/authenticate.html
r1245 r1246 74 74 </div> 75 75 76 <fieldset id="traditional_login" py:if=" not up_hide">76 <fieldset id="traditional_login" py:if="up_show"> 77 77 <h1 py:if="display_infocard">Username / Password Login</h1> 78 78 <p class="help" py:if="help_text"> -
trunk/rp/trac/infocard_acct/0.11/infocard_acct/web_ui.py
r1245 r1246 194 194 'infocards': self.processors, 195 195 'help_text': self.config.get('infocard_acct', 'up_help_text', 'Use existing credentials to authenticate to your account'), 196 'up_ hide': self.config.get('infocard_acct', 'up_hide', False)196 'up_show': self.config.getbool('infocard_acct', 'up_show', True) 197 197 } 198 198 … … 228 228 data['display_infocard'] = False 229 229 data['help_text'] = self.config.get('infocard_acct', 'associate_help_text') 230 data['up_ hide'] = False230 data['up_show'] = True 231 231 return 'authenticate.html', data, None 232 232 elif req.args.get('xmlToken'):