diff --git a/etc/action.properties b/etc/action.properties deleted file mode 100644 index 44593f3..0000000 --- a/etc/action.properties +++ /dev/null @@ -1,30 +0,0 @@ -# -# These are the mappings required for the web-based MVC framework -# that Pebble uses. -# -# To disable an action, comment it out. -# To substitute an action implementation, change the class name. -# -401=pebble.controller.action.FourZeroOneAction -403=pebble.controller.action.FourZeroThreeAction -404=pebble.controller.action.FourZeroFourAction -addComment=pebble.controller.action.AddCommentAction -addTrackBack=pebble.controller.action.AddTrackBackAction -changeCategory=pebble.controller.action.ChangeCategoryAction -feed=pebble.controller.action.FeedAction -file=pebble.controller.action.FileAction -error=pebble.controller.action.ErrorAction -login=pebble.controller.action.LoginPageAction -logout=pebble.controller.action.LogoutAction -removeEmailAddress=pebble.controller.action.RemoveEmailAddressAction -replyToComment=pebble.controller.action.ReplyToCommentAction -search=pebble.controller.action.SearchAction -viewBlogEntry=pebble.controller.action.ViewBlogEntryAction -viewComments=pebble.controller.action.ViewCommentsAction -viewDailyBlog=pebble.controller.action.ViewDailyBlogAction -viewFeeds=pebble.controller.action.ViewFeedsAction -viewHomePage=pebble.controller.action.ViewHomePageAction -viewMonthlyBlog=pebble.controller.action.ViewMonthlyBlogAction -viewReferers=pebble.controller.action.ViewReferersForTodayAction -viewStaticPage=pebble.controller.action.ViewStaticPageAction -viewTrackBacks=pebble.controller.action.ViewTrackBacksAction \ No newline at end of file diff --git a/etc/log4j.properties b/etc/log4j.properties deleted file mode 100644 index 76bb3ff..0000000 --- a/etc/log4j.properties +++ /dev/null @@ -1,12 +0,0 @@ -log4j.rootLogger=ERROR, Console, File - -log4j.appender.Console=org.apache.log4j.ConsoleAppender -log4j.appender.Console.layout=org.apache.log4j.PatternLayout -log4j.appender.Console.layout.ConversionPattern=%d [%t] %-5p %c %x - %m%n - -log4j.appender.File=org.apache.log4j.FileAppender -log4j.appender.File.File=pebble.log -log4j.appender.File.layout=org.apache.log4j.PatternLayout -log4j.appender.File.layout.ConversionPattern=[%c{1}] %m%n -log4j.appender.File.Append=false -log4j.appender.File.layout.ConversionPattern=%d [%t] %-5p %c %x - %m%n diff --git a/etc/pebble.properties b/etc/pebble.properties deleted file mode 100644 index 857e4ea..0000000 --- a/etc/pebble.properties +++ /dev/null @@ -1,15 +0,0 @@ -# -# these are the properties used by Pebble itself -# - -# the directory containing the blog.properties file -blog.dir=${user.home}/blog - -# the URL where this app is running -blog.url= - -# true if running in multi-user mode, false otherwise -blog.multiUser=false - -blog.fileUploadSize=2048 -blog.fileUploadQuota=-1 \ No newline at end of file diff --git a/etc/pebble.tld b/etc/pebble.tld deleted file mode 100644 index 1f3b910..0000000 --- a/etc/pebble.tld +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - 1.6 - 1.2 - pebble - http://www.simongbrown.com/pebble - - The core Pebble tags. - - - - isUserAuthenticated - pebble.tagext.IsUserAuthenticatedTag - JSP - - Includes the body content only if the current user has been authenticated. - - - - - isUserUnauthenticated - pebble.tagext.IsUserUnauthenticatedTag - JSP - - Includes the body content only if the current user has NOT been authenticated. - - - - - showAdminPanel - pebble.tagext.ShowAdminPanelTag - JSP - - Includes the body content only if the current user has been authenticated - in the blog-owner, blog-contributor or pebble-admin roles. - - - - - isPebbleAdmin - pebble.tagext.IsPebbleAdminTag - JSP - - Includes the body content only if the current user is a Pebble admin. - - - - - isBlogOwner - pebble.tagext.IsBlogOwnerTag - JSP - - Includes the body content only if the current user is a blog owner. - - - - - isNotBlogOwner - pebble.tagext.IsNotBlogOwnerTag - JSP - - Includes the body content only if the current user is not a blog owner. - - - - - isBlogContributor - pebble.tagext.IsBlogContributorTag - JSP - - Includes the body content only if the current user is a blog contributor. - - - - - isNotBlogContributor - pebble.tagext.IsNotBlogContributorTag - JSP - - Includes the body content only if the current user is not a blog contributor. - - - - - calendar - pebble.tagext.CalendarTag - empty - - Builds a calendar control for use on the blog pages. - - - - - theme - pebble.tagext.GetThemeTag - empty - - Determines the URI to the current theme and outputs it to the page. - - - - - categoryFilter - pebble.tagext.CategoryFilterTag - empty - - Creates a dropdown list with which to filter the blog entries by category. - - - - - categories - pebble.tagext.BlogCategoriesTag - JSP - - Iterates over all categories defined for the blog. - - - - category - pebble.blog.Category - NESTED - - - - - select - pebble.tagext.SelectTag - empty - - Creates a HTML select control based upon a collection of objects. - - - - name - true - false - - - - label - false - false - - - - value - false - false - - - - items - true - true - java.lang.Object - - - - selected - false - true - java.lang.Object - - - - \ No newline at end of file diff --git a/etc/secure-action.properties b/etc/secure-action.properties deleted file mode 100644 index 71cfca6..0000000 --- a/etc/secure-action.properties +++ /dev/null @@ -1,57 +0,0 @@ -# -# These are the secure mappings required for the web-based MVC framework -# that Pebble uses and are only available to authenticated users. -# -# To disable an action, comment it out. -# To substitute an action implementation, change the class name. -# -addBlog=pebble.controller.action.AddBlogAction -addBlogEntry=pebble.controller.action.AddBlogEntryAction -addStaticPage=pebble.controller.action.AddStaticPageAction -addComment=pebble.controller.action.AddCommentAction -addTrackBack=pebble.controller.action.AddTrackBackAction -buildSearchIndex=pebble.controller.action.BuildSearchIndexAction -copyFile=pebble.controller.action.CopyFileAction -createDirectory=pebble.controller.action.CreateDirectoryAction -deleteFile=pebble.controller.action.DeleteFileAction -editBlogEntry=pebble.controller.action.EditBlogEntryAction -editBlogEntryTemplate=pebble.controller.action.EditBlogEntryTemplateAction -editCategories=pebble.controller.action.EditCategoriesAction -editCategory=pebble.controller.action.EditCategoryAction -editDraftBlogEntry=pebble.controller.action.EditDraftBlogEntryAction -editFile=pebble.controller.action.EditFileAction -editBlogProperties=pebble.controller.action.EditBlogPropertiesAction -editPebbleProperties=pebble.controller.action.EditPebblePropertiesAction -editRefererFilters=pebble.controller.action.EditRefererFiltersAction -editStaticPage=pebble.controller.action.EditStaticPageAction -exportBlog=pebble.controller.action.ExportBlogAction -reloadBlog=pebble.controller.action.ReloadBlogAction -login=pebble.controller.action.LoginAction -removeBlogEntry=pebble.controller.action.RemoveBlogEntryAction -removeBlogEntryTemplate=pebble.controller.action.RemoveBlogEntryTemplateAction -removeCategory=pebble.controller.action.RemoveCategoryAction -removeComment=pebble.controller.action.RemoveCommentAction -removeDraftBlogEntry=pebble.controller.action.RemoveDraftBlogEntryAction -removeEmailAddress=pebble.controller.action.RemoveEmailAddressAction -removeRefererFilter=pebble.controller.action.RemoveRefererFilterAction -removeStaticPage=pebble.controller.action.RemoveStaticPageAction -removeTrackBack=pebble.controller.action.RemoveTrackBackAction -saveBlogEntry=pebble.controller.action.SaveBlogEntryAction -saveCategory=pebble.controller.action.SaveCategoryAction -saveFile=pebble.controller.action.SaveFileAction -saveRefererFilter=pebble.controller.action.SaveRefererFilterAction -saveTemplate=pebble.controller.action.SaveTemplateAction -sendTrackBack=pebble.controller.action.SendTrackBackAction -uploadFileToBlog=pebble.controller.action.UploadFileToBlogAction -uploadFileToTheme=pebble.controller.action.UploadFileToThemeAction -uploadImageToBlog=pebble.controller.action.UploadImageToBlogAction -viewBlogEntryTemplates=pebble.controller.action.ViewBlogEntryTemplatesAction -viewDraftBlogEntries=pebble.controller.action.ViewDraftBlogEntriesAction -viewFiles=pebble.controller.action.ViewFilesAction -viewLog=pebble.controller.action.ViewLogAction -viewLogSummary=pebble.controller.action.ViewLogSummaryAction -viewReferers=pebble.controller.action.ViewReferersAction -viewRequests=pebble.controller.action.ViewRequestsAction -viewStaticPages=pebble.controller.action.ViewStaticPagesAction -viewTheme=pebble.controller.action.ViewThemeAction -zipDirectory=pebble.controller.action.ZipDirectoryAction \ No newline at end of file