diff --git a/jenkins_build b/jenkins_build
index 83c7af6aa..a87a91935 100755
--- a/jenkins_build
+++ b/jenkins_build
@@ -40,7 +40,6 @@ if test "${job_name}" = "master branch"; then
cd ../../..
- ( cd www; cp -rf * /isis/www/nexus_main )
( cd www/download.nexusformat.org; cp -rf * /isis/www/nexus )
( cd impatient-guide && cp -f _build/latex/NXImpatient.pdf /isis/www/nexus/doc/NXImpatient.pdf && rm -rf /isis/www/nexus/doc/impatient && cp -rf _build/html /isis/www/nexus/doc/impatient )
diff --git a/www/dropshadow.css b/www/dropshadow.css
deleted file mode 100644
index 546bd5d0d..000000000
--- a/www/dropshadow.css
+++ /dev/null
@@ -1,174 +0,0 @@
-/* http://nicolasgallagher.com/css-drop-shadows-without-images */
-
-.drop-shadow {
- position:relative;
- float:left;
- background:#fff;
- -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
- -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
- box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
-}
-
-.drop-shadow:before,
-.drop-shadow:after {
- content:"";
- position:absolute;
- z-index:-2;
-}
-
-/* Lifted corners */
-
-.lifted {
- -moz-border-radius:4px;
- border-radius:4px;
-}
-
-.lifted:before,
-.lifted:after {
- bottom:15px;
- left:10px;
- -webkit-box-shadow:0 15px 10px rgba(0, 0, 0, 0.7);
- -moz-box-shadow:0 15px 10px rgba(0, 0, 0, 0.7);
- box-shadow:0 15px 10px rgba(0, 0, 0, 0.7);
- -webkit-transform:rotate(-3deg);
- -moz-transform:rotate(-3deg);
- -ms-transform:rotate(-3deg);
- -o-transform:rotate(-3deg);
- transform:rotate(-3deg);
-}
-
-.lifted:after {
- right:10px;
- left:auto;
- -webkit-transform:rotate(3deg);
- -moz-transform:rotate(3deg);
- -ms-transform:rotate(3deg);
- -o-transform:rotate(3deg);
- transform:rotate(3deg);
-}
-
-/* Curled corners */
-
-.curled {
- border:1px solid #efefef;
- -moz-border-radius:0 0 120px 120px / 0 0 6px 6px;
- border-radius:0 0 120px 120px / 0 0 6px 6px;
-}
-
-.curled:before,
-.curled:after {
- bottom:12px;
- left:10px;
- -webkit-box-shadow:0 8px 12px rgba(0, 0, 0, 0.5);
- -moz-box-shadow:0 8px 12px rgba(0, 0, 0, 0.5);
- box-shadow:0 8px 12px rgba(0, 0, 0, 0.5);
- -webkit-transform:skew(-8deg) rotate(-3deg);
- -moz-transform:skew(-8deg) rotate(-3deg);
- -ms-transform:skew(-8deg) rotate(-3deg);
- -o-transform:skew(-8deg) rotate(-3deg);
- transform:skew(-8deg) rotate(-3deg);
-}
-
-.curled:after {
- right:10px;
- left:auto;
- -webkit-transform:skew(8deg) rotate(3deg);
- -moz-transform:skew(8deg) rotate(3deg);
- -ms-transform:skew(8deg) rotate(3deg);
- -o-transform:skew(8deg) rotate(3deg);
- transform:skew(8deg) rotate(3deg);
-}
-
-/* Perspective */
-
-.perspective:before {
- left:80px;
- bottom:5px;
- -webkit-box-shadow:-80px 0 8px rgba(0, 0, 0, 0.4);
- -moz-box-shadow:-80px 0 8px rgba(0, 0, 0, 0.4);
- box-shadow:-80px 0 8px rgba(0, 0, 0, 0.4);
- -webkit-transform:skew(50deg);
- -moz-transform:skew(50deg);
- -ms-transform:skew(50deg);
- -o-transform:skew(50deg);
- transform:skew(50deg);
- -webkit-transform-origin:0 100%;
- -moz-transform-origin:0 100%;
- -ms-transform-origin:0 100%;
- -o-transform-origin:0 100%;
- transform-origin:0 100%;
-}
-
-.perspective:after {
- display:none;
-}
-
-/* Raised shadow - no pseudo-elements needed */
-
-.raised {
- -webkit-box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
- -moz-box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
- box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
-}
-
-/* Curved shadows */
-
-.curved:before {
- top:10px;
- bottom:10px;
- left:0;
- -webkit-box-shadow:0 0 15px rgba(0,0,0,0.6);
- -moz-box-shadow:0 0 15px rgba(0,0,0,0.6);
- box-shadow:0 0 15px rgba(0,0,0,0.6);
- -moz-border-radius:10px / 100px;
- border-radius:10px / 100px;
-}
-
-.curved-vt-2:before {
- right:0;
-}
-
-.curved-hz-1:before {
- bottom:0;
- left:10px;
- right:10px;
- -moz-border-radius:100px / 10px;
- border-radius:100px / 10px;
-}
-
-.curved-hz-2:before {
- top:0;
- bottom:0;
- left:10px;
- right:10px;
- -moz-border-radius:100px / 10px;
- border-radius:100px / 10px;
-}
-
-/* Rotated box */
-
-.rotated {
- -webkit-box-shadow:none;
- -moz-box-shadow:none;
- box-shadow:none;
- -webkit-transform:rotate(-3deg);
- -moz-transform:rotate(-3deg);
- -ms-transform:rotate(-3deg);
- -o-transform:rotate(-3deg);
- transform:rotate(-3deg);
-}
-
-.rotated > :first-child:before {
- content:"";
- position:absolute;
- z-index:-1;
- top:0;
- bottom:0;
- left:0;
- right:0;
- background:#fff;
- -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
- -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
- box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
-}
-
diff --git a/www/favicon.ico b/www/favicon.ico
deleted file mode 100644
index 064181b36..000000000
Binary files a/www/favicon.ico and /dev/null differ
diff --git a/www/index.html b/www/index.html
deleted file mode 100755
index 0c7d64179..000000000
--- a/www/index.html
+++ /dev/null
@@ -1,84 +0,0 @@
-
-
-
-
- NeXus Scientific Data Format
-
-
-
-
-
-
-
-
-
-
- NeXus is developed as an international standard by scientists
- and programmers representing major scientific facilities in Europe,
- Asia, Australia, and North America in order to facilitate greater
- cooperation in the analysis and visualization of
- neutron, x-ray, and muon data.
-
-
-
-
-
-
-
diff --git a/www/site-nav.xml b/www/site-nav.xml
deleted file mode 100755
index ef70fb719..000000000
--- a/www/site-nav.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
diff --git a/www/site.css b/www/site.css
deleted file mode 100755
index 5fbf56994..000000000
--- a/www/site.css
+++ /dev/null
@@ -1,217 +0,0 @@
-
-html{
- /* Choose font and color */
- font-family:Arial,Verdana,sans-serif;
- color:#333;
-
- /* height:101%; */ /* Force scroll bar */
- /* Fluid width with minimum/maximum */
- width: 100%;
- min-width: 40em;
- max-width: 70em;
- margin:0 auto;
- padding: 0;
- /* Set background colour outside the width */
- background:#F9F0DA;
-}
-body{
- /* Set page color to white */
- background:#FFFFFF;
- /* Leave a bit of margin around the page so drop shadows are visible */
- margin: 0.5em 0.75em;
-}
-
-/* Indent page content relative to headers/footers */
-#content {
- margin: 1.25em;
-}
-
-/* Crop the NeXus logo */
-#logo {
- overflow: hidden;
- position: absolute;
-}
-#logo img{
- margin: -20px 0px -2px -2px;
-}
-
-/* Position the byline relative to the logo */
-#gloss{
- position: absolute;
- font-style: italic;
- font-size: 16pt;
- top: 23px;
- left: 150px;
-}
-
-/* Header height comes from logo height */
-#header{
- height: 74px;
-
- /* http://www.colorzilla.com/gradient-editor/ */
- background: #e1ecf7; /* Old browsers */
- background: -moz-linear-gradient(top, #e1ecf7 0%, #ffffff 100%); /* FF3.6+ */
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e1ecf7), color-stop(100%,#f4f4f4)); /* Chrome,Safari4+ */
- background: -webkit-linear-gradient(top, #e1ecf7 0%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
- background: -o-linear-gradient(top, #e1ecf7 0%,#ffffff 100%); /* Opera 11.10+ */
- background: -ms-linear-gradient(top, #e1ecf7 0%,#ffffff 100%); /* IE10+ */
- background: linear-gradient(top, #e1ecf7 0%,#ffffff 100%); /* W3C */
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e1ecf7', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
-}
-
-/*------------------------------------------------------------------*\
- Drop down menus
- http://csswizardry.com/2011/02/creating-a-pure-css-dropdown-menu/
-\*------------------------------------------------------------------*/
-
-.menu-bar{
- position:relative;
- float:right;
- display:inline;
-}
-.menu-bar ul {
- padding: 0;
- margin: 0;
-}
-
-.menu{
- list-style:none;
- font-weight:bold;
- /* Clear floats */
- float:left;
- z-index:5;
-}
-.menu li{
- float:left;
- margin-left:10px;
- position:relative;
-}
-.menu a{
- display:block;
- padding:0 5px;
- color:#fff;
- background:#333;
- text-decoration:none;
-}
-.menu a:hover{
- color:#fff;
- background:#6b0c36;
- text-decoration:none; /* underline */
-}
-
-/*--- DROPDOWN ---*/
-.menu ul {
-
- background:#fff; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
- background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
- list-style:none;
- position:absolute;
- left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
-}
-.menu ul li{
- padding-top:1px; /* Introducing a padding between the li and the a give the illusion spaced items */
- float:none;
-}
-.menu ul a{
- white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
-}
-.menu li:hover ul{ /* Display the dropdown on hover */
- left: 0; /* Bring back on-screen when needed */
-}
-.menu li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
- background:#6b0c36;
- text-decoration:none; /* underline */
-}
-.menu li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
- text-decoration:none;
-}
-.menu li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
- background:#333;
-}
-
-
-
-
-
-/* Launch menu: two column list mode */
-
-/* Make sure the two column mode has the correct div height */
-#launch-menu:after {
- content:".";
- display: block;
- height: 0;
- clear: both;
- visibility: hidden;
-}
-/* IE needs the following */
-#launch-menu { display: inline-block; _height: 1%; }
-#launch-menu { display: block; }
-
-
-/* Set link fonts and colors */
-#launch-menu dt {
- margin-top: 1ex;
- color: #309;
- font-size: 2.2em;
- font-style: italic;
- font-weight: bold;
-}
-#launch-menu dd {
- color: #44d;
- font-size: 1.2em;
- margin: 0pt;
-}
-
-#launch-menu dt A { color: #309; }
-#launch-menu dt A:visited { color: #309; }
-#launch-menu dt A:active { color: #309; }
-#launch-menu dt A:line { color: #309; }
-#launch-menu dt A:hover { color: #6b0c36; }
-
-#launch-menu dd A { color: #44d; }
-#launch-menu dd A:visited { color: #44d; }
-#launch-menu dd A:active { color: #44d; }
-#launch-menu dd A:line { color: #44d; }
-#launch-menu dd A:hover { color: #6b0c36; }
-
-
-A { text-decoration: none; }
-A:hover { text-decoration: underline; color: #6b0c36; }
-
-/* Columns are equal width. */
-#launch-left {
- float:left;
- width:50%;
-}
-#launch-right {
- float:right;
- width:50%;
-}
-
-
-/* Text style for docbook "Chapter - Section" indicators */
-#docbook-footer p {
- font-weight: bold;
- padding: 0;
- margin: 0;
-}
-#docbook-header p {
- font-weight: bold;
- padding: 0;
- margin: 0;
-}
-
-/* Left - centered - right for headers and footers.
- Note: must encode in html as left - right - centered.
-*/
-.left{
-text-align:left;
-float:left;
-}
-.right{
-float:right;
-text-align:right;
-}
-.centered{
-text-align:center;
-}