opal.core.application
Utility functions
get_app
Returns the application class for the currently active application.
get_all_components
Returns an iterator of all the of the plugins and the current application
OpalApplication
The base class for your main application entrypoints is opal.core.application.OpalApplication.
You must subclass this in order for Opal to discover your application.
If you started your Opal project via $ opal startproject yourproject
then this will have been
generated for you, and located in yourproject/yourproject/__init__.py
Properties
Properties available on an OpalApplication:
OpalApplication.actions
OpalApplication.default_episode_category
The default category is 'Inpatient', but can be overridden in the OpalApplication subclass for your implementation.
OpalApplication.javascripts
A list of javascripts that our application would like to include. These should be strings
representing paths ready for staticfiles. Defaults to []
.
class MyApplication(OpalApplication):
javascripts = ['js/one.js']
OpalApplication.menuitems
A list of items to add to the top level menu
OpalApplication.styles
A list of stylesheets that our application would like to include. These should be strings
representing paths ready for staticfiles. Defaults to []
. These styles are included after
the default Opal styles.
class MyApplication(OpalApplication):
styles = ['css/app.css']
Classmethods
Classmethod API for OpalApplication instances:
OpalApplication.get_core_javascripts(namespace)
Return a list of the core javascript files specified within a given namespace. These wil be relative paths ready for staticfiles.
application.get_core_javascripts('opal.utils')
# -> ['js/opal/utils.js', ...]
OpalApplication.get_javascripts()
Return a list of the application's javasctipts as paths to them ready for staticfiles.
Defaults to returning the OpalApplication.javascripts
property.
application.get_javascripts()
# -> ['js/one.js', 'js/two.js', ...]
OpalApplication.directory
Returns the file system location of the module.
OpalApplication.get_menu_items()
OpalApplication.get_styles()
Return a list of the application's stylesheets as paths to them ready for staticfiles.
Defaults to returning the contents of OpalApplication.styles
.
application.get_styles()
# -> ['css/app.css', ...]