-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
80 lines (80 loc) · 2.72 KB
/
about.html
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>CL-web-components</title>
<link rel="stylesheet" href="/css/site.css">
</head>
<body>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="index.html">README</a></li>
<li><a href="LICENSE">LICENSE</a></li>
<li><a href="user_manual.html">User Manual</a></li>
<li><a href="INSTALL.html">INSTALL</a></li>
<li><a href="about.html">About</a></li>
<li><a href="search.html">Search</a></li>
<li><a href="https://github.com/caltechlibrary/CL-web-components">GitHub</a></li>
</ul>
</nav>
<section>
<h1 id="about-this-software">About this software</h1>
<h2 id="cl-web-components-0.0.5">CL-web-components 0.0.5</h2>
<p>Added an optional function `customCleanupFilter` to the csvtextarea
web component. The function is expected to operate on an HTML object
containing the row being evalated. If the user defined function returns
true the row is accepted. If false the row will be removed.</p>
<h3 id="authors">Authors</h3>
<ul>
<li>R. S. Doiel, <a href="https://orcid.org/0000-0003-0900-6903"
class="uri">https://orcid.org/0000-0003-0900-6903</a></li>
</ul>
<h3 id="contributors">Contributors</h3>
<ul>
<li>Mistral, <a href="https://mistral.ai"
class="uri">https://mistral.ai</a></li>
</ul>
<h3 id="maintainers">Maintainers</h3>
<ul>
<li>R. S. Doiel, <a href="https://orcid.org/0000-0003-0900-6903"
class="uri">https://orcid.org/0000-0003-0900-6903</a></li>
</ul>
<p>CL-web-components provides a collection of Web Components used by
Caltech Library in various web sites and projects.</p>
<p>The following are the components currently provided.</p>
<dl>
<dt>`csv-textarea`</dt>
<dd>
This is a textarea like component who's innerHTML content is CSV data.
The component will display this as an editable table.
</dd>
<dt>`a-to-z-ul`</dt>
<dd>
This component takes an innerHTML containing a UL list. The UL list is
then turned into an A to Z navigatable UL List. If JavaScript is
unavailable then the innerHTML UL remains as a fallback.
</dd>
</dl>
<p>One additional helper module is currently provided, `parseCSV.js`,
that provides stringify and parse functions for CSV rows and
strings.</p>
<ul>
<li>License: <a
href="https://caltechlibrary.github.io/CL-web-components/LICENSE"
class="uri">https://caltechlibrary.github.io/CL-web-components/LICENSE</a></li>
<li>GitHub: <a
href="https://github.com/caltechlibrary/CL-web-components"
class="uri">https://github.com/caltechlibrary/CL-web-components</a></li>
<li>Issues: <a
href="https://github.com/caltechlibrary/CL-web-components/issues"
class="uri">https://github.com/caltechlibrary/CL-web-components/issues</a></li>
</ul>
<h3 id="programming-languages">Programming languages</h3>
<ul>
<li>JavaScript</li>
<li>HTML</li>
<li>CSS</li>
</ul>
</section>
</body>
</html>