From 351fffc12961e7a53c40f5a65969e39e32a795c1 Mon Sep 17 00:00:00 2001 From: allo Date: Sat, 31 Dec 2005 11:47:52 +0000 Subject: [PATCH] DATA/WORK for user-created content git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1274 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/plasma/plasmaSwitchboard.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/de/anomic/plasma/plasmaSwitchboard.java b/source/de/anomic/plasma/plasmaSwitchboard.java index 9d3656b45..95c77a13b 100644 --- a/source/de/anomic/plasma/plasmaSwitchboard.java +++ b/source/de/anomic/plasma/plasmaSwitchboard.java @@ -434,9 +434,9 @@ public final class plasmaSwitchboard extends serverAbstractSwitch implements ser //Init bookmarks DB this.log.logConfig("Loading Bookmarks DB"); - File bookmarksFile = new File(getRootPath(), "DATA/SETTINGS/bookmarks.db"); - File tagsFile = new File(getRootPath(), "DATA/SETTINGS/bookmarkTags.db"); - File datesFile = new File(getRootPath(), "DATA/SETTINGS/bookmarkDates.db"); + File bookmarksFile = new File(getRootPath(), "DATA/WORK/bookmarks.db"); + File tagsFile = new File(getRootPath(), "DATA/WORK/bookmarkTags.db"); + File datesFile = new File(getRootPath(), "DATA/WORK/bookmarkDates.db"); this.bookmarksDB = new bookmarksDB(bookmarksFile, tagsFile, datesFile, 512); this.log.logConfig("Loaded Bookmarks DB from files "+ bookmarksFile.getName()+ ", "+tagsFile.getName()); this.log.logConfig(this.bookmarksDB.tagsSize()+" Tag, "+this.bookmarksDB.bookmarksSize()+" Bookmarks");