var fDesc=new Array();
fDesc[0] = "Practiline Source Code Line Counter - an easy-to-use application for counting source code lines.
Main Features:
- Choice of folder and addition of files from the program without additional dialogues;
- Simultaneous support of all format types;
- Free selection of available formats;
Definition of file format by its type (extension);
- Advanced report export (printing, saving as pdf, doc and other formats, copying to clipboard);
- Saving and loading of profiles for various users;
- Displaying available profiles as menu;
- Full report on the code:
-number of source code lines
- number of blank lines
- number of comment lines
- number of mixed lines (code and comments)
- percentage of comments, blanks and source code
- Sorting the report by any column of the table;
- Copying a selected part of the report to clipboard;
- Counting totals in the report (sum total, percentage).";
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 = '';
}
}