You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ro...@apache.org on 2011/06/06 23:29:36 UTC

svn commit: r1132783 - in /qpid/trunk/qpid/doc: book/build-book.sh website/content/mailing_lists.html website/content/source_repository.html

Author: robbie
Date: Mon Jun  6 21:29:36 2011
New Revision: 1132783

URL: http://svn.apache.org/viewvc?rev=1132783&view=rev
Log:
NO-JIRA: update out-of-date URLs for the mailing list archives at Nabble, fix broken svn props url, make XSL stylesheet location a constant and add possible alternative setting for Ubuntu users

Modified:
    qpid/trunk/qpid/doc/book/build-book.sh
    qpid/trunk/qpid/doc/website/content/mailing_lists.html
    qpid/trunk/qpid/doc/website/content/source_repository.html

Modified: qpid/trunk/qpid/doc/book/build-book.sh
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/doc/book/build-book.sh?rev=1132783&r1=1132782&r2=1132783&view=diff
==============================================================================
--- qpid/trunk/qpid/doc/book/build-book.sh (original)
+++ qpid/trunk/qpid/doc/book/build-book.sh Mon Jun  6 21:29:36 2011
@@ -29,6 +29,12 @@
 #
 ########################################################################
 
+# DOCBOOK XSL STYLESHEET LOCATION
+# Fedora, RHEL:
+DOCBOOK_XSL=/usr/share/sgml/docbook/xsl-stylesheets
+# Ubuntu:
+# DOCBOOK_XSL=/usr/share/sgml/docbook/stylesheet/xsl/nwalsh
+
 rm -rf build/$1
 mkdir -p build/$1
 mkdir -p build/$1/html-single
@@ -38,16 +44,16 @@ cp -r src/images build/$1/html-single
 cp -r src/images build/$1/html
 
 # Create single-page .html
-xsltproc --xinclude --stringparam  section.autolabel 1  --stringparam  callout.graphics 0  --stringparam  callout.unicode 0 --stringparam section.label.includes.component.label 1 /usr/share/sgml/docbook/xsl-stylesheets/html/docbook.xsl src/$1.xml >build/$1/html-single/$1.html
+xsltproc --xinclude --stringparam  section.autolabel 1  --stringparam  callout.graphics 0  --stringparam  callout.unicode 0 --stringparam section.label.includes.component.label 1 ${DOCBOOK_XSL}/html/docbook.xsl src/$1.xml >build/$1/html-single/$1.html
 
 # Create chunked .html
 INFILE=$(readlink -f src/$1.xml)
 pushd build/$1/html
-xsltproc --xinclude --stringparam  chunk.section.depth 1  --stringparam  section.autolabel 1  --stringparam  callout.graphics 0  --stringparam  callout.unicode 0 --stringparam section.label.includes.component.label 1 /usr/share/sgml/docbook/xsl-stylesheets/html/chunk.xsl $INFILE
+xsltproc --xinclude --stringparam  chunk.section.depth 1  --stringparam  section.autolabel 1  --stringparam  callout.graphics 0  --stringparam  callout.unicode 0 --stringparam section.label.includes.component.label 1 ${DOCBOOK_XSL}/html/chunk.xsl $INFILE
 popd
 
 # Create the .fo
-xsltproc --xinclude --stringparam  section.autolabel 1  --stringparam  callout.graphics 0  --stringparam  callout.unicode 0 --stringparam section.label.includes.component.label 1 /usr/share/sgml/docbook/xsl-stylesheets/fo/docbook.xsl src/$1.xml >build/$1/pdf/$1.fo
+xsltproc --xinclude --stringparam  section.autolabel 1  --stringparam  callout.graphics 0  --stringparam  callout.unicode 0 --stringparam section.label.includes.component.label 1 ${DOCBOOK_XSL}/fo/docbook.xsl src/$1.xml >build/$1/pdf/$1.fo
 
 # Use Apache FOP to create the PDF
 fop build/$1/pdf/$1.fo build/$1/pdf/$1.pdf

Modified: qpid/trunk/qpid/doc/website/content/mailing_lists.html
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/doc/website/content/mailing_lists.html?rev=1132783&r1=1132782&r2=1132783&view=diff
==============================================================================
--- qpid/trunk/qpid/doc/website/content/mailing_lists.html (original)
+++ qpid/trunk/qpid/doc/website/content/mailing_lists.html Mon Jun  6 21:29:36 2011
@@ -39,7 +39,7 @@
     <li>The user's mailing list is archived. You can view the archive at:
         <ul>
             <li>Apache archive: <a href="http://mail-archives.apache.org/mod_mbox/qpid-users/">http://mail-archives.apache.org/mod_mbox/qpid-users/</a><br/></li>
-            <li>Nabble archive: <a href="http://n2.nabble.com/Apache-Qpid-users-f2158936.html">http://n2.nabble.com/Apache-Qpid-users-f2158936.html</a></li>
+            <li>Nabble archive: <a href="http://apache-qpid-users.2158936.n2.nabble.com">http://apache-qpid-users.2158936.n2.nabble.com</a></li>
         </ul>
     </li>
   </ul>
@@ -57,8 +57,7 @@
     <li>The developer's mailing list is archived. You can view the archive at:
         <ul>
             <li>Apache archive: <a href="http://mail-archives.apache.org/mod_mbox/qpid-dev/">http://mail-archives.apache.org/mod_mbox/qpid-dev/</a></li>
-            <li>Nabble archive: <a href="http://www.nabble.com/Qpid-Developers-f16694.html">http://www.nabble.com/Qpid-Developers-f16694.html</a><br/>
-            and <a href="http://n2.nabble.com/Apache-Qpid-developers-f2158895.html">http://n2.nabble.com/Apache-Qpid-developers-f2158895.html</a></li>
+            <li>Nabble archive: <a href="http://apache-qpid-developers.2158895.n2.nabble.com">http://apache-qpid-developers.2158895.n2.nabble.com</a></li>
         </ul>
     </li>
   </ul>

Modified: qpid/trunk/qpid/doc/website/content/source_repository.html
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/doc/website/content/source_repository.html?rev=1132783&r1=1132782&r2=1132783&view=diff
==============================================================================
--- qpid/trunk/qpid/doc/website/content/source_repository.html (original)
+++ qpid/trunk/qpid/doc/website/content/source_repository.html Mon Jun  6 21:29:36 2011
@@ -69,6 +69,6 @@ git clone http://git.apache.org/qpid.git
   <p>When adding files to subversion, it's important that your subversion client is properly setup to the appropriate subversion properties are set.  The client can do it automatically by modifying the auto-props section of the subversion config file.   Use the contents of:</p>
 
 <pre>
-http://svn.apache.org/repos/asf/qpid/trunk/etc/svn-auto-props
+http://svn.apache.org/repos/asf/qpid/trunk/qpid/etc/svn-auto-props
 </pre>
 </div>



---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:commits-subscribe@qpid.apache.org