svn - What file formats does Subversion Edge ViewVC support -


i've been looking around, , either don't understand answer given or i'm not asking right question. figure i'll open up. know viewvc plugin subversion edge. made email program hooks post-commit. @ first attached href @ end of each file added, modified, , deleted. of files don't work. if click on added , deleted says viewvc error. if click on file not supported viewvc diff error. plan this..easier show c# code.

    private string getlistelementbasedontype(string thetype, string element, int rev)     {         switch (thetype)         {             case "added":                 return string.format(""); //todo             case "deleted":                 return ""; //todo             case "modified":                 return string.format("<a href=\"{0}/viewvc/{1}/{2}?r1={3}&r2={4}&pathrev={3}&diff_format=h\">\t[view diff]</a>", repourl, this.reponame, element, rev, rev - 1);             default:                 return "";         }      } 

i plan on using regex expression verify can indeed view diff.. or view file. hence question.. extensions/formats viewvc support? can't find list on subversion edge, or on viewvc.

from their page:

file contents view - shows contents of file @ particular revision, revision information @ top of page. file revisions gif, png, or jpeg images displayed inline on page. other file types displayed marked text.

it seems isn't text file, gif, png, or jpeg not supported.


Comments

Popular posts from this blog

html - Styling progress bar with inline style -

java - Oracle Sql developer error: could not install some modules -

How to use autoclose brackets in Jupyter notebook? -