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 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
"http://www.w3.org/TR/html4/loose.dtd";>
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>JSPWiki: ACL</title>
+</head>
+<body>
+
+<p>Authorizer implementation.</p>
+
+<h3>Package Specification</h3>
+
+<p>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.</p>
+
+<h3>Related Documentation</h3>
+
+</body>
+</html>
\ 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 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
"http://www.w3.org/TR/html4/loose.dtd";>
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>Insert title here</title>
+</head>
+<body>
+
+<p>Authentication, Authorization and the third A thing.</p>
+
+<h3>Package Specification</h3>
+
+<p>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.</p>
+
+<h3>Related Documentation</h3>
+
+TBA.
+
+</body>
+</html>
\ No newline at end of file


Reply via email to