From: <ru...@us...> - 2007-08-27 17:28:57
|
Revision: 4 http://tomtesttool.svn.sourceforge.net/tomtesttool/?rev=4&view=rev Author: rumbi Date: 2007-08-27 00:07:35 -0700 (Mon, 27 Aug 2007) Log Message: ----------- RR: - translated BUGS - some TODOs - copyright notice in stats.sh Modified Paths: -------------- trunk/docs/BUGS trunk/docs/ChangeLog trunk/docs/TODO trunk/stats.sh Property Changed: ---------------- trunk/ Property changes on: trunk ___________________________________________________________________ Name: svn:ignore - build dist tom.cfg + build dist tom.cfg bin Modified: trunk/docs/BUGS =================================================================== --- trunk/docs/BUGS 2007-08-04 12:29:02 UTC (rev 3) +++ trunk/docs/BUGS 2007-08-27 07:07:35 UTC (rev 4) @@ -1,12 +1,15 @@ - Gefunden beim Systemtest mit TOM: - --------------------------------------- + Found during the system test of TOM: + ------------------------------------ - -- Gefunden bei Systemtest 2. Iteration: + -- Found during the second iteration of the system test: - JM: NOT-NICE: ViewUtilities#DATE_TIME_FORMAT ist format hart gecoded, sollte aus Lokale kommen. Frz. Datum in Vorbereitungsperspektive muss in der Form 04 juil. 2007 sein. 04 juil. 07 wird zum Jahr 0007 geparst. alleridngs in anfang der Durchführung dann Deutsches Zeitformat genutzt! Inkonsistent. + JM: NOT-NICE: ViewUtilities#DATE_TIME_FORMAT is hard coded, should depend on the + current locale. French date in the preparation perspective should be + formatted "04 juil. 2007". 04 juil. 07 is parsed as year 0007. At the + start of the execution german time format isused! Inconsistent. - Gefunden bei unsystematischen Tests: - ------------------------------------ + Found during unsystematic tests: + -------------------------------- RR: Tree behaviour sucks during import of default/non-default test sequences and manipulation via table. Modified: trunk/docs/ChangeLog =================================================================== --- trunk/docs/ChangeLog 2007-08-04 12:29:02 UTC (rev 3) +++ trunk/docs/ChangeLog 2007-08-27 07:07:35 UTC (rev 4) @@ -1,3 +1,8 @@ +2007-08-22 Reinhold Rumberger <ru...@us...> + * added new ideas to the TODO list + * translated BUGS to english + * added copyright notice and a description to stats.sh + 2007-07-26 Reinhold Rumberger <ru...@us...> * created directory /docs * added ChangeLog, README, TODO, INSTALL, AUTHORS and the GPLv2 license Modified: trunk/docs/TODO =================================================================== --- trunk/docs/TODO 2007-08-04 12:29:02 UTC (rev 3) +++ trunk/docs/TODO 2007-08-27 07:07:35 UTC (rev 4) @@ -1,5 +1,9 @@ - buildsettings.properties: javadoc link for itext - - preferences editor + - graphical preferences editor - write README - write INSTALL - \ No newline at end of file + - add a way of undoing changes during execution after the 'Next' Button has been + pressed (either via a 'Back' Button, a way to asynchroneously select previously + executed test cases, or both) + - Enter bugs in sf's bugtracker + - Make the manual available to svn Modified: trunk/stats.sh =================================================================== --- trunk/stats.sh 2007-08-04 12:29:02 UTC (rev 3) +++ trunk/stats.sh 2007-08-27 07:07:35 UTC (rev 4) @@ -1,6 +1,26 @@ #! /bin/bash -# version 0.0.1 +# Version: 0.0.1 +# +# DESCRIPTION: +# This script is supposed to collect some statistics about a project. It uses +# a recursive algorithm and constitutes a *really* dirty hack. +# +# copyright 2007 by Falko Kötter, Jens Müller and Reinhold Rumberger +# +# This program is free software; you can redistribute it and/or modify it under +# the terms of the GNU General Public License version 2 as published by the +# Free Software Foundation. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License along with +# this program; if not, write to the Free Software Foundation, Inc., 59 Temple +# Place, Suite 330, Boston, MA 02111-1307 USA + # the directory to collect statistics on directory="$1" # if not empty, switch on script-friendly output @@ -9,9 +29,9 @@ removeBlanks="sed s/^[[:space:]]*//g" # the command to remove non-code lines countCode="grep -c --invert-match '^{\|^}\|^/\*\|^//\|^\*'|^$" -# +# total effective lines of code totalELOC="0" -# +# total amount of files in this subdirectory totalFiles="0" [ ! -d "$directory" ] && exit 2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |