##// END OF EJS Templates
small issue fixes
marcink -
r2269:f1467dfc beta
parent child Browse files
Show More
@@ -16,6 +16,19 b' news'
16 fixes
16 fixes
17 +++++
17 +++++
18
18
19 1.3.6 (**2012-05-16**)
20 ----------------------
21
22 news
23 ++++
24
25
26 fixes
27 +++++
28
29 - fixed no scm found warning
30 - fixed __future__ import error on rcextensions
31 - made simplejson required lib for speedup on JSON encoding
19
32
20 1.3.5 (**2012-05-10**)
33 1.3.5 (**2012-05-10**)
21 ----------------------
34 ----------------------
@@ -65,10 +65,10 b' requirements = ['
65 "webob==1.0.8",
65 "webob==1.0.8",
66 "markdown==2.1.1",
66 "markdown==2.1.1",
67 "docutils==0.8.1",
67 "docutils==0.8.1",
68 "simplejson==2.5.2",
68 ]
69 ]
69
70
70 if __py_version__ < (2, 6):
71 if __py_version__ < (2, 6):
71 requirements.append("simplejson")
72 requirements.append("pysqlite")
72 requirements.append("pysqlite")
73
73
74 if is_windows:
74 if is_windows:
@@ -22,12 +22,13 b''
22 #
22 #
23 # You should have received a copy of the GNU General Public License
23 # You should have received a copy of the GNU General Public License
24 # along with this program. If not, see <http://www.gnu.org/licenses/>.
24 # along with this program. If not, see <http://www.gnu.org/licenses/>.
25 from __future__ import with_statement
26
25 import os
27 import os
26 import sys
28 import sys
27 import pkg_resources
29 import pkg_resources
28 import traceback
30 import traceback
29 import logging
31 import logging
30 from __future__ import with_statement
31 from os.path import dirname as dn, join as jn
32 from os.path import dirname as dn, join as jn
32
33
33 #to get the rhodecode import
34 #to get the rhodecode import
@@ -100,8 +100,8 b''
100 %for book in cs.bookmarks:
100 %for book in cs.bookmarks:
101 <span class="bookbook" title="${'%s %s' % (_('bookmark'),book)}">
101 <span class="bookbook" title="${'%s %s' % (_('bookmark'),book)}">
102 ${h.link_to(h.shorter(book),h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}
102 ${h.link_to(h.shorter(book),h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}
103 </span>
103 </span>
104 %endfor
104 %endfor
105 %endif
105 %endif
106 %for tag in cs.tags:
106 %for tag in cs.tags:
107 <span class="tagtag" title="${'%s %s' % (_('tag'),tag)}">
107 <span class="tagtag" title="${'%s %s' % (_('tag'),tag)}">
General Comments 0
You need to be logged in to leave comments. Login now