-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathabout.asp
122 lines (113 loc) · 4.36 KB
/
about.asp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<%@ language="JavaScript" %>
<!DOCTYPE html>
<!--
///////////////////////////////////////////////////////////////////////////////
// Product : Online Tools(tm)
//
// Series : Dovetail Software Development Series(tm)
//
// Name : index.asp
//
// Description : Home page with links to Version History and Admin
//
// Author : Dovetail Software, Inc.
// 4807 Spicewood Springs Rd, Bldg 4 Suite 200
// Austin, TX 78759
// (512) 610-5400
// EMAIL: [email protected]
// www.dovetailsoftware.com
//
// Platforms : This version supports Clarify 9.0 and later
//
// Copyright (C) 2001-2012 Dovetail Software, Inc.
// All Rights Reserved.
///////////////////////////////////////////////////////////////////////////////
-->
<html>
<head>
<meta http-equiv="expires" content="0">
<meta name="KeyWords" content="">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="Shortcut Icon" href="favicon.ico">
<link href="css/<%=Request.Cookies("boltTheme")%>bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!--#include file="inc/config.inc"-->
<!--#include file="inc/adojavas.inc"-->
<%
var sPageTitle = "About";
var sPageType = "Master";
var FSO = Server.CreateObject("Scripting.FileSystemObject");
var udl_file = FSO.GetFile(dbConnect.replace("File Name=","").replace(/\\/g,"\\\\"));
%>
<!--#include file="inc/ddonline.inc"-->
</head>
<body>
<!--#include file="inc/navbar.inc"-->
<div class="container-fluid">
<div class="row">
<a href=http://www.dovetailsoftware.com><img src="img/dovetail.png" alt="Dovetail Software"></a>
</div>
<div class="row">
<div class="col-8 offset-2 card bg-faded mb-4">
<h2>About BOLT</h2>
<p>BOLT is a set of <u>B</u>rowser <u>O</u>n<u>L</u>ine <u>T</u>ools for the Clarify<sup>®</sup> system.</p>
<p>BOLT is freely available online at <a href="https://github.com/DovetailSoftware/bolt">https://github.com/DovetailSoftware/bolt</a>.</p>
</div>
</div>
<%if (!(udl_file.Attributes & 1) ){%>
<div class="row">
<div class="col-8 offset-2 card bg-faded mb-4">
<h2>Administration</h2>
<p>Configure the database connection using the <a href="admin.asp">Administration page</a>.</p>
</div>
</div>
<%}%>
<div class="row">
<div class="col-8 offset-2 card bg-faded mb-4">
<div>
<h2>Change Theme</h2>
<p>Click on a theme below to change the theme used for Dovetail Bolt.</p>
<iframe class="theme" src="themes/example.asp?css=" scrolling="no"></iframe>
<iframe class="theme" src="themes/example.asp?css=Cyborg" scrolling="no"></iframe>
<iframe class="theme" src="themes/example.asp?css=Spacelab" scrolling="no"></iframe>
<iframe class="theme" src="themes/example.asp?css=Cerulean" scrolling="no"></iframe>
<iframe class="theme" src="themes/example.asp?css=Slate" scrolling="no"></iframe>
<iframe class="theme" src="themes/example.asp?css=Journal" scrolling="no"></iframe>
<input type="hidden" id="newTheme" />
</div>
</div>
</div>
<div class="row">
<div class="col-8 offset-2 card bg-faded mb-4">
<h2>Clarify Form Identifier</h2>
<p>A secret little feature you just might find useful: <a href="clarifyID_help.asp">Clarify Form Identifier</a>.</p>
</div>
</div>
<!--#include file="inc/footer.inc"-->
</div>
</body>
<script type="text/javascript" src="js/jquery-3.0.0.min.js"></script>
<script type="text/javascript" src="js/tether.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/jquery.cookie.js"></script>
<script type="text/javascript">
$(document).ready(function() {
var path = window.location.pathname;
var page = path.substr(path.lastIndexOf("/")+1);
$("ul.navbar-nav li a[href$='" + page + "']").parent().addClass("active");
$(".navbar").find(".connected").text("<%=connect_info%>");
document.title = "Bolt: <%=sPageTitle%>";
$("#newTheme").click(function() {
var themePath = $(this).val() + "";
if(themePath > "") themePath = themePath + "/";
$.cookie("boltTheme", themePath, { expires: 365 });
window.location.href = path;
});
});
</script>
</html>
<%
FSO = null;
udl_file = null;
%>