/** * myJerry | Evenstar * Copyright (C) 2010 myJerry Development Team * http://www.myjerry.org * * The file is licensed under the the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * limitations under the License. * */ package org.myjerry.evenstar.constants; public interface BlogPreferenceConstants { /** * Basic tab */ public static final String quickEditing = ".quick.editing."; public static final String emailLinks = ".email.links"; /** * Formatting tab */ public static final String showNumPosts = ".show.num.posts"; public static final String postDateHeaderFormat = ".post.date.header.format"; public static final String archiveIndexFormat = ".archive.index.format"; public static final String postTimeStampFormat = ".post.time.stamp.format"; public static final String postTimeZoneFormat = ".post.time.zone.format"; public static final String convertLineBreaks = ".convert.line.breaks"; public static final String postTemplate = ".post.template"; /** * For Comments Tab */ public static final String showPostComments = ".show.post.comments"; public static final String whoCanComment = ".who.can.comment"; public static final String commentFormPlacement = ".comment.form.placement"; public static final String commentsInNewPosts = ".comment.in.new.posts"; public static final String commentTimeStampFormat = ".comment.time.stamp.format"; public static final String commentModeration = ".comment.moderation"; public static final String commentCaptcha = ".comment.captcha"; public static final String commentNotificationMail = ".comment.notification.mail"; public static final String showBackLinks = ".show.back.links"; public static final String backLinksInNewPosts = ".back.links.in.new.posts"; /** * For Archiving Tab */ public static final String archiveFrequency = ".archive.frequency"; public static final String postPages = ".post.pages"; /** * Site Feed */ public static final String feedType = ".feed.type"; public static final String feedRedirectURL = ".feed.redirect.url"; public static final String postFeedFooter = ".feed.footer"; /** * Email tab */ public static final String blogSendAddress = ".blog.send.address"; public static final String emailPostingAddress = ".email.posting.address"; /** * Tools tab */ public static final String toolGoogleAnalytics = ".tool.google.analytics"; public static final String toolGoogleWebMaster = ".tool.google.web.master"; public static final String toolYahooSiteExplorer = ".tool.yahoo.site.explorer"; public static final String toolBingWebMaster = ".tool.bing.web.master"; }