[ 
https://issues.apache.org/jira/browse/AMQ-2936?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Robert Liguori updated AMQ-2936:
--------------------------------

    Description: 
In regards to the file 5.4.0 ActiveMQ file, the below refinements need to be 
made to able able to successfully invoke the index.html relative to it's file 
system tree location, in order for the HTML to rendered as intended; 
C:\apache-activemq-5.4.0-bin\apache-activemq-5.4.0\webapps\index.html

Refinements needed:

(1)
Line 78 (P needs to be p):
Replace:  <div id="site-quicklinks"><P> 
with: <div id="site-quicklinks"><p>

(2)
Lines 31-34  (needs to be relative paths):
Replace
   @import url(/admin/styles/sorttable.css);
   @import url(/admin/styles/type-settings.css);
   @import url(/admin/styles/site.css);
   @import url(/admin/styles/prettify.css);
with
   @import url(admin/styles/sorttable.css);
   @import url(admin/styles/type-settings.css);
   @import url(admin/styles/site.css);
   @import url(admin/styles/prettify.css);

(3)
Lines 92-95 (needs to be relative paths):  
Replace:
<li><a title="Manage ActiveMQ broker" href="/admin/">Manage ActiveMQ 
broker</a></li> 
<li><a title="Manage Camel instance" href="/camel/">Manage Camel 
instance</a></li> 
<li><a title="See some Web demos" href="/demo/">See some Web demos</a></li>     
                           
with:
<li><a title="Manage ActiveMQ broker" href="admin/">Manage ActiveMQ 
broker</a></li> 
<li><a title="Manage Camel instance" href="camel/">Manage Camel 
instance</a></li> 
<li><a title="See some Web demos" href="demo/">See some Web demos</a></li>  

(4)
Line 23 (<h3></h3>)
Remove:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> 

(5)
'printable version' is not working.  This needs to be fixed.

(6)
Apply formatting.

Note: Please do not take this changes for granted... they need to be analyzed 
and further tested.

  was:

In regards to the file 5.4.0 ActiveMQ file, the below refinements need to be 
made to able able to successfully invoke the index.html relative to it's file 
system tree location, in order for the HTML to rendered as intended; 
C:\apache-activemq-5.4.0-bin\apache-activemq-5.4.0\webapps\index.html

Refinements needed:

(1)
Line 78 (P needs to be p):
Replace:  <div id="site-quicklinks"><P> 
with: <div id="site-quicklinks"><p>

(2)
Lines 31-34  (needs to be relative paths):
Replace
   @import url(/admin/styles/sorttable.css);
   @import url(/admin/styles/type-settings.css);
   @import url(/admin/styles/site.css);
   @import url(/admin/styles/prettify.css);
with
   @import url(admin/styles/sorttable.css);
   @import url(admin/styles/type-settings.css);
   @import url(admin/styles/site.css);
   @import url(admin/styles/prettify.css);

(3)
Lines 92-95 (needs to be relative paths):  
Replace:
<li><a title="Manage ActiveMQ broker" href="/admin/">Manage ActiveMQ 
broker</a></li> 
<li><a title="Manage Camel instance" href="/camel/">Manage Camel 
instance</a></li> 
<li><a title="See some Web demos" href="/demo/">See some Web demos</a></li>     
                           
with:
<li><a title="Manage ActiveMQ broker" href="admin/">Manage ActiveMQ 
broker</a></li> 
<li><a title="Manage Camel instance" href="camel/">Manage Camel 
instance</a></li> 
<li><a title="See some Web demos" href="demo/">See some Web demos</a></li>  

(4)
Line 23 (<h3></h3>)
Remove:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> 

(5)
'printable version' is not working.  This needs to be fixed.

(6)
Apply formatting.

Note: Please do not take this changes for granted... they need to be analyzed 
and further tested.

       Priority: Trivial  (was: Major)

> ActiveMQ's webapps based index.html file needs refinements.
> -----------------------------------------------------------
>
>                 Key: AMQ-2936
>                 URL: https://issues.apache.org/jira/browse/AMQ-2936
>             Project: ActiveMQ
>          Issue Type: Bug
>    Affects Versions: 5.4.0
>            Reporter: Robert Liguori
>            Priority: Trivial
>   Original Estimate: 2h
>  Remaining Estimate: 2h
>
> In regards to the file 5.4.0 ActiveMQ file, the below refinements need to be 
> made to able able to successfully invoke the index.html relative to it's file 
> system tree location, in order for the HTML to rendered as intended; 
> C:\apache-activemq-5.4.0-bin\apache-activemq-5.4.0\webapps\index.html
> Refinements needed:
> (1)
> Line 78 (P needs to be p):
> Replace:  <div id="site-quicklinks"><P> 
> with: <div id="site-quicklinks"><p>
> (2)
> Lines 31-34  (needs to be relative paths):
> Replace
>    @import url(/admin/styles/sorttable.css);
>    @import url(/admin/styles/type-settings.css);
>    @import url(/admin/styles/site.css);
>    @import url(/admin/styles/prettify.css);
> with
>    @import url(admin/styles/sorttable.css);
>    @import url(admin/styles/type-settings.css);
>    @import url(admin/styles/site.css);
>    @import url(admin/styles/prettify.css);
> (3)
> Lines 92-95 (needs to be relative paths):  
> Replace:
> <li><a title="Manage ActiveMQ broker" href="/admin/">Manage ActiveMQ 
> broker</a></li> 
> <li><a title="Manage Camel instance" href="/camel/">Manage Camel 
> instance</a></li> 
> <li><a title="See some Web demos" href="/demo/">See some Web demos</a></li>   
>                              
> with:
> <li><a title="Manage ActiveMQ broker" href="admin/">Manage ActiveMQ 
> broker</a></li> 
> <li><a title="Manage Camel instance" href="camel/">Manage Camel 
> instance</a></li> 
> <li><a title="See some Web demos" href="demo/">See some Web demos</a></li>  
> (4)
> Line 23 (<h3></h3>)
> Remove:
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> 
> (5)
> 'printable version' is not working.  This needs to be fixed.
> (6)
> Apply formatting.
> Note: Please do not take this changes for granted... they need to be analyzed 
> and further tested.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to