From b7345f833dea849e94f2ce23fdbe6ab58ba98be3 Mon Sep 17 00:00:00 2001 From: cweiske Date: Sat, 3 Oct 2009 14:08:25 +0000 Subject: more file renamings git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@387 b3834d28-1941-0410-a4f8-b48e95affb8f --- data/config.default.inc.php | 557 -------------------------------------------- data/config.default.php | 557 ++++++++++++++++++++++++++++++++++++++++++++ data/config.inc.php.dist | 106 --------- data/config.php.dist | 106 +++++++++ 4 files changed, 663 insertions(+), 663 deletions(-) delete mode 100644 data/config.default.inc.php create mode 100644 data/config.default.php delete mode 100644 data/config.inc.php.dist create mode 100644 data/config.php.dist (limited to 'data') diff --git a/data/config.default.inc.php b/data/config.default.inc.php deleted file mode 100644 index ec2be20..0000000 --- a/data/config.default.inc.php +++ /dev/null @@ -1,557 +0,0 @@ - - * $admin_users = array('adminnickname', 'user1nick', 'user2nick'); - * - * - * @var array - */ -$admin_users = array(); - -/** - * If admin users can edit or delete bookmarks belonging to other users. - * - * @var boolean - */ -$adminsCanModifyBookmarksFromOtherUsers = true; - -/** - * If tags from other admins are proposed to each admin - * (in add/edit a bookmark page). - * - * @var boolean - */ -$adminsAreAdvisedTagsFromOtherAdmins = false; - -/** - * Array of usernames that cannot be registered - * - * @var array - */ -$reservedusers = array('all', 'watchlist'); - - - - -/*************************************************** - * Anti SPAM measures - */ - -/** - * A question to avoid spam. - * Shown on user registration page. - * - * @var string - * @see $antispamAnswer - */ -$antispamQuestion = 'name of this application'; - -/** - * The answer to the antispam question - * Users have to write exactly this string. - * - * @var string - * @see $antispamQuestion - */ -$antispamAnswer = 'semanticscuttle'; - - - -/*************************************************** - * Display Templates - */ - -/** - * Directory where the template files should be loaded from. - * Template files are *.tpl.php - * - * @var string - */ -$TEMPLATES_DIR = dirname(__FILE__) . '/templates/'; - -/** - * Header template file. - * Included before content files. - * - * @var string - */ -$top_include = 'top.inc.php'; - -/** - * Footer template file. - * Included after content has been generated and output. - * - * @var string - */ -$bottom_include = 'bottom.inc.php'; - -/** - * Ordering of sidebar blocks. - * See $menu2Tags for item of menu2 - * - * @var array - * @see $menu2Tags - */ -$index_sidebar_blocks = array( - 'search', - 'menu2', - 'menu', - 'users', - 'recent' -); - - - -/*************************************************** - * Bookmarks - */ - -/** - * Format for short dates. - * Used in date() calls - * - * @var string - * @link http://php.net/date - */ -$shortdate = 'd-m-Y'; - -/** - * Format of long dates. - * Used in date() calls. - * - * @var string - * @link http://php.net/date - */ -$longdate = 'j F Y'; - -/** - * Include rel="nofollow" attribute on bookmark links - * - * @var boolean - */ -$nofollow = true; - -/** - * Default number of bookmarks per page. - * -1 means no limit. - * - * @var integer - * @see $defaultPerPageForAdmins - */ -$defaultPerPage = 10; - -/** - * Default number of bookmarks per page for admins. - * -1 means no limit. - * - * @var integer - * @see $defaultPerPage - */ -$defaultPerPageForAdmins = 10; - -/** - * Number of days that bookmarks or tags are considered "recent". - * - * @var integer - */ -$defaultRecentDays = 14; - -/** - * Bookmark ordering - * (date, title, url) - * in order ascending or descending - * - date_desc - By date of entry descending. - * Latest entry first. (Default) - * - date_asc - By date of entry ascending. - * Earliest entry first. - * - title_desc - By title, descending alphabetically. - * - title_asc - By title, ascending alphabetically. - * - url_desc - By URL, descending alphabetically. - * - url_asc - By URL, ascending alphabetically. - * - * @var string - */ -$defaultOrderBy = 'date_desc'; - -/** - * Redirect all bookmarks through $url_redir to improve privacy. - * - * @var boolean - * @see $url_redir - */ -$useredir = false; - -/** - * URL prefix for bookmarks to redirect through. - * - * @var string - * @see $useredir - */ -$url_redir = 'http://www.google.com/url?sa=D&q='; - -/** - * Array of bookmark extensions that Scuttle should add system tags for. - * When adding an URL with one of the given extensions, a system - * tag is automatically assigned. - * - * @var array - */ -$filetypes = array( - 'audio' => array('mp3', 'ogg', 'wav'), - 'document' => array('doc', 'odt', 'pdf'), - 'image' => array('gif', 'jpeg', 'jpg', 'png'), - 'video' => array('avi', 'mov', 'mp4', 'mpeg', 'mpg', 'wmv') -); - -/** - * Enable the "common bookmark description" functionality - * - * @var boolean - */ -$enableCommonBookmarkDescription = true; - - - -/**************************** - * Website Thumbnails - */ - -/** - * Enable bookmark website thumbnails. - * - * According to artviper.net license, buy a license if you - * gain profit with your pages. - * - * @var boolean - * @link http://www.websitethumbnail.de/ - */ -$enableWebsiteThumbnails = false; - -/** - * User ID from websitethumbnail.de - * - * You need to register on - * http://www.artviper.net/registerAPI.php - * in order to use thumbnails on your domain - * - * @var string - * @link http://www.artviper.net/registerAPI.php - */ -$thumbnailsUserId = null; - -/** - * API key. - * Sent to you by artviper.net after registration. - * - * @var string - */ -$thumbnailsKey = null; - - - -/**************************** - * Tags - */ - -/** - * Enable common tag descriptions - * - * @var boolean - */ -$enableCommonTagDescription = true; - -/** - * If everybody may edit common tag description. - * When set to false, only admins can do it. - * - * @var boolean - */ -$enableCommonTagDescriptionEditedByAll = true; - -/** - * Name of the tag whose subtags will appear in the menu box. - * - * @var string - * @see $maxSizeMenuBlock - */ -$menuTag = 'menu'; - -/** - * Maximum number of items (tags) appearing in menu box. - * - * @var integer - * @see $menuTag - */ -$maxSizeMenuBlock = 7; - -/** - * List of tags used by menu2 sidebar box - * Empty list = hidden menu2 box - * menu2 displays linked tags just belonging to admins. - * - * @var array - */ -$menu2Tags = array( - 'menu2', 'tags', 'configurable', 'in', 'configincphp' -); - - - -/**************************** - * Search - */ - -/** - * Number of users' searches that are saved. - * 10 is default, -1 means unlimited. - * - * @var integer - */ -$sizeSearchHistory = 10; - -/** - * Enable Google Search Engine into "gsearch/" folder. - * - * @var boolean - */ -$enableGoogleCustomSearch = false; - - - - -/**************************** - * Other - */ - -/** - * Enables special colors on admin pages and bookmarks. - * Colors mark the difference to normal users. - * - * @var boolean - */ -$enableAdminColors = true; - -/** - * FIXME: explain better - * - * Add a possible anchor (structured content) for bookmarks description field - * a simple value "xxx" (like "author") automatically associates xxx with - * [xxx][/xxx]. - * A complex value "xxx"=>"yyy" (like "address") directly - * associates xxx with yyy. - * - * @var array - */ -$descriptionAnchors = array( - 'author', - 'isbn', - 'address' => '[address][street][/street][city][/city][/address]' -); - -/** - * GoogleAnalytics tracking code. - * Empty string disables analytics. - * - * @var string - * @link https://www.google.com/analytics/ - */ -$googleAnalyticsCode = null; - -?> diff --git a/data/config.default.php b/data/config.default.php new file mode 100644 index 0000000..ec2be20 --- /dev/null +++ b/data/config.default.php @@ -0,0 +1,557 @@ + + * $admin_users = array('adminnickname', 'user1nick', 'user2nick'); + * + * + * @var array + */ +$admin_users = array(); + +/** + * If admin users can edit or delete bookmarks belonging to other users. + * + * @var boolean + */ +$adminsCanModifyBookmarksFromOtherUsers = true; + +/** + * If tags from other admins are proposed to each admin + * (in add/edit a bookmark page). + * + * @var boolean + */ +$adminsAreAdvisedTagsFromOtherAdmins = false; + +/** + * Array of usernames that cannot be registered + * + * @var array + */ +$reservedusers = array('all', 'watchlist'); + + + + +/*************************************************** + * Anti SPAM measures + */ + +/** + * A question to avoid spam. + * Shown on user registration page. + * + * @var string + * @see $antispamAnswer + */ +$antispamQuestion = 'name of this application'; + +/** + * The answer to the antispam question + * Users have to write exactly this string. + * + * @var string + * @see $antispamQuestion + */ +$antispamAnswer = 'semanticscuttle'; + + + +/*************************************************** + * Display Templates + */ + +/** + * Directory where the template files should be loaded from. + * Template files are *.tpl.php + * + * @var string + */ +$TEMPLATES_DIR = dirname(__FILE__) . '/templates/'; + +/** + * Header template file. + * Included before content files. + * + * @var string + */ +$top_include = 'top.inc.php'; + +/** + * Footer template file. + * Included after content has been generated and output. + * + * @var string + */ +$bottom_include = 'bottom.inc.php'; + +/** + * Ordering of sidebar blocks. + * See $menu2Tags for item of menu2 + * + * @var array + * @see $menu2Tags + */ +$index_sidebar_blocks = array( + 'search', + 'menu2', + 'menu', + 'users', + 'recent' +); + + + +/*************************************************** + * Bookmarks + */ + +/** + * Format for short dates. + * Used in date() calls + * + * @var string + * @link http://php.net/date + */ +$shortdate = 'd-m-Y'; + +/** + * Format of long dates. + * Used in date() calls. + * + * @var string + * @link http://php.net/date + */ +$longdate = 'j F Y'; + +/** + * Include rel="nofollow" attribute on bookmark links + * + * @var boolean + */ +$nofollow = true; + +/** + * Default number of bookmarks per page. + * -1 means no limit. + * + * @var integer + * @see $defaultPerPageForAdmins + */ +$defaultPerPage = 10; + +/** + * Default number of bookmarks per page for admins. + * -1 means no limit. + * + * @var integer + * @see $defaultPerPage + */ +$defaultPerPageForAdmins = 10; + +/** + * Number of days that bookmarks or tags are considered "recent". + * + * @var integer + */ +$defaultRecentDays = 14; + +/** + * Bookmark ordering + * (date, title, url) + * in order ascending or descending + * - date_desc - By date of entry descending. + * Latest entry first. (Default) + * - date_asc - By date of entry ascending. + * Earliest entry first. + * - title_desc - By title, descending alphabetically. + * - title_asc - By title, ascending alphabetically. + * - url_desc - By URL, descending alphabetically. + * - url_asc - By URL, ascending alphabetically. + * + * @var string + */ +$defaultOrderBy = 'date_desc'; + +/** + * Redirect all bookmarks through $url_redir to improve privacy. + * + * @var boolean + * @see $url_redir + */ +$useredir = false; + +/** + * URL prefix for bookmarks to redirect through. + * + * @var string + * @see $useredir + */ +$url_redir = 'http://www.google.com/url?sa=D&q='; + +/** + * Array of bookmark extensions that Scuttle should add system tags for. + * When adding an URL with one of the given extensions, a system + * tag is automatically assigned. + * + * @var array + */ +$filetypes = array( + 'audio' => array('mp3', 'ogg', 'wav'), + 'document' => array('doc', 'odt', 'pdf'), + 'image' => array('gif', 'jpeg', 'jpg', 'png'), + 'video' => array('avi', 'mov', 'mp4', 'mpeg', 'mpg', 'wmv') +); + +/** + * Enable the "common bookmark description" functionality + * + * @var boolean + */ +$enableCommonBookmarkDescription = true; + + + +/**************************** + * Website Thumbnails + */ + +/** + * Enable bookmark website thumbnails. + * + * According to artviper.net license, buy a license if you + * gain profit with your pages. + * + * @var boolean + * @link http://www.websitethumbnail.de/ + */ +$enableWebsiteThumbnails = false; + +/** + * User ID from websitethumbnail.de + * + * You need to register on + * http://www.artviper.net/registerAPI.php + * in order to use thumbnails on your domain + * + * @var string + * @link http://www.artviper.net/registerAPI.php + */ +$thumbnailsUserId = null; + +/** + * API key. + * Sent to you by artviper.net after registration. + * + * @var string + */ +$thumbnailsKey = null; + + + +/**************************** + * Tags + */ + +/** + * Enable common tag descriptions + * + * @var boolean + */ +$enableCommonTagDescription = true; + +/** + * If everybody may edit common tag description. + * When set to false, only admins can do it. + * + * @var boolean + */ +$enableCommonTagDescriptionEditedByAll = true; + +/** + * Name of the tag whose subtags will appear in the menu box. + * + * @var string + * @see $maxSizeMenuBlock + */ +$menuTag = 'menu'; + +/** + * Maximum number of items (tags) appearing in menu box. + * + * @var integer + * @see $menuTag + */ +$maxSizeMenuBlock = 7; + +/** + * List of tags used by menu2 sidebar box + * Empty list = hidden menu2 box + * menu2 displays linked tags just belonging to admins. + * + * @var array + */ +$menu2Tags = array( + 'menu2', 'tags', 'configurable', 'in', 'configincphp' +); + + + +/**************************** + * Search + */ + +/** + * Number of users' searches that are saved. + * 10 is default, -1 means unlimited. + * + * @var integer + */ +$sizeSearchHistory = 10; + +/** + * Enable Google Search Engine into "gsearch/" folder. + * + * @var boolean + */ +$enableGoogleCustomSearch = false; + + + + +/**************************** + * Other + */ + +/** + * Enables special colors on admin pages and bookmarks. + * Colors mark the difference to normal users. + * + * @var boolean + */ +$enableAdminColors = true; + +/** + * FIXME: explain better + * + * Add a possible anchor (structured content) for bookmarks description field + * a simple value "xxx" (like "author") automatically associates xxx with + * [xxx][/xxx]. + * A complex value "xxx"=>"yyy" (like "address") directly + * associates xxx with yyy. + * + * @var array + */ +$descriptionAnchors = array( + 'author', + 'isbn', + 'address' => '[address][street][/street][city][/city][/address]' +); + +/** + * GoogleAnalytics tracking code. + * Empty string disables analytics. + * + * @var string + * @link https://www.google.com/analytics/ + */ +$googleAnalyticsCode = null; + +?> diff --git a/data/config.inc.php.dist b/data/config.inc.php.dist deleted file mode 100644 index 2615bc6..0000000 --- a/data/config.inc.php.dist +++ /dev/null @@ -1,106 +0,0 @@ - diff --git a/data/config.php.dist b/data/config.php.dist new file mode 100644 index 0000000..2615bc6 --- /dev/null +++ b/data/config.php.dist @@ -0,0 +1,106 @@ + -- cgit v1.2.3