Is Adaptive card designer tool opensource? - adaptive-cards

Just wanted to see if the designer tool is opensource. Couldn't see it in GitHub repo. If not are there any plans to opensource the designer tool https://adaptivecards.io/designer/
Thanks,
Ram

Source can be found here: https://github.com/Microsoft/AdaptiveCards/tree/master/source/nodejs/adaptivecards-designer
There is also an npm package: https://www.npmjs.com/package/adaptivecards-designer

Related

Trouble installing the haxe language binding in monodevelop

Good morning.
I am trying to setup haxe development tools in monodevelop as shown in this tutorial.
My problem is i can't find the haxe language binding the in add-in manager.
Does anyone know the solution to this issue?
Best regards
Guilherme Silva
Even the haxe binding dated 14/3/2013 only works for Monodevelop 3.0. I was able to download Monodevelop 3.0.6 from sourceforge. If it still doesn't work through the add-in manager, you can manually download it (link below) and install by file.
resources:
http://addins.monodevelop.com/Project/Index/41
http://sourceforge.net/projects/monodevelop.mirror/files/?source=navbar
I ran into this problem too. I believe it's because the Haxe language binding doesn't currently support (MonoDevelop/Xamarin Studio) version 4. And they don't currently seem to offer trunk builds, so we might be out of luck!
http://monodevelop.com/download/trunk_builds

Is there a tool similar to repo or git-repo for hg/Mercurial?

I am a bit new to hg and while I am familiar with the python-based repo tool (used in project like the Android Open Source Project) I am not aware of one for Mercurial. Is there such a tool for hg?
I'm not very familiar with repo, but my understanding was that it allowed them to construct a project out of lots of smaller repositories.
If that's the case then it's just built in. Subrepositories.
Edlund was kind enough to open-source their repoman tool, which was directly inspired by the Android project's repo tool as I understand the history.

Mylyn connectors for GitHub and BitBucket

Does anyone know if there are any stable connectors to integrate mylyn with Bitbucket and Github?
For github.com I think I found one, but for bitbucket there is no information on the Eclipse Mylyn project page.
There's a Mylyn connector for Bitbucket at https://bitbucket.org/pplupo/bitbucket-mylyn-connector.
Note: the Eclipse Update Site there (http://www.mylynbitbucketconnector.xpg.com.br/update) only worked for me when I unchecked "Group items by category"
Eclipse Juno 4.2.2 comes with EGit and Mylyn GitHub connector.
I found the following post on the MercurialEclipse forum for a Mylyn connector for Bitbucket's issue feature:
http://groups.google.com/group/mercurialeclipse/browse_thread/thread/e4c5f113f127e0b1?pli=1
I'm developing the GitHub connector for MyLyn.
http://devsprint.github.com/org.eclipse.mylyn.github/site
If you have any suggestions then please log them into github issues.
https://github.com/devsprint/org.eclipse.mylyn.github/issues

Eclipse Basic Web Development?

I want to start doing web development with Eclipse. Not Java, tomcat, axis2, or anything else anymore complicated than basic XHTML / JS / CSS development, at this time.
Problem 1: I realize that it can edit those files, but its trying to manage my HTML docs as part of "my workspace", and all I want it to do is manage the files as part of my local www server HTdocs directory.
Problem 2: I would like to edit WYSIWYG-style, if possible. I tried installing a plug-in for that, but I wasn't able to get w4 toolkit to function properly. This would really help me to speed up development, I think.
Follow-up:
I've installed WTP and its dependencies (except for the tests portion, which had install problems due to dependencies that were seemingly irreconcilable).
You can link a folder in your workspace to somewhere on your filesystem. So in your case you could create a folder in your Eclipse project called "html" and link it to your Apache htdocs folder.
You should try Aptana Studio. It's available either as a stand-alone install (based on Eclipse) or as an Eclipse plugin. It has a good reputation for Web App dev.
Why not start with a web design software? Once you have the web pages laid out the way you want them, you can add them to your web application in eclipse. Eclipse is great for application development. Even though it can handle some page builder needs, it's probably not as good as a web design tool. In your case, you end up having to install plug-ins for page building.
Eclipse is software for coding, it's not designed for WYSIWYG editing. If you want WYSIWYG, you should use Dreamweaver or suchlike.
If you want to use Eclipse for what is good for, coding, the main alternatives are Web Tools Platform which is quite basic and could be already pre-installed depending on what version of Eclipse you got, and Aptana Studio. which is quite bloated.

Execute command in Hudson as Post-build Actions

I am new in Hudson.
I would like to execute a 'sourcecodeanalyzer' command in Hudson as Post-build Actions to generate an html report. Please let me know is this at all possible, if yes let me know the Hudson configuration steps to execute the command.
Your earliest response in this regard will be extremely helpful.
Thanks in advance.
Yes, it is almost certainly possible.
You will need to configure the Hudson project to have either a post-build action or a build step that runs your source code analyzer.
You've not stated in your question precisely which analyzer - it may be that Hudson already has a plug-in installed for it, in which case it may be listed on the Config page for the project at the bottom under Post-build Actions.
If not, next check to see if there's a plug-in available for the analyzer that hasn't been installed. From the main Hudson page select Manage Hudson, then Manage Plugins, and choose the Available tab. If there is a plug-in available it's definitely a good idea to use it as they are generally very well integrated with Hudson itself.
As a last resort you'll have to configure a build step to run the analyzer. Configure the project, then choose "Add build step". The drop-down that appears depends on your environment (Windows or Linux) but should include the ability to run a shell command or batch file. You can configure your analyzer there.
(If you're building Windows Visual Studio applications, a more flexible way that I've used is to use the MSBuild plug-in for builds, and have an MSBuild script that builds the application and then runs analysis tools. This can automate pretty much everything: mine builds the application, builds an acceptance test database, runs the acceptance tests and copies the result HTML to a page linked from the project.)
You could create a new job with a "Execute Shell" build step. Type in the command you wish to run in the text box. Then all you have to do is trigger this job by selecting:
"Build after other projects are built"
And select the trigger job from the list.
Hope this helps!
As a follow up to Jeremy's post. If you don't see the ability to add post build steps, you might work with maven jobs. In that case you need the Hudson M2 Extra Steps Plugin. This will give you pre and post build steps.
I use the 'Post build task' plugin to delete some resources after a build. You could call any shell script or command lines. If you want you could make the call depends on some logging output.
there is one best way to solve this:
Upgrade to Fortify SCA 2.6.x (as of writing, latest version is 2.6.5).
Download the Fortify Maven Plugin version 2.6 from https://customerportal.fortify.com and install it into your Hudson server's Maven repository.
Update your project's pom to carry out the Fortify scan. There is an example provided with the Maven plugin.
Currently , I am experiment with sonar plug in. It looks great check the details here
http://sonar.codehaus.org/a-new-hudson-plugin-for-a-closer-integration-with-sonar/
http://wiki.hudson-ci.org/display/HUDSON/Sonar+plugin