IDEMPIERE-357 Ticket #1001002 Move the Menu to be a Portlet / fix swing client not working
This commit is contained in:
parent
1f69ebcae5
commit
572ed48efe
|
@ -72,6 +72,7 @@ Import-Package: javax.net.ssl,
|
||||||
org.apache.ecs,
|
org.apache.ecs,
|
||||||
org.apache.ecs.xhtml,
|
org.apache.ecs.xhtml,
|
||||||
org.apache.poi.hssf.usermodel,
|
org.apache.poi.hssf.usermodel,
|
||||||
|
org.compiere.css,
|
||||||
org.eclipse.core.runtime;version="3.4.0",
|
org.eclipse.core.runtime;version="3.4.0",
|
||||||
org.eclipse.equinox.app,
|
org.eclipse.equinox.app,
|
||||||
org.osgi.framework;version="1.5.0",
|
org.osgi.framework;version="1.5.0",
|
||||||
|
|
|
@ -111,7 +111,7 @@ public class HtmlDashboard extends JPanel implements MouseListener,
|
||||||
|
|
||||||
// READ CSS
|
// READ CSS
|
||||||
URL url = getClass().getClassLoader().
|
URL url = getClass().getClassLoader().
|
||||||
getResource("org/compiere/images/PAPanel.css");
|
getResource("org/compiere/css/PAPanel.css");
|
||||||
InputStreamReader ins;
|
InputStreamReader ins;
|
||||||
try {
|
try {
|
||||||
ins = new InputStreamReader(url.openStream());
|
ins = new InputStreamReader(url.openStream());
|
||||||
|
|
|
@ -10,6 +10,7 @@ Import-Package: javax.servlet,
|
||||||
org.apache.commons.codec.binary,
|
org.apache.commons.codec.binary,
|
||||||
org.apache.ecs,
|
org.apache.ecs,
|
||||||
org.apache.ecs.xhtml,
|
org.apache.ecs.xhtml,
|
||||||
|
org.compiere.css,
|
||||||
org.osgi.framework;version="1.5.0",
|
org.osgi.framework;version="1.5.0",
|
||||||
org.slf4j;version="1.6.1",
|
org.slf4j;version="1.6.1",
|
||||||
org.slf4j.helpers;version="1.6.1",
|
org.slf4j.helpers;version="1.6.1",
|
||||||
|
|
|
@ -181,7 +181,7 @@ public class DashboardController implements EventListener<Event> {
|
||||||
{
|
{
|
||||||
StringBuilder result = new StringBuilder("<html><head>");
|
StringBuilder result = new StringBuilder("<html><head>");
|
||||||
|
|
||||||
URL url = getClass().getClassLoader().getResource("org/compiere/images/PAPanel.css");
|
URL url = getClass().getClassLoader().getResource("org/compiere/css/PAPanel.css");
|
||||||
InputStreamReader ins;
|
InputStreamReader ins;
|
||||||
try {
|
try {
|
||||||
ins = new InputStreamReader(url.openStream());
|
ins = new InputStreamReader(url.openStream());
|
||||||
|
|
|
@ -10,7 +10,7 @@ Export-Package: org.compiere.apps,
|
||||||
org.compiere.apps.wf,
|
org.compiere.apps.wf,
|
||||||
org.compiere.grid,
|
org.compiere.grid,
|
||||||
org.compiere.grid.ed,
|
org.compiere.grid.ed,
|
||||||
org.compiere.images,
|
org.compiere.css,
|
||||||
org.compiere.install,
|
org.compiere.install,
|
||||||
org.compiere.minigrid,
|
org.compiere.minigrid,
|
||||||
org.compiere.print,
|
org.compiere.print,
|
||||||
|
|
Loading…
Reference in New Issue