[jboss-cvs] JBossAS SVN: r98059 - in projects/docs/enterprise/5.0/Security_Guide: pot and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun Dec 20 23:03:57 EST 2009


Author: laubai
Date: 2009-12-20 23:03:56 -0500 (Sun, 20 Dec 2009)
New Revision: 98059

Modified:
   projects/docs/enterprise/5.0/Security_Guide/en-US/Audit_Manager.xml
   projects/docs/enterprise/5.0/Security_Guide/en-US/Authentication_Manager.xml
   projects/docs/enterprise/5.0/Security_Guide/en-US/Author_Group.xml
   projects/docs/enterprise/5.0/Security_Guide/en-US/Authorization_Manager.xml
   projects/docs/enterprise/5.0/Security_Guide/en-US/Book_Info.xml
   projects/docs/enterprise/5.0/Security_Guide/en-US/Example_Audit.xml
   projects/docs/enterprise/5.0/Security_Guide/en-US/Example_Authentication.xml
   projects/docs/enterprise/5.0/Security_Guide/en-US/Example_Authorization.xml
   projects/docs/enterprise/5.0/Security_Guide/en-US/Feedback.xml
   projects/docs/enterprise/5.0/Security_Guide/en-US/Identity_Trust_Context.xml
   projects/docs/enterprise/5.0/Security_Guide/en-US/Identity_Trust_Manager.xml
   projects/docs/enterprise/5.0/Security_Guide/en-US/JBossSX_Authentication_Manager.xml
   projects/docs/enterprise/5.0/Security_Guide/en-US/JBossSX_Authorization_Manager.xml
   projects/docs/enterprise/5.0/Security_Guide/en-US/JBossSX_Default_Implementation.xml
   projects/docs/enterprise/5.0/Security_Guide/en-US/JBoss_Security_Integration_Guide.xml
   projects/docs/enterprise/5.0/Security_Guide/en-US/Mapping_Manager.xml
   projects/docs/enterprise/5.0/Security_Guide/en-US/Revision_History.xml
   projects/docs/enterprise/5.0/Security_Guide/en-US/Security_Cache.xml
   projects/docs/enterprise/5.0/Security_Guide/en-US/Security_Client.xml
   projects/docs/enterprise/5.0/Security_Guide/en-US/Security_Configuration.xml
   projects/docs/enterprise/5.0/Security_Guide/en-US/Security_Context.xml
   projects/docs/enterprise/5.0/Security_Guide/en-US/Security_Context_Association.xml
   projects/docs/enterprise/5.0/Security_Guide/en-US/Security_Context_Factory.xml
   projects/docs/enterprise/5.0/Security_Guide/pot/Audit_Manager.pot
   projects/docs/enterprise/5.0/Security_Guide/pot/Authentication_Manager.pot
   projects/docs/enterprise/5.0/Security_Guide/pot/Author_Group.pot
   projects/docs/enterprise/5.0/Security_Guide/pot/Authorization_Manager.pot
   projects/docs/enterprise/5.0/Security_Guide/pot/Book_Info.pot
   projects/docs/enterprise/5.0/Security_Guide/pot/Example_Audit.pot
   projects/docs/enterprise/5.0/Security_Guide/pot/Example_Authentication.pot
   projects/docs/enterprise/5.0/Security_Guide/pot/Example_Authorization.pot
   projects/docs/enterprise/5.0/Security_Guide/pot/Feedback.pot
   projects/docs/enterprise/5.0/Security_Guide/pot/Identity_Trust_Context.pot
   projects/docs/enterprise/5.0/Security_Guide/pot/Identity_Trust_Manager.pot
   projects/docs/enterprise/5.0/Security_Guide/pot/JBossSX_Authentication_Manager.pot
   projects/docs/enterprise/5.0/Security_Guide/pot/JBossSX_Authorization_Manager.pot
   projects/docs/enterprise/5.0/Security_Guide/pot/JBossSX_Default_Implementation.pot
   projects/docs/enterprise/5.0/Security_Guide/pot/JBoss_Security_Integration_Guide.pot
   projects/docs/enterprise/5.0/Security_Guide/pot/Mapping_Manager.pot
   projects/docs/enterprise/5.0/Security_Guide/pot/Revision_History.pot
   projects/docs/enterprise/5.0/Security_Guide/pot/Security_Cache.pot
   projects/docs/enterprise/5.0/Security_Guide/pot/Security_Client.pot
   projects/docs/enterprise/5.0/Security_Guide/pot/Security_Configuration.pot
   projects/docs/enterprise/5.0/Security_Guide/pot/Security_Context.pot
   projects/docs/enterprise/5.0/Security_Guide/pot/Security_Context_Association.pot
   projects/docs/enterprise/5.0/Security_Guide/pot/Security_Context_Factory.pot
Log:
Updated DTDs and pot file.

Modified: projects/docs/enterprise/5.0/Security_Guide/en-US/Audit_Manager.xml
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/en-US/Audit_Manager.xml	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/Audit_Manager.xml	2009-12-21 04:03:56 UTC (rev 98059)
@@ -1,4 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
 <chapter id="auditmgr">
   <title>Audit Manager</title>
 
@@ -24,7 +26,8 @@
     The <literal>AuditEvent</literal> is the container object for the audit information. The interface looks like this:
   </para>
 
-  <programlisting>package org.jboss.security.audit; 
+  <programlisting><![CDATA[
+package org.jboss.security.audit; 
 
 /**
  *  Holds audit information  
@@ -33,7 +36,7 @@
 {
    private String auditLevel = AuditLevel.INFO;
    
-   private Map&lt;String,Object&gt; contextMap = new HashMap&lt;String,Object&gt;();
+   private Map<String,Object> contextMap = new HashMap<String,Object>();
    
    private Exception underlyingException = null;
    
@@ -42,13 +45,13 @@
       this.auditLevel = level;
    }
              
-   public AuditEvent(String level, Map&lt;String,Object&gt; map)
+   public AuditEvent(String level, Map<String,Object> map)
    {
       this(level);
       this.contextMap = map;
    }
     
-   public AuditEvent(String level, Map&lt;String,Object&gt; map, Exception ex)
+   public AuditEvent(String level, Map<String,Object> map, Exception ex)
    {
       this(level,map);
       this.underlyingException = ex;
@@ -76,7 +79,7 @@
     * Set a non-modifiable Context Map
     * @param cmap Map that is final 
     */
-   public void setContextMap(final Map&lt;String,Object&gt; cmap)
+   public void setContextMap(final Map<String,Object> cmap)
    {                  
       this.contextMap = cmap;
    }
@@ -107,7 +110,7 @@
       return sbu.toString();
    } 
 }
-</programlisting>
+]]></programlisting>
 
   <para>
     The <literal>AuditEvent</literal> contains a <emphasis>context map</emphasis> and an optional <emphasis>exception</emphasis>. This information should be set by the process that uses the auditing framework. The <literal>AuditLevel</literal> defines the level of severity.

Modified: projects/docs/enterprise/5.0/Security_Guide/en-US/Authentication_Manager.xml
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/en-US/Authentication_Manager.xml	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/Authentication_Manager.xml	2009-12-21 04:03:56 UTC (rev 98059)
@@ -1,4 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
 <chapter id="authenticationmgr">
   <title>Authentication Manager</title>
 
@@ -98,4 +100,4 @@
   <para><literal>getActiveSubject</literal> is a deprecated API which was used to determine the <literal>subject</literal>.</para>
 
   <para>The <literal>isValid</literal> method takes a <literal>MessageInfo</literal> object, and lets you validate the message according to the Java Authentication Service Provider Interface for Containers (JSR-196) specification.</para>
-    </chapter>
\ No newline at end of file
+    </chapter>

Modified: projects/docs/enterprise/5.0/Security_Guide/en-US/Author_Group.xml
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/en-US/Author_Group.xml	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/Author_Group.xml	2009-12-21 04:03:56 UTC (rev 98059)
@@ -1,4 +1,4 @@
-<?xml version='1.0'?>
+<?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
 ]>
 

Modified: projects/docs/enterprise/5.0/Security_Guide/en-US/Authorization_Manager.xml
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/en-US/Authorization_Manager.xml	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/Authorization_Manager.xml	2009-12-21 04:03:56 UTC (rev 98059)
@@ -1,4 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
 <chapter id="authorizationmgr">
   <title>Authorization Manager</title>
 

Modified: projects/docs/enterprise/5.0/Security_Guide/en-US/Book_Info.xml
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/en-US/Book_Info.xml	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/Book_Info.xml	2009-12-21 04:03:56 UTC (rev 98059)
@@ -1,5 +1,5 @@
-<?xml version='1.0'?>
-<!DOCTYPE bookinfo PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
 ]>
 
 <bookinfo>

Modified: projects/docs/enterprise/5.0/Security_Guide/en-US/Example_Audit.xml
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/en-US/Example_Audit.xml	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/Example_Audit.xml	2009-12-21 04:03:56 UTC (rev 98059)
@@ -1,4 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
 <chapter id="exampleaudit">
   <title>Example of Auditing</title>
 

Modified: projects/docs/enterprise/5.0/Security_Guide/en-US/Example_Authentication.xml
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/en-US/Example_Authentication.xml	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/Example_Authentication.xml	2009-12-21 04:03:56 UTC (rev 98059)
@@ -1,4 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
 <chapter id="exampleauthentication">
   <title>Example of Authentication</title>
 

Modified: projects/docs/enterprise/5.0/Security_Guide/en-US/Example_Authorization.xml
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/en-US/Example_Authorization.xml	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/Example_Authorization.xml	2009-12-21 04:03:56 UTC (rev 98059)
@@ -1,4 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
 <chapter id="exampleauthorization">
   <title>Example of Authorization</title>
 

Modified: projects/docs/enterprise/5.0/Security_Guide/en-US/Feedback.xml
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/en-US/Feedback.xml	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/Feedback.xml	2009-12-21 04:03:56 UTC (rev 98059)
@@ -1,5 +1,5 @@
-<?xml version='1.0'?>
-<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
 ]>
 
 <chapter id="Feedback">

Modified: projects/docs/enterprise/5.0/Security_Guide/en-US/Identity_Trust_Context.xml
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/en-US/Identity_Trust_Context.xml	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/Identity_Trust_Context.xml	2009-12-21 04:03:56 UTC (rev 98059)
@@ -1,4 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
 <chapter id="identitytrustcontext">
   <title>Identity Trust Context</title>
 

Modified: projects/docs/enterprise/5.0/Security_Guide/en-US/Identity_Trust_Manager.xml
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/en-US/Identity_Trust_Manager.xml	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/Identity_Trust_Manager.xml	2009-12-21 04:03:56 UTC (rev 98059)
@@ -1,4 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
 <chapter id="identitytrustmgr">
   <title>Identity Trust Manager</title>
 

Modified: projects/docs/enterprise/5.0/Security_Guide/en-US/JBossSX_Authentication_Manager.xml
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/en-US/JBossSX_Authentication_Manager.xml	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/JBossSX_Authentication_Manager.xml	2009-12-21 04:03:56 UTC (rev 98059)
@@ -1,4 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
 <chapter id="jbossauthenticationmgr">
   <title>JBoss Authentication Manager</title>
 

Modified: projects/docs/enterprise/5.0/Security_Guide/en-US/JBossSX_Authorization_Manager.xml
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/en-US/JBossSX_Authorization_Manager.xml	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/JBossSX_Authorization_Manager.xml	2009-12-21 04:03:56 UTC (rev 98059)
@@ -1,4 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
 <chapter id="jbossauthorizationmgr">
   <title>JBoss Authorization Manager</title>
 

Modified: projects/docs/enterprise/5.0/Security_Guide/en-US/JBossSX_Default_Implementation.xml
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/en-US/JBossSX_Default_Implementation.xml	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/JBossSX_Default_Implementation.xml	2009-12-21 04:03:56 UTC (rev 98059)
@@ -1,4 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
 <chapter id="defaultimpl">
   <title>JBossSX (Default Implementation)</title>
 

Modified: projects/docs/enterprise/5.0/Security_Guide/en-US/JBoss_Security_Integration_Guide.xml
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/en-US/JBoss_Security_Integration_Guide.xml	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/JBoss_Security_Integration_Guide.xml	2009-12-21 04:03:56 UTC (rev 98059)
@@ -1,5 +1,5 @@
-<?xml version='1.0' encoding='utf-8' ?>
-<!DOCTYPE bookinfo PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
 ]>
 
 <book id="JBoss_Security_Integration_Guide" lang="en-US">

Modified: projects/docs/enterprise/5.0/Security_Guide/en-US/Mapping_Manager.xml
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/en-US/Mapping_Manager.xml	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/Mapping_Manager.xml	2009-12-21 04:03:56 UTC (rev 98059)
@@ -1,4 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
 <chapter id="mappingmgr">
   <title>Mapping Manager</title>
 

Modified: projects/docs/enterprise/5.0/Security_Guide/en-US/Revision_History.xml
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/en-US/Revision_History.xml	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/Revision_History.xml	2009-12-21 04:03:56 UTC (rev 98059)
@@ -1,5 +1,5 @@
-<?xml version='1.0'?>
-<!DOCTYPE appendix PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
 ]>
 
 <appendix id="appe-Publican-Revision_History">

Modified: projects/docs/enterprise/5.0/Security_Guide/en-US/Security_Cache.xml
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/en-US/Security_Cache.xml	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/Security_Cache.xml	2009-12-21 04:03:56 UTC (rev 98059)
@@ -1,4 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
 <chapter id="securitycache">
   <title>Security Cache</title>
 
@@ -50,4 +52,4 @@
    &lt;Y&gt; Y get(T key) throws SecurityCacheException;
 }
 </programlisting>
-</chapter>
\ No newline at end of file
+</chapter>

Modified: projects/docs/enterprise/5.0/Security_Guide/en-US/Security_Client.xml
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/en-US/Security_Client.xml	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/Security_Client.xml	2009-12-21 04:03:56 UTC (rev 98059)
@@ -1,4 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
 <chapter id="securityclient">
   <title>Security Client</title>
 

Modified: projects/docs/enterprise/5.0/Security_Guide/en-US/Security_Configuration.xml
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/en-US/Security_Configuration.xml	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/Security_Configuration.xml	2009-12-21 04:03:56 UTC (rev 98059)
@@ -1,4 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
 <chapter id="securityconfiguration">
   <title>Security Configuration</title>
 

Modified: projects/docs/enterprise/5.0/Security_Guide/en-US/Security_Context.xml
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/en-US/Security_Context.xml	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/Security_Context.xml	2009-12-21 04:03:56 UTC (rev 98059)
@@ -1,4 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
 <chapter id="securitycontext">
   <title>Security Context</title>
 
@@ -303,4 +305,4 @@
     */
    public &lt;T&gt; T getProof(); 
 }</programlisting>
-</chapter>
\ No newline at end of file
+</chapter>

Modified: projects/docs/enterprise/5.0/Security_Guide/en-US/Security_Context_Association.xml
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/en-US/Security_Context_Association.xml	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/Security_Context_Association.xml	2009-12-21 04:03:56 UTC (rev 98059)
@@ -1,4 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
 <chapter id="seccontextassociation">
   <title>Security Context Association</title>
 

Modified: projects/docs/enterprise/5.0/Security_Guide/en-US/Security_Context_Factory.xml
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/en-US/Security_Context_Factory.xml	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/Security_Context_Factory.xml	2009-12-21 04:03:56 UTC (rev 98059)
@@ -1,4 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE authorgroup PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+]>
 <chapter id="seccontextfactory">
   <title>Security Context Factory</title>
 

Modified: projects/docs/enterprise/5.0/Security_Guide/pot/Audit_Manager.pot
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/pot/Audit_Manager.pot	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Audit_Manager.pot	2009-12-21 04:03:56 UTC (rev 98059)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T02:51:41\n"
-"PO-Revision-Date: 2009-12-21T02:51:41\n"
+"POT-Creation-Date: 2009-12-21T04:00:36\n"
+"PO-Revision-Date: 2009-12-21T04:00:36\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: None\n"
 "MIME-Version: 1.0\n"

Modified: projects/docs/enterprise/5.0/Security_Guide/pot/Authentication_Manager.pot
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/pot/Authentication_Manager.pot	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Authentication_Manager.pot	2009-12-21 04:03:56 UTC (rev 98059)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T02:51:41\n"
-"PO-Revision-Date: 2009-12-21T02:51:41\n"
+"POT-Creation-Date: 2009-12-21T04:00:36\n"
+"PO-Revision-Date: 2009-12-21T04:00:36\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: None\n"
 "MIME-Version: 1.0\n"

Modified: projects/docs/enterprise/5.0/Security_Guide/pot/Author_Group.pot
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/pot/Author_Group.pot	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Author_Group.pot	2009-12-21 04:03:56 UTC (rev 98059)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T02:51:41\n"
-"PO-Revision-Date: 2009-12-21T02:51:41\n"
+"POT-Creation-Date: 2009-12-21T04:00:36\n"
+"PO-Revision-Date: 2009-12-21T04:00:36\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: None\n"
 "MIME-Version: 1.0\n"

Modified: projects/docs/enterprise/5.0/Security_Guide/pot/Authorization_Manager.pot
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/pot/Authorization_Manager.pot	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Authorization_Manager.pot	2009-12-21 04:03:56 UTC (rev 98059)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T02:51:41\n"
-"PO-Revision-Date: 2009-12-21T02:51:41\n"
+"POT-Creation-Date: 2009-12-21T04:00:36\n"
+"PO-Revision-Date: 2009-12-21T04:00:36\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: None\n"
 "MIME-Version: 1.0\n"

Modified: projects/docs/enterprise/5.0/Security_Guide/pot/Book_Info.pot
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/pot/Book_Info.pot	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Book_Info.pot	2009-12-21 04:03:56 UTC (rev 98059)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T02:51:41\n"
-"PO-Revision-Date: 2009-12-21T02:51:41\n"
+"POT-Creation-Date: 2009-12-21T04:00:36\n"
+"PO-Revision-Date: 2009-12-21T04:00:36\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: None\n"
 "MIME-Version: 1.0\n"

Modified: projects/docs/enterprise/5.0/Security_Guide/pot/Example_Audit.pot
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/pot/Example_Audit.pot	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Example_Audit.pot	2009-12-21 04:03:56 UTC (rev 98059)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T02:51:41\n"
-"PO-Revision-Date: 2009-12-21T02:51:41\n"
+"POT-Creation-Date: 2009-12-21T04:00:36\n"
+"PO-Revision-Date: 2009-12-21T04:00:36\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: None\n"
 "MIME-Version: 1.0\n"

Modified: projects/docs/enterprise/5.0/Security_Guide/pot/Example_Authentication.pot
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/pot/Example_Authentication.pot	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Example_Authentication.pot	2009-12-21 04:03:56 UTC (rev 98059)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T02:51:41\n"
-"PO-Revision-Date: 2009-12-21T02:51:41\n"
+"POT-Creation-Date: 2009-12-21T04:00:36\n"
+"PO-Revision-Date: 2009-12-21T04:00:36\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: None\n"
 "MIME-Version: 1.0\n"

Modified: projects/docs/enterprise/5.0/Security_Guide/pot/Example_Authorization.pot
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/pot/Example_Authorization.pot	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Example_Authorization.pot	2009-12-21 04:03:56 UTC (rev 98059)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T02:51:41\n"
-"PO-Revision-Date: 2009-12-21T02:51:41\n"
+"POT-Creation-Date: 2009-12-21T04:00:36\n"
+"PO-Revision-Date: 2009-12-21T04:00:36\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: None\n"
 "MIME-Version: 1.0\n"

Modified: projects/docs/enterprise/5.0/Security_Guide/pot/Feedback.pot
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/pot/Feedback.pot	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Feedback.pot	2009-12-21 04:03:56 UTC (rev 98059)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T02:51:41\n"
-"PO-Revision-Date: 2009-12-21T02:51:41\n"
+"POT-Creation-Date: 2009-12-21T04:00:36\n"
+"PO-Revision-Date: 2009-12-21T04:00:36\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: None\n"
 "MIME-Version: 1.0\n"

Modified: projects/docs/enterprise/5.0/Security_Guide/pot/Identity_Trust_Context.pot
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/pot/Identity_Trust_Context.pot	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Identity_Trust_Context.pot	2009-12-21 04:03:56 UTC (rev 98059)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T02:51:41\n"
-"PO-Revision-Date: 2009-12-21T02:51:41\n"
+"POT-Creation-Date: 2009-12-21T04:00:36\n"
+"PO-Revision-Date: 2009-12-21T04:00:36\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: None\n"
 "MIME-Version: 1.0\n"

Modified: projects/docs/enterprise/5.0/Security_Guide/pot/Identity_Trust_Manager.pot
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/pot/Identity_Trust_Manager.pot	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Identity_Trust_Manager.pot	2009-12-21 04:03:56 UTC (rev 98059)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T02:51:41\n"
-"PO-Revision-Date: 2009-12-21T02:51:41\n"
+"POT-Creation-Date: 2009-12-21T04:00:36\n"
+"PO-Revision-Date: 2009-12-21T04:00:36\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: None\n"
 "MIME-Version: 1.0\n"

Modified: projects/docs/enterprise/5.0/Security_Guide/pot/JBossSX_Authentication_Manager.pot
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/pot/JBossSX_Authentication_Manager.pot	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/JBossSX_Authentication_Manager.pot	2009-12-21 04:03:56 UTC (rev 98059)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T02:51:41\n"
-"PO-Revision-Date: 2009-12-21T02:51:41\n"
+"POT-Creation-Date: 2009-12-21T04:00:36\n"
+"PO-Revision-Date: 2009-12-21T04:00:36\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: None\n"
 "MIME-Version: 1.0\n"

Modified: projects/docs/enterprise/5.0/Security_Guide/pot/JBossSX_Authorization_Manager.pot
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/pot/JBossSX_Authorization_Manager.pot	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/JBossSX_Authorization_Manager.pot	2009-12-21 04:03:56 UTC (rev 98059)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T02:51:41\n"
-"PO-Revision-Date: 2009-12-21T02:51:41\n"
+"POT-Creation-Date: 2009-12-21T04:00:36\n"
+"PO-Revision-Date: 2009-12-21T04:00:36\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: None\n"
 "MIME-Version: 1.0\n"

Modified: projects/docs/enterprise/5.0/Security_Guide/pot/JBossSX_Default_Implementation.pot
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/pot/JBossSX_Default_Implementation.pot	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/JBossSX_Default_Implementation.pot	2009-12-21 04:03:56 UTC (rev 98059)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T02:51:41\n"
-"PO-Revision-Date: 2009-12-21T02:51:41\n"
+"POT-Creation-Date: 2009-12-21T04:00:36\n"
+"PO-Revision-Date: 2009-12-21T04:00:36\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: None\n"
 "MIME-Version: 1.0\n"

Modified: projects/docs/enterprise/5.0/Security_Guide/pot/JBoss_Security_Integration_Guide.pot
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/pot/JBoss_Security_Integration_Guide.pot	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/JBoss_Security_Integration_Guide.pot	2009-12-21 04:03:56 UTC (rev 98059)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T02:51:41\n"
-"PO-Revision-Date: 2009-12-21T02:51:41\n"
+"POT-Creation-Date: 2009-12-21T04:00:36\n"
+"PO-Revision-Date: 2009-12-21T04:00:36\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: None\n"
 "MIME-Version: 1.0\n"

Modified: projects/docs/enterprise/5.0/Security_Guide/pot/Mapping_Manager.pot
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/pot/Mapping_Manager.pot	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Mapping_Manager.pot	2009-12-21 04:03:56 UTC (rev 98059)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T02:51:41\n"
-"PO-Revision-Date: 2009-12-21T02:51:41\n"
+"POT-Creation-Date: 2009-12-21T04:00:36\n"
+"PO-Revision-Date: 2009-12-21T04:00:36\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: None\n"
 "MIME-Version: 1.0\n"

Modified: projects/docs/enterprise/5.0/Security_Guide/pot/Revision_History.pot
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/pot/Revision_History.pot	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Revision_History.pot	2009-12-21 04:03:56 UTC (rev 98059)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T02:51:41\n"
-"PO-Revision-Date: 2009-12-21T02:51:41\n"
+"POT-Creation-Date: 2009-12-21T04:00:36\n"
+"PO-Revision-Date: 2009-12-21T04:00:36\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: None\n"
 "MIME-Version: 1.0\n"

Modified: projects/docs/enterprise/5.0/Security_Guide/pot/Security_Cache.pot
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/pot/Security_Cache.pot	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Security_Cache.pot	2009-12-21 04:03:56 UTC (rev 98059)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T02:51:41\n"
-"PO-Revision-Date: 2009-12-21T02:51:41\n"
+"POT-Creation-Date: 2009-12-21T04:00:36\n"
+"PO-Revision-Date: 2009-12-21T04:00:36\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: None\n"
 "MIME-Version: 1.0\n"

Modified: projects/docs/enterprise/5.0/Security_Guide/pot/Security_Client.pot
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/pot/Security_Client.pot	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Security_Client.pot	2009-12-21 04:03:56 UTC (rev 98059)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T02:51:41\n"
-"PO-Revision-Date: 2009-12-21T02:51:41\n"
+"POT-Creation-Date: 2009-12-21T04:00:36\n"
+"PO-Revision-Date: 2009-12-21T04:00:36\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: None\n"
 "MIME-Version: 1.0\n"

Modified: projects/docs/enterprise/5.0/Security_Guide/pot/Security_Configuration.pot
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/pot/Security_Configuration.pot	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Security_Configuration.pot	2009-12-21 04:03:56 UTC (rev 98059)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T02:51:41\n"
-"PO-Revision-Date: 2009-12-21T02:51:41\n"
+"POT-Creation-Date: 2009-12-21T04:00:36\n"
+"PO-Revision-Date: 2009-12-21T04:00:36\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: None\n"
 "MIME-Version: 1.0\n"

Modified: projects/docs/enterprise/5.0/Security_Guide/pot/Security_Context.pot
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/pot/Security_Context.pot	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Security_Context.pot	2009-12-21 04:03:56 UTC (rev 98059)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T02:51:41\n"
-"PO-Revision-Date: 2009-12-21T02:51:41\n"
+"POT-Creation-Date: 2009-12-21T04:00:36\n"
+"PO-Revision-Date: 2009-12-21T04:00:36\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: None\n"
 "MIME-Version: 1.0\n"

Modified: projects/docs/enterprise/5.0/Security_Guide/pot/Security_Context_Association.pot
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/pot/Security_Context_Association.pot	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Security_Context_Association.pot	2009-12-21 04:03:56 UTC (rev 98059)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T02:51:41\n"
-"PO-Revision-Date: 2009-12-21T02:51:41\n"
+"POT-Creation-Date: 2009-12-21T04:00:36\n"
+"PO-Revision-Date: 2009-12-21T04:00:36\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: None\n"
 "MIME-Version: 1.0\n"

Modified: projects/docs/enterprise/5.0/Security_Guide/pot/Security_Context_Factory.pot
===================================================================
--- projects/docs/enterprise/5.0/Security_Guide/pot/Security_Context_Factory.pot	2009-12-21 03:49:32 UTC (rev 98058)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Security_Context_Factory.pot	2009-12-21 04:03:56 UTC (rev 98059)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T02:51:41\n"
-"PO-Revision-Date: 2009-12-21T02:51:41\n"
+"POT-Creation-Date: 2009-12-21T04:00:36\n"
+"PO-Revision-Date: 2009-12-21T04:00:36\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: None\n"
 "MIME-Version: 1.0\n"




More information about the jboss-cvs-commits mailing list