var fDesc=new Array(); fDesc[0] = "Gurtle is a TortoiseSVN issue tracker plug-in for projects hosted at Google Code. TortoiseSVN introduced the possibility for anyone to author a COM-based plug-in that enables a user to query a project's issue tracking system during a commit. Gurtle is such a plug-in and enables the user to consult issues of a project hosted by Google Code from within the TortoiseSVN Commit dialog box.
Features:
- Download of issues in the background
- Sort issues by clicking on column headers
- Conduct free-text and interactive search along ne or across all dispalyed columns
- Search issues as download happens in the background
- See closed in addition to open issues
- Unowned/Unassigned issues appear visually distinct (dimmed)"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }