You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2013/06/08 14:29:16 UTC

svn commit: r1490969 - /ofbiz/site/index.html

Author: jleroux
Date: Sat Jun  8 12:29:16 2013
New Revision: 1490969

URL: http://svn.apache.org/r1490969
Log:
OK, we need to keep target="_blank" because IE <= 8 does not work w/o :/

Modified:
    ofbiz/site/index.html

Modified: ofbiz/site/index.html
URL: http://svn.apache.org/viewvc/ofbiz/site/index.html?rev=1490969&r1=1490968&r2=1490969&view=diff
==============================================================================
--- ofbiz/site/index.html (original)
+++ ofbiz/site/index.html Sat Jun  8 12:29:16 2013
@@ -209,8 +209,8 @@
             <ul class="sidemenu">
                 <li><a href="mailing-lists.html">Mailing Lists</a></li>
                 <li><a href="source-repositories.html">Source Repository (SVN)</a></li>
-                <li><a href="https://issues.apache.org/jira/browse/OFBIZ" rel="external">Issue Tracker (Jira)</a></li>
-                <li><a href="http://ci.apache.org/projects/ofbiz/site/javadocs/" rel="external">API Reference (Javadoc)</a></li>
+                <li><a href="https://issues.apache.org/jira/browse/OFBIZ" target="_blank">Issue Tracker (Jira)</a></li>
+                <li><a href="http://ci.apache.org/projects/ofbiz/site/javadocs/" target="_blank">API Reference (Javadoc)</a></li>
                 <!-- TODO: the format of the page is very old and some of the videos are unavailable: move the page to the Wiki and add the link to it to the documentation.html page
                 <li><a href="VideosConf.html">Conference Videos</a></li>
                 -->
@@ -229,9 +229,9 @@
             </ul>
             <h3>Apache Software Foundation</h3>
             <ul class="sidemenu">
-                <li><a href="http://www.apache.org/licenses/" rel="external">License</a></li>
-                <li><a href="http://www.apache.org/foundation/sponsorship.html" rel="external">Sponsorship</a></li>
-                <li><a href="http://www.apache.org/foundation/thanks.html" rel="external">Thanks</a></li>
+                <li><a href="http://www.apache.org/licenses/" target="_blank">License</a></li>
+                <li><a href="http://www.apache.org/foundation/sponsorship.html" target="_blank">Sponsorship</a></li>
+                <li><a href="http://www.apache.org/foundation/thanks.html" target="_blank">Thanks</a></li>
                 <li><a href="download.html#vulnerabilities">Security</a></li>
             </ul>
         </div>
@@ -247,21 +247,5 @@
       </div>
 </div>
 <!-- wrap ends here -->
-<script>
-function externalRel() {
-    var links = document.getElementsByTagName('a');
-    for(nb in links) {
-        var link = links[nb];
-    
-        if(link.getAttribute('rel') == 'external') {
-            link.setAttribute('target','_blank');
-        }
-    }
-}
-
-window.onload = function() {
-    externalRel();
-};
-</script>
 </body>
 </html>