summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* merged from devHEADmasterrsiddharth2013-11-066-59/+94
|\
| * removed extraneous whitspace.rsiddharth2013-11-062-5/+5
| |
| * renamed: .bzrignore -> .gitignorersiddharth2013-11-061-0/+0
| |
| * updated TODO.rsiddharth2013-11-051-1/+3
| |
| * wrote a new parser: parsers/UList.javarsiddharth2013-11-053-1/+84
| | | | | | | | now scruf can parse <ul> lists.
| * updated etc/TODOrsiddharth2013-11-051-56/+6
| |
* | Updated Copyright blocks, README, stylesheet. Added CHANGELOG, MANIFEST.rsiddharth2013-11-0444-973/+219
|\|
| * modified: MANIFEST. removed the docs/ section.rsiddharth2013-11-041-3/+0
| | | | | | | | | | From now on, the canonical place for documentation is at nongnu.org/scruf/manual.
| * modified: CHANGELOGrsiddharth2013-11-041-2/+7
| |
| * updated stylesheet. rsiddharth2013-11-031-0/+3
| | | | | | | | the monopace span elements now have a background and border.
| * removed docs/ section.rsiddharth2013-11-033-736/+0
| | | | | | | | | | From now on the canonical place for documentation is at nongnu.org/scruf/manual/
| * updated README. Put info about codebase in MANIFEST.rsiddharth2013-11-032-131/+76
| |
| * updated the year in the Copyright block in all source files.rsiddharth2013-11-0235-73/+41
| | | | | | | | used license/Liberate.java to do the job. automation rocks.
| * modified: license/Liberate.java. rewrote it.rsiddharth2013-11-021-29/+77
| | | | | | | | now the class can baptize + update parts of the copyright block.
| * license/gpl: updated copyright yearrsiddharth2013-11-021-2/+1
| |
| * added CHANGELOGrsiddharth2013-11-021-0/+17
| |
| * parsers/Images.java: minor change to the alt text block.rsiddharth2013-11-021-2/+2
| |
* | merged from devel branch: styling/style.css (<blockquote> is not oblique ↵rsiddharth2013-11-021-1/+0
|\| | | | | | | anymore).
| * modified: styling/style.css (<blockquote> is not oblique anymore).rsiddharth2013-09-151-1/+0
| |
* | merged from the devel branch.rsiddharth2013-08-146-25/+54
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | conversion/ConvertDirectory.java: * Changes in how `index.scruff' files are parsed. * StyleChecker checks where the stylesheet needs update/creation parsers/CodeBlocks.java: * code block tag changed from <div class="code"> --> <pre> parsers/Images.java: * image alt text formatted for nice viewing in text terminal * SVGs are recognized by the parser now parsers/QuoteSpecialText.java: * regex changed: styling/style.css * lot of changes to the default CSS.
| * modified: styling/style.css (insignificant items' opacity is set to 0.3, ↵rsiddharth2013-06-291-2/+27
| | | | | | | | opacity becomes 1.0 when hovered)
| * modified: parsers/CodeBlocks.java ( code blocks are wrapped around <pre> ↵rsiddharth2013-06-262-4/+8
| | | | | | | | element)
| * modified: parsers/Images.java (`alt' attribute constructs itself nicely now)rsiddharth2013-06-261-2/+2
| |
| * updated etc/TODO (the future of scruf)rsiddharth2013-06-261-10/+5
| |
| * modified: parsers/Images.java (now scruffy-markup accepts svg images)rsiddharth2013-04-271-1/+1
| |
| * modified: parsers/Images.java (Pattern for image recognitionrsiddharth2013-03-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | updated. Now scruf can detect images with png|jpg|jpeg extension)x -------------- This line and the following will be ignored -------------- === modified file 'parsers/Images.java' --- a/parsers/Images.java 2012-11-30 13:18:40 +0000 +++ b/parsers/Images.java 2013-03-23 13:00:50 +0000 @@ -28,7 +28,7 @@ private String openTag = "<img src=\"$1\" alt=\" \\[$"; private String closeTag = " />"; public String parse(String fileContent) { - Pattern pattern = Pattern.compile("\\{\\{(.+?\\.(png|jpg))(\\|(.+?))?\\}\\}", Pattern.DOTALL); + Pattern pattern = Pattern.compile("\\{\\{(.+?\\.(png|jp[e]?g))(\\|(.+?))?\\}\\}", Pattern.DOTALL); Matcher matcher = pattern.matcher(fileContent); StringBuffer sbuffer = new StringBuffer(); StringBuilder replacementString =new StringBuilder();
| * modified: parsers/QuoteSpecialText.java (regex that recognizes special-text ↵rsiddharth2013-03-101-1/+1
| | | | | | | | | | | | modified) now, HTML special codes/numbers are not quoted by this class.
| * stylesheet updated -- links are more prominent now.rsiddharth2012-12-311-2/+4
| |
| * [fix] stylesheet is updated, in all scruf aware directories, if the default ↵rsiddharth2012-12-301-3/+6
| | | | | | | | | | | | scruf's stylesheet is updated. modified: conversion/ConvertDirectory.java
| * styling/style.css update -- added subtle border to div.code blockrsiddharth2012-12-301-2/+2
| |
* | merged from devel branch. this is going to labelled version 0.1.0.rsiddharth2012-12-269-124/+920
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | removed: TODO docs/scruf added: README docs/scruf-howto.html docs/scruffy-markup.html docs/style.css etc/ etc/TODO etc/scruf-art modified: conversion/ConvertDirectory.java parsers/Footer.java
| * updated TODO filersiddharth2012-12-261-6/+1
| |
| * added scruf ascii art: etc/scruf-artrsiddharth2012-12-241-0/+18
| |
| * [bug-fix]: The `Footer` parser now allows the text, inside the markep up ↵rsiddharth2012-12-231-1/+1
| | | | | | | | | | | | | | footer block, to be multi-line. modified: parsers/Footer.java
| * [bug-fix]: The StyleChecker object was not used correctly in ↵rsiddharth2012-12-231-10/+3
| | | | | | | | | | | | | | conversion/ConvertDirectory.java, this has been rectified. modified: conversion/ConvertDirectory.java
| * updated etc/TODOrsiddharth2012-12-231-6/+4
| |
| * added docs/style.cssrsiddharth2012-12-231-0/+180
| |
| * updated etc/TODOrsiddharth2012-12-231-4/+6
| |
| * updated TODOrsiddharth2012-12-231-5/+0
| | | | | | | | | | modified: etc/TODO
| * the README file is complete now; TODO was updated.rsiddharth2012-12-232-43/+89
| | | | | | | | | | | | modified: README etc/TODO
| * started writing the README file; added .html files in docs/rsiddharth2012-12-215-91/+660
| | | | | | | | | | | | | | | | | | | | | | removed: docs/scruf added: README docs/scruf-howto.html docs/scruffy-markup.html modified: etc/TODO
| * recreated etc/ with only the TODO in it.rsiddharth2012-12-212-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | the last commit was a mess. removed: etc/ etc/COPYING etc/TODO added: COPYING etc/ etc/TODO
| * moved COPYING & TODO to etc/ directory.rsiddharth2012-12-212-2/+1
| | | | | | | | | | | | | | | | | | | | removed: COPYING TODO added: etc/ etc/COPYING etc/TODO
* | merged from devel branch.rsiddharth2012-12-2110-121/+222
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | removed: Scruf.java todo added: Run.java TODO parsers/SymbolMap.java modified: conversion/ConvertDirectory.java parsers/BackButton.java parsers/CodeBlocks.java parsers/WordDecoration.java styling/StyleChecker.java styling/style.css pending merges: rsiddharth 2012-12-21 [bug-fix]: when the default style sheet is newer than the style sheet rsiddharth 2012-12-21 Scruf.java has been renamed to Run.java rsiddharth 2012-12-21 [method named changed]: The method named 'resolve()' in styling/StyleChecker.java is changed ... rsiddharth 2012-12-21 [bug-fix]: Each directory is checked if it contains the style.css, if rsiddharth 2012-12-21 added license text to parsers/SymbolMap.java. rsiddharth 2012-12-21 updated TODO rsiddharth 2012-12-20 [bug-fix]: From now on, all the special characters in the string rsiddharth 2012-12-20 SymbolMap class which was in CodeBlock.java is shifted to a dedicated rsiddharth 2012-12-20 [bug-fix]: Back Buttons were not put in webpages that were present in rsiddharth 2012-12-15 bunch of new todos; 'todo' renamed to 'TODO'.
| * [bug-fix]: when the default style sheet is newer than the style sheetrsiddharth2012-12-213-6/+59
| | | | | | | | | | | | | | | | | | | | in that directory, the new default style sheet is copied to that directory. added Run.java to bzr (forgot to add it in the last commit) modified: styling/StyleChecker.java styling/style.css
| * Scruf.java has been renamed to Run.javarsiddharth2012-12-211-49/+0
| | | | | | | | | | | | | | removed: Scruf.java unknown: Run.java
| * [method named changed]: The method named 'resolve()' in ↵rsiddharth2012-12-212-2/+2
| | | | | | | | | | | | | | | | styling/StyleChecker.java is changed to 'check()'. modified: conversion/ConvertDirectory.java styling/StyleChecker.java
| * [bug-fix]: Each directory is checked if it contains the style.css, ifrsiddharth2012-12-212-10/+21
| | | | | | | | | | | | | | | | | | | | not present a new style.css in copied to the respective location. To reflect this, styling.StyleChecker class is used in conversion.ConvertDirectory instead of scruf.Scruf. modified: Scruf.java conversion/ConvertDirectory.java
| * added license text to parsers/SymbolMap.java.rsiddharth2012-12-211-0/+21
| | | | | | | | | | modified: parsers/SymbolMap.java
| * updated TODOrsiddharth2012-12-211-16/+19
| | | | | | | | | | modified: TODO