Alfresco workflow behaviour documentation - workflow

I'm learning how to develop advanced workflow in Alfresco and I find things like bpm_assignee, bpm_workflowDueDate, taskInstance, initiator and so on in custom behaviour JavaScript API code examples but I can't find documentation for it.
Can somebody point me to the right direction?

In addition to the wiki page Tahir cited...
The official documentation on Alfresco workflows lives here for Alfresco 4:
http://docs.alfresco.com/4.0/topic/com.alfresco.enterprise.doc/topics/wf-howto.html
And here for Alfresco 3.4:
http://docs.alfresco.com/3.4/topic/com.alfresco.Enterprise_3_4_0.doc/topics/wf-howto.html
You may also be interested in an advanced workflow tutorial. This one is for Alfresco 4 and uses Activiti:
http://ecmarchitect.com/images/articles/alfresco-workflow/advanced-workflow-article-2ed.pdf
This one uses older versions of Alfresco and jBPM:
http://ecmarchitect.com/images/articles/alfresco-workflow/advanced-workflow-article.pdf

Go through the WorkflowAdministration Wiki page, there you'll find all the info you need.

Related

Recommend manual SugarCRM for developer

I'm an intern developer in a bank. Currently I develop custom things in SugarCRM. But I can't find a good manual about customization in SugarCRM ver. 6.5+.
You could check out the SugarCRM resources at https://university.sugarcrm.com/. Register and look through the site and you'll find webinars and videos on various aspects of SugarCRM, including its customization. It might help make interpreting the developer docs a bit easier. Note however the materials will be biased towards SugarCRM 7.
If you are looking for custom development of modules in SugarCRM.
Then there are so many online materials you can find but the problem is how good they are? In my opinion, following links have good content to read and understand.
SugarCRM Support
http://support.sugarcrm.com/
News | SugarCRM Community
https://community.sugarcrm.com/welcome
Sugar Developer Blog - SugarCRM
https://developer.sugarcrm.com/
Blog - SugarOutfitters
https://www.sugaroutfitters.com/blog

kibana-4.3 how to develop plugin

Where can I find a developer guide to kibana, that explain me how the system work and all the things i need to know for developing kibana plugin?
Or if someone could publish snippets of sample plugin.
I've started cloning statusPage plugin, but I don't want to do revers engineering to understand the platform.
On the website, the is no type of developer manual.
Thank you
You can refer to the following links to learn How to develop Kibana Plugins:-
http://logz.io/blog/kibana-visualizations/
https://www.timroes.de/2015/12/02/writing-kibana-4-plugins-basics/
The official answer from 6+ months ago seems to be "don't":
We're working to develop an external API but would caution you away
from making custom changes as things still move pretty fast and
internal APIs are likely to change even in patch versions.
Also, "there are no public plugin APIs right now" (8/2015)
Hard to find any information to date. I recommend you to look at the plugin generator released some days ago:
Generator Kibana Plugin Structure
There are two plugins I found where you can have a look at the code to understand the structure. The first is the Sense plugin, the second Timelion. Timelion matches more to the structure of the generator.
Sense Github
Timelion GitHub
I suggest understanding plugin structure and code for traffic plugin (https://github.com/sbeyn/kibana-plugin-traffic-sg) which would be one of the simplest plugins to understand and you could directly add it to your installed plugin folder in kibana and see it working.
Other than that I would also suggest you do read timroes blogs (https://www.timroes.de/2015/12/02/writing-kibana-4-plugins-basics/) for developing kibana plugins
and last I would also suggest using elasticsearch discussion forum for kibana related issues as well for quicker responses:
https://discuss.elastic.co

Version Control System for Dynamics CRM 2011/2013

I have started using Git for my other development projects (PHP, HTML, JavaScript, etc.) and can now see how beneficial it is, however I've been unable to find anything similar for Dynamics CRM 2011/2013 as a lot of the solution development is done within the web interface.
I'm guessing this is not possible, but could someone with more experience than me please confirm this or let me know which tools I should be looking into?
Thanks
You can use the Visual Studio Developer Toolkit available in the SDK to version control your plugins and web resources initially. I'd recommend this as your first step.
If you choose to take it further you can also look at using the SolutionPackager tool to version control your solutions. This will split out your solution zip file into separate version controllable files for each component. It works best when you follow the developer workflow outlined in the linked MSDN article

Alfresco integration with Liferay

I'm wondering if Alfresco Out Of the Box can be configured to integrate with Liferay.
Or, must it be extended using custom content types/models before I can integrate it with Liferay.
Have you tried either of these? How has your experience been? We are using community Alfresco and Enterprise Liferay. I'm trying to see my options here. May be my question is too vague. Please throw in ideas if you think there's some aspects I'm completely missing.

plug-in for MOODLE

How can i add a plug-in that i developed in MOODLE, considering the fact that MOODLE is an open source project?
Here is the documentation on installing contributed modules to moodle. You have to be approved before your plugins are available to everybody. If you wanted to get your plugin added as a core component, you should contact the development team. Make sure you follow the guidelines for your contributed code.
Check the guidelines for contributed code. They should include everything you need to know about contributing to the moodle project. They describe that you have to submit it on their bugtracker, etc. -- for further question, I suggest you contact the moodle people directly.
The code checker plug in developed by the Open University (moodle.org/plugins/view.php?plugin=local_codechecker) is an invaluable tool for anyone hoping to contribute an extension to Moodle and incorporates general coding good practice.
I would recommend using this for any software you are planning to share with other Moodle users and using the forums at moodle.org to get some feedback on beta versions and your concept while developing your plug-in.
Moodle contributes code guidelines.
http://docs.moodle.org/dev/Guidelines_for_contributed_code#How_to_submit_code
Read the How to request that your code be tested/reviewed section.
Pay particular attention to following the moodle API
http://docs.moodle.org/dev/Coding