No changes between revisions
/Websvn/include/distconfig.inc
0,0 → 1,375
<?php
# vim:et:ts=3:sts=3:sw=3:fdm=marker:
 
// WebSVN - Subversion repository viewing via the web using PHP
// Copyright © 2004-2006 Tim Armes, Matt Sicker
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// 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
//
// --
//
// config.inc
//
// Configuration parameters
 
// --- FOLLOW THE INSTRUCTIONS BELOW TO CONFIGURE YOUR SETUP ---
 
// {{{ PLATFORM CONFIGURATION ---
 
// Uncomment the next line if your running a windows server
//
// $config->setServerIsWindows();
 
// Configure these lines if your commands aren't on your path.
//
// $config->setSVNCommandPath('Path/to/svn and svnlook/ e.g. c:\\program files\\subversion\\bin');
// $config->setDiffPath('Path/to/diff/command/');
 
// For syntax colouring, if option enabled...
// $config->setEnscriptPath('Path/to/enscript/command/');
// $config->setSedPath('Path/to/sed/command/');
 
// For delivered tarballs, if option enabled...
// $config->setTarPath('Path/to/tar/command/');
 
// For delivered GZIP'd files and tarballs, if option enabled...
// $config->setGZipPath('Path/to/gzip/command/');
 
// }}}
 
// {{{ REPOSITORY SETUP ---
 
// There are 2 methods for defining the repositiories available on the system. Either you list
// them by hand, in which case you can give each one the name of your choice, or you use the
// parent path function, in which case the name of the directory is used as the repository name.
//
// In all cases, you may optionally supply a group name to the repositories. This is useful in the
// case that you need to separate your projects. Grouped Repositories are referred to using the
// convention GroupName.RepositoryName
//
// Performance is much better on local repositories (e.g. accessed by file:///). However, you
// can also provide an interface onto a remote repository. In this case you should supply the
// username and password needed to access it.
//
// To configure the repositories by hand, copy the appropriate line below, uncomment it and
// replace the name and URL of your repository.
 
// Local repositories (without and with optional group):
//
// $config->addRepository('NameToDisplay', 'URL to repository (e.g. file:///c:/svn/proj)');
// $config->addRepository('NameToDisplay', 'URL to repository (e.g. file:///c:/svn/proj)', 'group');
//
// Remote repositories (without and with optional group):
//
// $config->addRepository('NameToDisplay', 'URL (e.g. http://path/to/rep)', NULL, 'username', 'password');
// $config->addRepository('NameToDisplay', 'URL (e.g. http://path/to/rep)', 'group', 'username', 'password');
//
// To use the parent path method, uncomment the newt line and and replace the path with your one. You
// can call the function several times if you have several parent paths. Note that in this case the
// path is a filesystem path
//
// $config->parentPath('Path/to/parent (e.g. c:\\svn)');
 
// }}}
 
// {{{ LOOK AND FEEL ---
//
// Uncomment ONLY the template file that you want.
 
$config->setTemplatePath("$locwebsvnreal/templates/Standard/");
// $config->setTemplatePath("$locwebsvnreal/templates/BlueGrey/");
// $config->setTemplatePath("$locwebsvnreal/templates/Zinn/");
 
// You may also specify a per repository template file by uncommenting and changing the following
// line as necessary. Use the convention "groupname.myrep" if your repository is in a group.
 
// $config->setTemplatePath('$locwebsvnreal/templates/Standard/', 'myrep'); // Access file for myrep
 
// The index page containing the projects may either be displayed as a flat view (the default),
// where grouped repositories are displayed as "GroupName.RepName" or as a tree view.
// In the case of a tree view, you may choose whether the entire tree is open by default.
 
// $config->useTreeIndex(false); // Tree index, closed by default
// $config->useTreeIndex(true); // Tree index, open by default
 
// By default, WebSVN displays a tree view onto the current directory. You can however
// choose to display a flat view of the current directory only, which may make the display
// load faster. Uncomment this line if you want that.
 
// $config->useFlatView();
 
// }}}
 
// {{{ LANGUAGE SETUP ---
 
// WebSVN uses the iconv module to convert messages from your system's character set to the
// UTF-8 output encoding. If you find that your log messages aren't displayed correctly then
// you'll need to change the value here.
//
// You may also specify the character encoding of the repository contents if different from
// the system encoding. This is typically the case for windows users, whereby the command
// line returns, for example, CP850 encoded strings, whereas the source files are encoded
// as iso-8859-1 by Windows based text editors. When display text file, WebSVN will convert
// them from the content encoding to the output encoding (UTF-8).
//
// WebSVN does its best to automate all this, so only use the following if it doesn't work
// "out of the box". Uncomment and change one of the examples below.
//
// $config->setInputEncoding('CP850'); // Encoding of result returned by svn command line, etc.
// $config->setContentEncoding('iso-8859-1'); // Content encoding of all your repositories // repositories
 
// You may also specify a content encoding on a per repository basis. Uncomment and copy this
// line as necessary.
//
// $config->setContentEncoding('iso-8859-1', 'MyEnc');
 
// Note for Windows users: To enable iconv you'll need to enable the extension in your php.ini file
// AND copy iconv.dll (not php_iconv.dll) to your Windows system folder. In most cases the correct
// encoding is set when you call $config->setServerIsWindows();.
 
// Note for *nix users. You'll need to have iconv compiled into your binary. The default input and
// output encodings are taken from your locale informations. Override these if they aren't correct.
 
// Uncomment the default language. If you want English then don't do anything here.
//
// include 'languages/catalan.inc';
// include 'languages/danish.inc';
// include 'languages/dutch.inc';
// include 'languages/finnish.inc';
// include 'languages/french.inc';
// include 'languages/german.inc';
// include 'languages/japanese.inc';
// include 'languages/korean.inc';
// include 'languages/norwegian.inc';
// include 'languages/polish.inc';
// include 'languages/portuguese.inc';
// include 'languages/russian.inc';
// include 'languages/schinese.inc';
// include 'languages/slovenian.inc';
// include 'languages/spanish.inc';
// include 'languages/swedish.inc';
// include 'languages/tchinese.inc';
// include 'languages/turkish.inc';
 
// }}}
 
// {{{ MULTIVIEWS ---
 
// Uncomment this line if you want to use MultiView to access the repository by, for example:
//
// http://servername/wsvn/repname/path/in/repository
//
// Note: The websvn directory will need to have Multiviews turned on in Apache, and you'll need to configure
// wsvn.php
 
// $config->useMultiViews();
 
// }}}
 
// {{{ ACCESS RIGHTS ---
 
// Uncomment this line if you want to use your Subversion access file to control access
// rights via WebSVN. For this to work, you'll need to set up the same Apache based authentication
// to the WebSVN (or wsvn) directory as you have for Subversion itself. More information can be
// found in install.txt
 
// $config->useAuthenticationFile('/path/to/accessfile'); // Global access file
 
// You may also specify a per repository access file by uncommenting and copying the following
// line as necessary. Use the convention 'groupname.myrep' if your repository is in a group.
 
// $config->useAuthenticationFile('/path/to/accessfile', 'myrep'); // Access file for myrep
 
// }}}
 
// {{{ FILE CONTENT ---
//
// You may wish certain file types to be GZIP'd and delieved to the user when clicked apon.
// This is useful for binary files and the like that don't display well in a browser window!
// Copy, uncomment and modify this line for each extension to which this rule should apply.
// (Don't forget the . before the extension. You don't need an index between the []'s).
// If you'd rather that the files were delivered uncompressed with the associated MIME type,
// then read below.
//
// $zipped[] = '.dll';
 
// Subversion controlled files have an svn:mime-type property that can
// be set on a file indicating its mime type. By default binary files
// are set to the generic appcliation/octet-stream, and other files
// don't have it set at all. WebSVN also has a built-in list of
// associations from file extension to MIME content type. (You can
// view this list in setup.inc).
//
// Determining the content-type: By default, if the svn:mime-type
// property exists and is different from application/octet-stream, it
// is used. Otherwise, if the built-in list has a contentType entry
// for the extension of the file, that is used. Otherwise, if the
// svn:mime-type property exists has the generic binary value of
// application/octet-stream, the file will be served as a binary
// file. Otherwise, the file will be brought up as ASCII text in the
// browser window (although this text may optionally be colourised.
// See below).
//
// Uncomment this if you want to ignore any svn:mime-type property on your
// files.
//
// $config->ignoreSvnMimeTypes();
//
// Uncomment this if you want skip WebSVN's custom mime-type handling
//
// $config->ignoreWebSVNContentTypes();
//
// Following the examples below, you can add new associations, modify
// the default ones or even delete them entirely (to show them in
// ASCII via WebSVN).
 
// $contentType['.c'] = 'plain/text'; // Create a new association
// $contentType['.doc'] = 'plain/text'; // Modify an existing one
// unset($contentType['.m'] // Remove a default association
 
// }}}
 
// {{{ TARBALLS ---
 
// You need tar and gzip installed on your system. Set the paths above if necessary
//
// Uncomment the line below to offer a tarball download option across all your
// repositories.
//
// $config->allowDownload();
//
// To change the global option for individual repositories, uncomment and replicate
// the required line below (replacing 'myrep' for the name of the repository to be changed).
// Use the convention 'groupname.myrep' if your repository is in a group.
 
// $config->allowDownload('myrep'); // Specifically allow downloading for 'myrep'
// $config->disallowDownload('myrep'); // Specifically disallow downloading for 'myrep'
 
// You can also choose the minimum directory level from which you'll allow downloading.
// A value of zero will allow downloading from the root. 1 will allow downloding of directories
// in the root, etc.
//
// If your project is arranged with trunk, tags and branches at the root level, then a value of 2
// would allow the downloading of directories within branches/tags while disallowing the download
// of the entire branches or tags directories. This would also stop downloading of the trunk, but
// see after for path exceptions.
//
// Change the line below to set the download level across all your repositories.
 
$config->setMinDownloadLevel(2);
 
// To change the level for individual repositories, uncomment and replicate
// the required line below (replacing 'myrep' for the name of the repository to be changed).
// Use the convention 'groupname.myrep' if your repository is in a group.
 
// $config->setMinDownloadLevel(2, 'myrep');
 
// Finally, you may add or remove certain directories (and their contents) either globally
// or on a per repository basis. Uncomment and copy the following lines as necessary. Note
// that the these are searched in the order than you give them until a match is made (with the
// exception that all the per repository exceptions are tested before the global ones). This means
// that you must disallow /a/b/c/ before you allow /a/b/ otherwise the allowed match on /a/b/ will
// stop any further searching, thereby allowing downloads on /a/b/c/.
 
// Global exceptions possibilties:
//
// $config->addAllowedDownloadException('/path/to/allowed/directory/');
// $config->addDisAllowedDownloadException('/path/to/disallowed/directory/');
//
// Per repository exception possibilties:
// Use the convention 'groupname.myrep' if your repository is in a group.
//
// $config->addAllowedDownloadException('/path/to/allowed/directory/', 'myrep');
// $config->addDisAllowedDownloadException('/path/to/disallowed/directory/', 'myrep');
 
// }}}
 
// {{{ COLOURISATION ---
 
// Uncomment this line if you want to use Enscript to colourise your file listings
//
// You'll need Enscript version 1.6 or higher AND Sed installed to use this feature.
// Set the path above.
//
// $config->useEnscript();
 
// Enscript need to be told what the contents of a file are so that it can be colourised
// correctly. WebSVN includes a predefined list of mappings from file extension to Enscript
// file type (viewable in setup.inc).
//
// Here you should add and other extensions not already listed or redefine the default ones. eg:
//
// $extEnscript['.pas'] = 'pascal';
//
// Note that extensions are case sensitive.
 
// }}}
 
// {{{ RSSFEED ---
 
// Uncomment this line if you wish to hide the RSS feed links across all repositories
//
// $config->hideRSS();
//
// To change the global option for individual repositories, uncomment and replicate
// the required line below (replacing 'myrep' for the name of the repository to be changed).
// Use the convention 'groupname.myrep' if your repository is in a group.
 
// $config->hideRSS('myrep'); // Specifically hide RSS links for 'myrep'
// $config->showRSS('myrep'); // Specifically show RSS links for 'myrep'
 
// }}}
 
// {{{ BUGTRAQ ---
 
// Uncomment this line if you wish to use bugtraq: properties to show links to your BugTracker
// from the log messages.
//
// $config->useBugtraqProperties();
//
// To change the global option for individual repositories, uncomment and replicate
// the required line below (replacing 'myrep' for the name of the repository to be changed).
// Use the convention 'groupname.myrep' if your repository is in a group.
 
// $config->useBugtraqProperties('myrep'); // Specifically use bugtraq properties for 'myrep'
// $config->ignoreBugtraqProperties('myrep'); // Specifically ignore bugtraq properties for 'myrep'
 
// }}}
 
// {{{ MISCELLANEOUS ---
 
// Comment out this if you don't have the right to use it. Be warned that you may need it however!
set_time_limit(0);
 
// Comment this line to turn off caching of repo information. This will slow down your browsing.
$config->setCachingOn();
 
// Number of spaces to expand tabs to in diff/listing view across all repositories
 
$config->expandTabsBy(8);
 
// To change the global option for individual repositories, uncomment and replicate
// the required line below (replacing 'myrep' for the name of the repository to be changed).
// Use the convention 'groupname.myrep' if your repository is in a group.
 
// $config->expandTabsBy(3, 'myrep'); // Expand Tabs by 3 for repository 'myrep'
 
// For installations without PHP5, a copy of PEAR's PHP Compat library is included.
// If you have your own version of Compat you wish to use, go ahead and specify here.
 
// $config->setPHPCompatPath('/usr/share/php/PHP/');
 
// }}}
?>
/Websvn/templates/MLAB/blame.tmpl
0,0 → 1,28
{BLAME START}
<h1>[websvn:repname]</h1>
[websvn:curdirlinks] - <h2> [lang:BLAMEFOR] [websvn:rev]</h2>
<p>
 
[websvn-test:noaccess]
[lang:NOACCESS]
[websvn-else]
<table border="1" class="blame">
<tr>
<th style="padding-bottom: 5px" align="left"><b>[lang:LINENO]</b></th>
<th style="padding-bottom: 5px" align="left"><b>[lang:REV]</b></th>
<th style="padding-bottom: 5px" align="left"><b>[lang:AUTHOR]</b></th>
<th style="padding-bottom: 5px" align="left"><b>[lang:LINE]</b></th>
</tr>
[websvn-startlisting]
<tr>
<td>[websvn:lineno]</td>
<td>[websvn:revision]</td>
<td>[websvn:author]</td>
<td>[websvn:line]</td>
</tr>
[websvn-endlisting]
</table>
[websvn-endtest]
{BLAME END}
/Websvn/templates/MLAB/collapse.js
0,0 → 1,169
/***********************************************
* Switch Content script- © Dynamic Drive (www.dynamicdrive.com)
* This notice must stay intact for legal use. Last updated April 2nd, 2005.
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/
 
var enablepersist="on" // Enable saving state of content structure using session cookies? (on/off)
var collapseprevious="yes" // Collapse previously open content when opening present? (yes/no)
 
var contractsymbol='<div class="minusbox">-</div>' // HTML for contract symbol. For image, use: <img src="${prefix}whatever.gif">
var expandsymbol='<div class="plusbox">+</div>' // HTML for expand symbol.
var expandonload=false
 
if (document.getElementById)
{
document.write('<style type="text/css">')
document.write('.switchcontent{display:none;}')
document.write('</style>')
}
 
function getElementbyClass(rootobj, classname)
{
var temparray=new Array()
var inc=0
for (i=0; i<rootobj.length; i++)
{
if (rootobj[i].className==classname)
temparray[inc++]=rootobj[i]
}
return temparray
}
 
function sweeptoggle(ec)
{
var thestate=(ec=="expand")? "block" : "none"
var inc=0
while (ccollect[inc])
{
ccollect[inc].style.display=thestate
inc++
}
revivestatus()
collapseprevious = (ec=="expand")? "no" : "yes"
}
 
 
function contractcontent(omit)
{
var inc=0
while (ccollect[inc])
{
if (ccollect[inc].id!=omit)
ccollect[inc].style.display="none"
inc++
}
}
 
function expandcontent(curobj, cid)
{
var spantags=curobj.getElementsByTagName("SPAN")
var showstateobj=getElementbyClass(spantags, "showstate")
if (ccollect.length>0)
{
if (collapseprevious=="yes")
contractcontent(cid)
document.getElementById(cid).style.display=(document.getElementById(cid).style.display!="block")? "block" : "none"
if (showstateobj.length>0) //if "showstate" span exists in header
{
if (collapseprevious=="no")
showstateobj[0].innerHTML=(document.getElementById(cid).style.display=="block")? contractsymbol : expandsymbol
else
revivestatus()
}
}
}
 
function revivecontent()
{
contractcontent("omitnothing")
selectedItem=getselectedItem()
selectedComponents=selectedItem.split("|")
collapseprevious=selectedComponents[0]
for (i=1; i<selectedComponents.length-1; i++)
document.getElementById(selectedComponents[i]).style.display="block"
}
 
function revivestatus()
{
var inc=0
while (statecollect[inc])
{
if (ccollect[inc].style.display=="block")
statecollect[inc].innerHTML=contractsymbol
else
statecollect[inc].innerHTML=expandsymbol
inc++
}
}
 
function get_cookie(Name)
{
var search = Name + "="
var returnvalue = "";
if (document.cookie.length > 0)
{
offset = document.cookie.indexOf(search)
if (offset != -1)
{
offset += search.length
end = document.cookie.indexOf(";", offset);
if (end == -1) end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))
}
}
return returnvalue;
}
 
function getselectedItem()
{
if (get_cookie(window.location.pathname) != "")
{
selectedItem=get_cookie(window.location.pathname)
return selectedItem
}
else
return ""
}
 
function saveswitchstate()
{
var inc=0, selectedItem=collapseprevious+"|"
while (ccollect[inc])
{
if (ccollect[inc].style.display=="block")
selectedItem+=ccollect[inc].id+"|"
inc++
}
document.cookie=window.location.pathname+"="+selectedItem
}
 
function do_onload()
{
uniqueidn=window.location.pathname+"firsttimeload"
var alltags=document.all? document.all : document.getElementsByTagName("*")
ccollect=getElementbyClass(alltags, "switchcontent")
statecollect=getElementbyClass(alltags, "showstate")
if (enablepersist=="on" && ccollect.length>0)
{
document.cookie=(get_cookie(uniqueidn)=="")? uniqueidn+"=1" : uniqueidn+"=0"
firsttimeload=(get_cookie(uniqueidn)==1)? 1 : 0 //check if this is 1st page load
if (!firsttimeload)
revivecontent()
}
if (ccollect.length>0 && statecollect.length>0)
revivestatus()
if (expandonload)
sweeptoggle('expand')
}
 
if (window.addEventListener)
window.addEventListener("load", do_onload, false)
else if (window.attachEvent)
window.attachEvent("onload", do_onload)
else if (document.getElementById)
window.onload=do_onload
 
if (enablepersist=="on" && document.getElementById)
window.onunload=saveswitchstate
/Websvn/templates/MLAB/compare.tmpl
0,0 → 1,67
{COMPARE START}
<h1>[websvn:repname]</h1>
<p>
[websvn-test:noaccess]
[lang:NOACCESS]
[websvn-else]
<center>
[websvn:compare_form]
<table>
<tr><td>
<table class="outlined">
<tr><td>[lang:COMPPATH]&nbsp;</td><td>[websvn:compare_path1input] [lang:REV] [websvn:compare_rev1input]</td></tr>
<tr><td>[lang:WITHPATH]&nbsp;</td><td>[websvn:compare_path2input] [lang:REV] [websvn:compare_rev2input]</td></tr>
</table>
</td><tr>
<tr><td align="center">[websvn:compare_submit]</td></tr>
</table>
[websvn:compare_endform]
</center>
<hr>
[websvn-test:success]
[lang:CONVFROM] <b>[websvn:path1] ([lang:REV] [websvn:rev1])</b> [lang:TO] <b>[websvn:path2] ([lang:REV] [websvn:rev2])</b>
<p>
[websvn:revlink]
[websvn-endtest]
<p>
[websvn-startlisting]
[websvn-test:newpath]
<p>
<div class="newpath">
<b>[websvn:newpath]</b><br>
[websvn-endtest]
[websvn-test:info]
[websvn:info]<br>
[websvn-endtest]
[websvn-test:difflines]
<div class="difflines">
<p>
[websvn:difflines]<br>
<table class="diff" cellspacing="0">
[websvn-endtest]
[websvn-test:diffclass]
<tr><td class="[websvn:diffclass]">[websvn:line]</td></tr>
[websvn-endtest]
[websvn-test:enddifflines]
</table>
</div>
[websvn-endtest]
[websvn-test:endpath]
</div>
<p><hr>
[websvn-endtest]
[websvn-test:properties]
<p><i>[lang:PROPCHANGES]</i><p>
[websvn-endtest]
[websvn-endlisting]
</table>
[websvn-endtest]
{COMPARE END}
/Websvn/templates/MLAB/diff.tmpl
0,0 → 1,41
{DIFF START}
[websvn-test:noaccess]
[lang:NOACCESS]
[websvn-else]
[websvn-test:noprev]
No Previous Revision
[websvn-else]
<h1>[websvn:repname]</h1>
[websvn:curdirlinks] - <h2>[lang:DIFFREVS] <b>[websvn:rev2]</b> [lang:AND] <b>[websvn:rev1]</b></h2>
<p>
<p><center>
[websvn:showcompactlink]
[websvn:showalllink]
</center>
<p>
<table class="diff">
<tr>
<th style="padding-bottom: 5px" width="50%" align="left"><b>[lang:REV] [websvn:rev2]</b></th>
<th width="5"></th>
<th style="padding-bottom: 5px" width="50%" align="left"><b>[lang:REV] [websvn:rev1]</b></th>
</tr>
[websvn-startlisting]
[websvn-test:rev1lineno]
<tr>
<td width="50%" style="padding: 3px 0 3px 0" align="center"><b>[lang:LINE] [websvn:rev1lineno]...</b></td>
<td width="5"></td>
<td width="50%" style="padding: 3px 0 3px 0" align="center"><b>[lang:LINE] [websvn:rev2lineno]...</b></td>
<tr>
[websvn-else]
<tr><td class="[websvn:rev1diffclass]">[websvn:rev1line]</td>
<td width="5"></td>
<td class="[websvn:rev2diffclass]">[websvn:rev2line]</td></tr>
[websvn-endtest]
[websvn-endlisting]
</table>
[websvn-endtest]
[websvn-endtest]
{DIFF END}
/Websvn/templates/MLAB/directory.tmpl
0,0 → 1,117
<div style="display:none">{DIRECTORY START}</div>
<h1>[websvn:repname]</h1>
 
[websvn-test:noaccess]
[lang:NOACCESS]
[websvn-else]
[websvn-test:restricted]
[websvn-else]
<p><b>[lang:PATH]:</b> [websvn:path]
<br><b>[lang:REV]:</b> [websvn:rev]
[websvn-test:goyoungestlink]
- [websvn:goyoungestlink]
[websvn-endtest]
<br><b>[lang:LASTMOD]:</b> [lang:REV] [websvn:lastchangedrev] - [websvn:author] - [websvn:date]
<br><b>[lang:LOGMSG]:</b><br>
[websvn:log]
<p>
[websvn-test:hidechanges]
<p>[websvn:showchangeslink]
[websvn-endtest]
[websvn-test:showchanges]
<p><b>[lang:CHANGES]:</b><br>
<p>[websvn:hidechangeslink]
<p>
<center>
<table border=1 class="bordered" cellpadding=4>
<tr>
<th><center><b>[lang:NEWFILES]</b></center></th>
<th><center><b>[lang:CHANGEDFILES]</b></center></th>
<th><center><b>[lang:DELETEDFILES]</b></center></th>
</tr>
<tr>
<td valign="top">
[websvn-test:newfilesbr]
[websvn:newfilesbr]
[websvn-else]
&nbsp;
[websvn-endtest]
</td>
<td valign="top">
[websvn-test:changedfilesbr]
[websvn:changedfilesbr]
[websvn-else]
&nbsp;
[websvn-endtest]
</td>
<td valign="top">
[websvn-test:deletedfilesbr]
[websvn:deletedfilesbr]
[websvn-else]
&nbsp;
[websvn-endtest]
</td>
</tr>
</table>
</center>
[websvn-endtest]
[websvn-endtest]
[websvn-defineicons]
dir=&nbsp;&nbsp;&nbsp;&nbsp;
diropen=&nbsp;&nbsp;&nbsp;&nbsp;
i-node=&nbsp;&nbsp;&nbsp;&nbsp;
t-node=&nbsp;&nbsp;&nbsp;&nbsp;
l-node=&nbsp;&nbsp;&nbsp;&nbsp;
e-node=&nbsp;&nbsp;&nbsp;&nbsp;
*=&nbsp;&nbsp;&nbsp;&nbsp;
[websvn-enddefineicons]
<p><hr>
<b>[lang:CURDIR]:</b> [websvn:curdirlinks] - [websvn:curdirloglink]
[websvn-test:curdircomplink]
- [websvn:curdircomplink]
[websvn-endtest]
[websvn-test:curdirdllink]
- [websvn:curdirdllink]
[websvn-endtest]
[websvn-test:curdirrsslink]
- [websvn:curdirrssanchor]<img style="border: 0;" src="[websvn:locwebsvnhttp]/templates/MLAB/xml.gif" width="36" height="14" alt="[lang:RSSFEED]"></a>
[websvn-endtest]
<p>
[websvn:compare_form]
<table class="outlined" cellpadding=2>
<tr>
<th width="100%"><b>[lang:PATH]</b></th>
<th><b>[lang:NOBR][lang:LOG][lang:ENDNOBR]</b></th>
[websvn-test:allowdownload]
<th><b>[lang:TARBALL]</b></th>
[websvn-endtest]
[websvn-test:curdirrsslink]
<th><b>[lang:RSSFEED]</b></th>
[websvn-endtest]
</tr>
[websvn-startlisting]
<tr>
<td class="[websvn:rowparity]">
[websvn:compare_box]
[websvn-treenode]
[websvn:filelink]
</td>
<td class="[websvn:rowparity]">[lang:NOBR][websvn:fileviewloglink][lang:ENDNOBR]</td>
[websvn-test:allowdownload]
<td class="[websvn:rowparity]">[websvn:fileviewdllink]</td>
[websvn-endtest]
[websvn-test:curdirrsslink]
<td class="row[websvn:rowparity]">[websvn:rssanchor]<img style="border: 0;" src="[websvn:locwebsvnhttp]/templates/MLAB/xml.gif" width="36" height="14" alt="[lang:RSSFEED]"></a></td>
[websvn-endtest]
</tr>
[websvn-endlisting]
</table>
<p>
[websvn:compare_submit]
[websvn:compare_endform]
[websvn-endtest]
<div style="display:none">{DIRECTORY END}</div>
/Websvn/templates/MLAB/file.tmpl
0,0 → 1,18
{FILE START}
<h1>[websvn:repname]</h1>
 
[websvn-test:noaccess]
[lang:NOACCESS]
[websvn-else]
[websvn:curdirlinks] - [lang:REV] [websvn:rev]<p>
[websvn-test:goyoungestlink]
[websvn:goyoungestlink]<p>
[websvn-endtest]
[websvn:prevdifflink] - [websvn:blamelink]
<p>
<table width="100%" border=0><tr><td>
[websvn-getlisting]
</td></tr></table>
[websvn-endtest]
{FILE END}
/Websvn/templates/MLAB/footer.tmpl
0,0 → 1,21
{FOOTER}
<p><center><font size="-1"><i><b>[lang:POWERED] v[websvn:version]</b></i></font></center>
</div>
 
<!-- AUTOINCLUDE START "Page/Footer.cs.ihtml" DO NOT REMOVE -->
<!-- ============== PATIÈKA ============== -->
<div class="Footer">
<script type="text/javascript">
<!--
SetRelativePath("../");
DrawFooter();
// -->
</script>
<noscript>
<b> Pro zobrazení (vložení) hlavièky je potøeba JavaScript </b>
</noscript>
</div>
<!-- AUTOINCLUDE END -->
 
</body>
</html>
/Websvn/templates/MLAB/header.tmpl
0,0 → 1,58
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=[websvn:charset]">
<!-- AUTOINCLUDE START "Page/Head.cs.ihtml" DO NOT REMOVE -->
<link rel="StyleSheet" href="http://test.mlab.cz/Web/CSS/MLAB.css" type="text/css" title="MLAB základní styl" />
<link rel="shortcut icon" type="image/x-icon" href="http://test.mlab.cz/Web/PIC/MLAB.ico" />
<script language="JavaScript" type="text/javascript" src="http://test.mlab.cz/Web/JS/MLAB_Menu.js"></script>
<!-- AUTOINCLUDE END -->
<script type="text/javascript" src="[websvn:locwebsvnhttp]/templates/MLAB/collapse.js"></script>
<title> Subversion Server </title>
[websvn-test:curdirrsslink
<link rel="alternate" type="application/rss+xml" title="WebSVN RSS" href="[websvn:curdirrsshref]">
[websvn-endtest]
</head>
<body lang="[lang:LANG]">
<!-- AUTOINCLUDE START "Page/Header.cs.ihtml" DO NOT REMOVE -->
<!-- ============== HLAVICKA ============== -->
<div class="Header">
<script type="text/javascript">
<!--
SetRelativePath("../");
DrawHeader();
// -->
</script>
<noscript>
<b> Pro zobrazení (vložení) hlavièky je potøeba JavaScript </b>
</noscript>
</div>
<!-- AUTOINCLUDE END -->
 
<!-- AUTOINCLUDE START "Page/Menu.cs.ihtml" DO NOT REMOVE -->
<!-- ============== MENU ============== -->
<div class="Menu">
<script type="text/javascript">
<!--
SetRelativePath("../");
DrawMenu();
// -->
</script>
<noscript>
<b> Pro zobrazení (vložení) menu je potøeba JavaScript </b>
</noscript>
</div>
<!-- AUTOINCLUDE END -->
<div class="Text">
<div style="float: right">
[websvn:lang_form]
[websvn:lang_select]
[websvn:lang_submit]
[websvn:lang_endform]
</div>
<div style="float: right">
[websvn:projects_form]
[websvn:projects_select]
[websvn:projects_submit]
[websvn:projects_endform]
</div>
/Websvn/templates/MLAB/index.tmpl
0,0 → 1,37
{INDEX START}
[websvn-test:flatview]
<table border=0 cellspacing=0 cellpadding=0 align="center">
<tr>
<td align="center">
<br><h2>[lang:PROJECTS]:</h2>
<table border=0>
<tr><td><ul>
[websvn-startlisting]
<li><strong>[websvn:projlink]</strong></li>
[websvn-endlisting]
</ul></td></tr>
</table>
</td>
</tr>
</table>
[websvn-else]
<table border=0 cellspacing=0 cellpadding=0 align="center">
<tr>
<td align="center">
<br><h2>[lang:PROJECTS]:</h2>
<table border=0>
<tr><td>
[websvn-startlisting]
[websvn-test:isprojlink]
<div style="padding: 3px">[websvn:listitem]</div>
[websvn-else]
[websvn:listitem]
[websvn-endtest]
[websvn-endlisting]
</td></tr>
</table>
</td>
</tr>
</table>
[websvn-endtest]
{INDEX END}
/Websvn/templates/MLAB/log.tmpl
0,0 → 1,64
{LOG START}
<h1>[websvn:repname] - [lang:REV] [websvn:rev]</h1>
 
[websvn-test:noaccess]
[lang:NOACCESS]
[websvn-else]
[websvn:curdirlinks]<p>
[websvn-test:goyoungestlink]
[websvn:goyoungestlink]<p>
[websvn-endtest]
<center>
[websvn:logsearch_form]
<b>[lang:FILTER]</b><p>
[lang:STARTLOG]:[websvn:logsearch_startbox] [lang:ENDLOG]:[websvn:logsearch_endbox] [lang:MAXLOG]:[websvn:logsearch_maxbox] [lang:SEARCHLOG]:[websvn:logsearch_inputbox]
[websvn:logsearch_submit]
[websvn-test:logsearch_clearloglink]
<p><font size="-1">[websvn:logsearch_clearloglink]</font><p>
[websvn-endtest]
[websvn:logsearch_endform]
</center>
[websvn-test:logsearch_nomatches]
<center>[lang:NORESULTS]</center>
[websvn-endtest]
[websvn-test:error]
<center>[websvn:error]</center>
[websvn-endtest]
 
[websvn-test:logsearch_resultsfound]
[websvn:compare_form]
<table border=1 class="outlined" width="100%" cellpadding=2>
<tr>
<th>[lang:REV]</th>
<th>[lang:PATH]</th>
<th>[lang:AUTHOR]</th>
<th>[lang:AGE]</th>
<th>[lang:LOGMSG]</th>
</tr>
[websvn-startlisting]
<tr>
<td valign="top" class="[websvn:rowparity]"><nobr>[websvn:compare_box][websvn:revlink]</nobr></td>
<td valign="top" class="[websvn:rowparity]">[websvn:revpathlink]</td>
<td valign="top" class="[websvn:rowparity]">[websvn:revauthor]</td>
<td valign="top" class="[websvn:rowparity]">[websvn:revage]</td>
<td valign="top" class="[websvn:rowparity]">[websvn:revlog]</td>
</tr>
[websvn-endlisting]
</table>
<p>
[websvn:compare_submit]
[websvn:compare_endform]
[websvn-endtest]
[websvn-test:logsearch_nomorematches]
<p><center>[lang:NOMORERESULTS]</center>
[websvn-endtest]
<p><center>[websvn:logsearch_moreresultslink]</center>
<p><center>[websvn:pagelinks]<p>[websvn:showalllink]</center>
[websvn-endtest]
{LOG END}
/Websvn/templates/MLAB/xml.gif
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/Websvn/templates/Standard/blame.tmpl
1,5 → 1,5
{BLAME START}
<h1>[websvn:repname]</h1>
<div align="right">[websvn:projects_form][websvn:projects_select][websvn:projects_submit][websvn:projects_endform]</div>
<h2>[websvn:repname]</h2>
[websvn:curdirlinks] - <h2> [lang:BLAMEFOR] [websvn:rev]</h2>
<p>
 
6,7 → 6,7
[websvn-test:noaccess]
[lang:NOACCESS]
[websvn-else]
<table border="1" class="blame">
<table border="1" class="blame" width="100%">
<tr>
<th style="padding-bottom: 5px" align="left"><b>[lang:LINENO]</b></th>
<th style="padding-bottom: 5px" align="left"><b>[lang:REV]</b></th>
24,5 → 24,4
[websvn-endlisting]
</table>
[websvn-endtest]
{BLAME END}
[websvn-endtest]
/Websvn/templates/Standard/compare.tmpl
1,6 → 1,6
{COMPARE START}
<h1>[websvn:repname]</h1>
<p>
<div align="right">[websvn:projects_form][websvn:projects_select][websvn:projects_submit][websvn:projects_endform]</div>
<h2>[websvn:repname]</h2>
<p>
[websvn-test:noaccess]
[lang:NOACCESS]
[websvn-else]
64,4 → 64,3
[websvn-endlisting]
</table>
[websvn-endtest]
{COMPARE END}
/Websvn/templates/Standard/diff.tmpl
1,4 → 1,3
{DIFF START}
[websvn-test:noaccess]
[lang:NOACCESS]
[websvn-else]
5,7 → 4,8
[websvn-test:noprev]
No Previous Revision
[websvn-else]
<h1>[websvn:repname]</h1>
<div align="right">[websvn:projects_form][websvn:projects_select][websvn:projects_submit][websvn:projects_endform]</div>
<h2>[websvn:repname]</h2>
[websvn:curdirlinks] - <h2>[lang:DIFFREVS] <b>[websvn:rev2]</b> [lang:AND] <b>[websvn:rev1]</b></h2>
<p>
14,7 → 14,7
[websvn:showalllink]
</center>
<p>
<table class="diff">
<table class="diff" width="100%">
<tr>
<th style="padding-bottom: 5px" width="50%" align="left"><b>[lang:REV] [websvn:rev2]</b></th>
<th width="5"></th>
38,4 → 38,3
</table>
[websvn-endtest]
[websvn-endtest]
{DIFF END}
/Websvn/templates/Standard/directory.tmpl
1,4 → 1,5
<div style="display:none">{DIRECTORY START}</div>
 
<div align="right">[websvn:projects_form][websvn:projects_select][websvn:projects_submit][websvn:projects_endform]</div>
<h1>[websvn:repname]</h1>
 
[websvn-test:noaccess]
77,12 → 78,12
- [websvn:curdirdllink]
[websvn-endtest]
[websvn-test:curdirrsslink]
- [websvn:curdirrssanchor]<img style="border: 0;" src="[websvn:locwebsvnhttp]/templates/MLAB/xml.gif" width="36" height="14" alt="[lang:RSSFEED]"></a>
- [websvn:curdirrssanchor]<img style="border: 0;" src="[websvn:locwebsvnhttp]/templates/Standard/xml.gif" width="36" height="14" alt="[lang:RSSFEED]"></a>
[websvn-endtest]
<p>
[websvn:compare_form]
<table class="outlined" cellpadding=2>
<table class="outlined" width="100%" cellpadding=2>
<tr>
<th width="100%"><b>[lang:PATH]</b></th>
<th><b>[lang:NOBR][lang:LOG][lang:ENDNOBR]</b></th>
105,7 → 106,7
<td class="[websvn:rowparity]">[websvn:fileviewdllink]</td>
[websvn-endtest]
[websvn-test:curdirrsslink]
<td class="row[websvn:rowparity]">[websvn:rssanchor]<img style="border: 0;" src="[websvn:locwebsvnhttp]/templates/MLAB/xml.gif" width="36" height="14" alt="[lang:RSSFEED]"></a></td>
<td class="row[websvn:rowparity]">[websvn:rssanchor]<img style="border: 0;" src="[websvn:locwebsvnhttp]/templates/Standard/xml.gif" width="36" height="14" alt="[lang:RSSFEED]"></a></td>
[websvn-endtest]
</tr>
[websvn-endlisting]
113,5 → 114,4
<p>
[websvn:compare_submit]
[websvn:compare_endform]
[websvn-endtest]
<div style="display:none">{DIRECTORY END}</div>
[websvn-endtest]
/Websvn/templates/Standard/file.tmpl
1,6 → 1,7
{FILE START}
<h1>[websvn:repname]</h1>
 
<div align="right">[websvn:projects_form][websvn:projects_select][websvn:projects_submit][websvn:projects_endform]</div>
<h2>[websvn:repname]</h2>
 
[websvn-test:noaccess]
[lang:NOACCESS]
[websvn-else]
14,5 → 15,4
<table width="100%" border=0><tr><td>
[websvn-getlisting]
</td></tr></table>
[websvn-endtest]
{FILE END}
[websvn-endtest]
/Websvn/templates/Standard/footer.tmpl
1,21 → 1,3
{FOOTER}
<p><center><font size="-1"><i><b>[lang:POWERED] v[websvn:version]</b></i></font></center>
</div>
 
<!-- AUTOINCLUDE START "Page/Footer.cs.ihtml" DO NOT REMOVE -->
<!-- ============== PATIÈKA ============== -->
<div class="Footer">
<script type="text/javascript">
<!--
SetRelativePath("../");
DrawFooter();
// -->
</script>
<noscript>
<b> Pro zobrazení (vložení) hlavièky je potøeba JavaScript </b>
</noscript>
</div>
<!-- AUTOINCLUDE END -->
 
</body>
</html>
/Websvn/templates/Standard/header.tmpl
1,58 → 1,73
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=[websvn:charset]">
<!-- AUTOINCLUDE START "Page/Head.cs.ihtml" DO NOT REMOVE -->
<link rel="StyleSheet" href="http://test.mlab.cz/Web/CSS/MLAB.css" type="text/css" title="MLAB základní styl" />
<link rel="shortcut icon" type="image/x-icon" href="http://test.mlab.cz/Web/PIC/MLAB.ico" />
<script language="JavaScript" type="text/javascript" src="http://test.mlab.cz/Web/JS/MLAB_Menu.js"></script>
<!-- AUTOINCLUDE END -->
<script type="text/javascript" src="[websvn:locwebsvnhttp]/templates/MLAB/collapse.js"></script>
<title> Subversion Server </title>
[websvn-test:curdirrsslink
<link rel="alternate" type="application/rss+xml" title="WebSVN RSS" href="[websvn:curdirrsshref]">
[websvn-endtest]
</head>
<body lang="[lang:LANG]">
<!-- AUTOINCLUDE START "Page/Header.cs.ihtml" DO NOT REMOVE -->
<!-- ============== HLAVICKA ============== -->
<div class="Header">
<head>
<meta http-equiv="content-type" content="text/html;charset=[websvn:charset]">
<link href="[websvn:locwebsvnhttp]/templates/Standard/styles.css" rel="stylesheet" media="screen">
<script type="text/javascript" src="[websvn:locwebsvnhttp]/templates/Standard/collapse.js"></script>
<script type="text/javascript">
<!--
SetRelativePath("../");
DrawHeader();
// -->
function checkCB(chBox)
{
count = 0
first = null
f = chBox.form
for (i = 0 ; i < f.elements.length ; i++)
if (f.elements[i].type == 'checkbox' && f.elements[i].checked)
{
if (first == null && f.elements[i] != chBox)
first = f.elements[i]
count += 1
}
if (count > 2)
{
first.checked = false
count -= 1
}
 
[websvn-test:opentree]
expandonload = true
[websvn-endtest]
 
}
</script>
<noscript>
<b> Pro zobrazení (vložení) hlavièky je potøeba JavaScript </b>
</noscript>
</div>
<!-- AUTOINCLUDE END -->
<title>
WebSVN
[websvn-test:repname]
- [websvn:repname]
[websvn-endtest]
[websvn-test:action]
- [websvn:action]
[websvn-endtest]
[websvn-test:rev2]
[websvn-test:path2]
- [websvn:safepath1] [lang:REV] [websvn:rev1] [lang:AND] [websvn:safepath2] [lang:REV] [websvn:rev2]
[websvn-else]
- [lang:REV] [websvn:rev1] [lang:AND] [websvn:rev2]
[websvn-endtest]
[websvn-else]
[websvn-test:rev]
- [lang:REV] [websvn:rev]
[websvn-endtest]
[websvn-endtest]
[websvn-test:path]
- [websvn:safepath]
[websvn-endtest]
</title>
 
<!-- AUTOINCLUDE START "Page/Menu.cs.ihtml" DO NOT REMOVE -->
<!-- ============== MENU ============== -->
<div class="Menu">
<script type="text/javascript">
<!--
SetRelativePath("../");
DrawMenu();
// -->
</script>
<noscript>
<b> Pro zobrazení (vložení) menu je potøeba JavaScript </b>
</noscript>
</div>
<!-- AUTOINCLUDE END -->
<div class="Text">
<div style="float: right">
[websvn:lang_form]
[websvn:lang_select]
[websvn:lang_submit]
[websvn:lang_endform]
</div>
<div style="float: right">
[websvn:projects_form]
[websvn:projects_select]
[websvn:projects_submit]
[websvn:projects_endform]
</div>
[websvn-test:curdirrsslink]
<link rel="alternate" type="application/rss+xml" title="WebSVN RSS" href="[websvn:curdirrsshref]">
[websvn-endtest]
 
</head>
<body>
<table width="100%" border="0">
<tr>
<td width="33%">&nbsp;</td>
<td width="33%" align="center"><h1>[lang:SERVER]</h1></td>
<td width="33%"><div style="float: right">[websvn:lang_form][websvn:lang_select][websvn:lang_submit][websvn:lang_endform]</div></td>
</tr>
</table>
 
<hr>
<p>
/Websvn/templates/Standard/index.tmpl
1,4 → 1,3
{INDEX START}
[websvn-test:flatview]
<table border=0 cellspacing=0 cellpadding=0 align="center">
<tr>
34,4 → 33,3
</tr>
</table>
[websvn-endtest]
{INDEX END}
/Websvn/templates/Standard/log.tmpl
1,6 → 1,7
{LOG START}
<h1>[websvn:repname] - [lang:REV] [websvn:rev]</h1>
 
<div align="right">[websvn:projects_form][websvn:projects_select][websvn:projects_submit][websvn:projects_endform]</div>
<h2>[websvn:repname] - [lang:REV] [websvn:rev]</h2>
 
[websvn-test:noaccess]
[lang:NOACCESS]
[websvn-else]
60,5 → 61,4
<p><center>[websvn:logsearch_moreresultslink]</center>
<p><center>[websvn:pagelinks]<p>[websvn:showalllink]</center>
[websvn-endtest]
{LOG END}
[websvn-endtest]
/Websvn/templates/Standard/styles.css
0,0 → 1,93
body
{
font-family: Arial, Helvetica, Geneva, Swiss, SunSans-Regular, sans-serif;
background-color: white;
margin: 20px;
padding: 0px
}
 
h1
{
color: #99007E;
font-size: 30px;
font-weight: normal;
font-family: Arial, Helvetica, Geneva, Swiss, SunSans-Regular, sans-serif;
text-decoration: none;
}
 
hr { color: #99007E; background-color: #99007E }
 
.highlight { color: #99007E; font-style: italic; }
 
table.bordered, table.outlined, table.blame
{
border-collapse: collapse;
border: solid 2px #99007E;
}
 
.bordered td, .bordered th
{
border: solid 2px #99007E;
}
 
.outlined td
{
padding: 0px 5px 0px 5px;
}
 
.outlined th, .blame th
{
padding: 5px 5px 5px 5px;
font-weight: bold;
border: solid 2px #99007E;
}
 
.outlined td, .blame td
{
padding: 1px 5px 1px 5px;
border-right: solid 2px #99007E;
border-bottom: solid 1px #F0F0F0;
}
 
td.diffdeleted
{
font-size: 11px;
background-color: red;
}
 
td.diffchanged
{
font-size: 11px;
background-color: yellow;
}
 
td.diffadded
{
font-size: 11px;
background-color: green;
}
 
td.diff
{
font-size: 11px;
background-color: #D0D0D0;
}
 
table.diff
{
border-collapse: collapse;
}
 
div.newpath
{
padding: 5px 5px 5px 5px;
border: solid 2px #99007E;
}
 
.plusbox { float: left; clear: both; position: relative; top: -3px; font-size: 13px; font-weight: bold; width: 16px; text-indent: 0; height: 16px; color: black; background-color: #D0D0D0; text-align: center; padding: 0px 2px 0px 3px; border: black solid 1px; margin-right: 5px; }
.minusbox { float: left; clear: both; position: relative; top: -3px; font-size: 13px; font-weight: bold; width: 16px; text-indent: 0; height: 16px; color: black; background-color: #99007E; text-align: center; padding: 0px 2px 0px 3px; border: black solid 1px; margin-right: 5px; }
 
.groupname { padding-left: 0px; text-indent: -25px; margin: 3px 0 3px 0;}
.switchcontent { margin: 3px 0 0 20px; }
 
code { white-space: pre-wrap; }