Return-Path: Delivered-To: apmail-incubator-jspwiki-commits-archive@locus.apache.org Received: (qmail 42941 invoked from network); 7 Jun 2008 11:25:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 7 Jun 2008 11:25:51 -0000 Received: (qmail 62819 invoked by uid 500); 7 Jun 2008 11:25:54 -0000 Delivered-To: apmail-incubator-jspwiki-commits-archive@incubator.apache.org Received: (qmail 62810 invoked by uid 500); 7 Jun 2008 11:25:54 -0000 Mailing-List: contact jspwiki-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: jspwiki-dev@incubator.apache.org Delivered-To: mailing list jspwiki-commits@incubator.apache.org Received: (qmail 62801 invoked by uid 99); 7 Jun 2008 11:25:54 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Jun 2008 04:25:54 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Jun 2008 11:25:06 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4CEEC2388A26; Sat, 7 Jun 2008 04:25:28 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r664323 - in /incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth: authorize/JDBCGroupDatabase.java authorize/package.html package.html Date: Sat, 07 Jun 2008 11:25:28 -0000 To: jspwiki-commits@incubator.apache.org From: jalkanen@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080607112528.4CEEC2388A26@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jalkanen Date: Sat Jun 7 04:25:27 2008 New Revision: 664323 URL: http://svn.apache.org/viewvc?rev=664323&view=rev Log: Various Javadoc, Java5, checkstyle, and comment fixes. Added: incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth/authorize/package.html incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth/package.html Modified: incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth/authorize/JDBCGroupDatabase.java Modified: incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth/authorize/JDBCGroupDatabase.java URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth/authorize/JDBCGroupDatabase.java?rev=664323&r1=664322&r2=664323&view=diff ============================================================================== --- incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth/authorize/JDBCGroupDatabase.java (original) +++ incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth/authorize/JDBCGroupDatabase.java Sat Jun 7 04:25:27 2008 @@ -299,7 +299,7 @@ { try { - conn.close(); + if( conn != null ) conn.close(); } catch( Exception e ) { @@ -357,7 +357,7 @@ { try { - conn.close(); + if( conn != null ) conn.close(); } catch( Exception e ) { @@ -466,7 +466,7 @@ { try { - conn.close(); + if( conn != null ) conn.close(); } catch( Exception e ) { @@ -546,7 +546,7 @@ { try { - conn.close(); + if( conn != null ) conn.close(); } catch( Exception e ) { @@ -576,7 +576,7 @@ { try { - conn.close(); + if( conn != null ) conn.close(); } catch( Exception e ) { @@ -652,7 +652,7 @@ { try { - conn.close(); + if( conn != null ) conn.close(); } catch( Exception e ) { @@ -706,7 +706,7 @@ { try { - conn.close(); + if( conn != null ) conn.close(); } catch( Exception e ) { Added: incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth/authorize/package.html URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth/authorize/package.html?rev=664323&view=auto ============================================================================== --- incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth/authorize/package.html (added) +++ incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth/authorize/package.html Sat Jun 7 04:25:27 2008 @@ -0,0 +1,20 @@ + + + + +JSPWiki: ACL + + + +

Authorizer implementation.

+ +

Package Specification

+ +

Authorizers are classes which figure out whether a given user matches a given password, +and whether they should be let into the wiki in the first place. This package also contains +group management.

+ +

Related Documentation

+ + + \ No newline at end of file Added: incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth/package.html URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth/package.html?rev=664323&view=auto ============================================================================== --- incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth/package.html (added) +++ incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/auth/package.html Sat Jun 7 04:25:27 2008 @@ -0,0 +1,21 @@ + + + + +Insert title here + + + +

Authentication, Authorization and the third A thing.

+ +

Package Specification

+ +

JSPWiki contains a fairly versatile AAA subsystem, with per-page access control. This is the +main package which contains everything which is related to it.

+ +

Related Documentation

+ +TBA. + + + \ No newline at end of file