index.html 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html SYSTEM "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>WebHelp</title>
  5. <meta HTTP-EQUIV="REFRESH" content="0; url=../../../"/>
  6. </head>
  7. <body>
  8. Current generated project :
  9. <!-- to be generated -->
  10. <div id="productInfo" style="display:none;">
  11. <span id="oxy_productid">@PRODUCT_ID@</span>
  12. <span id="oxy_productVersion">@PRODUCT_VERSION@</span>
  13. </div>
  14. <!-- /to be generated -->
  15. <script type="text/javascript">
  16. var pageSearch = window.location.href;
  17. var pageWSearch = pageSearch.replace(window.location.search,"");
  18. pageWSearch = pageWSearch.replace(window.location.hash,"");
  19. var url=pageWSearch.split("/");
  20. var newUrl="";
  21. for ( var i = 0; i < url.length; i++) {
  22. if (url[i]=='oxygen-webhelp'){
  23. break;
  24. }else{
  25. newUrl=newUrl+url[i]+"/";
  26. }
  27. }
  28. document.location=newUrl;
  29. </script>
  30. </body>
  31. </html>