[jboss-cvs] JBossAS SVN: r98061 - 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:24:40 EST 2009


Author: laubai
Date: 2009-12-20 23:24:39 -0500 (Sun, 20 Dec 2009)
New Revision: 98061

Modified:
   projects/docs/enterprise/5.0/Security_Guide/en-US/Authentication_Manager.xml
   projects/docs/enterprise/5.0/Security_Guide/en-US/Authorization_Manager.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/JBoss_Security_Integration_Guide.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:
Removed en-US lang property in book tag and updated po files.

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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/Authentication_Manager.xml	2009-12-21 04:24:39 UTC (rev 98061)
@@ -8,7 +8,7 @@
   The Authentication Manager provides authentication support to a security-conscious subsystem, and can be obtained from the <literal>SecurityContext</literal>.
   </para>
 
-  <programlisting>package org.jboss.security;
+  <programlisting><![CDATA[package org.jboss.security;
 
 import java.security.Principal;
 import java.util.Map;
@@ -94,8 +94,8 @@
     *                   assertions that may be relevant can be passed here.
     * @return principal from a target security domain
     */
-   Principal getTargetPrincipal(Principal anotherDomainPrincipal, Map&lt;String,Object&gt; contextMap);
-}</programlisting>
+   Principal getTargetPrincipal(Principal anotherDomainPrincipal, Map<String,Object> contextMap);
+}]]></programlisting>
 
   <para><literal>getActiveSubject</literal> is a deprecated API which was used to determine the <literal>subject</literal>.</para>
 

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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/Authorization_Manager.xml	2009-12-21 04:24:39 UTC (rev 98061)
@@ -7,7 +7,8 @@
   <para><literal>AuthorizationManager</literal> is an interface that provides the fine-grained aspects of authorization to a security-conscious subsystem. It is obtained from the <literal>SecurityContext</literal>.
   </para>
 
-  <programlisting> package org.jboss.security; 
+  <programlisting><![CDATA[
+package org.jboss.security; 
 
 import java.security.Principal;
 import java.security.acl.Group;
@@ -33,7 +34,7 @@
    /** Validates the application domain roles to which the operational
    environment Principal belongs.
    @param principal - the caller principal as known in the operation environment.
-   @param roles - the Set&lt;Principal&gt; for the application domain roles that the
+   @param roles - the Set<Principal> for the application domain roles that the
     principal will be validated against.
    @return true if the principal has at least one of the roles in the roles set,
        otherwise false.
@@ -42,7 +43,7 @@
    
    
    /** Returns the set of domain roles assigned to the principal.
-   @return The Set&lt;Principal&gt; for the application domain roles that the
+   @return The Set<Principal> for the application domain roles that the
     principal has been assigned.
     */
    public Set getUserRoles(Principal principal); 
@@ -59,7 +60,8 @@
     * @return roles from the target domain
     */
    public Group getTargetRoles(Principal targetPrincipal, Map contextMap);
- }</programlisting>
+ }
+]]></programlisting>
 
   <para>The Resource interface looks like this:</para>
 
@@ -176,7 +178,7 @@
 
   <para>The Resource interface identifies resources that require authorization:</para>
 
-  <programlisting>  * JBoss, Home of Professional Open Source
+  <programlisting><![CDATA[  * JBoss, Home of Professional Open Source
   * Copyright 2005, JBoss Inc., and individual contributors as indicated
   * by the @authors tag. See the copyright.txt in the distribution for a
   * full listing of individual contributors.
@@ -202,7 +204,7 @@
 
 /**
  *  Resource that is subject to Authorization Decisions
- *  @author &lt;a href="mailto:Anil.Saldhana at jboss.org"&gt;Anil Saldhana&lt;/a&gt;
+ *  @author <a href="mailto:Anil.Saldhana at jboss.org">Anil Saldhana</a>
  *  @version $Revision$
  */
 public interface Resource
@@ -212,7 +214,7 @@
    
    //Return the contextual map
    public Map getMap(); 
-}</programlisting>
+}]]></programlisting>
 
   <para>For example, the EJB Container authorization uses a resource called <literal>EJBResource</literal>, and the Web Container uses the <literal>WebResource</literal>.</para>
 </chapter>

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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/Feedback.xml	2009-12-21 04:24:39 UTC (rev 98061)
@@ -5,7 +5,7 @@
 <chapter id="Feedback">
 	<title>Feedback</title>
 	<para>
-			If you spot a typo in this guide, or if you have thought of a way to make this manual better, we would love to hear from you! Submit a report in <ulink url="http://jira.jboss.com/jira/browse/JBPAPP">JIRA</ulink> against the Product: JBoss Enterprise Application Platform, Version: <replaceable>&lt;version&gt;</replaceable>, Component: <emphasis>Doc</emphasis>. If you have a suggestion for improving the documentation, try to be as specific as possible. If you have found an error, include the section number and some of the surrounding text so we can find it easily.
+			If you spot a typo in this guide, or if you have thought of a way to make this manual better, we would love to hear from you! Submit a report in <ulink url="http://jira.jboss.com/jira/browse/JBPAPP">JIRA</ulink> against the Product: JBoss Enterprise Application Platform, Version: <replaceable>5.0.0</replaceable>, Component: <emphasis>Documentation</emphasis>. If you have a suggestion for improving the documentation, try to be as specific as possible. If you have found an error, include the section number and some of the surrounding text so we can find it easily.
 	</para>
 </chapter>
 

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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/Identity_Trust_Context.xml	2009-12-21 04:24:39 UTC (rev 98061)
@@ -8,7 +8,7 @@
     The <literal>IdentityTrust</literal> Context contains the <literal>IdentityTrustModule</literal>s.
   </para>
 
-  <programlisting>package org.jboss.security.identitytrust;
+  <programlisting><![CDATA[package org.jboss.security.identitytrust;
 
 import java.util.ArrayList;
 import java.util.HashMap;
@@ -61,7 +61,7 @@
    /**
     * List of Identity Trust Modules
     */
-   protected List&lt;IdentityTrustModule&gt; modules = new ArrayList&lt;IdentityTrustModule&gt;();
+   protected List<IdentityTrustModule> modules = new ArrayList<IdentityTrustModule>();
    
    /**
     * Control Flags for the individual modules
@@ -75,7 +75,7 @@
     * @throws IdentityTrustException
     */
    public abstract TrustDecision isTrusted() throws IdentityTrustException;
-}</programlisting>
+}]]></programlisting>
 
   <para>
     The context contains a list of modules that handle trust-based decisions.

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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/en-US/JBoss_Security_Integration_Guide.xml	2009-12-21 04:24:39 UTC (rev 98061)
@@ -2,7 +2,7 @@
 <!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">
+<book id="JBoss_Security_Integration_Guide">
 
   <xi:include href="Book_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
 <!--  <xi:include href="" xmlns:xi="http://www.w3.org/2001/XInclude" />-->

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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Audit_Manager.pot	2009-12-21 04:24:39 UTC (rev 98061)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T04:00:36\n"
-"PO-Revision-Date: 2009-12-21T04:00:36\n"
+"POT-Creation-Date: 2009-12-21T04:20:45\n"
+"PO-Revision-Date: 2009-12-21T04:20:45\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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Authentication_Manager.pot	2009-12-21 04:24:39 UTC (rev 98061)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T04:00:36\n"
-"PO-Revision-Date: 2009-12-21T04:00:36\n"
+"POT-Creation-Date: 2009-12-21T04:20:45\n"
+"PO-Revision-Date: 2009-12-21T04:20:45\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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Author_Group.pot	2009-12-21 04:24:39 UTC (rev 98061)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T04:00:36\n"
-"PO-Revision-Date: 2009-12-21T04:00:36\n"
+"POT-Creation-Date: 2009-12-21T04:20:45\n"
+"PO-Revision-Date: 2009-12-21T04:20:45\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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Authorization_Manager.pot	2009-12-21 04:24:39 UTC (rev 98061)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T04:00:36\n"
-"PO-Revision-Date: 2009-12-21T04:00:36\n"
+"POT-Creation-Date: 2009-12-21T04:20:45\n"
+"PO-Revision-Date: 2009-12-21T04:20:45\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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Book_Info.pot	2009-12-21 04:24:39 UTC (rev 98061)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T04:00:36\n"
-"PO-Revision-Date: 2009-12-21T04:00:36\n"
+"POT-Creation-Date: 2009-12-21T04:20:45\n"
+"PO-Revision-Date: 2009-12-21T04:20:45\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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Example_Audit.pot	2009-12-21 04:24:39 UTC (rev 98061)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T04:00:36\n"
-"PO-Revision-Date: 2009-12-21T04:00:36\n"
+"POT-Creation-Date: 2009-12-21T04:20:45\n"
+"PO-Revision-Date: 2009-12-21T04:20:45\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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Example_Authentication.pot	2009-12-21 04:24:39 UTC (rev 98061)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T04:00:36\n"
-"PO-Revision-Date: 2009-12-21T04:00:36\n"
+"POT-Creation-Date: 2009-12-21T04:20:45\n"
+"PO-Revision-Date: 2009-12-21T04:20:45\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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Example_Authorization.pot	2009-12-21 04:24:39 UTC (rev 98061)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T04:00:36\n"
-"PO-Revision-Date: 2009-12-21T04:00:36\n"
+"POT-Creation-Date: 2009-12-21T04:20:45\n"
+"PO-Revision-Date: 2009-12-21T04:20:45\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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Feedback.pot	2009-12-21 04:24:39 UTC (rev 98061)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T04:00:36\n"
-"PO-Revision-Date: 2009-12-21T04:00:36\n"
+"POT-Creation-Date: 2009-12-21T04:20:45\n"
+"PO-Revision-Date: 2009-12-21T04:20:45\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: None\n"
 "MIME-Version: 1.0\n"
@@ -19,6 +19,6 @@
 
 #. Tag: para
 #, no-c-format
-msgid "If you spot a typo in this guide, or if you have thought of a way to make this manual better, we would love to hear from you! Submit a report in <ulink url=\"http://jira.jboss.com/jira/browse/JBPAPP\">JIRA</ulink> against the Product: JBoss Enterprise Application Platform, Version: <replaceable>&lt;version&gt;</replaceable>, Component: <emphasis>Doc</emphasis>. If you have a suggestion for improving the documentation, try to be as specific as possible. If you have found an error, include the section number and some of the surrounding text so we can find it easily."
+msgid "If you spot a typo in this guide, or if you have thought of a way to make this manual better, we would love to hear from you! Submit a report in <ulink url=\"http://jira.jboss.com/jira/browse/JBPAPP\">JIRA</ulink> against the Product: JBoss Enterprise Application Platform, Version: <replaceable>5.0.0</replaceable>, Component: <emphasis>Documentation</emphasis>. If you have a suggestion for improving the documentation, try to be as specific as possible. If you have found an error, include the section number and some of the surrounding text so we can find it easily."
 msgstr ""
 

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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Identity_Trust_Context.pot	2009-12-21 04:24:39 UTC (rev 98061)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T04:00:36\n"
-"PO-Revision-Date: 2009-12-21T04:00:36\n"
+"POT-Creation-Date: 2009-12-21T04:20:45\n"
+"PO-Revision-Date: 2009-12-21T04:20:45\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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Identity_Trust_Manager.pot	2009-12-21 04:24:39 UTC (rev 98061)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T04:00:36\n"
-"PO-Revision-Date: 2009-12-21T04:00:36\n"
+"POT-Creation-Date: 2009-12-21T04:20:45\n"
+"PO-Revision-Date: 2009-12-21T04:20:45\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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/JBossSX_Authentication_Manager.pot	2009-12-21 04:24:39 UTC (rev 98061)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T04:00:36\n"
-"PO-Revision-Date: 2009-12-21T04:00:36\n"
+"POT-Creation-Date: 2009-12-21T04:20:45\n"
+"PO-Revision-Date: 2009-12-21T04:20:45\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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/JBossSX_Authorization_Manager.pot	2009-12-21 04:24:39 UTC (rev 98061)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T04:00:36\n"
-"PO-Revision-Date: 2009-12-21T04:00:36\n"
+"POT-Creation-Date: 2009-12-21T04:20:45\n"
+"PO-Revision-Date: 2009-12-21T04:20:45\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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/JBossSX_Default_Implementation.pot	2009-12-21 04:24:39 UTC (rev 98061)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T04:00:36\n"
-"PO-Revision-Date: 2009-12-21T04:00:36\n"
+"POT-Creation-Date: 2009-12-21T04:20:45\n"
+"PO-Revision-Date: 2009-12-21T04:20:45\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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/JBoss_Security_Integration_Guide.pot	2009-12-21 04:24:39 UTC (rev 98061)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T04:00:36\n"
-"PO-Revision-Date: 2009-12-21T04:00:36\n"
+"POT-Creation-Date: 2009-12-21T04:20:45\n"
+"PO-Revision-Date: 2009-12-21T04:20:45\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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Mapping_Manager.pot	2009-12-21 04:24:39 UTC (rev 98061)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T04:00:36\n"
-"PO-Revision-Date: 2009-12-21T04:00:36\n"
+"POT-Creation-Date: 2009-12-21T04:20:45\n"
+"PO-Revision-Date: 2009-12-21T04:20:45\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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Revision_History.pot	2009-12-21 04:24:39 UTC (rev 98061)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T04:00:36\n"
-"PO-Revision-Date: 2009-12-21T04:00:36\n"
+"POT-Creation-Date: 2009-12-21T04:20:45\n"
+"PO-Revision-Date: 2009-12-21T04:20:45\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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Security_Cache.pot	2009-12-21 04:24:39 UTC (rev 98061)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T04:00:36\n"
-"PO-Revision-Date: 2009-12-21T04:00:36\n"
+"POT-Creation-Date: 2009-12-21T04:20:45\n"
+"PO-Revision-Date: 2009-12-21T04:20:45\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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Security_Client.pot	2009-12-21 04:24:39 UTC (rev 98061)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T04:00:36\n"
-"PO-Revision-Date: 2009-12-21T04:00:36\n"
+"POT-Creation-Date: 2009-12-21T04:20:45\n"
+"PO-Revision-Date: 2009-12-21T04:20:45\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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Security_Configuration.pot	2009-12-21 04:24:39 UTC (rev 98061)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T04:00:36\n"
-"PO-Revision-Date: 2009-12-21T04:00:36\n"
+"POT-Creation-Date: 2009-12-21T04:20:45\n"
+"PO-Revision-Date: 2009-12-21T04:20:45\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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Security_Context.pot	2009-12-21 04:24:39 UTC (rev 98061)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T04:00:36\n"
-"PO-Revision-Date: 2009-12-21T04:00:36\n"
+"POT-Creation-Date: 2009-12-21T04:20:45\n"
+"PO-Revision-Date: 2009-12-21T04:20:45\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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Security_Context_Association.pot	2009-12-21 04:24:39 UTC (rev 98061)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T04:00:36\n"
-"PO-Revision-Date: 2009-12-21T04:00:36\n"
+"POT-Creation-Date: 2009-12-21T04:20:45\n"
+"PO-Revision-Date: 2009-12-21T04:20:45\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 04:14:57 UTC (rev 98060)
+++ projects/docs/enterprise/5.0/Security_Guide/pot/Security_Context_Factory.pot	2009-12-21 04:24:39 UTC (rev 98061)
@@ -4,8 +4,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 0\n"
-"POT-Creation-Date: 2009-12-21T04:00:36\n"
-"PO-Revision-Date: 2009-12-21T04:00:36\n"
+"POT-Creation-Date: 2009-12-21T04:20:45\n"
+"PO-Revision-Date: 2009-12-21T04:20:45\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: None\n"
 "MIME-Version: 1.0\n"




More information about the jboss-cvs-commits mailing list