Changeset - 85a64b981c07
[Not reviewed]
beta
0 3 0
Marcin Kuzminski - 14 years ago 2012-03-28 23:19:58
marcin@python-works.com
ws cleanup, +changelog
3 files changed with 17 insertions and 5 deletions:
0 comments (0 inline, 0 general)
docs/changelog.rst
Show inline comments
 
@@ -4,8 +4,7 @@
 
Changelog
 
=========
 

	
 

	
 
1.3.4 (**2012-XX-XX**)
 
1.3.5 (**2012-XX-XX**)
 
----------------------
 

	
 
:status: in-progress
 
@@ -14,6 +13,19 @@ Changelog
 
news
 
++++
 

	
 
- use ext_json for json module
 

	
 
fixes
 
+++++
 

	
 
- fixed dev-version marker for stable when served from source codes
 

	
 
1.3.4 (**2012-03-28**)
 
----------------------
 

	
 
news
 
++++
 

	
 
- Whoosh logging is now controlled by the .ini files logging setup
 
- added clone-url into edit form on /settings page
 
- added help text into repo add/edit forms
rhodecode/lib/ext_json.py
Show inline comments
 
@@ -68,7 +68,7 @@ try:
 
        except NotImplementedError:
 
            pass
 
        raise TypeError("%r is not JSON serializable" % (obj,))
 
    # we handle decimals our own it makes unified behavior of json vs 
 
    # we handle decimals our own it makes unified behavior of json vs
 
    # simplejson
 
    _sj.dumps = functools.partial(_sj.dumps, default=extended_encode,
 
                                  use_decimal=False)
rhodecode/templates/base/root.html
Show inline comments
 
@@ -133,13 +133,13 @@
 
     ## IE hacks
 
      <!--[if IE 7]>
 
      <script>YUD.addClass(document.body,'ie7')</script>
 
      <![endif]-->            
 
      <![endif]-->
 
      <!--[if IE 8]>
 
      <script>YUD.addClass(document.body,'ie8')</script>
 
      <![endif]-->
 
      <!--[if IE 9]>
 
      <script>YUD.addClass(document.body,'ie9')</script>
 
      <![endif]-->    
 
      <![endif]-->
 

	
 
      ${next.body()}
 
    </body>
0 comments (0 inline, 0 general)