Click here to Skip to main content
15,889,116 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
<%
try
{
		 PortletURL portletUrl = renderResponse.createActionURL();
		 SVNClientUtilities svnClientUtil = new SVNClientUtilities().setup("https://localhost/svn/Sample","jamel","jowker08");
		 List<string> headerNames = new ArrayList<string>();
		 SearchContainer searchContainer = new SearchContainer(
										renderRequest, 
										null, 
										null, 
										SearchContainer.DEFAULT_CUR_PARAM, 
										SearchContainer.DEFAULT_DELTA, 
										portletUrl, 
										headerNames, 
										"There No Files or Data to display");
		 
		 List<svndirentry> listofFiles = svnClientUtil.getSourceFiles("",SVNNodeKind.FILE);
		 int i = 0;
		 try
		 {
			 
			 for(SVNDirEntry s: listofFiles)
			 {
				 out.println(s.getRelativePath() + s.getName());
				 out.println(s.getAuthor());
				 String Filename = s.getName();
				 ResultRow row = new ResultRow(Filename, s.getRelativePath()+ s.getName() + s.getAuthor(), i);
				 row.addText(Filename, "");
				 i++;
			 }
			 
			 searchContainer.setTotal(i);
		 }catch(Exception e){e.printStackTrace();}

%>
<%
}
catch (Exception e){
	e.printStackTrace();
}</svndirentry></string></string>

%>
Posted
Updated 31-Jul-11 20:34pm
v2
Comments
TorstenH. 1-Aug-11 2:35am    
added code tags so we can at least read the non existing question.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900