Project

General

Profile

« Previous | Next » 

Revision 6742

Added by Jing Tao over 12 years ago

Remove header2, footer2 and left-nav2 files.

View differences:

lib/style/skins/sanparks/header2.jsp
1
<%@ page language="java"%>
2
<%
3
	 /*
4
	 '$RCSfile$'
5
	 Copyright: 2003 Regents of the University of California and the
6
	 National Center for Ecological Analysis and Synthesis
7
	 '$Author: leinfelder $'
8
	 '$Date: 2008-06-10 10:18:06 -0700 (Tue, 10 Jun 2008) $'
9
	 '$Revision: 3966 $'
10
	
11
	 This program is free software; you can redistribute it and/or modify
12
	 it under the terms of the GNU General Public License as published by
13
	 the Free Software Foundation; either version 2 of the License, or
14
	 (at your option) any later version.
15
	
16
	 This program is distributed in the hope that it will be useful,
17
	 but WITHOUT ANY WARRANTY; without even the implied warranty of
18
	 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19
	 GNU General Public License for more details.
20
	
21
	 You should have received a copy of the GNU General Public License
22
	 along with this program; if not, write to the Free Software
23
	 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24
	 */
25
%>
26
<%@ include file="settings.jsp"%>
27
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
28
<html>
29
<head>
30
	<title>SANParks - South African National Park Data Repository</title>
31
	<!-- This file is meant to be included in a parent file, so link css stylesheet there. -->
32
</head>
33

  
34
<body>
35
<!--  div class="header-div" -->
36
<table class="header-section" cellpadding="0" cellspacing="0" border="0">
37
	<tr>
38
		<td><a href="http://www.SANParks.org/" title="SANParks.org Home"><img class="top-row-image" src="<%=STYLE_SKINS_URL%>/sanparks/images/logofade_top.jpg" alt="SANParks.org Home" /></a></td>	
39
		<td><img class="top-row-image" src="<%=STYLE_SKINS_URL%>/sanparks/images/sanparks_name.jpg" alt="SANParks.org Home" /></td>
40
		<td class="header-spacer"></td>
41
		<td><img class="top-row-image" src="<%=STYLE_SKINS_URL%>/sanparks/images/giraffe_top_left.jpg" alt="SANParks.org Home" /></td>
42
		<td><img class="top-row-image" src="<%=STYLE_SKINS_URL%>/sanparks/images/giraffe_top_right.jpg" alt="SANParks.org Home" /></td>
43
	</tr>
44
	<tr>
45
		<td><a href="http://www.SANParks.org/" title="SANParks.org Home"><img src="<%=STYLE_SKINS_URL%>/sanparks/images/logofade_bottom.jpg" alt="SANParks.org Home" /></a></td>
46
		<td colspan="3" class="header-menu">
47
			<a class="header-menu-first-item" href="./" target="_top" >Repository Home</a>
48
			<a class="header-menu-item" href="<%=CGI_URL%>/register-dataset.cgi?cfg=sanparks" target="_top" >Register Data</a>
49

  
50
<%
51
			if(request.getRequestURI().endsWith("searchWorkflowRun.jsp")) {
52
%>
53
				<span class="header-menu-item">TPC Status</span>	
54
<%
55
			} else {
56
%>
57
				<a class="header-menu-item" href="<%=STYLE_SKINS_URL%>/sanparks/searchWorkflowRun.jsp">TPC Status</a>
58
<%
59
			}
60

  
61
 
62
			if(request.getRequestURI().endsWith("searchWorkflow.jsp")) {
63
%>
64
				<span class="header-menu-item">TPC Workflows</span>	
65
<%
66
			} else {
67
%>
68
				<a class="header-menu-item" href="<%=STYLE_SKINS_URL%>/sanparks/searchWorkflow.jsp">TPC Workflows</a>
69
<%
70
			}
71
%> 
72
					
73
		</td>
74
		<td><img src='<%=STYLE_SKINS_URL%>/sanparks/images/giraffe_bottom_right.jpg' alt='Giraffe' /></td>
75
	</tr>
76
</table>
77
<!--  /div -->
78
</body>
79
</html>
80 0

  
lib/style/skins/sanparks/footer2.css
1
 /*
2
  *   '$RCSfile$'
3
  *     Purpose: Default style sheet for KNB project web pages 
4
  *              Using this stylesheet rather than placing styles directly in 
5
  *              the KNB web documents allows us to globally change the 
6
  *              formatting styles of the entire site in one easy place.
7
  *   Copyright: 2000 Regents of the University of California and the
8
  *               National Center for Ecological Analysis and Synthesis
9
  *     Authors: Matt Jones
10
  *
11
  *    '$Author: daigle $'
12
  *      '$Date: 2008-07-06 21:25:34 -0700 (Sun, 06 Jul 2008) $'
13
  *  '$Revision: 4080 $'
14
  *
15
  * This program is free software; you can redistribute it and/or modify
16
  * it under the terms of the GNU General Public License as published by
17
  * the Free Software Foundation; either version 2 of the License, or
18
  * (at your option) any later version.
19
  *
20
  * This program is distributed in the hope that it will be useful,
21
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23
  * GNU General Public License for more details.
24
  *
25
  * You should have received a copy of the GNU General Public License
26
  * along with this program; if not, write to the Free Software
27
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
28
  */
29

  
30
/********************************************************************** 
31
 * footer settings
32
 **********************************************************************/
33
 
34
.footer-section {
35
/*	margin: 0px 20px 0px 20px; */
36
/*	width: 95%; */
37
/*	min-width: 1050px; */
38
/*	height: 150px; */
39
	background: #124325;
40
	color: #FFFFFF;
41
}
42

  
43
.footer-link {
44
	color: #FFFFFF;
45
}
46

  
47
.footer-link:hover {
48
	color: #FFFFFF;
49
}
50

  
51
.footer-text {
52
	margin: 0px;
53
	padding: 5px 10px 0px 5px;
54
}
55 0

  
lib/style/skins/sanparks/footer2.jsp
1
<%@ page language="java"%>
2
<%
3
	 /*
4
	 '$RCSfile$'
5
	 Copyright: 2003 Regents of the University of California and the
6
	 National Center for Ecological Analysis and Synthesis
7
	 '$Author: leinfelder $'
8
	 '$Date: 2008-06-10 10:18:06 -0700 (Tue, 10 Jun 2008) $'
9
	 '$Revision: 3966 $'
10
	
11
	 This program is free software; you can redistribute it and/or modify
12
	 it under the terms of the GNU General Public License as published by
13
	 the Free Software Foundation; either version 2 of the License, or
14
	 (at your option) any later version.
15
	
16
	 This program is distributed in the hope that it will be useful,
17
	 but WITHOUT ANY WARRANTY; without even the implied warranty of
18
	 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19
	 GNU General Public License for more details.
20
	
21
	 You should have received a copy of the GNU General Public License
22
	 along with this program; if not, write to the Free Software
23
	 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24
	 */
25
%>
26
<%@ include file="settings.jsp"%>
27
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
28
    
29
<html>
30
<head>
31
	<title>footer</title>
32
		<!-- This file is meant to be included in a parent file, so link css stylesheet there. -->
33
</head>
34
<body>
35
	<div class="footer-section">
36
            <p class="footer-text">
37
                This project is a cooperative effort of the
38
                <a class="footer-link" href="http://www.sanparks.org/">South African National Parks (SANParks)</a> and the 
39
                <a class="footer-link" href="http://www.nceas.ucsb.edu">National Center for Ecological Analysis and Synthesis (NCEAS)</a>.
40
                The Data Repository is based on software developed by the 
41
                <a class="footer-link" href="http://knb.ecoinformatics.org">Knowledge Network for Biocomplexity (KNB)</a>,
42
                and houses metadata that are compliant with 
43
                <a class="footer-link" href="http://knb.ecoinformatics.org/software/eml/">Ecological Metadata Language (EML)</a>
44
                and the <a class="footer-link" href="http://www.fgdc.gov/metadata">Federal Geographic Data Committee (FGDC)</a> specification.
45
                Other sites contributing to the KNB repository include:
46
                <ul>
47
                    <li>
48
                        <a class="footer-link" href="http://knb.ecoinformatics.org/knb/obfs">Organization of Biological Field Stations registry</a>  
49
                    </li>
50
                    <li>
51
                        <a class="footer-link" href="http://knb.ecoinformatics.org/knb/style/skins/nrs">UC Natural Reserve System registry</a>  
52
                    </li>
53
                    <li>
54
                        <a class="footer-link" href="http://knb.ecoinformatics.org/knb/style/skins/nceas">NCEAS registry</a>  
55
                    </li>
56
                    <li>
57
                        <a class="footer-link" href="http://knb.ecoinformatics.org/knb/style/skins/specnet">SpecNet registry</a>  
58
                    </li>
59
                </ul>
60
            </p>
61
	</div>
62
</body>
63
</html>
64

  
65 0

  
lib/style/skins/sanparks/left-nav2.css
1
 /*
2
  *   '$RCSfile$'
3
  *     Purpose: Default style sheet for KNB project web pages 
4
  *              Using this stylesheet rather than placing styles directly in 
5
  *              the KNB web documents allows us to globally change the 
6
  *              formatting styles of the entire site in one easy place.
7
  *   Copyright: 2000 Regents of the University of California and the
8
  *               National Center for Ecological Analysis and Synthesis
9
  *     Authors: Matt Jones
10
  *
11
  *    '$Author: daigle $'
12
  *      '$Date: 2008-07-06 21:25:34 -0700 (Sun, 06 Jul 2008) $'
13
  *  '$Revision: 4080 $'
14
  *
15
  * This program is free software; you can redistribute it and/or modify
16
  * it under the terms of the GNU General Public License as published by
17
  * the Free Software Foundation; either version 2 of the License, or
18
  * (at your option) any later version.
19
  *
20
  * This program is distributed in the hope that it will be useful,
21
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23
  * GNU General Public License for more details.
24
  *
25
  * You should have received a copy of the GNU General Public License
26
  * along with this program; if not, write to the Free Software
27
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
28
  */
29

  
30
/********************************************************************** 
31
 * left nav settings
32
 **********************************************************************/
33

  
34
.left-nav-section {
35
/*	display: inline; */
36
/*	float: left; */
37
/*	margin-left: 20px; */
38
/*	height:  840px;  */
39
/*	width:    175px; */
40
/*	background: transparent url("images/navstrip.jpg") left 0px repeat-y; */
41
}
42

  
43
.left-nav-header {
44
	margin-left: 0px;
45
	height: 20px;
46
	width: 175px;	
47
	background: #124325;
48
}
49

  
50
.left-nav-header-item {
51
	color: #FFFFFF;
52
	text-decoration: none;
53
	font-weight: bold;
54
	font-size: 12px;
55
	text-align: center;
56
	padding-top: 3px;
57
}
58

  
59
.left-nav-menu-header {
60
	color: #FFFFFF;
61
	display: block;
62
	font-weight: bold;
63
	margin: 8px 5px 0px 8px;
64
	padding-bottom: 5px;
65
	text-decoration: none;
66
}
67

  
68
a.left-nav-menu-header:hover {
69
	color: #FF3300;
70
	text-decoration: underline;
71
}
72

  
73
a.left-nav-menu-item:hover {
74
	color: #FF3300;
75
	text-decoration: underline;
76
}
77

  
78
.left-nav-menu-line {
79
	border-bottom: 1px solid #0E321D;
80
	margin: 0px 7px 0px 7px;
81
}
82

  
83
.left-nav-menu-item {
84
	background: transparent url("images/horns.png") left 1px no-repeat !important;
85
	display: block;
86
	color: #FFFFFF;
87
	font-weight: normal;
88
	padding: 0px 5px 0px 15px;
89
	margin: 0px 0px 0px 8px;
90
}
91
	
92
.left-nav-menu-item:hover {
93
	background: transparent url("images/nav_bullets_orange.gif") left 1px no-repeat !important;
94
	color: #FF3300;
95
	text-decoration: underline;
96
}
97 0

  
lib/style/skins/sanparks/left-nav2.jsp
1
<%@ page language="java"%>
2
<%
3
	 /*
4
	 '$RCSfile$'
5
	 Copyright: 2003 Regents of the University of California and the
6
	 National Center for Ecological Analysis and Synthesis
7
	 '$Author: leinfelder $'
8
	 '$Date: 2008-06-10 10:18:06 -0700 (Tue, 10 Jun 2008) $'
9
	 '$Revision: 3966 $'
10
	
11
	 This program is free software; you can redistribute it and/or modify
12
	 it under the terms of the GNU General Public License as published by
13
	 the Free Software Foundation; either version 2 of the License, or
14
	 (at your option) any later version.
15
	
16
	 This program is distributed in the hope that it will be useful,
17
	 but WITHOUT ANY WARRANTY; without even the implied warranty of
18
	 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19
	 GNU General Public License for more details.
20
	
21
	 You should have received a copy of the GNU General Public License
22
	 along with this program; if not, write to the Free Software
23
	 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24
	 */
25
%>
26
<%@ include file="settings.jsp"%>
27
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
28
<html>
29
<head>
30
	<title>left nav</title>
31
	<!-- This file is meant to be included in a parent file, so link css stylesheet there. -->
32
</head>
33

  
34
<body>
35
	<div class="left-nav-header">
36
		<div class="left-nav-header-item">
37
				Parks A-Z
38
		</div>
39
	</div>
40
	<form action="<%=STYLE_SKINS_URL%>/sanparks/index.jsp" method="post" target="_top" name="orgForm">
41
        <input name="organizationScope" type="hidden" value="" />
42
        <table>
43
          <tr>
44
            <td>
45
              <div id="nav">
46
              <span class="home">
47
                <a href="#" onclick="orgForm.organizationScope.value='';orgForm.submit();">All</a>
48
              </span> 
49
              <ul class="level-1">
50
                <li>
51
                  <a href="#" onclick="orgForm.organizationScope.value='SANParks, South Africa';orgForm.submit();">SANParks</a>
52
                  <ul class="level-2">
53
                    <li><a href="#" onclick="orgForm.organizationScope.value='SANParks, South Africa';orgForm.submit();">All</a></li>
54
                    <li><a href="#" onclick="orgForm.organizationScope.value='Addo Elephant National Park, South Africa';orgForm.submit();">Addo Elephant National Park</a></li>
55
                    <li><a href="#" onclick="orgForm.organizationScope.value='Agulhas National Park, South Africa';orgForm.submit();">Agulhas National Park</a></li>
56
                    <li><a href="#" onclick="orgForm.organizationScope.value='Augrabies Falls National Park, South Africa';orgForm.submit();">Augrabies Falls National Park</a></li>
57
                    <li><a href="#" onclick="orgForm.organizationScope.value='Bontebok National Park, South Africa';orgForm.submit();">Bontebok National Park</a></li>
58
                    <li><a href="#" onclick="orgForm.organizationScope.value='Camdeboo National Park, South Africa';orgForm.submit();">Camdeboo National Park</a></li>
59
                    <li><a href="#" onclick="orgForm.organizationScope.value='Golden Gate Highlands National Park, South Africa';orgForm.submit();">Golden Gate Highlands National Park</a></li>
60
                    <li><a href="#" onclick="orgForm.organizationScope.value='Karoo National Park, South Africa';orgForm.submit();">Karoo National Park</a></li>
61
                    <li><a href="#" onclick="orgForm.organizationScope.value='Kgalagadi Transfrontier Park, South Africa';orgForm.submit();">Kgalagadi Transfrontier Park</a></li>
62
                    <li><a href="#" onclick="orgForm.organizationScope.value='Knysna National Lake Area, South Africa';orgForm.submit();">Knysna National Lake Area</a></li>
63
                    <li><a href="#" onclick="orgForm.organizationScope.value='Kruger National Park, South Africa';orgForm.submit();">Kruger National Park</a></li>
64
                    <li><a href="#" onclick="orgForm.organizationScope.value='Mapungubwe National Park, South Africa';orgForm.submit();">Mapungubwe National Park</a></li>
65
                    <li><a href="#" onclick="orgForm.organizationScope.value='Marakele National Park, South Africa';orgForm.submit();">Marakele National Park</a></li>
66
                    <li><a href="#" onclick="orgForm.organizationScope.value='Mokala National Park, South Africa';orgForm.submit();">Mokala National Park</a></li>
67
                    <li><a href="#" onclick="orgForm.organizationScope.value='Mountain Zebra National Park, South Africa';orgForm.submit();">Mountain Zebra National Park</a></li>
68
                    <li><a href="#" onclick="orgForm.organizationScope.value='Namaqua National Park, South Africa';orgForm.submit();">Namaqua National Park</a></li>
69
                    <!-- <li><a href="#" onclick="orgForm.organizationScope.value='Richtersveld National Park, South Africa';orgForm.submit();">Richtersveld National Park</a></li> -->
70
                    <li><a href="#" onclick="orgForm.organizationScope.value='Table Mountain National Park, South Africa';orgForm.submit();">Table Mountain National Park</a></li>
71
                    <li><a href="#" onclick="orgForm.organizationScope.value='Tankwa Karoo National Park, South Africa';orgForm.submit();">Tankwa Karoo National Park</a></li>
72
                    <li><a href="#" onclick="orgForm.organizationScope.value='Tsitsikamma National Park, South Africa';orgForm.submit();">Tsitsikamma National Park</a></li>
73
                    <li><a href="#" onclick="orgForm.organizationScope.value='West Coast National Park, South Africa';orgForm.submit();">West Coast National Park</a></li>
74
                    <li><a href="#" onclick="orgForm.organizationScope.value='Wilderness National Park, South Africa';orgForm.submit();">Wilderness National Park</a></li>
75
                    <li><a href="#" onclick="orgForm.organizationScope.value='Ai-|Ais/Richtersveld Transfrontier National Park, South Africa';orgForm.submit();">Ai-|Ais/Richtersveld Transfrontier National Park</a></li>
76
                  </ul>
77
                </li>
78
                <li>
79
                  <a href="#" onclick="orgForm.organizationScope.value='SAEON, South Africa';orgForm.submit();">SAEON</a>
80
                  <ul class="level-2">
81
                    <li><a href="#" onclick="orgForm.organizationScope.value='SAEON, South Africa';orgForm.submit();">All</a></li>
82
                    <li><a href="#" onclick="orgForm.organizationScope.value='Arid Zone SAEON Node, South Africa';orgForm.submit();">Arid Zone SAEON Node</a></li>
83
                    <li><a href="#" onclick="orgForm.organizationScope.value='Egagasini SAEON Node, South Africa';orgForm.submit();">Egagasini SAEON Node</a></li>
84
                    <li><a href="#" onclick="orgForm.organizationScope.value='Elwandle SAEON Node, South Africa';orgForm.submit();">Elwandle SAEON Node</a></li>
85
                    <li><a href="#" onclick="orgForm.organizationScope.value='Fynbos SAEON Node, South Africa';orgForm.submit();">Fynbos SAEON Node</a></li>
86
                    <li><a href="#" onclick="orgForm.organizationScope.value='Grassland, wetland and forests SAEON Node, South Africa';orgForm.submit();">Grassland, wetland and forests SAEON Node</a></li>
87
                    <li><a href="#" onclick="orgForm.organizationScope.value='Ndlovu SAEON Node, South Africa';orgForm.submit();">Ndlovu SAEON Node</a></li>
88
                  </ul>
89
                </li>
90
              </ul>   
91
              </div>
92
            </td>
93
          </tr>
94
        </table>      
95
      </form>
96
</body>
97

  
98
</html>
99
</div>
100
</body>
101
</html>
102 0

  
lib/style/skins/sanparks/header2.css
1
 /*
2
  *   '$RCSfile$'
3
  *     Purpose: Default style sheet for KNB project web pages 
4
  *              Using this stylesheet rather than placing styles directly in 
5
  *              the KNB web documents allows us to globally change the 
6
  *              formatting styles of the entire site in one easy place.
7
  *   Copyright: 2000 Regents of the University of California and the
8
  *               National Center for Ecological Analysis and Synthesis
9
  *     Authors: Matt Jones
10
  *
11
  *    '$Author: daigle $'
12
  *      '$Date: 2008-07-06 21:25:34 -0700 (Sun, 06 Jul 2008) $'
13
  *  '$Revision: 4080 $'
14
  *
15
  * This program is free software; you can redistribute it and/or modify
16
  * it under the terms of the GNU General Public License as published by
17
  * the Free Software Foundation; either version 2 of the License, or
18
  * (at your option) any later version.
19
  *
20
  * This program is distributed in the hope that it will be useful,
21
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23
  * GNU General Public License for more details.
24
  *
25
  * You should have received a copy of the GNU General Public License
26
  * along with this program; if not, write to the Free Software
27
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
28
  */
29

  
30
/********************************************************************** 
31
 * header settings
32
 **********************************************************************/
33
img {
34
	border-style: none;
35
}
36

  
37
.header-section {
38
	border-spacing: 0px;
39
	border-width: 0px;
40
	padding: 0px;
41
	width: 100%;
42
	min-width: 1050px;
43
}
44

  
45
.header-div {
46
	width: 100%;
47
	min-width: 1050px;
48
}
49

  
50
.top-row-image {
51
}
52

  
53
.header-spacer {
54
	color: #124326;
55
	background-color: #7DB667;
56
	width: 100%;	
57
}
58

  
59
.header-left-image {
60
	display: inline;
61
	float: left;
62
	border: 0px;
63
	margin: 0px
64
}
65

  
66
.header-center-section {
67
	width: 45%;
68
	min-width: 400px;
69
}
70

  
71
.header-right-image {
72
	border: 0px;
73
	float: right;
74
}
75

  
76
.header-menu {
77
	background-color: #124326;
78
}
79

  
80
.header-menu-item {
81
	color: #FFFFFF;
82
	text-decoration: none;
83
	font-weight: bold;
84
	font-size: 12px;
85
	margin-left: 10%;
86
}
87

  
88
.header-menu-first-item {
89
	color: #FFFFFF;
90
	text-decoration: none;
91
	font-weight: bold;
92
	font-size: 12px;
93
	margin-left: 10px;
94
}
95

  
96
.menu-item-inactive {
97
	color: #B2B2B2;
98
}
99 0

  
lib/style/skins/sanparks/searchWorkflowRun.jsp
31 31
        <title>Sanparks TPC Report Search</title>
32 32
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/sanparks.css"/>
33 33
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/sanparks-tpc.css"/>
34
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/header2.css"/>
35
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/left-nav2.css"/>
36
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/footer2.css"/>
37 34
        <script language="JavaScript" type="text/JavaScript" src="<%=STYLE_SKINS_URL%>/sanparks/sanparks.js"></script>
38 35
        <script language="JavaScript" type="text/JavaScript" src="<%=STYLE_COMMON_URL%>/style/skins/sanparks/searchWorkflowPathQuery.js"></script>
39 36
        <script language="JavaScript" type="text/JavaScript" src="<%=STYLE_COMMON_URL%>/branding.js"></script>
lib/style/skins/sanparks/workflowAccess.jsp
33 33
        <title>Sanparks TPC Report Search</title>
34 34
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/sanparks.css"/>
35 35
		<link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/sanparks-scheduled-jobs.css"/>
36
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/header2.css"/>
37
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/left-nav2.css"/>
38
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/footer2.css"/>
39 36
        <script language="JavaScript" type="text/JavaScript" src="<%=STYLE_SKINS_URL%>/sanparks/sanparks.js"></script>
40 37
        <script language="JavaScript" type="text/JavaScript" src="<%=STYLE_COMMON_URL%>/branding.js"></script>
41 38
        <script language="JavaScript" type="text/JavaScript" src="<%=STYLE_COMMON_URL%>/prototype-1.5.1.1/prototype.js"></script>
lib/style/skins/sanparks/searchWorkflow.jsp
31 31
        <title>Sanparks TPC Report Search</title>
32 32
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/sanparks.css"/>
33 33
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/sanparks-tpc.css"/>
34
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/header2.css"/>
35
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/left-nav2.css"/>
36
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/footer2.css"/>
37 34
        <script language="JavaScript" type="text/JavaScript" src="<%=STYLE_SKINS_URL%>/sanparks/sanparks.js"></script>
38 35
        <script language="JavaScript" type="text/JavaScript" src="<%=STYLE_COMMON_URL%>/style/skins/sanparks/searchWorkflowPathQuery.js"></script>
39 36
        <script language="JavaScript" type="text/JavaScript" src="<%=STYLE_COMMON_URL%>/branding.js"></script>
lib/style/skins/sanparks/scheduleWorkflowRun.jsp
43 43
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/sanparks.css"/>
44 44
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/sanparks-tpc.css"/>
45 45
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/sanparks-scheduled-jobs.css"/>
46
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/header2.css"/>
47
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/left-nav2.css"/>
48
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/footer2.css"/>
49 46
        <script language="JavaScript" type="text/JavaScript" src="<%=STYLE_SKINS_URL%>/sanparks/sanparks.js"></script>
50 47
        <script language="JavaScript" type="text/JavaScript" src="<%=STYLE_COMMON_URL%>/style/skins/sanparks/searchWorkflowPathQuery.js"></script>
51 48
        <script language="JavaScript" type="text/JavaScript" src="<%=STYLE_COMMON_URL%>/branding.js"></script>

Also available in: Unified diff