Remove unused xql files
- [x] getAnnotationParticipants.xql (sameAs #324 )
What's the way to check?
Like this? find . -name "*.xql" > xqlfiles
and then for all, e.g.: grep -R "pre-install.xql" *
could be a feasible solution would like to see the list of deletion candidates you come up with!
Deletion candidates:
- [x] getAnnotationParticipants.xql (sameAs #324 )
- [x] loginToTextGrid.xql (sameAs #322 )
- [x] checkTextGridLogin.xql (sameAs #322 )
- [x] getAnnotationsInRendering.xql
- [ ] getRendering
The controller.xql should stay because it’s needed in eXist-db
what about getRendering.xql? is this still used? (I couldn't find any reference to it)
What's the way to check?
Like this?
find . -name "*.xql" > xqlfilesand then for all, e.g.:
grep -R "pre-install.xql" *
find . -name "*.xql" | while read -r line ; do
echo "*** $line"
grep -R "${line##*/}" *
done
what about
getRendering.xql? is this still used? (I couldn't find any reference to it)
Yes, thank you for checking! Unfortunately I have just missed it, it seems.