You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2021/12/15 00:25:13 UTC

[activemq-artemis] branch main updated (d56d299 -> b65c845)

This is an automated email from the ASF dual-hosted git repository.

clebertsuconic pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git.


    from d56d299  ARTEMIS-3574 multiple bindings for embedded webserver
     new 5e17db7  ARTEMIS-3568 fixed delete-header of page send-message-to-queue
     new 6ca05e5  ARTEMIS-3568 fixed format-message of page send-message-to-queue
     new 97378a6  ARTEMIS-3568 fixed "in" vs "ion"
     new 0722b3c  ARTEMIS-3568 fixed "it's" vs "its"
     new 6ea4146  ARTEMIS-3568 smaller dropdownbox and button on same row
     new b65c845  ARTEMIS-3568 consistent capitals

The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../main/webapp/plugin/js/components/addressSendMessage.js | 10 ++++++----
 .../src/main/webapp/plugin/js/components/sendMessage.js    | 14 ++++++++------
 2 files changed, 14 insertions(+), 10 deletions(-)

[activemq-artemis] 02/06: ARTEMIS-3568 fixed format-message of page send-message-to-queue

Posted by cl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

clebertsuconic pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git

commit 6ca05e5da1f3a15784b19194e9fae5847f289524
Author: Erwin Dondorp <er...@cgi.com>
AuthorDate: Fri Nov 12 00:42:01 2021 +0100

    ARTEMIS-3568 fixed format-message of page send-message-to-queue
---
 .../artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js
index 71392f8..5c27882 100644
--- a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js
+++ b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js
@@ -94,7 +94,7 @@ var Artemis;
                         <option value="javascript">JSON</option>
                         <option value="xml">XML</option>
                     </select>
-                    <button class="btn btn-default" ng-click="$ctrl.formatMessage()"
+                    <button class="btn btn-default" ng-click="$ctrl.message.formatMessage()"
                        title="Automatically pretty prints the message so its easier to read">Format
                     </button>
                 </div>

[activemq-artemis] 04/06: ARTEMIS-3568 fixed "it's" vs "its"

Posted by cl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

clebertsuconic pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git

commit 0722b3c57065e2d838fe2eaa0ff1fb6d8458d474
Author: Erwin Dondorp <er...@cgi.com>
AuthorDate: Fri Nov 12 00:45:27 2021 +0100

    ARTEMIS-3568 fixed "it's" vs "its"
---
 .../src/main/webapp/plugin/js/components/addressSendMessage.js          | 2 +-
 .../artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/addressSendMessage.js b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/addressSendMessage.js
index fbbb0af..6fc17c6 100644
--- a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/addressSendMessage.js
+++ b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/addressSendMessage.js
@@ -95,7 +95,7 @@ var Artemis;
                         <option value="xml">XML</option>
                     </select>
                     <button class="btn btn-default" ng-click="$ctrl.message.formatMessage()"
-                       title="Automatically pretty prints the message so its easier to read">Format
+                       title="Automatically pretty prints the message so it's easier to read">Format
                     </button>
                 </div>
             </form>
diff --git a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js
index ee272f7..6705e21 100644
--- a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js
+++ b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js
@@ -95,7 +95,7 @@ var Artemis;
                         <option value="xml">XML</option>
                     </select>
                     <button class="btn btn-default" ng-click="$ctrl.message.formatMessage()"
-                       title="Automatically pretty prints the message so its easier to read">Format
+                       title="Automatically pretty prints the message so it's easier to read">Format
                     </button>
                 </div>
             </form>

[activemq-artemis] 05/06: ARTEMIS-3568 smaller dropdownbox and button on same row

Posted by cl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

clebertsuconic pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git

commit 6ea414622889763badd0f6091e480bb3836a3aa9
Author: Erwin Dondorp <er...@cgi.com>
AuthorDate: Fri Nov 12 00:47:03 2021 +0100

    ARTEMIS-3568 smaller dropdownbox and button on same row
---
 .../src/main/webapp/plugin/js/components/addressSendMessage.js      | 6 ++++--
 .../src/main/webapp/plugin/js/components/sendMessage.js             | 6 ++++--
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/addressSendMessage.js b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/addressSendMessage.js
index 6fc17c6..0538ae3 100644
--- a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/addressSendMessage.js
+++ b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/addressSendMessage.js
@@ -90,12 +90,14 @@ var Artemis;
                     <div hawtio-editor="$ctrl.message.message" mode="codeMirrorOptions.mode.name"></div>
                 </div>
                 <div class="form-group">
-                    <select class="form-control artemis-send-message-format" ng-model="codeMirrorOptions.mode.name">
+                    <select class="form-control artemis-send-message-format" ng-model="codeMirrorOptions.mode.name"
+                        style="display:inline; width:auto">
                         <option value="javascript">JSON</option>
                         <option value="xml">XML</option>
                     </select>
                     <button class="btn btn-default" ng-click="$ctrl.message.formatMessage()"
-                       title="Automatically pretty prints the message so it's easier to read">Format
+                       title="Automatically pretty prints the message so it's easier to read"
+                       style="vertical-align: initial">Format
                     </button>
                 </div>
             </form>
diff --git a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js
index 6705e21..e4b9cac 100644
--- a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js
+++ b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js
@@ -90,12 +90,14 @@ var Artemis;
                     <div hawtio-editor="$ctrl.message.message" mode="codeMirrorOptions.mode.name"></div>
                 </div>
                 <div class="form-group">
-                    <select class="form-control artemis-send-message-format" ng-model="codeMirrorOptions.mode.name">
+                    <select class="form-control artemis-send-message-format" ng-model="codeMirrorOptions.mode.name"
+                        style="display:inline; width:auto">
                         <option value="javascript">JSON</option>
                         <option value="xml">XML</option>
                     </select>
                     <button class="btn btn-default" ng-click="$ctrl.message.formatMessage()"
-                       title="Automatically pretty prints the message so it's easier to read">Format
+                       title="Automatically pretty prints the message so it's easier to read"
+                       style="vertical-align: initial">Format
                     </button>
                 </div>
             </form>

[activemq-artemis] 03/06: ARTEMIS-3568 fixed "in" vs "ion"

Posted by cl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

clebertsuconic pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git

commit 97378a6b150213671a6e73afabdad143b6db2970
Author: Erwin Dondorp <er...@cgi.com>
AuthorDate: Fri Nov 12 00:43:05 2021 +0100

    ARTEMIS-3568 fixed "in" vs "ion"
---
 .../src/main/webapp/plugin/js/components/addressSendMessage.js          | 2 +-
 .../artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/addressSendMessage.js b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/addressSendMessage.js
index 972035b..fbbb0af 100644
--- a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/addressSendMessage.js
+++ b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/addressSendMessage.js
@@ -108,7 +108,7 @@ var Artemis;
                 <p>
                     This page allows you to send a message to the chosen address. The message will be of type <code>text</code>
                     message and it will be possible to add headers to the message. The sending of the message will be authenticated
-                    using the username and password set ion <code>preferences</code>, if this is not set then these will
+                    using the username and password set in <code>preferences</code>, if this is not set then these will
                     be null.
                 </p>
             </div>
diff --git a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js
index 5c27882..ee272f7 100644
--- a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js
+++ b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js
@@ -108,7 +108,7 @@ var Artemis;
                 <p>
                     This page allows you to send a message to the chosen queue. The message will be of type <code>text</code>
                     message and it will be possible to add headers to the message. The sending of the message will be authenticated
-                    using the username and password set ion <code>preferences</code>, if this is not set then these will
+                    using the username and password set in <code>preferences</code>, if this is not set then these will
                     be null.
                 </p>
             </div>

[activemq-artemis] 06/06: ARTEMIS-3568 consistent capitals

Posted by cl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

clebertsuconic pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git

commit b65c84584ac9001d295d52417bb0c51e0eb992dc
Author: Erwin Dondorp <er...@cgi.com>
AuthorDate: Fri Nov 12 00:47:50 2021 +0100

    ARTEMIS-3568 consistent capitals
---
 .../src/main/webapp/plugin/js/components/addressSendMessage.js          | 2 +-
 .../artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/addressSendMessage.js b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/addressSendMessage.js
index 0538ae3..974cb56 100644
--- a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/addressSendMessage.js
+++ b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/addressSendMessage.js
@@ -103,7 +103,7 @@ var Artemis;
             </form>
 
             <p>
-                <button type="button" class="btn btn-primary artemis-send-message-button" ng-click="$ctrl.message.sendMessage($ctrl.message.durable, $ctrl.message.messageID)">Send message</button>
+                <button type="button" class="btn btn-primary artemis-send-message-button" ng-click="$ctrl.message.sendMessage($ctrl.message.durable, $ctrl.message.messageID)">Send Message</button>
             </p>
             <script type="text/ng-template" id="send-message-instructions.html">
             <div>
diff --git a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js
index e4b9cac..304ad6b 100644
--- a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js
+++ b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js
@@ -103,7 +103,7 @@ var Artemis;
             </form>
 
             <p>
-                <button type="button" class="btn btn-primary artemis-send-message-button" ng-click="$ctrl.message.sendMessage($ctrl.message.durable, $ctrl.message.messageID)">Send message</button>
+                <button type="button" class="btn btn-primary artemis-send-message-button" ng-click="$ctrl.message.sendMessage($ctrl.message.durable, $ctrl.message.messageID)">Send Message</button>
             </p>
             <script type="text/ng-template" id="send-message-instructions.html">
             <div>

[activemq-artemis] 01/06: ARTEMIS-3568 fixed delete-header of page send-message-to-queue

Posted by cl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

clebertsuconic pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git

commit 5e17db7d8f5f51be28801f29372a6b2e531c87c2
Author: Erwin Dondorp <er...@cgi.com>
AuthorDate: Fri Nov 12 00:36:28 2021 +0100

    ARTEMIS-3568 fixed delete-header of page send-message-to-queue
---
 .../artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js
index a412dfb..71392f8 100644
--- a/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js
+++ b/artemis-hawtio/artemis-plugin/src/main/webapp/plugin/js/components/sendMessage.js
@@ -70,7 +70,7 @@ var Artemis;
                             <td><input type="text" class="form-control" ng-model="header.name" placeholder="Name" autocomplete="off" id="name"></td>
                             <td><input type="text" class="form-control" ng-model="header.value" placeholder="Value" autocomplete="off" id="value"></td>
                             <td><div class="input-group-prepend">
-                                <button type="button" class="btn btn-default" title="Delete" ng-click="$ctrl.removeHeader(header)">
+                                <button type="button" class="btn btn-default" title="Delete" ng-click="$ctrl.message.removeHeader(header)">
                                     <span class="pficon pficon-delete"></span>
                                 </button>
                             </div></td>