Parcourir la source

Renamed name to GitStats from statgit in the rest of the files.

This name change was done just in case the statcvs/statsvn folks plan on making
a git version at some point in the future (the projects seem to share
developers).
Heikki Hokkanen il y a 18 ans
Parent
révision
5fd98ece22
3 fichiers modifiés avec 8 ajouts et 10 suppressions
  1. 1
    1
      doc/README
  2. 2
    4
      doc/TODO.txt
  3. 5
    5
      gitstats

+ 1
- 1
doc/README Voir le fichier

@@ -1,4 +1,4 @@
1
-statgit is a statistics generator for revision control systems (for now, only
1
+gitstats is a statistics generator for revision control systems (for now, only
2 2
 git). It is mostly intended for developers, as a way to check some development
3 3
 statistics for a project.
4 4
 

+ 2
- 4
doc/TODO.txt Voir le fichier

@@ -7,8 +7,9 @@
7 7
 - better style for images & tables (keep next to each other?)
8 8
 
9 9
 [0.0.1]
10
-- copy/link statgit.css to target dir
10
+- copy/link gitstats.css to target dir
11 11
 - rename to gitstats ?
12
+	- make $PROJECT_NAME a variable
12 13
 
13 14
 [Unsorted]
14 15
 - use sortable.js
@@ -117,9 +118,6 @@
117 118
 - "Repo heatmap"?
118 119
 - LOC and Churn
119 120
 
120
-[name]
121
-- statgit or gitstats (no google hits for either)
122
-
123 121
 [Misc]
124 122
 - use sortable.js ?
125 123
 - could show some statistics from last year, month, etc... pisg-like?

+ 5
- 5
gitstats Voir le fichier

@@ -298,7 +298,7 @@ class HTMLReportCreator(ReportCreator):
298 298
 		format = '%Y-%m-%d %H:%m:%S'
299 299
 		self.printHeader(f)
300 300
 
301
-		f.write('<h1>StatGit</h1>')
301
+		f.write('<h1>GitStats</h1>')
302 302
 
303 303
 		self.printNav(f)
304 304
 
@@ -667,9 +667,9 @@ plot 'files_by_date.dat' using 1:2 smooth csplines
667 667
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
668 668
 <html xmlns="http://www.w3.org/1999/xhtml">
669 669
 <head>
670
-	<title>StatGit</title>
671
-	<link rel="stylesheet" href="statgit.css" type="text/css" />
672
-	<meta name="generator" content="statgit" />
670
+	<title>GitStats</title>
671
+	<link rel="stylesheet" href="gitstats.css" type="text/css" />
672
+	<meta name="generator" content="GitStats" />
673 673
 </head>
674 674
 <body>
675 675
 """)
@@ -690,7 +690,7 @@ plot 'files_by_date.dat' using 1:2 smooth csplines
690 690
 		
691 691
 
692 692
 usage = """
693
-Usage: statgit [options] <gitpath> <outputpath>
693
+Usage: gitstats [options] <gitpath> <outputpath>
694 694
 
695 695
 Options:
696 696
 """