svn commit: r1859268 - /ofbiz/ofbiz-framework/trunk/themes/common-theme/webapp/images/humanres/humanres.css

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r1859268 - /ofbiz/ofbiz-framework/trunk/themes/common-theme/webapp/images/humanres/humanres.css

jleroux@apache.org
Author: jleroux
Date: Wed May 15 06:17:03 2019
New Revision: 1859268

URL: http://svn.apache.org/viewvc?rev=1859268&view=rev
Log:
Fixed: Unknown request [images]; this request does not exist or cannot be
called directly.
(OFBIZ-10895)

This error happens in many occasions.
It shows only in log and have no effect on UI.
It happens in all supported releases.
So it's not very bad since it's has no side effects.

As said Deepak Dixit:
I think we need to fix the image url in css file, it should start with /images,
else browser append this in request info. There is nothing related to java or
tomcat code.

This is a commit in HR (fix previous one at r1859263)

Modified:
    ofbiz/ofbiz-framework/trunk/themes/common-theme/webapp/images/humanres/humanres.css

Modified: ofbiz/ofbiz-framework/trunk/themes/common-theme/webapp/images/humanres/humanres.css
URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/themes/common-theme/webapp/images/humanres/humanres.css?rev=1859268&r1=1859267&r2=1859268&view=diff
==============================================================================
--- ofbiz/ofbiz-framework/trunk/themes/common-theme/webapp/images/humanres/humanres.css (original)
+++ ofbiz/ofbiz-framework/trunk/themes/common-theme/webapp/images/humanres/humanres.css Wed May 15 06:17:03 2019
@@ -20,20 +20,20 @@
 /* THE CUSTOM CSS FOR AJUST THE HR TREE */
 .jstree-0 li[rel="Y"] > a > .jstree-icon {
     background-position: 0px 0px !important;
-    background-image:url("\images\Drawer_Closed.png");
+    background-image:url("/images/humanres/Drawer_Closed.png");
 }
 
 .jstree-0 li[rel="N"] > a > .jstree-icon {
     background-position: 0px 0px !important;
-    background-image:url(""\Users.png");
+    background-image:url("/images/humanres/Users.png");
 }
 
 .jstree-0 li[rel="P"] > a > .jstree-icon {
     background-position: 0px 0px !important;
-    background-image:url("\images\User.png");
+    background-image:url("/images/humanres/User.png");
 }
 
 .jstree-0 li[rel="C"] > a > .jstree-icon {
     background-position: 0px 0px !important;
-    background-image:url("\images\Home.png");
+    background-image:url("/images/humanres/Home.png");
 }
\ No newline at end of file