Re: [Dev] Registering a partial in handlebars

2017-12-06 Thread Yasima Dewmini
Hi Nipuni,

Can you try as following without using Jquery? It worked for me.

Handlebars.registerPartial("generateDoc",
document.getElementById("generateDoc").innerHTML);

Refer [1] for more information.

[1]
https://stackoverflow.com/questions/25430864/how-to-use-handlebars-registerpartial-using-javascript

Regards,
Yasima.

On Wed, Dec 6, 2017 at 9:30 AM, Nipuni Salgado  wrote:

> Hi all,
>
> Currently, I'm working with the WSO2 TCC team on the project 'Automate
> Reference Documentation for Configuration Files'.
>
> The implementation of the project is done by using the JavaScript
> implementation of handlebars - handlebars.js [1].
>
> In my implementation the json object which need to be passed to the
> handlebars partials is stored in a json file. What I need to do is read the
> json object from that file and pass that object as the context to the
> handlebars partials.
>
> I tried doing it as shown in the following code snippet,
>
> $.getJSON(path, function(json) {
> var source = $("#main").html();
> var template = Handlebars.compile(source);
> var context = json;
> Handlebars.registerPartial('generateDoc', $("#generateDoc").html());
> Handlebars.registerPartial('generateYamlDoc', 
> $("#generateYamlDoc").html());
> var output = template(context);
> $("#content").html(output);
> });
>
>
> But when I debug it gives an error, "Error: Attempting to register a
> partial called "generateDoc" as undefined".
>
> Therefore, I need to know how to register a partial using handlebars.js
> and how to pass a json object as the context to the registered partial.
>
> Appreciate your help on this matter.
>
> [1] - http://handlebarsjs.com/
>
> Thank you.
>
>
> *Nipuni Salgado*
>
> *Trainee Software Engineer*
>
> *WSO2*
>
> Email: *nipu...@wso2.com *
> Mobile: +94779973350 <+94%2077%20997%203350>
> Web: *http://wso2.com *
>
> 
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [DEV] Clustering APIM 2.1.0

2017-07-24 Thread Yasima Dewmini
Hi Javier,

According to my understanding you need to cluster two API manager instances
as All-in-One instance. That means all API Manager components - Publisher,
Store, Gateway, Key Manager and Traffic Manager are deployed as one
instance.

There are two ways to achieve this.

1.

*Active/passive deployment*
In this scenario, one APIM instance will serve the API traffic while the
other instance stays in passive mode.

​
2.

*Active/Active deployment*
In this scenario, both APIM instances will be in active mode and will serve
the API traffic.


​

In both cases, same database is shared with both APIM instances, so that no
need of syncing tokens.
For more information please refer [1].

[1]
https://docs.wso2.com/display/AM210/Deploying+API+Manager+as+an+All-in-One+Instance

Regards,
Yasima

On Tue, Jul 25, 2017 at 2:01 AM, Vazquez-Hidalgo, Javier <
javier.vazquez-hida...@tdsecurities.com> wrote:

> Hi,
>
>
>
> Is it  possible to cluster two standalone APIM instances?
>
>
>
> LB | --  APIM Standalone 1   à DB
>
>   |--- APIM Standalone 2
>
>
>
> If so, how do I sync tokens between the two instances?
>
>
>
> Thanks,
>
> Javier
>
>
>
> If you wish to unsubscribe from receiving commercial electronic messages
> from TD Bank Group, please click here  or go
> to the following web address: www.td.com/tdoptout
> Si vous souhaitez vous désabonner des messages électroniques de nature
> commerciale envoyés par Groupe Banque TD veuillez cliquer ici
>  ou vous rendre à l'adresse www.td.com/tddesab
>
>
> NOTICE: Confidential message which may be privileged. Unauthorized
> use/disclosure prohibited. If received in error, please go to
> www.td.com/legal for instructions.
> AVIS : Message confidentiel dont le contenu peut être privilégié.
> Utilisation/divulgation interdites sans permission. Si reçu par erreur,
> prière d'aller au www.td.com/francais/avis_juridique pour des
> instructions.
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [AM] Adding a Custom Tier without the use of UI

2017-07-12 Thread Yasima Dewmini
Hi Saad,

Yes you are correct. For that you can first do a registry get to get the
current tier.xml. Next append the new tire configuration you want and do
the registry put.

Regards,
Yasima.

On Wed, Jul 12, 2017 at 1:08 PM, Saad Sahibjan <saad.sahib...@gmail.com>
wrote:

> Hi Yasima,
>
> Thanks for the reply.
>
> I went through [1] and it looks like a file replacement. Correct me if i'm
> wrong.
>
> I don't want to replace the whole file, I want to edit the existing file
> to add the custom tier without any affect to the already existing tiers. In
> case if someone else has updated the tiers.xml and if I do a full file
> replacement there will be a loss. So to avoid it even after adding a custom
> tier already existing tiers before adding the custom tier also should be
> available along with the new tier. And this has to be done without the use
> of UI.
>
> [1] https://github.com/malinthaprasan/registry-ws-client/
>
> Regards,
> Saad
>
> On Wed, Jul 12, 2017 at 12:31 PM, Yasima Dewmini <yas...@wso2.com> wrote:
>
>> Hi Saad,
>>
>> You can write a SOAP based client for updating a registry resource -
>> tiers.xml. Please find a sample in [1].
>>
>> If you like to do it using carbon console refer [2] which is same as in
>> APIM 1.9.0.
>>
>> [1] https://github.com/malinthaprasan/registry-ws-client/
>> [2] https://docs.wso2.com/display/AM190/Adding+new+Throttling+Tiers
>>
>> Regards
>> Yasima.
>>
>> On Wed, Jul 12, 2017 at 11:29 AM, Saad Sahibjan <saad.sahib...@gmail.com>
>> wrote:
>>
>>> Hi,
>>>
>>> I want to add a custom tier to API Manager 1.9.1 but not through UI. I
>>> checked the API Manager 2.1.0, adding a custom tier could be done through
>>> editing the 'default-tiers.xml' file in the 'wso2am-2.1.0\repository\resou
>>> rces\default-tiers'
>>>
>>> Is there any way to add a custom tier in to AM 1.9.1 pack without the
>>> use of UI?
>>>
>>> Regards,
>>> Saad
>>>
>>> --
>>> Regards
>>> Saad Sahibjan
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> http://wso2.com/signatureYasima Dewmini
>> Software Engineer, WSO2, Inc.
>> Email: yas...@wso2.com
>> Mobile: +94713117081 <+94%2071%20311%207081>
>>
>
>
>
> --
> Regards
> Saad Sahibjan
>



-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [AM] Adding a Custom Tier without the use of UI

2017-07-12 Thread Yasima Dewmini
Hi Saad,

You can write a SOAP based client for updating a registry resource -
tiers.xml. Please find a sample in [1].

If you like to do it using carbon console refer [2] which is same as in
APIM 1.9.0.

[1] https://github.com/malinthaprasan/registry-ws-client/
[2] https://docs.wso2.com/display/AM190/Adding+new+Throttling+Tiers

Regards
Yasima.

On Wed, Jul 12, 2017 at 11:29 AM, Saad Sahibjan 
wrote:

> Hi,
>
> I want to add a custom tier to API Manager 1.9.1 but not through UI. I
> checked the API Manager 2.1.0, adding a custom tier could be done through
> editing the 'default-tiers.xml' file in the 'wso2am-2.1.0\repository\
> resources\default-tiers'
>
> Is there any way to add a custom tier in to AM 1.9.1 pack without the use
> of UI?
>
> Regards,
> Saad
>
> --
> Regards
> Saad Sahibjan
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Fathima Dilhasha

2017-05-15 Thread Yasima Dewmini
Congratz Dilhasha! :)

On Mon, May 15, 2017 at 11:34 AM, Isuru Wimalasundera 
wrote:

> Hi All
>
> It's my pleasure to welcome Fathima Dilhasha as a WSO2 Committer.
>
> Dilhasha has been a valuable contributor to WSO2 cloud team.  In
> recognition of her contribution, dedication and commitment she has been
> voted as a WSO2 committer.
>
> Dilhasha, welcome aboard and keep up the good work !!!
>
> Thank You
>
> --
> *Isuru Wimalasundera*
> Associate Technical Lead;
> WSO2 Cloud; http://cloud.wso2.com
> WSO2, Inc.; http://wso2.com,
> mobile: +94 77 920 5641
> Blog : http://isurupw.blogspot.com/
> 
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Sabra Ossen

2017-03-15 Thread Yasima Dewmini
Congrats Sabra! :)

On Wed, Mar 15, 2017 at 5:16 PM, Prakhash Sivakumar 
wrote:

> Congrats Sabra :)
>
> On Wed, Mar 15, 2017 at 5:03 PM, Malintha Fernando 
> wrote:
>
>> Congrats Sabra! :)
>>
>> On Wed, Mar 15, 2017 at 4:58 PM, Manjula Rathnayake 
>> wrote:
>>
>>> Hi all,
>>>
>>> It's my pleasure to welcome Sabra Ossen as a WSO2 Committer.
>>>
>>> Sabra has been a valuable contributor to the Integration Cloud Team. In
>>> recognition of her contribution, dedication and commitment she has been
>>> voted as a WSO2 committer.
>>>
>>> Sabra, welcome aboard and keep up the good work!
>>>
>>> Thank you.
>>>
>>> --
>>> Manjula Rathnayaka
>>> Technical Lead
>>> WSO2, Inc.
>>> Mobile:+94 77 743 1987 <+94%2077%20743%201987>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Malintha Fernando*
>> Software Engineer | WSO2
>> Mobile : +94 718874922 <+94%2071%20887%204922>
>> Blog : http://blog.malintha.org
>>
>> [image: https://wso2.com/signature] 
>>
>>
>>
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Prakhash Sivakumar
> Software Engineer | WSO2 Inc
> Platform Security Team
> Mobile : +94771510080 <+94%2077%20151%200080>
> Blog : https://medium.com/@PrakhashS
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Chanaka Cooray

2017-03-02 Thread Yasima Dewmini
Congrats Chanaka! :)

On Fri, Feb 24, 2017 at 6:33 PM, Shan Mahanama  wrote:

> Congrats Chanaka :)
>
> On Fri, Feb 24, 2017 at 5:34 PM, Vidura Nanayakkara 
> wrote:
>
>> Congratulations Chanaka :)
>>
>> On Fri, Feb 24, 2017 at 5:30 PM, Menaka Jayawardena 
>> wrote:
>>
>>> Congratz Chanaka!
>>>
>>> On Fri, Feb 24, 2017 at 3:37 PM, Nisala Nanayakkara 
>>> wrote:
>>>
 Congratz Chanaka :D

 On Fri, Feb 24, 2017 at 3:36 PM, Niranjan Karunanandham <
 niran...@wso2.com> wrote:

> Hi All,
>
> It's my pleasure to welcome Chanaka Cooray as a WSO2 Committer.
>
> Chanaka has been a valuable contributor to the Platform Team. In
> recognition of his contribution, dedication and commitment he has been
> voted as a WSO2 committer.
>
> Chanaka, welcome aboard and keep up the good work!
>
> Regards,
> Nira
>
> --
>
>
> *Niranjan Karunanandham*
> Associate Technical Lead - WSO2 Inc.
> WSO2 Inc.: http://www.wso2.com
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 *Nisala Niroshana Nanayakkara,*
 Software Engineer
 Mobile:(+94)717600022
 WSO2 Inc., http://wso2.com/

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


>>>
>>>
>>> --
>>> *Menaka Jayawardena*
>>> *Software Engineer - WSO2 Inc*
>>> *Tel : 071 350 5470*
>>> *LinkedIn: https://lk.linkedin.com/in/menakajayawardena
>>> *
>>> *Blog: https://menakamadushanka.wordpress.com/
>>> *
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Best Regards,
>>
>> *Vidura Nanayakkara*
>> Software Engineer
>>
>> Email : vidu...@wso2.com
>> Mobile : +94 (0) 717 919277 <+94%2071%20791%209277>
>> Web : http://wso2.com
>> Blog : https://medium.com/@viduran 
>> Twitter : http://twitter.com/viduranana
>> LinkedIn : https://lk.linkedin.com/in/vidura-nanayakkara
>> 
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Shan Mahanama
>
> Software Engineer, WSO2 Inc. http://wso2.com
> 
> Email: sh...@wso2.com
> Mobile: +94 71 2000 498
>
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Nisala Nanayakkara

2017-03-02 Thread Yasima Dewmini
Congrats Nisala! :)

On Tue, Feb 28, 2017 at 2:41 PM, Shan Mahanama  wrote:

> Congratz nisala :)
>
> On Tue, Feb 28, 2017 at 2:23 PM, Irunika Weeraratne 
> wrote:
>
>> Congratulations Nisala
>>
>> *Irunika Weeraratne*
>> *Software Engineer | WSO2, Inc. *
>> *Email : irun...@wso2.com *
>> *LinkedIn : https://lk.linkedin.com/in/irunika
>> *
>> *Mobile : +94712403314 <+94%2071%20240%203314>*
>> *Lean . Enterprise . Middleware*
>>
>>
>> On Tue, Feb 28, 2017 at 2:20 PM, Heshitha Hettihewa 
>> wrote:
>>
>>> Congratz Nisala!!! :)
>>>
>>> On Tue, Feb 28, 2017 at 2:18 PM, Chanaka Cooray 
>>> wrote:
>>>
 Congratz Nisala :)

 On Tue, Feb 28, 2017 at 2:16 PM, Sinthuja Ragendran 
 wrote:

> Hi All,
>
> It's my pleasure to welcome Nisala Nanayakkara as a WSO2 Committer.
>
> Nisala has been a valuable contributor to the Dashboard Server Team
> and then Platform Team. In recognition of his contribution, dedication and
> commitment he has been voted as a WSO2 committer.
>
> Nisala, welcome aboard and keep up the good work!
>
> Thanks,
> Sinthuja.
>
> --
> *Sinthuja Rajendran*
> Technical Lead
> WSO2, Inc.:http://wso2.com
>
> Blog: http://sinthu-rajan.blogspot.com/
> Mobile: +94774273955 <+94%2077%20427%203955>
>
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 Chanaka Cooray
 Software Engineer, WSO2 Inc. http://wso2.com
 Email: chana...@wso2.com
 Mobile: +94713149860 <+94%2071%20314%209860>
 

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


>>>
>>>
>>> --
>>> Heshitha Hettihewa
>>> *Software Engineer*
>>> Mobile : +94716866386
>>> <%2B94%20%280%29%20773%20451194>
>>> heshit...@wso2.com
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Shan Mahanama
>
> Software Engineer, WSO2 Inc. http://wso2.com
> 
> Email: sh...@wso2.com
> Mobile: +94 71 2000 498
>
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Prabushi Samarakoon

2017-02-06 Thread Yasima Dewmini
Congratz Prabushi! :)

On Mon, Feb 6, 2017 at 2:13 PM, Jagath Sisirakumara Ariyarathne <
jaga...@wso2.com> wrote:

> Hi All,
>
> It's my pleasure to welcome Prabushi Samarakoon as a WSO2 Committer.
>
> Prabushi has been a valuable contributor to WSO2 Dashboard Server and
> Integration products. In recognition of her contribution, dedication and
> commitment she has being voted as a WSO2 committer.
>
> Prabushi, welcome aboard and keep up the good work.!
>
> Thanks.
> --
> Jagath Ariyarathne
> Technical Lead
> WSO2 Inc.  http://wso2.com/
> Email: jaga...@wso2.com
> Mob  : +94 77 386 7048
> 
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [APIM][C5] Using UUF common libraries

2016-12-21 Thread Yasima Dewmini
Hi Sajith,

Thank you for your explanation.

Regards,
Yasima.

On Wed, Dec 21, 2016 at 6:18 PM, SajithAR Ariyarathna <sajit...@wso2.com>
wrote:

> Even though jquery and font_wso2 are libraries, we have added them into
> the default theme as they are required for the theme to work properly. You
> can do the same. Add theme_wso2, jquery and font_wso2 to your theme.
>
> On Wed, Dec 21, 2016 at 12:04 PM, Yasima Dewmini <yas...@wso2.com> wrote:
>
>> Hi,
>>
>> I need to use theme_wso2, jquery and font_wso2 libraries which are in
>> default theme of carbon-uuf-common repository. We have separate themes for
>> APIM store and publisher so that we can't add this default theme in
>> config.yaml since it allows only one theme. (getting overwritten by second
>> theme)
>>
>> Any way to achieve this? Any thought regarding this is appreciated.
>>
>> Regards,
>> Yasima
>>
>> --
>> http://wso2.com/signatureYasima Dewmini
>> Software Engineer, WSO2, Inc.
>> Email: yas...@wso2.com
>> Mobile: +94713117081 <+94%2071%20311%207081>
>>
>
>
>
> --
> Sajith Janaprasad Ariyarathna
> Software Engineer; WSO2, Inc.;  http://wso2.com/
> <https://wso2.com/signature>
>



-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] [APIM][C5] Using UUF common libraries

2016-12-20 Thread Yasima Dewmini
Hi,

I need to use theme_wso2, jquery and font_wso2 libraries which are in
default theme of carbon-uuf-common repository. We have separate themes for
APIM store and publisher so that we can't add this default theme in
config.yaml since it allows only one theme. (getting overwritten by second
theme)

Any way to achieve this? Any thought regarding this is appreciated.

Regards,
Yasima

-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [APIM][UUF] - Client-side Rendering

2016-11-11 Thread Yasima Dewmini
Hi Joseph,

Thank you for your thought. Yes it would be great if we can re use those
templates. I will have a chat with other members and come to a conclusion.

Regards,
Yasima

On Fri, Nov 11, 2016 at 3:26 PM, Joseph Fonseka <jos...@wso2.com> wrote:

> IMO it would be good if we can re-use the server side templates/partials
> in the client side as well. This will allow us to render the initial page
> in server-side and render the subsequent states in the client side. ( ex:
> Reder a paginated list on the server-side and render subsequent page
> changes in the client side ).
>
> Regards
> Jo
>
> On Fri, Nov 11, 2016 at 2:42 PM, Yasima Dewmini <yas...@wso2.com> wrote:
>
>> Thank you Sajith for your input.
>>
>>
>> On Fri, Nov 11, 2016 at 2:26 PM, SajithAR Ariyarathna <sajit...@wso2.com>
>> wrote:
>>
>>> UUF does not do client-side rendering (as per 1.0.0-m7 release). What
>>> you can do is, put the Handlebars template (that you want in the
>>> client-side) inside the public directory e.g. 
>>> .../public/templates/my-template.hbs
>>> and in the client-side, get that template using AJAX and render it.
>>>
>>> On Fri, Nov 11, 2016 at 2:05 PM, Yasima Dewmini <yas...@wso2.com> wrote:
>>>
>>>> Hi,
>>>>
>>>> I'm working on UUF for API Manager. I need to do some client-side
>>>> rendering. The only solution I found is to have handlebar templates for the
>>>> items that need to be rendered in client-side. My question is, is there any
>>>> standard way to write those templates (Eg. inside public folder?)?
>>>>
>>>> OR
>>>>
>>>> Are there any other ways to achieve $subject?
>>>>
>>>> Any thoughts regarding this would be appreciated.
>>>>
>>>> Regards,
>>>> Yasima.
>>>>
>>>> --
>>>> http://wso2.com/signatureYasima Dewmini
>>>> Software Engineer, WSO2, Inc.
>>>> Email: yas...@wso2.com
>>>> Mobile: +94713117081
>>>>
>>>> ___
>>>> Dev mailing list
>>>> Dev@wso2.org
>>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>>
>>>>
>>>
>>>
>>> --
>>> Sajith Janaprasad Ariyarathna
>>> Software Engineer; WSO2, Inc.;  http://wso2.com/
>>> <https://wso2.com/signature>
>>>
>>
>>
>>
>> --
>> http://wso2.com/signatureYasima Dewmini
>> Software Engineer, WSO2, Inc.
>> Email: yas...@wso2.com
>> Mobile: +94713117081
>>
>
>
>
> --
>
> --
> *Joseph Fonseka*
> WSO2 Inc.; http://wso2.com
> lean.enterprise.middleware
>
> mobile: +94 772 512 430
> skype: jpfonseka
>
> * <http://lk.linkedin.com/in/rumeshbandara>*
>
>


-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [APIM][UUF] - Client-side Rendering

2016-11-11 Thread Yasima Dewmini
Thank you Sajith for your input.


On Fri, Nov 11, 2016 at 2:26 PM, SajithAR Ariyarathna <sajit...@wso2.com>
wrote:

> UUF does not do client-side rendering (as per 1.0.0-m7 release). What you
> can do is, put the Handlebars template (that you want in the client-side)
> inside the public directory e.g. .../public/templates/my-template.hbs and
> in the client-side, get that template using AJAX and render it.
>
> On Fri, Nov 11, 2016 at 2:05 PM, Yasima Dewmini <yas...@wso2.com> wrote:
>
>> Hi,
>>
>> I'm working on UUF for API Manager. I need to do some client-side
>> rendering. The only solution I found is to have handlebar templates for the
>> items that need to be rendered in client-side. My question is, is there any
>> standard way to write those templates (Eg. inside public folder?)?
>>
>> OR
>>
>> Are there any other ways to achieve $subject?
>>
>> Any thoughts regarding this would be appreciated.
>>
>> Regards,
>> Yasima.
>>
>> --
>> http://wso2.com/signatureYasima Dewmini
>> Software Engineer, WSO2, Inc.
>> Email: yas...@wso2.com
>> Mobile: +94713117081
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Sajith Janaprasad Ariyarathna
> Software Engineer; WSO2, Inc.;  http://wso2.com/
> <https://wso2.com/signature>
>



-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] [APIM][UUF] - Client-side Rendering

2016-11-11 Thread Yasima Dewmini
Hi,

I'm working on UUF for API Manager. I need to do some client-side
rendering. The only solution I found is to have handlebar templates for the
items that need to be rendered in client-side. My question is, is there any
standard way to write those templates (Eg. inside public folder?)?

OR

Are there any other ways to achieve $subject?

Any thoughts regarding this would be appreciated.

Regards,
Yasima.

-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Shan Mahanama

2016-11-07 Thread Yasima Dewmini
Congratz Shan!

On Mon, Nov 7, 2016 at 11:47 PM, Menaka Jayawardena  wrote:

> Congratz Shan!
>
> On Mon, Nov 7, 2016 at 1:21 PM, Fathima Dilhasha 
> wrote:
>
>> Congratz Shan :)
>>
>> On Mon, Nov 7, 2016 at 1:05 PM, Thanuja Uruththirakodeeswaran <
>> thanu...@wso2.com> wrote:
>>
>>> Congratz Shan!!!
>>>
>>> On Mon, Nov 7, 2016 at 12:14 PM, Niranjan Karunanandham <
>>> niran...@wso2.com> wrote:
>>>
 Hi all,

 It's my pleasure to announce Shan Mahanama as a WSO2 Committer. Shan
 has been a valuable contributor for Platform team. And in recognition of
 his contribution to WSO2, he has been voted as a WSO2 Committer.

 Shan, Congratulations and keep up the good work!

 Regards,
 Nira.

 --


 *Niranjan Karunanandham*
 Associate Technical Lead - WSO2 Inc.
 WSO2 Inc.: http://www.wso2.com


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


>>>
>>>
>>> --
>>> Thanuja Uruththirakodeeswaran
>>> Software Engineer
>>> WSO2 Inc.;http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> mobile: +94 774363167
>>>
>>> 
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Fathima Dilhasha
>> *Software Engineer*
>> Mobile : +94 (0) 771663314 <%2B94%20%280%29%20773655496>
>> <%2B94%20%280%29%20773%20451194>
>> dilha...@wso2.com
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Menaka Jayawardena*
> *Software Engineer - WSO2 Inc*
> *Tel : 071 350 5470/ 071 885 1183*
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Megala Uthayakumar

2016-11-02 Thread Yasima Dewmini
Congratz Megala :)

On Wed, Nov 2, 2016 at 11:06 AM, Biruntha Gnaneswaran 
wrote:

> Congratulations Megala.
>
> Biruntha
>
> Associate Software Engineer
> WSO2
> Email : birun...@wso2.com
> Linkedin : https://lk.linkedin.com/in/biruntha
> Mobile : +94773718986
>
> On Wed, Nov 2, 2016 at 10:50 AM, Prabushi Samarakoon 
> wrote:
>
>> Congratulations Megala :)
>>
>> On Wed, Nov 2, 2016 at 10:29 AM, Fathima Dilhasha 
>> wrote:
>>
>>> Congratz Megala :D
>>>
>>> On Tue, Nov 1, 2016 at 2:21 PM, Sinthuja Ragendran 
>>> wrote:
>>>
 Hi all,

 It's my pleasure to announce Megala Uthayakumar as a WSO2 Committer.
 Megala had been a valuable contributor for Dashboard Server product, and
 now for EMM/IoT Products. And in recognition of her contribution to WSO2,
 she has been voted as a WSO2 Committer.

 Megala, Keep up the good work and wish you all the best for your future
 endeavors!

 Thanks,
 Sinthuja.

 --
 *Sinthuja Rajendran*
 Technical Lead
 WSO2, Inc.:http://wso2.com

 Blog: http://sinthu-rajan.blogspot.com/
 Mobile: +94774273955



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


>>>
>>>
>>> --
>>> Fathima Dilhasha
>>> *Software Engineer*
>>> Mobile : +94 (0) 771663314 <%2B94%20%280%29%20773655496>
>>> <%2B94%20%280%29%20773%20451194>
>>> dilha...@wso2.com
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Prabushi Samarakoon*
>> Software Engineer
>> Mobile: +94715434580
>> Email: prabus...@wso2.com
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Farasath Ahamed

2016-10-24 Thread Yasima Dewmini
Congratz fara!

On Mon, Oct 24, 2016 at 3:35 PM, Fathima Dilhasha  wrote:

> Congratz Fara :)
>
> On Mon, Oct 24, 2016 at 3:26 PM, Chamila Wijayarathna <
> cdwijayarat...@gmail.com> wrote:
>
>> Congratz Fara, keep up the good work!
>>
>> On Mon, Oct 24, 2016 at 6:44 PM, Johann Nallathamby 
>> wrote:
>>
>>> Hi All,
>>>
>>> It's my pleasure to announce Farasath Ahamed as a WSO2 Committer.
>>> Farasath has been a valuable contributor for WSO2 Identity Server
>>> product, and in recognition of his contribution to WSO2, he has been voted
>>> as a WSO2 Committer.
>>>
>>> Farasath, congratulations and keep up the good work!
>>>
>>> Thanks & Regards.
>>>
>>> --
>>> Thanks & Regards,
>>>
>>> *Johann Dilantha Nallathamby*
>>> Technical Lead & Product Lead of WSO2 Identity Server
>>> Governance Technologies Team
>>> WSO2, Inc.
>>> lean.enterprise.middleware
>>>
>>> Mobile - *+9476950*
>>> Blog - *http://nallaa.wordpress.com *
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Chamila Dilshan Wijayarathna,
>> PhD Research Student
>> The University of New South Wales (UNSW Canberra)
>> Australian Centre of Cyber Security
>> Australian Defence Force Academy
>> PO Box 7916, Canberra BA ACT 2610
>> Australia
>> Mobile:(+61)416895795
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Fathima Dilhasha
> *Software Engineer*
> Mobile : +94 (0) 771663314 <%2B94%20%280%29%20773655496>
> <%2B94%20%280%29%20773%20451194>
> dilha...@wso2.com
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Sirojan Tharmakulasingam

2016-10-24 Thread Yasima Dewmini
Congratz Sirojan!

On Mon, Oct 24, 2016 at 11:56 AM, Gobinath Loganathan 
wrote:

> Congratulations Sirojan :-)
>
> On Mon, Oct 24, 2016 at 10:47 AM, Rasika Perera  wrote:
>
>> Congratulations Sirojan!
>>
>> On Mon, Oct 24, 2016 at 10:09 AM, Prakhash Sivakumar 
>> wrote:
>>
>>> Congratz Sirojan :)
>>>
>>> On Mon, Oct 24, 2016 at 9:50 AM, Pamod Sylvester  wrote:
>>>
 Hi Devs,

 It's my pleasure to welcome Sirojan Tharmakulasingam as a WSO2
 Committer.

 Sirojan is a member of Integration TG and has contributed towards
 development of several features for the MB product. In recognition of his
 contribution, dedication and commitment he has being voted as a WSO2
 committer.

 Sirojan, welcome onboard and keep up the good work

 Thanks,
 Pamod
 --
 *Pamod Sylvester *

 *WSO2 Inc.; http://wso2.com *
 cell: +94 77 7779495

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


>>>
>>>
>>> --
>>> Prakhash Sivakumar
>>> Software Engineer | WSO2 Inc
>>> Platform Security Team
>>> Mobile : +94771510080
>>> Blog : https://medium.com/@PrakhashS
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> 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
>>
>>
>
>
> --
> *Gobinath **Loganathan*
> Software Engineer, WSO2 Inc. http://wso2.com
>
> Email  : gobin...@wso2.com
> Mobile : (+94) 770 780 210
> Blog: javahelps.com 
>
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Madawa Soysa

2016-10-12 Thread Yasima Dewmini
Congratz Madawa!

On Tue, Oct 11, 2016 at 4:45 PM, Kasun Thennakoon  wrote:

> Congrats Madawa!
>
> On Tue, Oct 11, 2016 at 12:04 PM, Chandana Napagoda 
> wrote:
>
>> Hi Devs,
>>
>> It is my pleasure to welcome Madawa Soysa as a WSO2 Committer. Madawa has
>> made some great contributions to WSO2 Governance Registry and WSO2
>> Enterprise Store products during the last few months and in recognition of
>> his commitment and contributions, he has been voted as a Committer for WSO2.
>>
>> Madawa, welcome aboard and keep up the good work.
>>
>> Best Regards,
>> Chandana
>>
>> --
>> *Chandana Napagoda*
>> Associate Technical Lead
>> WSO2 Inc. - http://wso2.org
>>
>> *Email  :  chand...@wso2.com **Mobile : +94718169299
>> <%2B94718169299>*
>>
>> *Blog  :http://cnapagoda.blogspot.com 
>> | http://chandana.napagoda.com *
>>
>> *Linkedin : http://www.linkedin.com/in/chandananapagoda
>> *
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Kasun Thennakoon*
> Software Engineer
> WSO2, Inc.
> Mobile:+94 711661919
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Eranda Rajapaksha

2016-10-12 Thread Yasima Dewmini
Congratz Eranda!


On Tue, Oct 11, 2016 at 1:36 PM, Sabra Ossen  wrote:

> Congratz Eranda  :D
>
> On Tue, Oct 11, 2016 at 12:21 PM, Heshitha Hettihewa 
> wrote:
>
>> Congratz Eranda.!!! :)
>>
>> On Tue, Oct 11, 2016 at 12:18 PM, Rajith Vitharana 
>> wrote:
>>
>>> Congratz Eranda ... :) :)
>>>
>>> On 10 October 2016 at 18:14, Senduran Balasubramaniyam <
>>> sendu...@wso2.com> wrote:
>>>
 Congratulations Eranda !!

 On Mon, Oct 10, 2016 at 6:11 PM, Nadeeshaan Gunasinghe <
 nadeesh...@wso2.com> wrote:

> Congrats Eranda !!
>
>
> *Nadeeshaan Gunasinghe*
> Software Engineer, WSO2 Inc. http://wso2.com
> +94770596754 | nadeesh...@wso2.com | Skype: nadeeshaan.gunasinghe
> <#m_-4887315331105323330_m_2956937829065869800_m_-8946741877371509318_m_3716317020870817988_m_-4715409582830934341_>
> 
> 
>   
> Get a signature like this: Click here!
> 
>
> On Mon, Oct 10, 2016 at 6:09 PM, prabath 
> wrote:
>
>> Congratulation Eranda !!
>>
>> On Mon, Oct 10, 2016 at 6:07 PM, Sameera Gunarathne <
>> samee...@wso2.com> wrote:
>>
>>> Congrats Eranda !!!
>>>
>>> On Mon, Oct 10, 2016 at 6:03 PM, Prakhash Sivakumar <
>>> prakh...@wso2.com> wrote:
>>>
 Congratulation Eranda !

 On Mon, Oct 10, 2016 at 5:41 PM, Chanaka Fernando <
 chana...@wso2.com> wrote:

> Hi Devs,
>
> It is with great pleasure I welcome Eranda Rajapaksha as a WSO2
> committer. Eranda has been contributing to the WSO2 ESB 5.0 release 
> during
> past few months and showed great passion and commitment to work. In
> recognition of his work on ESB and Integration related development he 
> has
> been voted as a committer.
>
> Eranda, welcome aboard and keep up the good work.
>
> Cheers,
> Chanaka
>
> --
> Thank you and Best Regards,
> Chanaka Fernando
> Senior Technical Lead
> m: +94 773337238
> https://wso2.com 
>
>
>
>
>
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 Prakhash Sivakumar
 Software Engineer | WSO2 Inc
 Platform Security Team
 Mobile : +94771510080
 Blog : https://medium.com/@PrakhashS

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


>>>
>>>
>>> --
>>> Sameera Gunarathne
>>> Software Engineer, WSO2 Inc. http://wso2.com
>>> 
>>> Email: samee...@wso2.com
>>> Mobile: +94714155561
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Prabath Ariyarathna.
>> 
>> --
>> Talk is cheap. Show me the code.
>> (Torvalds, Linus (2000-08-25))
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 *Senduran *
 Senior Software Engineer,
 WSO2, Inc.;  http://wso2.com/ 
 Mobile: +94 77 952 6548

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


>>>
>>>
>>> --
>>> Rajith Vitharana
>>>
>>> Senior Software Engineer,
>>> WSO2 Inc. : wso2.com
>>> Mobile : +94715883223
>>> Blog : http://lankavitharana.blogspot.com/
>>> 
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Heshitha 

Re: [Dev] [PC] Showing tags of unpublished processes in store

2016-09-02 Thread Yasima Dewmini
Hi Madawa,

According to the offline chat you had with me, this was identified as bug.
Following is the reported issue.

https://wso2.org/jira/browse/STORE-1454

Regards,
Yasima.

On Wed, Aug 31, 2016 at 11:55 AM, Yasima Dewmini <yas...@wso2.com> wrote:

> Hi,
>
> Carbon Store version - 2.4.1
>
> I have attached the screenshots of store. When a user logged into store,
> it shows the tags of unpublished processes.
>
> Regards,
> Yasima.
>
> On Wed, Aug 31, 2016 at 11:34 AM, Sameera Medagammaddegedara <
> samee...@wso2.com> wrote:
>
>> EDIT:  Last point should be:
>>
>>
>>- Visited the Store and confirmed that the tag and asset *were
>>visible*
>>
>>
>> On Wed, Aug 31, 2016 at 11:32 AM, Sameera Medagammaddegedara <
>> samee...@wso2.com> wrote:
>>
>>> Hi Yasmia,
>>>
>>> Which version of the carbon-store component are you using?
>>>
>>> I attempted the following scenario and was not able to see the tag of
>>> unpublished assets.
>>>
>>>- Create gadget: Foo
>>>- Added "meow-cat-1"
>>>- Visited the Store and confirmed that the tag and asset were not
>>>    visible
>>>- Moved the asset to Published state
>>>- Visited the Store and confirmed that the tag and asset were not
>>>visible
>>>
>>>
>>> Thank You,
>>> Sameera
>>>
>>> On Tue, Aug 30, 2016 at 12:21 PM, Yasima Dewmini <yas...@wso2.com>
>>> wrote:
>>>
>>>> Hi,
>>>>
>>>> I need to avoid $subject and show only the tags of published processes.
>>>> (when a user logged into store)
>>>> How can I achieve this?
>>>> Any help regarding this is appreciated.
>>>>
>>>> Regards,
>>>> Yasima.
>>>>
>>>> --
>>>> http://wso2.com/signatureYasima Dewmini
>>>> Software Engineer, WSO2, Inc.
>>>> Email: yas...@wso2.com
>>>> Mobile: +94713117081
>>>>
>>>> ___
>>>> Dev mailing list
>>>> Dev@wso2.org
>>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>>
>>>>
>>>
>>>
>>> --
>>> 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
>>
>
>
>
> --
> http://wso2.com/signatureYasima Dewmini
> Software Engineer, WSO2, Inc.
> Email: yas...@wso2.com
> Mobile: +94713117081
>



-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [PC] Showing tags of unpublished processes in store

2016-08-31 Thread Yasima Dewmini
Hi,

Carbon Store version - 2.4.1

I have attached the screenshots of store. When a user logged into store, it
shows the tags of unpublished processes.

Regards,
Yasima.

On Wed, Aug 31, 2016 at 11:34 AM, Sameera Medagammaddegedara <
samee...@wso2.com> wrote:

> EDIT:  Last point should be:
>
>
>- Visited the Store and confirmed that the tag and asset *were visible*
>
>
> On Wed, Aug 31, 2016 at 11:32 AM, Sameera Medagammaddegedara <
> samee...@wso2.com> wrote:
>
>> Hi Yasmia,
>>
>> Which version of the carbon-store component are you using?
>>
>> I attempted the following scenario and was not able to see the tag of
>> unpublished assets.
>>
>>- Create gadget: Foo
>>- Added "meow-cat-1"
>>- Visited the Store and confirmed that the tag and asset were not
>>visible
>>- Moved the asset to Published state
>>- Visited the Store and confirmed that the tag and asset were not
>>visible
>>
>>
>> Thank You,
>> Sameera
>>
>> On Tue, Aug 30, 2016 at 12:21 PM, Yasima Dewmini <yas...@wso2.com> wrote:
>>
>>> Hi,
>>>
>>> I need to avoid $subject and show only the tags of published processes.
>>> (when a user logged into store)
>>> How can I achieve this?
>>> Any help regarding this is appreciated.
>>>
>>> Regards,
>>> Yasima.
>>>
>>> --
>>> http://wso2.com/signatureYasima Dewmini
>>> Software Engineer, WSO2, Inc.
>>> Email: yas...@wso2.com
>>> Mobile: +94713117081
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> 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
>



-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] [PC] Showing tags of unpublished processes in store

2016-08-30 Thread Yasima Dewmini
Hi,

I need to avoid $subject and show only the tags of published processes.
(when a user logged into store)
How can I achieve this?
Any help regarding this is appreciated.

Regards,
Yasima.

-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [PC] Published processes are not visible in the store before login

2016-08-11 Thread Yasima Dewmini
Hi Mushthaq,

Thanks for the quick reply. I checked it and that was the issue.

Thanks again.

Regards,
Yasima.

On Fri, Aug 12, 2016 at 10:27 AM, Mushthaq Rumy <musht...@wso2.com> wrote:

> Hi Yasima,
>
> In order to view a particular process in the store side before login, that
> particular process needs to have permission to Anonymous role. Please check
> if that particular process has the permission for Anonymous role.
>
> Thanks & Regards,
> Mushthaq
>
> On Fri, Aug 12, 2016 at 9:49 AM, Yasima Dewmini <yas...@wso2.com> wrote:
>
>> Hi,
>>
>> In PC, we have a new lifecycle suit to the process management. Once a
>> process is published using this lifecycle, that process is not visible in
>> the store before login. It is visible when a user logged into the store.
>> Is there any configuration to be set or am i missing anything?
>>
>> Appreciate any help regarding this issue.
>>
>> Regards,
>> Yasima.
>>
>> --
>> http://wso2.com/signatureYasima Dewmini
>> Software Engineer, WSO2, Inc.
>> Email: yas...@wso2.com
>> Mobile: +94713117081
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Mushthaq Rumy
> *Software Engineer*
> Mobile : +94 (0) 779 492140 <%2B94%20%280%29%20773%20451194>
> Email : musht...@wso2.com
> WSO2, Inc.; http://wso2.com/
> lean . enterprise . middleware.
>
> <http://wso2.com/signature>
>



-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] [PC] Published processes are not visible in the store before login

2016-08-11 Thread Yasima Dewmini
Hi,

In PC, we have a new lifecycle suit to the process management. Once a
process is published using this lifecycle, that process is not visible in
the store before login. It is visible when a user logged into the store.
Is there any configuration to be set or am i missing anything?

Appreciate any help regarding this issue.

Regards,
Yasima.

-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [PC]Unable to change states in lifecycle

2016-08-01 Thread Yasima Dewmini
Hi Thilini,


I got the idea.
Thank you.

Regards,
Yasima.

On Mon, Aug 1, 2016 at 11:26 AM, Thilini Cooray <thili...@wso2.com> wrote:

> Hi,
>
> On Mon, Aug 1, 2016 at 11:19 AM, Yasima Dewmini <yas...@wso2.com> wrote:
>
>> Hi Thilini,
>>
>> Only thing I'm doing is changing the permission of the user roles to deny
>> the write permission.
>> When trying to change state following error comes.
>>
>>
>
> As I mentioned above, the lifecycle executor which gets fired in your
> scenario tries to update a resource. Since the "user1" doesn't have the
> write access to the resource "/_system/governance/processes/process1/
> 1.0.0. <http://1.0.0.0/>", you are unable to update.
>
> Please check on the executor why this resource needs to be updated on the
> lifecycle change.
> As per now, user1 needs to have write access.
>
>
>
>> [2016-08-01 11:17:01,378] ERROR {rxt.asset} -  Failed to invoke action:
>> Submit for the asset of id: "02cbe9d0-5482-4d68-b507-c76b4ede6310".The
>> following exception was thrown: JavaException:
>> org.wso2.carbon.registry.core.secure.AuthorizationFailedException: Resource
>> update failed. User user1 is not authorized to update the resource
>> /_system/governance/processes/process1/1.0.0.
>> [2016-08-01 11:17:01,379] ERROR
>> {JAGGERY.extensions.assets.default.apis.asset:jag} -
>> org.wso2.carbon.registry.core.secure.AuthorizationFailedException: Resource
>> update failed. User user1 is not authorized to update the resource
>> /_system/governance/processes/process1/1.0.0.
>>
>> Regards,
>> Yasima.
>>
>
>
> Thanks.
>
>
>
>>
>>
>> On Mon, Aug 1, 2016 at 11:06 AM, Thilini Cooray <thili...@wso2.com>
>> wrote:
>>
>>> Hi,
>>>
>>> Unless the executor itself doesn't try to update any resources, the
>>> process owner does not require write access.
>>> Do you observe any server side errors mentioning user not authorized to
>>> access the resource etc.?
>>>
>>> Thanks.
>>>
>>> On Mon, Aug 1, 2016 at 10:57 AM, Yasima Dewmini <yas...@wso2.com> wrote:
>>>
>>>> Hi,
>>>>
>>>> I'm creating a new life cycle for PC. I want to remove write permission
>>>> of the process owner when the process is in In-Review state. So, I wrote an
>>>> executor to be executed at Development state to remove that permission.
>>>> When write permission is removed, the process owner is not allowed to
>>>> change the states of life cycle. But the process owner has life cycle
>>>> permission.
>>>>
>>>> Does any user need write permission to change life cycle states? Isn't
>>>> life cycle permission enough to change states?
>>>>
>>>> Any clarification on this issue is appreciated.
>>>>
>>>> Regards,
>>>> Yasima.
>>>>
>>>> --
>>>> http://wso2.com/signatureYasima Dewmini
>>>> Software Engineer, WSO2, Inc.
>>>> Email: yas...@wso2.com
>>>> Mobile: +94713117081
>>>>
>>>> ___
>>>> Dev mailing list
>>>> Dev@wso2.org
>>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>>
>>>>
>>>
>>>
>>> --
>>> Best Regards,
>>>
>>> *Thilini Cooray*
>>> Software Engineer
>>> Mobile : +94 (0) 774 570 112 <%2B94%20%280%29%20773%20451194>
>>> E-mail : thili...@wso2.com
>>>
>>> WSO2 Inc. www.wso2.com
>>> lean.enterprise.middleware
>>>
>>
>>
>>
>> --
>> http://wso2.com/signatureYasima Dewmini
>> Software Engineer, WSO2, Inc.
>> Email: yas...@wso2.com
>> Mobile: +94713117081
>>
>
>
>
> --
> Best Regards,
>
> *Thilini Cooray*
> Software Engineer
> Mobile : +94 (0) 774 570 112 <%2B94%20%280%29%20773%20451194>
> E-mail : thili...@wso2.com
>
> WSO2 Inc. www.wso2.com
> lean.enterprise.middleware
>



-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [PC]Unable to change states in lifecycle

2016-07-31 Thread Yasima Dewmini
Hi Thilini,

Only thing I'm doing is changing the permission of the user roles to deny
the write permission.
When trying to change state following error comes.

[2016-08-01 11:17:01,378] ERROR {rxt.asset} -  Failed to invoke action:
Submit for the asset of id: "02cbe9d0-5482-4d68-b507-c76b4ede6310".The
following exception was thrown: JavaException:
org.wso2.carbon.registry.core.secure.AuthorizationFailedException: Resource
update failed. User user1 is not authorized to update the resource
/_system/governance/processes/process1/1.0.0.
[2016-08-01 11:17:01,379] ERROR
{JAGGERY.extensions.assets.default.apis.asset:jag} -
org.wso2.carbon.registry.core.secure.AuthorizationFailedException: Resource
update failed. User user1 is not authorized to update the resource
/_system/governance/processes/process1/1.0.0.

Regards,
Yasima.


On Mon, Aug 1, 2016 at 11:06 AM, Thilini Cooray <thili...@wso2.com> wrote:

> Hi,
>
> Unless the executor itself doesn't try to update any resources, the
> process owner does not require write access.
> Do you observe any server side errors mentioning user not authorized to
> access the resource etc.?
>
> Thanks.
>
> On Mon, Aug 1, 2016 at 10:57 AM, Yasima Dewmini <yas...@wso2.com> wrote:
>
>> Hi,
>>
>> I'm creating a new life cycle for PC. I want to remove write permission
>> of the process owner when the process is in In-Review state. So, I wrote an
>> executor to be executed at Development state to remove that permission.
>> When write permission is removed, the process owner is not allowed to
>> change the states of life cycle. But the process owner has life cycle
>> permission.
>>
>> Does any user need write permission to change life cycle states? Isn't
>> life cycle permission enough to change states?
>>
>> Any clarification on this issue is appreciated.
>>
>> Regards,
>> Yasima.
>>
>> --
>> http://wso2.com/signatureYasima Dewmini
>> Software Engineer, WSO2, Inc.
>> Email: yas...@wso2.com
>> Mobile: +94713117081
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Best Regards,
>
> *Thilini Cooray*
> Software Engineer
> Mobile : +94 (0) 774 570 112 <%2B94%20%280%29%20773%20451194>
> E-mail : thili...@wso2.com
>
> WSO2 Inc. www.wso2.com
> lean.enterprise.middleware
>



-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] [PC]Unable to change states in lifecycle

2016-07-31 Thread Yasima Dewmini
Hi,

I'm creating a new life cycle for PC. I want to remove write permission of
the process owner when the process is in In-Review state. So, I wrote an
executor to be executed at Development state to remove that permission.
When write permission is removed, the process owner is not allowed to
change the states of life cycle. But the process owner has life cycle
permission.

Does any user need write permission to change life cycle states? Isn't life
cycle permission enough to change states?

Any clarification on this issue is appreciated.

Regards,
Yasima.

-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [PC] Setting permission for all the roles when state transitions take place in life cycles

2016-07-25 Thread Yasima Dewmini
Hi,

Thank you Madawa.

Regards,
Yasima.

On Tue, Jul 26, 2016 at 9:46 AM, Madawa Soysa <mada...@wso2.com> wrote:

> Hi,
>
> AFAIK in order to execute an action based on a lifecycle state change, you
> need to use a lifecycle executor. You can find the information about
> standard executors in [1]
> <https://docs.wso2.com/display/Governance520/Supported+Standard+Executors>.
> Also, you can implement a custom executor as well. The following article
> [2]
> <http://wso2.com/library/articles/2015/07/wso2-governance-registry-governance-framework-extension-points/>
> and blog post [3]
> <http://sencs.blogspot.com/2016/05/how-to-write-simple-g-reg-lifecycle.html>
> gives a good explanation about adding custom lifecycle executors.
>
>
> [1] -
> https://docs.wso2.com/display/Governance520/Supported+Standard+Executors
> [2] -
> http://wso2.com/library/articles/2015/07/wso2-governance-registry-governance-framework-extension-points/
> [3] -
> http://sencs.blogspot.com/2016/05/how-to-write-simple-g-reg-lifecycle.html
>
> On Fri, Jul 22, 2016 at 4:41 PM, Yasima Dewmini <yas...@wso2.com> wrote:
>
>> Hi,
>>
>> I need to set permission for all the roles including user defined roles,
>> when state transitions take place in life cycles. How can I achieve this?
>> And also admin can edit a process when that process is in retired state.
>> I need to avoid that scenario also.
>>
>> Any thought regarding this is appreciated.
>>
>> The life cycle is as follows.
>>
>> > class="org.wso2.jaggery.scxml.aspects.JaggeryTravellingPermissionLifeCycle">
>> 
>> 
>> http://www.w3.org/2005/07/scxml;
>>version="1.0"
>>initialstate="Development">
>> 
>> 
>> 
>> > class="org.wso2.jaggery.scxml.generic.GenericExecutor">
>> >
>> value="http://www.wso2.org/projects/registry/actions/get"/>
>> >
>> value="http://www.wso2.org/projects/registry/actions/add"/>
>> >
>> value="http://www.wso2.org/projects/registry/actions/delete"/>
>> > value="authorize"/>
>>
>> >
>> value="Internal/private_{asset_author}:+get,-add,+delete,-authorize"/>
>> >
>> value="Internal/everyone:+get,-add,-delete,-authorize"/>
>> >
>> value="Internal/publisher:+get,+add,+delete,+authorize"/>
>> >
>> value="system/wso2.anonymous.role:+get,-add,-delete,-authorize" />
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> > class="org.wso2.jaggery.scxml.generic.GenericExecutor">
>> >
>> value="http://www.wso2.org/projects/registry/actions/get"/>
>> >
>> value="http://www.wso2.org/projects/registry/actions/add"/>
>> >
>> value="http://www.wso2.org/projects/registry/actions/delete"/>
>> > value="authorize"/>
>>
>> >
>> value="Internal/private_{asset_author}:+get,-add,-delete,-authorize"/>
>> >
>> value="Internal/everyone:+get,-add,-delete,-authorize"/>
>> >
>> value="Internal/publisher:+get,+add,+delete,+authorize"/>
>> >

[Dev] [PC] Setting permission for all the roles when state transitions take place in life cycles

2016-07-22 Thread Yasima Dewmini
Hi,

I need to set permission for all the roles including user defined roles,
when state transitions take place in life cycles. How can I achieve this?
And also admin can edit a process when that process is in retired state. I
need to avoid that scenario also.

Any thought regarding this is appreciated.

The life cycle is as follows.




http://www.w3.org/2005/07/scxml;
   version="1.0"
   initialstate="Development">




http://www.wso2.org/projects/registry/actions/get"/>
http://www.wso2.org/projects/registry/actions/add"/>
http://www.wso2.org/projects/registry/actions/delete"/>















http://www.wso2.org/projects/registry/actions/get"/>
http://www.wso2.org/projects/registry/actions/add"/>
http://www.wso2.org/projects/registry/actions/delete"/>


















http://www.wso2.org/projects/registry/actions/get"/>
http://www.wso2.org/projects/registry/actions/add"/>
http://www.wso2.org/projects/registry/actions/delete"/>








http://www.wso2.org/projects/registry/actions/get"/>
http://www.wso2.org/projects/registry/actions/add"/>
http://www.wso2.org/projects/registry/actions/delete"/>























Regards,
Yasima.


-- 
http://wso2.com/signatureYasima Dewmini
Software Engineer, WSO2, Inc.
Email: yas...@wso2.com
Mobile: +94713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] [TestAutomation]Deny some role permissions in test cases

2016-05-16 Thread Yasima Dewmini
Hi all,

I'm writing integration tests for Process Center. We can add role
permissions in automation.xml as following.



/permission/admin/configure
/permission/admin/login



I need to deny some role permissions like read, write for a specific
process.
How can I do this? Any help on this is appreciated.

Thanks
Yasima.

-- 
Yasima Dewmini
Software Engineer, WSO2, Inc.
Mobile: 0713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [Process Center] Permission API in Registry

2016-04-21 Thread Yasima Dewmini
Hi Manuranga,

I need to get the permission levels of the assets types.

Regards,
Yasima.

On Thu, Apr 21, 2016 at 9:14 PM, Manuranga Perera <m...@wso2.com> wrote:

> Hi Yasima,
> Are you trying to retrieve permission of the dashboard or some other
> resource (profile pic, video)?
>
> On Wed, Apr 20, 2016 at 4:57 AM, Mushthaq Rumy <musht...@wso2.com> wrote:
>
>> Hi,
>>
>>
>> There is a class called PermissionUtil in org.wso2.carbon.registry.
>> resource.services.utils package in the Registry. You can use the
>> getPermissions method in the above class to get the permission level.
>>
>> Thanks & Regards,
>>
>> On Wed, Apr 20, 2016 at 1:44 PM, Yasima Dewmini <yas...@wso2.com> wrote:
>>
>>> Hi,
>>>
>>> I'm from PC team and I'm implementing process level permission support
>>> for PC. I need to get the permission level given resource, action and the
>>> user.
>>> Can I know the permission API used for this in Registry?
>>>
>>>
>>> Thanks and Regards,
>>> Yasima.
>>>
>>> --
>>> Yasima Dewmini
>>> Software Engineer, WSO2, Inc.
>>> Mobile: 0713117081
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Mushthaq Rumy
>> *Software Engineer*
>> Mobile : +94 (0) 779 492140 <%2B94%20%280%29%20773%20451194>
>> Email : musht...@wso2.com
>> WSO2, Inc.; http://wso2.com/
>> lean . enterprise . middleware.
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> With regards,
> *Manu*ranga Perera.
>
> phone : 071 7 70 20 50
> mail : m...@wso2.com
>



-- 
Yasima Dewmini
Software Engineer, WSO2, Inc.
Mobile: 0713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] [Process Center] Permission API in Registry

2016-04-20 Thread Yasima Dewmini
Hi,

I'm from PC team and I'm implementing process level permission support for
PC. I need to get the permission level given resource, action and the user.
Can I know the permission API used for this in Registry?


Thanks and Regards,
Yasima.

-- 
Yasima Dewmini
Software Engineer, WSO2, Inc.
Mobile: 0713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] [Gsoc2015] Proposal 5: ESB - AS2 Support

2015-03-19 Thread Yasima Dewmini
Hi!

I am Yasima Dewmini, an undergraduate of Department of  Computer Science
and Engineering, University of Moratuwa. Currently I am working as an
intern at WSO2.

I am interested  in proposal [5] in the Gsoc project proposal list and
looking forward to contribute to the project.

Thanks.
Yasima.


K.Y.Dewmini
Software Engineer Intern
mobile: 0713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [Gsoc2015] Proposal 5: ESB - AS2 Support

2015-03-19 Thread Yasima Dewmini
Hi Sandamal,

Thank you. I will contact you if I need any further clarifications.

Thanks.
Yasima.

On Thu, Mar 19, 2015 at 7:44 PM, Sandamal Weerasinghe sanda...@wso2.com
wrote:

 Hi Yasima,

 Please take a look at the inbound endpoints in carbon-mediation
 https://github.com/wso2/carbon-mediation/branches (e.g. JMS Inbound
 endpoint, HTTP inbound endpoint). The AS2 transport could be implemented
 similar to those, but we have not decided that yet. Please research on the
 AS2 protocol, look for free java libraries that could be used for
 implementing the AS2 transport.

 Thanks.

 Sandamal Weerasinghe | Software Engineer | WSO2 Lanka (Pvt) Ltd

 Mobile - +94-77-144-9640

 On Thu, Mar 19, 2015 at 1:05 AM, Yasima Dewmini yas...@wso2.com wrote:

 Hi!

 I am Yasima Dewmini, an undergraduate of Department of  Computer Science
 and Engineering, University of Moratuwa. Currently I am working as an
 intern at WSO2.

 I am interested  in proposal [5] in the Gsoc project proposal list and
 looking forward to contribute to the project.

 Thanks.
 Yasima.


 K.Y.Dewmini
 Software Engineer Intern
 mobile: 0713117081





-- 
K.Y.Dewmini
Software Engineer Intern
mobile: 0713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] Fwd: Delivery Status Notification (Failure)

2015-03-18 Thread Yasima Dewmini
 Hi!
I am Yasima Dewmini, an undergraduate of Department of Computer Science and
Engineering, University of Moratuwa. Currently I am an intern at WSO2.

I am interested in proposal [5] in the Gsoc project proposal list and
looking forward to contribute to the project.

Thanks.
Yasima.

--
K.Yasima Dewmini
Software Engineer Intern
mobile: 0713117081



-- 
K.Y.Dewmini
Software Engineer Intern
mobile: 0713117081
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev