You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oozie.apache.org by "Hadoop QA (JIRA)" <ji...@apache.org> on 2011/09/08 06:13:09 UTC

[jira] [Commented] (OOZIE-50) GH-4: Oozie console references the RowExpander.js file from an incorrect path.

    [ https://issues.apache.org/jira/browse/OOZIE-50?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13099752#comment-13099752 ] 

Hadoop QA commented on OOZIE-50:
--------------------------------

There are two ways of fixing this - (1) modify the install script to move the RowExpander.js to the root of the ext-2.2 directory; or (2), update index.html to reference the path from the examples/grid directory.

This patch uses the second approach:


    diff --git webapp/src/main/webapp/index.html webapp/src/main/webapp/index.html
    index 42ddd42..1512754 100644
    --- webapp/src/main/webapp/index.html
    +++ webapp/src/main/webapp/index.html
    @@ -7,7 +7,7 @@
         <!-- LIBS -->
         <script type="text/javascript" src="ext-2.2/adapter/ext/ext-base.js"></script>
         <script type="text/javascript" src="ext-2.2/ext-all.js"></script>
    -    <script type="text/javascript" src="ext-2.2/RowExpander.js"></script>
    +    <script type="text/javascript" src="ext-2.2/examples/grid/RowExpander.js"></script>
         <script type="text/javascript" src="json2.js"></script>
         <script type="text/javascript" src="oozie-console.js"></script>
     </head>

> GH-4: Oozie console references the RowExpander.js file from an incorrect path.
> ------------------------------------------------------------------------------
>
>                 Key: OOZIE-50
>                 URL: https://issues.apache.org/jira/browse/OOZIE-50
>             Project: Oozie
>          Issue Type: Bug
>            Reporter: Hadoop QA
>
> The index.html file that launches oozie console references the RowExpander.js file from "ext-2.2/RowExpander.js". The correct location of this file however is "ext-2.2/examples/grid/RowExpander.js".
> This causes the console to not show up correctly.

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