summaryrefslogtreecommitdiffstats
path: root/addon/doxypysql
Commit message (Collapse)AuthorAgeFilesLines
* Expand sqlite3gen's breadth, depth, and qualityTravis A. Everett2018-09-031-59/+65
| | | | | | | | | | | | | | | | | | | | | | | Generated sqlite3 databases are roughly ready to support tools and projects that require a significant fraction of what Doxygen collects. output quality: - collect primary info for most major entities and relationships - fix causes of junk data in some columns (i.e. const * / QCString / string / memory issues) - convert decription field markup (mix of markdown, HTML, and Doxygen commands) into XML - eliminate duplicate/overlapping data (both rows and columns) usability: - abort if database already exists; prompt user to archive/delete it - record Doxygen and sql schema versions so tools/clients can target/message appropriately - refine schema to support and simplify common queries addon/doxypysql: - adopt schema changes - py3 compat
* sqlite3: add regexp searches to search.pyAdrian Negreanu2015-05-221-228/+255
|
* sqlite3: add new searches to search.pyAdrian Negreanu2014-02-081-62/+267
| | | | | | | | | | + -I <I> Get the includers of <I> + -i <I> Get the includees of <I> + -M <C> Get all members of class <C> + -B <C> Get the base classes of class <C> + -S <C> Get the sub classes of class <C> Signed-off-by: Adrian Negreanu <adrian.m.negreanu@intel.com>
* add search.py, a client for doxygen_sqlite3.dbAdrian Negreanu2014-01-091-0/+159
Signed-off-by: Adrian Negreanu <adrian.m.negreanu@intel.com>