o adding some more guides and a little script to create a summary page

of the guides.


git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@306821 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2005-10-06 18:06:34 +00:00
parent a0f75ed3cd
commit 3849970022
4 changed files with 56 additions and 5 deletions

View File

@ -1,5 +1,5 @@
------
Guide
Guide to Generating Sources
------
Jason van Zyl
------

View File

@ -68,7 +68,7 @@ url: http://maven.apache.org
<mainClass>com.mycompany.app.App</mainClass/>
<packageName>com.mycompany.app</packageName>
<!--
<addClasspath/>
<addClasspath>true</addClasspath>
<addExtensions/>
<classpathPrefix/>
-->

View File

@ -1,12 +1,12 @@
------
Guide to Proxy Settings
Guide to using proxies
------
Jason van Zyl
------
12 October 2005
------
Configuring a Proxy
Configuring a proxy
You can configure a proxy to use for some or all of your HTTP requests in Maven 2.0. The username and password are only
required if your proxy requires basic authentication (note that later releases may support storing your passwords in

View File

@ -0,0 +1,51 @@
#!/bin/sh
toc=`pwd`/toc.apt
echo " ------ " > $toc
echo " Summary of Maven 2.x documentation " >> $toc
echo " ------ " >> $toc
echo " Jason van Zyl " >> $toc
echo " ------ " >> $toc
echo " 12 October 2005 " >> $toc
echo " ------ " >> $toc
echo >> $toc
echo "Documentation" >> $toc
echo >> $toc
echo >> $toc
echo "* Guides" >> $toc
echo >> $toc
echo " * {{{getting-started/index.html}Getting Started Guide}}" >> $toc
echo >> $toc
echo " * {{{plugin-development/index.html}Plug-in Developer's Guide}}" >> $toc
echo >> $toc
echo "* Mini Guides" >> $toc
echo >> $toc
(
cd mini
for i in `ls guide-*.apt`
do
title=`grep "^ Guide" $i | sed 's/^ *//'`
[ ! -z "$title" ] && echo " * {{{$i}$title}}" >> $toc && echo >> $toc
done
)
echo >> $toc
echo "* Introductions" >> $toc
echo >> $toc
(
cd introduction
for i in `ls introduction-*.apt`
do
title=`grep "^ Introduction" $i | sed 's/^ *//'`
[ ! -z "$title" ] && echo " * {{{$i}$title}}" >> $toc && echo >> $toc
done
)