Add a basic web page via Maven

This commit is contained in:
David Schmidt 2010-04-13 16:47:33 +00:00
parent 2d13dae3c0
commit 50ea82340b
8 changed files with 127 additions and 0 deletions

6
doc/web/buildit.bat Normal file
View File

@ -0,0 +1,6 @@
@REM
@REM Sorry, this is hopelessly tied to my environment...
@REM I hope folks don't really want to build the doc themselves.
@REM
call c:\dev\env
call mvn site

2
doc/web/buildit.sh Normal file
View File

@ -0,0 +1,2 @@
#!/bin/sh
mvn site

3
doc/web/buildpost.bat Normal file
View File

@ -0,0 +1,3 @@
cd target\site
perl -i.orig -p ..\..\removeMaven.re index.html
cd ..\..

29
doc/web/buildpost.sh Normal file
View File

@ -0,0 +1,29 @@
#!/bin/sh
cd target/site
perl -i.orig -p ../../removeMaven.re batch.html
perl -i.orig -p ../../removeMaven.re bootstrap.html
perl -i.orig -p ../../removeMaven.re bootstrap3.html
perl -i.orig -p ../../removeMaven.re bootstrapaudio.html
perl -i.orig -p ../../removeMaven.re bootstrapmain.html
perl -i.orig -p ../../removeMaven.re compatibility.html
perl -i.orig -p ../../removeMaven.re configmain.html
perl -i.orig -p ../../removeMaven.re configaudio.html
perl -i.orig -p ../../removeMaven.re configaudiomain.html
perl -i.orig -p ../../removeMaven.re configethernet.html
perl -i.orig -p ../../removeMaven.re configserial.html
perl -i.orig -p ../../removeMaven.re configserialmain.html
perl -i.orig -p ../../removeMaven.re connectionsaudio.html
perl -i.orig -p ../../removeMaven.re connectionsserial.html
perl -i.orig -p ../../removeMaven.re credits.html
perl -i.orig -p ../../removeMaven.re developing.html
perl -i.orig -p ../../removeMaven.re history.html
perl -i.orig -p ../../removeMaven.re historyold.html
perl -i.orig -p ../../removeMaven.re index.html
perl -i.orig -p ../../removeMaven.re install.html
perl -i.orig -p ../../removeMaven.re misc.html
perl -i.orig -p ../../removeMaven.re protocol.html
perl -i.orig -p ../../removeMaven.re receiving.html
perl -i.orig -p ../../removeMaven.re sending.html
perl -i.orig -p ../../removeMaven.re starting.html
perl -i.orig -p ../../removeMaven.re webring.html
cd ../..

47
doc/web/pom.xml Normal file
View File

@ -0,0 +1,47 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.gsport</groupId>
<artifactId>doc</artifactId>
<version>1.0-SNAPSHOT</version>
<name>GSport</name>
<url>http://maven.apache.org/maven2</url>
<inceptionYear>2010</inceptionYear>
<distributionManagement>
<site>
<id>website</id>
<url>scp://webhost.company.com/www/website</url>
</site>
</distributionManagement>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
<build>
<plugins>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<locales>en</locales>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<locales>en</locales>
</configuration>
</plugin>
</plugins>
</build>
</project>

5
doc/web/removeMaven.re Normal file
View File

@ -0,0 +1,5 @@
s@\<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy"\>@<a href="http://sourceforge.net/projects/gsport"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=170262&amp;type=13" width="120" height="30" alt="Get Apple Disk Transfer ProDOS at SourceForge.net. Fast, secure and Free Open Source software downloads" /></a>@ig;
s@\<img alt="Built by Maven" src="\./images/logos/maven-feather.png"\>\</img\>@<p>@ig;
s@\</body\>@\<script src\=\"http\:\/\/www.google-analytics.com\/urchin.js\" type\=\"text\/javascript\"\>\<\/script\>\<script type\=\"text\/javascript\"\>_uacct \= \"UA-697468-1\";urchinTracker\(\);\<\/script\>\<\/body\>@ig;
s@href="https://sourceforge.net/project/showfiles.php\?group_id\=170262"@href="https://sourceforge.net/project/showfiles.php\?group_id\=170262" target\="_new"@ig;
s@href="http://dataswamp.net/apple2eserialterm/index.php"@href="http://dataswamp.net/apple2eserialterm/index.php" target\="_new"@ig;

View File

@ -0,0 +1,20 @@
-----
GSport Project Page
-----
David Schmidt (david__schmidt at users dot souceforge dot net)
-----
GSport
GSport is a portable (in the programming sense) Apple IIgs emulator, based on the
KEGS cross-platform IIgs emulator by Kent Dickey.
* Goals
The main goal for GSport is to provide a free, open ecosystem for the continuation
of cross-platform development of IIgs emulation.
Some interesting advances that initially spawned this project are Uthernet and
printer support. As those objectives are met, a release will be assembled and posted,
and we will move on to the next objectives. Do you have something that you wish
a GS emulator did? Submit a request {{{http://sourceforge.net/tracker/?group_id=315628&atid=1327836}here}}.

15
doc/web/src/site/site.xml Normal file
View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<project name="GSport">
<bannerLeft>
<name>GSport: an Apple IIgs Emulator</name>
</bannerLeft>
<bannerRight>
<name></name>
</bannerRight>
<body>
<links>
<item name="Sourceforge Project Page" href="http://sourceforge.net/projects/gsport/"/>
</links>
</body>
</project>