Edirom-Online icon indicating copy to clipboard operation
Edirom-Online copied to clipboard

Remove unused xql files

Open bwbohl opened this issue 1 year ago • 7 comments

  • [x] getAnnotationParticipants.xql (sameAs #324 )

bwbohl avatar Feb 15 '24 00:02 bwbohl

What's the way to check?

Like this? find . -name "*.xql" > xqlfiles

and then for all, e.g.: grep -R "pre-install.xql" *

daniel-jettka avatar May 21 '24 13:05 daniel-jettka

could be a feasible solution would like to see the list of deletion candidates you come up with!

bwbohl avatar May 22 '24 22:05 bwbohl

Deletion candidates:

  • [x] getAnnotationParticipants.xql (sameAs #324 )
  • [x] loginToTextGrid.xql (sameAs #322 )
  • [x] checkTextGridLogin.xql (sameAs #322 )
  • [x] getAnnotationsInRendering.xql
  • [ ] getRendering

daniel-jettka avatar May 23 '24 07:05 daniel-jettka

The controller.xql should stay because it’s needed in eXist-db

bwbohl avatar Jun 05 '24 12:06 bwbohl

what about getRendering.xql? is this still used? (I couldn't find any reference to it)

peterstadler avatar Sep 08 '24 20:09 peterstadler

What's the way to check?

Like this? find . -name "*.xql" > xqlfiles

and then for all, e.g.: grep -R "pre-install.xql" *

find . -name "*.xql" | while read -r line ; do
   echo "*** $line"
   grep -R "${line##*/}" * 
done

daniel-jettka avatar Sep 12 '24 11:09 daniel-jettka

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.

daniel-jettka avatar Sep 12 '24 11:09 daniel-jettka