Changeset - f66a13a8ab99
[Not reviewed]
default
1 1 1
Mads Kiilerich (mads) - 5 years ago 2020-10-10 21:33:42
mads@kiilerich.com
Grafted from: a831545a4e22
routing: move config.routing to kallithea.controllers

Routing doesn't belong in config. Having it there caused unfortunate
dependencies.

We do routing the old way. If we did it the new way, it would be defined in the
root controller. But for now, we just place it next to the root controller.
2 files changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
kallithea/controllers/root.py
Show inline comments
 
@@ -11,14 +11,14 @@
 
#
 
# You should have received a copy of the GNU General Public License
 
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
from tg import config
 
from tgext.routes import RoutedController
 

	
 
from kallithea.config.routing import make_map
 
from kallithea.controllers.error import ErrorController
 
from kallithea.controllers.routing import make_map
 
from kallithea.lib.base import BaseController
 

	
 

	
 
# This is the main Kallithea entry point; TurboGears will forward all requests
 
# to an instance of 'controller.root.RootController' in the configured
 
# 'application' module (set by app_cfg.py).  Requests are forwarded to
kallithea/controllers/routing.py
Show inline comments
 
file renamed from kallithea/config/routing.py to kallithea/controllers/routing.py
0 comments (0 inline, 0 general)