Re: [Dev] Alert UI Improvements in Device Management/EMM/IOT products

2016-10-13 Thread Kamidu Punchihewa
Hi Thusith,

Thank you and +1 for the idea.
@RasikaP, @SajithAR shall we proceed with this soon as the EMM 2.2.0 is out.
WDYT?

Thanks and Best Regards,

Kamidu Sachith Punchihewa
*Software Engineer*
WSO2, Inc.
lean . enterprise . middleware
Mobile : +94 (0) 770566749 <%2B94%20%280%29%20773%20451194>


Disclaimer: This communication may contain privileged or other confidential
information and is intended exclusively for the addressee/s. If you are not
the intended recipient/s, or believe that you may have received this
communication in error, please reply to the sender indicating that fact and
delete the copy you received and in addition, you should not print, copy,
retransmit, disseminate, or otherwise use the information contained in this
communication. Internet communications cannot be guaranteed to be timely,
secure, error or virus-free. The sender does not accept liability for any
errors or omissions.

On Fri, Oct 14, 2016 at 10:13 AM, Rasika Perera  wrote:

> This is a great, Hopefully we can propagate this up to UUF level?
>> AFAIK we don't have a Modal Dialog Unit (or a Fragment) written for UUF.
>
> +1, I think this is a part of the reusable base component rather on the
> framework of the UUF. Let's add this into the default base component.​
>
> On Fri, Oct 14, 2016 at 12:29 AM, Thusitha Kalugamage 
> wrote:
>
>> Hi Kamindu,
>>
>> This is a great, Hopefully we can propagate this up to UUF level?
>> AFAIK we don't have a Modal Dialog Unit (or a Fragment) written for UUF.
>>
>> @SajithaAR, @RasikaP can we make good use of this?
>>
>> Regards,
>>
>> On Wed, Oct 12, 2016 at 6:46 PM, Kamidu Punchihewa 
>> wrote:
>>
>>> Hi All,
>>>
>>> When developing or improving the user interfaces of EMM , IOT server or
>>> device management please utilize the newly introduced "cdmf.unit.ui.modal"
>>> for all the alerts and modal related implementations.
>>>
>>> Please find a simple example of how to utilize the above unit for modal
>>> creation and manipulations.
>>> You can utilize the "modalDialog" functions once you import the unit to
>>> your page by adding the below line on the .hbs file.
>>>
>>> After which utilize the described functions below in the client side
>>> scripts:
>>>
>>> *modalDialog.header("Sample Modal Dialog");*

>>> You can use the above method to define the modal header or tile the
>>> input which can be simple text or a HTML content.
>>>
>>> *modalDialog.content("Sample Modal Content");*

>>> You can use the above method to define the modal content or tile the
>>> input which can be simple text or a HTML content.
>>>
>>>  *modalDialog.footer("All Right Received");*

>>> You can use the above method to define the modal footer or tile the
>>> input which can be simple text or a HTML content. If there are a set of
>>> buttons you need to include, you can use this method and provide the
>>> buttons as HTML content. Else you can use the method given below.
>>>
>>> *modalDialog.footerButtons(object);*

>>> You need to provide the input as given below.
>>> This will provide you a footer with buttons which contains the basic
>>> styling from wso2 theme.
>>>
>>> In order to show the modal dialog there are 3 options to select from
>>> which are as below:
>>>
>>>
>>>- *modalDialog.show()*
>>>   - This will result in a normal modal content without any icons in
>>>   the title
>>>- *modalDialog.showAsError()*
>>>   - This will result in a modal dialog with an error icon in the
>>>   title
>>>- *modalDialog.showAsWarning()*
>>>   - This will result in a modal dialog with a warning icon in the
>>>   title
>>>
>>>
>>> Thanks and Best Regards,
>>> Kamidu Sachith Punchihewa
>>> *Software Engineer*
>>> WSO2, Inc.
>>> lean . enterprise . middleware
>>> Mobile : +94 (0) 770566749 <%2B94%20%280%29%20773%20451194>
>>>
>>>
>>> Disclaimer: This communication may contain privileged or other
>>> confidential information and is intended exclusively for the addressee/s.
>>> If you are not the intended recipient/s, or believe that you may have
>>> received this communication in error, please reply to the sender indicating
>>> that fact and delete the copy you received and in addition, you should not
>>> print, copy, retransmit, disseminate, or otherwise use the information
>>> contained in this communication. Internet communications cannot be
>>> guaranteed to be timely, secure, error or virus-free. The sender does not
>>> accept liability for any errors or omissions.
>>>
>>
>>
>>
>> --
>> Thusitha Kalugamage
>> *Software Engineer*
>> Mobile : +94 (0) 774 074370
>> Tel   : +94 (0) 112 145 345
>> thusi...@wso2.com
>>
>
>
>
> --
> With Regards,
>
> *Rasika Perera*
> Software Engineer
> LinkedIn: http://lk.linkedin.com/in/rasika90
>
> 
>
> WSO2 Inc. www.wso2.com
> lean.enterprise.middleware
>
___
Dev mailing list
Dev@wso2.org

Re: [Dev] Alert UI Improvements in Device Management/EMM/IOT products

2016-10-13 Thread Rasika Perera
>
> This is a great, Hopefully we can propagate this up to UUF level?
> AFAIK we don't have a Modal Dialog Unit (or a Fragment) written for UUF.

+1, I think this is a part of the reusable base component rather on the
framework of the UUF. Let's add this into the default base component.​

On Fri, Oct 14, 2016 at 12:29 AM, Thusitha Kalugamage 
wrote:

> Hi Kamindu,
>
> This is a great, Hopefully we can propagate this up to UUF level?
> AFAIK we don't have a Modal Dialog Unit (or a Fragment) written for UUF.
>
> @SajithaAR, @RasikaP can we make good use of this?
>
> Regards,
>
> On Wed, Oct 12, 2016 at 6:46 PM, Kamidu Punchihewa 
> wrote:
>
>> Hi All,
>>
>> When developing or improving the user interfaces of EMM , IOT server or
>> device management please utilize the newly introduced "cdmf.unit.ui.modal"
>> for all the alerts and modal related implementations.
>>
>> Please find a simple example of how to utilize the above unit for modal
>> creation and manipulations.
>> You can utilize the "modalDialog" functions once you import the unit to
>> your page by adding the below line on the .hbs file.
>>
>> After which utilize the described functions below in the client side
>> scripts:
>>
>> *modalDialog.header("Sample Modal Dialog");*
>>>
>> You can use the above method to define the modal header or tile the input
>> which can be simple text or a HTML content.
>>
>> *modalDialog.content("Sample Modal Content");*
>>>
>> You can use the above method to define the modal content or tile the
>> input which can be simple text or a HTML content.
>>
>>  *modalDialog.footer("All Right Received");*
>>>
>> You can use the above method to define the modal footer or tile the input
>> which can be simple text or a HTML content. If there are a set of buttons
>> you need to include, you can use this method and provide the buttons as
>> HTML content. Else you can use the method given below.
>>
>> *modalDialog.footerButtons(object);*
>>>
>> You need to provide the input as given below.
>> This will provide you a footer with buttons which contains the basic
>> styling from wso2 theme.
>>
>> In order to show the modal dialog there are 3 options to select from
>> which are as below:
>>
>>
>>- *modalDialog.show()*
>>   - This will result in a normal modal content without any icons in
>>   the title
>>- *modalDialog.showAsError()*
>>   - This will result in a modal dialog with an error icon in the
>>   title
>>- *modalDialog.showAsWarning()*
>>   - This will result in a modal dialog with a warning icon in the
>>   title
>>
>>
>> Thanks and Best Regards,
>> Kamidu Sachith Punchihewa
>> *Software Engineer*
>> WSO2, Inc.
>> lean . enterprise . middleware
>> Mobile : +94 (0) 770566749 <%2B94%20%280%29%20773%20451194>
>>
>>
>> Disclaimer: This communication may contain privileged or other
>> confidential information and is intended exclusively for the addressee/s.
>> If you are not the intended recipient/s, or believe that you may have
>> received this communication in error, please reply to the sender indicating
>> that fact and delete the copy you received and in addition, you should not
>> print, copy, retransmit, disseminate, or otherwise use the information
>> contained in this communication. Internet communications cannot be
>> guaranteed to be timely, secure, error or virus-free. The sender does not
>> accept liability for any errors or omissions.
>>
>
>
>
> --
> Thusitha Kalugamage
> *Software Engineer*
> Mobile : +94 (0) 774 074370
> Tel   : +94 (0) 112 145 345
> thusi...@wso2.com
>



-- 
With Regards,

*Rasika Perera*
Software Engineer
LinkedIn: http://lk.linkedin.com/in/rasika90



WSO2 Inc. www.wso2.com
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Extend the WSO2 AS database model

2016-10-13 Thread wenxzhen
Dear gurus,


Please help to advice my following questions, appreciated for your kindly help.
Q1: If I have to extend the WSO2 AS database model, what's the best way to do? 
any reference? For example, I have to group the Users.
Q2: In the UM_USER table, there is a column UM_REQUIRE_CHANGE/UM_CHANGED_TIME, 
how to get these 2 columns? or how to check whether the password of a specific 
user need to be changed?


Kind Regards,
Wenxing 


-- Original --
From:  "wenxzhen";;
Date:  Oct 12, 2016
To:  "dev"; 

Subject:  [Dev] Extend the WSO2 AS database model



Dear all,


If I have to extend the WSO2 AS database model, what's the best way to do? any 
reference? For example, I have to group the Users.


Thanks, Wenxing___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Improving dockerfiles in docker- and docker-common repositories

2016-10-13 Thread Imesh Gunaratne
Great work Lasantha! Will try out and provide feedback.

Thanks

On Thursday, October 13, 2016, Lasantha Samarakoon 
wrote:

> [Correction]
>
> 3. Modified the product profile argument (-l) to build all the profiles in
> a specific deployment pattern if the profile is not specified.
>
> ex. /dockerfiles/build.sh *-p 2*  (This will build the
> manager and worker profiles)
>
>
> *Lasantha Samarakoon* | Software Engineer
> WSO2, Inc.
> #20, Palm Grove, Colombo 03, Sri Lanka
> Mobile: +94 (71) 214 1576
> Email:  lasant...@wso2.com
> 
> Web:www.wso2.com
>
> lean . enterprise . middleware
>
> On Thu, Oct 13, 2016 at 2:14 PM, Lasantha Samarakoon  > wrote:
>
>> Hi all,
>>
>> Since we have already restructured the docker repositories, now we are
>> working on testing and improving the respective repositories (ex.
>> docker-esb, docker-common). With regard to those improvements we have done
>> the following modifications.
>>
>> 1. Removed the product version argument from the docker shell scripts
>> 

Re: [Dev] Alert UI Improvements in Device Management/EMM/IOT products

2016-10-13 Thread Thusitha Kalugamage
Hi Kamindu,

This is a great, Hopefully we can propagate this up to UUF level?
AFAIK we don't have a Modal Dialog Unit (or a Fragment) written for UUF.

@SajithaAR, @RasikaP can we make good use of this?

Regards,

On Wed, Oct 12, 2016 at 6:46 PM, Kamidu Punchihewa 
wrote:

> Hi All,
>
> When developing or improving the user interfaces of EMM , IOT server or
> device management please utilize the newly introduced "cdmf.unit.ui.modal"
> for all the alerts and modal related implementations.
>
> Please find a simple example of how to utilize the above unit for modal
> creation and manipulations.
> You can utilize the "modalDialog" functions once you import the unit to
> your page by adding the below line on the .hbs file.
>
> After which utilize the described functions below in the client side
> scripts:
>
> *modalDialog.header("Sample Modal Dialog");*
>>
> You can use the above method to define the modal header or tile the input
> which can be simple text or a HTML content.
>
> *modalDialog.content("Sample Modal Content");*
>>
> You can use the above method to define the modal content or tile the input
> which can be simple text or a HTML content.
>
>  *modalDialog.footer("All Right Received");*
>>
> You can use the above method to define the modal footer or tile the input
> which can be simple text or a HTML content. If there are a set of buttons
> you need to include, you can use this method and provide the buttons as
> HTML content. Else you can use the method given below.
>
> *modalDialog.footerButtons(object);*
>>
> You need to provide the input as given below.
> This will provide you a footer with buttons which contains the basic
> styling from wso2 theme.
>
> In order to show the modal dialog there are 3 options to select from which
> are as below:
>
>
>- *modalDialog.show()*
>   - This will result in a normal modal content without any icons in
>   the title
>- *modalDialog.showAsError()*
>   - This will result in a modal dialog with an error icon in the title
>- *modalDialog.showAsWarning()*
>   - This will result in a modal dialog with a warning icon in the
>   title
>
>
> Thanks and Best Regards,
> Kamidu Sachith Punchihewa
> *Software Engineer*
> WSO2, Inc.
> lean . enterprise . middleware
> Mobile : +94 (0) 770566749 <%2B94%20%280%29%20773%20451194>
>
>
> Disclaimer: This communication may contain privileged or other
> confidential information and is intended exclusively for the addressee/s.
> If you are not the intended recipient/s, or believe that you may have
> received this communication in error, please reply to the sender indicating
> that fact and delete the copy you received and in addition, you should not
> print, copy, retransmit, disseminate, or otherwise use the information
> contained in this communication. Internet communications cannot be
> guaranteed to be timely, secure, error or virus-free. The sender does not
> accept liability for any errors or omissions.
>



-- 
Thusitha Kalugamage
*Software Engineer*
Mobile : +94 (0) 774 074370
Tel   : +94 (0) 112 145 345
thusi...@wso2.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Permission tree is not updated accroding to the DB

2016-10-13 Thread Sasikala Kottegoda
Copying Ramith and Dev

On Wed, Oct 12, 2016 at 4:55 PM, Sasikala Kottegoda 
wrote:

> Hi all,
>
> We get an issue in MB where permission is denied for a particular
> subscription where permission is granted for another subscription which
> requests permission for the same resource and action. This was reproducible
> when subscriptions were added concurrently.
>
> The underlying cause for the issue was that the permission tree was
> incorrectly updated.
>
> I have created a public jira at [1] for the issue with all the findings.
> It would be great if we can get this fixed since it is an L1 for the MB
> 3.2.0 release.
>
> [1] https://wso2.org/jira/browse/IDENTITY-5228
>
> Thank you,
> Sasikala
> --
> Sasikala Kottegoda
> *Software Engineer*
> WSO2 Inc., http://wso2.com/
> lean. enterprise. middleware
> Mobile: +94 774835928
>
> [image: https://wso2.com/signature] 
>



-- 
Sasikala Kottegoda
*Software Engineer*
WSO2 Inc., http://wso2.com/
lean. enterprise. middleware
Mobile: +94 774835928

[image: https://wso2.com/signature] 
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Releasing carbon-store 4.4.x-kernal.

2016-10-13 Thread Megala Uthayakumar
Thanks Maheshika.

On Thu, Oct 13, 2016 at 2:22 PM, Maheshika Goonetilleke 
wrote:

> Hi SameeraM
>
> Released.
>
> On Thu, Oct 13, 2016 at 2:19 PM, Sameera Medagammaddegedara <
> samee...@wso2.com> wrote:
>
>> EDIT:Added missed contacts
>>
>> On Thu, Oct 13, 2016 at 2:18 PM, Sameera Medagammaddegedara <
>> samee...@wso2.com> wrote:
>>
>>> + Adding Maheshika and Jayanga
>>>
>>> Hi,
>>>
>>> Please find the staged repo :
>>>
>>> https://maven.wso2.org/nexus/content/repositories/orgwso2car
>>> bonstore-1014
>>>
>>> We will need to release it after testing.
>>>
>>> Thanks,
>>> Sameera
>>>
>>> On Thu, Oct 13, 2016 at 11:42 AM, Megala Uthayakumar 
>>> wrote:
>>>
 Hi Kamidu,

 Noted.

 Thanks.

 On Thu, Oct 13, 2016 at 11:36 AM, Kamidu Punchihewa 
 wrote:

> Hi Sameera,
>
> Can you Please release carbon store's app manager branch [1].
> @Megala can you verify the fixes are merage to the branch and test the
> component when released.
>
> [1] https://github.com/wso2/carbon-store/tree/app-manager-4.4.x-kernel
>
> Thanks and Best Regards,
> Kamidu Sachith Punchihewa
> *Software Engineer*
> WSO2, Inc.
> lean . enterprise . middleware
> Mobile : +94 (0) 770566749 <%2B94%20%280%29%20773%20451194>
>
>
> Disclaimer: This communication may contain privileged or other
> confidential information and is intended exclusively for the addressee/s.
> If you are not the intended recipient/s, or believe that you may have
> received this communication in error, please reply to the sender 
> indicating
> that fact and delete the copy you received and in addition, you should not
> print, copy, retransmit, disseminate, or otherwise use the information
> contained in this communication. Internet communications cannot be
> guaranteed to be timely, secure, error or virus-free. The sender does not
> accept liability for any errors or omissions.
>



 --
 Megala Uthayakumar

 Software Engineer
 Mobile : 0779967122

>>>
>>>
>>>
>>> --
>>> Sameera Medagammaddegedara
>>> Software Engineer
>>>
>>> Contact:
>>> Email: samee...@wso2.com
>>> Mobile: + 94 077 255 3005
>>>
>>
>>
>>
>> --
>> Sameera Medagammaddegedara
>> Software Engineer
>>
>> Contact:
>> Email: samee...@wso2.com
>> Mobile: + 94 077 255 3005
>>
>
>
>
> --
>
> Thanks & Best Regards,
>
> Maheshika Goonetilleke
> Senior Engineering Process Coordinator
>
> *WSO2 Inc*
> *email   : mahesh...@wso2.com *
> *mobile : +94 773 596707 <%2B94%20773%20596707>*
> *www: :http://wso2.com *lean . enterprise . middleware
>
>
>
>
>


-- 
Megala Uthayakumar

Software Engineer
Mobile : 0779967122
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Releasing carbon-store 4.4.x-kernal.

2016-10-13 Thread Maheshika Goonetilleke
Hi SameeraM

Released.

On Thu, Oct 13, 2016 at 2:19 PM, Sameera Medagammaddegedara <
samee...@wso2.com> wrote:

> EDIT:Added missed contacts
>
> On Thu, Oct 13, 2016 at 2:18 PM, Sameera Medagammaddegedara <
> samee...@wso2.com> wrote:
>
>> + Adding Maheshika and Jayanga
>>
>> Hi,
>>
>> Please find the staged repo :
>>
>> https://maven.wso2.org/nexus/content/repositories/orgwso2carbonstore-1014
>>
>> We will need to release it after testing.
>>
>> Thanks,
>> Sameera
>>
>> On Thu, Oct 13, 2016 at 11:42 AM, Megala Uthayakumar 
>> wrote:
>>
>>> Hi Kamidu,
>>>
>>> Noted.
>>>
>>> Thanks.
>>>
>>> On Thu, Oct 13, 2016 at 11:36 AM, Kamidu Punchihewa 
>>> wrote:
>>>
 Hi Sameera,

 Can you Please release carbon store's app manager branch [1].
 @Megala can you verify the fixes are merage to the branch and test the
 component when released.

 [1] https://github.com/wso2/carbon-store/tree/app-manager-4.4.x-kernel

 Thanks and Best Regards,
 Kamidu Sachith Punchihewa
 *Software Engineer*
 WSO2, Inc.
 lean . enterprise . middleware
 Mobile : +94 (0) 770566749 <%2B94%20%280%29%20773%20451194>


 Disclaimer: This communication may contain privileged or other
 confidential information and is intended exclusively for the addressee/s.
 If you are not the intended recipient/s, or believe that you may have
 received this communication in error, please reply to the sender indicating
 that fact and delete the copy you received and in addition, you should not
 print, copy, retransmit, disseminate, or otherwise use the information
 contained in this communication. Internet communications cannot be
 guaranteed to be timely, secure, error or virus-free. The sender does not
 accept liability for any errors or omissions.

>>>
>>>
>>>
>>> --
>>> Megala Uthayakumar
>>>
>>> Software Engineer
>>> Mobile : 0779967122
>>>
>>
>>
>>
>> --
>> Sameera Medagammaddegedara
>> Software Engineer
>>
>> Contact:
>> Email: samee...@wso2.com
>> Mobile: + 94 077 255 3005
>>
>
>
>
> --
> Sameera Medagammaddegedara
> Software Engineer
>
> Contact:
> Email: samee...@wso2.com
> Mobile: + 94 077 255 3005
>



-- 

Thanks & Best Regards,

Maheshika Goonetilleke
Senior Engineering Process Coordinator

*WSO2 Inc*
*email   : mahesh...@wso2.com *
*mobile : +94 773 596707*
*www: :http://wso2.com *lean . enterprise . middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Releasing carbon-store 4.4.x-kernal.

2016-10-13 Thread Sameera Medagammaddegedara
EDIT:Added missed contacts

On Thu, Oct 13, 2016 at 2:18 PM, Sameera Medagammaddegedara <
samee...@wso2.com> wrote:

> + Adding Maheshika and Jayanga
>
> Hi,
>
> Please find the staged repo :
>
> https://maven.wso2.org/nexus/content/repositories/orgwso2carbonstore-1014
>
> We will need to release it after testing.
>
> Thanks,
> Sameera
>
> On Thu, Oct 13, 2016 at 11:42 AM, Megala Uthayakumar 
> wrote:
>
>> Hi Kamidu,
>>
>> Noted.
>>
>> Thanks.
>>
>> On Thu, Oct 13, 2016 at 11:36 AM, Kamidu Punchihewa 
>> wrote:
>>
>>> Hi Sameera,
>>>
>>> Can you Please release carbon store's app manager branch [1].
>>> @Megala can you verify the fixes are merage to the branch and test the
>>> component when released.
>>>
>>> [1] https://github.com/wso2/carbon-store/tree/app-manager-4.4.x-kernel
>>>
>>> Thanks and Best Regards,
>>> Kamidu Sachith Punchihewa
>>> *Software Engineer*
>>> WSO2, Inc.
>>> lean . enterprise . middleware
>>> Mobile : +94 (0) 770566749 <%2B94%20%280%29%20773%20451194>
>>>
>>>
>>> Disclaimer: This communication may contain privileged or other
>>> confidential information and is intended exclusively for the addressee/s.
>>> If you are not the intended recipient/s, or believe that you may have
>>> received this communication in error, please reply to the sender indicating
>>> that fact and delete the copy you received and in addition, you should not
>>> print, copy, retransmit, disseminate, or otherwise use the information
>>> contained in this communication. Internet communications cannot be
>>> guaranteed to be timely, secure, error or virus-free. The sender does not
>>> accept liability for any errors or omissions.
>>>
>>
>>
>>
>> --
>> Megala Uthayakumar
>>
>> Software Engineer
>> Mobile : 0779967122
>>
>
>
>
> --
> Sameera Medagammaddegedara
> Software Engineer
>
> Contact:
> Email: samee...@wso2.com
> Mobile: + 94 077 255 3005
>



-- 
Sameera Medagammaddegedara
Software Engineer

Contact:
Email: samee...@wso2.com
Mobile: + 94 077 255 3005
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Releasing carbon-store 4.4.x-kernal.

2016-10-13 Thread Sameera Medagammaddegedara
+ Adding Maheshika and Jayanga

Hi,

Please find the staged repo :

https://maven.wso2.org/nexus/content/repositories/orgwso2carbonstore-1014

We will need to release it after testing.

Thanks,
Sameera

On Thu, Oct 13, 2016 at 11:42 AM, Megala Uthayakumar 
wrote:

> Hi Kamidu,
>
> Noted.
>
> Thanks.
>
> On Thu, Oct 13, 2016 at 11:36 AM, Kamidu Punchihewa 
> wrote:
>
>> Hi Sameera,
>>
>> Can you Please release carbon store's app manager branch [1].
>> @Megala can you verify the fixes are merage to the branch and test the
>> component when released.
>>
>> [1] https://github.com/wso2/carbon-store/tree/app-manager-4.4.x-kernel
>>
>> Thanks and Best Regards,
>> Kamidu Sachith Punchihewa
>> *Software Engineer*
>> WSO2, Inc.
>> lean . enterprise . middleware
>> Mobile : +94 (0) 770566749 <%2B94%20%280%29%20773%20451194>
>>
>>
>> Disclaimer: This communication may contain privileged or other
>> confidential information and is intended exclusively for the addressee/s.
>> If you are not the intended recipient/s, or believe that you may have
>> received this communication in error, please reply to the sender indicating
>> that fact and delete the copy you received and in addition, you should not
>> print, copy, retransmit, disseminate, or otherwise use the information
>> contained in this communication. Internet communications cannot be
>> guaranteed to be timely, secure, error or virus-free. The sender does not
>> accept liability for any errors or omissions.
>>
>
>
>
> --
> Megala Uthayakumar
>
> Software Engineer
> Mobile : 0779967122
>



-- 
Sameera Medagammaddegedara
Software Engineer

Contact:
Email: samee...@wso2.com
Mobile: + 94 077 255 3005
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] Improving dockerfiles in docker- and docker-common repositories

2016-10-13 Thread Lasantha Samarakoon
Hi all,

Since we have already restructured the docker repositories, now we are
working on testing and improving the respective repositories (ex.
docker-esb, docker-common). With regard to those improvements we have done
the following modifications.

1. Removed the product version argument from the docker shell scripts

Re: [Dev] Releasing carbon-store 4.4.x-kernal.

2016-10-13 Thread Megala Uthayakumar
Hi Kamidu,

Noted.

Thanks.

On Thu, Oct 13, 2016 at 11:36 AM, Kamidu Punchihewa 
wrote:

> Hi Sameera,
>
> Can you Please release carbon store's app manager branch [1].
> @Megala can you verify the fixes are merage to the branch and test the
> component when released.
>
> [1] https://github.com/wso2/carbon-store/tree/app-manager-4.4.x-kernel
>
> Thanks and Best Regards,
> Kamidu Sachith Punchihewa
> *Software Engineer*
> WSO2, Inc.
> lean . enterprise . middleware
> Mobile : +94 (0) 770566749 <%2B94%20%280%29%20773%20451194>
>
>
> Disclaimer: This communication may contain privileged or other
> confidential information and is intended exclusively for the addressee/s.
> If you are not the intended recipient/s, or believe that you may have
> received this communication in error, please reply to the sender indicating
> that fact and delete the copy you received and in addition, you should not
> print, copy, retransmit, disseminate, or otherwise use the information
> contained in this communication. Internet communications cannot be
> guaranteed to be timely, secure, error or virus-free. The sender does not
> accept liability for any errors or omissions.
>



-- 
Megala Uthayakumar

Software Engineer
Mobile : 0779967122
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] Releasing carbon-store 4.4.x-kernal.

2016-10-13 Thread Kamidu Punchihewa
Hi Sameera,

Can you Please release carbon store's app manager branch [1].
@Megala can you verify the fixes are merage to the branch and test the
component when released.

[1] https://github.com/wso2/carbon-store/tree/app-manager-4.4.x-kernel

Thanks and Best Regards,
Kamidu Sachith Punchihewa
*Software Engineer*
WSO2, Inc.
lean . enterprise . middleware
Mobile : +94 (0) 770566749 <%2B94%20%280%29%20773%20451194>


Disclaimer: This communication may contain privileged or other confidential
information and is intended exclusively for the addressee/s. If you are not
the intended recipient/s, or believe that you may have received this
communication in error, please reply to the sender indicating that fact and
delete the copy you received and in addition, you should not print, copy,
retransmit, disseminate, or otherwise use the information contained in this
communication. Internet communications cannot be guaranteed to be timely,
secure, error or virus-free. The sender does not accept liability for any
errors or omissions.
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev