Switch to side-by-side view

--- a/Allura/allura/controllers/project.py
+++ b/Allura/allura/controllers/project.py
@@ -194,7 +194,7 @@
         redirect(c.project.script_name + 'admin/overview')
 
     @expose()
-    def icon(self):
+    def icon(self, **kw):
         icon = self.neighborhood.icon
         if not icon:
             raise exc.HTTPNotFound
@@ -320,14 +320,14 @@
         return feed.writeString('utf-8')
 
     @expose()
-    def icon(self):
+    def icon(self, **kw):
         icon = c.project.icon
         if not icon:
             raise exc.HTTPNotFound
         return icon.serve()
 
     @expose()
-    def user_icon(self):
+    def user_icon(self, **kw):
         try:
             return self.icon()
         except exc.HTTPNotFound:
@@ -744,7 +744,7 @@
         return GrantController(self.neighborhood, self.award, recipient), remainder
 
     @expose()
-    def icon(self):
+    def icon(self, **kw):
         icon = self.award.icon
         if not icon:
             raise exc.HTTPNotFound
@@ -809,7 +809,7 @@
         return dict()
 
     @expose()
-    def icon(self):
+    def icon(self, **kw):
         icon = self.award.icon
         if not icon:
             raise exc.HTTPNotFound