svn commit: r1596991 - in /activemq/activemq-dotnet/Apache.NMS.Stomp/trunk: ./ Resources/ Resources/Values/ src/main/csharp/Properties/

2014-05-22 Thread jgomes
Author: jgomes
Date: Thu May 22 23:50:45 2014
New Revision: 1596991

URL: http://svn.apache.org/r1596991
Log:
Add VisualStudio 2013 solution and Xamarin Android project.
Fixes [AMQNET-477]. (See https://issues.apache.org/jira/browse/AMQNET-477)

Added:
activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/Resources/   (with props)
activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/Resources/AboutResources.txt

activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/Resources/Resource.Designer.cs
activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/Resources/Values/   (with 
props)
activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/Resources/Values/Strings.xml
activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Properties/ 
  (with props)
activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/vs2013-stomp-android.csproj
activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/vs2013-stomp.sln

Propchange: activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/Resources/
--
bugtraq:label = Issue#:

Propchange: activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/Resources/
--
--- bugtraq:message (added)
+++ bugtraq:message Thu May 22 23:50:45 2014
@@ -0,0 +1 @@
+Fixes [AMQNET-%BUGID%]. (See 
https://issues.apache.org/jira/browse/AMQNET-%BUGID%)

Propchange: activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/Resources/
--
bugtraq:url = https://issues.apache.org/jira/browse/AMQNET-%BUGID%

Added: 
activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/Resources/AboutResources.txt
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/Resources/AboutResources.txt?rev=1596991&view=auto
==
--- 
activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/Resources/AboutResources.txt 
(added)
+++ 
activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/Resources/AboutResources.txt 
Thu May 22 23:50:45 2014
@@ -0,0 +1,50 @@
+Images, layout descriptions, binary blobs and string dictionaries can be 
included 
+in your application as resource files.  Various Android APIs are designed to 
+operate on the resource IDs instead of dealing with images, strings or binary 
blobs 
+directly.
+
+For example, a sample Android app that contains a user interface layout 
(main.xml),
+an internationalization string table (strings.xml) and some icons 
(drawable-XXX/icon.png) 
+would keep its resources in the "Resources" directory of the application:
+
+Resources/
+drawable-hdpi/
+icon.png
+
+drawable-ldpi/
+icon.png
+
+drawable-mdpi/
+icon.png
+
+layout/
+main.xml
+
+values/
+strings.xml
+
+In order to get the build system to recognize Android resources, set the build 
action to
+"AndroidResource".  The native Android APIs do not operate directly with 
filenames, but 
+instead operate on resource IDs.  When you compile an Android application that 
uses resources, 
+the build system will package the resources for distribution and generate a 
class called
+"Resource" that contains the tokens for each one of the resources included. 
For example, 
+for the above Resources layout, this is what the Resource class would expose:
+
+public class Resource {
+public class drawable {
+public const int icon = 0x123;
+}
+
+public class layout {
+public const int main = 0x456;
+}
+
+public class strings {
+public const int first_string = 0xabc;
+public const int second_string = 0xbcd;
+}
+}
+
+You would then use R.drawable.icon to reference the drawable/icon.png file, or 
Resource.layout.main 
+to reference the layout/main.xml file, or Resource.strings.first_string to 
reference the first 
+string in the dictionary file values/strings.xml.
\ No newline at end of file

Added: 
activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/Resources/Resource.Designer.cs
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/Resources/Resource.Designer.cs?rev=1596991&view=auto
==
--- 
activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/Resources/Resource.Designer.cs 
(added)
+++ 
activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/Resources/Resource.Designer.cs 
Thu May 22 23:50:45 2014
@@ -0,0 +1,60 @@
+#pragma warning disable 1591
+//--
+// 
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.18444
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+// 
+//--
+
+[assembly: 
global::Android.Runtime.ResourceDesignerAttribute("

svn commit: r1596992 - in /activemq/activemq-dotnet/Apache.NMS.MQTT/trunk: ./ Resources/ Resources/Values/ src/main/csharp/Properties/

2014-05-22 Thread jgomes
Author: jgomes
Date: Thu May 22 23:51:20 2014
New Revision: 1596992

URL: http://svn.apache.org/r1596992
Log:
Add VisualStudio 2013 solution and Xamarin Android project.
Fixes [AMQNET-477]. (See https://issues.apache.org/jira/browse/AMQNET-477)

Added:
activemq/activemq-dotnet/Apache.NMS.MQTT/trunk/Resources/   (with props)
activemq/activemq-dotnet/Apache.NMS.MQTT/trunk/Resources/AboutResources.txt

activemq/activemq-dotnet/Apache.NMS.MQTT/trunk/Resources/Resource.Designer.cs
activemq/activemq-dotnet/Apache.NMS.MQTT/trunk/Resources/Values/   (with 
props)
activemq/activemq-dotnet/Apache.NMS.MQTT/trunk/Resources/Values/Strings.xml
activemq/activemq-dotnet/Apache.NMS.MQTT/trunk/src/main/csharp/Properties/  
 (with props)
activemq/activemq-dotnet/Apache.NMS.MQTT/trunk/vs2013-mqtt-android.csproj
activemq/activemq-dotnet/Apache.NMS.MQTT/trunk/vs2013-mqtt.sln
Modified:
activemq/activemq-dotnet/Apache.NMS.MQTT/trunk/README.txt

Modified: activemq/activemq-dotnet/Apache.NMS.MQTT/trunk/README.txt
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.MQTT/trunk/README.txt?rev=1596992&r1=1596991&r2=1596992&view=diff
==
--- activemq/activemq-dotnet/Apache.NMS.MQTT/trunk/README.txt (original)
+++ activemq/activemq-dotnet/Apache.NMS.MQTT/trunk/README.txt Thu May 22 
23:51:20 2014
@@ -1,6 +1,6 @@
 ===
 Welcome to:
- * Apache.NMS.ActiveMQ : Apache NMS for MQTT Client Library
+ * Apache.NMS.MQTT : Apache NMS for MQTT Client Library
 ===
 
 For more information see http://activemq.apache.org/nms
@@ -9,7 +9,7 @@ For more information see http://activemq
 Building With NAnt 0.91 see http://nant.sourceforge.net/
 ===
 
-NAnt version 0.86 91 newer is required to build Apache.NMS.ActiveMQ.  Version 
0.90
+NAnt version 0.86 91 newer is required to build Apache.NMS.MQTT.  Version 0.90
 or newer is highly recommended.
 To build the code using NAnt, run:
 
@@ -36,7 +36,7 @@ To generate the documentation, run:
   nant sandcastle-all
 
 ===
-Building With Visual Studio 2008
+Building With Visual Studio 2010
 ===
 
 First build the project with nant, this will download and install

Propchange: activemq/activemq-dotnet/Apache.NMS.MQTT/trunk/Resources/
--
bugtraq:label = Issue#:

Propchange: activemq/activemq-dotnet/Apache.NMS.MQTT/trunk/Resources/
--
--- bugtraq:message (added)
+++ bugtraq:message Thu May 22 23:51:20 2014
@@ -0,0 +1 @@
+Fixes [AMQNET-%BUGID%]. (See 
https://issues.apache.org/jira/browse/AMQNET-%BUGID%)

Propchange: activemq/activemq-dotnet/Apache.NMS.MQTT/trunk/Resources/
--
bugtraq:url = https://issues.apache.org/jira/browse/AMQNET-%BUGID%

Added: 
activemq/activemq-dotnet/Apache.NMS.MQTT/trunk/Resources/AboutResources.txt
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.MQTT/trunk/Resources/AboutResources.txt?rev=1596992&view=auto
==
--- activemq/activemq-dotnet/Apache.NMS.MQTT/trunk/Resources/AboutResources.txt 
(added)
+++ activemq/activemq-dotnet/Apache.NMS.MQTT/trunk/Resources/AboutResources.txt 
Thu May 22 23:51:20 2014
@@ -0,0 +1,50 @@
+Images, layout descriptions, binary blobs and string dictionaries can be 
included 
+in your application as resource files.  Various Android APIs are designed to 
+operate on the resource IDs instead of dealing with images, strings or binary 
blobs 
+directly.
+
+For example, a sample Android app that contains a user interface layout 
(main.xml),
+an internationalization string table (strings.xml) and some icons 
(drawable-XXX/icon.png) 
+would keep its resources in the "Resources" directory of the application:
+
+Resources/
+drawable-hdpi/
+icon.png
+
+drawable-ldpi/
+icon.png
+
+drawable-mdpi/
+icon.png
+
+layout/
+main.xml
+
+values/
+strings.xml
+
+In order to get the build system to recognize Android resources, set the build 
action to
+"AndroidResource".  The native Android APIs do not operate directly with 
filenames, but 
+instead operate on resource IDs.  When you compile an Android application that 
uses resources, 
+the build system will package the resources for distribution and generate a 
class called
+"Resource" that contains the tokens for each one of the resources included. 
For example, 
+for the above Resources layo

svn commit: r1596990 - in /activemq/activemq-dotnet/Apache.NMS/trunk: NOTICE.txt Resources/ Resources/AboutResources.txt Resources/Resource.Designer.cs Resources/Values/ Resources/Values/Strings.xml v

2014-05-22 Thread jgomes
Author: jgomes
Date: Thu May 22 23:47:22 2014
New Revision: 1596990

URL: http://svn.apache.org/r1596990
Log:
Add VisualStudio 2013 solution and Xamarin Android project.
Fixes [AMQNET-477]. (See https://issues.apache.org/jira/browse/AMQNET-477)

Added:
activemq/activemq-dotnet/Apache.NMS/trunk/Resources/   (with props)
activemq/activemq-dotnet/Apache.NMS/trunk/Resources/AboutResources.txt
activemq/activemq-dotnet/Apache.NMS/trunk/Resources/Resource.Designer.cs
activemq/activemq-dotnet/Apache.NMS/trunk/Resources/Values/   (with props)
activemq/activemq-dotnet/Apache.NMS/trunk/Resources/Values/Strings.xml
activemq/activemq-dotnet/Apache.NMS/trunk/vs2013-nms-android.csproj
activemq/activemq-dotnet/Apache.NMS/trunk/vs2013-nms.sln
Modified:
activemq/activemq-dotnet/Apache.NMS/trunk/NOTICE.txt

Modified: activemq/activemq-dotnet/Apache.NMS/trunk/NOTICE.txt
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/NOTICE.txt?rev=1596990&r1=1596989&r2=1596990&view=diff
==
--- activemq/activemq-dotnet/Apache.NMS/trunk/NOTICE.txt (original)
+++ activemq/activemq-dotnet/Apache.NMS/trunk/NOTICE.txt Thu May 22 23:47:22 
2014
@@ -5,7 +5,7 @@
 =
 
 Apache ActiveMQ
-Copyright 2005-2006 The Apache Software Foundation
+Copyright 2005-2014 The Apache Software Foundation
 
 This product includes software developed by
 The Apache Software Foundation (http://www.apache.org/).

Propchange: activemq/activemq-dotnet/Apache.NMS/trunk/Resources/
--
bugtraq:label = Issue#:

Propchange: activemq/activemq-dotnet/Apache.NMS/trunk/Resources/
--
--- bugtraq:message (added)
+++ bugtraq:message Thu May 22 23:47:22 2014
@@ -0,0 +1 @@
+Fixes [AMQNET-%BUGID%]. (See 
https://issues.apache.org/jira/browse/AMQNET-%BUGID%)

Propchange: activemq/activemq-dotnet/Apache.NMS/trunk/Resources/
--
bugtraq:url = https://issues.apache.org/jira/browse/AMQNET-%BUGID%

Added: activemq/activemq-dotnet/Apache.NMS/trunk/Resources/AboutResources.txt
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/Resources/AboutResources.txt?rev=1596990&view=auto
==
--- activemq/activemq-dotnet/Apache.NMS/trunk/Resources/AboutResources.txt 
(added)
+++ activemq/activemq-dotnet/Apache.NMS/trunk/Resources/AboutResources.txt Thu 
May 22 23:47:22 2014
@@ -0,0 +1,50 @@
+Images, layout descriptions, binary blobs and string dictionaries can be 
included 
+in your application as resource files.  Various Android APIs are designed to 
+operate on the resource IDs instead of dealing with images, strings or binary 
blobs 
+directly.
+
+For example, a sample Android app that contains a user interface layout 
(main.xml),
+an internationalization string table (strings.xml) and some icons 
(drawable-XXX/icon.png) 
+would keep its resources in the "Resources" directory of the application:
+
+Resources/
+drawable-hdpi/
+icon.png
+
+drawable-ldpi/
+icon.png
+
+drawable-mdpi/
+icon.png
+
+layout/
+main.xml
+
+values/
+strings.xml
+
+In order to get the build system to recognize Android resources, set the build 
action to
+"AndroidResource".  The native Android APIs do not operate directly with 
filenames, but 
+instead operate on resource IDs.  When you compile an Android application that 
uses resources, 
+the build system will package the resources for distribution and generate a 
class called
+"Resource" that contains the tokens for each one of the resources included. 
For example, 
+for the above Resources layout, this is what the Resource class would expose:
+
+public class Resource {
+public class drawable {
+public const int icon = 0x123;
+}
+
+public class layout {
+public const int main = 0x456;
+}
+
+public class strings {
+public const int first_string = 0xabc;
+public const int second_string = 0xbcd;
+}
+}
+
+You would then use R.drawable.icon to reference the drawable/icon.png file, or 
Resource.layout.main 
+to reference the layout/main.xml file, or Resource.strings.first_string to 
reference the first 
+string in the dictionary file values/strings.xml.
\ No newline at end of file

Added: activemq/activemq-dotnet/Apache.NMS/trunk/Resources/Resource.Designer.cs
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/Resources/Resource.Designer.cs?rev=1596990&view=auto
==
--- activemq/activemq-dotnet/Apache.NMS/trunk/Resources/Resource.Designer.cs 

buildbot success in ASF Buildbot on activemq-site-production

2014-05-22 Thread buildbot
The Buildbot has detected a restored build on builder activemq-site-production 
while building ASF Buildbot.
Full details are available at:
 http://ci.apache.org/builders/activemq-site-production/builds/747

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-cms-slave

Build Reason: The Nightly scheduler named 'activemq-site-production' triggered 
this build
Build Source Stamp: [branch activemq/activemq-website] HEAD
Blamelist: 

Build succeeded!

sincerely,
 -The Buildbot





buildbot failure in ASF Buildbot on activemq-site-production

2014-05-22 Thread buildbot
The Buildbot has detected a new failure on builder activemq-site-production 
while building ASF Buildbot.
Full details are available at:
 http://ci.apache.org/builders/activemq-site-production/builds/746

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-cms-slave

Build Reason: The Nightly scheduler named 'activemq-site-production' triggered 
this build
Build Source Stamp: [branch activemq/activemq-website] HEAD
Blamelist: 

BUILD FAILED: failed compile

sincerely,
 -The Buildbot





buildbot success in ASF Buildbot on activemq-site-production

2014-05-22 Thread buildbot
The Buildbot has detected a restored build on builder activemq-site-production 
while building ASF Buildbot.
Full details are available at:
 http://ci.apache.org/builders/activemq-site-production/builds/733

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-cms-slave

Build Reason: The Nightly scheduler named 'activemq-site-production' triggered 
this build
Build Source Stamp: [branch activemq/activemq-website] HEAD
Blamelist: 

Build succeeded!

sincerely,
 -The Buildbot





buildbot failure in ASF Buildbot on activemq-site-production

2014-05-22 Thread buildbot
The Buildbot has detected a new failure on builder activemq-site-production 
while building ASF Buildbot.
Full details are available at:
 http://ci.apache.org/builders/activemq-site-production/builds/732

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-cms-slave

Build Reason: The Nightly scheduler named 'activemq-site-production' triggered 
this build
Build Source Stamp: [branch activemq/activemq-website] HEAD
Blamelist: 

BUILD FAILED: failed compile

sincerely,
 -The Buildbot