OpenSSL session caching defaults

2019-02-11 Thread Mark Thomas
Hi,

The OpenSSL defaults are:

- session caching enabled
- sessions timeout 300 (seconds)

r1686258 changed those to:
- session caching disabled
- session timeout 14400 (4 hours)

This was part of the netty changes.

I think the timeout change is OK but I think the session caching should
be enabled by default.

Thoughts?

Mark

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: OpenSSL session caching defaults

2019-02-11 Thread Rainer Jung

Am 11.02.2019 um 10:18 schrieb Mark Thomas:

The OpenSSL defaults are:

- session caching enabled
- sessions timeout 300 (seconds)

r1686258 changed those to:
- session caching disabled
- session timeout 14400 (4 hours)

This was part of the netty changes.

I think the timeout change is OK but I think the session caching should
be enabled by default.

Thoughts?


Are we talking about server side caching based on session IDs, or about 
TLS session tickets (RFC 5077)? Both allow to span TLS sessions over 
more than one connection.


Server side caching needs some session save facility, I'm unsure, what 
OpenSSL brings with it. In the Apache web server the storage is 
implemented as part of the web server, but maybe this is only due to 
needing it in a multi-process setup (as shared memory). The requirements 
are simpler for tcnative. I don't know about the specifics of the 
OpenSSL storage impl, e.g. cleanup mechanism and memory demand.


When using the session ticket extension, the server does not need to 
store and manage the sessions, but the caveat is key rotation. The key 
shouldn't get used for too long. Again this is from the Apache web 
server, I'm unsure, what OpenSSL provides on its own, but I think one 
needs to implement a callback.


The more modern approach would be the session ticket extension. One 
wouldn't have to store the sessions, but one would have to think about 
the key rotation. Whatever way we choose, I tend to prefer enabled 
sessions as the default. A good timeout is not easy, because it would 
probably depend on the amount of data the keys were used for and we only 
have usage time available. The Apache web server documents 300 seconds.


Regards,

Rainer


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1853338 - in /tomcat/site/trunk/docs/tomcat-8.5-doc: ./ api/ api/org/apache/catalina/ api/org/apache/catalina/ant/ api/org/apache/catalina/ant/jmx/ api/org/apache/catalina/authenticator/

2019-02-11 Thread markt
Author: markt
Date: Mon Feb 11 10:12:51 2019
New Revision: 1853338

URL: http://svn.apache.org/viewvc?rev=1853338&view=rev
Log:
Update docs for 8.5.38 release


[This commit notification would consist of 77 parts, 
which exceeds the limit of 50 ones, so it was shortened to the summary.]

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1853339 - in /tomcat/site/trunk: ./ docs/ xdocs/

2019-02-11 Thread markt
Author: markt
Date: Mon Feb 11 10:14:45 2019
New Revision: 1853339

URL: http://svn.apache.org/viewvc?rev=1853339&view=rev
Log:
Update site for 8.5.38 release

Modified:
tomcat/site/trunk/build.properties.default
tomcat/site/trunk/docs/doap_Tomcat.rdf
tomcat/site/trunk/docs/download-80.html
tomcat/site/trunk/docs/index.html
tomcat/site/trunk/docs/migration-85.html
tomcat/site/trunk/docs/oldnews.html
tomcat/site/trunk/docs/whichversion.html
tomcat/site/trunk/xdocs/doap_Tomcat.rdf
tomcat/site/trunk/xdocs/download-80.xml
tomcat/site/trunk/xdocs/index.xml
tomcat/site/trunk/xdocs/migration-85.xml
tomcat/site/trunk/xdocs/oldnews.xml
tomcat/site/trunk/xdocs/whichversion.xml

Modified: tomcat/site/trunk/build.properties.default
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/build.properties.default?rev=1853339&r1=1853338&r2=1853339&view=diff
==
--- tomcat/site/trunk/build.properties.default (original)
+++ tomcat/site/trunk/build.properties.default Mon Feb 11 10:14:45 2019
@@ -37,7 +37,7 @@ tomcat.loc=http://www.apache.org/dist/to
 
 # - Tomcat versions -
 tomcat70=7.0.92
-tomcat85=8.5.37
+tomcat85=8.5.38
 tomcat90=9.0.16
 
 # - Download destination -

Modified: tomcat/site/trunk/docs/doap_Tomcat.rdf
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/doap_Tomcat.rdf?rev=1853339&r1=1853338&r2=1853339&view=diff
==
--- tomcat/site/trunk/docs/doap_Tomcat.rdf (original)
+++ tomcat/site/trunk/docs/doap_Tomcat.rdf Mon Feb 11 10:14:45 2019
@@ -68,7 +68,7 @@
   
 Latest Stable 8.5.x Release
 2018-09-10
-8.5.37
+8.5.38
   
 
 

Modified: tomcat/site/trunk/docs/download-80.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-80.html?rev=1853339&r1=1853338&r2=1853339&view=diff
==
--- tomcat/site/trunk/docs/download-80.html (original)
+++ tomcat/site/trunk/docs/download-80.html Mon Feb 11 10:14:45 2019
@@ -221,7 +221,7 @@
 Quick Navigation
 
 
-[define v]8.5.37[end]
+[define v]8.5.38[end]
 https://www.apache.org/dist/tomcat/tomcat-8/KEYS";>KEYS |
 [v] |
 Browse |

Modified: tomcat/site/trunk/docs/index.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/index.html?rev=1853339&r1=1853338&r2=1853339&view=diff
==
--- tomcat/site/trunk/docs/index.html (original)
+++ tomcat/site/trunk/docs/index.html Mon Feb 11 10:14:45 2019
@@ -275,58 +275,33 @@ changelog.
 
 
 
-
-2019-01-31 Tomcat Native 1.2.21 Released
-
-
-
-The Apache Tomcat Project is proud to announce the release of version 1.2.21 of
-Tomcat Native. The notable changes since 1.2.19 include:
-
-
-
-  
-Fixed memory leaks when using NIO/NIO2 with OpenSSL for TLS.
-
-
-
-
-
-https://tomcat.apache.org/download-native.cgi";>Download |
-ChangeLog for 1.2.21
-
-
-
-
-
-2018-12-18 Tomcat 8.5.37 Released
+
+2019-02-08 Tomcat 8.5.38 Released
 
 
 
-The Apache Tomcat Project is proud to announce the release of version 8.5.37
+The Apache Tomcat Project is proud to announce the release of version 8.5.38
 of Apache Tomcat. Apache Tomcat 8.5.x replaces 8.0.x and includes new features
 pulled forward from Tomcat 9.0.x. The minimum Java version and implemented
 specification versions remain unchanged. The notable changes compared
-to 8.5.35 include:
+to 8.5.37 include:
 
 
 
-Implement the requirements of section 8.2.2 2.c of the Servlet 
specification
-and prevent a web application from deploying if it has fragments with
-duplicate names and is configured to use relative ordering of
-fragments.
+Update the packaged version of the Tomcat Native Library to 1.2.21 to pick
+up the memory leak fixes when using NIO/NIO2 with OpenSSL.
 
-The default Servlet no longer overrides a previously set content-type.
+Correct a regression in the fix for 53737 that did not correctly scan the
+web application directory structure for JSPs.
 
-Update the packaged version of the Tomcat Native Library to 1.2.19 to pick
-up the latest Windows binaries built with APR 1.6.5 and OpenSSL 
1.1.1a.
+Improve HTTP/2 timeout handling
 
 
 
 
 
 Full details of these changes, and all the other changes, are available in the
-Tomcat 8.5
+Tomcat 8.5
 changelog.
 
 
@@ -337,6 +312,29 @@ changelog.
 
 
 
+
+
+2019-01-31 Tomcat Native 1.2.21 Released
+
+
+
+The Apache Tomcat Project is proud to announce the release of version 1.2.21 of
+Tomcat Native. The notable changes since 1.2.19 include:
+
+
+
+  
+Fixed memory leaks when using NIO/NIO2 with OpenSSL for TLS.
+
+
+
+
+
+https://tomcat.apache.org/download-native.cgi";>Download |
+ChangeLog for 1.2.21
+
+
+
 
 
 2018-11-15 Tomcat 7.0.92 Released

Modified: tomcat/site/trunk/do

[ANN] Apache Tomcat 8.5.38 available

2019-02-11 Thread Mark Thomas
The Apache Tomcat team announces the immediate availability of Apache
Tomcat 8.5.38.

Apache Tomcat 8 is an open source software implementation of the Java
Servlet, JavaServer Pages, Java Unified Expression Language, Java
WebSocket and Java Authentication Service Provider Interface for
Containers technologies.

Apache Tomcat 8.5.x replaces 8.0.x and includes new features pulled
forward from the 9.0.x branch. The notable changes since 8.5.37 include:

 - Update the packaged version of the Tomcat Native Library to 1.2.21
   to pick up the memory leak fixes when using NIO/NIO2 with OpenSSL.

 - Correct a regression in the fix for 53737 that did not correctly
   scan the web application directory structure for JSPs.

 - Improve HTTP/2 timeout handling


Please refer to the change log for the complete list of changes:
http://tomcat.apache.org/tomcat-8.5-doc/changelog.html

Downloads:
http://tomcat.apache.org/download-80.cgi

Migration guides from Apache Tomcat 7.x and 8.0.x:
http://tomcat.apache.org/migration.html

Enjoy!

- The Apache Tomcat team


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1853340 - /tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings.properties

2019-02-11 Thread kkolinko
Author: kkolinko
Date: Mon Feb 11 10:55:26 2019
New Revision: 1853340

URL: http://svn.apache.org/viewvc?rev=1853340&view=rev
Log:
Updated some English translations in Host Manager web application.

Modified:
tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings.properties

Modified: 
tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings.properties
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings.properties?rev=1853340&r1=1853339&r2=1853340&view=diff
==
--- tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings.properties 
[UTF-8] (original)
+++ tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings.properties 
[UTF-8] Mon Feb 11 10:55:26 2019
@@ -18,11 +18,11 @@ hostManagerServlet.addFailed=FAIL - Fail
 hostManagerServlet.alreadyHost=FAIL - Host already exists with host name [{0}]
 hostManagerServlet.alreadyStarted=FAIL - Host [{0}] is already started
 hostManagerServlet.alreadyStopped=FAIL - Host [{0}] is already stopped
-hostManagerServlet.appBaseCreateFail=FAIL - Failed to create appBase [{0}] for 
host [{1}]
-hostManagerServlet.cannotRemoveOwnHost=FAIL - Cannot remove own host [{0}]
-hostManagerServlet.cannotStartOwnHost=FAIL - Cannot start own host [{0}]
-hostManagerServlet.cannotStopOwnHost=FAIL - Cannot stop own host [{0}]
-hostManagerServlet.configBaseCreateFail=FAIL - Failed to identify configBase 
for host [{0}]
+hostManagerServlet.appBaseCreateFail=FAIL - Failed to create appBase directory 
[{0}] for host [{1}]
+hostManagerServlet.cannotRemoveOwnHost=FAIL - Cannot remove your own host [{0}]
+hostManagerServlet.cannotStartOwnHost=FAIL - Cannot start your own host [{0}]
+hostManagerServlet.cannotStopOwnHost=FAIL - Cannot stop your own host [{0}]
+hostManagerServlet.configBaseCreateFail=FAIL - Failed to identify configBase 
directory for host [{0}]
 hostManagerServlet.exception=FAIL - Encountered exception [{0}]
 hostManagerServlet.invalidHostName=FAIL - Invalid host name [{0}] was specified
 hostManagerServlet.list=list: Listing hosts for engine [{0}]



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1853341 - /tomcat/trunk/java/org/apache/tomcat/buildutil/translate/Export.java

2019-02-11 Thread kkolinko
Author: kkolinko
Date: Mon Feb 11 11:00:39 2019
New Revision: 1853341

URL: http://svn.apache.org/viewvc?rev=1853341&view=rev
Log:
Translations export tool: print translation keys in alphabetic order.

Print translations sorted by key, instead of random order used by a hash map.

Modified:
tomcat/trunk/java/org/apache/tomcat/buildutil/translate/Export.java

Modified: tomcat/trunk/java/org/apache/tomcat/buildutil/translate/Export.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/buildutil/translate/Export.java?rev=1853341&r1=1853340&r2=1853341&view=diff
==
--- tomcat/trunk/java/org/apache/tomcat/buildutil/translate/Export.java 
(original)
+++ tomcat/trunk/java/org/apache/tomcat/buildutil/translate/Export.java Mon Feb 
11 11:00:39 2019
@@ -22,6 +22,7 @@ import java.io.IOException;
 import java.io.OutputStreamWriter;
 import java.io.Writer;
 import java.nio.charset.StandardCharsets;
+import java.util.Arrays;
 import java.util.HashMap;
 import java.util.Map;
 import java.util.Properties;
@@ -124,7 +125,9 @@ public class Export {
 File out = new File(storageDir, Constants.L10N_PREFIX + language + 
Constants.L10N_SUFFIX);
 try (FileOutputStream fos = new FileOutputStream(out);
 Writer w = new OutputStreamWriter(fos, 
StandardCharsets.UTF_8)) {
-for (Object key : translation.keySet()) {
+String[] keys = translation.keySet().toArray(new String[0]);
+Arrays.sort(keys);
+for (Object key : keys) {
 w.write(key + "=" + 
Utils.formatValue(translation.getProperty((String) key)) + "\n");
 }
 } catch (IOException ioe) {



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1853342 [1/2] - in /tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager: ./ host/

2019-02-11 Thread kkolinko
Author: kkolinko
Date: Mon Feb 11 11:37:08 2019
New Revision: 1853342

URL: http://svn.apache.org/viewvc?rev=1853342&view=rev
Log:
Sort translation keys for Manager and Host Manager applications in alphabetic 
order.

Modified:

tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/LocalStrings.properties

tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/LocalStrings_de.properties

tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/LocalStrings_es.properties

tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/LocalStrings_fr.properties

tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/LocalStrings_ja.properties

tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/LocalStrings_ru.properties

tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/host/LocalStrings.properties

tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_es.properties

tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties

Modified: 
tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/LocalStrings.properties
URL: 
http://svn.apache.org/viewvc/tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/LocalStrings.properties?rev=1853342&r1=1853341&r2=1853342&view=diff
==
--- 
tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/LocalStrings.properties 
(original)
+++ 
tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/LocalStrings.properties 
Mon Feb 11 11:37:08 2019
@@ -14,28 +14,40 @@
 # limitations under the License.
 
 htmlManagerServlet.appsAvailable=Running
+htmlManagerServlet.appsExpire=Expire sessions
 htmlManagerServlet.appsName=Display Name
 htmlManagerServlet.appsPath=Path
 htmlManagerServlet.appsReload=Reload
-htmlManagerServlet.appsUndeploy=Undeploy
-htmlManagerServlet.appsVersion=Version
-htmlManagerServlet.appsExpire=Expire sessions
 htmlManagerServlet.appsSessions=Sessions
 htmlManagerServlet.appsStart=Start
 htmlManagerServlet.appsStop=Stop
 htmlManagerServlet.appsTasks=Commands
 htmlManagerServlet.appsTitle=Applications
-htmlManagerServlet.noVersion=None specified
-htmlManagerServlet.expire.explain=with idle ≥
-htmlManagerServlet.expire.unit=minutes
-htmlManagerServlet.helpHtmlManager=HTML Manager Help
-htmlManagerServlet.helpHtmlManagerFile=../docs/html-manager-howto.html
-htmlManagerServlet.helpManager=Manager Help
-htmlManagerServlet.helpManagerFile=../docs/manager-howto.html
-htmlManagerServlet.configTitle=Configuration
-htmlManagerServlet.configSslReloadTitle=Re-read TLS configuration files
-htmlManagerServlet.configSslHostName=TLS host name (optional)
+htmlManagerServlet.appsUndeploy=Undeploy
+htmlManagerServlet.appsVersion=Version
 htmlManagerServlet.configReloadButton=Re-read
+htmlManagerServlet.configSslHostName=TLS host name (optional)
+htmlManagerServlet.configSslReloadTitle=Re-read TLS configuration files
+htmlManagerServlet.configTitle=Configuration
+htmlManagerServlet.connectorStateAliveSocketCount=Keep alive sockets count:
+htmlManagerServlet.connectorStateBytesRecieved=Bytes received:
+htmlManagerServlet.connectorStateBytesSent=Bytes sent:
+htmlManagerServlet.connectorStateErrorCount=Error count:
+htmlManagerServlet.connectorStateHint=P: Parse and prepare request S: Service 
F: Finishing R: Ready K: Keepalive
+htmlManagerServlet.connectorStateMaxProcessingTime=Max processing time:
+htmlManagerServlet.connectorStateMaxThreads=Max threads:
+htmlManagerServlet.connectorStateProcessingTime=Processing time:
+htmlManagerServlet.connectorStateRequestCount=Request count:
+htmlManagerServlet.connectorStateTableTitleBRecv=B Recv
+htmlManagerServlet.connectorStateTableTitleBSent=B Sent
+htmlManagerServlet.connectorStateTableTitleClientAct=Client (Actual)
+htmlManagerServlet.connectorStateTableTitleClientForw=Client (Forwarded)
+htmlManagerServlet.connectorStateTableTitleRequest=Request
+htmlManagerServlet.connectorStateTableTitleStage=Stage
+htmlManagerServlet.connectorStateTableTitleTime=Time
+htmlManagerServlet.connectorStateTableTitleVHost=VHost
+htmlManagerServlet.connectorStateThreadBusy=Current thread busy:
+htmlManagerServlet.connectorStateThreadCount=Current thread count:
 htmlManagerServlet.deployButton=Deploy
 htmlManagerServlet.deployConfig=XML Configuration file URL:
 htmlManagerServlet.deployPath=Context Path (required):
@@ -45,30 +57,53 @@ htmlManagerServlet.deployUpload=WAR file
 htmlManagerServlet.deployUploadFail=FAIL - Deploy Upload Failed, Exception: 
[{0}]
 htmlManagerServlet.deployUploadFile=Select WAR file to upload
 htmlManagerServlet.deployUploadInServerXml=FAIL - War file [{0}] cannot be 
uploaded if context is defined in server.xml
-htmlManagerServlet.deployUploadNotWar=FAIL - File uploaded [{0}] must be a .war
 htmlManagerServlet.deployUploadNoFile=FAIL - File upload failed, no file
+htmlManagerServlet.deployUploadNotWar=FAIL - File uploaded [{0}] must be a .war
 htmlManagerServlet.deployUploadWarExists=FAIL 

svn commit: r1853342 [2/2] - in /tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager: ./ host/

2019-02-11 Thread kkolinko
Modified: 
tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_es.properties
URL: 
http://svn.apache.org/viewvc/tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_es.properties?rev=1853342&r1=1853341&r2=1853342&view=diff
==
--- 
tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_es.properties
 (original)
+++ 
tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_es.properties
 Mon Feb 11 11:37:08 2019
@@ -13,69 +13,71 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
+hostManagerServlet.add = a\u00F1adir: A\u00F1adiendo m\u00E1quina [{0}]
+hostManagerServlet.add = a\u00F1adir: A\u00F1adiendo m\u00E1quina [{0}]
+hostManagerServlet.addFailed = FALLO - No pude a\u00F1adir m\u00E1quina [{0}]
+hostManagerServlet.alreadyHost = FALLO - Ya existe m\u00E1quina con nombre de 
m\u00E1quina [{0}]
 hostManagerServlet.alreadyStarted = FALLO - La m\u00E1qiuina [{0}] ya ha 
arrancado
 hostManagerServlet.alreadyStopped = FALLO - La m\u00E1quina [{0}] ya se ha 
parado
 hostManagerServlet.appBaseCreateFail = FALLO - No pude crear appBase [{0}] 
para la m\u00E1quina [{1}]
+hostManagerServlet.cannotRemoveOwnHost = FALLO - No puedo quitar m\u00E1quina 
propia [{0}]
+hostManagerServlet.cannotStartOwnHost = FALLO - No puedo empezar m\u00E1quina 
propia [{0}]
+hostManagerServlet.cannotStopOwnHost = FALLO - No puedo para m\u00E1quina 
propia [{0}]
 hostManagerServlet.configBaseCreateFail = FALLO - No pude identificar 
configBase para la m\u00E1quina [{0}]
-hostManagerServlet.noCommand = FALLO - No se ha especificado comando
-hostManagerServlet.postCommand = FALLO - Intent\u00E9 usar el comando [{0}] 
v\u00EDa un requerimiento GET pero es necesario POST
-hostManagerServlet.unknownCommand = FALLO - Comando desconocido [{0}]
-hostManagerServlet.noWrapper = El contenedor no ha llamado a setWrapper() para 
este servlet
+hostManagerServlet.exception = FALLO - Encontrada excepci\u00F3n [{0}]
 hostManagerServlet.invalidHostName = FALLO - Se ha especificado un nombre 
inv\u00E1lido de m\u00E1quina [{0}]
-hostManagerServlet.noHost = FALLO - El nombre de m\u00E1quina [{0}] no existe
-hostManagerServlet.alreadyHost = FALLO - Ya existe m\u00E1quina con nombre de 
m\u00E1quina [{0}]
+hostManagerServlet.list = listar: Listando m\u00E1quinas para motor [{0}]
+hostManagerServlet.listed = OK - M\u00E1quinas listadas
+hostManagerServlet.listitem = [{0}]:[{1}]
 hostManagerServlet.managerXml = FALLO - no pude instalar manager.xml
-hostManagerServlet.exception = FALLO - Encontrada excepci\u00F3n [{0}]
-hostManagerServlet.add = a\u00F1adir: A\u00F1adiendo m\u00E1quina [{0}]
-hostManagerServlet.addFailed = FALLO - No pude a\u00F1adir m\u00E1quina [{0}]
-hostManagerServlet.cannotRemoveOwnHost = FALLO - No puedo quitar m\u00E1quina 
propia [{0}]
+hostManagerServlet.noCommand = FALLO - No se ha especificado comando
+hostManagerServlet.noHost = FALLO - El nombre de m\u00E1quina [{0}] no existe
+hostManagerServlet.noWrapper = El contenedor no ha llamado a setWrapper() para 
este servlet
+hostManagerServlet.postCommand = FALLO - Intent\u00E9 usar el comando [{0}] 
v\u00EDa un requerimiento GET pero es necesario POST
+hostManagerServlet.remove = quitar: Quitando m\u00E1quina [{0}]
 hostManagerServlet.remove = quitar: Quitando m\u00E1quina [{0}]
 hostManagerServlet.removeFailed = FALLO - No pude quitar m\u00E1quina [{0}]
-hostManagerServlet.listed = OK - M\u00E1quinas listadas
-hostManagerServlet.listitem = [{0}]:[{1}]
-hostManagerServlet.cannotStartOwnHost = FALLO - No puedo empezar m\u00E1quina 
propia [{0}]
+hostManagerServlet.start = arrancar: Arrancando m\u00E1quina con nombre [{0}]
 hostManagerServlet.started = OK - M\u00E1quina [{0}] arrancada
 hostManagerServlet.startFailed = FALLO - No pude arrancar m\u00E1quina [{0}]
-hostManagerServlet.cannotStopOwnHost = FALLO - No puedo para m\u00E1quina 
propia [{0}]
-hostManagerServlet.stopped = OK - M\u00E1quina [{0}] parada
-hostManagerServlet.stopFailed = FALLO - No pude parar m\u00E1quina [{0}]
-hostManagerServlet.add = a\u00F1adir: A\u00F1adiendo m\u00E1quina [{0}]
-hostManagerServlet.remove = quitar: Quitando m\u00E1quina [{0}]
-hostManagerServlet.list = listar: Listando m\u00E1quinas para motor [{0}]
-hostManagerServlet.start = arrancar: Arrancando m\u00E1quina con nombre [{0}]
 hostManagerServlet.stop = parar: Parando m\u00E1quina con nombre [{0}]
-htmlHostManagerServlet.title = Gestor de M\u00E1quina Virtual de Tomcat
-htmlHostManagerServlet.messageLabel = Mensaje:
-htmlHostManagerServlet.manager = Gestor de M\u00E1quina
-htmlHostManagerServlet.list = Lista de M\u00E1quinas Virtuales
-htmlHostManagerServlet.helpHtmlManagerFile = html-host-manager-howto.html
-htmlHostManagerServlet.helpHtmlManager = Ayuda de Gestor de M\u00E1quina HTML 
(\u00A1En breve!)
-htmlHostManagerServlet.helpManagerFile =

svn commit: r1853343 - in /tomcat/tc8.5.x/trunk: ./ java/org/apache/catalina/manager/host/LocalStrings.properties

2019-02-11 Thread kkolinko
Author: kkolinko
Date: Mon Feb 11 11:39:34 2019
New Revision: 1853343

URL: http://svn.apache.org/viewvc?rev=1853343&view=rev
Log:
Updated some English translations in Host Manager web application.

Merged r1853340 from tomcat/trunk.

Modified:
tomcat/tc8.5.x/trunk/   (props changed)

tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/host/LocalStrings.properties

Propchange: tomcat/tc8.5.x/trunk/
--
--- svn:mergeinfo (original)
+++ svn:mergeinfo Mon Feb 11 11:39:34 2019
@@ -1,2 +1,2 @@
 /tomcat/tc8.0.x/trunk:1809644
-/tomcat/trunk:1734785,1734799,1734845,1734928,1735041,1735044,1735480,1735577,1735597,1735599-1735600,1735615,1736145,1736162,1736209,1736280,1736297,1736299,1736489,1736646,1736703,1736836,1736849,1737104-1737105,1737112,1737117,1737119-1737120,1737155,1737157,1737192,1737280,1737339,1737632,1737664,1737715,1737748,1737785,1737834,1737860,1737903,1737959,1738005,1738007,1738014-1738015,1738018,1738022,1738039,1738043,1738059-1738060,1738147,1738149,1738174-1738175,1738261,1738589,1738623-1738625,1738643,1738816,1738850,1738855,1738946-1738948,1738953-1738954,1738979,1738982,1739079-1739081,1739087,1739113,1739153,1739172,1739176,1739191,1739474,1739492,1739726,1739762,1739775,1739814,1739817-1739818,1739975,1740131,1740324,1740465,1740495,1740508-1740509,1740520,1740535,1740707,1740803,1740810,1740969,1740980,1740991,1740997,1741015,1741033,1741036,1741058,1741060,1741080,1741147,1741159,1741164,1741173,1741181,1741190,1741197,1741202,1741208,1741213,1741221,1741225,1741232,1741409
 
,1741501,1741677,1741892,1741896,1741984,1742023,1742042,1742071,1742090,1742093,1742101,1742105,1742111,1742139,1742146,1742148,1742166,1742181,1742184,1742187,1742246,1742248-1742251,1742263-1742264,1742268,1742276,1742369,1742387,1742448,1742509-1742512,1742917,1742919,1742933,1742975-1742976,1742984,1742986,1743019,1743115,1743117,1743124-1743125,1743134,1743425,1743554,1743679,1743696-1743698,1743700-1743701,1744058,1744064-1744065,1744125,1744149,1744194,1744229,1744270,1744323,1744432,1744684,1744697,1744705,1744713,1744760,1744786,1745083,1745142-1745143,1745145,1745177,1745179-1745180,1745227,1745248,1745254,1745337,1745467,1745473,1745535,1745576,1745735,1745744,1746304,1746306-1746307,1746319,1746327,1746338,1746340-1746341,1746344,1746427,1746441,1746473,1746490,1746492,1746495-1746496,1746499-1746501,1746503-1746507,1746509,1746549,1746551,1746554,1746556,1746558,1746584,1746620,1746649,1746724,1746939,1746989,1747014,1747028,1747035,1747210,1747225,1747234,1747253,1747
 
404,1747506,1747536,1747924,1747980,1747993,1748001,1748253,1748452,1748547,1748629,1748676,1748715,1749287,1749296,1749328,1749373,1749465,1749506,1749508,1749665-1749666,1749763,1749865-1749866,1749898,1749978,1749980,1750011,1750015,1750056,1750480,1750617,1750634,1750692,1750697,1750700,1750703,1750707,1750714,1750718,1750723,1750774,1750899,1750975,1750995,1751061,1751097,1751173,1751438,1751447,1751463,1751702,1752212,1752737,1752745,1753078,1753080,1753358,1753363,1754111,1754140-1754141,1754281,1754310,1754445,1754467,1754494,1754496,1754528,1754532-1754533,1754613,1754714,1754874,1754941,1754944,1754950-1754951,1755005,1755007,1755009,1755132,1755180-1755181,1755185,1755190,1755204-1755206,1755208,1755214,1755224,1755227,1755230,1755629,1755646-1755647,1755650,1755653,1755675,1755680,1755683,1755693,1755717,1755731-1755737,1755812,1755828,1755884,1755890,1755918-1755919,1755942,1755958,1755960,1755970,1755993,1756013,1756019,1756039,1756056,1756083-1756114,1756175,1756288-1
 
756289,1756408-1756410,1756778,1756798,1756878,1756898,1756939,1757123-1757124,1757126,1757128,1757132-1757133,1757136,1757145,1757167-1757168,1757175,1757180,1757182,1757195,1757271,1757278,1757347,1757353-1757354,1757363,1757374,1757399,1757406,1757408,1757485,1757495,1757499,1757527,1757578,1757684,1757722,1757727,1757790,1757799,1757813,1757853,1757883,1757903,1757976,1757997,1758000,1758058,1758072-1758075,1758078-1758079,1758223,1758257,1758261,1758276,1758292,1758369,1758378-1758383,1758421,1758423,1758425-1758427,1758430,1758443,1758448,1758459,1758483,1758486-1758487,1758499,1758525,1758556,1758580,1758582,1758584,1758588,1758842,1759019,1759212,1759224,1759227,1759252,1759274,1759513-1759516,1759611,1759757,1759785-1759790,1760005,1760022,1760109-1760110,1760135,1760200-1760201,1760227,1760300,1760397,1760446,1760454,1760640,1760648,1761057,1761422,1761491,1761498,1761500-1761501,1761550,1761553,1761572,1761574,1761625-1761626,1761628,1761682,1761740,1761752,1762051-176205
 
3,1762123,1762168,1762172,1762182,1762201-1762202,1762204,1762208,1762288,1762296,1762324,1762348,1762353,1762362,1762374,1762492,1762503,1762505,1762541,1762608,1762710,1762753,1762766,1762769,1762944,1762947,1762953,1763167,1763179,1763232,1763259,1763271-1763272,1763276-1763277,1763319-1763320,1763370,1763372,1763375,1763377,1763393,1763412,1763430,1763450,1763462,1763505,1763511-17

svn commit: r1853344 - in /tomcat/tc8.5.x/trunk: java/org/apache/catalina/manager/LocalStrings_ru.properties java/org/apache/catalina/manager/host/LocalStrings_ru.properties webapps/docs/changelog.xml

2019-02-11 Thread kkolinko
Author: kkolinko
Date: Mon Feb 11 11:54:32 2019
New Revision: 1853344

URL: http://svn.apache.org/viewvc?rev=1853344&view=rev
Log:
Update Russian translations in Manager and Host Manager web applications.

Modified:

tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/LocalStrings_ru.properties

tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties
tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml

Modified: 
tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/LocalStrings_ru.properties
URL: 
http://svn.apache.org/viewvc/tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/LocalStrings_ru.properties?rev=1853344&r1=1853343&r2=1853344&view=diff
==
--- 
tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/LocalStrings_ru.properties
 (original)
+++ 
tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/LocalStrings_ru.properties
 Mon Feb 11 11:54:32 2019
@@ -17,61 +17,61 @@ htmlManagerServlet.appsAvailable=\u0417\
 
htmlManagerServlet.appsExpire=\u041f\u0440\u0438\u043e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c
 htmlManagerServlet.appsName=\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435
 htmlManagerServlet.appsPath=\u041f\u0443\u0442\u044c
-htmlManagerServlet.appsReload=\u041f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430
-htmlManagerServlet.appsSessions=\u0043\u0435\u0430\u043d\u0441
+htmlManagerServlet.appsReload=\u041f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c
+htmlManagerServlet.appsSessions=\u0421\u0435\u0441\u0441\u0438\u0438
 htmlManagerServlet.appsStart=\u0421\u0442\u0430\u0440\u0442
 htmlManagerServlet.appsStop=\u0421\u0442\u043e\u043f
 htmlManagerServlet.appsTasks=\u041a\u043e\u043c\u0430\u043d\u0434\u044b
 
htmlManagerServlet.appsTitle=\u041f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f
-htmlManagerServlet.appsUndeploy=\u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c
+htmlManagerServlet.appsUndeploy=\u0423\u0434\u0430\u043b\u0438\u0442\u044c
 htmlManagerServlet.appsVersion=\u0412\u0435\u0440\u0441\u0438\u044f
-htmlManagerServlet.configReloadButton=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c
-htmlManagerServlet.configSslHostName=\u0418\u043c\u044f \u0054\u004c\u0053 
\u0445\u043e\u0441\u0442\u0430
-htmlManagerServlet.configSslReloadTitle=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c
 \u0054\u004c\u0053 
\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044e 
\u0444\u0430\u0439\u043b\u043e\u0432
+htmlManagerServlet.configReloadButton=\u041f\u0435\u0440\u0435\u0447\u0438\u0442\u0430\u0442\u044c
+htmlManagerServlet.configSslHostName=\u0418\u043c\u044f TLS 
\u0445\u043e\u0441\u0442\u0430 (\u043d\u0435 
\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e)
+htmlManagerServlet.configSslReloadTitle=\u041f\u0435\u0440\u0435\u0447\u0438\u0442\u0430\u0442\u044c
 
\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0435
 \u0444\u0430\u0439\u043b\u044b TLS
 
htmlManagerServlet.configTitle=\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f
-htmlManagerServlet.connectorStateAliveSocketCount=\u041A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E
 \u0432\u0441\u0451 \u0435\u0449\u0451 \u0436\u0438\u0432\u044B\u0445 
\u0441\u043E\u043A\u0435\u0442\u043E\u0432:
-htmlManagerServlet.connectorStateBytesRecieved=\u0411\u0430\u0439\u0442\u043E\u0432
 \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043E:
-htmlManagerServlet.connectorStateBytesSent=\u0411\u0430\u0439\u0442\u043E\u0432
 \u043E\u0442\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u043E:
-htmlManagerServlet.connectorStateErrorCount=\u041A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E
 \u043E\u0448\u0438\u0431\u043E\u043A:
-htmlManagerServlet.connectorStateHint=P: 
\u0420\u0430\u0437\u0431\u0438\u0440\u0430\u0435\u0442\u0441\u044F \u0438 
\u0433\u043E\u0442\u043E\u0432\u0438\u0442\u0441\u044F \u043A 
\u043E\u0442\u043F\u0440\u0430\u0432\u043A\u0438 S: 
\u0421\u0435\u0440\u0432\u0438\u0441 F: 
\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u0438\u0435 R: 
\u0413\u043E\u0442\u043E\u0432 K: 
\u041F\u0440\u043E\u0434\u043E\u043B\u0436\u0430\u0435\u0442 
\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043E\u0432\u0430\u0442\u044C
-htmlManagerServlet.connectorStateMaxProcessingTime=\u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u043E\u0435
 \u043F\u0440\u043E\u0446\u0435\u0441\u0441\u043E\u0440\u043D\u043E\u0435 
\u0432\u0440\u0435\u043C\u044F:
-htmlManagerServlet.connectorStateMaxThreads=\u041C\u0430\u043A\u0441\u0438\u043C\u0443\u043C
 \u043F\u0440\u043E\u0446\u0435\u0441\u0441\u043E\u0432:
-htmlManagerServlet.connectorStateProcessingTime=\u041F\u0440\u043E\u0446\u0435\u0441\u0441\u043E\u0440\u043D\u043E\u0435
 \u0432\u0440\u0435\u043C\u044F:
-htmlManagerServlet.connectorStateRequestCount=\u041A\u043E\u043B\u0438\u0447\u0435\u0441\u0

svn commit: r1853349 [1/2] - in /tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager: ./ host/

2019-02-11 Thread kkolinko
Author: kkolinko
Date: Mon Feb 11 12:04:07 2019
New Revision: 1853349

URL: http://svn.apache.org/viewvc?rev=1853349&view=rev
Log:
Sort translation keys for Manager and Host Manager applications in alphabetic 
order.

Modified:

tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/LocalStrings.properties

tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/LocalStrings_de.properties

tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/LocalStrings_es.properties

tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/LocalStrings_fr.properties

tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/LocalStrings_ja.properties

tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/LocalStrings_ru.properties

tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/host/LocalStrings.properties

tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_es.properties

tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties

Modified: 
tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/LocalStrings.properties
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/LocalStrings.properties?rev=1853349&r1=1853348&r2=1853349&view=diff
==
--- 
tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/LocalStrings.properties 
(original)
+++ 
tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/LocalStrings.properties 
Mon Feb 11 12:04:07 2019
@@ -14,24 +14,36 @@
 # limitations under the License.
 
 htmlManagerServlet.appsAvailable=Running
+htmlManagerServlet.appsExpire=Expire sessions
 htmlManagerServlet.appsName=Display Name
 htmlManagerServlet.appsPath=Path
 htmlManagerServlet.appsReload=Reload
-htmlManagerServlet.appsUndeploy=Undeploy
-htmlManagerServlet.appsVersion=Version
-htmlManagerServlet.appsExpire=Expire sessions
 htmlManagerServlet.appsSessions=Sessions
 htmlManagerServlet.appsStart=Start
 htmlManagerServlet.appsStop=Stop
 htmlManagerServlet.appsTasks=Commands
 htmlManagerServlet.appsTitle=Applications
-htmlManagerServlet.noVersion=None specified
-htmlManagerServlet.expire.explain=with idle ≥
-htmlManagerServlet.expire.unit=minutes
-htmlManagerServlet.helpHtmlManager=HTML Manager Help
-htmlManagerServlet.helpHtmlManagerFile=../docs/html-manager-howto.html
-htmlManagerServlet.helpManager=Manager Help
-htmlManagerServlet.helpManagerFile=../docs/manager-howto.html
+htmlManagerServlet.appsUndeploy=Undeploy
+htmlManagerServlet.appsVersion=Version
+htmlManagerServlet.connectorStateAliveSocketCount=Keep alive sockets count:
+htmlManagerServlet.connectorStateBytesRecieved=Bytes received:
+htmlManagerServlet.connectorStateBytesSent=Bytes sent:
+htmlManagerServlet.connectorStateErrorCount=Error count:
+htmlManagerServlet.connectorStateHint=P: Parse and prepare request S: Service 
F: Finishing R: Ready K: Keepalive
+htmlManagerServlet.connectorStateMaxProcessingTime=Max processing time:
+htmlManagerServlet.connectorStateMaxThreads=Max threads:
+htmlManagerServlet.connectorStateProcessingTime=Processing time:
+htmlManagerServlet.connectorStateRequestCount=Request count:
+htmlManagerServlet.connectorStateTableTitleBRecv=B Recv
+htmlManagerServlet.connectorStateTableTitleBSent=B Sent
+htmlManagerServlet.connectorStateTableTitleClientAct=Client (Actual)
+htmlManagerServlet.connectorStateTableTitleClientForw=Client (Forwarded)
+htmlManagerServlet.connectorStateTableTitleRequest=Request
+htmlManagerServlet.connectorStateTableTitleStage=Stage
+htmlManagerServlet.connectorStateTableTitleTime=Time
+htmlManagerServlet.connectorStateTableTitleVHost=VHost
+htmlManagerServlet.connectorStateThreadBusy=Current thread busy:
+htmlManagerServlet.connectorStateThreadCount=Current thread count:
 htmlManagerServlet.deployButton=Deploy
 htmlManagerServlet.deployConfig=XML Configuration file URL:
 htmlManagerServlet.deployPath=Context Path (required):
@@ -41,23 +53,46 @@ htmlManagerServlet.deployUpload=WAR file
 htmlManagerServlet.deployUploadFail=FAIL - Deploy Upload Failed, Exception: {0}
 htmlManagerServlet.deployUploadFile=Select WAR file to upload
 htmlManagerServlet.deployUploadInServerXml=FAIL - War file \"{0}\" cannot be 
uploaded if context is defined in server.xml
-htmlManagerServlet.deployUploadNotWar=FAIL - File uploaded \"{0}\" must be a 
.war
 htmlManagerServlet.deployUploadNoFile=FAIL - File upload failed, no file
+htmlManagerServlet.deployUploadNotWar=FAIL - File uploaded \"{0}\" must be a 
.war
 htmlManagerServlet.deployUploadWarExists=FAIL - War file \"{0}\" already 
exists on server
 htmlManagerServlet.deployWar=WAR or Directory URL:
 htmlManagerServlet.diagnosticsLeak=Check to see if a web application has 
caused a memory leak on stop, reload or undeploy
 htmlManagerServlet.diagnosticsLeakButton=Find leaks
 htmlManagerServlet.diagnosticsLeakWarning=This diagnostic check will trigger a 
full garbage collection. Use it with extreme cautio

svn commit: r1853349 [2/2] - in /tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager: ./ host/

2019-02-11 Thread kkolinko
Modified: 
tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties?rev=1853349&r1=1853348&r2=1853349&view=diff
==
--- 
tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties
 (original)
+++ 
tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties
 Mon Feb 11 12:04:07 2019
@@ -13,75 +13,75 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
+hostManagerServlet.add=\u004f\u004b\u0020\u002d\u0020\u0421\u0435\u0440\u0432\u0435\u0440\u0020\u007b\u0030\u007d\u0020\u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d
+hostManagerServlet.add=\u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u0020\u0441\u0435\u0440\u0432\u0435\u0440\u0430\u0020\u005b\u007b\u0030\u007d\u005d
+hostManagerServlet.addFailed=\u041e\u0448\u0438\u0431\u043a\u0430\u0020\u002d\u0020\u041d\u0435\u0443\u0434\u0430\u043b\u043e\u0441\u044c\u0020\u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c\u0020\u0441\u0435\u0440\u0432\u0435\u0440\u0020\u007b\u0030\u007d
+hostManagerServlet.alreadyHost=\u041e\u0448\u0438\u0431\u043a\u0430\u002d\u0020\u0423\u0436\u0435\u0020\u0435\u0441\u0442\u044c\u0020\u0441\u0435\u0440\u0432\u0435\u0440\u0020\u0441\u0020\u0442\u0430\u043a\u0438\u043c\u0020\u0438\u043c\u0435\u043d\u0435\u043c\u0020\u007b\u0030\u007d
 hostManagerServlet.alreadyStarted=\u041e\u0448\u0438\u0431\u043a\u0430\u002d 
\u0421\u0435\u0440\u0432\u0435\u0440 \u005b\u007b\u0030\u007d\u005d 
\u0443\u0436\u0435 \u0437\u0430\u043f\u0443\u0449\u0435\u043d
 hostManagerServlet.alreadyStopped=\u041e\u0448\u0438\u0431\u043a\u0430\u002d 
\u0421\u0435\u0440\u0432\u0435\u0440 \u005b\u007b\u0030\u007d\u005d 
\u0443\u0436\u0435 \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d
 
hostManagerServlet.appBaseCreateFail=\u041e\u0448\u0438\u0431\u043a\u0430\u002d 
\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c 
\u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0441\u043f\u0438\u0441\u043e\u043a 
\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439 
\u005b\u007b\u0030\u007d\u005d \u0434\u043b\u044f 
\u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u005b\u007b\u0031\u007d\u005d
+hostManagerServlet.cannotRemoveOwnHost=\u0020\u041e\u0448\u0438\u0431\u043a\u0430\u0020\u002d\u0020\u041d\u0435\u0020\u0443\u0434\u0430\u0435\u0442\u0441\u044f\u0020\u0443\u0434\u0430\u043b\u0438\u0442\u044c\u0020\u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439\u0020\u0441\u0435\u0440\u0432\u0435\u0440\u0020\u007b\u0030\u007d
+hostManagerServlet.cannotStartOwnHost=\u041e\u0448\u0438\u0431\u043a\u0430\u002d\u0020\u041d\u0435\u0020\u0443\u0434\u0430\u0435\u0442\u0441\u044f\u0020\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c\u0020\u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439\u0020\u0441\u0435\u0440\u0432\u0435\u0440\u007b\u0030\u007d
+hostManagerServlet.cannotStopOwnHost=\u041e\u0448\u0438\u0431\u043a\u0430\u002d\u0020\u041d\u0435\u0020\u0443\u0434\u0430\u0435\u0442\u0441\u044f\u0020\u043e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c\u0020\u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439\u0020\u0441\u0435\u0440\u0432\u0435\u0440\u0020\u007b\u0030\u007d
 
hostManagerServlet.configBaseCreateFail=\u041e\u0448\u0438\u0431\u043a\u0430\u002d
 \u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c 
\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0438\u0442\u044c 
\u0063\u006f\u006e\u0066\u0069\u0067\u0042\u0061\u0073\u0065 \u0434\u043b\u044f 
\u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u005b\u007b\u0030\u007d\u005d
-hostManagerServlet.noCommand=\u041e\u0448\u0438\u0431\u043a\u0430\u002d\u0020\u041a\u043e\u043c\u0430\u043d\u0434\u0430\u0020\u043d\u0435\u0020\u0443\u043a\u0430\u0437\u0430\u043d\u0430\u002e
-hostManagerServlet.postCommand=\u041e\u0448\u0438\u0431\u043a\u0430\u002d\u0020\u041f\u044b\u0442\u0430\u043b\u0441\u044f\u0020\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0020\u043a\u043e\u043c\u0430\u043d\u0434\u0443\u0020\u007b\u0030\u007d\u0020\u0441\u0020\u043f\u043e\u043c\u043e\u0449\u044c\u044e\u0020\u0437\u0430\u043f\u0440\u043e\u0441\u0430\u0020\u0047\u0045\u0054\u002c\u0020\u043d\u043e\u0020\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f\u0020\u0050\u004f\u0053\u0054
-hostManagerServlet.unknownCommand=\u041e\u0448\u0438\u0431\u043a\u0430\u002d\u0020\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430\u044f\u0020\u043a\u043e\u043c\u0430\u043d\u0434\u0430\u0020\u007b\u0030\u007d
-hostManagerServlet.noWrapper=\u0414\u043b\u044f\u0020\u044d\u0442\u043e\u0433\u043e\u0020\u0441\u0435\u0440\u0432\u0435\u0440\u0430\u0020\u043d\u0435\u0442\u0020\u0073\u0065\u0074\u0057\u0072\u0061\u0070\u0070\u0065\u0072\u0028\u0029\u0020
+hostManag

svn commit: r1853352 - in /tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager: LocalStrings.properties host/LocalStrings.properties

2019-02-11 Thread kkolinko
Author: kkolinko
Date: Mon Feb 11 12:15:06 2019
New Revision: 1853352

URL: http://svn.apache.org/viewvc?rev=1853352&view=rev
Log:
Update English translations in Host Manager web application.

Modified:

tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/LocalStrings.properties

tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/host/LocalStrings.properties

Modified: 
tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/LocalStrings.properties
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/LocalStrings.properties?rev=1853352&r1=1853351&r2=1853352&view=diff
==
--- 
tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/LocalStrings.properties 
(original)
+++ 
tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/LocalStrings.properties 
Mon Feb 11 12:15:06 2019
@@ -50,12 +50,12 @@ htmlManagerServlet.deployPath=Context Pa
 htmlManagerServlet.deployServer=Deploy directory or WAR file located on server
 htmlManagerServlet.deployTitle=Deploy
 htmlManagerServlet.deployUpload=WAR file to deploy
-htmlManagerServlet.deployUploadFail=FAIL - Deploy Upload Failed, Exception: {0}
+htmlManagerServlet.deployUploadFail=FAIL - Deploy Upload Failed, Exception: 
[{0}]
 htmlManagerServlet.deployUploadFile=Select WAR file to upload
-htmlManagerServlet.deployUploadInServerXml=FAIL - War file \"{0}\" cannot be 
uploaded if context is defined in server.xml
+htmlManagerServlet.deployUploadInServerXml=FAIL - War file [{0}] cannot be 
uploaded if context is defined in server.xml
 htmlManagerServlet.deployUploadNoFile=FAIL - File upload failed, no file
-htmlManagerServlet.deployUploadNotWar=FAIL - File uploaded \"{0}\" must be a 
.war
-htmlManagerServlet.deployUploadWarExists=FAIL - War file \"{0}\" already 
exists on server
+htmlManagerServlet.deployUploadNotWar=FAIL - File uploaded [{0}] must be a .war
+htmlManagerServlet.deployUploadWarExists=FAIL - War file [{0}] already exists 
on server
 htmlManagerServlet.deployWar=WAR or Directory URL:
 htmlManagerServlet.diagnosticsLeak=Check to see if a web application has 
caused a memory leak on stop, reload or undeploy
 htmlManagerServlet.diagnosticsLeakButton=Find leaks
@@ -104,56 +104,56 @@ htmlManagerServlet.serverTitle=Server In
 htmlManagerServlet.serverVersion=Tomcat Version
 htmlManagerServlet.title=Tomcat Web Application Manager
 
-managerServlet.alreadyContext=FAIL - Application already exists at path {0}
+managerServlet.alreadyContext=FAIL - Application already exists at path [{0}]
 managerServlet.alreadyDocBase=FAIL - Directory {0} is already in use
 managerServlet.configured=OK - Deployed application from context file {0}
 managerServlet.deleteFail=FAIL - Unable to delete [{0}]. The continued 
presence of this file may cause problems.
-managerServlet.deployed=OK - Deployed application at context path {0}
-managerServlet.deployedButNotStarted=FAIL - Deployed application at context 
path {0} but context failed to start
-managerServlet.deployFailed=FAIL - Failed to deploy application at context 
path {0}
-managerServlet.exception=FAIL - Encountered exception {0}
+managerServlet.deployed=OK - Deployed application at context path [{0}]
+managerServlet.deployedButNotStarted=FAIL - Deployed application at context 
path [{0}] but context failed to start
+managerServlet.deployFailed=FAIL - Failed to deploy application at context 
path [{0}]
+managerServlet.exception=FAIL - Encountered exception [{0}]
 managerServlet.findleaksFail=FAIL - Find leaks failed: Host not instance of 
StandardHost
 managerServlet.findleaksList=OK - Found potential memory leaks in the 
following applications:
 managerServlet.findleaksNone=OK - No memory leaks found
 managerServlet.inService=FAIL - The application [{0}] is already being serviced
 managerServlet.invalidCommand=FAIL - Invalid parameters supplied for command 
[{0}]
-managerServlet.invalidPath=FAIL - Invalid context path {0} was specified
+managerServlet.invalidPath=FAIL - Invalid context path [{0}] was specified
 managerServlet.invalidWar=FAIL - Invalid application URL {0} was specified
-managerServlet.listed=OK - Listed applications for virtual host {0}
+managerServlet.listed=OK - Listed applications for virtual host [{0}]
 managerServlet.listitem={0}:{1}:{2}:{3}
 managerServlet.mkdirFail=FAIL - Unable to create directory [{0}]
 managerServlet.noAppBase=FAIL - Cannot identify application base for context 
path {0}
 managerServlet.noCommand=FAIL - No command was specified
-managerServlet.noContext=FAIL - No context exists named {0}
+managerServlet.noContext=FAIL - No context exists named [{0}]
 managerServlet.noDirectory=FAIL - Non-directory document base for path {0}
 managerServlet.noDocBase=FAIL - Cannot undeploy document base for path {0}
 managerServlet.noGlobal=FAIL - No global JNDI resources are available
-managerServlet.noManager=FAIL - No manager exists for path {0}
+managerServlet.noManager=FAIL - No manage

svn commit: r1853353 - in /tomcat/tc7.0.x/trunk: java/org/apache/catalina/manager/LocalStrings_ru.properties java/org/apache/catalina/manager/host/LocalStrings_ru.properties webapps/docs/changelog.xml

2019-02-11 Thread kkolinko
Author: kkolinko
Date: Mon Feb 11 12:17:49 2019
New Revision: 1853353

URL: http://svn.apache.org/viewvc?rev=1853353&view=rev
Log:
Update Russian translations in Manager and Host Manager web applications.

Modified:

tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/LocalStrings_ru.properties

tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties
tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml

Modified: 
tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/LocalStrings_ru.properties
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/LocalStrings_ru.properties?rev=1853353&r1=1853352&r2=1853353&view=diff
==
--- 
tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/LocalStrings_ru.properties
 (original)
+++ 
tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/LocalStrings_ru.properties
 Mon Feb 11 12:17:49 2019
@@ -17,61 +17,61 @@ htmlManagerServlet.appsAvailable=\u0417\
 
htmlManagerServlet.appsExpire=\u041f\u0440\u0438\u043e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c
 htmlManagerServlet.appsName=\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435
 htmlManagerServlet.appsPath=\u041f\u0443\u0442\u044c
-htmlManagerServlet.appsReload=\u041f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430
-htmlManagerServlet.appsSessions=\u0043\u0435\u0430\u043d\u0441
+htmlManagerServlet.appsReload=\u041f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c
+htmlManagerServlet.appsSessions=\u0421\u0435\u0441\u0441\u0438\u0438
 htmlManagerServlet.appsStart=\u0421\u0442\u0430\u0440\u0442
 htmlManagerServlet.appsStop=\u0421\u0442\u043e\u043f
 htmlManagerServlet.appsTasks=\u041a\u043e\u043c\u0430\u043d\u0434\u044b
 
htmlManagerServlet.appsTitle=\u041f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f
-htmlManagerServlet.appsUndeploy=\u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c
+htmlManagerServlet.appsUndeploy=\u0423\u0434\u0430\u043b\u0438\u0442\u044c
 htmlManagerServlet.appsVersion=\u0412\u0435\u0440\u0441\u0438\u044f
-htmlManagerServlet.configReloadButton=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c
-htmlManagerServlet.configSslHostName=\u0418\u043c\u044f \u0054\u004c\u0053 
\u0445\u043e\u0441\u0442\u0430
-htmlManagerServlet.configSslReloadTitle=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c
 \u0054\u004c\u0053 
\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044e 
\u0444\u0430\u0439\u043b\u043e\u0432
+htmlManagerServlet.configReloadButton=\u041f\u0435\u0440\u0435\u0447\u0438\u0442\u0430\u0442\u044c
+htmlManagerServlet.configSslHostName=\u0418\u043c\u044f TLS 
\u0445\u043e\u0441\u0442\u0430 (\u043d\u0435 
\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e)
+htmlManagerServlet.configSslReloadTitle=\u041f\u0435\u0440\u0435\u0447\u0438\u0442\u0430\u0442\u044c
 
\u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u044b\u0435
 \u0444\u0430\u0439\u043b\u044b TLS
 
htmlManagerServlet.configTitle=\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f
-htmlManagerServlet.connectorStateAliveSocketCount=\u041A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E
 \u0432\u0441\u0451 \u0435\u0449\u0451 \u0436\u0438\u0432\u044B\u0445 
\u0441\u043E\u043A\u0435\u0442\u043E\u0432:
-htmlManagerServlet.connectorStateBytesRecieved=\u0411\u0430\u0439\u0442\u043E\u0432
 \u043F\u043E\u043B\u0443\u0447\u0435\u043D\u043E:
-htmlManagerServlet.connectorStateBytesSent=\u0411\u0430\u0439\u0442\u043E\u0432
 \u043E\u0442\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u043E:
-htmlManagerServlet.connectorStateErrorCount=\u041A\u043E\u043B\u0438\u0447\u0435\u0441\u0442\u0432\u043E
 \u043E\u0448\u0438\u0431\u043E\u043A:
-htmlManagerServlet.connectorStateHint=P: 
\u0420\u0430\u0437\u0431\u0438\u0440\u0430\u0435\u0442\u0441\u044F \u0438 
\u0433\u043E\u0442\u043E\u0432\u0438\u0442\u0441\u044F \u043A 
\u043E\u0442\u043F\u0440\u0430\u0432\u043A\u0438 S: 
\u0421\u0435\u0440\u0432\u0438\u0441 F: 
\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043D\u0438\u0435 R: 
\u0413\u043E\u0442\u043E\u0432 K: 
\u041F\u0440\u043E\u0434\u043E\u043B\u0436\u0430\u0435\u0442 
\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u043E\u0432\u0430\u0442\u044C
-htmlManagerServlet.connectorStateMaxProcessingTime=\u041C\u0430\u043A\u0441\u0438\u043C\u0430\u043B\u044C\u043D\u043E\u0435
 \u043F\u0440\u043E\u0446\u0435\u0441\u0441\u043E\u0440\u043D\u043E\u0435 
\u0432\u0440\u0435\u043C\u044F:
-htmlManagerServlet.connectorStateMaxThreads=\u041C\u0430\u043A\u0441\u0438\u043C\u0443\u043C
 \u043F\u0440\u043E\u0446\u0435\u0441\u0441\u043E\u0432:
-htmlManagerServlet.connectorStateProcessingTime=\u041F\u0440\u043E\u0446\u0435\u0441\u0441\u043E\u0440\u043D\u043E\u0435
 \u0432\u0440\u0435\u043C\u044F:
-htmlManagerServlet.connectorStateRequestCount=\u041A\u043E\u043B\u0438\u0447\u0435\u0441\u0

svn commit: r1853357 - in /tomcat/trunk: java/org/apache/catalina/manager/host/HostManagerServlet.java java/org/apache/catalina/manager/host/LocalStrings.properties webapps/docs/changelog.xml

2019-02-11 Thread kkolinko
Author: kkolinko
Date: Mon Feb 11 12:37:39 2019
New Revision: 1853357

URL: http://svn.apache.org/viewvc?rev=1853357&view=rev
Log:
Fix messages used by Host Manager web application. Disambiguate message keys 
used for different messages. (kkolinko)

Modified:
tomcat/trunk/java/org/apache/catalina/manager/host/HostManagerServlet.java
tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings.properties
tomcat/trunk/webapps/docs/changelog.xml

Modified: 
tomcat/trunk/java/org/apache/catalina/manager/host/HostManagerServlet.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/manager/host/HostManagerServlet.java?rev=1853357&r1=1853356&r2=1853357&view=diff
==
--- tomcat/trunk/java/org/apache/catalina/manager/host/HostManagerServlet.java 
(original)
+++ tomcat/trunk/java/org/apache/catalina/manager/host/HostManagerServlet.java 
Mon Feb 11 12:37:39 2019
@@ -433,7 +433,7 @@ public class HostManagerServlet
 
 host = (StandardHost) engine.findChild(name);
 if (host != null) {
-writer.println(smClient.getString("hostManagerServlet.add", name));
+writer.println(smClient.getString("hostManagerServlet.addSuccess", 
name));
 } else {
 // Something failed
 writer.println(smClient.getString(
@@ -493,7 +493,7 @@ public class HostManagerServlet
 Host host = (StandardHost) engine.findChild(name);
 if (host == null) {
 writer.println(smClient.getString(
-"hostManagerServlet.remove", name));
+"hostManagerServlet.removeSuccess", name));
 } else {
 // Something failed
 writer.println(smClient.getString(

Modified: 
tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings.properties
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings.properties?rev=1853357&r1=1853356&r2=1853357&view=diff
==
--- tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings.properties 
[UTF-8] (original)
+++ tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings.properties 
[UTF-8] Mon Feb 11 12:37:39 2019
@@ -15,6 +15,7 @@
 
 hostManagerServlet.add=add: Adding host [{0}]
 hostManagerServlet.addFailed=FAIL - Failed to add host [{0}]
+hostManagerServlet.addSuccess=OK - Host [{0}] added
 hostManagerServlet.alreadyHost=FAIL - Host already exists with host name [{0}]
 hostManagerServlet.alreadyStarted=FAIL - Host [{0}] is already started
 hostManagerServlet.alreadyStopped=FAIL - Host [{0}] is already stopped
@@ -38,6 +39,7 @@ hostManagerServlet.persisted=OK - Config
 hostManagerServlet.postCommand=FAIL - Tried to use command [{0}] via a GET 
request but POST is required
 hostManagerServlet.remove=remove: Removing host [{0}]
 hostManagerServlet.removeFailed=FAIL - Failed to remove host [{0}]
+hostManagerServlet.removeSuccess=OK - Removed host [{0}]
 hostManagerServlet.start=start: Starting host with name [{0}]
 hostManagerServlet.startFailed=FAIL - Failed to start host [{0}]
 hostManagerServlet.started=OK - Host [{0}] started

Modified: tomcat/trunk/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1853357&r1=1853356&r2=1853357&view=diff
==
--- tomcat/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/trunk/webapps/docs/changelog.xml Mon Feb 11 12:37:39 2019
@@ -81,6 +81,14 @@
   
 
   
+  
+
+  
+Fix messages used by Host Manager web application. Disambiguate
+message keys used for different messages. (kkolinko)
+  
+
+  
   
 
   



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1853360 - in /tomcat/trunk/java/org/apache/catalina/manager/host: LocalStrings_es.properties LocalStrings_ru.properties

2019-02-11 Thread kkolinko
Author: kkolinko
Date: Mon Feb 11 12:53:19 2019
New Revision: 1853360

URL: http://svn.apache.org/viewvc?rev=1853360&view=rev
Log:
followup: Add translations for disambiguated message keys.

Modified:

tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings_es.properties

tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties

Modified: 
tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings_es.properties
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings_es.properties?rev=1853360&r1=1853359&r2=1853360&view=diff
==
--- 
tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings_es.properties 
[UTF-8] (original)
+++ 
tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings_es.properties 
[UTF-8] Mon Feb 11 12:53:19 2019
@@ -15,6 +15,7 @@
 
 hostManagerServlet.add=añadir: Añadiendo máquina [{0}]
 hostManagerServlet.addFailed=FALLO - No pude añadir máquina [{0}]
+hostManagerServlet.addSuccess=OK - Máquina añadida [{0}]
 hostManagerServlet.alreadyHost=FALLO - Ya existe máquina con nombre de máquina 
[{0}]
 hostManagerServlet.alreadyStarted=FALLO - La máqiuina [{0}] ya ha arrancado
 hostManagerServlet.alreadyStopped=FALLO - La máquina [{0}] ya se ha parado
@@ -35,6 +36,7 @@ hostManagerServlet.noWrapper=El contened
 hostManagerServlet.postCommand=FALLO - Intenté usar el comando [{0}] vía un 
requerimiento GET pero es necesario POST
 hostManagerServlet.remove=quitar: Quitando máquina [{0}]
 hostManagerServlet.removeFailed=FALLO - No pude quitar máquina [{0}]
+hostManagerServlet.removeSuccess = OK - Máquina removida [{0}]
 hostManagerServlet.start=arrancar: Arrancando máquina con nombre [{0}]
 hostManagerServlet.startFailed=FALLO - No pude arrancar máquina [{0}]
 hostManagerServlet.started=OK - Máquina [{0}] arrancada

Modified: 
tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties?rev=1853360&r1=1853359&r2=1853360&view=diff
==
--- 
tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties 
[UTF-8] (original)
+++ 
tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties 
[UTF-8] Mon Feb 11 12:53:19 2019
@@ -15,6 +15,7 @@
 
 hostManagerServlet.add=add: Добавление сервера [{0}]
 hostManagerServlet.addFailed=Ошибка - Не удалось добавить сервер [{0}]
+hostManagerServlet.addSuccess=OK - Сервер [{0}] добавлен
 hostManagerServlet.alreadyHost=Ошибка - Уже есть сервер с таким именем [{0}]
 hostManagerServlet.alreadyStarted=Ошибка - Сервер [{0}] уже запущен
 hostManagerServlet.alreadyStopped=Ошибка - Сервер [{0}] уже остановлен
@@ -38,6 +39,7 @@ hostManagerServlet.persisted=OK - Кон
 hostManagerServlet.postCommand=Ошибка - Команда [{0}] была подана при помощи 
запроса GET, но требуется POST
 hostManagerServlet.remove=remove: Удаление сервера [{0}]
 hostManagerServlet.removeFailed=Ошибка - Не удалось удалить сервер [{0}]
+hostManagerServlet.removeSuccess=Сервер удалён [{0}]
 hostManagerServlet.start=start: Запуск сервера с именем [{0}]
 hostManagerServlet.startFailed=Ошибка - Не удалось запустить сервер [{0}]
 hostManagerServlet.started=OK - Сервер [{0}] запущен



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1853362 - in /tomcat/tc8.5.x/trunk: ./ java/org/apache/catalina/manager/host/ webapps/docs/

2019-02-11 Thread kkolinko
Author: kkolinko
Date: Mon Feb 11 12:55:05 2019
New Revision: 1853362

URL: http://svn.apache.org/viewvc?rev=1853362&view=rev
Log:
Fix messages used by Host Manager web application. Disambiguate message keys 
used for different messages.

Merged r1853357 from tomcat/trunk.

Modified:
tomcat/tc8.5.x/trunk/   (props changed)

tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/host/HostManagerServlet.java

tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/host/LocalStrings.properties

tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_es.properties

tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties
tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml

Propchange: tomcat/tc8.5.x/trunk/
--
--- svn:mergeinfo (original)
+++ svn:mergeinfo Mon Feb 11 12:55:05 2019
@@ -1,2 +1,2 @@
 /tomcat/tc8.0.x/trunk:1809644
-/tomcat/trunk:1734785,1734799,1734845,1734928,1735041,1735044,1735480,1735577,1735597,1735599-1735600,1735615,1736145,1736162,1736209,1736280,1736297,1736299,1736489,1736646,1736703,1736836,1736849,1737104-1737105,1737112,1737117,1737119-1737120,1737155,1737157,1737192,1737280,1737339,1737632,1737664,1737715,1737748,1737785,1737834,1737860,1737903,1737959,1738005,1738007,1738014-1738015,1738018,1738022,1738039,1738043,1738059-1738060,1738147,1738149,1738174-1738175,1738261,1738589,1738623-1738625,1738643,1738816,1738850,1738855,1738946-1738948,1738953-1738954,1738979,1738982,1739079-1739081,1739087,1739113,1739153,1739172,1739176,1739191,1739474,1739492,1739726,1739762,1739775,1739814,1739817-1739818,1739975,1740131,1740324,1740465,1740495,1740508-1740509,1740520,1740535,1740707,1740803,1740810,1740969,1740980,1740991,1740997,1741015,1741033,1741036,1741058,1741060,1741080,1741147,1741159,1741164,1741173,1741181,1741190,1741197,1741202,1741208,1741213,1741221,1741225,1741232,1741409
 
,1741501,1741677,1741892,1741896,1741984,1742023,1742042,1742071,1742090,1742093,1742101,1742105,1742111,1742139,1742146,1742148,1742166,1742181,1742184,1742187,1742246,1742248-1742251,1742263-1742264,1742268,1742276,1742369,1742387,1742448,1742509-1742512,1742917,1742919,1742933,1742975-1742976,1742984,1742986,1743019,1743115,1743117,1743124-1743125,1743134,1743425,1743554,1743679,1743696-1743698,1743700-1743701,1744058,1744064-1744065,1744125,1744149,1744194,1744229,1744270,1744323,1744432,1744684,1744697,1744705,1744713,1744760,1744786,1745083,1745142-1745143,1745145,1745177,1745179-1745180,1745227,1745248,1745254,1745337,1745467,1745473,1745535,1745576,1745735,1745744,1746304,1746306-1746307,1746319,1746327,1746338,1746340-1746341,1746344,1746427,1746441,1746473,1746490,1746492,1746495-1746496,1746499-1746501,1746503-1746507,1746509,1746549,1746551,1746554,1746556,1746558,1746584,1746620,1746649,1746724,1746939,1746989,1747014,1747028,1747035,1747210,1747225,1747234,1747253,1747
 
404,1747506,1747536,1747924,1747980,1747993,1748001,1748253,1748452,1748547,1748629,1748676,1748715,1749287,1749296,1749328,1749373,1749465,1749506,1749508,1749665-1749666,1749763,1749865-1749866,1749898,1749978,1749980,1750011,1750015,1750056,1750480,1750617,1750634,1750692,1750697,1750700,1750703,1750707,1750714,1750718,1750723,1750774,1750899,1750975,1750995,1751061,1751097,1751173,1751438,1751447,1751463,1751702,1752212,1752737,1752745,1753078,1753080,1753358,1753363,1754111,1754140-1754141,1754281,1754310,1754445,1754467,1754494,1754496,1754528,1754532-1754533,1754613,1754714,1754874,1754941,1754944,1754950-1754951,1755005,1755007,1755009,1755132,1755180-1755181,1755185,1755190,1755204-1755206,1755208,1755214,1755224,1755227,1755230,1755629,1755646-1755647,1755650,1755653,1755675,1755680,1755683,1755693,1755717,1755731-1755737,1755812,1755828,1755884,1755890,1755918-1755919,1755942,1755958,1755960,1755970,1755993,1756013,1756019,1756039,1756056,1756083-1756114,1756175,1756288-1
 
756289,1756408-1756410,1756778,1756798,1756878,1756898,1756939,1757123-1757124,1757126,1757128,1757132-1757133,1757136,1757145,1757167-1757168,1757175,1757180,1757182,1757195,1757271,1757278,1757347,1757353-1757354,1757363,1757374,1757399,1757406,1757408,1757485,1757495,1757499,1757527,1757578,1757684,1757722,1757727,1757790,1757799,1757813,1757853,1757883,1757903,1757976,1757997,1758000,1758058,1758072-1758075,1758078-1758079,1758223,1758257,1758261,1758276,1758292,1758369,1758378-1758383,1758421,1758423,1758425-1758427,1758430,1758443,1758448,1758459,1758483,1758486-1758487,1758499,1758525,1758556,1758580,1758582,1758584,1758588,1758842,1759019,1759212,1759224,1759227,1759252,1759274,1759513-1759516,1759611,1759757,1759785-1759790,1760005,1760022,1760109-1760110,1760135,1760200-1760201,1760227,1760300,1760397,1760446,1760454,1760640,1760648,1761057,1761422,1761491,1761498,1761500-1761501,1761550,1761553,1761572,1761574,1761625-1761626,1761628,1761682,1761740,1761752,1762051-176205
 
3,1762123,1762168,1762172,

svn commit: r1853364 - /tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties

2019-02-11 Thread kkolinko
Author: kkolinko
Date: Mon Feb 11 13:01:25 2019
New Revision: 1853364

URL: http://svn.apache.org/viewvc?rev=1853364&view=rev
Log:
followup: Keep "OK - " prefix for a success message.

Modified:

tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties

Modified: 
tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties?rev=1853364&r1=1853363&r2=1853364&view=diff
==
--- 
tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties 
[UTF-8] (original)
+++ 
tomcat/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties 
[UTF-8] Mon Feb 11 13:01:25 2019
@@ -39,7 +39,7 @@ hostManagerServlet.persisted=OK - Кон
 hostManagerServlet.postCommand=Ошибка - Команда [{0}] была подана при помощи 
запроса GET, но требуется POST
 hostManagerServlet.remove=remove: Удаление сервера [{0}]
 hostManagerServlet.removeFailed=Ошибка - Не удалось удалить сервер [{0}]
-hostManagerServlet.removeSuccess=Сервер удалён [{0}]
+hostManagerServlet.removeSuccess=OK - Сервер удалён [{0}]
 hostManagerServlet.start=start: Запуск сервера с именем [{0}]
 hostManagerServlet.startFailed=Ошибка - Не удалось запустить сервер [{0}]
 hostManagerServlet.started=OK - Сервер [{0}] запущен



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1853365 - /tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties

2019-02-11 Thread kkolinko
Author: kkolinko
Date: Mon Feb 11 13:02:01 2019
New Revision: 1853365

URL: http://svn.apache.org/viewvc?rev=1853365&view=rev
Log:
followup: Keep "OK - " prefix for a success message.

Modified:

tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties

Modified: 
tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties
URL: 
http://svn.apache.org/viewvc/tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties?rev=1853365&r1=1853364&r2=1853365&view=diff
==
--- 
tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties
 (original)
+++ 
tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties
 Mon Feb 11 13:02:01 2019
@@ -36,7 +36,7 @@ hostManagerServlet.noWrapper=\u041c\u043
 hostManagerServlet.postCommand=\u041e\u0448\u0438\u0431\u043a\u0430 - 
\u041a\u043e\u043c\u0430\u043d\u0434\u0430 [{0}] \u0431\u044b\u043b\u0430 
\u043f\u043e\u0434\u0430\u043d\u0430 \u043f\u0440\u0438 
\u043f\u043e\u043c\u043e\u0449\u0438 \u0437\u0430\u043f\u0440\u043e\u0441\u0430 
GET, \u043d\u043e \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f POST
 hostManagerServlet.remove=remove: 
\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 
\u0441\u0435\u0440\u0432\u0435\u0440\u0430 [{0}]
 hostManagerServlet.removeFailed=\u041e\u0448\u0438\u0431\u043a\u0430 - 
\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c 
\u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440 
[{0}]
-hostManagerServlet.removeSuccess=\u0421\u0435\u0440\u0432\u0435\u0440 
\u0443\u0434\u0430\u043b\u0451\u043d [{0}]
+hostManagerServlet.removeSuccess=OK - \u0421\u0435\u0440\u0432\u0435\u0440 
\u0443\u0434\u0430\u043b\u0451\u043d [{0}]
 hostManagerServlet.start=start: \u0417\u0430\u043f\u0443\u0441\u043a 
\u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0441 
\u0438\u043c\u0435\u043d\u0435\u043c [{0}]
 hostManagerServlet.startFailed=\u041e\u0448\u0438\u0431\u043a\u0430 - 
\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c 
\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c 
\u0441\u0435\u0440\u0432\u0435\u0440 [{0}]
 hostManagerServlet.started=OK - \u0421\u0435\u0440\u0432\u0435\u0440 [{0}] 
\u0437\u0430\u043f\u0443\u0449\u0435\u043d



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1853366 - /tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_es.properties

2019-02-11 Thread kkolinko
Author: kkolinko
Date: Mon Feb 11 13:05:25 2019
New Revision: 1853366

URL: http://svn.apache.org/viewvc?rev=1853366&view=rev
Log:
followup: Keep "OK - " prefix for a success message.

Modified:

tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_es.properties

Modified: 
tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_es.properties
URL: 
http://svn.apache.org/viewvc/tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_es.properties?rev=1853366&r1=1853365&r2=1853366&view=diff
==
--- 
tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_es.properties
 (original)
+++ 
tomcat/tc8.5.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_es.properties
 Mon Feb 11 13:05:25 2019
@@ -15,7 +15,7 @@
 
 hostManagerServlet.add = a\u00F1adir: A\u00F1adiendo m\u00E1quina [{0}]
 hostManagerServlet.addFailed = FALLO - No pude a\u00F1adir m\u00E1quina [{0}]
-hostManagerServlet.addSuccess = M\u00E1quina a\u00F1adida [{0}]
+hostManagerServlet.addSuccess = OK - M\u00E1quina a\u00F1adida [{0}]
 hostManagerServlet.alreadyHost = FALLO - Ya existe m\u00E1quina con nombre de 
m\u00E1quina [{0}]
 hostManagerServlet.alreadyStarted = FALLO - La m\u00E1qiuina [{0}] ya ha 
arrancado
 hostManagerServlet.alreadyStopped = FALLO - La m\u00E1quina [{0}] ya se ha 
parado



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1853368 - in /tomcat/tc7.0.x/trunk: ./ java/org/apache/catalina/manager/host/ webapps/docs/

2019-02-11 Thread kkolinko
Author: kkolinko
Date: Mon Feb 11 13:11:56 2019
New Revision: 1853368

URL: http://svn.apache.org/viewvc?rev=1853368&view=rev
Log:
Fix messages used by Host Manager web application. Disambiguate message keys 
used for different messages.

Merged r1853362,r1853365-r1853366 from tomcat/tc8.5.x/trunk.


Modified:
tomcat/tc7.0.x/trunk/   (props changed)

tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/host/HostManagerServlet.java

tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/host/LocalStrings.properties

tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_es.properties

tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_ru.properties
tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml

Propchange: tomcat/tc7.0.x/trunk/
--
--- svn:mergeinfo (original)
+++ svn:mergeinfo Mon Feb 11 13:11:56 2019
@@ -1,3 +1,3 @@
 
/tomcat/tc8.0.x/trunk:1636525,1637336,1637685,1637709,1638726,1640089,1640276,1640349,1640363,1640366,1640642,1640672,1640674,1640689,1640884,1641001,1641065,1641067,1641375,1641638,1641723,1641726,1641729-1641730,1641736,1641988,1642669-1642670,1642698,1642701,1643205,1643215,1643217,1643230,1643232,1643273,1643285,1643329-1643330,1643511,1643513,1643521,1643539,1643571,1643581-1643582,1643635,1643655,1643738,1643964,1644018,1644333,1644525,1644954,1644992,1645014,1645360,1645456,1645627,1645642,1645686,1645903-1645904,1645908-1645909,1645913,1645920,1646458,1646460-1646462,1646735,1646738-1646741,1646744,1646746,1646748-1646755,1646757,1646759-1646760,1647043,1648816,1651420-1651422,1651844,1652926,1652939-1652940,1652973,1653798,1653817,1653841,1654042,1654161,1654736,1654767,1654787,1656592,1659907,1662986,1663265,1663278,1663325,1663535,1663567,1663679,1663997,1664175,1664321,1664872,1665061,1665086,1666027,1666395,1666503,1666506,1666560,1666570,1666581,1666759,1666967,1666988
 
,1667553-1667555,1667558,1667617,1667633,1667637,1667747,1667767,1667873,1668028,1668137,1668634,1669432,1669801,1669840,1669895-1669896,1670398,1670435,1670592,1670605-1670607,1670609,1670632,1670720,1670725,1670727,1670731,1671114,1672273,1672285,1673759,1674220,1674295,1675469,1675488,1675595,1675831,1676232,1676367-1676369,1676382,1676394,1676483,1676556,1676635,1678178,1679536,1679988,1680256,1681124,1681182,1681703,1681730,1681840,1681864,1681869,1682010,1682034,1682047,1682052-1682053,1682062,1682064,1682070,1682312,1682325,1682331,1682386,1684367,1684385,1685759,1685774,1685827,1685892,1687341,1688904,1689358,1689657,1689921,1692850,1693093,1693108,1693324,1694060,1694115,1694291,1694427,1694431,1694503,1694549,1694789,1694873,1694881,1695356,1695372,1695823-1695825,1696200,1696281,1696379,1696468,1700608,1700871,1700897,1700978,1701094,1701124,1701608,1701668,1701676,1701766,1701944,1702248,1702252,1702314,1702390,1702723,1702725,1702728,1702730,1702733,1702735,1702737,1702
 
739,1702742,1702744,1702748,1702751,1702754,1702758,1702760,1702763,1702766,1708779,1708782,1708806,1709314,1709670,1710347,1710442,1710448,1710490,1710574,1710578,1712226,1712229,1712235,1712255,1712618,1712649,1712655,1712860,1712899,1712903,1712906,1712913,1712926,1712975,1713185,1713262,1713287,1713613,1713621,1713872,1713976,1713994,1713998,1714004,1714013,1714059,1714538,1714580,1715189,1715207,1715544,1715549,1715637,1715639-1715645,1715667,1715683,1715866,1715978,1715981,1716216-1716217,1716355,1716414,1716421,1717208-1717209,1717257,1717283,1717288,1717291,1717421,1717517,1717529,1718797,1718840-1718843,1719348,1719357-1719358,1719400,1719491,1719737,1720235,1720396,1720442,1720446,1720450,1720463,1720658-1720660,1720756,1720816,1721813,1721818,1721831,1721861,1721867,1721882,1722523,1722527,1722800,1722926,1722941,1722997,1723130,1723440,1723488,1723890,1724434,1724674,1724792,1724803,1724902,1725128,1725131,1725154,1725167,1725911,1725921,1725929,1725963-1725965,1725970,1
 
725974,1726171-1726173,1726175,1726179-1726182,1726190-1726191,1726195-1726200,1726203,1726226,1726576,1726630,1726992,1727029,1727037,1727671,1727676,1727900,1728028,1728092,1728439,1728449,1729186,1729362,1731009,1731303,1731867,1731872,1731874,1731876,1731885,1731947,1731955,1731959,1731977,1731984,1732360,1732490,1732672,1732902,1733166,1733603,1733619,1733735,1733752,1733764,1733915,1733941,1733964,1734115,1734133,1734261,1734421,1734531,1736286,1737967,1738173,1738182,1738992,1739039,1739089-1739091,1739294,1739777,1739821,1739981,1740513,1740726,1741019,1741162,1741217,1743647,1743681,1744152,1744272,1746732,1746750,1752739,1754615,1755886,1756018,1758563,1759565,1761686,1762173,1762206,1766280,1767507-1767508,1767653,1767656,1769267,1772949,1773521,1773527,1774104,1777015,1777213,1779330,1783151,1784188,1784966,1785670,1786846,1788260,1788999,1789140,1789402,1791529,1791559,1795291,1796906,1797523,1799214,1800998-1800999,1801003,1801007-1801008,1801017,1801020,1802808,180281
 
4,1803618,1806107,1806733,180

svn commit: r1853369 - /tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_es.properties

2019-02-11 Thread kkolinko
Author: kkolinko
Date: Mon Feb 11 13:30:35 2019
New Revision: 1853369

URL: http://svn.apache.org/viewvc?rev=1853369&view=rev
Log:
Sort translation keys for Manager and Host Manager applications in alphabetic 
order.

I missed to sort a part of this file in a previous commit.

Modified:

tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_es.properties

Modified: 
tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_es.properties
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_es.properties?rev=1853369&r1=1853368&r2=1853369&view=diff
==
--- 
tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_es.properties
 (original)
+++ 
tomcat/tc7.0.x/trunk/java/org/apache/catalina/manager/host/LocalStrings_es.properties
 Mon Feb 11 13:30:35 2019
@@ -13,37 +13,37 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
+hostManagerServlet.add = a\u00F1adir\: A\u00F1adiendo m\u00E1quina [{0}]
+hostManagerServlet.addFailed = FALLO - No pude a\u00F1adir m\u00E1quina {0}
+hostManagerServlet.addSuccess = OK - M\u00E1quina a\u00F1adida [{0}]
+hostManagerServlet.alreadyHost = FALLO - Ya existe m\u00E1quina con nombre de 
m\u00E1quina {0}
 hostManagerServlet.alreadyStarted = FALLO - La m\u00E1qiuina [{0}] ya ha 
arrancado
 hostManagerServlet.alreadyStopped = FALLO - La m\u00E1quina [{0}] ya se ha 
parado
 hostManagerServlet.appBaseCreateFail = FALLO - No pude crear appBase [{0}] 
para la m\u00E1quina [{1}]
+hostManagerServlet.cannotRemoveOwnHost = FALLO - No puedo quitar m\u00E1quina 
propia {0}
+hostManagerServlet.cannotStartOwnHost = FALLO - No puedo empezar m\u00E1quina 
propia {0}
+hostManagerServlet.cannotStopOwnHost = FALLO - No puedo para m\u00E1quina 
propia {0}
 hostManagerServlet.configBaseCreateFail = FALLO - No pude identificar 
configBase para la m\u00E1quina [{0}]
-hostManagerServlet.noCommand = FALLO - No se ha especificado comando
-hostManagerServlet.postCommand = FALLO - Intent\u00E9 usar el comando {0} 
v\u00EDa un requerimiento GET pero es necesario POST
-hostManagerServlet.unknownCommand = FALLO - Comando desconocido {0}
-hostManagerServlet.noWrapper = El contenedor no ha llamado a setWrapper() para 
este servlet
+hostManagerServlet.exception = FALLO - Encontrada excepci\u00F3n {0}
 hostManagerServlet.invalidHostName = FALLO - Se ha especificado un nombre 
inv\u00E1lido de m\u00E1quina {0}
-hostManagerServlet.noHost = FALLO - El nombre de m\u00E1quina {0} no existe
-hostManagerServlet.alreadyHost = FALLO - Ya existe m\u00E1quina con nombre de 
m\u00E1quina {0}
+hostManagerServlet.list = listar\: Listando m\u00E1quinas para motor [{0}]
+hostManagerServlet.listed = OK - M\u00E1quinas listadas
+hostManagerServlet.listitem = {0}\:{1}
 hostManagerServlet.managerXml = FALLO - no pude instalar manager.xml
-hostManagerServlet.exception = FALLO - Encontrada excepci\u00F3n {0}
-hostManagerServlet.add = a\u00F1adir\: A\u00F1adiendo m\u00E1quina [{0}]
-hostManagerServlet.addFailed = FALLO - No pude a\u00F1adir m\u00E1quina {0}
-hostManagerServlet.addSuccess = OK - M\u00E1quina a\u00F1adida [{0}]
-hostManagerServlet.cannotRemoveOwnHost = FALLO - No puedo quitar m\u00E1quina 
propia {0}
+hostManagerServlet.noCommand = FALLO - No se ha especificado comando
+hostManagerServlet.noHost = FALLO - El nombre de m\u00E1quina {0} no existe
+hostManagerServlet.noWrapper = El contenedor no ha llamado a setWrapper() para 
este servlet
+hostManagerServlet.postCommand = FALLO - Intent\u00E9 usar el comando {0} 
v\u00EDa un requerimiento GET pero es necesario POST
 hostManagerServlet.remove = quitar\: Quitando m\u00E1quina [{0}]
 hostManagerServlet.removeFailed = FALLO - No pude quitar m\u00E1quina {0}
 hostManagerServlet.removeSuccess = OK - M\u00E1quina removida [{0}]
-hostManagerServlet.listed = OK - M\u00E1quinas listadas
-hostManagerServlet.listitem = {0}\:{1}
-hostManagerServlet.cannotStartOwnHost = FALLO - No puedo empezar m\u00E1quina 
propia {0}
+hostManagerServlet.start = arrancar\: Arrancando m\u00E1quina con nombre [{0}]
 hostManagerServlet.started = OK - M\u00E1quina {0} arrancada
 hostManagerServlet.startFailed = FALLO - No pude arrancar m\u00E1quina {0}
-hostManagerServlet.cannotStopOwnHost = FALLO - No puedo para m\u00E1quina 
propia {0}
-hostManagerServlet.stopped = OK - M\u00E1quina {0} parada
-hostManagerServlet.stopFailed = FALLO - No pude parar m\u00E1quina {0}
-hostManagerServlet.list = listar\: Listando m\u00E1quinas para motor [{0}]
-hostManagerServlet.start = arrancar\: Arrancando m\u00E1quina con nombre [{0}]
 hostManagerServlet.stop = parar\: Parando m\u00E1quina con nombre [{0}]
+hostManagerServlet.stopFailed = FALLO - No pude parar m\u00E1quina {0}
+hostManagerServlet.stopped = OK - M\u00E1quina {0} parada
+hostManagerServlet.unknownCommand = FALLO - Comando des

svn commit: r1853371 - in /tomcat/trunk: conf/catalina.properties webapps/docs/changelog.xml

2019-02-11 Thread kkolinko
Author: kkolinko
Date: Mon Feb 11 13:50:46 2019
New Revision: 1853371

URL: http://svn.apache.org/viewvc?rev=1853371&view=rev
Log:
Simplify the value of jarsToSkip property in catalina.properties file for 
tomcat-i18n jar files.

Use prefix pattern instead of listing each language.

Modified:
tomcat/trunk/conf/catalina.properties
tomcat/trunk/webapps/docs/changelog.xml

Modified: tomcat/trunk/conf/catalina.properties
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/conf/catalina.properties?rev=1853371&r1=1853370&r2=1853371&view=diff
==
--- tomcat/trunk/conf/catalina.properties (original)
+++ tomcat/trunk/conf/catalina.properties Mon Feb 11 13:50:46 2019
@@ -172,16 +172,7 @@ tagsoup-*.jar,\
 tomcat-api.jar,\
 tomcat-coyote.jar,\
 tomcat-dbcp.jar,\
-tomcat-i18n-cs.jar,\
-tomcat-i18n-de.jar,\
-tomcat-i18n-en.jar,\
-tomcat-i18n-es.jar,\
-tomcat-i18n-fr.jar,\
-tomcat-i18n-ja.jar,\
-tomcat-i18n-ko.jar,\
-tomcat-i18n-pt-BR.jar,\
-tomcat-i18n-ru.jar,\
-tomcat-i18n-zh-CN.jar,\
+tomcat-i18n-*.jar,\
 tomcat-jdbc.jar,\
 tomcat-jni.jar,\
 tomcat-juli-adapters.jar,\

Modified: tomcat/trunk/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1853371&r1=1853370&r2=1853371&view=diff
==
--- tomcat/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/trunk/webapps/docs/changelog.xml Mon Feb 11 13:50:46 2019
@@ -53,6 +53,11 @@
 via the standard PushBuilder methods for working with HTTP
 headers. (markt)
   
+  
+Simplify the value of jarsToSkip property in
+catalina.properties file for tomcat-i18n jar files.
+Use prefix pattern instead of listing each language. (kkolinko)
+  
 
   
   



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1853372 - in /tomcat/tc8.5.x/trunk: ./ conf/catalina.properties webapps/docs/changelog.xml

2019-02-11 Thread kkolinko
Author: kkolinko
Date: Mon Feb 11 13:57:52 2019
New Revision: 1853372

URL: http://svn.apache.org/viewvc?rev=1853372&view=rev
Log:
Simplify the value of jarsToSkip property in catalina.properties file for 
tomcat-i18n jar files.

Use prefix pattern instead of listing each language.

Backport of r1853371 from tomcat/trunk.

Modified:
tomcat/tc8.5.x/trunk/   (props changed)
tomcat/tc8.5.x/trunk/conf/catalina.properties
tomcat/tc8.5.x/trunk/webapps/docs/changelog.xml

Propchange: tomcat/tc8.5.x/trunk/
--
--- svn:mergeinfo (original)
+++ svn:mergeinfo Mon Feb 11 13:57:52 2019
@@ -1,2 +1,2 @@
 /tomcat/tc8.0.x/trunk:1809644
-/tomcat/trunk:1734785,1734799,1734845,1734928,1735041,1735044,1735480,1735577,1735597,1735599-1735600,1735615,1736145,1736162,1736209,1736280,1736297,1736299,1736489,1736646,1736703,1736836,1736849,1737104-1737105,1737112,1737117,1737119-1737120,1737155,1737157,1737192,1737280,1737339,1737632,1737664,1737715,1737748,1737785,1737834,1737860,1737903,1737959,1738005,1738007,1738014-1738015,1738018,1738022,1738039,1738043,1738059-1738060,1738147,1738149,1738174-1738175,1738261,1738589,1738623-1738625,1738643,1738816,1738850,1738855,1738946-1738948,1738953-1738954,1738979,1738982,1739079-1739081,1739087,1739113,1739153,1739172,1739176,1739191,1739474,1739492,1739726,1739762,1739775,1739814,1739817-1739818,1739975,1740131,1740324,1740465,1740495,1740508-1740509,1740520,1740535,1740707,1740803,1740810,1740969,1740980,1740991,1740997,1741015,1741033,1741036,1741058,1741060,1741080,1741147,1741159,1741164,1741173,1741181,1741190,1741197,1741202,1741208,1741213,1741221,1741225,1741232,1741409
 
,1741501,1741677,1741892,1741896,1741984,1742023,1742042,1742071,1742090,1742093,1742101,1742105,1742111,1742139,1742146,1742148,1742166,1742181,1742184,1742187,1742246,1742248-1742251,1742263-1742264,1742268,1742276,1742369,1742387,1742448,1742509-1742512,1742917,1742919,1742933,1742975-1742976,1742984,1742986,1743019,1743115,1743117,1743124-1743125,1743134,1743425,1743554,1743679,1743696-1743698,1743700-1743701,1744058,1744064-1744065,1744125,1744149,1744194,1744229,1744270,1744323,1744432,1744684,1744697,1744705,1744713,1744760,1744786,1745083,1745142-1745143,1745145,1745177,1745179-1745180,1745227,1745248,1745254,1745337,1745467,1745473,1745535,1745576,1745735,1745744,1746304,1746306-1746307,1746319,1746327,1746338,1746340-1746341,1746344,1746427,1746441,1746473,1746490,1746492,1746495-1746496,1746499-1746501,1746503-1746507,1746509,1746549,1746551,1746554,1746556,1746558,1746584,1746620,1746649,1746724,1746939,1746989,1747014,1747028,1747035,1747210,1747225,1747234,1747253,1747
 
404,1747506,1747536,1747924,1747980,1747993,1748001,1748253,1748452,1748547,1748629,1748676,1748715,1749287,1749296,1749328,1749373,1749465,1749506,1749508,1749665-1749666,1749763,1749865-1749866,1749898,1749978,1749980,1750011,1750015,1750056,1750480,1750617,1750634,1750692,1750697,1750700,1750703,1750707,1750714,1750718,1750723,1750774,1750899,1750975,1750995,1751061,1751097,1751173,1751438,1751447,1751463,1751702,1752212,1752737,1752745,1753078,1753080,1753358,1753363,1754111,1754140-1754141,1754281,1754310,1754445,1754467,1754494,1754496,1754528,1754532-1754533,1754613,1754714,1754874,1754941,1754944,1754950-1754951,1755005,1755007,1755009,1755132,1755180-1755181,1755185,1755190,1755204-1755206,1755208,1755214,1755224,1755227,1755230,1755629,1755646-1755647,1755650,1755653,1755675,1755680,1755683,1755693,1755717,1755731-1755737,1755812,1755828,1755884,1755890,1755918-1755919,1755942,1755958,1755960,1755970,1755993,1756013,1756019,1756039,1756056,1756083-1756114,1756175,1756288-1
 
756289,1756408-1756410,1756778,1756798,1756878,1756898,1756939,1757123-1757124,1757126,1757128,1757132-1757133,1757136,1757145,1757167-1757168,1757175,1757180,1757182,1757195,1757271,1757278,1757347,1757353-1757354,1757363,1757374,1757399,1757406,1757408,1757485,1757495,1757499,1757527,1757578,1757684,1757722,1757727,1757790,1757799,1757813,1757853,1757883,1757903,1757976,1757997,1758000,1758058,1758072-1758075,1758078-1758079,1758223,1758257,1758261,1758276,1758292,1758369,1758378-1758383,1758421,1758423,1758425-1758427,1758430,1758443,1758448,1758459,1758483,1758486-1758487,1758499,1758525,1758556,1758580,1758582,1758584,1758588,1758842,1759019,1759212,1759224,1759227,1759252,1759274,1759513-1759516,1759611,1759757,1759785-1759790,1760005,1760022,1760109-1760110,1760135,1760200-1760201,1760227,1760300,1760397,1760446,1760454,1760640,1760648,1761057,1761422,1761491,1761498,1761500-1761501,1761550,1761553,1761572,1761574,1761625-1761626,1761628,1761682,1761740,1761752,1762051-176205
 
3,1762123,1762168,1762172,1762182,1762201-1762202,1762204,1762208,1762288,1762296,1762324,1762348,1762353,1762362,1762374,1762492,1762503,1762505,1762541,1762608,1762710,1762753,1762766,1762769,1762944,1762947,1762953,1763167,1763179,1763232,1763259,1763271-1763272,1763276-1763277,17

svn commit: r1853373 - in /tomcat/tc7.0.x/trunk: ./ conf/catalina.properties webapps/docs/changelog.xml

2019-02-11 Thread kkolinko
Author: kkolinko
Date: Mon Feb 11 14:00:56 2019
New Revision: 1853373

URL: http://svn.apache.org/viewvc?rev=1853373&view=rev
Log:
Simplify the value of jarsToSkip property in catalina.properties file for 
tomcat-i18n jar files.

Use prefix pattern instead of listing each language.

Merged r1853372 from tomcat/tc8.5.x/trunk.

Modified:
tomcat/tc7.0.x/trunk/   (props changed)
tomcat/tc7.0.x/trunk/conf/catalina.properties
tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml

Propchange: tomcat/tc7.0.x/trunk/
--
--- svn:mergeinfo (original)
+++ svn:mergeinfo Mon Feb 11 14:00:56 2019
@@ -1,3 +1,3 @@
 
/tomcat/tc8.0.x/trunk:1636525,1637336,1637685,1637709,1638726,1640089,1640276,1640349,1640363,1640366,1640642,1640672,1640674,1640689,1640884,1641001,1641065,1641067,1641375,1641638,1641723,1641726,1641729-1641730,1641736,1641988,1642669-1642670,1642698,1642701,1643205,1643215,1643217,1643230,1643232,1643273,1643285,1643329-1643330,1643511,1643513,1643521,1643539,1643571,1643581-1643582,1643635,1643655,1643738,1643964,1644018,1644333,1644525,1644954,1644992,1645014,1645360,1645456,1645627,1645642,1645686,1645903-1645904,1645908-1645909,1645913,1645920,1646458,1646460-1646462,1646735,1646738-1646741,1646744,1646746,1646748-1646755,1646757,1646759-1646760,1647043,1648816,1651420-1651422,1651844,1652926,1652939-1652940,1652973,1653798,1653817,1653841,1654042,1654161,1654736,1654767,1654787,1656592,1659907,1662986,1663265,1663278,1663325,1663535,1663567,1663679,1663997,1664175,1664321,1664872,1665061,1665086,1666027,1666395,1666503,1666506,1666560,1666570,1666581,1666759,1666967,1666988
 
,1667553-1667555,1667558,1667617,1667633,1667637,1667747,1667767,1667873,1668028,1668137,1668634,1669432,1669801,1669840,1669895-1669896,1670398,1670435,1670592,1670605-1670607,1670609,1670632,1670720,1670725,1670727,1670731,1671114,1672273,1672285,1673759,1674220,1674295,1675469,1675488,1675595,1675831,1676232,1676367-1676369,1676382,1676394,1676483,1676556,1676635,1678178,1679536,1679988,1680256,1681124,1681182,1681703,1681730,1681840,1681864,1681869,1682010,1682034,1682047,1682052-1682053,1682062,1682064,1682070,1682312,1682325,1682331,1682386,1684367,1684385,1685759,1685774,1685827,1685892,1687341,1688904,1689358,1689657,1689921,1692850,1693093,1693108,1693324,1694060,1694115,1694291,1694427,1694431,1694503,1694549,1694789,1694873,1694881,1695356,1695372,1695823-1695825,1696200,1696281,1696379,1696468,1700608,1700871,1700897,1700978,1701094,1701124,1701608,1701668,1701676,1701766,1701944,1702248,1702252,1702314,1702390,1702723,1702725,1702728,1702730,1702733,1702735,1702737,1702
 
739,1702742,1702744,1702748,1702751,1702754,1702758,1702760,1702763,1702766,1708779,1708782,1708806,1709314,1709670,1710347,1710442,1710448,1710490,1710574,1710578,1712226,1712229,1712235,1712255,1712618,1712649,1712655,1712860,1712899,1712903,1712906,1712913,1712926,1712975,1713185,1713262,1713287,1713613,1713621,1713872,1713976,1713994,1713998,1714004,1714013,1714059,1714538,1714580,1715189,1715207,1715544,1715549,1715637,1715639-1715645,1715667,1715683,1715866,1715978,1715981,1716216-1716217,1716355,1716414,1716421,1717208-1717209,1717257,1717283,1717288,1717291,1717421,1717517,1717529,1718797,1718840-1718843,1719348,1719357-1719358,1719400,1719491,1719737,1720235,1720396,1720442,1720446,1720450,1720463,1720658-1720660,1720756,1720816,1721813,1721818,1721831,1721861,1721867,1721882,1722523,1722527,1722800,1722926,1722941,1722997,1723130,1723440,1723488,1723890,1724434,1724674,1724792,1724803,1724902,1725128,1725131,1725154,1725167,1725911,1725921,1725929,1725963-1725965,1725970,1
 
725974,1726171-1726173,1726175,1726179-1726182,1726190-1726191,1726195-1726200,1726203,1726226,1726576,1726630,1726992,1727029,1727037,1727671,1727676,1727900,1728028,1728092,1728439,1728449,1729186,1729362,1731009,1731303,1731867,1731872,1731874,1731876,1731885,1731947,1731955,1731959,1731977,1731984,1732360,1732490,1732672,1732902,1733166,1733603,1733619,1733735,1733752,1733764,1733915,1733941,1733964,1734115,1734133,1734261,1734421,1734531,1736286,1737967,1738173,1738182,1738992,1739039,1739089-1739091,1739294,1739777,1739821,1739981,1740513,1740726,1741019,1741162,1741217,1743647,1743681,1744152,1744272,1746732,1746750,1752739,1754615,1755886,1756018,1758563,1759565,1761686,1762173,1762206,1766280,1767507-1767508,1767653,1767656,1769267,1772949,1773521,1773527,1774104,1777015,1777213,1779330,1783151,1784188,1784966,1785670,1786846,1788260,1788999,1789140,1789402,1791529,1791559,1795291,1796906,1797523,1799214,1800998-1800999,1801003,1801007-1801008,1801017,1801020,1802808,180281
 
4,1803618,1806107,1806733,1807082-1807083,1808707,1808884,1809267,1809644,1809832,1809904,1809915,1809924,1810283,1810328,1810574,1810576-1810577,1810584,1810588,1811141,1811842,1812090,1812096,1812150,1812511,1814976,1814983,1815072,1815453,1815946,1815957,1816143,1816682,1817229,1817287,1820200,1820209,18202

svn propchange: r1852694 - svn:log

2019-02-11 Thread kkolinko
Author: kkolinko
Revision: 1852694
Modified property: svn:log

Modified: svn:log at Mon Feb 11 14:03:34 2019
--
--- svn:log (original)
+++ svn:log Mon Feb 11 14:03:34 2019
@@ -1 +1 @@
-Update minimum recommended Tomcat version to 1.2.21
+Update minimum recommended Tomcat Native version to 1.2.21


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Tomcat Wiki] Update of "FrontPage" by KonstantinKolinko

2019-02-11 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change 
notification.

The "FrontPage" page has been changed by KonstantinKolinko:
https://wiki.apache.org/tomcat/FrontPage?action=diff&rev1=41&rev2=42

Comment:
Add link to development pages at CWiki.

   * '''[[GSOC]]''' - Google Summer of Code
   * '''[[AddOns]]''' - Third party tools and add-ons not included in the 
official distribution
   * '''[[ReleaseProcess|Release Process]]''' - How to perform an official 
Apache Tomcat release
-  * '''[[Development|Development Issues]]''' - Work in progress design and/or 
development documentation
+  * '''[[Development|Development Issues]]''' - Work in progress design and/or 
development documentation. These pages have moved to 
[[https://cwiki.apache.org/confluence/display/TOMCAT/Design+and+Development+Issues|CWiki]].
   * '''[[Events]]''' - Upcoming Tomcat events
  
  = Special Wiki pages =

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Jakarta EE - Servlet TCK (nightly)

2019-02-11 Thread Mark Thomas
On 06/02/2019 16:17, Mark Thomas wrote:
> All,
> 
> I've started looking at the Jakarta EE Servlet TCK.
> 
> Again a nightly build so usual caveats apply.
> 
> Progress is being tracked here:
> https://cwiki.apache.org/confluence/display/TOMCAT/Servlet+TCK
> 
> I know that we'll need a client cert for the TCK user created. I plan to
> do this from the same test CA we use for the unit tests. That is still TODO.
> 
> The Servlet TCK has grown quite a bit since I last saw it.
> 
> I've started running the tests and I already see a handful of failures
> so I am going to dig into those and see what I find.

Between myself and Rémy I think we have taken this as far as we can at
the moment.

The current status is:
- 1 x Tomcat bug fixed
- 5 x TCK bugs that between them cause 11 test failures
- 2 x TCK test failures that are expected

Status will continue to be tracked at:
https://cwiki.apache.org/confluence/display/TOMCAT/Servlet+TCK

The intention is to update that page as TCK bugs get fixed etc.

Mark

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2019-02-11 Thread Konstantin Kolinko
пт, 8 февр. 2019 г. в 15:59, Violeta Georgieva :
>
> Hi,
>
> I'm planning to tag Tomcat 7 later today or tomorrow.
> If you want to include something please reply here.

I did what I planned for today. I think it is OK to go.

Best regards,
Konstantin Kolinko

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Git migration - Timing

2019-02-11 Thread Mark Thomas
All,

I'd like to propose that we make the move from svn to git for Tomcat
7.0.x, 8.5.x and 9.0.x as soon as the next 7.0.x release is complete.

The proposed approach is documented here:
https://cwiki.apache.org/confluence/display/TOMCAT/Git+migration

I anticipate that the repositories will be read only for a couple of hours.

I also anticipate that the CI systems - particularly Gump - will take up
to a day to switch over and iron out any problems.

Any objections?

If not, I'll start a formal VOTE.

Mark

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 63041] shutdown.sh exits non 0 requires KILLSIG from OS

2019-02-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63041

--- Comment #16 from Mark Thomas  ---
Sigh. Sorry for the hassle. Sticking with catalina.sh from 9.0.14 is the way to
go if you are seeing issues.

We should be able to get this fixed for the next release. I don't know yet what
that fix will look like.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2019-02-11 Thread Violeta Georgieva
Hi,

На пн, 11.02.2019 г. в 16:45 ч. Konstantin Kolinko 
написа:
>
> пт, 8 февр. 2019 г. в 15:59, Violeta Georgieva :
> >
> > Hi,
> >
> > I'm planning to tag Tomcat 7 later today or tomorrow.
> > If you want to include something please reply here.
>
> I did what I planned for today. I think it is OK to go.

Thanks I'll tag it in the next hours

Violeta


[Bug 8867] exports.c generation fails when using a symlink to the source

2019-02-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=8867

Christophe JAILLET  changed:

   What|Removed |Added

 Resolution|WORKSFORME  |LATER
Version|1.2.24  |2.0.46
   Assignee|dev@tomcat.apache.org   |b...@httpd.apache.org
  Component|mod_jk  |Build
Product|Tomcat Connectors   |Apache httpd-2

--- Comment #37 from Christophe JAILLET  ---
(revert spam(?) change.
However, I've let it as RESOLVED/LATER with tag MassUpdate because it is really
old now)

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Quick review of outline for Tomcat security presentation?

2019-02-11 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

All,

I'm going to be presenting at the upcoming Apache RoadShow in
Washington, DC  -- Monday, March 25th if you are local -- and my
presentation is on locking-down Tomcat.

I have an outline that I'd like anyone to take a look at. It's only 15
slides long and will take someone about 60 seconds to read-through.

I'm wondering if I'm missing anything important.

The audience will be (probably) from college students to system
administrators, so it won't go into excruciating detail about
everything. More of a checklist of things to consider and WHY.

If anyone is willing to take a quick look and give me some feedback,
I'd appreciate it.

Thanks,
- -chris
-BEGIN PGP SIGNATURE-
Comment: Using GnuPG with Thunderbird - https://www.enigmail.net/

iQIzBAEBCAAdFiEEMmKgYcQvxMe7tcJcHPApP6U8pFgFAlxhqL4ACgkQHPApP6U8
pFjOEg//RvAfVbgUhcnMIWygnhms0gqitF61UDEv4lynEFtOCsn25F7LpgvJoJMQ
ponggGNbJktgvqcEcNN05VQHGPjXrxMp1KN0goA5P14wo+ZCiCKEPHLkgVdqGx8D
HeS7iV5l+gEecIswKD0ShayFEE0mzwpdRch8Fu9PrQxHCCvTKH+Nn6Z788fWd85e
bVZQbtZzppkQvI4gL4VQTvxS1+PMhTg0j4O5AOYK500sNRcjD9RVjBe5F/6D/jLF
psJlE5JpQcDi6AUBMx3EfFd0CeBHHm0kEAwVVYMwzOtawfvQucX7AzPJi0AmnHp5
RnnId4ZRuft4E2aIZMXrrp0GwnaUbzpOaz2/XhaR3+Eah2h6MXGh/3KLI6lj2cPI
keLQwPgYhItV0xpbdbdJVMgJcc6HIyxHeDBNQiMMkxqJAO4HlcL62V+EYZN4OKlc
CK3WVIaMs4MicVeVmiSh3c2VWr4hhajpqSGDlpgYEVTpWofK1THXuq000o7ctJ1M
zeZa0YY4Fq3VeWgpc3mZSRmtItfavaKfz26jE9qpeTiKz2QdcV3RPGxvfTGuL2Y+
POP7NIwBh0cbfXNsfNUj/Btftp9VtbNGZvpmBoD1MEtg9Z5+OebUZcG2hsvUDHby
3RJDI+WOId5izbd0UmHJnnkIqwA2vM/CMNATTAxGYTKIENbb1ds=
=ihtq
-END PGP SIGNATURE-

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1853397 - in /tomcat/tc7.0.x/tags/TOMCAT_7_0_93: ./ build.properties.default

2019-02-11 Thread violetagg
Author: violetagg
Date: Mon Feb 11 17:32:07 2019
New Revision: 1853397

URL: http://svn.apache.org/viewvc?rev=1853397&view=rev
Log:
Tag 7.0.93

Added:
tomcat/tc7.0.x/tags/TOMCAT_7_0_93/   (props changed)
  - copied from r1853393, tomcat/tc7.0.x/trunk/
Modified:
tomcat/tc7.0.x/tags/TOMCAT_7_0_93/build.properties.default

Propchange: tomcat/tc7.0.x/tags/TOMCAT_7_0_93/
--
bugtraq:append = false

Propchange: tomcat/tc7.0.x/tags/TOMCAT_7_0_93/
--
bugtraq:label = Bugzilla ID (optional)

Propchange: tomcat/tc7.0.x/tags/TOMCAT_7_0_93/
--
--- bugtraq:logregex (added)
+++ bugtraq:logregex Mon Feb 11 17:32:07 2019
@@ -0,0 +1,2 @@
+(https?\://(bz|issues)\.apache\.org/bugzilla/show_bug.cgi\?id=\d+|BZ\s?\d+)
+(\d+)

Propchange: tomcat/tc7.0.x/tags/TOMCAT_7_0_93/
--
bugtraq:message = Fix https://bz.apache.org/bugzilla/show_bug.cgi?id=%BUGID%

Propchange: tomcat/tc7.0.x/tags/TOMCAT_7_0_93/
--
bugtraq:url = https://bz.apache.org/bugzilla/show_bug.cgi?id=%BUGID%

Propchange: tomcat/tc7.0.x/tags/TOMCAT_7_0_93/
--
--- svn:ignore (added)
+++ svn:ignore Mon Feb 11 17:32:07 2019
@@ -0,0 +1,7 @@
+.*
+build.properties
+logs
+nbproject
+output
+work
+*.iml

Propchange: tomcat/tc7.0.x/tags/TOMCAT_7_0_93/
--
--- svn:mergeinfo (added)
+++ svn:mergeinfo Mon Feb 11 17:32:07 2019
@@ -0,0 +1,3 @@
+/tomcat/tc8.0.x/trunk:1636525,1637336,1637685,1637709,1638726,1640089,1640276,1640349,1640363,1640366,1640642,1640672,1640674,1640689,1640884,1641001,1641065,1641067,1641375,1641638,1641723,1641726,1641729-1641730,1641736,1641988,1642669-1642670,1642698,1642701,1643205,1643215,1643217,1643230,1643232,1643273,1643285,1643329-1643330,1643511,1643513,1643521,1643539,1643571,1643581-1643582,1643635,1643655,1643738,1643964,1644018,1644333,1644525,1644954,1644992,1645014,1645360,1645456,1645627,1645642,1645686,1645903-1645904,1645908-1645909,1645913,1645920,1646458,1646460-1646462,1646735,1646738-1646741,1646744,1646746,1646748-1646755,1646757,1646759-1646760,1647043,1648816,1651420-1651422,1651844,1652926,1652939-1652940,1652973,1653798,1653817,1653841,1654042,1654161,1654736,1654767,1654787,1656592,1659907,1662986,1663265,1663278,1663325,1663535,1663567,1663679,1663997,1664175,1664321,1664872,1665061,1665086,1666027,1666395,1666503,1666506,1666560,1666570,1666581,1666759,1666967,1666988
 
,1667553-1667555,1667558,1667617,1667633,1667637,1667747,1667767,1667873,1668028,1668137,1668634,1669432,1669801,1669840,1669895-1669896,1670398,1670435,1670592,1670605-1670607,1670609,1670632,1670720,1670725,1670727,1670731,1671114,1672273,1672285,1673759,1674220,1674295,1675469,1675488,1675595,1675831,1676232,1676367-1676369,1676382,1676394,1676483,1676556,1676635,1678178,1679536,1679988,1680256,1681124,1681182,1681703,1681730,1681840,1681864,1681869,1682010,1682034,1682047,1682052-1682053,1682062,1682064,1682070,1682312,1682325,1682331,1682386,1684367,1684385,1685759,1685774,1685827,1685892,1687341,1688904,1689358,1689657,1689921,1692850,1693093,1693108,1693324,1694060,1694115,1694291,1694427,1694431,1694503,1694549,1694789,1694873,1694881,1695356,1695372,1695823-1695825,1696200,1696281,1696379,1696468,1700608,1700871,1700897,1700978,1701094,1701124,1701608,1701668,1701676,1701766,1701944,1702248,1702252,1702314,1702390,1702723,1702725,1702728,1702730,1702733,1702735,1702737,1702
 
739,1702742,1702744,1702748,1702751,1702754,1702758,1702760,1702763,1702766,1708779,1708782,1708806,1709314,1709670,1710347,1710442,1710448,1710490,1710574,1710578,1712226,1712229,1712235,1712255,1712618,1712649,1712655,1712860,1712899,1712903,1712906,1712913,1712926,1712975,1713185,1713262,1713287,1713613,1713621,1713872,1713976,1713994,1713998,1714004,1714013,1714059,1714538,1714580,1715189,1715207,1715544,1715549,1715637,1715639-1715645,1715667,1715683,1715866,1715978,1715981,1716216-1716217,1716355,1716414,1716421,1717208-1717209,1717257,1717283,1717288,1717291,1717421,1717517,1717529,1718797,1718840-1718843,1719348,1719357-1719358,1719400,1719491,1719737,1720235,1720396,1720442,1720446,1720450,1720463,1720658-1720660,1720756,1720816,1721813,1721818,1721831,1721861,1721867,1721882,1722523,1722527,1722800,1722926,1722941,1722997,1723130,1723440,1723488,1723890,1724434,1724674,1724792,1724803,1724902,1725128,1725131,1725154,1725167,1725911,1725921,1725929,1725963-1725965,1725970,1
 
725974,1726171-1726173,1726175,1726179-1726182,1726190-1726191,1726195-1726200,1726203,1726226,1726576,1726630,1726992,1727029,1727037,1727671,1727676,17

Jakarta EE - JSP TCK (nightly)

2019-02-11 Thread Mark Thomas
All,

I've looked at the Jakarta EE JSP TCK.

Again a nightly build so usual caveats apply.

Progress is being tracked here:
https://cwiki.apache.org/confluence/display/TOMCAT/JSP+TCK

All looks good. The signature tests fail but that is a bug in the
standalone TCK. Apart from that, everything passes with a clean 9.0.x build.

Mark
=

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Quick review of outline for Tomcat security presentation?

2019-02-11 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

All,

New and improved! With a link to the outline!

https://people.apache.org/~schultz/Apache%20RoadShow%20DC%202019/Locking
- -Down%20Apache%20Tomcat_outline.pdf

Thanks,
- -chris

On 2/11/19 11:54, Christopher Schultz wrote:
> All,
> 
> I'm going to be presenting at the upcoming Apache RoadShow in 
> Washington, DC  -- Monday, March 25th if you are local -- and my 
> presentation is on locking-down Tomcat.
> 
> I have an outline that I'd like anyone to take a look at. It's only
> 15 slides long and will take someone about 60 seconds to
> read-through.
> 
> I'm wondering if I'm missing anything important.
> 
> The audience will be (probably) from college students to system 
> administrators, so it won't go into excruciating detail about 
> everything. More of a checklist of things to consider and WHY.
> 
> If anyone is willing to take a quick look and give me some
> feedback, I'd appreciate it.
> 
> Thanks, -chris
> 
> -
>
> 
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: dev-h...@tomcat.apache.org
> 
-BEGIN PGP SIGNATURE-
Comment: Using GnuPG with Thunderbird - https://www.enigmail.net/

iQIzBAEBCAAdFiEEMmKgYcQvxMe7tcJcHPApP6U8pFgFAlxh0rwACgkQHPApP6U8
pFgBQRAAnb+WlJ5acy6tTZ5qNyvu5rWKb+G/08XJF69EsvSR3wFLyv9qhKLJU8Tt
rWqRsjbScHIvqHPxL+B97zRwP2d6Xy3KsKdRwOx2yC/Cy8zGcIP4AeGrD1rMIMkl
iJwZTwcAo7QHZC/053lSVx03gdBauN114AXC5USvngIq8Gyr3174lm22sKs8DXrI
PUFCjaCYaoolb1F15v8bd5Kff+No9OQf5Vi+b3TN09pVA2B4KInt8Hn/96C0A5Dg
yGl7HLWngXKVW8w3aKLjJWQbHsmTmFJK6AhLz1z7Lwvs1QsAxGdUBtgOBnGQDRVz
ryJVeV1bjlnmJoAwEfawkTKRyF7d1ccFQ2zlgRyGAU0GYPtApql6m88dy/SomWdb
MYgIUvyNvx0TgGsNXOZwKo3Mn1Hiz1KZwbE5GB8CdxkKlk68U1V3DzszTA0g3Ikn
xzCtjoJwIejg8lWwJZS4l0REcpk0eNz1H6SodIQJQIzK/tQ3K+DQ/nunXn2mNBy/
JMe/fPPutyLBAVNzzJ32DD9HcAk9B4p38nd+GpiJmaHVJ4uIy7NFeIIduzY5+jSv
2uN99juPRciFd87z7eW0NScoSFaJS2DO06XGJPHBzKDHK7PTBJqaNm/SaTR/aet6
gae6vAdgFKG4gIleOJvNhoN+2SYScPyEdSfb71ijBs663gPW9eQ=
=keOa
-END PGP SIGNATURE-

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Git migration - Timing

2019-02-11 Thread Michael Osipov
> All,
> 
> I'd like to propose that we make the move from svn to git for Tomcat
> 7.0.x, 8.5.x and 9.0.x as soon as the next 7.0.x release is complete.
> 
> The proposed approach is documented here:
> https://cwiki.apache.org/confluence/display/TOMCAT/Git+migration
> 
> I anticipate that the repositories will be read only for a couple of hours.
> 
> I also anticipate that the CI systems - particularly Gump - will take up
> to a day to switch over and iron out any problems.
> 
> Any objections?
> 
> If not, I'll start a formal VOTE.

Can you leave me a few more days? I'd like to review the wiki page and add some 
propsals.

Michael

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Git migration - Timing

2019-02-11 Thread Mark Thomas
On 11/02/2019 19:57, Michael Osipov wrote:
>> All,
>>
>> I'd like to propose that we make the move from svn to git for Tomcat
>> 7.0.x, 8.5.x and 9.0.x as soon as the next 7.0.x release is complete.
>>
>> The proposed approach is documented here:
>> https://cwiki.apache.org/confluence/display/TOMCAT/Git+migration
>>
>> I anticipate that the repositories will be read only for a couple of hours.
>>
>> I also anticipate that the CI systems - particularly Gump - will take up
>> to a day to switch over and iron out any problems.
>>
>> Any objections?
>>
>> If not, I'll start a formal VOTE.
> 
> Can you leave me a few more days? I'd like to review the wiki page and add 
> some propsals.

What sort of proposals?

Each of the issues has been discussed and the approach agreed within the
community - on this list - over a period of many months.

Unless there is a show-stopper issue that has been missed in the
discussions to date, I really do think it is time to move forward with
the actual migration.

Mark

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Quick review of outline for Tomcat security presentation?

2019-02-11 Thread Mark Thomas
On 11/02/2019 19:53, Christopher Schultz wrote:
> https://people.apache.org/~schultz/Apache%20RoadShow%20DC%202019/Locking
> -Down%20Apache%20Tomcat_outline.pdf

s/Default credentials/No default credentials/

Some Tomcat directories (logs, work) need to be writeable by the Tomcat
user.

Add the Manager app to the sharp edges. App deployment == RCE.

App is biggest risk.

HTH,

Mark

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Jakarta EE - JASPIC TCK (nightly)

2019-02-11 Thread Mark Thomas
All,

I've started to look at the Jakarta EE JASPIC TCK.

Again a nightly build so usual caveats apply.

Progress is being tracked here:
https://cwiki.apache.org/confluence/display/TOMCAT/JASPIC+TCK

Hmm.

This TCK seems very different to the standalone TCKs for the other specs
we implement.
- Deployment is significantly more complex. Rather than just WARs there
  are some JARS that need to be extracted and rename from EARs.
- It seems to need the RI up and running for the tests.


I'm giving up on this for now. I may come back to it at some point but I
think it is more likely that I won't.

Mark

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Re: Git migration - Timing

2019-02-11 Thread Michael Osipov
> On 11/02/2019 19:57, Michael Osipov wrote:
> >> All,
> >>
> >> I'd like to propose that we make the move from svn to git for Tomcat
> >> 7.0.x, 8.5.x and 9.0.x as soon as the next 7.0.x release is complete.
> >>
> >> The proposed approach is documented here:
> >> https://cwiki.apache.org/confluence/display/TOMCAT/Git+migration
> >>
> >> I anticipate that the repositories will be read only for a couple of hours.
> >>
> >> I also anticipate that the CI systems - particularly Gump - will take up
> >> to a day to switch over and iron out any problems.
> >>
> >> Any objections?
> >>
> >> If not, I'll start a formal VOTE.
> > 
> > Can you leave me a few more days? I'd like to review the wiki page and add 
> > some propsals.
> 
> What sort of proposals?
> 
> Each of the issues has been discussed and the approach agreed within the
> community - on this list - over a period of many months.
> 
> Unless there is a show-stopper issue that has been missed in the
> discussions to date, I really do think it is time to move forward with
> the actual migration.

I completely missed that discussion, truly my fault.
It maybe nothing special I'd object or maybe nothing at all.
At Maven TLP we have migrated tens of repos, so we gained some experience here.

Michael

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Quick review of outline for Tomcat security presentation?

2019-02-11 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Mark,

Thanks for the review.

On 2/11/19 15:24, Mark Thomas wrote:
> On 11/02/2019 19:53, Christopher Schultz wrote:
>> https://people.apache.org/~schultz/Apache%20RoadShow%20DC%202019/Lock
ing
>>
>>
>> 
- -Down%20Apache%20Tomcat_outline.pdf
> 
> s/Default credentials/No default credentials/

That will be the point of this part: Tomcat has *zero* default
credentials. I'm happy to re-name that part of the outline, but of
course the content won't really change.

> Some Tomcat directories (logs, work) need to be writeable by the 
> Tomcat user.

Ack

> Add the Manager app to the sharp edges. App deployment == RCE.

Ack

> App is biggest risk.

Thanks. That's what this presentation is going to point out, and give
some tips for things Tomcat can do to help the application like
CORS/CSRF. These are not well-understood things in app-dev land, and
they need to be.

- -chris
-BEGIN PGP SIGNATURE-
Comment: Using GnuPG with Thunderbird - https://www.enigmail.net/

iQIzBAEBCAAdFiEEMmKgYcQvxMe7tcJcHPApP6U8pFgFAlxh8ioACgkQHPApP6U8
pFhcaBAAnneRcFRfpETvi3bOXfDOhsEySxAgm//74tgxnWbqWiGK+Md66U84Q1i5
jSJpnwt2/vI0sR9hdxeX3LD1CQtLkVe1cmQTML+KLAz0FTYFQsUlf7OmrMtPlJ7I
c25T7bWOKfCS7NB+QP1moB6gv9WI9yIRregMSNP09eEJJu1MttM03DaM+mdOjpcM
D366hrTyjQFtI2iCiNzj77y0TZDy7yBuYUHLOXAjZg+kbyhWX9sQSujEFxhPQkg+
Wi5D6kUoFbP2PIjkEhF8xL2VI3Fg1fSXQ/1EJFDJRYuflWLATuoIdzpTHLsF2Bbp
bNPViUo17KLKseVgMYZThXD01su1xFUHJTHz4MF0RxZlEPLFPeb6NvOM8r7fta65
JagxwfHQtQPYBuQIX3hqUi/pFzwbo4mWHw/K8YhnEguZFNDvrb/rr/8Ov04iEb+u
RaL591Zwkgfl1lEarovI1nkMtx9Ouf14Byz+HW/0F0796zV7Sx8t2BHvGW+bCH4o
oEQLS5/hGIMrtJbYE9BWrqCAD9XvGhRc5ZsGB380tYb4l2mTbYdrOCOlnsed7J4w
eqZq0TXYAHBAIh76nnMNcIjnBYmoY6+H3svKAK0/FRvj+nXz5GcxF5x8uxoD+fNS
DR2tLuXWRpvC9Oc2/T3KKOQduY7Ub4cjVOYBBjzsCj2dS9uS+uE=
=mr4J
-END PGP SIGNATURE-

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 63041] shutdown.sh exits non 0 requires KILLSIG from OS

2019-02-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63041

--- Comment #17 from Konstantin Kolinko  ---
Another report of this issue on the users@ list.

https://markmail.org/message/x4rzdpsjzoi2pbdd

Quoting:
---
I'm observing this on RHEL 6 and 7.

RHEL6$ /bin/sh --version
GNU bash, version 4.1.2(1)-release (x86_64-redhat-linux-gnu)

RHEL7$ /bin/sh --version
GNU bash, version 4.2.46(2)-release (x86_64-redhat-linux-gnu)

[...]

The 8.5.37 version is storing a PID value, but it is not the correct PID.

The 8.5.38 version does not even create the file.

I can also see this same behavior on Ubuntu 18.04.1 LTS.
---

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: Tag Tomcat 7

2019-02-11 Thread Konstantin Kolinko
пн, 11 февр. 2019 г. в 18:33, Violeta Georgieva :
> >
> > I did what I planned for today. I think it is OK to go.
>
> Thanks I'll tag it in the next hours

There is a regression in catalina.sh script. It does not create a
correct PID file.
This is discussed in
https://bz.apache.org/bugzilla/show_bug.cgi?id=63041

Best regards,
Konstantin Kolinko

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 63041] shutdown.sh exits non 0 requires KILLSIG from OS

2019-02-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63041

--- Comment #18 from Konstantin Kolinko  ---
For a reference: POSIX-2018 documentation on Shell Command Language:

http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html

The $! parameter is defined in section "2.5.2 Special Parameters" of that
document.

"$!" returns a PID of a background command, but '&&' separates foreground
commands, and it will wait until the first command completes. Thus no PID file
is created.

I also wonder how nohup command fits into all this (triggered via $USE_NOHUP
and represented by $_NOHUP here).

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 63167] New: Network Requirements To Resolve No Members Active In Cluster Group

2019-02-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63167

Bug ID: 63167
   Summary: Network Requirements To Resolve No Members Active In
Cluster Group
   Product: Tomcat 7
   Version: 7.0.70
  Hardware: PC
OS: Linux
Status: NEW
  Severity: normal
  Priority: P2
 Component: Cluster
  Assignee: dev@tomcat.apache.org
  Reporter: soft...@softopt-engr.com
  Target Milestone: ---

Created attachment 36433
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=36433&action=edit
server.xml for node 1

Trying to find a solution to "no members active in cluster group," my
observation is identical to Bug 52263.  I tried the attached server.xml from
response "working static cluster config." Yet for me it continues to result in
"no members active in cluster group."

Attached is my similar version of server.xml configuring a 2-node static member
cluster.

(The second server.xml is identical except the receiver address IP and member
host IP are swapped.)

The HOW-TO documentation could be improved to address the following:

1. If "no members active in cluster group" can be caused by a network issue,
what steps are there to determine if a network is configured properly? I have
created a Private LAN with internal IPs assigned to each node. I am using these
IPs in the receiver and member components, but not sure if I need additional
proxy configuration.

2. Explain the value of defining a localMember.

3. If a session cookie consists only of JSESSIONID, is serializing still
required?

TIAD

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 63041] shutdown.sh exits non 0 requires KILLSIG from OS

2019-02-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=63041

--- Comment #19 from Konstantin Kolinko  ---
An idea: use a named pipe (a FIFO special file) to solve the original bug
53930.

1. mkfifo command is documented in POSIX. It is a standard feature.

http://pubs.opengroup.org/onlinepubs/9699919799/utilities/mkfifo.html

2. No need to change syntax. Redirection to a FIFO file is the same as to a
regular CATALINA_OUT file. You just need to create it beforehand.

Articles:

https://www.linuxjournal.com/article/2156
https://en.wikipedia.org/wiki/Named_pipe

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[GUMP@vmgump-vm3]: Project tomcat-trunk-test-nio2 (in module tomcat-trunk) failed

2019-02-11 Thread Bill Barker
To whom it may engage...

This is an automated request, but not an unsolicited one. For 
more information please visit http://gump.apache.org/nagged.html, 
and/or contact the folk at gene...@gump.apache.org.

Project tomcat-trunk-test-nio2 has an issue affecting its community integration.
This issue affects 1 projects,
 and has been outstanding for 4 runs.
The current state of this project is 'Failed', with reason 'Build Failed'.
For reference only, the following projects are affected by this:
- tomcat-trunk-test-nio2 :  Tomcat 9.x, a web server implementing the Java 
Servlet 4.0,
...


Full details are available at:
http://vmgump-vm3.apache.org/tomcat-trunk/tomcat-trunk-test-nio2/index.html

That said, some information snippets are provided here.

The following annotations (debug/informational/warning/error messages) were 
provided:
 -DEBUG- Dependency on bnd exists, no need to add for property bndlib.jar.
 -INFO- Failed with reason build failed
 -INFO- Project Reports in: 
/srv/gump/public/workspace/tomcat-trunk/output/logs-NIO2
 -INFO- Project Reports in: 
/srv/gump/public/workspace/tomcat-trunk/output/test-tmp-NIO2/logs
 -WARNING- No directory 
[/srv/gump/public/workspace/tomcat-trunk/output/test-tmp-NIO2/logs]



The following work was performed:
http://vmgump-vm3.apache.org/tomcat-trunk/tomcat-trunk-test-nio2/gump_work/build_tomcat-trunk_tomcat-trunk-test-nio2.html
Work Name: build_tomcat-trunk_tomcat-trunk-test-nio2 (Type: Build)
Work ended in a state of : Failed
Elapsed: 24 mins 44 secs
Command Line: /usr/lib/jvm/java-8-oracle/bin/java -Djava.awt.headless=true 
-Dbuild.sysclasspath=only -Dsun.zip.disableMemoryMapping=true 
org.apache.tools.ant.Main -Dgump.merge=/srv/gump/public/gump/work/merge.xml 
-Dbase.path=/srv/gump/public/workspace/tomcat-trunk/tomcat-build-libs 
-Dbnd.jar=/srv/gump/packages/bnd/bnd-4.0.0/biz.aQute.bnd-4.0.0.jar 
-Dsaaj-api.jar=/srv/gump/packages/saaj-api/saaj-api-1.3.5.jar 
-Djaxrpc-lib.jar=/srv/gump/packages/jaxrpc/geronimo-spec-jaxrpc-1.1-rc4.jar 
-Dtest.temp=output/test-tmp-NIO2 
-Djunit.jar=/srv/gump/public/workspace/junit/target/junit-4.13-SNAPSHOT.jar 
-Djava.net.preferIPv4Stack=/srv/gump/public/workspace/tomcat-trunk/true 
-Dobjenesis.jar=/srv/gump/public/workspace/objenesis/main/target/objenesis-3.1-SNAPSHOT.jar
 -Dexamples.sources.skip=true 
-Dcommons-daemon.jar=/srv/gump/public/workspace/apache-commons/daemon/target/commons-daemon-1.1.1-SNAPSHOT.jar
 
-Dtest.openssl.path=/srv/gump/public/workspace/openssl-master/dest-20190212/bin/openssl
 -Dexecute
 .test.nio=false 
-Dhamcrest.jar=/srv/gump/packages/hamcrest/hamcrest-core-1.3.jar 
-Dbndlib.jar=/srv/gump/packages/bnd/bndlib-4.0.0/biz.aQute.bndlib-4.0.0.jar 
-Dexecute.test.apr=false 
-Dwsdl4j-lib.jar=/srv/gump/packages/wsdl4j/wsdl4j-1.6.3.jar 
-Dtest.reports=output/logs-NIO2 -Dexecute.test.nio2=true 
-Djdt.jar=/srv/gump/packages/eclipse/plugins/R-4.7.3a-201803300640/ecj-4.7.3a.jar
 -Dtest.relaxTiming=true -Dtest.excludePerformance=true -Dtest.accesslog=true 
-Deasymock.jar=/srv/gump/public/workspace/easymock/core/target/easymock-4.1-SNAPSHOT.jar
 -Dcglib.jar=/srv/gump/packages/cglib/cglib-nodep-2.2.jar test 
[Working Directory: /srv/gump/public/workspace/tomcat-trunk]
CLASSPATH: 
/usr/lib/jvm/java-8-oracle/lib/tools.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/webapps/examples/WEB-INF/classes:/srv/gump/public/workspace/tomcat-trunk/output/testclasses:/srv/gump/public/workspace/ant/dist/lib/ant.jar:/srv/gump/public/workspace/ant/dist/lib/ant-launcher.jar:/srv/gump/public/workspace/ant/dist/lib/ant-jmf.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit.jar:/srv/gump/public/workspace/ant/dist/lib/ant-junit4.jar:/srv/gump/public/workspace/ant/dist/lib/ant-swing.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-resolver.jar:/srv/gump/public/workspace/ant/dist/lib/ant-apache-xalan2.jar:/srv/gump/public/workspace/xml-commons/java/build/resolver.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/bin/bootstrap.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/bin/tomcat-juli.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/annotations-api.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/servlet-api.ja
 
r:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/jsp-api.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/el-api.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/websocket-api.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/jaspic-api.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/catalina.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/catalina-ant.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/catalina-storeconfig.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/tomcat-coyote.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/jasper.jar:/srv/gump/public/workspace/tomcat-trunk/output/build/lib/jasper-el.jar:/srv/gump/public/workspace/tomcat-trunk/

Re: Tag Tomcat 7

2019-02-11 Thread Violeta Georgieva
На вт, 12.02.2019 г. в 1:11 ч. Konstantin Kolinko 
написа:
>
> пн, 11 февр. 2019 г. в 18:33, Violeta Georgieva :
> > >
> > > I did what I planned for today. I think it is OK to go.
> >
> > Thanks I'll tag it in the next hours
>
> There is a regression in catalina.sh script. It does not create a
> correct PID file.
> This is discussed in
> https://bz.apache.org/bugzilla/show_bug.cgi?id=63041

Ok as I didn't upload any binaries, I'll just drop the tag and retag again
when there is a fix for this issue.

Violeta


svn commit: r1853415 - /tomcat/tc7.0.x/tags/TOMCAT_7_0_93/

2019-02-11 Thread violetagg
Author: violetagg
Date: Tue Feb 12 07:24:56 2019
New Revision: 1853415

URL: http://svn.apache.org/viewvc?rev=1853415&view=rev
Log:
Drop the tag in order to pick up a new fix

Removed:
tomcat/tc7.0.x/tags/TOMCAT_7_0_93/


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org