Skip to content

Commit dcd6f50

Browse files
committed
Adding same ChangeLog and future template (tentative)
1 parent 467bb99 commit dcd6f50

File tree

5 files changed

+110
-0
lines changed

5 files changed

+110
-0
lines changed

ChangeLog

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Revision 5 : Added options parsing by abhi.nitt on 2010-06-05 09:27:4
2+
--------------------------------------------------------------
3+
Revision 4 : Now will report from HEAD instead of BASE revision by abhi.nitt on 2010-05-26 18:59:3
4+
--------------------------------------------------------------
5+
Revision 3 : Added support of input directory and output directory by abhi.nitt on 2010-05-26 18:37:3
6+
--------------------------------------------------------------
7+
Revision 2 : Adding svnlogger script by abhi.nitt on 2010-05-25 18:22:2
8+
--------------------------------------------------------------
9+
Revision 1 : Initial directory structure. by (no author) on 2010-05-25 18:01:3
10+
--------------------------------------------------------------
11+
Log generated using svnlogger v0.1 by abhishekdelta

template/svn-changelog.css

+84
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
body {
2+
background-color: white;
3+
color: black;
4+
margin-left: 1.5em;
5+
margin-right: 1.5em;
6+
margin-top: 1.5em;
7+
margin-bottom: 1em;
8+
}
9+
10+
h1 {
11+
margin-right: 0.7em;
12+
padding-left: 0.7em;
13+
padding-right: 0.7em;
14+
}
15+
16+
ul.changelog_entries {
17+
margin-left: 0.7em;
18+
margin-right: 0.7em;
19+
padding-left: 0.7em;
20+
padding-right: 0.7em;
21+
padding-bottom: 0.7em;
22+
background: #fefefe;
23+
}
24+
25+
li.changelog_entry {
26+
list-style-type: none;
27+
margin-left: 0px;
28+
padding-left: 0px;
29+
margin-top: 0.8em;
30+
border-top: 1px solid #dddddd;
31+
background: #f8f8f8;
32+
}
33+
34+
li.changelog_change {
35+
list-style-type: circle;
36+
margin-left: 4em;
37+
}
38+
39+
span.changelog_date {
40+
color: black;
41+
}
42+
43+
span.changelog_author {
44+
color: #111188;
45+
}
46+
47+
.changelog_revision {
48+
font-size: 80%;
49+
color: #881111;
50+
background: #fff4f4;
51+
}
52+
53+
.changelog_revision a {
54+
color: inherit;
55+
}
56+
57+
.changelog_files {
58+
font-size: 80%;
59+
font-family: monospace;
60+
color: #116611;
61+
}
62+
63+
.changelog_files:after {
64+
content: ':';
65+
}
66+
67+
.changelog_message {
68+
display: block;
69+
color: #220000;
70+
}
71+
72+
p.changelog_footer {
73+
margin-top: 1.5em;
74+
margin-left: 0.7em;
75+
font-style: italic;
76+
line-height: 90%;
77+
color: gray;
78+
font-family: Helvetica, Arial, sans-serif;
79+
}
80+
81+
p.changelog_footer a {
82+
text-decoration: none;
83+
color: inherit;
84+
}

template/template.html

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2+
<html xmlns="http://www.w3.org/1999/xhtml"><head>
3+
<title>$[#TITLE] – SVN ChangeLog</title>
4+
<link rel="stylesheet" href="svn-changelog.css" type="text/css">
5+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
6+
</head><body>
7+
<h1>$[#TITLE] – SVN ChangeLog</h1>
8+
<ul class="changelog_entries">
9+
$[#ENTRIES]
10+
</ul>
11+
<p class="changelog_footer">Generated by <a href="http://code.google.com/p/svnlogger">svnlogger 0.1</a></p>
12+
</body></html>

template/template_change.html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<li class="changelog_change"><span class="changelog_revision"><a id="$[#REVISION]" href="#$[#REVISION]">[$[#REVISION]]</a></span> <span class="changelog_files">$[#FILES]</span> <span class="changelog_message">$[#MESSAGE]</span></li>

template/template_entry.html

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<li class="changelog_entry"><span class="changelog_date">$[#DATE]</span> <span class="changelog_author">$[#AUTHOR]</span></li>
2+

0 commit comments

Comments
 (0)