Starting to add top level web pages (not yet complete).

This commit is contained in:
Devin Reade 2012-09-05 23:32:09 -06:00
parent 7e3a4def85
commit 7cda100016
9 changed files with 363 additions and 7 deletions

View File

@ -5,11 +5,39 @@ SRCROOT = .
WEB_HOME_BASE =
SUBPROJECTS = refs refs.aug96
DYNAMIC_TARGETS = $(WEB_HOME)/head.html \
$(WEB_HOME)/tail.html \
$(WEB_HOME)/index.html \
$(WEB_HOME)/refs.html \
$(WEB_HOME)/oldnews.html
STATIC_TARGETS =
TARGETS = $(STATIC_TARGETS) $(DYNAMIC_TARGETS)
include $(SRCROOT)/etc/const-priv.mk
include $(SRCROOT)/etc/const.mk
-include $(SRCROOT)/etc/const-local.mk
# Set these ones AFTER const.mk gets included:
FIX_WEB_HOME_PERMS = no
include $(SRCROOT)/etc/rules.mk
clobber::
/bin/rm -rf $(OUTPUT_DIR)
# We do a straight copy on these ones.
$(WEB_HOME)/%.html: %.html
install -m644 $< $@
finalWebHomePerms::
@if [ -n "$(STATIC_TARGETS)" ]; then \
chmod 0644 $(STATIC_TARGETS); \
fi
@if [ -n "$(DYNAMIC_TARGETS)" ]; then \
chmod 0754 $(DYNAMIC_TARGETS); \
fi

1
README
View File

@ -18,6 +18,7 @@ README - This file.
README.build - Detailed build instructions.
etc - These are configuration files for the document build.
See README.build for details.
*.html - Top level web pages
refs/intro - Introduction and Installation Manual
refs/kernel - GNO Kernel Reference Manual
refs/gsh - GNO Shell Reference Manual

View File

@ -63,5 +63,11 @@ BUILD_FILES = GNUmakefile $(HEAD_PAGE) $(TAIL_PAGE) \
$(SRCROOT)/etc/rules.mk \
$(SRCROOT)/etc/tailcat.mk
# If you set this to "no" then there will be no attempt to do a final
# fix-up of permissions to make files 0644 and directories 0755. If
# you disable it in the local makefile, then ensure that you are setting
# appropriate permissions locally.
FIX_WEB_HOME_PERMS = yes
# This is where the files will eventually wind up.
TARGET_DIR = $(GNO_PUBLIC_HTML)/$(WEB_HOME_BASE)

View File

@ -2,7 +2,7 @@
# $Id: rules.mk,v 1.1 2012/08/26 02:27:36 gdr Exp $
#
build: buildLocal $(TARGETS) webHomePerms $(BUILD_FILES)
build: buildLocal $(TARGETS) webHomePerms $(BUILD_FILES) finalWebHomePerms
@for s in X $(SUBPROJECTS); do \
[ "$$s" = X ] && continue; \
[ -d "$$s" ] || continue; \
@ -25,18 +25,24 @@ webHomePerms:
echo "WEB_HOME not set"; \
exit 1; \
fi; \
find $(WEB_HOME) -type d \! -perm 0755 -exec chmod 0755 {} \; ; \
find $(WEB_HOME) -type f \! -perm 0644 -exec chmod 644 {} \;
if [ "$(FIX_WEB_HOME_PERMS)" = "yes" ]; then \
find $(WEB_HOME) -type d \! -perm 0755 -exec chmod 0755 {} \; ; \
find $(WEB_HOME) -type f \! -perm 0644 -exec chmod 644 {} \; ; \
fi
install::
finalWebHomePerms::
install:: build
@/bin/rm -rf $(TARGET_DIR)
install -d -m755 $(TARGET_DIR)
@echo "copying files to $(TARGET_DIR)"; \
cd $(WEB_HOME); tar -cf - . | \
(cd $(TARGET_DIR); tar -xpBf -);
@echo "setting permissions on $(TARGET_DIR)"; \
find $(TARGET_DIR) -type d \! -perm 0755 -exec chmod 0755 {} \; ; \
find $(TARGET_DIR) -type f \! -perm 0644 -exec chmod 644 {} \;
chmod 0755 $(TARGET_DIR)
# @echo "setting permissions on $(TARGET_DIR)"; \
# find $(TARGET_DIR) -type d \! -perm 0755 -exec chmod 0755 {} \; ; \
# find $(TARGET_DIR) -type f \! -perm 0644 -exec chmod 644 {} \;
clean::
/bin/rm -f *~

31
head.html Normal file
View File

@ -0,0 +1,31 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>GNO/ME - UNIX for the Apple IIgs</title>
</head>
<body
bgcolor="#ffffff"
text="#000000"
link="#0000FF"
vlink="#001177"
alink="#001177"
>
<div>
<h2 align="center">GNO/ME - UNIX for the Apple IIgs</h2>
</div>
<div>
<p align="center">
<a href="http://<!--#echo var="HTTP_HOST" -->">GNO&nbsp;Consortium</a> |
<a href="http://<!--#echo var="HTTP_HOST" -->/gno2">GNO/ME&nbsp;for&nbsp;the&nbsp;Apple&nbsp;IIgs</a>
<br/>
<a href="http://<!--#echo var="HTTP_HOST" -->/gno2/download.html">Download</a> |
<a href="http://<!--#echo var="HTTP_HOST" -->/gno2/faqindex.html">FAQ</a> |
<a href="http://<!--#echo var="HTTP_HOST" -->/gno2/refs.html">Reference&nbsp;Manuals</a> |
<a href="http://<!--#echo var="HTTP_HOST" -->/gno2/manindex.html">Manual&nbsp;Pages</a> |
<a href="http://<!--#echo var="HTTP_HOST" -->/gno2/bugs.html">Reporting&nbsp;Bugs</a>
</p>
<hr/>
</div>

53
index.html Normal file
View File

@ -0,0 +1,53 @@
<!--#include virtual="/gno2/head.html" -->
<!-- ################################################### -->
<h2 align="center">The GNO Multitasking Environment</h2>
<p align="center">
GNO is a UNIX-like software package for the Apple IIgs, which
runs on top of the native operating system, GS/OS.
</p>
<hr/>
<h2>News</h2>
<dl>
<dt><b>03 September 2012</b></dt>
<dd>
<p>
GNO sources are now available via GitHub. See the
<a href="download.html">Download</a> page for details.
Also, the
<a href="https://lists.gno.org/mailman/listinfo/gno-commits">gno-commits</a>
mailing list has been set up for anyone who wants to get commit
notifications.
</p>
</dd>
<dt><b>25 August 2012</b></dt>
<dd>
<p>
The broken links to the reference manuals have been fixed.
</p>
</dd>
<dt><b>Old &quot;News&quot;</b></dt>
<dd>
<p>
Older entries may be found <a href="oldnews.html">here</a>.
</p>
</dd>
</dl>
<!-- ################################################### -->
<!--#include virtual="/gno2/tail.html" -->

74
oldnews.html Normal file
View File

@ -0,0 +1,74 @@
<!--#include virtual="/gno2/head.html" -->
<!-- ################################################### -->
<h2 align="center">Old &quot;News&quot;</h2>
<p>
The following are old news items. In some cases, minor edits have
been made, such as the updating of various URLs.
</p>
<dl>
<dt><b>31 January 2006</b></dt>
<dd>
<p>
Between my young family, work, and other projects I'm afraid that GNO
has not been updated in a while. I'd like to return to it, but I don't
know when that will be.
</p>
<p>
Meanwhile, this site isn't going anywhere and
the software and source will remain available.
</p>
</dd>
<dt><b>21 February 1999</b></dt>
<dd>
<p>
The Gsh Users' Guide is now available for download or online viewing.
<strike>It is not yet updated for gsh v2.0.</strike>
See the <A HREF="refs.html">Reference Manuals</A>
page for details.
</p>
</dd>
<dt><b>15 February 1999</b></dt>
<dd>
<p>
GNO v2.0.6 is (finally) available. This is a full release and the
current documentation and scripts assume that you are <em>not</em>
installing on top of an existing system.
Ensure that you read the chapter on installing v2.0.6 in the
<em>Overview and Installation Reference</em>.
</p>
<p>
<em>Edit:</em>
You can obtain the current release via
Please see <a href="download.html">the download page</a> for information
on obtaining GNO.
</p>
<p>
If you find any problems or have any suggestions, please
<A HREF="bugs.html">report them</A>.
</p>
<p>
The current release does not include networking support.
</p>
</dd>
</dl>
<!-- ################################################### -->
<!--#include virtual="/gno2/tail.html" -->

124
refs.html Normal file
View File

@ -0,0 +1,124 @@
<!--#include virtual="/gno2/head.html" -->
<!-- ################################################### -->
<H2>GNO Reference Manuals</h2>
<p>
These documents are based on Procyon's August 1996 v2.0.4 documents, but have
been updated and enhanced.
Please also examine the
<a href="faqindex.html">FAQ</a>
and the <a href="manindex.html">man pages</a>.
</p>
<dl>
<dt>
<a name="install">
<a href="refs/intro/index.html">Overview and Installation</a>
</a>
</dt>
<dd>
<p>
This document contains introductory information (including how
to obtain GNO), installation instructions, a list of hardware
requirements, suggested readings, and similar material. It is
a good starting point for those new to GNO.
</p>
<p>
Formats:
<a href="refs/intro/index.html">HTML</a>,
PostScript (<a href="refs/intro/intro.ltr.ps">Letter</a>,
<a href="refs/intro/intro.a4.ps">A4</a>),
and
PDF (<a href="refs/intro/intro.ltr.pdf">Letter</a>,
<a href="refs/intro/intro.a4.pdf">A4</a>).
</p>
</dd>
<dt>
<a href="refs/gsh/book1.html">GNO Shell User's Manual</a>
</dt>
<dd>
<p>
This is the reference manual for the GNO Shell, otherwise known
as <b>gsh</b>. This document is laid out more as a tutorial than
a traditional reference manual.
</p>
<p>
Formats:
<a href="refs/gsh/book1.html">HTML</a>
and
PDF (<a href="refs/gsh/gsh.pdf">Letter</a>).
</p>
<dt>
<a href="refs/kernel/index.html">Kernel Reference Manual</a>
</dt>
<dd>
<p>
This is a technical introduction and reference to the GNO Kernel,
which is the heart of the GNO system. Some portions may be heavy
reading for the new user, but is a must for the application programmer.
</p>
<p>
Formats:
<a href="refs/kernel/index.html">HTML</a>,
PostScript (<a href="refs/kernel/kern.ltr.ps">Letter</a>,
<a href="refs/kernel/kern.a4.ps">A4</a>),
and
PDF (<a href="refs/kernel/kern.ltr.pdf">Letter</a>,
<a href="refs/kernel/kern.a4.pdf">A4</a>).
</p>
</dd>
</dl>
<hr>
<table width="60%" align="center" border="1">
<tr><td>
<h3 align="center"><a name="v204">Version 2.0.4 Manuals</a></h3>
<p align="center">
For the historically inclined, an HTML version of the version 2.0.4
manuals is also available from August 1996:
<ul>
<li><a href="refs.aug96/install.html">Installation Manual</a></li>
<li><a href="refs.aug96/kern.html">Kernel Reference</a></li>
<li>gsh
<ul>
<li><a href="refs.aug96/gsh.12.html">Chapters 1 and 2</a></li>
<li><a href="refs.aug96/gsh.3.html">Chapter 3</a></li>
<li><a href="refs.aug96/gsh.4.html">Chapter 4</a></li>
<li><a href="refs.aug96/gsh.5.html">Chapter 5</a></li>
</ul>
</li>
<li>Manual Pages
<ul>
<li><a href="refs.aug96/man1.html">Section 1</a></li>
<li><a href="refs.aug96/man2.html">Section 2</a></li>
<li><a href="refs.aug96/man3.html">Section 3</a></li>
<li><a href="refs.aug96/man4.html">Section 4</a></li>
</ul>
</ul>
</p>
</td></tr>
</table>
<!-- ################################################### -->
<!--#include virtual="/gno2/tail.html" -->

33
tail.html Normal file
View File

@ -0,0 +1,33 @@
<!--#config timefmt="%d %b %Y" -->
<hr>
<table width="100%">
<tr>
<td width="20%">
<p align="left">
<a href="http://<!--#echo var="HTTP_HOST" -->/gno">GNO/ME&nbsp;Home</a>
</p>
</td>
<td width="60%">
<p align="center">
Maintainer:&nbsp;
<A HREF="http://<!--#echo var="HTTP_HOST" -->/~gdr">Devin&nbsp;Reade</A>
<br>
Last Updated: <!--#echo var="LAST_MODIFIED" -->
</p>
</td>
<td width="20%">
<p align="right">
<a href="http://<!--#echo var="HTTP_HOST" -->/cgi-bin/contact?regarding=GNO/ME">Contact Us</a>
&nbsp;
</p>
</td>
</tr>
</table>
</body>
</html>