##// END OF EJS Templates
rename sha_rev to something more understandable
marcink -
r3588:6750e8b5 beta
parent child Browse files
Show More
@@ -109,7 +109,7 b' rss_include_diff = false'
109
109
110 ## show hash options for changelog
110 ## show hash options for changelog
111 sha_len = 12
111 sha_len = 12
112 sha_rev = true
112 sha_show_numeric_rev = true
113
113
114
114
115 ## alternative_gravatar_url allows you to use your own avatar server application
115 ## alternative_gravatar_url allows you to use your own avatar server application
@@ -109,7 +109,7 b' rss_include_diff = false'
109
109
110 ## show hash options for changelog
110 ## show hash options for changelog
111 sha_len = 12
111 sha_len = 12
112 sha_rev = true
112 sha_show_numeric_rev = true
113
113
114
114
115 ## alternative_gravatar_url allows you to use your own avatar server application
115 ## alternative_gravatar_url allows you to use your own avatar server application
@@ -109,7 +109,7 b' rss_include_diff = false'
109
109
110 ## show hash options for changelog
110 ## show hash options for changelog
111 sha_len = 12
111 sha_len = 12
112 sha_rev = true
112 sha_show_numeric_rev = true
113
113
114
114
115 ## alternative_gravatar_url allows you to use your own avatar server application
115 ## alternative_gravatar_url allows you to use your own avatar server application
@@ -380,7 +380,7 b' def show_id(cs):'
380 """
380 """
381 from rhodecode import CONFIG
381 from rhodecode import CONFIG
382 def_len = safe_int(CONFIG.get('sha_len', 12))
382 def_len = safe_int(CONFIG.get('sha_len', 12))
383 show_rev = str2bool(CONFIG.get('sha_rev', True))
383 show_rev = str2bool(CONFIG.get('sha_show_numeric_rev', True))
384
384
385 raw_id = cs.raw_id[:def_len]
385 raw_id = cs.raw_id[:def_len]
386 if show_rev:
386 if show_rev:
@@ -109,7 +109,7 b' rss_include_diff = false'
109
109
110 ## show hash options for changelog
110 ## show hash options for changelog
111 sha_len = 12
111 sha_len = 12
112 sha_rev = true
112 sha_show_numeric_rev = true
113
113
114
114
115 ## alternative_gravatar_url allows you to use your own avatar server application
115 ## alternative_gravatar_url allows you to use your own avatar server application
General Comments 0
You need to be logged in to leave comments. Login now