Changed docId algorithm.

* Updated documentation to add manual titles.
* Reworked the way `docIds` are chosen. Now instead of the full relative path
  name we use just the file, or enough of the relative pathname to uniquely
  identify the file.
This commit is contained in:
Jonathan Bernard
2012-01-10 10:11:35 -06:00
parent a86b55726f
commit 6bc3235802
18 changed files with 69 additions and 33 deletions

View File

@ -1,3 +1,9 @@
/**
* # JLPPegParser
* @author Jonathan Bernard (jdb@jdb-labs.com)
* @copyright 2011-2012 [JDB Labs LLC](http://jdb-labs.com)
* @org jlp.jdb-labs.com/JLPPegParser
*/
package com.jdblabs.jlp;
import com.jdblabs.jlp.ast.*;
@ -10,10 +16,6 @@ import org.parboiled.Rule;
import org.parboiled.annotations.*;
import org.parboiled.parserunners.ReportingParseRunner;
/**
*
* @org jlp.jdb-labs.com/JLPPegParser
*/
@BuildParseTree
public class JLPPegParser extends BaseParser<Object> implements JLPParser {