-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed base index.html to a redirect into the version/index.html (#4852
- Loading branch information
Showing
3 changed files
with
133 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<redirectPage> | ||
<div class="isisNavigationBar"> | ||
<table> | ||
<tr> | ||
<td><img src="assets/banners/banner.jpg" width="600" height="106" alt="[USGS Banner]" border="0" usemap="#bannermap"/> | ||
<map name="bannermap" id="bannermap"> | ||
<area shape="rect" target="_top" alt="Visit the USGS Home Page" coords="2,1,186,73" href="http://www.usgs.gov" | ||
title="Visit the USGS Home Page"/> | ||
<area shape="rect" target="_top" alt="Go to the Astrogeology Research Program Home Page" coords="2,75,249,102" | ||
href="http://astrogeology.usgs.gov" title="Go to the Astrogeology Research Program Home Page"/> | ||
<area shape="default" alt="USGS" nohref="nohref"/> | ||
</map> | ||
</td> | ||
</tr> | ||
</table> | ||
</div> | ||
|
||
<meta http-equiv="refresh" content="0; url='7.0.0/index.html'" /> | ||
|
||
<p>You were not rediected to the new home for ISIS documentation. Please follow: <a href="'7.0.0/index.html'">this link</a>.</p> | ||
|
||
</redirectPage> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<xsl:stylesheet version="1.0" | ||
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | ||
xmlns:fo="http://www.w3.org/1999/XSL/Format" | ||
exclude-result-prefixes="xmlns fo"> | ||
|
||
<!-- | ||
This stylesheet will be used to generate the top level index page which redirects to the current public release docs | ||
Author | ||
Deborah Lee Soltesz | ||
04/15/2003 | ||
Updated to be just a redirect page | ||
03/15/2022 | ||
--> | ||
|
||
<xsl:include href="menu.xsl"/> | ||
|
||
<xsl:output | ||
media-type="text/html" | ||
doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN" | ||
doctype-system="http://www.w3.org/TR/html4/loose.dtd" | ||
indent="yes" | ||
encoding="utf-8" | ||
omit-xml-declaration="yes"> | ||
<xsl:template match="/"> | ||
<xsl:apply-templates select="//redirectPage" /> | ||
</xsl:template> | ||
</xsl:output> | ||
|
||
<xsl:template match="//redirectPage"> | ||
<html> | ||
<head> | ||
<title>USGS Isis: Planetary Image Processing Software</title> | ||
<meta name="keywords" content="Isis, image processing, software, open source, remote sensing, planetary science, astrogeology"/> | ||
<!-- need ratings tag --> | ||
<meta name="description" content="Integrated Software for Imagers and Spectrometers (ISIS), created and managed by the USGS Astrogeology Research Program. ISIS provides a comprehensive, user-friendly, portable tool for processing, analyzing, and displaying remotely sensed image data."/> | ||
<meta name="publisher" content="USGS - GD - Astrogeology Program"/> | ||
<meta name="author" content="Deborah Lee Soltesz, [email protected]"/> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | ||
<meta name="country" content="USA"/> | ||
<meta name="state" content="AZ"/> | ||
<meta name="county" content="Coconino"/> | ||
<meta name="city" content="Flagstaff"/> | ||
<meta name="zip" content="86001"/> | ||
|
||
<link rel="stylesheet" href="assets/styles/IsisStyleCommon.css"/> | ||
<link rel="stylesheet" href="assets/styles/main.css"/> | ||
<link rel="stylesheet" href="assets/styles/menu.css"/> | ||
<link rel="stylesheet" media="print" href="assets/styles/print.css"/> | ||
|
||
<script type="text/javascript" src="assets/scripts/homepage.js"></script> | ||
<!-- Dynamic analytics insertion to prevent running on local URLs --> | ||
<xsl:text>
</xsl:text> | ||
<script type="text/javascript"> | ||
//<xsl:comment><![CDATA[ | ||
(function() { | ||
var usgsAnalytics = document.createElement('script'); | ||
usgsAnalytics.type = 'text/javascript'; | ||
usgsAnalytics.async = true; | ||
usgsAnalytics.src = 'http://www.usgs.gov/scripts/analytics/usgs-analytics.js'; | ||
if('http:' == document.location.protocol) { | ||
var s = document.getElementsByTagName('script')[0]; | ||
s.parentNode.insertBefore(usgsAnalytics, s); | ||
} | ||
})(); | ||
]]></xsl:comment> | ||
<xsl:text>
</xsl:text> | ||
</script> | ||
<!-- ** end PAGE HEADER needs these scripts ** --> | ||
|
||
</head> | ||
|
||
<body> | ||
|
||
<div class="isisMenu"> | ||
<xsl:call-template name="writeMenu"/> | ||
</div> | ||
|
||
<div class="isisContent"> | ||
<!--xsl:copy-of select="."/--> | ||
<xsl:apply-templates select="* | text()" mode="copyContents"/> | ||
</div> | ||
|
||
<!-- end of body --> | ||
</body> | ||
</html> | ||
|
||
</xsl:template> | ||
|
||
<xsl:template match="*" mode="copyContents"> | ||
<xsl:element name="{name()}" namespace="{namespace-uri()}"> | ||
<xsl:copy-of select="@*"/> | ||
<xsl:apply-templates mode="copyContents"/> | ||
</xsl:element> | ||
</xsl:template> | ||
|
||
<xsl:template match="text()" mode="copyContents"> | ||
<xsl:value-of select="."/> | ||
<xsl:apply-templates mode="copyContents"/> | ||
</xsl:template> | ||
|
||
</xsl:stylesheet> | ||
|