fogbugz

Getting a list of tickets with FogBugz API

て烟熏妆下的殇ゞ 提交于 2019-12-12 07:51:46
问题 I have a .NET web app that utilizes the FogBugz API to write problem tickets to our FB server... it uses the new command and... among all the other attributes... uses the sCustomerEmail argument to send the user's e-mail with the ticket. My question is this: Is there a way that I can get a list (via the API, of course) of all tickets assigned to this e-mail? We're wanting to write another page that is a report of what tickets are currently assigned to this e-mail. We don't want to have to

Having trouble getting Fogbugz API response into a SimpleXML object

天大地大妈咪最大 提交于 2019-12-12 02:29:06
问题 I'm trying to write a wrapper around the fogbugz API, starting with getting a login token. I don's seem to be able to get the token into my wrapper object. $url = "http://..../fogbugz/api.asp?cmd=logon&email=" . $_UN . "&password=" . $_PW; $contents = file_get_contents($url); $resp = simplexml_load_file($contents); print_r($resp); Response is: SimpleXMLElement Object ( [token] => SimpleXMLElement Object ( ) ) The object in the token member var is empty. The response string however is OK. If I

Is Kiln for your server being retired? [closed]

ⅰ亾dé卋堺 提交于 2019-12-03 01:59:51
Closed. This question is off-topic. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it's on-topic for Stack Overflow. I was looking into the Kiln Harmony feature and saw that FogCreek only advertises it in On Demand. In the "How do you get it" section they don't even mention that it is not available for the On Premise version. So I went looking for details of the "Kiln on your Server" pricing to see what was included. I can't even find pricing for the licensing anymore. Is the hosted version now the only Kiln available? I submitted the

Scrum and Fogbugz [closed]

橙三吉。 提交于 2019-12-02 17:10:15
Anyone out there using Fogbugz and Scrum together? We use Fogbugz extensively, and I'm looking for ideas from anyone who may be using it as part of Scrum. I found these two items, but they are archived and unvailable for further discussion. I'm specifically interested in ideas for mapping Scrum concepts into Fogbugz. Some things are fairly obvious. Releases and sprints map well to each other. But other parts of Scrum don't really fit. http://support.fogcreek.com/default.asp?fogbugz.4.12143.4 http://support.fogcreek.com/default.asp?fogbugz.4.19971.3 I'm also thinking it might not be too hard to

Integrating Fogbugz with TortoiseSVN with no URL/Subversion backend

蓝咒 提交于 2019-12-02 16:49:34
I've got TotroiseSVN installed and have a majority of my repositories checking in and out from C:\subversion\ and a couple checking in and out from a network share (I forgot about this when I originally posted this question) . This means that I don't have a "subversion" server per-se. How do I integrate TortoiseSVN and Fogbugz? Edit: inserted italics I've been investigating this issue and have managed to get it working. There are a couple of minor problems but they can be worked-around. There are 3 distinct parts to this problem, as follows: The TortoiseSVN part - getting TortoiseSVN to insert

Anyone soloing using fogbugz? [closed]

不问归期 提交于 2019-11-29 23:41:21
Is there anyone working solo and using fogbugz out there? I'm interested in personal experience/overhead versus paper. I am involved in several projects and get pretty hammered with lots of details to keep track of... Any experience welcome. (Yes I know Mr. Joel is on the stackoverflow team... I still want good answers :) Michael Stum I use it, especially since the hosted Version of FugBugz is free for up to 2 people . I found it a lot nicer than paper as I'm working on multiple projects, and my paper tends to get rather messy once you start making annotations or if you want to re-organize and

What do you use as a good alternative to Team System?

淺唱寂寞╮ 提交于 2019-11-29 22:58:54
I would like to gauge what solutions other people put in place to get Team System functionality. We all know that Team System can be pricey for some of us. I know they offer a small team edition with five licenses with a MSDN subscription, but what if your team is bigger than five or you don't want to use Team System? I'm stunned that nobody has mentioned the free and excellent TeamCity product from JetBrains. It includes: Continous Integration Software Build management Project Management, Monitoring and Statistical Reports Integration with many IDEs, Sourcecode control systems, and Testing

Parsing XML with CDATA with JQuery

僤鯓⒐⒋嵵緔 提交于 2019-11-27 23:15:00
Edit: I was missing two things here. The lack of "Content-Type:text/xml" in the header returned by the AJAX call was preventing JQuery from treating the returned data as a document. Once that was handled correctly, this code parsed correctly and output just the index and project name. $("a.getprojects").click(function(d){ d.preventDefault(); var api_token = $("#token").val(); var form_fbod = $("#fbod").val(); $.post("fbinfo.php", {fbod: form_fbod, token: api_token, cmd : 'listProjects', extra:''}, function(returned_xml) { var output = ''; $(returned_xml).find("project").each(function(){ var

Insert a Link Using CSS

好久不见. 提交于 2019-11-26 19:05:00
I'm hand-maintaining an HTML document, and I'm looking for a way to automatically insert a link around text in a table. Let me illustrate: <table><tr><td class="case">123456</td></tr></table> I would like to automatically make every text in a TD with class "case" a link to that case in our bug tracking system (which, incidentally, is FogBugz). So I'd like that "123456" to be changed to a link of this form: <a href="http://bugs.example.com/fogbugz/default.php?123456">123456</a> Is that possible? I've played with the :before and :after pseudo-elements, but there doesn't seem to be a way to