aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile42
-rw-r--r--download.htin62
-rw-r--r--examples.htin1
-rw-r--r--graphics/bwd.pngbin0 -> 180 bytes
-rw-r--r--graphics/ctx.pngbin0 -> 312 bytes
-rw-r--r--graphics/fwd.pngbin0 -> 180 bytes
-rw-r--r--graphics/idx.pngbin0 -> 164 bytes
-rw-r--r--graphics/left.pngbin0 -> 193 bytes
-rw-r--r--graphics/right.pngbin0 -> 191 bytes
-rw-r--r--graphics/top.pngbin0 -> 149 bytes
-rw-r--r--graphics/up.pngbin0 -> 193 bytes
-rw-r--r--gray.css267
-rw-r--r--inc/footer.html37
-rw-r--r--inc/header.html42
-rw-r--r--index.htin220
-rw-r--r--postproc.awk81
16 files changed, 752 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..bf7f992
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,42 @@
1# The entire webdoc source tree must be located under the doc subdirectory
2# of the Eclat tree.
3
4include ../Makefile.inc
5VPATH=..
6
7.SUFFIXES: .1 .5 .htin .html
8
9MAN2HTMLFLAGS=-r
10
11.1.html:
12 man2html $(MAN2HTMLFLAGS) $< | \
13 sed 's/<[\/A-Z][A-Z0-9]*/\L&/g;s|<b>\\dq</b>|<b>\\"</b>|g;s|<b>dq</b>|<b>"</b>|g' | \
14 awk -f postproc.awk
15 m4 -P -DACTIVE=documentation inc/header.html a.1 a.3 a.2 a.4 inc/footer.html > $@
16 rm a.[1-4]
17.5.html:
18 man2html $(MAN2HTMLFLAGS) $< | \
19 sed 's/<[\/A-Z][A-Z0-9]*/\L&/g' | \
20 awk -f postproc.awk
21 m4 -P -DACTIVE=documentation inc/header.html a.1 a.3 a.2 a.4 inc/footer.html > $@
22 rm a.[1-4]
23
24.htin.html:
25 m4 -P -DACTIVE=$* inc/header.html $< inc/footer.html > $@
26
27SOURCES=\
28 index.htin\
29 download.htin\
30 examples.htin
31
32HTMLFILES=$(MANPAGES1:.1=.html) $(MANPAGES5:.5=.html) $(SOURCES:.htin=.html)
33
34all: $(HTMLFILES)
35
36archive: all
37 tar zcf eclat-webdoc.tar.gz $(HTMLFILES) *.css graphics
38
39clean:; rm -f *.html a.[1-4] *~
40
41$(HTMLFILES): Makefile postproc.awk inc/header.html inc/footer.html
42
diff --git a/download.htin b/download.htin
new file mode 100644
index 0000000..254a337
--- /dev/null
+++ b/download.htin
@@ -0,0 +1,62 @@
1<h3>Latest release</h3>
2<p>
3The latest alpha release of <b>Eclat</b> is available from the following
4locations:
5</p>
6<table class="download">
7 <thead>
8 <tr>
9 <td>Archive</td>
10 <td>Size</td>
11 <td>MD5</td>
12 <td>Signature</td>
13 </tr>
14 </thead>
15 <tbody>
16 <tr>
17 <td><a href="ftp://download.gnu.org.ua/pub/alpha/eclat/eclat-0.1.tar.gz">eclat-0.1.tar.gz</a></td>
18 <td>541K</td>
19 <td>7a6a6bd4ab1739604e429e288b13b38e</td>
20 <td><a href="ftp://download.gnu.org.ua/pub/alpha/eclat/eclat-0.1.tar.gz.sig">eclat-0.1.tar.gz.sig</a></td>
21 </tr>
22 <tr>
23 <td><a href="ftp://download.gnu.org.ua/pub/alpha/eclat/eclat-0.1.tar.xz">eclat-0.1.tar.xz</a></td>
24 <td>293K</td>
25 <td>95edca338514d2ae267e6bec0d92164f</td>
26 <td><a href="ftp://download.gnu.org.ua/pub/alpha/eclat/eclat-0.1.tar.xz.sig">eclat-0.1.tar.xz.sig</a></td>
27 </tr>
28 </tbody>
29</table>
30<p>
31You can use the signature file to verify that
32the corresponding file (without the .sig suffix) is intact. First,
33be sure to download both the <i>.sig</i> file and the corresponding tarball.
34Then, run a command like this:
35</p>
36
37<pre>
38 gpg --verify eclat-0.1.tar.gz.sig
39</pre>
40
41<p>
42If that command fails because you don't have the required public key,
43then run this command to import it:
44</p>
45
46<pre>
47 gpg --keyserver keys.gnupg.net --recv-keys 55D0C732
48</pre>
49<p>
50and rerun the <code>gpg --verify</code> command.
51</p>
52
53<h3>Other alphas</h3>
54<p>
55 This and older versions of <b>Eclat</b> can be downloaded from
56<a href="ftp://download.gnu.org.ua/pub/alpha/eclat">its ftp home</a>.
57</p>
58<p>
59 You can keep track of the news and updates at the
60<a href="http://puszcza.gnu.org.ua/projects/eclat">project's
61development page</a>.
62</p>
diff --git a/examples.htin b/examples.htin
new file mode 100644
index 0000000..5f927ea
--- /dev/null
+++ b/examples.htin
@@ -0,0 +1 @@
FIXME: EXAMPLES PAGE
diff --git a/graphics/bwd.png b/graphics/bwd.png
new file mode 100644
index 0000000..0142be8
--- /dev/null
+++ b/graphics/bwd.png
Binary files differ
diff --git a/graphics/ctx.png b/graphics/ctx.png
new file mode 100644
index 0000000..4a86f08
--- /dev/null
+++ b/graphics/ctx.png
Binary files differ
diff --git a/graphics/fwd.png b/graphics/fwd.png
new file mode 100644
index 0000000..2e63647
--- /dev/null
+++ b/graphics/fwd.png
Binary files differ
diff --git a/graphics/idx.png b/graphics/idx.png
new file mode 100644
index 0000000..fd9356b
--- /dev/null
+++ b/graphics/idx.png
Binary files differ
diff --git a/graphics/left.png b/graphics/left.png
new file mode 100644
index 0000000..1eeebee
--- /dev/null
+++ b/graphics/left.png
Binary files differ
diff --git a/graphics/right.png b/graphics/right.png
new file mode 100644
index 0000000..0d1c199
--- /dev/null
+++ b/graphics/right.png
Binary files differ
diff --git a/graphics/top.png b/graphics/top.png
new file mode 100644
index 0000000..6544b17
--- /dev/null
+++ b/graphics/top.png
Binary files differ
diff --git a/graphics/up.png b/graphics/up.png
new file mode 100644
index 0000000..65a1897
--- /dev/null
+++ b/graphics/up.png
Binary files differ
diff --git a/gray.css b/gray.css
new file mode 100644
index 0000000..12526a9
--- /dev/null
+++ b/gray.css
@@ -0,0 +1,267 @@
1/* Basic settings */
2html, body, table, form {
3 margin: 0em;
4 padding: 0em;
5 height: 100%;
6}
7
8body {
9 font-family: sans-serif;
10 font-size: 120%;
11 color: #333;
12 margin-left: auto;
13 margin-right: auto;
14 max-width: 960px;
15 background-color: silver;
16 padding: 1em;
17}
18
19div {
20 background-color: white;
21}
22
23div#content {
24 border: 1px solid black;
25 min-height: 800px;
26 position: relative;
27}
28
29a {
30 color: blue;
31 text-decoration: none;
32}
33
34a:hover {
35 text-decoration: underline;
36}
37
38img {
39 border: none 0;
40 vertical-align: top;
41}
42
43table {
44 border-collapse: collapse;
45}
46
47.right {
48 text-align: right;
49}
50
51div#header {
52 padding: 1em;
53}
54
55/* Header table */
56table#header {
57 width: 100%;
58 margin-bottom: 1em;
59}
60
61table#header td.logo {
62 width: 140px;
63}
64
65table#header td.main {
66 padding-left: 10px;
67 white-space: nowrap;
68 margin: 0px;
69}
70
71table#header td.main h1 {
72 margin: 0px;
73 font-style: normal;
74 font-weight: normal;
75 font-stretch: normal;
76 font-variant: normal;
77}
78
79table#header td.main h1 a {
80 color: black;
81}
82
83table#header td.sub {
84 color: #777;
85 border-top: solid 1px #ccc;
86 padding-left: 10px;
87 vertical-align: top;
88}
89
90table#header td.sub h2 {
91 font-style: normal;
92 font-weight: normal;
93 font-stretch: normal;
94 font-variant: normal;
95 font-size: 100%;
96 margin: 0px;
97}
98
99/* Main menu (tabs) */
100ul.tabs {
101 list-style-type: none;
102 width: 100%;
103 border-bottom: solid 2px #ccc;
104 border-collapse: collapse;
105 display: table;
106 margin: 0;
107}
108
109ul.tabs li {
110 width: 20%;
111 margin-left: 5%;
112 display: block;
113 float: left;
114 vertical-align: bottom;
115 padding: 0;