[xwiki-devs] Our first Extension! =)
Hello XWiki Dev, How are you? In my company, we have created an XWiki extension that allows use the sigmajs framework (sigmajs.org) and we would like to share the extension with the community. Our idea is create a github project and make it available through extension manager to the users however we don’t have idea how to create the github and after that link that with the extension, how can we do that? Thank you, Danilo Grupo Energisa Danilo Oliveira Analista Suporte Aplicacao TI - DPTO CORP. DE INFRAESTR. TI e-mail: [email protected] | tel: (32) 3429-6342 | cel: (32) 8452-9478 Esta mensagem contém informação confidencial. Se você a recebeu por engano, não divulgue ou copie seu conteúdo. Por favor, avise ao remetente imediatamente e apague-a do computador. Privileged and confidential. If this message has been received by mistake, do not disclose or copy its contents. Please notify sender and delete immediately.
Hi, All is explained in the contrib wiki ! :) [1] First thing is to request a contrib project on github (see "Requesting a Project"), so basically you have to propose a name for this project. Then when someone from xwiki committers finds some time, you'll get your repository created and you can proceed to next steps ;) Note: it's a day "off" for many people today in France, so maybe you won't get an answer very fast - the list is not very active today as it seems. [1] - http://contrib.xwiki.org/xwiki/bin/view/Main/WebHome BR, Jeremie PS: sigmajs seems quite nice tool, do you integrate some xwiki-specific use-cases (like display graph of pages or things like that), or just the library ? 2014-06-09 15:11 GMT+02:00 Danilo Amaral de Oliveira < [email protected]>:
Hello XWiki Dev,
How are you? In my company, we have created an XWiki extension that allows use the sigmajs framework (sigmajs.org) and we would like to share the extension with the community. Our idea is create a github project and make it available through extension manager to the users however we don’t have idea how to create the github and after that link that with the extension, how can we do that?
Thank you, Danilo
Grupo Energisa Danilo Oliveira Analista Suporte Aplicacao TI - DPTO CORP. DE INFRAESTR. TI e-mail: [email protected] | tel: (32) 3429-6342 | cel: (32) 8452-9478
Esta mensagem contém informação confidencial. Se você a recebeu por engano, não divulgue ou copie seu conteúdo. Por favor, avise ao remetente imediatamente e apague-a do computador. Privileged and confidential. If this message has been received by mistake, do not disclose or copy its contents. Please notify sender and delete immediately.
_______________________________________________ devs mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/devs
Great, I will read and follow-up the request. Yes, in our use case we want map our knowledge and see if they are connected. We created a wiki that have all R&D projects that already was suggested or executed here in Energisa. Each project page will became a node and if the pages have the same tag or they have link to each other's they will be linked. That pages that are more viewed will have bigger nodes ( we want to see what is the most viewed and requested knowledge). Summarizing we want to give to the user the possibility to explore the knowledge and information spatially! Regards, Danilo Grupo Energisa Danilo Oliveira Analista Suporte Aplicacao TI - DPTO CORP. DE INFRAESTR. TI e-mail: [email protected] | tel: (32) 3429-6342 | cel: (32) 8452-9478 Esta mensagem contém informação confidencial. Se você a recebeu por engano, não divulgue ou copie seu conteúdo. Por favor, avise ao remetente imediatamente e apague-a do computador. Privileged and confidential. If this message has been received by mistake, do not disclose or copy its contents. Please notify sender and delete immediately. -----Mensagem original----- De: devs [mailto:[email protected]] Em nome de Jeremie BOUSQUET Enviada em: segunda-feira, 9 de junho de 2014 10:41 Para: XWiki Developers Assunto: Re: [xwiki-devs] Our first Extension! =) Hi, All is explained in the contrib wiki ! :) [1] First thing is to request a contrib project on github (see "Requesting a Project"), so basically you have to propose a name for this project. Then when someone from xwiki committers finds some time, you'll get your repository created and you can proceed to next steps ;) Note: it's a day "off" for many people today in France, so maybe you won't get an answer very fast - the list is not very active today as it seems. [1] - http://contrib.xwiki.org/xwiki/bin/view/Main/WebHome BR, Jeremie PS: sigmajs seems quite nice tool, do you integrate some xwiki-specific use-cases (like display graph of pages or things like that), or just the library ? 2014-06-09 15:11 GMT+02:00 Danilo Amaral de Oliveira < [email protected]>:
Hello XWiki Dev,
How are you? In my company, we have created an XWiki extension that allows use the sigmajs framework (sigmajs.org) and we would like to share the extension with the community. Our idea is create a github project and make it available through extension manager to the users however we don’t have idea how to create the github and after that link that with the extension, how can we do that?
Thank you, Danilo
Grupo Energisa Danilo Oliveira Analista Suporte Aplicacao TI - DPTO CORP. DE INFRAESTR. TI e-mail: [email protected] | tel: (32) 3429-6342 | cel: (32) 8452-9478
Esta mensagem contém informação confidencial. Se você a recebeu por engano, não divulgue ou copie seu conteúdo. Por favor, avise ao remetente imediatamente e apague-a do computador. Privileged and confidential. If this message has been received by mistake, do not disclose or copy its contents. Please notify sender and delete immediately.
_______________________________________________ devs mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/devs
_______________________________________________ devs mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/devs
Hi Danilo, On 9 Jun 2014 at 15:11:37, Danilo Amaral de Oliveira ([email protected](mailto:[email protected])) wrote:
Hello XWiki Dev,
How are you? In my company, we have created an XWiki extension that allows use the sigmajs framework (sigmajs.org) and we would like to share the extension with the community. Our idea is create a github project and make it available through extension manager to the users however we don’t have idea how to create the github and after that link that with the extension, how can we do that?
Awesome! Sigmajs looks very nice and very well adapted to XWiki. How have you done the integration? It seems like a wiki Macro would be great for that, something like: {{sigma}} { "nodes": [ { "id": "n0", "label": "A node", "x": 0, "y": 0, "size": 3 }, { "id": "n1", "label": "Another node", "x": 3, "y": 1, "size": 2 }, { "id": "n2", "label": "And a last one", "x": 1, "y": 3, "size": 1 } ], "edges": [ { "id": "e0", "source": "n0", "target": "n1" }, { "id": "e1", "source": "n1", "target": "n2" }, { "id": "e2", "source": "n2", "target": "n0" } ] } {{/sigma}} BTW, make sure that you include the JS/CSS using a Stylesheet extension which is loaded on demand by the macro. For the project creation, as Jeremie mentioned, you can follow http://contrib.xwiki.org/xwiki/bin/view/Main/WebHome#HRequestingaproject Thanks! -Vincent
Thank you, Danilo
participants (3)
-
Danilo Amaral de Oliveira -
Jeremie BOUSQUET -
vincent@massol.net