From c2272275ca990f3e12a5c1fa0a5de4c670a4d8b4 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Sat, 11 Jun 2011 16:23:49 -0400 Subject: [PATCH] RSS syndication feature. Documentation. CSS tweaks. --- distrib/gitblit.properties | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/distrib/gitblit.properties b/distrib/gitblit.properties index c17674a..2d55a58 100644 --- a/distrib/gitblit.properties +++ b/distrib/gitblit.properties @@ -17,9 +17,12 @@ # if false, each exported repository must have a .git/git-daemon-export-ok file git.exportAll = true -# Search repositories folder for nested repositories +# Search the repositories folder subfolders for other repositories. +# Repositories MAY NOT be nested (i.e. one repository within another) +# but they may be grouped together in subfolders. # e.g. c:/gitrepos/libraries/mylibrary.git -git.nestedRepositories = true +# c:/gitrepos/libraries/myotherlibrary.git +git.searchRepositoriesSubfolders = true # # Authentication Settings @@ -61,6 +64,9 @@ # Allow dyanamic zip downloads. web.allowZipDownloads = true +# Default number of entries to include in RSS/Atom Syndication links +web.syndicationEntries = 25 + # This is the message display above the repositories table. # This can point to a file with Markdown content. # Specifying "gitblit" uses the internal welcome message. -- Gitblit v1.9.1