summaryrefslogtreecommitdiffstats
path: root/index/IndexCreator.java
diff options
context:
space:
mode:
authorrsiddharth <rsiddharth@ninthfloor.org>2012-10-26 21:51:10 +0530
committerrsiddharth <rsiddharth@ninthfloor.org>2012-10-26 21:51:10 +0530
commitd2f10460050965fa11e046bd6967b08a0e5e49b7 (patch)
tree9c0a6f9c95fa36769268031cc25cca9b940317a4 /index/IndexCreator.java
parent3124c400d828cacdf6b39cec92e6ba4e78253807 (diff)
parent76c496db007519125bd478ad81afb9763db7259c (diff)
# merged from devel branch.
removed: notes writefile added: COPYING parsers/DocumentDate.java modified: Initialization.java Scruf.java conversion/CanConvert.java conversion/ConvertDirectory.java conversion/ConvertFile.java conversion/FileSieve.java index/IndexCreator.java io/PresentFile.java io/ReadFile.java io/WriteFile.java license/Liberate.java license/gpl parsers/BackButton.java parsers/CodeBlocks.java parsers/DocumentName.java parsers/Footer.java parsers/Header.java parsers/Headings.java parsers/Images.java parsers/LineBreak.java parsers/Links.java parsers/NullIt.java parsers/Paragraphs.java parsers/ParserList.java parsers/WordDecoration.java styling/StyleChecker.java styling/style.css todo pending merges: rsiddharth 2012-10-26 added: rsiddharth 2012-10-26 modified: rsiddharth 2012-10-25 removed: rsiddharth 2012-10-25 modified: rsiddharth 2012-10-25 Updated styling/style.css for proper formatting of monospace phrases and rsiddharth 2012-10-25 [Break-through]: a code-block is properly formatted now and a
Diffstat (limited to 'index/IndexCreator.java')
-rw-r--r--index/IndexCreator.java47
1 files changed, 34 insertions, 13 deletions
diff --git a/index/IndexCreator.java b/index/IndexCreator.java
index 76f8ebc..fc469ce 100644
--- a/index/IndexCreator.java
+++ b/index/IndexCreator.java
@@ -1,3 +1,24 @@
+/*+
+ * Copyright 2012 rsiddharth
+ * Email: <rsiddharth@ninthfloor.org>
+ *
+ * This file is part of Scruf.
+ *
+ * Scruf is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
package scruf.index;
import java.io.*;
@@ -33,21 +54,21 @@ public class IndexCreator {
}
}
public boolean write() {
- if(modified)
- new WriteFile(index,indexContent.toString()).write();
- return modified;
+ if(modified)
+ new WriteFile(index,indexContent.toString()).write();
+ return modified;
}
public File indexFile() {
- return index;
+ return index;
}
private boolean shouldAdd(String fileName) {
- String regex = ".*"+fileName+".*";
- // checks if fileName is already there in index.
- boolean check1 = !(Pattern.compile(regex).
- matcher(indexContent.toString()).find());
- // checks if fileName is index itself.
- boolean check2 = !(Pattern.matches(fileName,"index"));
- boolean add = (check1 && check2);
- return add;
+ String regex = ".*"+fileName+".*";
+ // checks if fileName is already there in index.
+ boolean check1 = !(Pattern.compile(regex).
+ matcher(indexContent.toString()).find());
+ // checks if fileName is index itself.
+ boolean check2 = !(Pattern.matches(fileName,"index"));
+ boolean add = (check1 && check2);
+ return add;
}
-} \ No newline at end of file
+}