Doc updates
authorScott Cantor <cantor.2@osu.edu>
Thu, 13 Apr 2006 18:19:05 +0000 (18:19 +0000)
committerScott Cantor <cantor.2@osu.edu>
Thu, 13 Apr 2006 18:19:05 +0000 (18:19 +0000)
doc/CREDITS.txt
doc/INSTALL-WIN32.txt
doc/INSTALL.txt
doc/NEWS.txt
doc/README.txt

index 955060f..cbbe94e 100755 (executable)
@@ -16,10 +16,6 @@ Shibboleth Implementation Team
    The Ohio State University
    cantor.2@osu.edu
    
-   Howard Gilbert
-   Yale University
-   Howard.Gilbert@yale.edu
-
    Walter Hoehn
    The University of Memphis
    wassa@memphis.edu
@@ -73,4 +69,7 @@ Thanks to:
     Will Norris (Memphis) for creating the ant IdP install tasks
 
        Ian Young for donating XSLT scripts for converting metadata across
-         Shibboleth versions
\ No newline at end of file
+         Shibboleth versions
+         
+       Many, many community members who have donated time and machines to
+      help test the software and packaging on newer platforms.
index 913ca19..5d17e14 100644 (file)
@@ -1,4 +1,4 @@
-Version 1.3c, shib Library version "6", shibtarget Library Version "5"
+Version 1.3d, shib Library version "6", shibtarget Library Version "5"
 
 This release works with SAML library version "5".
 
index 146b137..955f5ea 100644 (file)
@@ -3,6 +3,8 @@ Information on obtaining and installing binaries can be found at
 http://shibboleth.internet2.edu/
 
 This document provides details for those wishing to build from source.
+The Wiki contains additional information and more up to date build
+notes.
 
 C++ Service Provider
 
@@ -26,7 +28,7 @@ or apparent module conflicts, make sure you've built Apache and any
 modules with threading support and ideally as much dynamically as
 possible.
 
-Apache 1.x does not directly support threads, but you can set the
+Apache 1.3 does not directly support threads, but you can set the
 CFLAGS variable before running configure to include the proper gcc
 thread flag (usually -pthread or -pthreads, depends on your platform).
 
@@ -74,32 +76,25 @@ CVS and run the bootstrap script if you want, or just use a source tarball.
 With the source distribution or the results of your bootstrap:
 
 $ ./configure --prefix=/opt/shibboleth-sp --with-log4cpp=/opt/shibboleth-sp \
-    --enable-apache-13 --with-apxs --enable-apache-20 --with-apxs2 -C
+    --enable-apache-20 -C
 $ make
 $ make install
 
-This will build the Apache 1.x and 2.x modules by extracting build settings
-from apxs. The configure script will look in normal spots for the script
-(/usr/bin/apxs, /usr/local/apache/bin/apxs) but you can point to it so that
-both modules can be built at once.
+This will build the Apache 2.0 modules by extracting build settings
+from apxs. You can use different options to build for other Apache
+versions or specify the location of the apxs script.
 
-If you want to build the modules but not use apxs, you can use the
---without-apxs option, and provide flags using the APXS_PREFIX, APXS_CFLAGS,
-APXS_INCLUDE, APXS_LIBEXEC, and APXS_SYSCONFDIR variables (see the apxs docs
-for some guidance on what these should be).
-
-To test your installation, you can try the shibtest utility, which actually
+To test your installation, you can run the shibtest utility, which actually
 loads your configuration and attempts to obtain attributes from a Shibboleth
-Attribute Authority of your choosing. You indicate to it the identifier of
-the principal to query, and the identifier (providerId) of the origin site,
-and it will use your configuration files to locate the proper AA.
+Attribute Authority. It's not a great tool for testing because normally you
+can't query on a known principal name.
 
 $ set LD_LIBRARY_PATH=/opt/shibboleth-sp/lib; export LD_LIBRARY_PATH
 $ /opt/shibboleth/bin/shibtest -h test-handle \
        -f urn:mace:shibboleth:test:nameIdentifier \
-       -q urn:mace:inqueue:example.edu
+       -q  https://idp.example.org/shibboleth
 
-The example shown uses a built-in test principal, and uses the InQueue
-example origin, which is known to the SP after initial installation.
-You should get some reasonably structured output back that lists some simple
-attributes. An error here is a pretty good sign there's trouble.
+The example shown uses a test principal that is specific to the InQueue
+sample IdP, which is known to the SP after initial installation.
+You should get some reasonably structured output back that lists some
+attributes. Some warnings or errors are normal.
index d1d3abb..2efaedb 100644 (file)
@@ -1,4 +1,11 @@
-12/27/05
+4/15/06
+Version 1.3d
+
+Support for Apache 2.2, improved autoconf and RPM support
+Support for some 64-bit platforms (e.g. x86_64 Linux)
+Misc. fixes and small enhancements
+
+12/15/06
 Version 1.3c
 
 Updated fix for secadv 20051227
index d35100c..5036bd3 100644 (file)
@@ -1,5 +1,5 @@
-12/27/05
-Version 1.3c
+4/15/06
+Version 1.3d
 
 Welcome to Internet2's Shibboleth
 
@@ -13,10 +13,10 @@ A wealth of information about Shibboleth can be found at
 http://shibboleth.internet2.edu/
 
 Shibboleth is divided into identity and service provider components, with the
-IdP in Java and the SP in C and C++. A Java SP is in development.
+IdP in Java and the SP in C and C++.
 
 Source and binary distributions are available from
-http://wayf.internet2.edu/shibboleth/
+http://shibboleth.internet2.edu/downloads/
 
 A CVS is available for anonymous access, as described at the Shibboleth
 site. Mailing lists and a bugzilla (http://bugzilla.internet2.edu/) are also
@@ -24,5 +24,5 @@ available. Not all of the lists are open, but a general support list is
 available and is open.
 
 For basic information on installing binaries and deploying Shibboleth, refer
-to the web site for the latest documentation. For source build assistance,
-see the INSTALL.txt file.
+to the web site and Wiki for the latest documentation. For source build assistance,
+see the INSTALL.txt file and the Wiki.