diff options
author | Varun Seereeram <vseereer@cisco.com> | 2016-02-04 05:15:51 -0800 |
---|---|---|
committer | Robert Varga <nite@hq.sk> | 2016-02-04 17:32:32 +0100 |
commit | 882ddc69b05a4001718d90aa9c57f1e13d80aa0d (patch) | |
tree | 1345178f9dba4b72906836b47477c67ba2809431 /vbd/gui/bundle/src/main/resources/OSGI-INF | |
parent | 517c7d143f399e7343082e2e7978ace2260271a8 (diff) |
GUI initial commit
- open ui on http://controllerIp:8181/index.html
- added interfaces to vpp topo.
- fixed VPP mounting
- fixed VPP Editing and deleting
Change-Id: I6ae2c6e5781d3e0cdb78b112d706b9f5076301d5
Signed-off-by: Daniel Malachovsky <daniel.malachovsky@pantheon.sk>
Signed-off-by: Varun Seereeram <vseereer@cisco.com>
Signed-off-by: Robert Varga <nite@hq.sk>
Diffstat (limited to 'vbd/gui/bundle/src/main/resources/OSGI-INF')
-rw-r--r-- | vbd/gui/bundle/src/main/resources/OSGI-INF/blueprint/blueprint.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/vbd/gui/bundle/src/main/resources/OSGI-INF/blueprint/blueprint.xml b/vbd/gui/bundle/src/main/resources/OSGI-INF/blueprint/blueprint.xml new file mode 100644 index 000000000..b8c866da4 --- /dev/null +++ b/vbd/gui/bundle/src/main/resources/OSGI-INF/blueprint/blueprint.xml @@ -0,0 +1,20 @@ +<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"> + <reference id="httpService" availability="mandatory" activation="eager" interface="org.osgi.service.http.HttpService"/> + <reference id="loader" availability="mandatory" activation="eager" interface="org.opendaylight.dlux.loader.DluxModuleLoader"/> + <bean id="bundle" init-method="initialize" destroy-method="clean" class="org.opendaylight.dlux.loader.DluxModule"> + <property name="httpService" ref="httpService"/> + <property name="loader" ref="loader"/> + <property name="moduleName" value="vpp"/> + <property name="url" value="/src/app/vpp"/> + <property name="directory" value="/vpp"/> + <property name="requireJs" value="app/vpp/main"/> + <property name="angularJs" value="app.vpp"/> + <property name="cssDependencies"> + <list> + <value>src/app/vpp/vpp.css</value> + <value>src/app/vpp/assets/css/next.css</value> + <value>src/app/vpp/bower_components/angular-material/angular-material.min.css</value> + </list> + </property> + </bean> +</blueprint> |