mirror of
https://github.com/vitalif/viewvc-4intranet
synced 2019-04-16 04:14:59 +03:00
Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
fd44add349 |
6
CHANGES
6
CHANGES
@@ -1,8 +1,12 @@
|
|||||||
|
Version 0.9.4 (released 17-Aug-2005)
|
||||||
|
|
||||||
|
* security fix: omit forbidden/hidden modules from query results.
|
||||||
|
|
||||||
Version 0.9.3 (released 17-May-2005)
|
Version 0.9.3 (released 17-May-2005)
|
||||||
|
|
||||||
* security fix: disallow bad "content-type" input [CAN-2004-1062]
|
* security fix: disallow bad "content-type" input [CAN-2004-1062]
|
||||||
* security fix: disallow bad "sortby" and "cvsroot" input [CAN-2002-0771]
|
* security fix: disallow bad "sortby" and "cvsroot" input [CAN-2002-0771]
|
||||||
* security fix: omit forbidden/hidden modules from tarballs [CAN-2002-0771]
|
* security fix: omit forbidden/hidden modules from tarballs [CAN-2004-0915]
|
||||||
|
|
||||||
Version 0.9.2 (released 15-Jan-2001)
|
Version 0.9.2 (released 15-Jan-2001)
|
||||||
|
|
||||||
|
@@ -295,6 +295,12 @@ def build_commit(desc, files):
|
|||||||
ob.desc = ' '
|
ob.desc = ' '
|
||||||
|
|
||||||
for commit in files:
|
for commit in files:
|
||||||
|
dir_parts = filter(None, string.split(commit.GetDirectory(), '/'))
|
||||||
|
if dir_parts \
|
||||||
|
and ((dir_parts[0] == 'CVSROOT' and cfg.options.hide_cvsroot) \
|
||||||
|
or cfg.is_forbidden(dir_parts[0])):
|
||||||
|
continue
|
||||||
|
|
||||||
ctime = commit.GetTime()
|
ctime = commit.GetTime()
|
||||||
if not ctime:
|
if not ctime:
|
||||||
ctime = " ";
|
ctime = " ";
|
||||||
|
@@ -25,7 +25,7 @@
|
|||||||
# -----------------------------------------------------------------------
|
# -----------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
|
|
||||||
__version__ = '0.9.3'
|
__version__ = '0.9.4'
|
||||||
|
|
||||||
#########################################################################
|
#########################################################################
|
||||||
#
|
#
|
||||||
|
@@ -13,7 +13,7 @@
|
|||||||
</td>
|
</td>
|
||||||
<td align=center valign=top bgcolor="white" width="1%">
|
<td align=center valign=top bgcolor="white" width="1%">
|
||||||
<b>Quickstart:</b>
|
<b>Quickstart:</b>
|
||||||
<a href="viewcvs-0.9.3.tar.gz">download</a>
|
<a href="viewcvs-0.9.4.tar.gz">download</a>
|
||||||
</td>
|
</td>
|
||||||
<td width="1%"><a href="http://sourceforge.net/"><img border=0
|
<td width="1%"><a href="http://sourceforge.net/"><img border=0
|
||||||
src="http://sourceforge.net/sflogo.php?group_id=18760&type=1"></a><br><a href="http://sourceforge.net/projects/viewcvs/">ViewCVS project page</a>
|
src="http://sourceforge.net/sflogo.php?group_id=18760&type=1"></a><br><a href="http://sourceforge.net/projects/viewcvs/">ViewCVS project page</a>
|
||||||
@@ -210,10 +210,10 @@
|
|||||||
The software is available for download:
|
The software is available for download:
|
||||||
</p>
|
</p>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<a href="viewcvs-0.9.3.tar.gz">Version 0.9.3 of ViewCVS as a gzipped
|
<a href="viewcvs-0.9.4.tar.gz">Version 0.9.4 of ViewCVS as a gzipped
|
||||||
tar</a>
|
tar</a>
|
||||||
<br>
|
<br>
|
||||||
<a href="viewcvs-0.9.3.zip">Version 0.9.3 of ViewCVS as a ZIP
|
<a href="viewcvs-0.9.4.zip">Version 0.9.4 of ViewCVS as a ZIP
|
||||||
file</a>
|
file</a>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<p>
|
<p>
|
||||||
|
Reference in New Issue
Block a user