File: TODO

package info (click to toggle)
xapers 0.8.2-1.1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 588 kB
  • sloc: python: 2,579; sh: 1,298; makefile: 51
file content (101 lines) | stat: -rw-r--r-- 3,475 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
* unique bibtex keys (handle conflicting) (use id?)
* make 'date' alias of 'year'
* nci: translate tex in fields
* translate journal abbreviations in bibtex
* need *something* for docs without sources
   * store at least URL
* "notes" for documents (editable txt file)

* add only opens writable db on doc.sync()
* db version
* rename files when being added?
* separate add and update commands
* set/get title, author, tags as data or values (is this faster?)
* gtk gui, with pdf thumbs:
   "convert -thumbnail 500x -background white -alpha remove file.pdf[0] thumb.png"
   ([0] == pdf page)
* rework db/doc interface
   * doc is just directory and xapian_doc
   * db does write/index on sync
* db: can we force source prefixes to be OP_OR?

doc:
* add ability to remove source sid
* add ability to replace/remove file
* what to do with doc 'data' field:
  * snippet/summary (current)
  * data for fast retrieval?
  * bib abstract
  * custom annotations/notes
  * nothing

cli:
* utilize meta-data pulled from parser
* update should re-pull from existing source if available
* export should produce full mirror of xapers document structure, with index

nci:
* add update/add commands
* how to test??
* meta <other> for other fields (title, authors, year, etc)
* custom keybindings
* customizable palette

sources:
* add 'hdl': http://handle.net/proxy.html

parser:
* extract metadata from pdfs
* better handle parse errors
* better pdf parser (native python: https://gist.github.com/pazz/5455090)
* parsers for other document types

?
* emacs UI (need json/sexp output)
* store bib data in different format (json instead of bibtex)?
* clear old indexed terms when importing new file/bib?
* vcs integration (git of root)?


BUGS
====

* capitalized prefixed terms are not searchable
  - dcc:T00000
  - key:HaEA2009a
  If the term is capitalized, a colon gets automatically added:
      key:foo -> XBIB|foo
      key:Foo -> XBIB|:Foo

* can not add --file when source contains '/'
  * "xapers add --source=arXiv:hep-th/9806203 --file"

* nci choaks on unknown sources:
  File "/usr/lib/python2.7/dist-packages/xapers/source.py", line 181, in get_source
    raise SourceError("unknown source: %s" % name)
  xapers.source.SourceError: unknown source: url

* uncaught QueryParserError:

servo:~ 1$ xapers show tag:lsc date:2016...
Traceback (most recent call last):
  File "/usr/lib/python2.7/runpy.py", line 174, in _run_module_as_main
    "__main__", fname, loader, pkg_name)
  File "/usr/lib/python2.7/runpy.py", line 72, in _run_code
    exec code in run_globals
  File "/usr/lib/python2.7/dist-packages/xapers/__main__.py", line 330, in <module>
    nci.UI(cmd=args)
  File "/usr/lib/python2.7/dist-packages/xapers/nci/ui.py", line 75, in __init__
    self.newbuffer(cmd)
  File "/usr/lib/python2.7/dist-packages/xapers/nci/ui.py", line 96, in newbuffer
    buf = search.Search(self, query)
  File "/usr/lib/python2.7/dist-packages/xapers/nci/search.py", line 370, in __init__
    self.__set_search()
  File "/usr/lib/python2.7/dist-packages/xapers/nci/search.py", line 377, in __set_search
    count = self.ui.db.count(self.query)
  File "/usr/lib/python2.7/dist-packages/xapers/database.py", line 318, in count
    return self._search(query_string).get_matches_estimated()
  File "/usr/lib/python2.7/dist-packages/xapers/database.py", line 285, in _search
    query = self.query_parser.parse_query(query_string)
xapian.QueryParserError: Unknown range operation
servo:~ 1$