tomee git commit: TOMEE-1769 allow to configure formatter pattern on LocalFileHandler

2016-04-05 Thread rmannibucau
Repository: tomee
Updated Branches:
  refs/heads/master 7da1bd748 -> 1cbe8e350


TOMEE-1769 allow to configure formatter pattern on LocalFileHandler


Project: http://git-wip-us.apache.org/repos/asf/tomee/repo
Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/1cbe8e35
Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/1cbe8e35
Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/1cbe8e35

Branch: refs/heads/master
Commit: 1cbe8e350ad3f78665bceb661437e711ac541790
Parents: 7da1bd7
Author: Romain manni-Bucau 
Authored: Tue Apr 5 19:30:18 2016 +0200
Committer: Romain manni-Bucau 
Committed: Tue Apr 5 19:30:18 2016 +0200

--
 .../jul/handler/rotating/LocalFileHandler.java  | 120 ++-
 .../LocalFileHandlerPatternFormatterTest.java   |  48 
 2 files changed, 165 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tomee/blob/1cbe8e35/tomee/tomee-juli/src/main/java/org/apache/tomee/jul/handler/rotating/LocalFileHandler.java
--
diff --git 
a/tomee/tomee-juli/src/main/java/org/apache/tomee/jul/handler/rotating/LocalFileHandler.java
 
b/tomee/tomee-juli/src/main/java/org/apache/tomee/jul/handler/rotating/LocalFileHandler.java
index b662b6d..fcb557c 100644
--- 
a/tomee/tomee-juli/src/main/java/org/apache/tomee/jul/handler/rotating/LocalFileHandler.java
+++ 
b/tomee/tomee-juli/src/main/java/org/apache/tomee/jul/handler/rotating/LocalFileHandler.java
@@ -26,10 +26,13 @@ import java.io.InputStream;
 import java.io.OutputStream;
 import java.io.OutputStreamWriter;
 import java.io.PrintWriter;
+import java.io.StringWriter;
 import java.io.UnsupportedEncodingException;
 import java.nio.file.Files;
 import java.nio.file.attribute.BasicFileAttributes;
 import java.sql.Timestamp;
+import java.util.Date;
+import java.util.Locale;
 import java.util.concurrent.TimeUnit;
 import java.util.concurrent.locks.Lock;
 import java.util.concurrent.locks.ReadWriteLock;
@@ -42,7 +45,6 @@ import java.util.logging.Handler;
 import java.util.logging.Level;
 import java.util.logging.LogManager;
 import java.util.logging.LogRecord;
-import java.util.logging.SimpleFormatter;
 import java.util.regex.Pattern;
 import java.util.zip.Deflater;
 import java.util.zip.GZIPOutputStream;
@@ -67,6 +69,8 @@ import java.util.zip.ZipOutputStream;
  * | archiveOlderThan  | -1 days   
| how many days files are kept before being compressed
  * | purgeOlderThan| -1 days   
| how many days files are kept before being deleted, note: it applies on 
archives and not log files so 2 days of archiving and 3 days of purge makes it 
deleted after 5 days.
  * | compressionLevel  | -1
| In case of zip archiving the zip compression level (-1 for off or 0-9).
+ * | formatterPattern  | - 
| SimpleFormatter pattern (ignored if formatter is provided).
+ * | formatterLocale   | - 
| Locale to use.
  * |===
  * 
  * NOTE: archiving and purging are done only when a file is rotated, it means 
it can be ignored during days if there is no logging activity.
@@ -172,10 +176,10 @@ public class LocalFileHandler extends Handler {
 try {
 
setFormatter(Formatter.class.cast(cl.loadClass(formatterName).newInstance()));
 } catch (final Exception e) {
-setFormatter(new SimpleFormatter());
+setFormatter(newSimpleFormatter(className));
 }
 } else {
-setFormatter(new SimpleFormatter());
+setFormatter(newSimpleFormatter(className));
 }
 
 setErrorManager(new ErrorManager());
@@ -183,6 +187,63 @@ public class LocalFileHandler extends Handler {
 lastTimestamp = System.currentTimeMillis();
 }
 
+private Formatter newSimpleFormatter(final String className) {
+final String defaultFormat = 
System.getProperty("java.util.logging.SimpleFormatter.format", "%1$tb %1$td, 
%1$tY %1$tl:%1$tM:%1$tS %1$Tp %2$s%n%4$s: %5$s%6$s%n");
+final String format = getProperty(className + ".formatterPattern", 
defaultFormat);
+final String locale = getProperty(className + ".formatterLocale", 
null);
+return new PatternFormatter(format, locale == null ? 
Locale.getDefault() : newLocale(locale));
+}
+
+private Locale newLocale(final String str) { // LocaleUtils [lang3]
+if (str == null) {
+return null;
+}
+if (str.isEmpty()) {
+return new Locale("", "");
+}
+if (str.contains("#")) {
+throw new 

[jira] [Created] (TOMEE-1769) Allow to configure formatter pattern on LocalfileHandler

2016-04-05 Thread Romain Manni-Bucau (JIRA)
Romain Manni-Bucau created TOMEE-1769:
-

 Summary: Allow to configure formatter pattern on LocalfileHandler
 Key: TOMEE-1769
 URL: https://issues.apache.org/jira/browse/TOMEE-1769
 Project: TomEE
  Issue Type: New Feature
Reporter: Romain Manni-Bucau
Assignee: Romain Manni-Bucau
 Fix For: 7.0.0-M4






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (TOMEE-1769) Allow to configure formatter pattern on LocalfileHandler

2016-04-05 Thread Romain Manni-Bucau (JIRA)

 [ 
https://issues.apache.org/jira/browse/TOMEE-1769?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Romain Manni-Bucau updated TOMEE-1769:
--
Description: 
 * formatterPattern: SimpleFormatter/java.util.Formatter pattern (ignored if 
formatter property is provided).
 * formatterLocale: Locale to use (default to Locale.getDefault()).

> Allow to configure formatter pattern on LocalfileHandler
> 
>
> Key: TOMEE-1769
> URL: https://issues.apache.org/jira/browse/TOMEE-1769
> Project: TomEE
>  Issue Type: New Feature
>Reporter: Romain Manni-Bucau
>Assignee: Romain Manni-Bucau
> Fix For: 7.0.0-M4
>
>
>  * formatterPattern: SimpleFormatter/java.util.Formatter pattern (ignored if 
> formatter property is provided).
>  * formatterLocale: Locale to use (default to Locale.getDefault()).



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Resolved] (TOMEE-1768) Mention CVE-2015-8581 as resolved vulnerability next to CVE-2016-0779

2016-04-05 Thread Romain Manni-Bucau (JIRA)

 [ 
https://issues.apache.org/jira/browse/TOMEE-1768?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Romain Manni-Bucau resolved TOMEE-1768.
---
Resolution: Fixed

> Mention CVE-2015-8581 as resolved vulnerability next to CVE-2016-0779
> -
>
> Key: TOMEE-1768
> URL: https://issues.apache.org/jira/browse/TOMEE-1768
> Project: TomEE
>  Issue Type: Documentation
>Affects Versions: 1.7.4, 7.0.0-M3
>Reporter: Robert Panzer
>  Labels: documentation
> Attachments: patch.diff
>
>
> The current documentation mentions at 
> http://openejb.apache.org/security/tomee.html CVE-2016-0779 [1] as a 
> vulnerability resolved in TomEE 1.7.4 and 7.0.0-M3.
> CVE-2016-0779 seems to be a duplicate of CVE-2015-8581 [2].
> Therefore CVE-2015-8581 should also be mentioned on this page.
> I will provide a patch for this adding a link to the other vulnerability.
> [1] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-0779
> [2] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2015-8581



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


svn commit: r1737824 - /tomee/site/trunk/content/security/tomee.mdtext

2016-04-05 Thread rmannibucau
Author: rmannibucau
Date: Tue Apr  5 11:39:26 2016
New Revision: 1737824

URL: http://svn.apache.org/viewvc?rev=1737824=rev
Log:
mentionning CVE-2015-8581, thanks Robert Panzer for the patch

Modified:
tomee/site/trunk/content/security/tomee.mdtext

Modified: tomee/site/trunk/content/security/tomee.mdtext
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/security/tomee.mdtext?rev=1737824=1737823=1737824=diff
==
--- tomee/site/trunk/content/security/tomee.mdtext (original)
+++ tomee/site/trunk/content/security/tomee.mdtext Tue Apr  5 11:39:26 2016
@@ -29,7 +29,11 @@ that even if fixed in 7.0.0-M2 we recomm
 This issue only affects you if you rely on EJBd protocol (proprietary remote 
EJB protocol). This one one is not activated by default on the 7.x series
 but it was on the 1.x ones.
 
-The related CVE number is 
[CVE-2016-0779](http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-0779): 
the EJBd protocol provided by TomEE can exploit the 0-day vulnerability.
+The related CVE numbers are:
+
+* 
[CVE-2016-0779](http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2016-0779): 
The EJBd protocol provided by TomEE can exploit the 0-day vulnerability.
+* 
[CVE-2015-8581](http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2015-8581): 
The EjbObjectInputStream class in Apache TomEE allows remote attackers to 
execute arbitrary commands via a serialized Java stream.
+
 This has been fixed in commit 58cdbbef9c77ab2b44870f9d606593b49cde76d9.
 
 Check [properties configuration](/properties-listing.html) and [Ejbd 
transport](/ejbd-transport.html) for more details (tomee.serialization.class.* 
and tomee.remote.support).




svn commit: r1737782 [33/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/download.pdf
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/download.pdf?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/download.pdf (added)
+++ tomee/site/trunk/content/ng/download.pdf Tue Apr  5 06:43:46 2016
@@ -0,0 +1,91899 @@
+%PDF-1.3
+%
+1 0 obj
+<< /Title (Downloads)
+/Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/CreationDate (D:20160323095156+01'00')
+/ModDate (D:20160323095156+01'00')
+>>
+endobj
+2 0 obj
+<< /Type /Catalog
+/Pages 3 0 R
+/Outlines 943 0 R
+/PageLabels 945 0 R
+/PageMode /UseOutlines
+/OpenAction [7 0 R /FitH 842.89]
+/ViewerPreferences << /DisplayDocTitle true
+>>
+>>
+endobj
+3 0 obj
+<< /Type /Pages
+/Count 33
+/Kids [7 0 R 10 0 R 41 0 R 71 0 R 101 0 R 131 0 R 161 0 R 191 0 R 221 0 R 251 
0 R 281 0 R 311 0 R 341 0 R 371 0 R 401 0 R 431 0 R 461 0 R 491 0 R 521 0 R 551 
0 R 581 0 R 611 0 R 641 0 R 671 0 R 701 0 R 731 0 R 761 0 R 787 0 R 813 0 R 839 
0 R 869 0 R 895 0 R 921 0 R]
+>>
+endobj
+4 0 obj
+<< /Length 2
+>>
+stream
+q
+
+endstream
+endobj
+5 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 4 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+>>
+>>
+endobj
+6 0 obj
+<< /Length 205
+>>
+stream
+q
+/DeviceRGB cs
+0.600 0.600 0.600 scn
+/DeviceRGB CS
+0.600 0.600 0.600 SCN
+
+BT
+403.318996 351.364496 Td
+/F1.0 27 Tf
+<446f776e6c6f616473> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+Q
+
+endstream
+endobj
+7 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 6 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+>>
+>>
+>>
+endobj
+8 0 obj
+<< /Type /Font
+/BaseFont /CM+NotoSerif
+/Subtype /TrueType
+/FontDescriptor 947 0 R
+/FirstChar 32
+/LastChar 255
+/Widths 949 0 R
+/ToUnicode 948 0 R
+>>
+endobj
+9 0 obj
+<< /Length 33298
+>>
+stream
+q
+/DeviceRGB cs
+1.000 1.000 1.000 scn
+48.240 782.610 83.133 23.280 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+131.373 782.610 83.133 23.280 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+214.506 782.610 83.133 23.280 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+297.639 782.610 83.133 23.280 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+380.772 782.610 83.133 23.280 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+463.905 782.610 83.135 23.280 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+48.240 673.650 83.133 108.960 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+131.373 673.650 83.133 108.960 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+214.506 673.650 83.133 108.960 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+297.639 673.650 83.133 108.960 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+380.772 673.650 83.133 108.960 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+463.905 673.650 83.135 108.960 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+48.240 578.970 83.133 94.680 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+131.373 578.970 83.133 94.680 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+214.506 578.970 83.133 94.680 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+297.639 578.970 83.133 94.680 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+380.772 578.970 83.133 94.680 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+463.905 578.970 83.135 94.680 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+48.240 470.010 83.133 108.960 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+131.373 470.010 83.133 108.960 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+214.506 470.010 83.133 108.960 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+297.639 470.010 83.133 108.960 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+380.772 470.010 83.133 108.960 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+463.905 470.010 83.135 108.960 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+48.240 375.330 83.133 94.680 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+131.373 375.330 83.133 94.680 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+214.506 375.330 83.133 94.680 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+297.639 375.330 83.133 94.680 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+380.772 375.330 83.133 94.680 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+463.905 375.330 83.135 94.680 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+48.240 266.370 83.133 108.960 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+131.373 266.370 83.133 108.960 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+214.506 266.370 83.133 108.960 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+297.639 266.370 83.133 108.960 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+380.772 266.370 83.133 108.960 re
+f
+0.000 0.000 0.000 scn

svn commit: r1737782 [40/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/js/jquery-1.11.1.min.js
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/js/jquery-1.11.1.min.js?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/js/jquery-1.11.1.min.js (added)
+++ tomee/site/trunk/content/ng/js/jquery-1.11.1.min.js Tue Apr  5 06:43:46 2016
@@ -0,0 +1,4 @@
+/*! jQuery v1.11.1 | (c) 2005, 2014 jQuery Foundation, Inc. | 
jquery.org/license */
+!function(a,b){"object"==typeof module&&"object"==typeof 
module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw
 new Error("jQuery requires a window with a document");return 
b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var 
c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.1",m=function(a,b){return
 new 
m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b){return
 
b.toUpperCase()};m.fn=m.prototype={jquery:l,constructor:m,selector:"",length:0,toArray:function(){return
 d.call(this)},get:function(a){return 
null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var 
b=m.merge(this.constructor(),a);return 
b.prevObject=this,b.context=this.context,b},each:function(a,b){return 
m.each(this,a,b)},map:function(a){return 
this.pushStack(m.map(this,function(b,c){return 
a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,argumen
 ts))},first:function(){return this.eq(0)},last:function(){return 
this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return 
this.pushStack(c>=0&>c?[this[c]]:[])},end:function(){return 
this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},m.extend=m.fn.extend=function(){var
 
a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof
 g&&(j=g,g=arguments[h]||{},h++),"object"==typeof 
g||m.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d
 in 
e)a=g[d],c=e[d],g!==c&&(j&&&(m.isPlainObject(c)||(b=m.isArray(c)))?(b?(b=!1,f=a&(a)?a:[]):f=a&(a)?a:{},g[d]=m.extend(j,f,c)):void
 0!==c&&(g[d]=c));return 
g},m.extend({expando:"jQuery"+(l+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw
 new 
Error(a)},noop:function(){},isFunction:function(a){return"function"===m.type(a)},isArray:Array.isArray||function(a){return"array"===m.type(a)},isWindow:function(a){return
 null!=a&=
 
=a.window},isNumeric:function(a){return!m.isArray(a)&(a)>=0},isEmptyObject:function(a){var
 b;for(b in a)return!1;return!0},isPlainObject:function(a){var 
b;if(!a||"object"!==m.type(a)||a.nodeType||m.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(k.ownLast)for(b
 in a)return j.call(a,b);for(b in a);return void 
0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof 
a||"function"==typeof a?h[i.call(a)]||"object":typeof 
a},globalEval:function(b){b&(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return
 a.replace(o,"ms-").replace(p,q)},nodeName:function(a,b){return 
a.nodeName&()===b.toLowerCase()},each:function(a,b,c){var
 
d,e=0,f=a.length,g=r(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else
 for(e in a)if(d=b.apply(a[e],c),d===!1)break}else 
if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d
 ===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return 
a},trim:function(a){return 
null==a?"":(a+"").replace(n,"")},makeArray:function(a,b){var c=b||[];return 
null!=a&&(r(Object(a))?m.merge(c,"string"==typeof 
a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return 
g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in 
b&[c]===a)return c}return-1},merge:function(a,b){var 
c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 
0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var 
d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&(a[f]);return 
e},map:function(a,b,c){var 
d,f=0,g=a.length,h=r(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&(d);else
 for(f in a)d=b(a[f],f,c),null!=d&(d);return 
e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof 
b&&(f=a[b],b=a,a=f),m.isFunction(a)?(c=d.call(arguments,2),e=function(){return 
a.apply(b||this,c.concat(d.call(ar
 guments)))},e.guid=a.guid=a.guid||m.guid++,e):void 
0},now:function(){return+new Date},support:k}),m.each("Boolean Number String 
Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object 
"+b+"]"]=b.toLowerCase()});function r(a){var 
b=a.length,c=m.type(a);return"function"===c||m.isWindow(a)?!1:1===a.nodeType&?!0:"array"===c||0===b||"number"==typeof
 b&>0& in a}var s=function(a){var 
b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+-new 
Date,v=a.document,w=0,x=0,y=gb(),z=gb(),A=gb(),B=function(a,b){return 

svn commit: r1737782 [6/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-em

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/admin/configuration/containers.pdf
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/admin/configuration/containers.pdf?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/admin/configuration/containers.pdf (added)
+++ tomee/site/trunk/content/ng/admin/configuration/containers.pdf Tue Apr  5 
06:43:46 2016
@@ -0,0 +1,9490 @@
+%PDF-1.3
+%
+1 0 obj
+<< /Title (Resources)
+/Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/CreationDate (D:20160323095149+01'00')
+/ModDate (D:20160323095149+01'00')
+>>
+endobj
+2 0 obj
+<< /Type /Catalog
+/Pages 3 0 R
+/Names 15 0 R
+/Outlines 84 0 R
+/PageLabels 93 0 R
+/PageMode /UseOutlines
+/OpenAction [7 0 R /FitH 842.89]
+/ViewerPreferences << /DisplayDocTitle true
+>>
+>>
+endobj
+3 0 obj
+<< /Type /Pages
+/Count 12
+/Kids [7 0 R 10 0 R 19 0 R 25 0 R 31 0 R 34 0 R 40 0 R 47 0 R 57 0 R 64 0 R 73 
0 R 81 0 R]
+>>
+endobj
+4 0 obj
+<< /Length 2
+>>
+stream
+q
+
+endstream
+endobj
+5 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 4 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+>>
+>>
+endobj
+6 0 obj
+<< /Length 205
+>>
+stream
+q
+/DeviceRGB cs
+0.600 0.600 0.600 scn
+/DeviceRGB CS
+0.600 0.600 0.600 SCN
+
+BT
+417.412995 351.364496 Td
+/F1.0 27 Tf
+<5265736f7572636573> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+Q
+
+endstream
+endobj
+7 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 6 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+>>
+>>
+>>
+endobj
+8 0 obj
+<< /Type /Font
+/BaseFont /CD+NotoSerif
+/Subtype /TrueType
+/FontDescriptor 95 0 R
+/FirstChar 32
+/LastChar 255
+/Widths 97 0 R
+/ToUnicode 96 0 R
+>>
+endobj
+9 0 obj
+<< /Length 9585
+>>
+stream
+q
+/DeviceRGB cs
+0.200 0.200 0.200 scn
+/DeviceRGB CS
+0.200 0.200 0.200 SCN
+
+2.148 Tw
+
+BT
+48.24 791.0774285714285 Td
+/F1.0 13 Tf
+<416c6c20636f6e7461696e6572732077696c6c2062652063726561746564206175746f6d61746963616c6c79202d207768696368206d65616e7320796f7520646f6ed574206e65656420746f>
 Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+0.633 Tw
+
+BT
+48.24 771.5402857142857 Td
+/F1.0 13 Tf
+[<646566696e65207468656d20696620796f7520646f6ed574206e65656420746f2074756e6520746865697220636f6e6669677572>
 20.01953125 <6174696f6e202d207768656e2061206265616e206f66207468656972>] TJ
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24 752.0031428571428 Td
+/F1.0 13 Tf
+<7479706520696620666f756e642e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+4.854 Tw
+
+BT
+48.24 720.46599 Td
+/F1.0 13 Tf
+[<54> 29.78515625 <6f2061766f696420746861742075736520>] TJ
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+4.854 Tw
+
+BT
+176.4055286458 720.46599 Td
+/F2.0 13 Tf
+<6f70656e656a622e6f6c696e65> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+4.854 Tw
+
+BT
+273.9055286458 720.46599 Td
+/F1.0 13 Tf
+<2070726f706572747920616e642073657420697420746f20> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+4.854 Tw
+
+BT
+439.6361321614583 720.46599 Td
+/F2.0 13 Tf
+<74727565> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+4.854 Tw
+
+BT
+465.6361321614583 720.46599 Td
+/F1.0 13 Tf
+<2e2053656520> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.259 0.545 0.792 scn
+0.259 0.545 0.792 SCN
+
+4.854 Tw
+
+BT
+506.298 720.46599 Td
+/F1.0 13 Tf
+<536572766572> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.259 0.545 0.792 scn
+0.259 0.545 0.792 SCN
+
+BT
+48.24 700.928857142857 Td
+/F1.0 13 Tf
+[<436f6e6669677572> 20.01953125 <6174696f6e>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+134.05274609375 700.928857142857 Td
+/F1.0 13 Tf
+<20666f72206d6f72652064657461696c2e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24 660.1802857142856 Td
+/F3.0 18 Tf
+<4053746174656c657373> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24 632.1602857142856 Td
+/F1.0 10.5 Tf
+<4120> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+58.362 632.1602857142856 Td
+/F2.0 10.5 Tf
+<4053746174656c657373> Tj
+ET
+

svn commit: r1737782 [24/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/developer/testing/index.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/developer/testing/index.html?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/developer/testing/index.html (added)
+++ tomee/site/trunk/content/ng/developer/testing/index.html Tue Apr  5 
06:43:46 2016
@@ -0,0 +1,177 @@
+
+
+
+
+   
+   
+   
+   Apache TomEE
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+
+
+
+
+   
+   
+   
+   
+   
+   
+   
+   Toggle 
navigation
+   
+   
+   
+   
+   
+   
+
+   
+
+
+
+
+   Apache TomEE
+
+   
+   
+   
+   
+   Developer
+   Admin
+   Advanced
+   Security
+   Blog
+   Community
+Downloads
+   
+   
+   
+   
+   
+   
+
+
+
+
+
+  
+  
+
+ Download as PDF
+
+  
+  
+  TomEE and Testing
+
+
+
+
+
+
+
+
+ApplicationComposer: 
lightweight tests
+
+
+Arquillian: the de facto standard for 
EE tests
+
+
+Going futher: OpenEJB JUnit, TomEE 
Embedded
+
+
+
+
+
+
+
+
+   
+   
+   
+   Apache TomEE the 
little great server.
+   "A good application in a good server"
+   
+   https://fr-fr.facebook.com/ApacheTomEE/;>
+   https://twitter.com/apachetomee;>
+   https://plus.google.com/communities/105208241852045684449;>
+   
+   
+   
+   
+   
+   Administration
+   
+   Cluster
+   Configuration
+   
+   
+   
+   Developer
+   
+   Classloading
+   IDE
+   Testing
+   Tools
+   
+   
+   
+   Advanced
+   
+   Application Composer
+   Setup
+   Shading
+   TomEE Embedded
+   
+   
+   
+   Community
+   
+   Contributors
+   Social
+   Sources
+ 

svn commit: r1737782 [32/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/download.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/download.html?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/download.html (added)
+++ tomee/site/trunk/content/ng/download.html Tue Apr  5 06:43:46 2016
@@ -0,0 +1,1922 @@
+
+
+
+
+   
+   
+   
+   Apache TomEE
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+
+
+
+
+   
+   
+   
+   
+   
+   
+   
+   Toggle 
navigation
+   
+   
+   
+   
+   
+   
+
+   
+
+
+
+
+   Apache TomEE
+
+   
+   
+   
+   
+   Developer
+   Admin
+   Advanced
+   Security
+   Blog
+   Community
+Downloads
+   
+   
+   
+   
+   
+   
+
+
+
+
+
+  
+  
+
+ Download as PDF
+
+  
+  
+  Downloads
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Name
+Version
+Date
+Size
+Type
+Links
+
+
+
+
+Apache 
TomEE plume
+7.0.0-M3
+Thu, 03 
Mar 2016 15:55:40 GMT
+53 
MB
+tar.gz
+http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.0-M3/apache-tomee-7.0.0-M3-plume.tar.gz;> tar.gz http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.0-M3/apache-tomee-7.0.0-M3-plume.tar.gz.sha1;> sha1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.0-M3/apache-tomee-7.0.0-M3-plume.tar.gz.md5;> md5 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.0-M3/apache-tomee-7.0.0-M3-plume.tar.gz.asc;> asc
+
+
+Apache 
TomEE plume
+7.0.0-M3
+Thu, 03 
Mar 2016 15:54:01 GMT
+54 
MB
+zip
+http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.0-M3/apache-tomee-7.0.0-M3-plume.zip;> zip http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.0-M3/apache-tomee-7.0.0-M3-plume.zip.sha1;> sha1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.0-M3/apache-tomee-7.0.0-M3-plume.zip.md5;> md5 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.0-M3/apache-tomee-7.0.0-M3-plume.zip.asc;> asc
+
+
+Apache 
TomEE plus
+7.0.0-M3
+Thu, 03 
Mar 2016 15:52:34 GMT
+47 
MB
+tar.gz
+http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.0-M3/apache-tomee-7.0.0-M3-plus.tar.gz;> tar.gz http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.0-M3/apache-tomee-7.0.0-M3-plus.tar.gz.sha1;> sha1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.0-M3/apache-tomee-7.0.0-M3-plus.tar.gz.md5;> md5 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.0-M3/apache-tomee-7.0.0-M3-plus.tar.gz.asc;> asc
+
+
+Apache 
TomEE plus
+7.0.0-M3
+Thu, 03 
Mar 2016 15:50:48 GMT
+47 
MB
+zip
+http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.0-M3/apache-tomee-7.0.0-M3-plus.zip;> zip http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.0-M3/apache-tomee-7.0.0-M3-plus.zip.sha1;> sha1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.0-M3/apache-tomee-7.0.0-M3-plus.zip.md5;> md5 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.0-M3/apache-tomee-7.0.0-M3-plus.zip.asc;> asc
+
+
+Apache 
TomEE webprofile
+7.0.0-M3
+Thu, 03 
Mar 2016 15:49:47 GMT
+33 
MB
+tar.gz
+http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.0-M3/apache-tomee-7.0.0-M3-webprofile.tar.gz;> tar.gz http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.0-M3/apache-tomee-7.0.0-M3-webprofile.tar.gz.sha1;> sha1 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.0-M3/apache-tomee-7.0.0-M3-webprofile.tar.gz.md5;> md5 http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/7.0.0-M3/apache-tomee-7.0.0-M3-webprofile.tar.gz.asc;> asc
+
+
+Apache 
TomEE webprofile
+7.0.0-M3
+Thu, 03 
Mar 2016 15:48:43 GMT
+33 
MB
+zip

svn commit: r1737782 [41/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/js/owl.carousel.min.js
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/js/owl.carousel.min.js?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/js/owl.carousel.min.js (added)
+++ tomee/site/trunk/content/ng/js/owl.carousel.min.js Tue Apr  5 06:43:46 2016
@@ -0,0 +1,47 @@
+"function"!==typeof Object.create&&(Object.create=function(f){function 
g(){}g.prototype=f;return new g});
+(function(f,g,k){var 
l={init:function(a,b){this.$elem=f(b);this.options=f.extend({},f.fn.owlCarousel.options,this.$elem.data(),a);this.userOptions=a;this.loadContent()},loadContent:function(){function
 a(a){var d,e="";if("function"===typeof 
b.options.jsonSuccess)b.options.jsonSuccess.apply(this,[a]);else{for(d in 
a.owl)a.owl.hasOwnProperty(d)&&(e+=a.owl[d].item);b.$elem.html(e)}b.logIn()}var 
b=this,e;"function"===typeof 
b.options.beforeInit&(this,[b.$elem]);"string"===typeof
 b.options.jsonPath?
+(e=b.options.jsonPath,f.getJSON(e,a)):b.logIn()},logIn:function(){this.$elem.data("owl-originalStyles",this.$elem.attr("style"));this.$elem.data("owl-originalClasses",this.$elem.attr("class"));this.$elem.css({opacity:0});this.orignalItems=this.options.items;this.checkBrowser();this.wrapperWidth=0;this.checkVisible=null;this.setVars()},setVars:function(){if(0===this.$elem.children().length)return!1;this.baseClass();this.eventTypes();this.$userItems=this.$elem.children();this.itemsAmount=this.$userItems.length;
+this.wrapItems();this.$owlItems=this.$elem.find(".owl-item");this.$owlWrapper=this.$elem.find(".owl-wrapper");this.playDirection="next";this.prevItem=0;this.prevArr=[0];this.currentItem=0;this.customEvents();this.onStartup()},onStartup:function(){this.updateItems();this.calculateAll();this.buildControls();this.updateControls();this.response();this.moveEvents();this.stopOnHover();this.owlStatus();!1!==this.options.transitionStyle&(this.options.transitionStyle);!0===this.options.autoPlay&&
+(this.options.autoPlay=5E3);this.play();this.$elem.find(".owl-wrapper").css("display","block");this.$elem.is(":visible")?this.$elem.css("opacity",1):this.watchVisibility();this.onstartup=!1;this.eachMoveUpdate();"function"===typeof
 
this.options.afterInit&(this,[this.$elem])},eachMoveUpdate:function(){!0===this.options.lazyLoad&();!0===this.options.autoHeight&();this.onVisibleItems();"function"===typeof
 this.options.afterAction&(this,
+[this.$elem])},updateVars:function(){"function"===typeof 
this.options.beforeUpdate&(this,[this.$elem]);this.watchVisibility();this.updateItems();this.calculateAll();this.updatePosition();this.updateControls();this.eachMoveUpdate();"function"===typeof
 
this.options.afterUpdate&(this,[this.$elem])},reload:function(){var
 
a=this;g.setTimeout(function(){a.updateVars()},0)},watchVisibility:function(){var
 a=this;if(!1===a.$elem.is(":visible"))a.$elem.css({opacity:0}),
+g.clearInterval(a.autoPlayInterval),g.clearInterval(a.checkVisible);else 
return!1;a.checkVisible=g.setInterval(function(){a.$elem.is(":visible")&&(a.reload(),a.$elem.animate({opacity:1},200),g.clearInterval(a.checkVisible))},500)},wrapItems:function(){this.$userItems.wrapAll('').wrap('');this.$elem.find(".owl-wrapper").wrap('');this.wrapperOuter=this.$elem.find(".owl-wrapper-outer");this.$elem.css("display","block")},
+baseClass:function(){var 
a=this.$elem.hasClass(this.options.baseClass),b=this.$elem.hasClass(this.options.theme);a||this.$elem.addClass(this.options.baseClass);b||this.$elem.addClass(this.options.theme)},updateItems:function(){var
 
a,b;if(!1===this.options.responsive)return!1;if(!0===this.options.singleItem)return
 
this.options.items=this.orignalItems=1,this.options.itemsCustom=!1,this.options.itemsDesktop=!1,this.options.itemsDesktopSmall=!1,this.options.itemsTablet=!1,this.options.itemsTabletSmall=
+!1,this.options.itemsMobile=!1;a=f(this.options.responsiveBaseWidth).width();a>(this.options.itemsDesktop[0]||this.orignalItems)&&(this.options.items=this.orignalItems);if(!1!==this.options.itemsCustom)for(this.options.itemsCustom.sort(function(a,b){return
 
a[0]-b[0]}),b=0;bthis.itemsAmount&&

svn commit: r1737782 [25/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/developer/testing/other/index.pdf
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/developer/testing/other/index.pdf?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/developer/testing/other/index.pdf (added)
+++ tomee/site/trunk/content/ng/developer/testing/other/index.pdf Tue Apr  5 
06:43:46 2016
@@ -0,0 +1,6608 @@
+%PDF-1.3
+%
+1 0 obj
+<< /Title (Other Testing Techniques)
+/Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/CreationDate (D:20160323095144+01'00')
+/ModDate (D:20160323095144+01'00')
+>>
+endobj
+2 0 obj
+<< /Type /Catalog
+/Pages 3 0 R
+/Names 12 0 R
+/Outlines 27 0 R
+/PageLabels 31 0 R
+/PageMode /UseOutlines
+/OpenAction [7 0 R /FitH 842.89]
+/ViewerPreferences << /DisplayDocTitle true
+>>
+>>
+endobj
+3 0 obj
+<< /Type /Pages
+/Count 5
+/Kids [7 0 R 10 0 R 18 0 R 20 0 R 25 0 R]
+>>
+endobj
+4 0 obj
+<< /Length 2
+>>
+stream
+q
+
+endstream
+endobj
+5 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 4 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+>>
+>>
+endobj
+6 0 obj
+<< /Length 267
+>>
+stream
+q
+/DeviceRGB cs
+0.600 0.600 0.600 scn
+/DeviceRGB CS
+0.600 0.600 0.600 SCN
+
+BT
+219.95039843749998 351.364496 Td
+/F1.0 27 Tf
+[<4f746865722054> 29.78515625 <657374696e672054> 29.78515625 
<6563686e6971756573>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+Q
+
+endstream
+endobj
+7 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 6 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+>>
+>>
+>>
+endobj
+8 0 obj
+<< /Type /Font
+/BaseFont /AZ+NotoSerif
+/Subtype /TrueType
+/FontDescriptor 33 0 R
+/FirstChar 32
+/LastChar 255
+/Widths 35 0 R
+/ToUnicode 34 0 R
+>>
+endobj
+9 0 obj
+<< /Length 1920
+>>
+stream
+q
+/DeviceRGB cs
+0.200 0.200 0.200 scn
+/DeviceRGB CS
+0.200 0.200 0.200 SCN
+
+BT
+48.24 786.66599 Td
+/F2.0 18 Tf
+<454a42436f6e7461696e6572> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24 758.646 Td
+/F1.0 10.5 Tf
+<54686520> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+69.66 758.646 Td
+/F3.0 10.5 Tf
+<454a42436f6e7461696e6572> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+132.660003 758.646 Td
+/F1.0 10.5 Tf
+[<204150492069732061204a61766145452041504920656e7269636865642062> 20.01953125 
<7920736f6d65204f70656e454a4220666561747572657320746f206d616b> 20.01953125 
<65207468652074657374696e67206561736965722e>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+0.052 Tw
+
+BT
+48.24 730.866 Td
+/F1.0 10.5 Tf
+[<497420737461727473206120636f6e7461696e65722028656d62656464656420666f7220636173652077652061726520696e746572657374656420696e29207363616e6e696e672074686520636c617373706174682e2054686973206f706572>
 20.01953125 <6174696f6e>] TJ
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24 715.086 Td
+/F1.0 10.5 Tf
+[<63616e20626520736c6f7720616e6420696620796f7520676f2077697468207468697320736f6c7574696f6e206d61>
 20.01953125 
<796265207468696e6b20746f207374617274206974206f6e6c79206f6e636520666f7220616c6c2074657374732e>]
 TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24 680.58601 Td
+/F2.0 13 Tf
+<53616d706c65> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+q
+0.000 0.000 0.000 scn
+0.000 0.000 0.000 SCN
+1 w
+0 J
+0 j
+[ ] 0 d
+/Stamp1 Do
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+541.00899 14.388 Td
+/F1.0 9 Tf
+<31> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+Q
+Q
+
+endstream
+endobj
+10 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 9 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F2.0 14 0 R
+/F1.0 8 0 R
+/F3.0 15 0 R
+>>
+/XObject << /Stamp1 26 0 R
+>>
+>>
+>>
+endobj
+11 0 obj
+[10 0 R /XYZ 0 841.89 null]
+endobj
+12 0 obj
+<< /Type /Names
+/Dests 13 0 R
+>>
+endobj
+13 0 obj
+<< /Names [(_ejbcontainer) 11 0 R (_ejbcontainer_rule) 22 0 R 
(_injectrule_injections_for_ejbcontainerrule) 23 0 R (_openejb_junit) 21 0 R 
(_sample) 16 0 R]
+>>
+endobj
+14 0 obj
+<< /Type /Font
+/BaseFont /BA+NotoSerif-Bold
+/Subtype /TrueType
+/FontDescriptor 37 0 R
+/FirstChar 32
+/LastChar 255
+/Widths 39 0 R
+/ToUnicode 38 0 R
+>>
+endobj
+15 0 obj
+<< /Type /Font
+/BaseFont /BB+mplus1mn-regular
+/Subtype /TrueType
+/FontDescriptor 41 0 R
+/FirstChar 32
+/LastChar 255
+/Widths 43 0 R
+/ToUnicode 42 0 R
+>>
+endobj
+16 0 obj
+[10 0 R /XYZ 0 

svn commit: r1737782 [35/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/fonts/eleganticons/ElegantIcons.svg
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/fonts/eleganticons/ElegantIcons.svg?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/fonts/eleganticons/ElegantIcons.svg (added)
+++ tomee/site/trunk/content/ng/fonts/eleganticons/ElegantIcons.svg Tue Apr  5 
06:43:46 2016
@@ -0,0 +1,1832 @@
+
+http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd; >
+http://www.w3.org/2000/svg;>
+
+This is a custom SVG font generated by IcoMoon.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

svn commit: r1737782 [42/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/js/tree.jquery.js
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/js/tree.jquery.js?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/js/tree.jquery.js (added)
+++ tomee/site/trunk/content/ng/js/tree.jquery.js Tue Apr  5 06:43:46 2016
@@ -0,0 +1,3542 @@
+/*
+JqTree 1.3.2
+
+Copyright 2015 Marco Braak
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof 
require=="function"&if(!u&)return a(o,!0);if(i)return i(o,!0);var 
f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var 
l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return 
s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof 
require=="function"&for(var o=0;o

svn commit: r1737782 [8/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-em

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/admin/configuration/resources.pdf
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/admin/configuration/resources.pdf?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/admin/configuration/resources.pdf (added)
+++ tomee/site/trunk/content/ng/admin/configuration/resources.pdf Tue Apr  5 
06:43:46 2016
@@ -0,0 +1,11655 @@
+%PDF-1.3
+%
+1 0 obj
+<< /Title (Resources)
+/Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/CreationDate (D:20160323095149+01'00')
+/ModDate (D:20160323095149+01'00')
+>>
+endobj
+2 0 obj
+<< /Type /Catalog
+/Pages 3 0 R
+/Names 14 0 R
+/Outlines 96 0 R
+/PageLabels 113 0 R
+/PageMode /UseOutlines
+/OpenAction [7 0 R /FitH 842.89]
+/ViewerPreferences << /DisplayDocTitle true
+>>
+>>
+endobj
+3 0 obj
+<< /Type /Pages
+/Count 13
+/Kids [7 0 R 10 0 R 19 0 R 21 0 R 30 0 R 35 0 R 45 0 R 57 0 R 65 0 R 69 0 R 80 
0 R 86 0 R 94 0 R]
+>>
+endobj
+4 0 obj
+<< /Length 2
+>>
+stream
+q
+
+endstream
+endobj
+5 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 4 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+>>
+>>
+endobj
+6 0 obj
+<< /Length 205
+>>
+stream
+q
+/DeviceRGB cs
+0.600 0.600 0.600 scn
+/DeviceRGB CS
+0.600 0.600 0.600 SCN
+
+BT
+417.412995 351.364496 Td
+/F1.0 27 Tf
+<5265736f7572636573> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+Q
+
+endstream
+endobj
+7 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 6 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+>>
+>>
+>>
+endobj
+8 0 obj
+<< /Type /Font
+/BaseFont /CI+NotoSerif
+/Subtype /TrueType
+/FontDescriptor 115 0 R
+/FirstChar 32
+/LastChar 255
+/Widths 117 0 R
+/ToUnicode 116 0 R
+>>
+endobj
+9 0 obj
+<< /Length 17569
+>>
+stream
+q
+/DeviceRGB cs
+0.200 0.200 0.200 scn
+/DeviceRGB CS
+0.200 0.200 0.200 SCN
+
+3.142 Tw
+
+BT
+48.24 791.0774285714285 Td
+/F1.0 13 Tf
+[<496e2054> 29.78515625 
<6f6d4545207265736f757263657320617265206d61696e6c79202273696e676c65746f6e> 
40.0390625 
<222028756e64657273746f6f6420617320646566696e6564206f6e636520706572>] TJ
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+0.158 Tw
+
+BT
+48.24 771.5402857142857 Td
+/F1.0 13 Tf
+[<736572766572206f72206170706c69636174696f6e292e2054> 29.78515625 
<6563686e6963616c6c792069742063616e20626520616e> 20.01953125 
<797468696e672062757420796f752077696c6c2070726f6261626c79206d656574>] TJ
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24 752.0031428571428 Td
+/F1.0 13 Tf
+<6d6f72652044617461736f7572636573207468616e206f746865722074797065206f66207265736f75726365732e>
 Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+0.714 Tw
+
+BT
+48.24 720.46599 Td
+/F1.0 13 Tf
+<4d6f7374207265736f75726365732077696c6c2062652063726561746564206175746f6d61746963616c6c79206966207468657265206973206e6f206d61746368696e67207265736f7572636573202d>
 Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+4.899 Tw
+
+BT
+48.24 700.928857142857 Td
+/F1.0 13 Tf
+[<62> 20.01953125 
<79206e616d6520616e642074797065202d207768656e20616e20696e6a656374696f6e2077696c6c20626520666f756e642e2054>
 29.78515625 <6f2061766f6964207468617420757365>] TJ
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+1.801 Tw
+
+BT
+48.24 681.3917142857142 Td
+/F2.0 13 Tf
+<6f70656e656a622e6f6c696e65> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+1.801 Tw
+
+BT
+145.74 681.3917142857142 Td
+/F1.0 13 Tf
+<2070726f706572747920616e642073657420697420746f20> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+1.801 Tw
+
+BT
+293.1523203125 681.3917142857142 Td
+/F2.0 13 Tf
+<74727565> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+1.801 Tw
+
+BT
+319.1523203125 681.3917142857142 Td
+/F1.0 13 Tf
+<2e2053656520> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.259 0.545 0.792 scn
+0.259 0.545 0.792 SCN
+
+1.801 Tw
+
+BT
+353.7080937505 681.3917142857142 Td
+/F1.0 13 Tf
+[<53657276657220436f6e6669677572> 20.01953125 <6174696f6e>] TJ
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+1.801 Tw
+
+BT
+485.4312265625 681.3917142857142 Td
+/F1.0 13 Tf
+<20666f72206d6f7265> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+

svn commit: r1737782 [12/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/advanced/applicationcomposer/index.pdf
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/advanced/applicationcomposer/index.pdf?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/advanced/applicationcomposer/index.pdf (added)
+++ tomee/site/trunk/content/ng/advanced/applicationcomposer/index.pdf Tue Apr  
5 06:43:46 2016
@@ -0,0 +1,6316 @@
+%PDF-1.3
+%
+1 0 obj
+<< /Title (Application Composer Advanced Usage)
+/Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/CreationDate (D:20160323095150+01'00')
+/ModDate (D:20160323095150+01'00')
+>>
+endobj
+2 0 obj
+<< /Type /Catalog
+/Pages 3 0 R
+/Outlines 16 0 R
+/PageLabels 18 0 R
+/PageMode /UseOutlines
+/OpenAction [7 0 R /FitH 842.89]
+/ViewerPreferences << /DisplayDocTitle true
+>>
+>>
+endobj
+3 0 obj
+<< /Type /Pages
+/Count 3
+/Kids [7 0 R 10 0 R 13 0 R]
+>>
+endobj
+4 0 obj
+<< /Length 2
+>>
+stream
+q
+
+endstream
+endobj
+5 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 4 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+>>
+>>
+endobj
+6 0 obj
+<< /Length 417
+>>
+stream
+q
+/DeviceRGB cs
+0.600 0.600 0.600 scn
+/DeviceRGB CS
+0.600 0.600 0.600 SCN
+
+BT
+127.73052734374994 351.364496 Td
+/F1.0 27 Tf
+[<4170706c69636174696f6e20436f6d706f7365722041> 20.01953125 <6476616e636564>] 
TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.600 0.600 0.600 scn
+0.600 0.600 0.600 SCN
+
+BT
+471.385997 317.3445 Td
+/F1.0 27 Tf
+<5573616765> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+Q
+
+endstream
+endobj
+7 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 6 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+>>
+>>
+>>
+endobj
+8 0 obj
+<< /Type /Font
+/BaseFont /BN+NotoSerif
+/Subtype /TrueType
+/FontDescriptor 20 0 R
+/FirstChar 32
+/LastChar 255
+/Widths 22 0 R
+/ToUnicode 21 0 R
+>>
+endobj
+9 0 obj
+<< /Length 53327
+>>
+stream
+q
+/DeviceRGB cs
+0.200 0.200 0.200 scn
+/DeviceRGB CS
+0.200 0.200 0.200 SCN
+
+BT
+48.24 793.92599 Td
+/F1.0 10.5 Tf
+[<4170706c69636174696f6e436f6d706f7365722063616e2062652061207761> 20.01953125 
<7920746f2072756e2061204a4261746368206e6f74206e656564696e6720616e> 20.01953125 
<79204854545020636f6e6e6563746f722e>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+2.018 Tw
+
+BT
+48.24 766.146 Td
+/F1.0 10.5 Tf
+[<4865726520697320616e206578616d706c65206d616b696e6720626174636820696e74656772>
 20.01953125 <6174696f6e2065617379202d206e6f746520796f752063616e2065787472> 
20.01953125 <616374207468652067656e65726963207061727420696e2061>] TJ
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24 750.366 Td
+/F1.0 10.5 Tf
+[<6c696272> 20.01953125 <617279207665727920656173696c793a>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+q
+0.5 w
+0.933 0.933 0.933 SCN
+88.862 694.990 m
+88.862 734.550 l
+S
+Q
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+60.24 710.69601 Td
+/F2.0 10.5 Tf
+<544950> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+1.217 Tw
+
+BT
+100.8615 718.586 Td
+/F1.0 10.5 Tf
+<696620796f75206469646ed57420636865636b2079657420426174636845452070726f766964657320736f6d65207374616e64616c6f6e65207574696c697469657320666f72204a42617463682062757420746865>
 Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+100.8615 702.806 Td
+/F1.0 10.5 Tf
+<69646561206f66207468697320706167652063616e2062652072657573656420666f722061206c6f74206f66206170706c69636174696f6e732e>
 Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+q
+0.961 0.961 0.961 scn
+52.240 682.990 m
+543.040 682.990 l
+545.249 682.990 547.040 681.199 547.040 678.990 c
+547.040 52.240 l
+547.040 50.031 545.249 48.240 543.040 48.240 c
+52.240 48.240 l
+50.031 48.240 48.240 50.031 48.240 52.240 c
+48.240 678.990 l
+48.240 681.199 50.031 682.990 52.240 682.990 c
+h
+f
+0.800 0.800 0.800 SCN
+0.75 w
+52.240 682.990 m
+543.040 682.990 l
+545.249 682.990 547.040 681.199 547.040 678.990 c
+547.040 52.240 l
+547.040 50.031 545.249 48.240 543.040 48.240 c
+52.240 48.240 l
+50.031 48.240 48.240 50.031 48.240 52.240 c
+48.240 678.990 l
+48.240 681.199 50.031 682.990 52.240 682.990 c
+h
+S
+Q
+q
+0.75 w
+0.961 0.961 0.961 SCN
+[3.0 3.0] 0 d
+52.990 48.240 m
+542.290 48.240 l
+S
+[ ] 0 d
+Q
+0.600 0.600 0.600 scn
+0.600 0.600 0.600 SCN
+
+BT
+59.24 660.16501 Td
+/F3.0 11 Tf
+<2f2f2068656c70657220636c617373207265757361626c6520666f7220616e79206261746368> 
Tj
+ET
+
+0.000 

svn commit: r1737782 [38/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: 
tomee/site/trunk/content/ng/fonts/font-awesome-4.1.0/fonts/fontawesome-webfont.ttf
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/fonts/font-awesome-4.1.0/fonts/fontawesome-webfont.ttf?rev=1737782=auto
==
Binary file - no diff available.

Propchange: 
tomee/site/trunk/content/ng/fonts/font-awesome-4.1.0/fonts/fontawesome-webfont.ttf
--
svn:mime-type = application/octet-stream

Added: 
tomee/site/trunk/content/ng/fonts/font-awesome-4.1.0/fonts/fontawesome-webfont.woff
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/fonts/font-awesome-4.1.0/fonts/fontawesome-webfont.woff?rev=1737782=auto
==
Binary file - no diff available.

Propchange: 
tomee/site/trunk/content/ng/fonts/font-awesome-4.1.0/fonts/fontawesome-webfont.woff
--
svn:mime-type = application/octet-stream

Added: tomee/site/trunk/content/ng/img/header.jpg
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/img/header.jpg?rev=1737782=auto
==
Binary file - no diff available.

Propchange: tomee/site/trunk/content/ng/img/header.jpg
--
svn:mime-type = application/octet-stream

Added: tomee/site/trunk/content/ng/img/loader.gif
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/img/loader.gif?rev=1737782=auto
==
Binary file - no diff available.

Propchange: tomee/site/trunk/content/ng/img/loader.gif
--
svn:mime-type = application/octet-stream

Added: tomee/site/trunk/content/ng/img/logo-active.png
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/img/logo-active.png?rev=1737782=auto
==
Binary file - no diff available.

Propchange: tomee/site/trunk/content/ng/img/logo-active.png
--
svn:mime-type = application/octet-stream

Added: tomee/site/trunk/content/ng/img/logo.png
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/img/logo.png?rev=1737782=auto
==
Binary file - no diff available.

Propchange: tomee/site/trunk/content/ng/img/logo.png
--
svn:mime-type = application/octet-stream

Added: tomee/site/trunk/content/ng/img/popup.jpg
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/img/popup.jpg?rev=1737782=auto
==
Binary file - no diff available.

Propchange: tomee/site/trunk/content/ng/img/popup.jpg
--
svn:mime-type = application/octet-stream

Added: tomee/site/trunk/content/ng/img/pricing1.jpg
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/img/pricing1.jpg?rev=1737782=auto
==
Binary file - no diff available.

Propchange: tomee/site/trunk/content/ng/img/pricing1.jpg
--
svn:mime-type = application/octet-stream

Added: tomee/site/trunk/content/ng/img/pricing2.jpg
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/img/pricing2.jpg?rev=1737782=auto
==
Binary file - no diff available.

Propchange: tomee/site/trunk/content/ng/img/pricing2.jpg
--
svn:mime-type = application/octet-stream

Added: tomee/site/trunk/content/ng/img/table-1-hover.jpg
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/img/table-1-hover.jpg?rev=1737782=auto
==
Binary file - no diff available.

Propchange: tomee/site/trunk/content/ng/img/table-1-hover.jpg
--
svn:mime-type = application/octet-stream

Added: tomee/site/trunk/content/ng/img/table-1.jpg
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/img/table-1.jpg?rev=1737782=auto
==
Binary file - no diff available.

Propchange: tomee/site/trunk/content/ng/img/table-1.jpg

svn commit: r1737782 [7/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-em

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/admin/configuration/index.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/admin/configuration/index.html?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/admin/configuration/index.html (added)
+++ tomee/site/trunk/content/ng/admin/configuration/index.html Tue Apr  5 
06:43:46 2016
@@ -0,0 +1,197 @@
+
+
+
+
+   
+   
+   
+   Apache TomEE
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+
+
+
+
+   
+   
+   
+   
+   
+   
+   
+   Toggle 
navigation
+   
+   
+   
+   
+   
+   
+
+   
+
+
+
+
+   Apache TomEE
+
+   
+   
+   
+   
+   Developer
+   Admin
+   Advanced
+   Security
+   Blog
+   Community
+Downloads
+   
+   
+   
+   
+   
+   
+
+
+
+
+
+  
+  
+
+ 
Download as PDF
+
+  
+  
+  Configuration
+
+
+
+
+
+
+Container
+
+TomEE specific configuration (ie not inherited one from Tomcat) is based on 
properties. Therefore
+you can fully configure TomEE using properties in 
conf/system.properties.
+However for convenience it also provides a hybrid XML alternative a.k.a. 
conf/tomee.xml.
+
+
+
+
+Server Configuration: Properties.
+
+
+Resources
+
+
+Containers
+
+
+
+
+
+Application
+
+Some settings can be specific to applications, these ones are also 
properties based and
+are read in WEB-INF/application.properties. When you cant 
use tomee.xml to configure
+resources you can use WEB-INF/resources.xml which inherit from 
tomee.xml its syntax
+but binds the resources to the application and reuses the application 
classloader.
+
+
+More about Container Configuration.
+
+
+
+
+
+
+
+   
+   
+   
+   Apache TomEE the 
little great server.
+   "A good application in a good server"
+   
+   https://fr-fr.facebook.com/ApacheTomEE/;>
+   https://twitter.com/apachetomee;>
+   https://plus.google.com/communities/105208241852045684449;>
+   
+   
+   
+   
+   
+   Administration
+   
+   Cluster
+   Configuration
+   
+   
+   
+   Developer
+   
+   Classloading
+   IDE
+   Testing
+   Tools
+   
+   
+   
+   Advanced
+   
+   Application Composer
+   Setup
+   Shading

svn commit: r1737782 [10/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/admin/configuration/server.pdf
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/admin/configuration/server.pdf?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/admin/configuration/server.pdf (added)
+++ tomee/site/trunk/content/ng/admin/configuration/server.pdf Tue Apr  5 
06:43:46 2016
@@ -0,0 +1,10422 @@
+%PDF-1.3
+%
+1 0 obj
+<< /Title (Container Configuration)
+/Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/CreationDate (D:20160323095144+01'00')
+/ModDate (D:20160323095144+01'00')
+>>
+endobj
+2 0 obj
+<< /Type /Catalog
+/Pages 3 0 R
+/Names 12 0 R
+/Outlines 29 0 R
+/PageLabels 33 0 R
+/PageMode /UseOutlines
+/OpenAction [7 0 R /FitH 842.89]
+/ViewerPreferences << /DisplayDocTitle true
+>>
+>>
+endobj
+3 0 obj
+<< /Type /Pages
+/Count 8
+/Kids [7 0 R 10 0 R 16 0 R 18 0 R 20 0 R 22 0 R 24 0 R 27 0 R]
+>>
+endobj
+4 0 obj
+<< /Length 2
+>>
+stream
+q
+
+endstream
+endobj
+5 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 4 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+>>
+>>
+endobj
+6 0 obj
+<< /Length 250
+>>
+stream
+q
+/DeviceRGB cs
+0.600 0.600 0.600 scn
+/DeviceRGB CS
+0.600 0.600 0.600 SCN
+
+BT
+234.40752734374996 351.364496 Td
+/F1.0 27 Tf
+[<436f6e7461696e657220436f6e6669677572> 20.01953125 <6174696f6e>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+Q
+
+endstream
+endobj
+7 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 6 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+>>
+>>
+>>
+endobj
+8 0 obj
+<< /Type /Font
+/BaseFont /BQ+NotoSerif
+/Subtype /TrueType
+/FontDescriptor 35 0 R
+/FirstChar 32
+/LastChar 255
+/Widths 37 0 R
+/ToUnicode 36 0 R
+>>
+endobj
+9 0 obj
+<< /Length 23992
+>>
+stream
+q
+/DeviceRGB cs
+0.200 0.200 0.200 scn
+/DeviceRGB CS
+0.200 0.200 0.200 SCN
+
+BT
+48.24 786.66599 Td
+/F2.0 18 Tf
+<536572766572> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+48.240 747.330 166.267 23.280 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+214.507 747.330 166.267 23.280 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+380.773 747.330 166.267 23.280 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+48.240 709.770 166.267 37.560 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+214.507 709.770 166.267 37.560 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+380.773 709.770 166.267 37.560 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+48.240 586.530 166.267 123.240 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+214.507 586.530 166.267 123.240 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+380.773 586.530 166.267 123.240 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+48.240 449.010 166.267 137.520 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+214.507 449.010 166.267 137.520 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+380.773 449.010 166.267 137.520 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+48.240 411.450 166.267 37.560 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+214.507 411.450 166.267 37.560 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+380.773 411.450 166.267 37.560 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+48.240 373.890 166.267 37.560 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+214.507 373.890 166.267 37.560 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+380.773 373.890 166.267 37.560 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+48.240 336.330 166.267 37.560 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+214.507 336.330 166.267 37.560 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+380.773 336.330 166.267 37.560 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+48.240 284.490 166.267 51.840 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+214.507 284.490 166.267 51.840 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+380.773 284.490 166.267 51.840 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+48.240 189.810 166.267 94.680 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+214.507 189.810 166.267 94.680 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+380.773 189.810 166.267 94.680 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+48.240 137.970 166.267 51.840 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+214.507 137.970 166.267 51.840 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+380.773 137.970 166.267 51.840 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+48.240 100.410 166.267 37.560 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+214.507 100.410 166.267 37.560 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+380.773 100.410 166.267 37.560 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+48.240 48.570 

svn commit: r1737782 [45/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/security/support.pdf
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/security/support.pdf?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/security/support.pdf (added)
+++ tomee/site/trunk/content/ng/security/support.pdf Tue Apr  5 06:43:46 2016
@@ -0,0 +1,1136 @@
+%PDF-1.3
+%
+1 0 obj
+<< /Title (Support)
+/Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/CreationDate (D:20160323095155+01'00')
+/ModDate (D:20160323095155+01'00')
+>>
+endobj
+2 0 obj
+<< /Type /Catalog
+/Pages 3 0 R
+/Names 13 0 R
+/Outlines 34 0 R
+/PageLabels 41 0 R
+/PageMode /UseOutlines
+/OpenAction [7 0 R /FitH 842.89]
+/ViewerPreferences << /DisplayDocTitle true
+>>
+>>
+endobj
+3 0 obj
+<< /Type /Pages
+/Count 2
+/Kids [7 0 R 10 0 R]
+>>
+endobj
+4 0 obj
+<< /Length 2
+>>
+stream
+q
+
+endstream
+endobj
+5 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 4 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+>>
+>>
+endobj
+6 0 obj
+<< /Length 190
+>>
+stream
+q
+/DeviceRGB cs
+0.600 0.600 0.600 scn
+/DeviceRGB CS
+0.600 0.600 0.600 SCN
+
+BT
+444.359 351.364496 Td
+/F1.0 27 Tf
+<537570706f7274> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+Q
+
+endstream
+endobj
+7 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 6 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+>>
+>>
+>>
+endobj
+8 0 obj
+<< /Type /Font
+/BaseFont /BS+NotoSerif
+/Subtype /TrueType
+/FontDescriptor 43 0 R
+/FirstChar 32
+/LastChar 255
+/Widths 45 0 R
+/ToUnicode 44 0 R
+>>
+endobj
+9 0 obj
+<< /Length 9356
+>>
+stream
+q
+/DeviceRGB cs
+0.200 0.200 0.200 scn
+/DeviceRGB CS
+0.200 0.200 0.200 SCN
+
+1.664 Tw
+
+BT
+48.24 791.0774285714285 Td
+/F1.0 13 Tf
+[<537570706f727420666f72204170616368652054> 29.78515625 
<6f6d454520697320676976656e20667265656c792062> 20.01953125 
<792074686520636f6d6d756e697479> 89.84375 <2e20506c65617365206265206177617265>] 
TJ
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+0.351 Tw
+
+BT
+48.24 771.5402857142857 Td
+/F1.0 13 Tf
+[<7768656e2061736b696e67207175657374696f6e732074686174207468652041706163686520536f6674776172652046>
 40.0390625 <6f756e646174696f6e20646f6573206e6f7420686176652070616964>] TJ
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+4.631 Tw
+
+BT
+48.24 752.0031428571428 Td
+/F1.0 13 Tf
+<646576656c6f70657273206f722064656469636174656420737570706f7274207374612e20416c6c20636f6d6d756e69747920737570706f727420636f6d65732066726f6d>
 Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+3.331 Tw
+
+BT
+48.24 732.466 Td
+/F1.0 13 Tf
+<766f6c756e7465657273206f6e206120766f6c756e746565722062617369732e204a6f696e696e672074686520>
 Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.259 0.545 0.792 scn
+0.259 0.545 0.792 SCN
+
+3.331 Tw
+
+BT
+343.12445454545457 732.466 Td
+/F1.0 13 Tf
+<436f6d6d756e697479> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+3.331 Tw
+
+BT
+415.8204545454546 732.466 Td
+/F1.0 13 Tf
+<206173206120766f6c756e7465657220616e64> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24 712.9288571428572 Td
+/F1.0 13 Tf
+[<68656c70696e6720796f75722066656c6c6f7720757365727320697320686967686c7920656e636f7572>
 20.01953125 <6167656421>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24 672.1802857142857 Td
+/F2.0 18 Tf
+<4d61696c696e67204c69737473> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+-0.500 Tc
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+56.880501 644.1602857142857 Td
+/F1.0 10.5 Tf
+ Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+0.000 Tc
+0.259 0.545 0.792 scn
+0.259 0.545 0.792 SCN
+
+1.199 Tw
+
+BT
+66.240001 644.1602857142857 Td
+/F1.0 10.5 Tf
+<55736572204d61696c696e67204c697374> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+1.199 Tw
+
+BT
+153.330467 644.1602857142857 Td
+/F1.0 10.5 Tf
+<2028> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.259 0.545 0.792 scn
+0.259 0.545 0.792 SCN
+
+1.199 Tw
+
+BT
+160.8817 644.1602857142857 Td
+/F1.0 10.5 Tf
+<537562736372696265206e6f77> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+1.199 Tw
+
+BT
+235.716932 644.1602857142857 Td
+/F1.0 10.5 Tf
+<207c20> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 

svn commit: r1737782 [19/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/css/bootstrap.css
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/css/bootstrap.css?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/css/bootstrap.css (added)
+++ tomee/site/trunk/content/ng/css/bootstrap.css Tue Apr  5 06:43:46 2016
@@ -0,0 +1,6782 @@
+/*!
+ * Bootstrap v3.3.4 (http://getbootstrap.com)
+ * Copyright 2011-2015 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */
+/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
+html {
+  font-family: sans-serif;
+  -webkit-text-size-adjust: 100%;
+  -ms-text-size-adjust: 100%;
+}
+body {
+  margin: 0;
+  color: #33;
+}
+article,
+aside,
+details,
+figcaption,
+figure,
+footer,
+header,
+hgroup,
+main,
+menu,
+nav,
+section,
+summary {
+  display: block;
+}
+audio,
+canvas,
+progress,
+video {
+  display: inline-block;
+  vertical-align: baseline;
+}
+audio:not([controls]) {
+  display: none;
+  height: 0;
+}
+[hidden],
+template {
+  display: none;
+}
+a {
+  background-color: transparent;
+}
+a:active,
+a:hover {
+  outline: 0;
+}
+abbr[title] {
+  border-bottom: 1px dotted;
+}
+b,
+strong {
+  font-weight: bold;
+}
+dfn {
+  font-style: italic;
+}
+h1 {
+  margin: .67em 0;
+  font-size: 2em;
+}
+mark {
+  color: #000;
+  background: #ff0;
+}
+small {
+  font-size: 80%;
+}
+sub,
+sup {
+  position: relative;
+  font-size: 75%;
+  line-height: 0;
+  vertical-align: baseline;
+}
+sup {
+  top: -.5em;
+}
+sub {
+  bottom: -.25em;
+}
+img {
+  border: 0;
+}
+svg:not(:root) {
+  overflow: hidden;
+}
+figure {
+  margin: 1em 40px;
+}
+hr {
+  height: 0;
+  -webkit-box-sizing: content-box;
+ -moz-box-sizing: content-box;
+  box-sizing: content-box;
+}
+pre {
+  overflow: auto;
+}
+code,
+kbd,
+pre,
+samp {
+  font-family: monospace, monospace;
+  font-size: 1em;
+}
+button,
+input,
+optgroup,
+select,
+textarea {
+  margin: 0;
+  font: inherit;
+  color: inherit;
+}
+button {
+  overflow: visible;
+}
+button,
+select {
+  text-transform: none;
+}
+button,
+html input[type="button"],
+input[type="reset"],
+input[type="submit"] {
+  -webkit-appearance: button;
+  cursor: pointer;
+}
+button[disabled],
+html input[disabled] {
+  cursor: default;
+}
+button::-moz-focus-inner,
+input::-moz-focus-inner {
+  padding: 0;
+  border: 0;
+}
+input {
+  line-height: normal;
+}
+input[type="checkbox"],
+input[type="radio"] {
+  -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+  box-sizing: border-box;
+  padding: 0;
+}
+input[type="number"]::-webkit-inner-spin-button,
+input[type="number"]::-webkit-outer-spin-button {
+  height: auto;
+}
+input[type="search"] {
+  -webkit-box-sizing: content-box;
+ -moz-box-sizing: content-box;
+  box-sizing: content-box;
+  -webkit-appearance: textfield;
+}
+input[type="search"]::-webkit-search-cancel-button,
+input[type="search"]::-webkit-search-decoration {
+  -webkit-appearance: none;
+}
+fieldset {
+  padding: .35em .625em .75em;
+  margin: 0 2px;
+  border: 1px solid #c0c0c0;
+}
+legend {
+  padding: 0;
+  border: 0;
+}
+textarea {
+  overflow: auto;
+}
+optgroup {
+  font-weight: bold;
+}
+table {
+  border-spacing: 0;
+  border-collapse: collapse;
+}
+td,
+th {
+  padding: 0;
+}
+/*! Source: 
https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
+@media print {
+  *,
+  *:before,
+  *:after {
+color: #000 !important;
+text-shadow: none !important;
+background: transparent !important;
+-webkit-box-shadow: none !important;
+box-shadow: none !important;
+  }
+  a,
+  a:visited {
+text-decoration: underline;
+  }
+  a[href]:after {
+content: " (" attr(href) ")";
+  }
+  abbr[title]:after {
+content: " (" attr(title) ")";
+  }
+  a[href^="#"]:after,
+  a[href^="javascript:"]:after {
+content: "";
+  }
+  pre,
+  blockquote {
+border: 1px solid #999;
+
+page-break-inside: avoid;
+  }
+  thead {
+display: table-header-group;
+  }
+  tr,
+  img {
+page-break-inside: avoid;
+  }
+  img {
+max-width: 100% !important;
+  }
+  p,
+  h2,
+  h3 {
+orphans: 3;
+widows: 3;
+  }
+  h2,
+  h3 {
+page-break-after: avoid;
+  }
+  .navbar {
+display: none;
+  }
+  .btn > .caret,
+  .dropup > .btn > .caret {
+border-top-color: #000 !important;
+  }
+  .label {
+border: 1px solid #000;
+  }
+  .table {
+border-collapse: collapse !important;
+  }
+  .table td,
+  .table th {
+background-color: #fff !important;
+  }
+  .table-bordered th,
+  .table-bordered td {
+border: 1px solid #ddd !important;
+  }
+}
+@font-face {
+  font-family: 'Glyphicons Halflings';
+
+  src: url('../fonts/glyphicons-halflings-regular.eot');
+  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') 
format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') 
format('woff2'), 

svn commit: r1737782 [30/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/developer/tools/maven/tomee.pdf
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/developer/tools/maven/tomee.pdf?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/developer/tools/maven/tomee.pdf (added)
+++ tomee/site/trunk/content/ng/developer/tools/maven/tomee.pdf Tue Apr  5 
06:43:46 2016
@@ -0,0 +1,11379 @@
+%PDF-1.3
+%
+1 0 obj
+<< /Title (TomEE Maven Plugin)
+/Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/CreationDate (D:20160323095144+01'00')
+/ModDate (D:20160323095144+01'00')
+>>
+endobj
+2 0 obj
+<< /Type /Catalog
+/Pages 3 0 R
+/Names 13 0 R
+/Outlines 32 0 R
+/PageLabels 37 0 R
+/PageMode /UseOutlines
+/OpenAction [7 0 R /FitH 842.89]
+/ViewerPreferences << /DisplayDocTitle true
+>>
+>>
+endobj
+3 0 obj
+<< /Type /Pages
+/Count 7
+/Kids [7 0 R 10 0 R 17 0 R 19 0 R 21 0 R 24 0 R 28 0 R]
+>>
+endobj
+4 0 obj
+<< /Length 2
+>>
+stream
+q
+
+endstream
+endobj
+5 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 4 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+>>
+>>
+endobj
+6 0 obj
+<< /Length 240
+>>
+stream
+q
+/DeviceRGB cs
+0.600 0.600 0.600 scn
+/DeviceRGB CS
+0.600 0.600 0.600 SCN
+
+BT
+272.30919921874994 351.364496 Td
+/F1.0 27 Tf
+[<54> 29.78515625 <6f6d4545204d6176656e20506c7567696e>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+Q
+
+endstream
+endobj
+7 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 6 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+>>
+>>
+>>
+endobj
+8 0 obj
+<< /Type /Font
+/BaseFont /BJ+NotoSerif
+/Subtype /TrueType
+/FontDescriptor 39 0 R
+/FirstChar 32
+/LastChar 255
+/Widths 41 0 R
+/ToUnicode 40 0 R
+>>
+endobj
+9 0 obj
+<< /Length 24127
+>>
+stream
+q
+/DeviceRGB cs
+0.200 0.200 0.200 scn
+/DeviceRGB CS
+0.200 0.200 0.200 SCN
+
+0.870 Tw
+
+BT
+48.24 791.0774285714285 Td
+/F1.0 13 Tf
+[<54> 29.78515625 
<6f6d4545204d6176656e20506c7567696e206973206120736574206f6620676f616c7320666f722074686520646576656c6f706d656e7420616e6420746f207072657061726520746f20676f>]
 TJ
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24 771.5402857142857 Td
+/F1.0 13 Tf
+<696e2070726f64756374696f6e3a> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+-0.500 Tc
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+54.533001 740.0031428571427 Td
+/F1.0 13 Tf
+ Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+0.000 Tc
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+66.240001 742.7071428571428 Td
+/F2.0 13 Tf
+<746f6d65653a6275696c64> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+-0.500 Tc
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+54.533001 719.14598 Td
+/F1.0 13 Tf
+ Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+0.000 Tc
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+66.240001 721.84999 Td
+/F2.0 13 Tf
+<746f6d65653a65786563> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+-0.500 Tc
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+54.533001 698.288857142857 Td
+/F1.0 13 Tf
+ Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+0.000 Tc
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+66.240001 700.992857142857 Td
+/F2.0 13 Tf
+<746f6d65653a636f6e66696774657374> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+-0.500 Tc
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+54.533001 677.4317142857141 Td
+/F1.0 13 Tf
+ Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+0.000 Tc
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+66.240001 680.1357142857141 Td
+/F2.0 13 Tf
+<746f6d65653a6465627567> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+-0.500 Tc
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+54.533001 656.5745714285712 Td
+/F1.0 13 Tf
+ Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+0.000 Tc
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+66.240001 659.2785714285712 Td
+/F2.0 13 Tf
+<746f6d65653a6465706c6f79> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+-0.500 Tc
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+54.533001 635.7174285714283 Td
+/F1.0 13 Tf
+ Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+0.000 Tc
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+66.240001 638.4214285714284 Td
+/F2.0 13 Tf
+<746f6d65653a65786563> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+-0.500 Tc
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+54.533001 614.8602857142854 Td
+/F1.0 13 Tf
+ Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+0.000 Tc
+0.694 0.129 0.275 scn

svn commit: r1737782 [22/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/developer/testing/arquillian/index.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/developer/testing/arquillian/index.html?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/developer/testing/arquillian/index.html (added)
+++ tomee/site/trunk/content/ng/developer/testing/arquillian/index.html Tue Apr 
 5 06:43:46 2016
@@ -0,0 +1,863 @@
+
+
+
+
+   
+   
+   
+   Apache TomEE
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+
+
+
+
+   
+   
+   
+   
+   
+   
+   
+   Toggle 
navigation
+   
+   
+   
+   
+   
+   
+
+   
+
+
+
+
+   Apache TomEE
+
+   
+   
+   
+   
+   Developer
+   Admin
+   Advanced
+   Security
+   Blog
+   Community
+Downloads
+   
+   
+   
+   
+   
+   
+
+
+
+
+
+  
+  
+
+ Download as PDF
+
+  
+  
+  TomEE and Arquillian
+
+
+
+
+
+
+
+
+TomEE has several arquillian adapter flavors:
+
+
+
+
+openejb-embedded: a plain embedded OpenEJB supporting most of EE 
features
+
+
+tomee-embedded: a full TomEE running in the same JVM
+
+
+tomee-remote: a standard TomEE running in its own process as in 
production
+
+
+tomee-webapp (not recommanded): an adapter starting from a Tomcat and 
installing tomee-webapp
+
+
+
+
+
+
+Embedded or Remote?
+
+Big advantage of embedded adapters is to be able to debug as usual. However 
it has few drawbacks which can make you
+rething this choice:
+
+
+
+
+JVM resources are available where it will likely not be the case in war 
mode (src/main/resources typically)
+
+
+You can mix server and client side features when writing a test
+
+
+Classloading is a bit different by design and less isolated (test 
dependencies) so you can get runtime surprises when really deploying
+
+
+
+
+To summarize: the choice is the trade off you choose between easiness and 
reality of the simulation.
+
+
+
+
+
+Tip
+
+
+in TomEE build we build the same tests against all tomee adapters in the same 
build/module, this means you can use embedded adapter in dev
+and activate remote tomee too (not only cause then if there is a failure you 
dont know if you missed it locally or if it is due
+to the switch of adapter) on your continuous integration platform.
+
+
+
+
+
+
+
+
+Note
+
+
+all configurations have defaults
+
+
+
+
+
+
+OpenEJB Embedded
+
+Coordinates
+
+
+dependency
+  groupIdorg.apache.tomee/groupId
+  artifactIdarquillian-openejb-embedded/artifactId
+  version${tomee7.version}
+/dependency
+
+
+
+
+arquillian.xml
+
+
+
+
+
+
+
+Name
+Description
+
+
+properties
+container 
properties, as in conf/system.properties (not in xml format)
+
+
+preloadClasses
+some class 
to load (ie enforce static block initialization)
+
+
+startDefaultScopes
+should CDI 
default scopes be started (includes @RequestScoped)
+
+
+singleDeploymentByArchiveName
+names of 
archives (or true for all) to dploy a single time
+
+
+
+
+Sample:
+
+
+
+?xml version="1.0" encoding="UTF-8" standalone="yes"?
+arquillian
+xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;
+xsi:schemaLocation="http://jboss.org/schema/arquillian 
http://jboss.org/schema/arquillian/arquillian_1_0.xsd";
+  container qualifier="openejb" default="true"
+configuration
+  property name="properties"
+# used to not have a single DataSource and be able to test the 
resource resolution
+db1 = new://Resource?type=DataSource
+db1.JdbcUrl = jdbc:hsqldb:mem:db1
+
+# will preload both classes, simple comma separated qualified names 
work too
+openejb.arquillian.predeploy-archives = 
org.company.openejb.arquillian.openejb.archive.[SimpleArchive|SimpleArchive2]
+  /property
+/configuration
+  /container
+/arquillian
+
+
+
+
+
+TomEE Embedded
+

svn commit: r1737782 [36/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/fonts/eleganticons/ElegantIcons.ttf
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/fonts/eleganticons/ElegantIcons.ttf?rev=1737782=auto
==
Binary file - no diff available.

Propchange: tomee/site/trunk/content/ng/fonts/eleganticons/ElegantIcons.ttf
--
svn:mime-type = application/octet-stream

Added: tomee/site/trunk/content/ng/fonts/eleganticons/ElegantIcons.woff
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/fonts/eleganticons/ElegantIcons.woff?rev=1737782=auto
==
Binary file - no diff available.

Propchange: tomee/site/trunk/content/ng/fonts/eleganticons/ElegantIcons.woff
--
svn:mime-type = application/octet-stream

Added: tomee/site/trunk/content/ng/fonts/eleganticons/et-icons.css
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/fonts/eleganticons/et-icons.css?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/fonts/eleganticons/et-icons.css (added)
+++ tomee/site/trunk/content/ng/fonts/eleganticons/et-icons.css Tue Apr  5 
06:43:46 2016
@@ -0,0 +1,1159 @@
+@font-face {
+   font-family: 'ElegantIcons';
+   src:url('ElegantIcons.eot');
+   src:url('ElegantIcons.eot?#iefix') format('embedded-opentype'),
+   url('ElegantIcons.woff') format('woff'),
+   url('ElegantIcons.ttf') format('truetype'),
+   url('ElegantIcons.svg#ElegantIcons') format('svg');
+   font-weight: normal;
+   font-style: normal;
+}
+
+/* Use the following CSS code if you want to use data attributes for inserting 
your icons */
+[data-icon]:before {
+   font-family: 'ElegantIcons';
+   content: attr(data-icon);
+   speak: none;
+   font-weight: normal;
+   font-variant: normal;
+   text-transform: none;
+   line-height: 1;
+   -webkit-font-smoothing: antialiased;
+   -moz-osx-font-smoothing: grayscale;
+}
+
+/* Use the following CSS code if you want to have a class per icon */
+/*
+Instead of a list of all class selectors,
+you can use the generic selector below, but it's slower:
+[class*="your-class-prefix"] {
+*/
+.arrow_up, .arrow_down, .arrow_left, .arrow_right, .arrow_left-up, 
.arrow_right-up, .arrow_right-down, .arrow_left-down, .arrow-up-down, 
.arrow_up-down_alt, .arrow_left-right_alt, .arrow_left-right, 
.arrow_expand_alt2, .arrow_expand_alt, .arrow_condense, .arrow_expand, 
.arrow_move, .arrow_carrot-up, .arrow_carrot-down, .arrow_carrot-left, 
.arrow_carrot-right, .arrow_carrot-2up, .arrow_carrot-2down, 
.arrow_carrot-2left, .arrow_carrot-2right, .arrow_carrot-up_alt2, 
.arrow_carrot-down_alt2, .arrow_carrot-left_alt2, .arrow_carrot-right_alt2, 
.arrow_carrot-2up_alt2, .arrow_carrot-2down_alt2, .arrow_carrot-2left_alt2, 
.arrow_carrot-2right_alt2, .arrow_triangle-up, .arrow_triangle-down, 
.arrow_triangle-left, .arrow_triangle-right, .arrow_triangle-up_alt2, 
.arrow_triangle-down_alt2, .arrow_triangle-left_alt2, 
.arrow_triangle-right_alt2, .arrow_back, .icon_minus-06, .icon_plus, 
.icon_close, .icon_check, .icon_minus_alt2, .icon_plus_alt2, .icon_close_alt2, 
.icon_check_alt2, .icon_zoom-out_alt
 , .icon_zoom-in_alt, .icon_search, .icon_box-empty, .icon_box-selected, 
.icon_minus-box, .icon_plus-box, .icon_box-checked, .icon_circle-empty, 
.icon_circle-slelected, .icon_stop_alt2, .icon_stop, .icon_pause_alt2, 
.icon_pause, .icon_menu, .icon_menu-square_alt2, .icon_menu-circle_alt2, 
.icon_ul, .icon_ol, .icon_adjust-horiz, .icon_adjust-vert, .icon_document_alt, 
.icon_documents_alt, .icon_pencil, .icon_pencil-edit_alt, .icon_pencil-edit, 
.icon_folder-alt, .icon_folder-open_alt, .icon_folder-add_alt, .icon_info_alt, 
.icon_error-oct_alt, .icon_error-circle_alt, .icon_error-triangle_alt, 
.icon_question_alt2, .icon_question, .icon_comment_alt, .icon_chat_alt, 
.icon_vol-mute_alt, .icon_volume-low_alt, .icon_volume-high_alt, 
.icon_quotations, .icon_quotations_alt2, .icon_clock_alt, .icon_lock_alt, 
.icon_lock-open_alt, .icon_key_alt, .icon_cloud_alt, .icon_cloud-upload_alt, 
.icon_cloud-download_alt, .icon_image, .icon_images, .icon_lightbulb_alt, 
.icon_gift_alt, .icon_house_alt, .icon_ge
 nius, .icon_mobile, .icon_tablet, .icon_laptop, .icon_desktop, 
.icon_camera_alt, .icon_mail_alt, .icon_cone_alt, .icon_ribbon_alt, 
.icon_bag_alt, .icon_creditcard, .icon_cart_alt, .icon_paperclip, 
.icon_tag_alt, .icon_tags_alt, .icon_trash_alt, .icon_cursor_alt, 
.icon_mic_alt, .icon_compass_alt, .icon_pin_alt, .icon_pushpin_alt, 
.icon_map_alt, .icon_drawer_alt, .icon_toolbox_alt, .icon_book_alt, 
.icon_calendar, .icon_film, .icon_table, .icon_contacts_alt, .icon_headphones, 

svn commit: r1737782 [39/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/js/highlight.pack.js
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/js/highlight.pack.js?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/js/highlight.pack.js (added)
+++ tomee/site/trunk/content/ng/js/highlight.pack.js Tue Apr  5 06:43:46 2016
@@ -0,0 +1,3 @@
+/*! highlight.js v9.2.0 | BSD3 License | git.io/hljslicense */
+!function(e){var t="object"==typeof window&||"object"==typeof 
self&"undefined"!=typeof 
exports?e(exports):t&&(t.hljs=e({}),"function"==typeof 
define&&([],function(){return t.hljs}))}(function(e){function 
t(e){return 
e.replace(/&/gm,"").replace(//gm,"")}function 
r(e){return e.nodeName.toLowerCase()}function a(e,t){var r=e&(t);return 
r&&0==r.index}function 
n(e){return/^(no-?highlight|plain|text)$/i.test(e)}function i(e){var 
t,r,a,i=e.className+" 
";if(i+=e.parentNode?e.parentNode.className:"",r=/\blang(?:uage)?-([\w-]+)\b/i.exec(i))return
 
y(r[1])?r[1]:"no-highlight";for(i=i.split(/\s+/),t=0,a=i.length;a>t;t++)if(y(i[t])||n(i[t]))return
 i[t]}function s(e,t){var r,a={};for(r in e)a[r]=e[r];if(t)for(r in 
t)a[r]=t[r];return a}function c(e){var t=[];return function a(e,n){for(var 
i=e.firstChild;i;i=i.nextSibling)3==i.nodeType?n+=i.nodeValue.length:1==i.nodeType&&(t.push({event:"start",offset:n,node:i}),n=a(i,n),r(i).match
 (/br|hr|img|input/)||t.push({event:"stop",offset:n,node:i}));return 
n}(e,0),t}function o(e,a,n){function i(){return 
e.length&?e[0].offset!=a[0].offset?e[0].offset"}function
 c(e){u+=""}function o(e){("start"==e.event?s:c)(e.node)}for(var 
l=0,u="",d=[];e.length||a.length;){var 
b=i();if(u+=t(n.substr(l,b[0].offset-l)),l=b[0].offset,b==e){d.reverse().forEach(c);do
 
o(b.splice(0,1)[0]),b=i();while(b==e&&[0].offset==l);d.reverse().forEach(s)}else"start"==b[0].event?d.push(b[0].node):d.pop(),o(b.splice(0,1)[0])}return
 u+t(n.substr(l))}function l(e){function t(e){return e&||e}function 
r(r,a){return new RegExp(t(r),"m"+(e.cI?"i":"")+(a?"g":""))}function 
a(n,i){if(!n.compiled){if(n.compiled=!0,n.k=n.k||n.bK,n.k){var 
c={},o=function(t,r){e.cI&&(r=r.toLowerCase()),r.split(
 " ").forEach(function(e){var 
r=e.split("|");c[r[0]]=[t,r[1]?Number(r[1]):1]})};"string"==typeof 
n.k?o("keyword",n.k):Object.keys(n.k).forEach(function(e){o(e,n.k[e])}),n.k=c}n.lR=r(n.l||/\b\w+\b/,!0),i&&(n.bK&&(n.b="\\b("+n.bK.split("
 
").join("|")+")\\b"),n.b||(n.b=/\B|\b/),n.bR=r(n.b),n.e||n.eW||(n.e=/\B|\b/),n.e&&(n.eR=r(n.e)),n.tE=t(n.e)||"",n.eW&&&(n.tE+=(n.e?"|":"")+i.tE)),n.i&&(n.iR=r(n.i)),void
 0===n.r&&(n.r=1),n.c||(n.c=[]);var 
l=[];n.c.forEach(function(e){e.v?e.v.forEach(function(t){l.push(s(e,t))}):l.push("self"==e?n:e)}),n.c=l,n.c.forEach(function(e){a(e,n)}),n.starts&(n.starts,i);var
 u=n.c.map(function(e){return 
e.bK?"\\.?("+e.b+")\\.?":e.b}).concat([n.tE,n.i]).map(t).filter(Boolean);n.t=u.length?r(u.join("|"),!0):{exec:function(){return
 nulla(e)}function u(e,r,n,i){function s(e,t){for(var 
r=0;r',i+t+s}function m(){if(!x.k)return t(E);var 
e="",r=0;x.lR.lastIndex=0;for(var 
a=x.lR.exec(E);a;){e+=t(E.substr(r,a.index-r));var 
n=b(x,a);n?(B+=n[1],e+=p(n[0],t(a[0]))):e+=t(a[0]),r=x.lR.lastIndex,a=x.lR.exec(E)}return
 e+t(E.substr(r))}function f(){var e="string"==typeof 
x.sL;if(e&&!N[x.sL])return t(E);var 
r=e?u(x.sL,E,!0,C[x.sL]):d(E,x.sL.length?x.sL:void 0);return 
x.r>0&&(B+=r.r),e&&(C[x.sL]=r.top),p(r.language,r.value,!1,!0)}function 
g(){M+=void 0!==x.sL?f():m(),E=""}function 
h(e,t){M+=e.cN?p(e.cN,"",!0):"",x=Object.create(e,{parent:{value:x}})}function 
_(e,t){if(E+=e,void 0===t)return g(),0;var r=s(t,x);if(r)return 
r.skip?E+=t:(r.eB&&(E+=t),g(),r.rB||r.eB||(E=t)),h(r,t),r.rB?0:t.length;var 
a=c(x,t);if(a){var n=x;n.skip?E+=t:(n.rE||n.eE||(E+=t),g(),n.eE&&(E=t));do x.cN&
 &(M+=""),x.skip||(B+=x.r),x=x.parent;while(x!=a.parent);return 
a.starts&(a.starts,""),n.rE?0:t.length}if(o(t,x))throw new Error('Illegal 
lexeme "'+t+'" for mode "'+(x.cN||"")+'"');return E+=t,t.length||1}var 
v=y(e);if(!v)throw new Error('Unknown language: "'+e+'"');l(v);var 
k,x=i||v,C={},M="";for(k=x;k!=v;k=k.parent)k.cN&&(M=p(k.cN,"",!0)+M);var 
E="",B=0;try{for(var 
$,z,L=0;;){if(x.t.lastIndex=L,$=x.t.exec(r),!$)break;z=_(r.substr(L,$.index-L),$[0]),L=$.index+z}for(_(r.substr(L)),k=x;k.parent;k=k.parent)k.cN&&(M+="");return{r:B,value:M,language:e,top:x}}catch(R){if(-1!=R.message.indexOf("Illegal"))return{r:0,value:t(r)};throw
 R}}function 

svn commit: r1737782 [4/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-em

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/admin/configuration/application.pdf
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/admin/configuration/application.pdf?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/admin/configuration/application.pdf (added)
+++ tomee/site/trunk/content/ng/admin/configuration/application.pdf Tue Apr  5 
06:43:46 2016
@@ -0,0 +1,3545 @@
+%PDF-1.3
+%
+1 0 obj
+<< /Title (Application Configuration)
+/Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/CreationDate (D:20160323095144+01'00')
+/ModDate (D:20160323095144+01'00')
+>>
+endobj
+2 0 obj
+<< /Type /Catalog
+/Pages 3 0 R
+/Names 12 0 R
+/Outlines 28 0 R
+/PageLabels 32 0 R
+/PageMode /UseOutlines
+/OpenAction [7 0 R /FitH 842.89]
+/ViewerPreferences << /DisplayDocTitle true
+>>
+>>
+endobj
+3 0 obj
+<< /Type /Pages
+/Count 4
+/Kids [7 0 R 10 0 R 19 0 R 26 0 R]
+>>
+endobj
+4 0 obj
+<< /Length 2
+>>
+stream
+q
+
+endstream
+endobj
+5 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 4 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+>>
+>>
+endobj
+6 0 obj
+<< /Length 254
+>>
+stream
+q
+/DeviceRGB cs
+0.600 0.600 0.600 scn
+/DeviceRGB CS
+0.600 0.600 0.600 SCN
+
+BT
+213.13152734374995 351.364496 Td
+/F1.0 27 Tf
+[<4170706c69636174696f6e20436f6e6669677572> 20.01953125 <6174696f6e>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+Q
+
+endstream
+endobj
+7 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 6 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+>>
+>>
+>>
+endobj
+8 0 obj
+<< /Type /Font
+/BaseFont /AV+NotoSerif
+/Subtype /TrueType
+/FontDescriptor 34 0 R
+/FirstChar 32
+/LastChar 255
+/Widths 36 0 R
+/ToUnicode 35 0 R
+>>
+endobj
+9 0 obj
+<< /Length 24633
+>>
+stream
+q
+/DeviceRGB cs
+0.694 0.129 0.275 scn
+/DeviceRGB CS
+0.694 0.129 0.275 SCN
+
+BT
+48.24 790.41 Td
+/F3.0 18 Tf
+<6170706c69636174696f6e2e70726f70657274696573> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24 765.126 Td
+/F1.0 10.5 Tf
+<546869732066696c65206973206c6f636174656420696e20> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+153.4395 765.126 Td
+/F3.0 10.5 Tf
+<5745422d494e46> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+190.1895 765.126 Td
+/F1.0 10.5 Tf
+<20666f7220612077617220616e6420> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+263.563503 765.126 Td
+/F3.0 10.5 Tf
+<4d4554412d494e46> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+305.563503 765.126 Td
+/F1.0 10.5 Tf
+<20666f7220616e206561722e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+48.24 730.62601 Td
+/F3.0 13 Tf
+<404173796e6368726f6e6f7573> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+132.74 730.62601 Td
+/F2.0 13 Tf
+[<20636f6e6669677572> 20.01953125 <6174696f6e>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+0.364 Tw
+
+BT
+48.24 704.06601 Td
+/F1.0 10.5 Tf
+<44656661756c7420706f6f6c2073697a6520666f7220> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+0.364 Tw
+
+BT
+152.9645588235294 704.06601 Td
+/F3.0 10.5 Tf
+<404173796e6368726f6e6f7573> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+0.364 Tw
+
+BT
+221.2145588235294 704.06601 Td
+/F1.0 10.5 Tf
+<20697320352e2049742063616e206265207665727920736d616c6c20666f7220736f6d65206170706c69636174696f6e7320686967686c792072656c79696e67206f6e>
 Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+1.100 Tw
+
+BT
+48.24 688.28602 Td
+/F1.0 10.5 Tf
+<6173796e6368726f6e69736d206f72207265616374697665207061747465726e732e205468657265666f726520697420697320706f737369626c6520746f20637573746f6d697a6520697420616464696e6720746865736520656e747269657320696e>
 Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+48.24 672.50602 Td
+/F3.0 10.5 Tf
+<6170706c69636174696f6e2e70726f70657274696573> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+163.74 672.50602 Td
+/F1.0 10.5 Tf
+<3a> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+48.240 

svn commit: r1737782 [44/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/security/index.pdf
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/security/index.pdf?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/security/index.pdf (added)
+++ tomee/site/trunk/content/ng/security/index.pdf Tue Apr  5 06:43:46 2016
@@ -0,0 +1,1639 @@
+%PDF-1.3
+%
+1 0 obj
+<< /Title (Security)
+/Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/CreationDate (D:20160323095152+01'00')
+/ModDate (D:20160323095152+01'00')
+>>
+endobj
+2 0 obj
+<< /Type /Catalog
+/Pages 3 0 R
+/Names 12 0 R
+/Outlines 28 0 R
+/PageLabels 35 0 R
+/PageMode /UseOutlines
+/OpenAction [7 0 R /FitH 842.89]
+/ViewerPreferences << /DisplayDocTitle true
+>>
+>>
+endobj
+3 0 obj
+<< /Type /Pages
+/Count 3
+/Kids [7 0 R 10 0 R 18 0 R]
+>>
+endobj
+4 0 obj
+<< /Length 2
+>>
+stream
+q
+
+endstream
+endobj
+5 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 4 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+>>
+>>
+endobj
+6 0 obj
+<< /Length 203
+>>
+stream
+q
+/DeviceRGB cs
+0.600 0.600 0.600 scn
+/DeviceRGB CS
+0.600 0.600 0.600 SCN
+
+BT
+441.469997 351.364496 Td
+/F1.0 27 Tf
+<5365637572697479> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+Q
+
+endstream
+endobj
+7 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 6 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+>>
+>>
+>>
+endobj
+8 0 obj
+<< /Type /Font
+/BaseFont /BH+NotoSerif
+/Subtype /TrueType
+/FontDescriptor 37 0 R
+/FirstChar 32
+/LastChar 255
+/Widths 39 0 R
+/ToUnicode 38 0 R
+>>
+endobj
+9 0 obj
+<< /Length 11922
+>>
+stream
+q
+/DeviceRGB cs
+0.200 0.200 0.200 scn
+/DeviceRGB CS
+0.200 0.200 0.200 SCN
+
+BT
+48.24 786.66599 Td
+/F2.0 18 Tf
+<53656375726974792075706461746573> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+2.319 Tw
+
+BT
+48.24 758.646 Td
+/F1.0 10.5 Tf
+[<506c65617365206e6f746520746861742c2065786365707420696e2072> 20.01953125 
<6172652063697263756d7374616e6365732c2062696e617279207061746368657320617265206e6f742070726f647563656420666f7220696e646976696475616c>]
 TJ
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+1.854 Tw
+
+BT
+48.24 742.866 Td
+/F1.0 10.5 Tf
+[<76756c6e6572> 20.01953125 <6162696c69746965732e2054> 29.78515625 
<6f206f627461696e207468652062696e6172792066697820666f72206120706172746963756c61722076756c6e6572>
 20.01953125 <6162696c69747920796f752073686f756c642075706772> 20.01953125 
<61646520746f20616e>] TJ
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24 727.086 Td
+/F1.0 10.5 Tf
+[<4170616368652054> 29.78515625 
<6f6d45452076657273696f6e20776865726520746861742076756c6e6572> 20.01953125 
<6162696c69747920686173206265656e2066697865642e>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+0.984 Tw
+
+BT
+48.24 699.30599 Td
+/F1.0 10.5 Tf
+[<536f7572636520706174636865732c20757375616c6c7920696e2074686520666f726d206f66207265666572656e63657320746f2053>
 20.01953125 <564e20636f6d6d6974732c206d61> 20.01953125 
<792062652070726f766964656420696e2065697468657220696e2061>] TJ
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+1.961 Tw
+
+BT
+48.24 683.526 Td
+/F1.0 10.5 Tf
+[<76756c6e6572> 20.01953125 
<6162696c69747920616e6e6f756e63656d656e7420616e642f6f72207468652076756c6e6572> 
20.01953125 
<6162696c6974792064657461696c73206c6973746564206f6e2074686573652070616765732e20546865736520736f75726365>]
 TJ
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+1.747 Tw
+
+BT
+48.24 667.746 Td
+/F1.0 10.5 Tf
+[<70617463686573206d61> 20.01953125 <7920626520757365642062> 20.01953125 
<792075736572732077697368696e6720746f206275696c64207468656972206f776e206c6f63616c2076657273696f6e206f662054>
 29.78515625 <6f6d45452077697468206a7573742074686174>] TJ
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24 651.966 Td
+/F1.0 10.5 Tf
+[<73656375726974792070617463682072> 20.01953125 
<6174686572207468616e2075706772> 20.01953125 <6164652e>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+1.145 Tw
+
+BT
+48.24 624.18599 Td
+/F1.0 10.5 Tf
+[<5468652041706163686520536f6674776172652046> 40.0390625 
<6f756e646174696f6e2074616b> 20.01953125 
<65732061207665727920616374697665207374616e636520696e20656c696d696e6174696e672073656375726974792070726f626c656d7320616e64>]
 TJ
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN

svn commit: r1737782 [29/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/developer/tools/maven/tomee.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/developer/tools/maven/tomee.html?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/developer/tools/maven/tomee.html (added)
+++ tomee/site/trunk/content/ng/developer/tools/maven/tomee.html Tue Apr  5 
06:43:46 2016
@@ -0,0 +1,686 @@
+
+
+
+
+   
+   
+   
+   Apache TomEE
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+
+
+
+
+   
+   
+   
+   
+   
+   
+   
+   Toggle 
navigation
+   
+   
+   
+   
+   
+   
+
+   
+
+
+
+
+   Apache TomEE
+
+   
+   
+   
+   
+   Developer
+   Admin
+   Advanced
+   Security
+   Blog
+   Community
+Downloads
+   
+   
+   
+   
+   
+   
+
+
+
+
+
+  
+  
+
+ Download as PDF
+
+  
+  
+  TomEE Maven Plugin
+
+
+
+
+
+
+
+
+TomEE Maven Plugin is a set of goals for the development and to prepare to 
go in production:
+
+
+
+
+tomee:build
+
+
+tomee:exec
+
+
+tomee:configtest
+
+
+tomee:debug
+
+
+tomee:deploy
+
+
+tomee:exec
+
+
+tomee:list
+
+
+tomee:run
+
+
+tomee:start
+
+
+tomee:stop
+
+
+tomee:undeploy
+
+
+
+
+
+
+Run
+
+The most commonly used goal, it allows to start a tomee with applications. 
Here is its configuration:
+
+
+
+
+
+
+
+
+
+Name
+Default
+Description
+
+
+
+
+synchronization
+-
+a 
synchronization (see after the table)
+
+
+synchronizations
+-
+list of 
synchronizations
+
+
+reloadOnUpdate
+-
+should the 
application be redeployed when a synchronization is triggered
+
+
+skipCurrentProject
+false
+should 
current project not be considered as a deployable even if its packaging is 
compatible (war typically)
+
+
+tomeeVersion
+auto, 
plugin one
+which 
version of TomEE to use
+
+
+tomeeGroupId
+org.apache.tomee
+TomEE 
artifact groupId
+
+
+tomeeArtifactId
+apache-tomee
+TomEE 
artifact artifactId
+
+
+tomeeType
+zip
+the type 
of the TomEE artifact , only zip supported at the moment
+
+
+tomeeClassifier
+webprofile
+which 
flavor of TomEE to use (classifier)
+
+
+tomeeShutdownPort
+read from 
server.xml
+the 
shutdown port
+
+
+tomeeShutdownAttempts
+60
+how many 
times to wait for startup/shutdown (waits 1s in between)
+
+
+tomeeShutdownCommand
+SHUTDOWN
+the 
shutdown command
+
+
+tomeeAjpPort
+read from 
the pom
+the AJP 
port if needed
+
+
+tomeeHttpsPort
+read from 
the pom
+the HTTPS 
port if needed
+
+
+args
+-
+command 
line arguments (system properties, javaagent, JVM options 
)
+
+
+debug
+-
+start and 
wait for a remote debugger to connect
+
+
+debugPort
+5005
+used when 
debug to change the default port
+
+
+simpleLog
+false
+use one 
line logs
+
+
+extractWars
+false
+explode 
wars before starting
+
+
+stripWarVersion
+true
+remove the 
version from the war name
+
+
+stripVersion
+false
+remove the 
version from the artifact name whatever it is (even jar)
+
+
+webappResources
+${project.basedir}/src/main/webapp
+where web 
resources are
+
+
+webappClasses and classes
+${project.build.outputDirectory}
+where 
artifact binaries are
+
+
+catalinaBase
+${project.build.directory}/apache-tomee
+where to 
create the tomee instance
+
+
+context
+-
+name of 
the current artifact (rename the war from the maven name to this one)
+
+
+webappDir
+webapps
+path to 
webapps folder from tomee.base
+
+
+appDir
+apps
+path to 
apps folder from tomee.base
+
+
+libDir
+lib
+where is 
lib folder
+
+
+mainDir
+${project.basedir}/src/main
+used in 
openejb mode to change default config of conf/lib/bin folders to openejb 
instead of tomee
+
+
+config
+${project.basedir}/src/main/tomee/conf
+a conf 
folder synchronized with TomEE one
+
+
+bin
+${project.basedir}/src/main/tomee/bin
+a bin 
folder synchronized with TomEE one
+
+
+lib

svn commit: r1737782 [23/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/developer/testing/arquillian/index.pdf
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/developer/testing/arquillian/index.pdf?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/developer/testing/arquillian/index.pdf (added)
+++ tomee/site/trunk/content/ng/developer/testing/arquillian/index.pdf Tue Apr  
5 06:43:46 2016
@@ -0,0 +1,19238 @@
+%PDF-1.3
+%
+1 0 obj
+<< /Title (TomEE and Arquillian)
+/Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/CreationDate (D:20160323095144+01'00')
+/ModDate (D:20160323095144+01'00')
+>>
+endobj
+2 0 obj
+<< /Type /Catalog
+/Pages 3 0 R
+/Names 12 0 R
+/Outlines 47 0 R
+/PageLabels 54 0 R
+/PageMode /UseOutlines
+/OpenAction [7 0 R /FitH 842.89]
+/ViewerPreferences << /DisplayDocTitle true
+>>
+>>
+endobj
+3 0 obj
+<< /Type /Pages
+/Count 12
+/Kids [7 0 R 10 0 R 20 0 R 25 0 R 27 0 R 29 0 R 31 0 R 36 0 R 38 0 R 40 0 R 43 
0 R 45 0 R]
+>>
+endobj
+4 0 obj
+<< /Length 2
+>>
+stream
+q
+
+endstream
+endobj
+5 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 4 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+>>
+>>
+endobj
+6 0 obj
+<< /Length 241
+>>
+stream
+q
+/DeviceRGB cs
+0.600 0.600 0.600 scn
+/DeviceRGB CS
+0.600 0.600 0.600 SCN
+
+BT
+261.50919921875 351.364496 Td
+/F1.0 27 Tf
+[<54> 29.78515625 <6f6d454520616e642041727175696c6c69616e>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+Q
+
+endstream
+endobj
+7 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 6 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+>>
+>>
+>>
+endobj
+8 0 obj
+<< /Type /Font
+/BaseFont /CG+NotoSerif
+/Subtype /TrueType
+/FontDescriptor 56 0 R
+/FirstChar 32
+/LastChar 255
+/Widths 58 0 R
+/ToUnicode 57 0 R
+>>
+endobj
+9 0 obj
+<< /Length 12565
+>>
+stream
+q
+/DeviceRGB cs
+0.200 0.200 0.200 scn
+/DeviceRGB CS
+0.200 0.200 0.200 SCN
+
+BT
+48.24 791.0774285714285 Td
+/F1.0 13 Tf
+[<54> 29.78515625 <6f6d454520686173207365766572> 20.01953125 
<616c2061727175696c6c69616e206164617074657220666c61766f72733a>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+-0.500 Tc
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+54.533001 759.5402857142857 Td
+/F1.0 13 Tf
+ Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+0.000 Tc
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+5.835 Tw
+
+BT
+66.240001 759.5402857142857 Td
+/F1.0 13 Tf
+<6f70656e656a622d656d6265646465643a206120706c61696e20656d626564646564204f70656e454a4220737570706f7274696e67206d6f7374206f66204545>
 Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+66.240001 740.0031428571428 Td
+/F1.0 13 Tf
+<6665617475726573> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+-0.500 Tc
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+54.533001 714.46599 Td
+/F1.0 13 Tf
+ Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+0.000 Tc
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+66.240001 714.46599 Td
+/F1.0 13 Tf
+[<746f6d65652d656d6265646465643a20612066756c6c2054> 29.78515625 
<6f6d45452072756e6e696e6720696e207468652073616d65204a564d>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+-0.500 Tc
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+54.533001 688.928857142857 Td
+/F1.0 13 Tf
+ Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+0.000 Tc
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+66.240001 688.928857142857 Td
+/F1.0 13 Tf
+[<746f6d65652d72656d6f74653a2061207374616e646172642054> 29.78515625 
<6f6d45452072756e6e696e6720696e20697473206f776e2070726f6365737320617320696e2070726f64756374696f6e>]
 TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+-0.500 Tc
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+54.533001 663.3917142857142 Td
+/F1.0 13 Tf
+ Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+0.000 Tc
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+1.825 Tw
+
+BT
+66.240001 663.3917142857142 Td
+/F1.0 13 Tf
+[<746f6d65652d77656261707020286e6f74207265636f6d6d616e646564293a20616e2061646170746572207374617274696e672066726f6d20612054>
 29.78515625 <6f6d63617420616e64>] TJ
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+66.240001 643.8545714285714 Td
+/F1.0 13 Tf
+<696e7374616c6c696e6720746f6d65652d776562617070> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.240001 603.10599 Td
+/F2.0 18 Tf
+<456d626564646564206f722052656d6f74653f> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn

svn commit: r1737782 [15/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/advanced/tomee-embedded/index.pdf
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/advanced/tomee-embedded/index.pdf?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/advanced/tomee-embedded/index.pdf (added)
+++ tomee/site/trunk/content/ng/advanced/tomee-embedded/index.pdf Tue Apr  5 
06:43:46 2016
@@ -0,0 +1,6708 @@
+%PDF-1.3
+%
+1 0 obj
+<< /Title (TomEE Embedded)
+/Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/CreationDate (D:20160323095152+01'00')
+/ModDate (D:20160323095152+01'00')
+>>
+endobj
+2 0 obj
+<< /Type /Catalog
+/Pages 3 0 R
+/Names 13 0 R
+/Outlines 22 0 R
+/PageLabels 26 0 R
+/PageMode /UseOutlines
+/OpenAction [7 0 R /FitH 842.89]
+/ViewerPreferences << /DisplayDocTitle true
+>>
+>>
+endobj
+3 0 obj
+<< /Type /Pages
+/Count 4
+/Kids [7 0 R 10 0 R 17 0 R 19 0 R]
+>>
+endobj
+4 0 obj
+<< /Length 2
+>>
+stream
+q
+
+endstream
+endobj
+5 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 4 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+>>
+>>
+endobj
+6 0 obj
+<< /Length 232
+>>
+stream
+q
+/DeviceRGB cs
+0.600 0.600 0.600 scn
+/DeviceRGB CS
+0.600 0.600 0.600 SCN
+
+BT
+312.21519921874994 351.364496 Td
+/F1.0 27 Tf
+[<54> 29.78515625 <6f6d454520456d626564646564>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+Q
+
+endstream
+endobj
+7 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 6 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+>>
+>>
+>>
+endobj
+8 0 obj
+<< /Type /Font
+/BaseFont /BU+NotoSerif
+/Subtype /TrueType
+/FontDescriptor 28 0 R
+/FirstChar 32
+/LastChar 255
+/Widths 30 0 R
+/ToUnicode 29 0 R
+>>
+endobj
+9 0 obj
+<< /Length 33346
+>>
+stream
+q
+/DeviceRGB cs
+0.200 0.200 0.200 scn
+/DeviceRGB CS
+0.200 0.200 0.200 SCN
+
+0.555 Tw
+
+BT
+48.24 791.0774285714285 Td
+/F1.0 13 Tf
+[<54> 29.78515625 <6f6d454520456d626564646564206973206261736564206f6e2054> 
29.78515625 
<6f6d63617420656d62656464656420616e64207374617274732061207265616c2054> 
29.78515625 <6f6d454520696e20746865>] TJ
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+1.967 Tw
+
+BT
+48.24 771.5402857142857 Td
+/F1.0 13 Tf
+[<6c61756e6368696e67204a564d2e20497420697320616c736f2061626c6520746f206465706c6f>
 20.01953125 
<792074686520636c6173737061746820617320612077656261707020616e6420746f20757365>] 
TJ
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24 752.0031428571428 Td
+/F1.0 13 Tf
+<65697468657220> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+88.604999 752.0031428571428 Td
+/F2.0 13 Tf
+<4d4554412d494e462f7265736f7572636573> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+205.605002 752.0031428571428 Td
+/F1.0 13 Tf
+<206f72206120666f6c64657220617320776562207265736f75726365732e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+31.410 Tw
+
+BT
+48.24 720.46599 Td
+/F1.0 13 Tf
+[<4865726520697320612062617369632070726f6772> 20.01953125 
<616d6d61746963207573616765206261736564206f6e>] TJ
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+48.24 700.928857142857 Td
+/F2.0 13 Tf
+<6f72672e6170616368652e746f6d65652e656d6265646465642e436f6e7461696e6572> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+275.74 700.928857142857 Td
+/F1.0 13 Tf
+<20636c6173733a> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+q
+0.961 0.961 0.961 scn
+52.240 684.204 m
+543.040 684.204 l
+545.249 684.204 547.040 682.413 547.040 680.204 c
+547.040 563.024 l
+547.040 560.815 545.249 559.024 543.040 559.024 c
+52.240 559.024 l
+50.031 559.024 48.240 560.815 48.240 563.024 c
+48.240 680.204 l
+48.240 682.413 50.031 684.204 52.240 684.204 c
+h
+f
+0.800 0.800 0.800 SCN
+0.75 w
+52.240 684.204 m
+543.040 684.204 l
+545.249 684.204 547.040 682.413 547.040 680.204 c
+547.040 563.024 l
+547.040 560.815 545.249 559.024 543.040 559.024 c
+52.240 559.024 l
+50.031 559.024 48.240 560.815 48.240 563.024 c
+48.240 680.204 l
+48.240 682.413 50.031 684.204 52.240 684.204 c
+h
+S
+Q
+0.000 0.400 0.600 scn
+0.000 0.400 0.600 SCN
+
+BT
+59.24 661.3792857142855 Td
+/F2.0 11 Tf
+<747279> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+75.740001 661.3792857142855 Td
+/F2.0 11 Tf
+<20> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT

svn commit: r1737782 [2/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-em

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/admin/cluster/index.pdf
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/admin/cluster/index.pdf?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/admin/cluster/index.pdf (added)
+++ tomee/site/trunk/content/ng/admin/cluster/index.pdf Tue Apr  5 06:43:46 2016
@@ -0,0 +1,9591 @@
+%PDF-1.3
+%
+1 0 obj
+<< /Title (Clustering)
+/Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/CreationDate (D:20160323095149+01'00')
+/ModDate (D:20160323095149+01'00')
+>>
+endobj
+2 0 obj
+<< /Type /Catalog
+/Pages 3 0 R
+/Names 12 0 R
+/Outlines 51 0 R
+/PageLabels 57 0 R
+/PageMode /UseOutlines
+/OpenAction [7 0 R /FitH 842.89]
+/ViewerPreferences << /DisplayDocTitle true
+>>
+>>
+endobj
+3 0 obj
+<< /Type /Pages
+/Count 8
+/Kids [7 0 R 10 0 R 26 0 R 30 0 R 34 0 R 37 0 R 43 0 R 48 0 R]
+>>
+endobj
+4 0 obj
+<< /Length 2
+>>
+stream
+q
+
+endstream
+endobj
+5 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 4 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+>>
+>>
+endobj
+6 0 obj
+<< /Length 206
+>>
+stream
+q
+/DeviceRGB cs
+0.600 0.600 0.600 scn
+/DeviceRGB CS
+0.600 0.600 0.600 SCN
+
+BT
+415.60399 351.364496 Td
+/F1.0 27 Tf
+<436c7573746572696e67> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+Q
+
+endstream
+endobj
+7 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 6 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+>>
+>>
+>>
+endobj
+8 0 obj
+<< /Type /Font
+/BaseFont /BZ+NotoSerif
+/Subtype /TrueType
+/FontDescriptor 59 0 R
+/FirstChar 32
+/LastChar 255
+/Widths 61 0 R
+/ToUnicode 60 0 R
+>>
+endobj
+9 0 obj
+<< /Length 10790
+>>
+stream
+q
+/DeviceRGB cs
+0.200 0.200 0.200 scn
+/DeviceRGB CS
+0.200 0.200 0.200 SCN
+
+BT
+48.24 786.66599 Td
+/F2.0 18 Tf
+<53657373696f6e20636c7573746572696e67> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24 758.646 Td
+/F1.0 10.5 Tf
+[<54> 29.78515625 <6f6d45452066756c6c792072656c696573206f6e2054> 29.78515625 
<6f6d63617420636c7573746572696e673a20>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.259 0.545 0.792 scn
+0.259 0.545 0.792 SCN
+
+BT
+252.73201171875002 758.646 Td
+/F1.0 10.5 Tf
+[<54> 29.78515625 <6f6d63617420436c7573746572696e67>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+343.412267578125 758.646 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+5.172 Tw
+
+BT
+48.24 730.866 Td
+/F1.0 10.5 Tf
+[<54686520636f6e6669677572> 20.01953125 
<6174696f6e206973206d61696e6c7920696e20>] TJ
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+5.172 Tw
+
+BT
+227.75552376302082 730.866 Td
+/F3.0 10.5 Tf
+<636f6e662f7365727665722e786d6c> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+5.172 Tw
+
+BT
+306.50552376302085 730.866 Td
+/F1.0 10.5 Tf
+[<20616e642073696e63652054> 29.78515625 <6f6d454520372043444920>] TJ
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+5.172 Tw
+
+BT
+457.5637542317708 730.866 Td
+/F3.0 10.5 Tf
+<4053657373696f6e53636f706564> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+5.172 Tw
+
+BT
+531.0637542317708 730.866 Td
+/F1.0 10.5 Tf
+<206973> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24 715.086 Td
+/F1.0 10.5 Tf
+[<7472> 20.01953125 
<616e73706172656e746c7920636c75737465726564207468726f756768207468652073657373696f6e2e>]
 TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24 675.24601 Td
+/F2.0 18 Tf
+<48617a656c636173742061732073657373696f6e2070726f7669646572> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24 647.22601 Td
+/F1.0 10.5 Tf
+<48617a656c6361737420646964206120706f7374206f6e207468697320746f706963206f6e20> 
Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.259 0.545 0.792 scn
+0.259 0.545 0.792 SCN
+
+BT
+229.806 647.22601 Td
+/F1.0 10.5 Tf
+[<53657373696f6e20436c7573746572696e6720576974682054> 29.78515625 <6f6d4545>] 
TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+385.90125585937506 647.22601 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+

svn commit: r1737782 [14/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/advanced/shading/index.pdf
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/advanced/shading/index.pdf?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/advanced/shading/index.pdf (added)
+++ tomee/site/trunk/content/ng/advanced/shading/index.pdf Tue Apr  5 06:43:46 
2016
@@ -0,0 +1,1998 @@
+%PDF-1.3
+%
+1 0 obj
+<< /Title (TomEE and Fat jars)
+/Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/CreationDate (D:20160323095152+01'00')
+/ModDate (D:20160323095152+01'00')
+>>
+endobj
+2 0 obj
+<< /Type /Catalog
+/Pages 3 0 R
+/Outlines 18 0 R
+/PageLabels 20 0 R
+/PageMode /UseOutlines
+/OpenAction [7 0 R /FitH 842.89]
+/ViewerPreferences << /DisplayDocTitle true
+>>
+>>
+endobj
+3 0 obj
+<< /Type /Pages
+/Count 3
+/Kids [7 0 R 10 0 R 16 0 R]
+>>
+endobj
+4 0 obj
+<< /Length 2
+>>
+stream
+q
+
+endstream
+endobj
+5 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 4 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+>>
+>>
+endobj
+6 0 obj
+<< /Length 254
+>>
+stream
+q
+/DeviceRGB cs
+0.600 0.600 0.600 scn
+/DeviceRGB CS
+0.600 0.600 0.600 SCN
+
+BT
+298.85125390624995 351.364496 Td
+/F1.0 27 Tf
+[<54> 29.78515625 <6f6d454520616e642046> 40.0390625 <6174206a617273>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+Q
+
+endstream
+endobj
+7 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 6 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+>>
+>>
+>>
+endobj
+8 0 obj
+<< /Type /Font
+/BaseFont /BE+NotoSerif
+/Subtype /TrueType
+/FontDescriptor 22 0 R
+/FirstChar 32
+/LastChar 255
+/Widths 24 0 R
+/ToUnicode 23 0 R
+>>
+endobj
+9 0 obj
+<< /Length 22713
+>>
+stream
+q
+/DeviceRGB cs
+0.200 0.200 0.200 scn
+/DeviceRGB CS
+0.200 0.200 0.200 SCN
+
+1.710 Tw
+
+BT
+48.24 793.92599 Td
+/F1.0 10.5 Tf
+[<53686164696e672074686520636f6e7461696e657220616e6420746865206170706c69636174696f6e2068617320736f6d65206368616c6c656e676573206c696b>
 20.01953125 <65206d657267696e6720636f72726563746c79207265736f7572636573>] TJ
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24 778.146 Td
+/F1.0 10.5 Tf
+<28> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+51.8730005 778.146 Td
+/F2.0 10.5 Tf
+<4d4554412d494e462f73657276696365732f> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+146.373 778.146 Td
+/F1.0 10.5 Tf
+<207479706963616c6c79292e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24 750.366 Td
+/F1.0 10.5 Tf
+[<486572652069732061206d6176656e20736861646520706c7567696e20636f6e6669677572> 
20.01953125 <6174696f6e20776f726b696e6720666f72206d6f73742063617365733a>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+q
+0.961 0.961 0.961 scn
+52.240 734.550 m
+543.040 734.550 l
+545.249 734.550 547.040 732.759 547.040 730.550 c
+547.040 141.690 l
+547.040 139.481 545.249 137.690 543.040 137.690 c
+52.240 137.690 l
+50.031 137.690 48.240 139.481 48.240 141.690 c
+48.240 730.550 l
+48.240 732.759 50.031 734.550 52.240 734.550 c
+h
+f
+0.800 0.800 0.800 SCN
+0.75 w
+52.240 734.550 m
+543.040 734.550 l
+545.249 734.550 547.040 732.759 547.040 730.550 c
+547.040 141.690 l
+547.040 139.481 545.249 137.690 543.040 137.690 c
+52.240 137.690 l
+50.031 137.690 48.240 139.481 48.240 141.690 c
+48.240 730.550 l
+48.240 732.759 50.031 734.550 52.240 734.550 c
+h
+S
+Q
+0.184 0.435 0.624 scn
+0.184 0.435 0.624 SCN
+
+BT
+59.24 711.725 Td
+/F2.0 11 Tf
+<3c706c7567696e3e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+59.24 696.985 Td
+/F2.0 11 Tf
+ Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.184 0.435 0.624 scn
+0.184 0.435 0.624 SCN
+
+BT
+70.240001 696.985 Td
+/F2.0 11 Tf
+<3c67726f757049643e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+119.740001 696.985 Td
+/F2.0 11 Tf
+<6f72672e6170616368652e6d6176656e2e706c7567696e73> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.184 0.435 0.624 scn
+0.184 0.435 0.624 SCN
+
+BT
+251.74 696.985 Td
+/F2.0 11 Tf
+<3c2f67726f757049643e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+59.24 682.24501 Td
+/F2.0 11 Tf
+ Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.184 0.435 0.624 scn
+0.184 0.435 0.624 SCN
+
+BT
+70.240001 682.24501 Td
+/F2.0 11 Tf
+<3c617274696661637449643e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn

svn commit: r1737782 [3/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-em

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/admin/configuration/application.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/admin/configuration/application.html?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/admin/configuration/application.html (added)
+++ tomee/site/trunk/content/ng/admin/configuration/application.html Tue Apr  5 
06:43:46 2016
@@ -0,0 +1,340 @@
+
+
+
+
+   
+   
+   
+   Apache TomEE
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+
+
+
+
+   
+   
+   
+   
+   
+   
+   
+   Toggle 
navigation
+   
+   
+   
+   
+   
+   
+
+   
+
+
+
+
+   Apache TomEE
+
+   
+   
+   
+   
+   Developer
+   Admin
+   Advanced
+   Security
+   Blog
+   Community
+Downloads
+   
+   
+   
+   
+   
+   
+
+
+
+
+
+  
+  
+
+ Download as PDF
+
+  
+  
+  Application Configuration
+
+
+
+
+
+
+application.properties
+
+This file is located in WEB-INF for a war and 
META-INF for an ear.
+
+
+@Asynchronous 
configuration
+
+Default pool size for @Asynchronous is 5. It can be very small 
for some applications highly relying on
+asynchronism or reactive patterns. Therefore it is possible to customize it 
adding these entries in application.properties:
+
+
+
+
+
+
+
+
+
+Name
+Default
+Description
+
+
+
+
+AsynchronousPool.Size
+5
+Core size 
of the pool
+
+
+AsynchronousPool.CorePoolSize
+5
+Core size 
of the pool (inherit its default from .Size alias)
+
+
+AsynchronousPool.MaximumPoolSize
+5
+Maximum 
size of the pool
+
+
+AsynchronousPool.QueueSize
+5
+Maximum 
size of the pool
+
+
+AsynchronousPool.KeepAliveTime
+1 
minute
+Thread 
keep alive duration
+
+
+AsynchronousPool.AllowCoreThreadTimeOut
+true
+Should 
thread timeout
+
+
+AsynchronousPool.QueueType
+LINKED (or 
SYNCHRONOUS if size == 0)
+The type 
of queue of the pool in ARRAY, LINKED, PRIORITY or SYNCHRONOUS (same behavior 
as java implementations of the same name)
+
+
+AsynchronousPool.ShutdownWaitDuration
+1 
minute
+How many 
time to wait for the pool to shutdown when undeploying the application
+
+
+AsynchronousPool.RejectedExecutionHandlerClass
+-
+A fully 
qualified name of a 
java.util.concurrent.RejectedExecutionHandler
+
+
+
+
+
+TimerService and 
@Scheduled
+
+timerStore.class allows to switch from the in memory 
(org.apache.openejb.core.timer.MemoryTimerStore) timer storage
+for quartz tasks to a custom implementation (using a database or anything for 
instance). Constructor can take a TransactionManager
+or nothing.
+
+
+All quartz properties prefixed with org.apache.openejb.quartz. 
(instead of org.quartz.) are passthrough to quartz.
+
+
+
+CDI
+
+The boolean openejb.cdi.skip-resource-validation allows to not 
validate resources ie @EJB and @Resource usages in 
CDI beans.
+
+
+All properties understood by OpenWebBeans will also be passthrough to 
OpenWebBeans from this location, see http://openwebbeans.apache.org/owbconfig.html;>OWB config for more 
details.
+
+
+
+@WebServiceRef
+
+
+
+
+
+
+
+Name
+Description
+
+
+
+
+cxf.jaxws.client.wsFeatures
+Allows to 
set WSFeature on the client injection. Values is a list (comma separated) of 
resource id in resources.xml or fully qualified names.
+
+
+
+
+
+@Stateless
+
+
+
+
+
+
+
+Name
+Description
+
+
+
+
+AccessTimeout or Timeout
+container 
timeout
+
+
+CloseTimeout
+container 
timeout
+
+
+BackgroundStartup
+Dont create instances in parallel if minimum count is 
 0, default to false
+
+
+
+
+
+
+resources.xml
+
+resources.xml is a tomee.xml using application classloader.
+
+
+As tomee.xml it supports filtering so you can use environment 
variables and system properties, for instance
+to use a MySQL database on OpenShift you can do:
+
+
+
+?xml version="1.0" encoding="UTF-8"?
+resources
+  

svn commit: r1737782 [13/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/advanced/index.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/advanced/index.html?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/advanced/index.html (added)
+++ tomee/site/trunk/content/ng/advanced/index.html Tue Apr  5 06:43:46 2016
@@ -0,0 +1,177 @@
+
+
+
+
+   
+   
+   
+   Apache TomEE
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+
+
+
+
+   
+   
+   
+   
+   
+   
+   
+   Toggle 
navigation
+   
+   
+   
+   
+   
+   
+
+   
+
+
+
+
+   Apache TomEE
+
+   
+   
+   
+   
+   Developer
+   Admin
+   Advanced
+   Security
+   Blog
+   Community
+Downloads
+   
+   
+   
+   
+   
+   
+
+
+
+
+
+  
+  
+
+ Download as PDF
+
+  
+  
+  Advanced
+
+
+
+
+
+
+
+
+Use 
ApplicationComposer to write mains
+
+
+How to install TomEE properly
+
+
+Simple deployable: fat/uber jars
+
+
+
+
+
+
+
+
+   
+   
+   
+   Apache TomEE the 
little great server.
+   "A good application in a good server"
+   
+   https://fr-fr.facebook.com/ApacheTomEE/;>
+   https://twitter.com/apachetomee;>
+   https://plus.google.com/communities/105208241852045684449;>
+   
+   
+   
+   
+   
+   Administration
+   
+   Cluster
+   Configuration
+   
+   
+   
+   Developer
+   
+   Classloading
+   IDE
+   Testing
+   Tools
+   
+   
+   
+   Advanced
+   
+   Application Composer
+   Setup
+   Shading
+   TomEE 
Embedded
+   
+   
+   
+   Community
+   
+   Contributors
+   Social
+   Sources
+   
+   
+  

svn commit: r1737782 [9/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-em

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/admin/configuration/server.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/admin/configuration/server.html?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/admin/configuration/server.html (added)
+++ tomee/site/trunk/content/ng/admin/configuration/server.html Tue Apr  5 
06:43:46 2016
@@ -0,0 +1,507 @@
+
+
+
+
+   
+   
+   
+   Apache TomEE
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+
+
+
+
+   
+   
+   
+   
+   
+   
+   
+   Toggle 
navigation
+   
+   
+   
+   
+   
+   
+
+   
+
+
+
+
+   Apache TomEE
+
+   
+   
+   
+   
+   Developer
+   Admin
+   Advanced
+   Security
+   Blog
+   Community
+Downloads
+   
+   
+   
+   
+   
+   
+
+
+
+
+
+  
+  
+
+ 
Download as PDF
+
+  
+  
+  Container Configuration
+
+
+
+
+
+
+Server
+
+
+
+
+
+
+
+
+Name
+Value
+Description
+
+
+
+
+openejb.embedded.remotable
+bool
+activate 
or not the remote services when available
+
+
+.bind, 
service prefix.port, service prefix.disabled, service 
prefix.threadshost or IP, port, bool  override the host. Available 
for ejbd and httpejbd services (used by jaxws and jaxrs), number of thread to 
maneg requests
+openejb.embedded.initialcontext.close
+LOGOUT or 
DESTROY
+
+
+configure 
the hook called when closing the initial context. Useful when starting OpenEJB 
from a new InitialContext([properties]) instantiation. By default it simply 
logs out the logged user if it exists. DESTROY means clean the 
container.
+javax.persistence.provider
+string
+
+
+override 
the JPA provider value
+javax.persistence.transactionType
+string
+
+
+override 
the transaction type for persistence contexts
+javax.persistence.jtaDataSource
+string
+
+
+override 
the JTA datasource value for persistence contexts
+javax.persistence.nonJtaDataSource
+string
+
+
+override 
the non JTA datasource value for persistence contexts
+openejb.descriptors.output
+bool
+
+
+dump 
memory deployment descriptors. Can be used to set complete metadata to true and 
avoid scanning when starting the container or to check the used 
configuration.
+openejb.deployments.classpath.require.descriptor
+CLIENT or 
EJB
+
+
+can allow 
to filter what you want to scan (client modules or ejb modules)
+openejb.descriptors.output.folder
+path
+
+
+where to 
dump deployement descriptors if activated.
+openejb.strict.interface.declaration
+bool
+
+
+add some 
validations on session beans (spec validations in particular). false by 
default.
+openejb.conf.file or openejb.configuration
+string
+
+
+OpenEJB 
configuration file path
+openejb.debuggable-vm-hackery
+bool
+
+
+remove JMS 
informations from deployment
+openejb.validation.skip
+bool
+
+
+skip the 
validations done when OpenEJB deploys beans
+openejb.deployments.classpath.ear
+bool
+
+
+deploy the 
classpath as an ear
+openejb.webservices.enabled
+bool
+
+
+activate 
or not webservices
+openejb.validation.output.level
+TERSE or 
MEDIUM or VERBOSE
+
+
+level of 
the logs used to report validation errors
+openejb.user.mbeans.list   * or a list of classes separated 
by ,
+list of 
mbeans to deploy automatically
+
+
+openejb.deploymentId.formatcomposition (+string) of 
{ejbName} {ejbType} {ejbClass} and {ejbClass.simpleName}   default 
{ejbName}. The format to use to deploy ejbs.
+openejb.deployments.classpath
+bool
+
+
+whether or 
not deploy from classpath
+openejb.deployments.classpath.include and 
openejb.deployments.classpath.exclude
+regex
+
+
+regex to 
filter the scanned classpath (when you are in this case)
+openejb.deployments.package.include and 
openejb.deployments.package.exclude
+regex
+
+
+regex to 
filter scanned packages

svn commit: r1737782 [37/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: 
tomee/site/trunk/content/ng/fonts/font-awesome-4.1.0/fonts/fontawesome-webfont.svg
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/fonts/font-awesome-4.1.0/fonts/fontawesome-webfont.svg?rev=1737782=auto
==
--- 
tomee/site/trunk/content/ng/fonts/font-awesome-4.1.0/fonts/fontawesome-webfont.svg
 (added)
+++ 
tomee/site/trunk/content/ng/fonts/font-awesome-4.1.0/fonts/fontawesome-webfont.svg
 Tue Apr  5 06:43:46 2016
@@ -0,0 +1,520 @@
+
+http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd; >
+http://www.w3.org/2000/svg;>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

[... 325 lines stripped ...]




svn commit: r1737782 [34/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/favicon.ico
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/favicon.ico?rev=1737782=auto
==
Binary file - no diff available.

Propchange: tomee/site/trunk/content/ng/favicon.ico
--
svn:mime-type = application/octet-stream

Added: tomee/site/trunk/content/ng/favicon.png
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/favicon.png?rev=1737782=auto
==
Binary file - no diff available.

Propchange: tomee/site/trunk/content/ng/favicon.png
--
svn:mime-type = application/octet-stream

Added: tomee/site/trunk/content/ng/fonts/eleganticons/ElegantIcons.eot
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/fonts/eleganticons/ElegantIcons.eot?rev=1737782=auto
==
Binary file - no diff available.

Propchange: tomee/site/trunk/content/ng/fonts/eleganticons/ElegantIcons.eot
--
svn:mime-type = application/octet-stream




svn commit: r1737782 [1/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-em

2016-04-05 Thread rmannibucau
Author: rmannibucau
Date: Tue Apr  5 06:43:46 2016
New Revision: 1737782

URL: http://svn.apache.org/viewvc?rev=1737782=rev
Log:
adding ng website

Added:
tomee/site/trunk/content/ng/
tomee/site/trunk/content/ng/admin/
tomee/site/trunk/content/ng/admin/cluster/
tomee/site/trunk/content/ng/admin/cluster/index.html
tomee/site/trunk/content/ng/admin/cluster/index.pdf
tomee/site/trunk/content/ng/admin/configuration/
tomee/site/trunk/content/ng/admin/configuration/application.html
tomee/site/trunk/content/ng/admin/configuration/application.pdf
tomee/site/trunk/content/ng/admin/configuration/containers.html
tomee/site/trunk/content/ng/admin/configuration/containers.pdf
tomee/site/trunk/content/ng/admin/configuration/index.html
tomee/site/trunk/content/ng/admin/configuration/index.pdf
tomee/site/trunk/content/ng/admin/configuration/resources.html
tomee/site/trunk/content/ng/admin/configuration/resources.pdf
tomee/site/trunk/content/ng/admin/configuration/server.html
tomee/site/trunk/content/ng/admin/configuration/server.pdf
tomee/site/trunk/content/ng/admin/file-layout.html
tomee/site/trunk/content/ng/admin/file-layout.pdf
tomee/site/trunk/content/ng/admin/index.html
tomee/site/trunk/content/ng/admin/index.pdf
tomee/site/trunk/content/ng/advanced/
tomee/site/trunk/content/ng/advanced/applicationcomposer/
tomee/site/trunk/content/ng/advanced/applicationcomposer/index.html
tomee/site/trunk/content/ng/advanced/applicationcomposer/index.pdf
tomee/site/trunk/content/ng/advanced/index.html
tomee/site/trunk/content/ng/advanced/index.pdf
tomee/site/trunk/content/ng/advanced/setup/
tomee/site/trunk/content/ng/advanced/setup/index.html
tomee/site/trunk/content/ng/advanced/shading/
tomee/site/trunk/content/ng/advanced/shading/index.html
tomee/site/trunk/content/ng/advanced/shading/index.pdf
tomee/site/trunk/content/ng/advanced/tomee-embedded/
tomee/site/trunk/content/ng/advanced/tomee-embedded/index.html
tomee/site/trunk/content/ng/advanced/tomee-embedded/index.pdf
tomee/site/trunk/content/ng/bash   (with props)
tomee/site/trunk/content/ng/blog/
tomee/site/trunk/content/ng/blog/2016/
tomee/site/trunk/content/ng/blog/2016/03/
tomee/site/trunk/content/ng/blog/2016/03/new-website.html
tomee/site/trunk/content/ng/blog/2016/03/new-website.pdf
tomee/site/trunk/content/ng/blog/index.html
tomee/site/trunk/content/ng/blog/index.pdf
tomee/site/trunk/content/ng/community/
tomee/site/trunk/content/ng/community/commercial.html
tomee/site/trunk/content/ng/community/commercial.pdf
tomee/site/trunk/content/ng/community/contributors.html
tomee/site/trunk/content/ng/community/index.html
tomee/site/trunk/content/ng/community/social.html
tomee/site/trunk/content/ng/community/sources.html
tomee/site/trunk/content/ng/css/
tomee/site/trunk/content/ng/css/animate.css
tomee/site/trunk/content/ng/css/bootstrap.css
tomee/site/trunk/content/ng/css/bootstrap.css.map
tomee/site/trunk/content/ng/css/cardio.css
tomee/site/trunk/content/ng/css/et-icons.css
tomee/site/trunk/content/ng/css/idea.css
tomee/site/trunk/content/ng/css/jqtree.css
tomee/site/trunk/content/ng/css/normalize.css
tomee/site/trunk/content/ng/css/owl.css
tomee/site/trunk/content/ng/developer/
tomee/site/trunk/content/ng/developer/classloading/
tomee/site/trunk/content/ng/developer/classloading/index.html
tomee/site/trunk/content/ng/developer/classloading/index.pdf
tomee/site/trunk/content/ng/developer/ide/
tomee/site/trunk/content/ng/developer/ide/index.html
tomee/site/trunk/content/ng/developer/ide/index.pdf
tomee/site/trunk/content/ng/developer/index.html
tomee/site/trunk/content/ng/developer/index.pdf
tomee/site/trunk/content/ng/developer/testing/
tomee/site/trunk/content/ng/developer/testing/applicationcomposer/
tomee/site/trunk/content/ng/developer/testing/applicationcomposer/index.html
tomee/site/trunk/content/ng/developer/testing/arquillian/
tomee/site/trunk/content/ng/developer/testing/arquillian/index.html
tomee/site/trunk/content/ng/developer/testing/arquillian/index.pdf
tomee/site/trunk/content/ng/developer/testing/index.html
tomee/site/trunk/content/ng/developer/testing/index.pdf
tomee/site/trunk/content/ng/developer/testing/other/
tomee/site/trunk/content/ng/developer/testing/other/index.html
tomee/site/trunk/content/ng/developer/testing/other/index.pdf
tomee/site/trunk/content/ng/developer/tools/
tomee/site/trunk/content/ng/developer/tools/index.html
tomee/site/trunk/content/ng/developer/tools/index.pdf
tomee/site/trunk/content/ng/developer/tools/maven/
tomee/site/trunk/content/ng/developer/tools/maven-plugins.html
tomee/site/trunk/content/ng/developer/tools/maven-plugins.pdf

svn commit: r1737782 [17/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/community/social.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/community/social.html?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/community/social.html (added)
+++ tomee/site/trunk/content/ng/community/social.html Tue Apr  5 06:43:46 2016
@@ -0,0 +1,176 @@
+
+
+
+
+   
+   
+   
+   Apache TomEE
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+
+
+
+
+   
+   
+   
+   
+   
+   
+   
+   Toggle 
navigation
+   
+   
+   
+   
+   
+   
+
+   
+
+
+
+
+   Apache TomEE
+
+   
+   
+   
+   
+   Developer
+   Admin
+   Advanced
+   Security
+   Blog
+   Community
+Downloads
+   
+   
+   
+   
+   
+   
+
+
+
+
+
+  
+  Social
+
+
+
+
+
+
+Facebook
+
+ https://facebook.com/ApacheTomEE;>TomEE @ Facebook
+
+
+
+Twitter
+
+ https://twitter.com/apachetomee;>TomEE @ Twitter
+
+
+
+Google+
+
+ https://plus.google.com/communities/105208241852045684449;>TomEE @ 
Goole+
+
+
+
+
+
+
+
+   
+   
+   
+   Apache TomEE the 
little great server.
+   "A good application in a good server"
+   
+   https://fr-fr.facebook.com/ApacheTomEE/;>
+   https://twitter.com/apachetomee;>
+   https://plus.google.com/communities/105208241852045684449;>
+   
+   
+   
+   
+   
+   Administration
+   
+   Cluster
+   Configuration
+   
+   
+   
+   Developer
+   
+   Classloading
+   IDE
+   Testing
+   Tools
+   
+   
+   
+   Advanced
+   
+   Application Composer
+   Setup
+   Shading
+   TomEE 
Embedded
+   
+   
+   
+   Community
+   
+   Contributors
+   Social
+   Sources
+   
+   
+   

svn commit: r1737782 [5/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-em

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/admin/configuration/containers.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/admin/configuration/containers.html?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/admin/configuration/containers.html (added)
+++ tomee/site/trunk/content/ng/admin/configuration/containers.html Tue Apr  5 
06:43:46 2016
@@ -0,0 +1,878 @@
+
+
+
+
+   
+   
+   
+   Apache TomEE
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+
+
+
+
+   
+   
+   
+   
+   
+   
+   
+   Toggle 
navigation
+   
+   
+   
+   
+   
+   
+
+   
+
+
+
+
+   Apache TomEE
+
+   
+   
+   
+   
+   Developer
+   Admin
+   Advanced
+   Security
+   Blog
+   Community
+Downloads
+   
+   
+   
+   
+   
+   
+
+
+
+
+
+  
+  
+
+ Download as PDF
+
+  
+  
+  Resources
+
+
+
+
+
+
+
+
+All containers will be created automatically - which means you dont 
need to define them
+if you dont need to tune their configuration - when a bean of their 
type if found.
+
+
+To avoid that use openejb.offline property and set it to 
true. See Server Configuration for more 
detail.
+
+
+
+
+@Stateless
+
+A @Stateless container.
+
+
+Declarable in tomee.xml via
+
+
+
+Container id="Foo" type="STATELESS"
+AccessTimeout = 30 seconds
+MaxSize = 10
+MinSize = 0
+StrictPooling = true
+MaxAge = 0 hours
+ReplaceAged = true
+ReplaceFlushed = false
+MaxAgeOffset = -1
+IdleTimeout = 0 minutes
+GarbageCollection = false
+SweepInterval = 5 minutes
+CallbackThreads = 5
+CloseTimeout = 5 minutes
+UseOneSchedulerThreadByBean = false
+EvictionThreads = 1
+/Container
+
+
+
+Declarable in properties via
+
+
+
+Foo = new://Container?type=STATELESS
+Foo.AccessTimeout = 30 seconds
+Foo.MaxSize = 10
+Foo.MinSize = 0
+Foo.StrictPooling = true
+Foo.MaxAge = 0 hours
+Foo.ReplaceAged = true
+Foo.ReplaceFlushed = false
+Foo.MaxAgeOffset = -1
+Foo.IdleTimeout = 0 minutes
+Foo.GarbageCollection = false
+Foo.SweepInterval = 5 minutes
+Foo.CallbackThreads = 5
+Foo.CloseTimeout = 5 minutes
+Foo.UseOneSchedulerThreadByBean = false
+Foo.EvictionThreads = 1
+
+
+
+Configuration
+
+AccessTimeout
+
+Specifies the time an invokation should wait for an instance
+of the pool to become available.
+
+
+After the timeout is reached, if an instance in the pool cannot
+be obtained, the method invocation will fail.
+
+
+Usable time units: nanoseconds, microsecons, milliseconds,
+seconds, minutes, hours, days.  Or any combination such as
+"1 hour and 27 minutes and 10 seconds"
+
+
+Any usage of the javax.ejb.AccessTimeout annotation will
+override this setting for the bean or method where the
+annotation is used.
+
+
+
+MaxSize
+
+Specifies the size of the bean pools for this stateless
+SessionBean container.  If StrictPooling is not used, instances
+will still be created beyond this number if there is demand, but
+they will not be returned to the pool and instead will be
+immediately destroyed.
+
+
+
+MinSize
+
+Specifies the minimum number of bean instances that should be in
+the pool for each bean.  Pools are prefilled to the minimum on
+startup.  Note this will create start order dependencies between
+other beans that also eagerly start, such as other @Stateless
+beans with a minimum or @Singleton beans using 
@Startup.  The
+start order.
+
+
+The minimum pool size is rigidly maintained.  Instances in the
+minimum side of the pool are not eligible for IdleTimeout or
+GarbageCollection, but are subject to MaxAge and 
flushing.
+
+
+If the pool is flushed it is immediately refilled to the minimum
+size with MaxAgeOffset applied.  If an instance from the minimum
+side of the pool reaches its MaxAge, it is also immediately

svn commit: r1737782 [43/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/js/typed.js
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/js/typed.js?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/js/typed.js (added)
+++ tomee/site/trunk/content/ng/js/typed.js Tue Apr  5 06:43:46 2016
@@ -0,0 +1,421 @@
+// The MIT License (MIT)
+
+// Typed.js | Copyright (c) 2014 Matt Boldt | www.mattboldt.com
+
+// Permission is hereby granted, free of charge, to any person obtaining a copy
+// of this software and associated documentation files (the "Software"), to 
deal
+// in the Software without restriction, including without limitation the rights
+// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+// copies of the Software, and to permit persons to whom the Software is
+// furnished to do so, subject to the following conditions:
+
+// The above copyright notice and this permission notice shall be included in
+// all copies or substantial portions of the Software.
+
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 
FROM,
+// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+// THE SOFTWARE.
+
+
+
+
+! function($) {
+
+"use strict";
+
+var Typed = function(el, options) {
+
+// chosen element to manipulate text
+this.el = $(el);
+
+// options
+this.options = $.extend({}, $.fn.typed.defaults, options);
+
+// attribute to type into
+this.isInput = this.el.is('input');
+this.attr = this.options.attr;
+
+// show cursor
+this.showCursor = this.isInput ? false : this.options.showCursor;
+
+// text content of element
+this.elContent = this.attr ? this.el.attr(this.attr) : this.el.text()
+
+// html or plain text
+this.contentType = this.options.contentType;
+
+// typing speed
+this.typeSpeed = this.options.typeSpeed;
+
+// add a delay before typing starts
+this.startDelay = this.options.startDelay;
+
+// backspacing speed
+this.backSpeed = this.options.backSpeed;
+
+// amount of time to wait before backspacing
+this.backDelay = this.options.backDelay;
+
+// input strings of text
+this.strings = this.options.strings;
+
+// character number position of current string
+this.strPos = 0;
+
+// current array position
+this.arrayPos = 0;
+
+// number to stop backspacing on.
+// default 0, can change depending on how many chars
+// you want to remove at the time
+this.stopNum = 0;
+
+// Looping logic
+this.loop = this.options.loop;
+this.loopCount = this.options.loopCount;
+this.curLoop = 0;
+
+// for stopping
+this.stop = false;
+
+// custom cursor
+this.cursorChar = this.options.cursorChar;
+
+// shuffle the strings
+this.shuffle = this.options.shuffle;
+// the order of strings
+this.sequence = [];
+
+// All systems go!
+this.build();
+};
+
+Typed.prototype = {
+
+constructor: Typed
+
+,
+init: function() {
+// begin the loop w/ first current string (global self.string)
+// current string will be passed as an argument each time after 
this
+var self = this;
+self.timeout = setTimeout(function() {
+for (var i=0;i

svn commit: r1737782 [27/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/developer/tools/maven/applicationcomposer.pdf
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/developer/tools/maven/applicationcomposer.pdf?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/developer/tools/maven/applicationcomposer.pdf 
(added)
+++ tomee/site/trunk/content/ng/developer/tools/maven/applicationcomposer.pdf 
Tue Apr  5 06:43:46 2016
@@ -0,0 +1,2432 @@
+%PDF-1.3
+%
+1 0 obj
+<< /Title (Application Composer Maven Plugin)
+/Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/CreationDate (D:20160323095144+01'00')
+/ModDate (D:20160323095144+01'00')
+>>
+endobj
+2 0 obj
+<< /Type /Catalog
+/Pages 3 0 R
+/Names 14 0 R
+/Outlines 20 0 R
+/PageLabels 24 0 R
+/PageMode /UseOutlines
+/OpenAction [7 0 R /FitH 842.89]
+/ViewerPreferences << /DisplayDocTitle true
+>>
+>>
+endobj
+3 0 obj
+<< /Type /Pages
+/Count 3
+/Kids [7 0 R 10 0 R 18 0 R]
+>>
+endobj
+4 0 obj
+<< /Length 2
+>>
+stream
+q
+
+endstream
+endobj
+5 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 4 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+>>
+>>
+endobj
+6 0 obj
+<< /Length 241
+>>
+stream
+q
+/DeviceRGB cs
+0.600 0.600 0.600 scn
+/DeviceRGB CS
+0.600 0.600 0.600 SCN
+
+BT
+77.969 351.364496 Td
+/F1.0 27 Tf
+<4170706c69636174696f6e20436f6d706f736572204d6176656e20506c7567696e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+Q
+
+endstream
+endobj
+7 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 6 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+>>
+>>
+>>
+endobj
+8 0 obj
+<< /Type /Font
+/BaseFont /AO+NotoSerif
+/Subtype /TrueType
+/FontDescriptor 26 0 R
+/FirstChar 32
+/LastChar 255
+/Widths 28 0 R
+/ToUnicode 27 0 R
+>>
+endobj
+9 0 obj
+<< /Length 24989
+>>
+stream
+q
+/DeviceRGB cs
+0.200 0.200 0.200 scn
+/DeviceRGB CS
+0.200 0.200 0.200 SCN
+
+BT
+48.24 791.0774285714285 Td
+/F1.0 13 Tf
+<5468697320706c7567696e206861732074776f20676f616c3a> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+-0.500 Tc
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+54.533001 759.5402857142857 Td
+/F1.0 13 Tf
+ Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+0.000 Tc
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+66.240001 759.5402857142857 Td
+/F2.0 13 Tf
+<6170706c69636174696f6e636f6d706f7365723a72756e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+215.74 759.5402857142857 Td
+/F1.0 13 Tf
+<3a20746f20737461727420746865206170706c69636174696f6e2066726f6d206d766e20636f6d6d616e64206c696e65>
 Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+-0.500 Tc
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+54.533001 734.0031428571428 Td
+/F1.0 13 Tf
+ Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+0.000 Tc
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+66.240001 734.0031428571428 Td
+/F2.0 13 Tf
+<6170706c69636174696f6e636f6d706f7365723a7a6970> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+215.74 734.0031428571428 Td
+/F1.0 13 Tf
+<3a20746f207061636b6167652061207a6970207769746820646570656e64656e6369657320616e642073746172742073637269707473>
 Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+q
+0.5 w
+0.933 0.933 0.933 SCN
+150.201 611.593 m
+150.201 717.279 l
+S
+Q
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+60.240001 659.3917142857143 Td
+/F3.0 13 Tf
+[<494d504f52> 20.01953125 <54> 60.05859375 <414e54>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+37.206 Tw
+
+BT
+162.201002 698.466 Td
+/F1.0 13 Tf
+<74686520646570656e64656e6369657320617265207265747269657665642077697468> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+7.676 Tw
+
+BT
+162.201002 678.9288571428572 Td
+/F2.0 13 Tf
+<4d6176656e50726f6a6563742e6765744172746966616374732829> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+7.676 Tw
+
+BT
+337.701 678.9288571428572 Td
+/F1.0 13 Tf
+<207768696368206d65616e7320796f7520617274696661637473> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+0.661 Tw
+
+BT
+162.201002 659.3917142857143 Td
+/F1.0 13 Tf
+<73686f756c64206265206120> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+0.661 Tw
+
+BT
+238.36176923076926 659.3917142857143 Td
+/F2.0 13 

svn commit: r1737782 [18/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/css/animate.css
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/css/animate.css?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/css/animate.css (added)
+++ tomee/site/trunk/content/ng/css/animate.css Tue Apr  5 06:43:46 2016
@@ -0,0 +1,3391 @@
+@charset "UTF-8";
+
+/*!
+Animate.css - http://daneden.me/animate
+Licensed under the MIT license - http://opensource.org/licenses/MIT
+
+Copyright (c) 2015 Daniel Eden
+*/
+
+.animated {
+  -webkit-animation-duration: .3s;
+  animation-duration: .3s;
+  -webkit-animation-fill-mode: both;
+  animation-fill-mode: both;
+}
+
+.animated.infinite {
+  -webkit-animation-iteration-count: infinite;
+  -webkit-animation-duration: 1s;
+  animation-duration: 1s;
+  animation-iteration-count: infinite;
+}
+
+.animated.hinge {
+  -webkit-animation-duration: 2s;
+  animation-duration: 2s;
+}
+
+@-webkit-keyframes bounce {
+  0%, 20%, 53%, 80%, 100% {
+-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 
1.000);
+transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
+-webkit-transform: translate3d(0,0,0);
+transform: translate3d(0,0,0);
+  }
+
+  40%, 43% {
+-webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 
0.060);
+transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
+-webkit-transform: translate3d(0, -30px, 0);
+transform: translate3d(0, -30px, 0);
+  }
+
+  70% {
+-webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 
0.060);
+transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
+-webkit-transform: translate3d(0, -15px, 0);
+transform: translate3d(0, -15px, 0);
+  }
+
+  90% {
+-webkit-transform: translate3d(0,-4px,0);
+transform: translate3d(0,-4px,0);
+  }
+}
+
+@keyframes bounce {
+  0%, 20%, 53%, 80%, 100% {
+-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 
1.000);
+transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
+-webkit-transform: translate3d(0,0,0);
+-ms-transform: translate3d(0,0,0);
+transform: translate3d(0,0,0);
+  }
+
+  40%, 43% {
+-webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 
0.060);
+transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
+-webkit-transform: translate3d(0, -30px, 0);
+-ms-transform: translate3d(0, -30px, 0);
+transform: translate3d(0, -30px, 0);
+  }
+
+  70% {
+-webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 
0.060);
+transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
+-webkit-transform: translate3d(0, -15px, 0);
+-ms-transform: translate3d(0, -15px, 0);
+transform: translate3d(0, -15px, 0);
+  }
+
+  90% {
+-webkit-transform: translate3d(0,-4px,0);
+-ms-transform: translate3d(0,-4px,0);
+transform: translate3d(0,-4px,0);
+  }
+}
+
+.bounce {
+  -webkit-animation-name: bounce;
+  animation-name: bounce;
+  -webkit-transform-origin: center bottom;
+  -ms-transform-origin: center bottom;
+  transform-origin: center bottom;
+}
+
+@-webkit-keyframes flash {
+  0%, 100% {
+opacity: 1;
+  }
+
+  50% {
+opacity: 0;
+  }
+}
+
+@keyframes flash {
+  0%, 100% {
+opacity: 1;
+  }
+
+  50% {
+opacity: 0;
+  }
+}
+
+.flash {
+  -webkit-animation-name: flash;
+  animation-name: flash;
+}
+
+/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
+
+@-webkit-keyframes pulse {
+  0% {
+-webkit-transform: scale3d(1, 1, 1);
+transform: scale3d(1, 1, 1);
+  }
+
+  50% {
+-webkit-transform: scale3d(1.05, 1.05, 1.05);
+transform: scale3d(1.05, 1.05, 1.05);
+  }
+
+  100% {
+-webkit-transform: scale3d(1, 1, 1);
+transform: scale3d(1, 1, 1);
+  }
+}
+
+@keyframes pulse {
+  0% {
+-webkit-transform: scale3d(1, 1, 1);
+-ms-transform: scale3d(1, 1, 1);
+transform: scale3d(1, 1, 1);
+  }
+
+  50% {
+-webkit-transform: scale3d(1.05, 1.05, 1.05);
+-ms-transform: scale3d(1.05, 1.05, 1.05);
+transform: scale3d(1.05, 1.05, 1.05);
+  }
+
+  100% {
+-webkit-transform: scale3d(1, 1, 1);
+-ms-transform: scale3d(1, 1, 1);
+transform: scale3d(1, 1, 1);
+  }
+}
+
+.pulse {
+  -webkit-animation-name: pulse;
+  animation-name: pulse;
+}
+
+@-webkit-keyframes rubberBand {
+  0% {
+-webkit-transform: scale3d(1, 1, 1);
+transform: scale3d(1, 1, 1);
+  }
+
+  30% {
+-webkit-transform: scale3d(1.25, 0.75, 1);
+transform: scale3d(1.25, 0.75, 1);
+  }
+
+  40% {
+-webkit-transform: scale3d(0.75, 1.25, 1);
+transform: scale3d(0.75, 1.25, 1);
+  }
+
+  50% {
+-webkit-transform: scale3d(1.15, 0.85, 1);
+transform: scale3d(1.15, 0.85, 1);
+  }
+
+  65% {
+-webkit-transform: scale3d(.95, 1.05, 1);
+transform: scale3d(.95, 1.05, 1);
+  }
+
+  75% {
+-webkit-transform: 

svn commit: r1737782 [20/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/css/bootstrap.css.map
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/css/bootstrap.css.map?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/css/bootstrap.css.map (added)
+++ tomee/site/trunk/content/ng/css/bootstrap.css.map Tue Apr  5 06:43:46 2016
@@ -0,0 +1 @@

[... 3 lines stripped ...]
Added: tomee/site/trunk/content/ng/css/cardio.css
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/css/cardio.css?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/css/cardio.css (added)
+++ tomee/site/trunk/content/ng/css/cardio.css Tue Apr  5 06:43:46 2016
@@ -0,0 +1,1166 @@
+@import url(http://fonts.googleapis.com/css?family=Roboto:300,400,500,700);
+body {
+   font-family: 'Roboto', 'Helvetica Neue', 'Segoe UI', Helvetica, Arial, 
sans-serif;
+   font-size: 14px;
+   overflow-x: hidden;
+   color: #2a3237;
+   -webkit-font-smoothing: antialiased;
+   -moz-osx-font-smoothing: grayscale;
+}
+
+.parallax {
+   position: absolute;
+   overflow: hidden;
+   width: 100%;
+   -webkit-transform: translateZ(0);
+   -ms-transform: translateZ(0);
+   transform: translateZ(0);
+}
+
+.parallax img {
+   width: 100%;
+   height: 100%;
+}
+/* Preloader */
+
+.preloader {
+   position: fixed;
+   z-index: ;
+   width: 100%;
+   height: 100%;
+   background-color: white;
+}
+
+.preloader img {
+   position: absolute;
+   top: calc(50% - 32px);
+   left: calc(50% - 32px);
+}
+
+.preloader div {
+   display: none;
+   /* Preload the Second Pricing Image */
+   background: url(../img/pricing2.jpg) no-repeat px px;
+   background-position: px px;
+}
+
+/* Typography */
+
+.bigp {
+   font-size: 18px;
+   line-height: 1.5;
+   color: #80287a;
+}
+
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+   font-family: 'Roboto', 'Avenir Next', 'Helvetica Neue', 'Segoe UI', 
Helvetica, Arial, sans-serif;
+   position: relative;
+   margin: 10px 0;
+}
+
+h1 {
+   font-size: 60px;
+}
+
+h2 {
+   font-size: 48px;
+}
+
+h3 {
+   font-size: 30px;
+}
+
+h4 {
+   font-size: 24px;
+}
+
+h5 {
+   font-size: 18px;
+}
+
+h6 {
+   font-size: 16px;
+}
+
+ul.white-list {
+   padding: 0;
+   list-style-type: none;
+}
+
+ul.white-list li {
+   font-size: 18px;
+   margin: 10px 0;
+   color: #fff;
+}
+
+ul.white-list li:before {
+   content: ' ';
+   position: relative;
+   top: -3px;
+   display: inline-block;
+   width: 6px;
+   height: 6px;
+   margin-right: 15px;
+   background: white;
+}
+
+header {
+   position: relative;
+   width: 100%;
+   color: #80287a;
+   background: rgba(28, 36, 65, 0.93);
+   background: url('../img/header.jpg');
+   background-size: cover;
+}
+
+header .table {
+   display: table;
+   height: 100%;
+}
+
+header .container {
+   height: 100%;
+}
+
+header .header-text {
+   display: table-cell;
+   text-align: center;
+   vertical-align: middle;
+   color: #80287a;
+}
+
+header .typed {
+   display: inline-block;
+   margin: 0;
+}
+
+header .typed-cursor {
+   font-size: 60px;
+   display: inline-block;
+   margin: 0 10px;
+   color: #80287a;
+   -webkit-animation-name: flash;
+   animation-name: flash;
+   -webkit-animation-duration: 1s;
+   animation-duration: 1s;
+   -webkit-animation-iteration-count: infinite;
+   animation-iteration-count: infinite;
+}
+
+a {
+   text-decoration: none;
+   color: #80287a;
+   -webkit-transition: all 0.3s ease;
+   transition: all 0.3s ease;
+}
+/* Navigation Bar ( Navbar ) */
+
+nav.navbar {
+   position: absolute;
+   z-index: 9500;
+   width: 100%;
+   width: 100vw;
+   -webkit-transition: all 0.3s ease;
+   transition: all 0.3s ease;
+}
+
+nav.navbar .navbar-nav li.active a:not(.btn) {
+   color: #80287a !important;
+}
+
+nav.navbar-fixed-top {
+   z-index: 9499;
+   top: 0;
+   padding-top: 10px;
+   padding-bottom: 10px;
+   opacity: 1;
+   background: white;
+   box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.05);
+}
+
+nav.navbar-fixed-top .navbar-nav > li > a:not(.btn) {
+   color: #bbb;
+}
+
+.icon-bar {
+   background: #bbb;
+}
+/* Buttons */
+
+.btn {
+   font-size: 18px;
+   display: inline-block;
+   padding: 15px 30px;
+   color: #80287a;
+   border: 2px solid transparent;
+   border-radius: 2px;
+   background: transparent;
+   -webkit-transition: all 0.3s ease;
+   transition: all 0.3s ease;
+}
+
+.btn:hover,
+.btn:focus {
+   color: #CE2D34;
+}
+
+.btn.btn-blue {
+   background: #80287a;
+   color: #fff;
+}
+
+.btn.btn-blue:hover {
+   

svn commit: r1737782 [16/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/bash
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/bash?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/bash (added)
+++ tomee/site/trunk/content/ng/bash Tue Apr  5 06:43:46 2016
@@ -0,0 +1,147 @@
+#! /bin/bash
+
+#
+# This script will download and install tomee
+# in the user home executing the command
+#
+
+# "exposed" variables
+INSTALL_DIR=~/apache-tomee
+TOMEE_VERSION=7.0.0-M3
+TOMEE_CLASSIFIER=webprofile
+
+set -e
+set -u
+
+# a single stream is enough
+exec 1>&2
+
+# Find Java
+if type -p java; then
+_java=java
+elif [ -n "$JAVA_HOME" -a -x "$JAVA_HOME/bin/java" ];  then   
+_java="$JAVA_HOME/bin/java"
+else
+echo "Java not found . Please install java. Aborting"
+exit 1
+fi
+
+# Targets JavaEE 7 so java 7 at least
+if [ "$_java" ]; then
+version=$("$_java" -version 2>&1 | awk -F '"' '/version/ {print $2}')
+if [ "$version" \< "1.7" ]; then   
+echo "JDK Version is less than 1.7 . TomEE $TOMEE_VERSION requires JDK 
7+ . Aborting."
+exit 1
+fi
+fi
+
+TMP_DIR="$INSTALL_DIR/install"
+TMP_CONF_DIR="$INSTALL_DIR/install_conf"
+TMP_WEBAPPS_DIR="$INSTALL_DIR/install_webapps"
+TMP_APPS_DIR="$INSTALL_DIR/install_apps"
+
+# save existing configuration
+if [ -d "$INSTALL_DIR" ]; then
+echo "Saving previous installation state."
+
+rm -rf "$TMP_CONF_DIR" "$TMP_WEBAPPS_DIR" "$TMP_APPS_DIR"
+mkdir -p "$TMP_CONF_DIR" "$TMP_WEBAPPS_DIR" "$TMP_APPS_DIR"
+
+tomee_base="$INSTALL_DIR/apache-tomee-$TOMEE_CLASSIFIER-$TOMEE_VERSION"
+cp -r "$tomee_base/conf/." "$TMP_CONF_DIR"
+cp -r "$tomee_base/webapps/." "$TMP_WEBAPPS_DIR"
+if [ -d "$tomee_base/apps" ]; then
+cp -r "$tomee_base/apps/." "$TMP_APPS_DIR"
+fi
+
+# remove distribution webapp to use new ones
+rm -rf "$TMP_WEBAPPS_DIR/ROOT" "$TMP_WEBAPPS_DIR/docs" 
"$TMP_WEBAPPS_DIR/manager" "$TMP_WEBAPPS_DIR/host-manager"
+fi
+
+# get the new binaries
+rm -rf "$INSTALL_DIR" "$TMP_DIR"
+mkdir -p "$INSTALL_DIR" "$TMP_DIR"
+
+DOWNLOAD_LINK="http://repo.maven.apache.org/maven2/org/apache/tomee/apache-tomee/$TOMEE_VERSION/apache-tomee-$TOMEE_VERSION-$TOMEE_CLASSIFIER.zip;
+DOWNLOAD_ZIP="$TMP_DIR/tomee.zip"
+echo "Downloading TomEE $TOMEE_VERSION from $DOWNLOAD_LINK"
+curl --location --fail --progress-bar $DOWNLOAD_LINK > "$DOWNLOAD_ZIP"
+
+test -f "$DOWNLOAD_ZIP"
+
+echo "Extracting TomEE $TOMEE_VERSION"
+unzip "$DOWNLOAD_ZIP" -d "$INSTALL_DIR"
+TOMEE_BASE="$INSTALL_DIR/apache-tomee-$TOMEE_CLASSIFIER-$TOMEE_VERSION"
+test -x "$TOMEE_BASE"
+
+# restore configuration
+if [ -d "$TMP_CONF_DIR" ]; then
+echo "Restoring previous installation state."
+cp -r "$TMP_CONF_DIR" "$TOMEE_BASE/conf"
+cp -r "$TMP_WEBAPPS_DIR" "$TOMEE_BASE/webapps"
+cp -r "$TMP_APPS_DIR" "$TOMEE_BASE/apps"
+rm -rf "$TMP_CONF_DIR" "$TMP_WEBAPPS_DIR" "$TMP_APPS_DIR"
+else
+echo "No state to restore"
+fi
+rm -rf "$TMP_DIR"
+
+echo "TomEE $TOMEE_VERSION is now installed in directory $TOMEE_BASE."
+
+# create the profile script (vars)
+TOMEE_PROFILE=~/.tomee.profile
+if [ -f "$TOMEE_PROFILE" ]; then
+rm -rf "$TOMEE_PROFILE"
+fi
+touch "$TOMEE_PROFILE"
+echo "export CATALINA_HOME="$TOMEE_BASE"" >> "$TOMEE_PROFILE"
+echo "export CATALINA_BASE="$TOMEE_BASE"" >> "$TOMEE_PROFILE"
+echo "# To add tomcat scripts to the path uncomment next line" >> 
"$TOMEE_PROFILE"
+echo "# export PATH="\$PATH:\$CATALINA_HOME/bin"" >> "$TOMEE_PROFILE"
+# some alternative commands, mainly to limit side effects of cygwin (wrong 
paths)
+echo "alias tomee-base='cd $TOMEE_BASE'" >> "$TOMEE_PROFILE"
+echo "alias tomee-run='cd $TOMEE_BASE && ./bin/catalina.sh run && cd -'" >> 
"$TOMEE_PROFILE"
+echo "alias tomee-start='cd $TOMEE_BASE && ./bin/catalina.sh start && cd -'" 
>> "$TOMEE_PROFILE"
+echo "alias tomee-stop='cd $TOMEE_BASE && ./bin/catalina.sh stop && cd -'" >> 
"$TOMEE_PROFILE"
+
+# make it immediate
+source ~/.tomee.profile
+
+# add it to the profile file whatever it is,
+# if they source themself it would reload env variable which is ok
+for f in ".bash_profile" ".bashrc" ".profile"; do
+if [ -f ~/$f ];then
+if grep "$TOMEE_PROFILE" ~/$f > /dev/null; then
+   echo "$TOMEE_PROFILE already sourced in $f"
+else
+echo source "$TOMEE_PROFILE" >> ~/$f
+fi
+fi
+done
+
+# Finally dump a small getting started
+echo ""
+echo ""
+echo "Get started:"
+echo ""
+echo ""
+echo ""
+echo "start in blocking mode TomEE - located in $TOMEE_BASE"
+echo "me@local:~ $ tomee-run"
+echo "..."
+echo "Ctrl+C"
+echo ""
+echo "start and forget - located in $TOMEE_BASE"
+echo "me@local:~ $ tomee-start"
+echo ""
+echo "..."
+echo "And stop it"
+echo "me@local:~ $ tomee-stop"
+echo ""
+echo " To deploy quickly an application drop it in $TOMEE_BASE/webapps and 
restart."
+echo "You can configure TomEE in $TOMEE_BASE/conf/ folder or in 

svn commit: r1737782 [28/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/developer/tools/maven/embedded.pdf
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/developer/tools/maven/embedded.pdf?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/developer/tools/maven/embedded.pdf (added)
+++ tomee/site/trunk/content/ng/developer/tools/maven/embedded.pdf Tue Apr  5 
06:43:46 2016
@@ -0,0 +1,5722 @@
+%PDF-1.3
+%
+1 0 obj
+<< /Title (TomEE Embedded Maven Plugin)
+/Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
+/CreationDate (D:20160323095144+01'00')
+/ModDate (D:20160323095144+01'00')
+>>
+endobj
+2 0 obj
+<< /Type /Catalog
+/Pages 3 0 R
+/Names 13 0 R
+/Outlines 21 0 R
+/PageLabels 24 0 R
+/PageMode /UseOutlines
+/OpenAction [7 0 R /FitH 842.89]
+/ViewerPreferences << /DisplayDocTitle true
+>>
+>>
+endobj
+3 0 obj
+<< /Type /Pages
+/Count 4
+/Kids [7 0 R 10 0 R 17 0 R 19 0 R]
+>>
+endobj
+4 0 obj
+<< /Length 2
+>>
+stream
+q
+
+endstream
+endobj
+5 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 4 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+>>
+>>
+endobj
+6 0 obj
+<< /Length 258
+>>
+stream
+q
+/DeviceRGB cs
+0.600 0.600 0.600 scn
+/DeviceRGB CS
+0.600 0.600 0.600 SCN
+
+BT
+127.91319921874998 351.364496 Td
+/F1.0 27 Tf
+[<54> 29.78515625 <6f6d454520456d626564646564204d6176656e20506c7567696e>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+Q
+
+endstream
+endobj
+7 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 6 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+>>
+>>
+>>
+endobj
+8 0 obj
+<< /Type /Font
+/BaseFont /AR+NotoSerif
+/Subtype /TrueType
+/FontDescriptor 26 0 R
+/FirstChar 32
+/LastChar 255
+/Widths 28 0 R
+/ToUnicode 27 0 R
+>>
+endobj
+9 0 obj
+<< /Length 34455
+>>
+stream
+q
+/DeviceRGB cs
+0.200 0.200 0.200 scn
+/DeviceRGB CS
+0.200 0.200 0.200 SCN
+
+BT
+48.24 791.0774285714285 Td
+/F1.0 13 Tf
+[<54> 29.78515625 
<6f6d454520456d626564646564204d6176656e20706c7567696e2068617320612073696e676c6520676f616c3a20>]
 TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+361.63379296875 791.0774285714285 Td
+/F2.0 13 Tf
+<746f6d65652d656d6265646465643a72756e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+478.63379296875 791.0774285714285 Td
+/F1.0 13 Tf
+<2e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24 750.3288571428571 Td
+/F3.0 18 Tf
+[<436f6e6669677572> 20.01953125 <6174696f6e>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+48.240 710.993 166.267 23.280 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+214.507 710.993 166.267 23.280 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+380.773 710.993 166.267 23.280 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+48.240 673.433 166.267 37.560 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+214.507 673.433 166.267 37.560 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+380.773 673.433 166.267 37.560 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+48.240 650.153 166.267 23.280 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+214.507 650.153 166.267 23.280 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+380.773 650.153 166.267 23.280 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+48.240 626.873 166.267 23.280 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+214.507 626.873 166.267 23.280 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+380.773 626.873 166.267 23.280 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+48.240 603.593 166.267 23.280 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+214.507 603.593 166.267 23.280 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+380.773 603.593 166.267 23.280 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+48.240 580.313 166.267 23.280 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+214.507 580.313 166.267 23.280 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+380.773 580.313 166.267 23.280 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+48.240 557.033 166.267 23.280 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+214.507 557.033 166.267 23.280 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+380.773 557.033 166.267 23.280 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+48.240 519.473 166.267 37.560 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+214.507 519.473 166.267 37.560 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+380.773 519.473 166.267 37.560 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+48.240 481.913 166.267 37.560 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+214.507 481.913 166.267 37.560 

svn commit: r1737782 [11/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/admin/file-layout.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/admin/file-layout.html?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/admin/file-layout.html (added)
+++ tomee/site/trunk/content/ng/admin/file-layout.html Tue Apr  5 06:43:46 2016
@@ -0,0 +1,299 @@
+
+
+
+
+   
+   
+   
+   Apache TomEE
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+
+
+
+
+   
+   
+   
+   
+   
+   
+   
+   Toggle 
navigation
+   
+   
+   
+   
+   
+   
+
+   
+
+
+
+
+   Apache TomEE
+
+   
+   
+   
+   
+   Developer
+   Admin
+   Advanced
+   Security
+   Blog
+   Community
+Downloads
+   
+   
+   
+   
+   
+   
+
+
+
+
+
+  
+  
+
+ Download as PDF
+
+  
+  
+  TomEE File Layout
+
+
+
+
+
+
+[
+{
+label: 'apps',
+description: 'A common but optional folder containing the applications 
(war, ear, jar). Note: this folder needs to be activated in tomee.xml for 
instance and is not there by default.',
+children: [
+{label:'module1.jar',description:'An ejbmodule'},
+{label:'myapp',description:'An exploded war or ear'},
+{label:'anotherapp.war',description:'A war'},
+{label:'anotherapp',description:'By default TomEE will explode the 
war next to the .war file, this is customizable.'},
+{label:'anotherapp2.ear',description:'An ear'},
+{label:'anotherapp2',description:'By default TomEE will explode 
the ear next to the .ear file, this is customizable.'}
+]
+},
+{
+label: 'bin',
+description: 'The executable and boot related files',
+children: [
+{label:'bootstrap.jar',description:'The jar allowing Tomcat to 
start'},
+{label:'catalina.bat',description:'The windows main Tomcat 
script'},
+{label:'catalina.bat.original',description:'The original 
catalina.bat from Tomcat. TomEE customizes it.'},
+{label:'catalina.sh',description:'The UNIx main Tomcat script'},
+{label:'catalina.sh.original',description:'The original 
catalina.sh from Tomcat. TomEE customizes it.'},
+{label:'catalina-tasks.xml',description:'Some Ant tasks Tomcat 
provides to work with JMX'},
+{label:'commons-daemon.jar',description:'When setting up TomEE as 
a service you need this jar.'},
+{label:'commons-daemon-native.tar.gz',description:'The native 
needed by commons-daemon'},
+{label:'configtest.bat',description:'A windows script to validate 
the server.xml'},
+{label:'configtest.sh',description:'A UNIx script to validate the 
server.xml'},
+{label:'daemon.sh',description:'A script which can be used as 
init.d script'},
+{label:'digest.bat',description:'A windows script to compute a 
digest'},
+{label:'digest.sh',description:'A UNIx script to compute a 
digest'},
+{label:'service.bat',description:'The windows service script'},
+{label:'service.install.as.admin.bat',description:'Install TomEE 
as a service on windows'},
+{label:'service.readme.txt',description:'The explanations on how 
to setup TomEE as a windows service'},
+{label:'service.remove.as.admin.bat',description:'Uninstall TomEE 
service on windows'},
+{label:'setclasspath.bat',description:'The script called by 
catalina.bat to initialize Tomcat classpath'},
+{label:'setclasspath.sh',description:'The script called by 
catalina.bat to initialize TomEE classpath'},
+{label:'setenv.sh',description:'A UNIx user script (optional) 
where you can specify some JVM options like CATALINA_OPTS 

svn commit: r1737782 [31/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/documentation.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/documentation.html?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/documentation.html (added)
+++ tomee/site/trunk/content/ng/documentation.html Tue Apr  5 06:43:46 2016
@@ -0,0 +1,167 @@
+
+
+
+
+   
+   
+   
+   Apache TomEE
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+
+
+
+
+   
+   
+   
+   
+   
+   
+   
+   Toggle 
navigation
+   
+   
+   
+   
+   
+   
+
+   
+
+
+
+
+   Apache TomEE
+
+   
+   
+   
+   
+   Developer
+   Admin
+   Advanced
+   Security
+   Blog
+   Community
+Downloads
+   
+   
+   
+   
+   
+   
+
+
+
+
+
+  
+  
+
+ Download as PDF
+
+  
+  
+  Documentation
+
+
+
+
+
+
+Coming soon!
+
+
+
+
+
+
+   
+   
+   
+   Apache TomEE the 
little great server.
+   "A good application in a good server"
+   
+   https://fr-fr.facebook.com/ApacheTomEE/;>
+   https://twitter.com/apachetomee;>
+   https://plus.google.com/communities/105208241852045684449;>
+   
+   
+   
+   
+   
+   Administration
+   
+   Cluster
+   Configuration
+   
+   
+   
+   Developer
+   
+   Classloading
+   IDE
+   Testing
+   Tools
+   
+   
+   
+   Advanced
+   
+   Application Composer
+   Setup
+   Shading
+   TomEE 
Embedded
+   
+   
+   
+   Community
+   
+   Contributors
+   Social
+   Sources
+   
+   
+   
+   
+   
+  

svn commit: r1737782 [26/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/developer/tools/index.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/developer/tools/index.html?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/developer/tools/index.html (added)
+++ tomee/site/trunk/content/ng/developer/tools/index.html Tue Apr  5 06:43:46 
2016
@@ -0,0 +1,171 @@
+
+
+
+
+   
+   
+   
+   Apache TomEE
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+
+
+
+
+   
+   
+   
+   
+   
+   
+   
+   Toggle 
navigation
+   
+   
+   
+   
+   
+   
+
+   
+
+
+
+
+   Apache TomEE
+
+   
+   
+   
+   
+   Developer
+   Admin
+   Advanced
+   Security
+   Blog
+   Community
+Downloads
+   
+   
+   
+   
+   
+   
+
+
+
+
+
+  
+  
+
+ Download as PDF
+
+  
+  
+  TomEE developer tools
+
+
+
+
+
+
+
+
+Maven Plugins
+
+
+
+
+
+
+
+
+   
+   
+   
+   Apache TomEE the 
little great server.
+   "A good application in a good server"
+   
+   https://fr-fr.facebook.com/ApacheTomEE/;>
+   https://twitter.com/apachetomee;>
+   https://plus.google.com/communities/105208241852045684449;>
+   
+   
+   
+   
+   
+   Administration
+   
+   Cluster
+   Configuration
+   
+   
+   
+   Developer
+   
+   Classloading
+   IDE
+   Testing
+   Tools
+   
+   
+   
+   Advanced
+   
+   Application Composer
+   Setup
+   Shading
+   TomEE Embedded
+   
+   
+   
+   Community
+   
+   Contributors
+   Social
+   Sources
+   
+   
+   
+   

svn commit: r1737782 [21/45] - in /tomee/site/trunk/content/ng: ./ admin/ admin/cluster/ admin/configuration/ advanced/ advanced/applicationcomposer/ advanced/setup/ advanced/shading/ advanced/tomee-e

2016-04-05 Thread rmannibucau
Added: tomee/site/trunk/content/ng/developer/ide/index.html
URL: 
http://svn.apache.org/viewvc/tomee/site/trunk/content/ng/developer/ide/index.html?rev=1737782=auto
==
--- tomee/site/trunk/content/ng/developer/ide/index.html (added)
+++ tomee/site/trunk/content/ng/developer/ide/index.html Tue Apr  5 06:43:46 
2016
@@ -0,0 +1,202 @@
+
+
+
+
+   
+   
+   
+   Apache TomEE
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+   
+
+
+
+
+   
+   
+   
+   
+   
+   
+   
+   Toggle 
navigation
+   
+   
+   
+   
+   
+   
+
+   
+
+
+
+
+   Apache TomEE
+
+   
+   
+   
+   
+   Developer
+   Admin
+   Advanced
+   Security
+   Blog
+   Community
+Downloads
+   
+   
+   
+   
+   
+   
+
+
+
+
+
+  
+  
+
+ Download as PDF
+
+  
+  
+  TomEE and IDE
+
+
+
+
+
+
+
+
+TomEE is supported by main IDE of the marker:
+
+
+
+
+https://eclipse.org/downloads/;>Eclipse
+
+
+https://www.jetbrains.com/idea/download/;>Intellij Idea
+
+
+https://netbeans.org/downloads/;>Netbeans
+
+
+
+
+
+
+Eclipse
+
+Be the first to write this part!
+
+
+
+Idea
+
+Be the first to write this part!
+
+
+
+Netbeans
+
+Be the first to write this part!
+
+
+
+
+
+
+
+   
+   
+   
+   Apache TomEE the 
little great server.
+   "A good application in a good server"
+   
+   https://fr-fr.facebook.com/ApacheTomEE/;>
+   https://twitter.com/apachetomee;>
+   https://plus.google.com/communities/105208241852045684449;>
+   
+   
+   
+   
+   
+   Administration
+   
+   Cluster
+   Configuration
+   
+   
+   
+   Developer
+   
+   Classloading
+   IDE
+   Testing
+   Tools
+   
+   
+   
+   Advanced
+   
+   Application Composer
+   Setup
+   Shading
+   TomEE Embedded
+   
+   
+   
+   Community
+   
+