Details

    • Type: Bug Bug
    • Status: Open
    • Priority: Major Major
    • Resolution: Unresolved
    • Affects Version/s: 2.0-Alpha3
    • Fix Version/s: None
    • Component/s: None
    • Labels:
      None
    • Environment:
      ICEpush, EPS

      Description


      Some of the icechat samples that make use of group join operations remotely do not function when EPS is configured.

        Activity

        Hide
        Ted Goddard added a comment -

        Evaluating a fix to direct group join operations to the application rather than EPS:

        ===================================================================
        — core/src/main/javascript/application.js (revision 21234)
        +++ core/src/main/javascript/application.js (working copy)
        @@ -158,7 +158,7 @@
        },

        addGroupMember: function(group, id) {

        • postAsynchronously(apiChannel, calculateURI('add-group-member.icepush'), function(q) {
          + postAsynchronously(apiChannel, 'add-group-member.icepush', function(q) { addNameValue(q, 'group', group); addNameValue(q, 'id', id); }, FormPost, $witch(function(condition) { @@ -167,7 +167,7 @@ },

          removeGroupMember: function(group, id) {
          - postAsynchronously(apiChannel, calculateURI('remove-group-member.icepush'), function(q) {
          + postAsynchronously(apiChannel, 'remove-group-member.icepush', function(q) { addNameValue(q, 'group', group); addNameValue(q, 'id', id); }

          , FormPost, $witch(function(condition) {

        Show
        Ted Goddard added a comment - Evaluating a fix to direct group join operations to the application rather than EPS: =================================================================== — core/src/main/javascript/application.js (revision 21234) +++ core/src/main/javascript/application.js (working copy) @@ -158,7 +158,7 @@ }, addGroupMember: function(group, id) { postAsynchronously(apiChannel, calculateURI('add-group-member.icepush'), function(q) { + postAsynchronously(apiChannel, 'add-group-member.icepush', function(q) { addNameValue(q, 'group', group); addNameValue(q, 'id', id); }, FormPost, $witch(function(condition) { @@ -167,7 +167,7 @@ }, removeGroupMember: function(group, id) { - postAsynchronously(apiChannel, calculateURI('remove-group-member.icepush'), function(q) { + postAsynchronously(apiChannel, 'remove-group-member.icepush', function(q) { addNameValue(q, 'group', group); addNameValue(q, 'id', id); } , FormPost, $witch(function(condition) {

          People

          • Assignee:
            Unassigned
            Reporter:
            Ted Goddard
          • Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

            • Created:
              Updated: