Questions tagged [fogbugz]

FogBugz is a bug tracker and issue tracker made by Fog Creek Software.

Official website of FogBugz. It's possible someone on stackoverflow.com could answer your question, but the quickest and surest way to get an answer is on the support site.

There's more information on building plugins and the XML API as well on the support pages.

174 questions
2
votes
1 answer

Is hg commit supposed to inform Fogbugz?

I've configured Mercurial to talk to Fogbugz as explained in their documentation. Should hg commit inform Fogbugz of the commit making the repository appear in the list of repositories and the commit message in the related bug as per the Bugz tag?
Pablo Fernandez
  • 279,434
  • 135
  • 377
  • 622
2
votes
2 answers

Mercurial changing file names to Upper Case and doesn't track them

I've been having some problems with mercurial and kiln, maybe you can point me in the right direction. Sometimes when I commit the files they get renamed as Upper Case 'Assembly.NameSpace' will be changed to 'ASSEMBLY.NAMESPACE' and if I try to…
Michael D. Irizarry
  • 6,186
  • 5
  • 30
  • 35
2
votes
1 answer

FogBugz XML API (Cases:)

I'm consuming the FogBugz XML API but I have a problem. I'm able to create new cases, open created cases, search cases etc through my app. The problem consist of when getting the payload I can get the body of the case using the following piece of…
EdMore
  • 135
  • 1
  • 12
1
vote
1 answer

Add attachment to bug by url

I tried with this url: https://myPath.fogbugz.com/api.asp?cmd=new&sTitle=sometitle&ixProject=1&token=12345678910111213&FileName=C:\Users\John\Desktop\xxx.txt and the issue is created, but the attachment no. How to do this?
petko_stankoski
  • 10,459
  • 41
  • 127
  • 231
1
vote
1 answer

Does tortoiseSVN support multiple iBugTraqProviders for same user/machine?

The use case is that I use one development machine for different source trees. Assuming I am using SVN/TortoiseSVN for all repositories I may have different issue trackers (e.g. Trac and FogBugz). If I want to use the plugins for iBugTraqProvider…
Tim
  • 20,184
  • 24
  • 117
  • 214
1
vote
0 answers

Trying to add button to fogbugz customization so we can condense some articles

Fogbugz has updated the way that their pages are generated... They call it ocelot. This JQuery no longer works in their customizations. The goal of the code was to take any of the text generated with "__" and hide it, but add an element that could…
eranner
  • 11
  • 1
1
vote
6 answers

What is a good way to create a string for crash reporting Win32 C++ that reflects the cause of the crash?

We're using Fogbugz for tracking issues and I am in the middle of writing a C++ wrapper around the XML API for Fogbugz. The best practice seems to be to use the "scout" field so that similar/same crashes are just counted but not reported again. …
Tim
  • 20,184
  • 24
  • 117
  • 214
1
vote
1 answer

Integration TortoiseSVN and FogBugz

I have read this tutorial Integration SVN and setuped BugzID for the my project. So, Currently I have another problem, My project is in development and may be added new files or modules, how do automatically add BugzID to the new files or modules…
jitm
  • 2,569
  • 10
  • 40
  • 55
1
vote
0 answers

How to change the squad parameter of ticket from FB Python API

I am using Fogbugz Python API, and I want to change the squad parameter of my ticket. Did the below change through Fogbugz UI. Squad changed from (No Value) to 'x'. but when I am doing, fb.edit(ixBug=75268,sSquad="Security…
Harshdeep Singh
  • 327
  • 1
  • 5
  • 18
1
vote
1 answer

What wiki engine does FogBugz use?

What wiki engine does FogBugz use?
blink123
  • 21
  • 2
1
vote
2 answers

How did fogbugz implement its screenshot feature?

Does anyone know how FogBugz implemented the "taking a screenshot of the current work screen" feature? Is this done purely via php? Perl? A flash script?
une6
  • 11
  • 1
  • 3
1
vote
1 answer

How to parse XML (Fogbugz XML API)?

I am creating an Android application that connects to the Fogbugz XML API (sends a request to the API, receives back an XML file). Right now, I am creating a service that will handle these requests, and parse each in order to access usable…
mbauer14
  • 1,217
  • 2
  • 13
  • 18
1
vote
0 answers

Installing Kiln Server/Fogbugz

Whilst trying to perfoem a clean install of the Kiln Server on a windows 2012 server,there are a few issues that I've come accross. First I've had to install all the pre-requsites manually as detailed…
lacoder
  • 1,253
  • 1
  • 11
  • 22
1
vote
1 answer

Linq2Sql: linking tables without relationships

I'm new to Linq2Sql and to learn it I'm trying to setup reports using Linq2Sql against the FogBugz tables. But, since the FogBugz tables don't have any true Foreign Key relationships, LinqToSql isn't finding the relationships and I can't figure out…
EfficionDave
  • 2,736
  • 3
  • 31
  • 38
1
vote
1 answer

How to parse an XML file with multiple non-specific elements

I'm trying to parse a list of cases that is returned from the Fogbugz API. Current code: from fogbugz import FogBugz from datetime import datetime, timedelta import fbSettings fb = FogBugz(fbSettings.URL, fbSettings.TOKEN) resp =…
Juice
  • 2,860
  • 4
  • 22
  • 20