r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[!CureCode] web-based bugtracking tool

Dockimbel
24-May-2009
[346]
I've noticed the redirection issue with Chrome too, I'll see if I 
can improve that, but last time I've checked, it looked very expensive 
to fix i(but would make CureCode cleaner).
Pekr
24-May-2009
[347]
What I find confusing is when you try to look at changelog. There 
is initially no list, unless you select your project first, which, 
in case of R3, is just only one - R3 ....
BrianH
24-May-2009
[348]
Not for long, I think.
Dockimbel
24-May-2009
[349]
For now, but that may change. CureCode is built on a multi-project 
model.
BrianH
24-May-2009
[350x2]
Can you move tickets between projects, or do they need to be redone 
or copied?
Also, do they split the ticket numbers between them or use separate 
numbering?
Dockimbel
24-May-2009
[352]
Currently only using a SQL query. Adding a button on each ticket 
page to move it to another projet is a planned feature.
BrianH
24-May-2009
[353]
On a related note, do you think it would be possible to export from 
RAMBO to CureCode?
Dockimbel
24-May-2009
[354x2]
Numbering: that's one central question. Currently the numbering is 
global to all projects for a given CC instance. When I made the first 
CC version, I wanted to follow the Mantis application as much as 
possible while make things simplier. I wasn't sure if the numbering 
should have been global or local to each project. Now, I think that 
I used it long enough to think that the local numbering is more natural 
and user-friendly. I'd like to switch to that local numbering in 
a future CC release while keeping the global numbering as an install 
option (for Mantis users and for migrating Mantis databases).
RAMBO to CC: sure, it shouldn't be very hard, RAMBO data model is 
pretty simple.
BrianH
24-May-2009
[356x2]
If you use global numbering it will be easier to reference tickets 
externally, and to move tickets between projects.
Otherwise you'd have to change the ticket number if it was assigned 
to the wrong project, and to include the project number in the ticket 
references.
Maxim
24-May-2009
[358x4]
It depends what you use it for I guess... 


for myself, I'd also use global numbering cause I have many projects. 
but I might want to have different sets of numbers on the same server. 
 


maybe you could just have an uid table name as part of the CC project... 
that way the decision is up to user and totally flexible.
project
darn altme, hehe

part of the CC project *name*
my god I think I'm becoming dyslexic! hehe

part of the CC project **CONFIG**
BrianH
24-May-2009
[362]
How is the information stored? Can you switch to a composite key, 
or an additional projectid-readableticketid key?
Dockimbel
24-May-2009
[363]
I was thinking about keeping the current ticket number as a "technical" 
number for external references and moving between projects while 
providing a local numbering in the UI (with the option to reference 
a ticket by its local number+project ID, or by it's absolute and 
unique internal ID). I feel like maybe it would be overcomplicated 
and not worth the effort?
BrianH
24-May-2009
[364]
I don't mind global numbering, but I may be in the minority here. 
As long as the filters filter by project, the apparently skipped 
numbers are not much different from deleted tickets.
Dockimbel
24-May-2009
[365x2]
CC data model : http://softinnov.org/dl/DB-schema.png

Yes, it's possible to switch to a composite key (ID+project or project+localnumber), 
but I often rely on a unique key (even if it is for internal use).
It may be confusing if we start a new project now, in the R3 CC instance, 
the first ticket would be #844...looks odd.
BrianH
24-May-2009
[367]
bug#3-794 referencing?
Maxim
24-May-2009
[368x2]
if you use external uid tables, you can have a dual id... the ticket 
global uid, and the projects-related id.
use the global uid internnaly, and show the project on on displays.
BrianH
24-May-2009
[370]
Well, I would need to be able to work on more than one project at 
the same time so I can copy tickets that apply to more than one product, 
like R2 and R3. The advantage for using CureCode would hopefully 
be to reduce work.
Maxim
24-May-2009
[371]
the use of the external tables can probably be replaced by some SQL, 
but for some reason I find it simpler to let mysql handle autoincrementing 
and retreiving last insert id, it seems easier to support when many 
threads are inserting at the same time on the same table.
BrianH
24-May-2009
[372x2]
I think we're going to start adding categories to the R3 project 
too - at the very least to separate out the chat and GUI bugs.
reproduces
 table? What's that?
Dockimbel
24-May-2009
[374]
A table containing reproducibility qualifications :
	('Always'),
	('Sometimes'),
	('Random'),
	('Have not tried'),
	('Unable to reproduce'),
	('Not applicable');
BrianH
24-May-2009
[375]
Where in the UI is that set? Future reference?
Dockimbel
24-May-2009
[376x2]
Present in CC, but not used in current CC/R3 (I've removed it, because 
we add 2 new fields : Type and Platform, and I wanted to avoid overloading 
the tickets header section with too much info).
It's not often used and you can't currently filter tickets on that 
field, so adding it back now would not give much gains. When CC will 
allow to query on all tickets fields, this field might find its way 
back.
BrianH
24-May-2009
[378]
Well, we've been using the comments for the reproducibility ant it's 
been working fine. No problem :)
Sunanda
24-May-2009
[379]
<local numbering in the UI>

A project specific number as well as an internal UUID will be most 
flexible.
Think of cases when you may want to:
-- delete a project, and then later re-instate it
-- import a project from somewhere else

-- have the project database running decentralised across several 
loosely-coupled machines

-- have a project database that (for whatever reason) gets forked, 
and then needs to be merged back into one.


At the user interface level, all I should ever need to know is that 
issues are numbered sequentially from 1 for that project. How you 
implement that internally should be invisible to me.
BrianH
24-May-2009
[380]
Except that the tickets are referenced by human-written numbers from 
inside and outside CureCode. Inside is no problem - just assme the 
samme project. Otside is a problem unless some kind of project reference 
is included. An example of an outside reference is the bug#794 style 
referencing in R3 chat, or the get line referencing elsewhere. It's 
easy to add a project reference to get line stuff, but harder for 
bug#794 referencing.
Dockimbel
26-May-2009
[381x3]
I'm pushing the new v.0.9.8 in production, it shouldn't need to restart 
Cheyenne, but if someone (e.g. BrianH ;-)) is writing a long text 
in CureCode, better save it right now.
Changelog : 0.9.8 - 26/05/2009

	o FEAT: "User" column added to tickets list page.
	o FEAT: Search text feature extended to comments.
	o FEAT: "Main" page now populated with statistics.
	o FEAT: New Preset filter: "My Reports" (default when logged)
	
	o FIX:  "By Submitter" filter now working correctly.
	o FIX:  Redirection issues with Chrome fixed.
	o FIX:  In Preset mode, columns sorting links removed.
	
	o LOOK: Textarea edit fields now enlarged to maximum width.
For users having a session running before the upgrade, you should 
terminate your session (logout or restart browser). The session content 
has been changed, so you'll get some page errors if you keep using 
your old session.
Oldes
26-May-2009
[384]
yes.. now it's fine
Dockimbel
26-May-2009
[385]
Let me know if the word "Stockpile" is the adequat english word in 
"Main" page (I'm not sure about that).
BrianH
26-May-2009
[386x2]
We haven't been using "block" much because there is no consensus 
as to what it should mean. It could be "blocking further development 
in some way" or it could mean "process halts but doesn't crash (usually 
an endless loop)".
When I did a search for "return", I got duplicate entries in the 
results. If it matters, I was on the "Recent Changes" preset beforehand.
Dockimbel
26-May-2009
[388]
I see the duplicate entries too.
BrianH
26-May-2009
[389]
Some of the duplicates had the same number as the number of comments.
Dockimbel
26-May-2009
[390]
Good hint, looks like a SQL grouping issue.
BrianH
26-May-2009
[391x3]
Only seems to be dismissed tickets, but not all dismissed tickets. 
Annoying inconsistency.
Wait, that last one is not true. I found a dup tested.
No dups if I limit the search to the summary fiields.
Dockimbel
26-May-2009
[394]
Duplicates issue fixed. It was a SQL error : DISTINCT COUNT(id) instead 
of COUNT(DISTINCT id).
BrianH
26-May-2009
[395]
I hate when that happens :(