Subversion Repositories RepoView

Rev

Rev 54 | Rev 56 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 54 Rev 55
Line 1... Line 1...
1
/* $Id: modern.c 54 2024-08-22 06:03:31Z nishi $ */
1
/* $Id: modern.c 55 2024-08-22 06:03:40Z nishi $ */
2
 
2
 
3
#include "rv_query.h"
3
#include "rv_query.h"
4
 
4
 
5
#include "rv_util.h"
5
#include "rv_util.h"
6
#include "rv_version.h"
6
#include "rv_version.h"
Line 822... Line 822...
822
				free(path);
822
				free(path);
823
 
823
 
824
				add_data(&page, "<h2 id=\"repolist\">Repository List</h2>\n");
824
				add_data(&page, "<h2 id=\"repolist\">Repository List</h2>\n");
825
				add_data(&page, "<table border=\"0\">\n");
825
				add_data(&page, "<table border=\"0\">\n");
826
				add_data(&page, "<tr style=\"background-color: #D2E1F6;\"><th>Repository name</th><th>Revision</th></tr>\n");
826
				add_data(&page, "<tr style=\"background-color: #D2E1F6;\"><th>Repository name</th><th>Revision</th></tr>\n");
827
				fcoutner = 0;
827
				fcounter = 0;
828
				rv_repo_list(rv_get_query("username"), list_repo);
828
				rv_repo_list(rv_get_query("username"), list_repo);
829
				add_data(&page, "</table>\n");
829
				add_data(&page, "</table>\n");
830
			} else {
830
			} else {
831
				add_data(&page, "User does not exist.\n");
831
				add_data(&page, "User does not exist.\n");
832
			}
832
			}