##// END OF EJS Templates
visual-settings: fill in default clone/ssh clone urls if they aren't provided....
marcink -
r2616:11d0d959 default
parent child Browse files
Show More
@@ -375,6 +375,7 b' def ApplicationSettingsForm(localizer):'
375 375
376 376
377 377 def ApplicationVisualisationForm(localizer):
378 from rhodecode.model.db import Repository
378 379 _ = localizer
379 380
380 381 class _ApplicationVisualisationForm(formencode.Schema):
@@ -392,8 +393,8 b' def ApplicationVisualisationForm(localiz'
392 393 rhodecode_use_gravatar = v.StringBoolean(if_missing=False)
393 394 rhodecode_markup_renderer = v.OneOf(['markdown', 'rst'])
394 395 rhodecode_gravatar_url = v.UnicodeString(min=3)
395 rhodecode_clone_uri_tmpl = v.UnicodeString(min=3)
396 rhodecode_clone_uri_ssh_tmpl = v.UnicodeString(min=3)
396 rhodecode_clone_uri_tmpl = v.UnicodeString(not_empty=False, if_empty=Repository.DEFAULT_CLONE_URI)
397 rhodecode_clone_uri_ssh_tmpl = v.UnicodeString(not_empty=False, if_empty=Repository.DEFAULT_CLONE_URI_SSH)
397 398 rhodecode_support_url = v.UnicodeString()
398 399 rhodecode_show_revision_number = v.StringBoolean(if_missing=False)
399 400 rhodecode_show_sha_length = v.Int(min=4, not_empty=True)
General Comments 0
You need to be logged in to leave comments. Login now