PyLoNS
======

Introduction
--------------
The python webapp provides a web GUI to search for UI strings in LO code base, show all occurrences, and let you decide which one you want to search the references for in opengrok.

The python script does roughly the same workflow, but shows you file paths and lines so you can go through them in your shell.

Notes on implementation
-------------------------------
### WebApp
1. Ask for a search string
2. Narrow it to char enumeration + hotkey sign
3. git-grep for that in target files 
3. Parse the results against the words to see if it matches
3. apply levenshtein
3. Add to the pool of results
3. Once a result is chosen, we read to get the reference of the result 
3. We trigger opengrok with the ref

### Script

1. Only allow *full and exact* matches of string
2. git-grep for that in target files 
3. get the reference of the result 
3. show git-grep of the ref with context
