This function extends the standard CSS url() function by allowing you
to specify additional relative path components (parameters loc_1 to
loc_n).
Oxygen XML Author Eclipse plugin uses all these parameters to construct an absolute location. Note that any of the parameters that are passed to the function can be either relative or absolute locations. These locations can be expressed as String objects, functions, or editor variables (built-in or custom).
Examples: oxy_url Function
oxy_url('http://www.oxygenxml.com/css/test.css', '../dir1/',
'dir2/dir3/', '../../dir4/dir5/test.xml')and
returns:'http://www.oxygenxml.com/dir1/dir4/dir5/test.xml'image[href]{
content:oxy_url(oxy_base-uri(), oxy_replace(attr(href),
'.jpeg', 'Thumbnail.jpeg'));
}image[href] {
content: oxy_url('${oxygenHome}', 'logo.png');
}