Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I recently started learning to develop plugins for jira. Now I need to create custom fields. I don't know how to name this object.
I want to do something like this:
or this:
How do I do this?
I read the FAQ on the Atlassian website, but did not find this implementation. I don't know if it is possible to do so.
Sounds like a custom field to me. The buttons and text area come from the Velocity template file for the view and edit actions on a field. You'll also need to decide what you want to store in the backend database. My O'Reilly book "Practical JIRA Plugins" has more detail on this, or work through the example at https://developer.atlassian.com/display/JIRADEV/How+to+create+a+new+Custom+Field+Type
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
what is the correct https link to get JSON data for all the projects at once?
the current link to our dashboard is like this:
https://company.atlassian.net/secure/Dashboard.jspa
Would like to get all of the projects then use another https call to get all the issues for all the projects. Then after that of course look at assignees etc etc. Looking to collect this data to put into an iOS app for R&D purposes.
I am coming at this blind but I have no idea if I also need someone to set up permissions to do this or something. Never used this API before so just doing some discovery here.
You have to speak with the API :)
https://docs.atlassian.com/jira/REST/latest/
Let me know if you need further help.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
As a JIRA newbee and explorer, I seek your help in determining whether it's possible to draw curvy (sinusoidal waveform) graphs.
Currently, the burndown charts which I am getting are of square-wave form.
If sine-wave is possible then kindly let me know how.
I don't know any out-of-the-box solution for that. If you don't mind doing some programming (shouldn't take more that a few hours for someone with basic programming skills), you can use one of Jira's remote API together with Google Chart Tools to build whatever Chart you want.
Than, to display the graph on Jira you can use the custom content plugin fro Jira.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
Hi I have a site which has a number of affiliate links, I would like to measure which ones perform best. I could be using the same link say in the sidebar and at the end of each article, and I want to know which is best, the sidebar one, or the one after the article.
How can I do that? Thanks.
In each of the links, try adding an onclick JS snippet with Google Analytics event tracking, or a similar self-created code or code from another analytics suite you use. I do something similar, creating a fake pageview for my download links by adding this in the onclick
_gaq.push(['_trackPageview', '/<?=$idnumber?>/download']);
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I've been thinking about starting an open source admin panel for rails using the cappuccino JavaScript / Objective-J web framework..
How would I get started?
Are there any resources you can point me to, that explain dynamic scaffolding like code generation?
Thanks and looking forward to collaborating if anyones interested?
Daniel
You may want to take a look # rails_admin. It is a port of Merb Admin. It's still pretty young, but may give you ideas on the approach.
ActiveScaffold has been around for a while too which may be another good reference project.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I was wondering what would be the best strategy to implement a badges system using asp.net mvc. The one that stackoverflow has is pretty interesting. What do you suggest?
I guess I need to clarify the question a bit. The problem would be the different criteria for earning every badges. How do make that logic extensible?
I'd do it purely in T-SQL, and set up a SQL job that runs periodically (Jeff did it using C#, and has a goofy system where it runs the process based on a page request).
Basicly, in your SQL Job, scan your member tables and calculate if anyone is qualified for a badge, if so, update the badge table(s).
Then in the front end, do a query to retrieve new badges for a member on each request.