This repository has been archived by the owner on Jul 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
82 lines (77 loc) · 4.16 KB
/
index.php
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
<?
# get common
require "{$_SERVER['DOCUMENT_ROOT']}/scripts/common.php";
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Code We’ve Written ¬ Easy Designs</title>
<?php docHead(); ?>
</head>
<body>
<?php message(); ?>
<div id="content">
<h1>Code We’ve Written</h1>
<h2>JavaScript/<abbr title="Document Object Model">DOM</abbr> Scripting</h2>
<p>Below is a list of some of the little scripts we’ve written for this site and others using JavaScript/<abbr title="Document Object Model">DOM</abbr> Scripting.</p>
<ul>
<li id="_footnoteLinks">
<h4><a href="/code/footnoteLinks/">Footnote Links</a> – 8 May 2005</h4>
<dl>
<dt>Purpose</dt>
<dd>This script builds a list of <abbr title="Uniform Resource Indicators">URIs</abbr> (<code>href</code>s or citations) from any tags within a specified container and appends the list (as footnotes) to the document in a specified location. Any referenced elements are given a dynamically-assigned number (in the form of a superscript) which corresponds to the link in the footnote list. The script checks for duplicate links and associates them with the same number. This script was created as a usability enhancement for printed webpages.</dd>
<dt>Current Version</dt>
<dd>1.3 (21 June 2005)</dd>
</dl>
</li>
<!--li id="_formSuite">
<h4><a href="/code/formSuite/">Form Suite</a> – 18 September 2005</h4>
<dl>
<dt>Purpose</dt>
<dd>This is a generic form suite which allows for validation based on the public <a href="/dtd/xhtml+/xhtml1-strict+.dtd">XHTML 1.0 Strict+ <abbr title="Document Type Definition">DTD</abbr></a> created by Easy! Designs. It also include facilities for faux-progress bars on file upload. More details to come.</dd>
<dt>Current Version</dt>
<dd>1.0 (18 September 2005)</dd>
</dl>
</li-->
<li id="_jsUtilities">
<h4><a href="/code/jsUtilities/">JavaScript Utilities Library</a> – 13 May 2005</h4>
<dl>
<dt>Purpose</dt>
<dd>This script provides functions for browsers which do not inherently support the entire JavaScript Core and supplies some useful functions <abbr title="Hypertext Pre-Processor">PHP</abbr> developers might wish they had access to.</dd>
<dt>Current Version</dt>
<dd>2.1 (21 June 2005)</dd>
</dl>
</li>
<li>
<h4><a href="/code/jsTrace/">jsTrace</a> – 26 October 2005</h4>
<dl>
<dt>Purpose</dt>
<dd>This script is an attempt to replicate the functionality of ActionScript’s Trace window in JavaScript (to get rid of those nasty alert boxes usually used when debugging).</dd>
<dt>Current Version</dt>
<dd>1.3 (1 November 2005)</dd>
</dl>
</li>
<li id="_makeGlossary">
<h4><a href="/code/makeGlossary/">Make Glossary</a> – 7 June 2005</h4>
<dl>
<dt>Purpose</dt>
<dd>This script has been rewritten as <a href="#_pageGlossary">Page Glossary</a>.</dd>
<dt>Current Version</dt>
<dd>1.1 (21 June 2005)</dd>
</dl>
</li>
<li id="_pageGlossary">
<h4><a href="/code/pageGlossary/">Page Glossary</a> – 27 November 2005</h4>
<dl>
<dt>Purpose</dt>
<dd>A replacement for <a href="/code/makeGlossary/">makeGlossary</a>, this script collects all of the abbreviations (<code><abbr></code>), acronyms (<code><acronym></code>), and definitions (<code><dfn></code>) on a page and builds a definition list (<code><dl></code>) of the terms, which is appended to a specified container (identified by its <code>id</code>). The script checks for duplicate terms and also alphabetizes the terms. This script was created as a usability enhancement for webpages.</dd>
<dt>Current Version</dt>
<dd>1.0 (27 November 2005)</dd>
</dl>
</li>
</ul>
<div id="extras">
</div>
</div>
<?php foot(); ?>
</body>
</html>