Displaying 3 results from an estimated 3 matches for "another_app".
2010 Aug 23
1
Re: Metatrader Installation error
Hello, L. Rahyen and all others
excuse me for my bad english (i speak french)
it is now 4 days i leave windows because my windows XP crashed. i installed ubuntu 10 so i'm new linux user. i want to install metatrder 4 and vb6 I folowed your tutorial:
unset WINEPREFIX
mv ~/.wine{,.old}
wineboot
winetricks vcrun6
wine start /unix /path/to/metatrader4/setup.exe
i installed metatrader and it
2010 Feb 11
1
[PATCH] Provides a reference implementation management server.
...ntroller']
+
+
+class RootController(BaseController):
+ """
+ The root controller for the server application.
+
+ All the other controllers and WSGI applications should be mounted on this
+ controller. For example::
+
+ panel = ControlPanelController()
+ another_app = AnotherWSGIApplication()
+
+ Keep in mind that WSGI applications shouldn't be mounted directly: They
+ must be wrapped around with :class:`tg.controllers.WSGIAppController`.
+
+ """
+
+ error = ErrorController()
+
+ @expose('ovirtserver.templates.index')...
2010 Feb 17
0
[PATCH] Provides the new node lifecycle events.
...ntroller']
-
-
-class RootController(BaseController):
- """
- The root controller for the server application.
-
- All the other controllers and WSGI applications should be mounted on this
- controller. For example::
-
- panel = ControlPanelController()
- another_app = AnotherWSGIApplication()
-
- Keep in mind that WSGI applications shouldn't be mounted directly: They
- must be wrapped around with :class:`tg.controllers.WSGIAppController`.
-
- """
-
- error = ErrorController()
-
- @expose('ovirtserver.templates.index')...