I've developed a Jira plugin (a post function) which is working fine. What I'd like this plugin to be able to do it to retrieve the Non Working Days that have been been previously saved using the Greenhopper plugin in Jira.
Is there a Greenhopper API available for this type of requirement? I've searched for an api but have had no luck.
The following link as far as I can tell is for developing plugins for GreenHopper.
https://developer.atlassian.com/display/GHDEV/GreenHopper+Developer+Documentation
It's not really what I'm after as I'm more interested in using their api to query information.
Any assistance would be greatly appreciated.
Norm.
Just to let those interested know...
After some further searching I found the answer! This is how I'm getting the number of non working days:
import com.pyxis.greenhopper.GreenHopper;
.
.
GreenHopper ghService = (GreenHopper) ComponentManager.getOSGiComponentInstanceOfType(GreenHopper.class);
Set set = ghService.getConfiguration(issue.getProjectObject()).getNonWorkingDays();
The set contains the non working days configured in the GreenHopper configuration screen in Jira.
Just what I was after.
I hope that helps somebody out there :-)
Related
I am using QB Php sdk from last 7 years and it is working fine with stability.
I request Keith from consolybyte & other fellow members to please share the list of all allowed actions which can be done in QB Desktop via QB PHP SDK. I have been using invoice, item, payments, customer (add/mod/del) actions.
I want to know what else can be done via PHP SDK. In Quickbooks.php alot of functions are mentioned but not sure if all of these are supported for QB Desktop. It will be of great help if exact list can be provided. There is no proper documentation of same. I have gone through. At couple of places(https://github.com/consolibyte/quickbooks-php) it is mentioned it supports order push from website to QB and etc etc. I am looking for exact "etc" list :) Thank you for the assistance in advance
All of what QuickBooks desktop supports is documented here:
https://developer.intuit.com/app/developer/qbdesktop/docs/api-reference/qbdesktop
I am attempting to use an Open Source product called kAIron for implementing NLP based ChatOps system for our DevOps pipelines built using Jenkins 2.0.
So two questions.
Is it even possible to achieve, or is this not something for which this product is built?
If yes, can someone point me to the documentation or get started kind of tutorials?
As I am one of the core contributors of kAIron, I will able to answer your questions.
Yes, it is possible to achieve, as kAIron helps users to train the bot.
you can try kAIron, or you can do manual deployment
As Kairon is under active development so we are happy to answer any questions you may have on our Github page
We are fairly active in our responses
Here are getting started videos for Kairon . We have started documentation . So please have patience with us .
https://www.youtube.com/channel/UCT5GAEluyaugvORqPwf-WRw/playlists
Thanks
I'm banging my head against the wall with this for a month. Setting data-item-stackable="never" in Snipcart V3 does absolutely nothing for me.
But there's more weird things going on:
On my dashboard, I'm getting this message saying:
It seems you’re not using the latest version of our shopping cart.
Would you like to switch to the v3.0 ?
Needless to say, I'm using at my site the latest (at the time of writing this) snipcart.js v3.0.31. What is dashboard detecting as Snipcart v2? I've never used Snipcart v2 on the site in question and I didn't migrate from v2 to v3.
In Snipcart v3 documentation, it says that data-item-stackable attribute is enum type. However, in v3 migration guide, it is stated
The data-item-stackable attribute isn't boolean anymore, but a string
that describes the different possible behaviors
So is it a string or is it an enum?
I'd like to know if anyone else had an issue with correct version detecting and/or data-item-stackable doing absolutely nothing? Are those two just different manifestations of the same problem I'm having?
Has anyone succeeded in getting items "non-stacked" with Snipcart v3, without using Javascript SDK, as intended?
Thank you for your time and effort.
Cheers.
Just got the answer from nice guys at Snipcart. It seems that the problem is that data-item-stackable="never" is not working if data-item-quantity has been set on the snipcart button. Here's their answer:
Even if a product isn't stackable, if you specify the quantity on the
product, this value will be used as "default" value, this is why when
you click on the buy button it uses the value you set as quantity.
For your use case, I'd recommend adding the items programmatically,
please take a look at our JavaScript SDK documentation
They even provided a small example here:
https://codesandbox.io/s/crimson-tree-7tffo?file=/index.html
Yesterday I received data on the rest api using expand=columnset when I was resting against sharepoint listitems... today I'm not. I know its beta, but can't seem to get my listitem data expanded. Anyone experiencing the same?
I can't find anything regarding this out there.
Here is the url I use:
https://graph.microsoft.com/beta/sharepoint/sites/{siteid}/lists/{listid}/Items?expand=columnSet
result:
Do you now where I can find info on builds for the beta api?
Best regards Ole
got this from github post: solution is coming this or next week. https://github.com/microsoftgraph/microsoft-graph-docs/issues/1137#issuecomment-299263019
I have started trying to use Pfeed plugin for my Rails app. Apart from four support pages of wiki on the Github, I only found this blog post helpful for me to start using.
I have managed to get the simple feeds working like "User bought 12 items about 1 minute ago" etc. But when it comes to customize the feed items, that's where I have having issues to proceed. Pfeed uses Model&View items for each feed configuration and I found out that models are working as it should be. Very frustrating.
Has anyone used this Plugin before? If so, please do let me know how it goes. Also if you have ever used any other good plugins for this sort of Recent Activity feature, please show me the way.
Many thanks.
Phyo
Not sure if it's the answer you're looking for, but I looked through a bunch of timeline generators and settled for timeline_fu
It's quite easy to use (I ended up forking it and making some edits so save some extra variables etc. but it was really easy to do).