]> git.plutz.net Git - confetti/commitdiff
apply tex escaping
authorpaul <paul@plutz.net>
Thu, 12 Oct 2017 16:26:03 +0000 (16:26 +0000)
committerpaul <paul@plutz.net>
Thu, 12 Oct 2017 16:26:03 +0000 (16:26 +0000)
svn path=/trunk/; revision=154

actions/generate_courselist.sh
templates/course_print.sh

index 07fb0bbb79bf1f19c94afa7a4f0c86b345aa79de..5b3a32b4315825921c65f3397c3a85abf60807f4 100755 (executable)
@@ -27,7 +27,7 @@ fromdate="$(date -d "$fromdate" +%s)" 2>/dev/null
 . ${_EXEC}/pages/cards.sh
 
 tex_clean() { #in dire need for improvement
-  echo "$*" |tr -d '{&}\\'
+  printf %s "$*" |tr -d '{&}\\'
 }
 
 
@@ -55,7 +55,9 @@ list_attendee() {  #Parameter: Cardfile
     for n in NOTE NOTE{0..10}; do if [ -n "$values[$n]" ]; then
       [ -n "$note" ] && note="$note\\newline $values[$n]" || note="$values[$n]"
     fi; done
-    printf '%s & %s & %s & %s\n' "$fullname" "$values[BDAY]" "$tel" "$note" \
+    printf '%s & %s & %s & %s\n' \
+           "$(tex_clean $fullname)" "$(tex_clean $values[BDAY])" "$(tex_clean $tel)" "$(tex_clean $note)" \
+
     | sed -r ':X;N;$!bX; s;\n;\\newline ;g'
   fi
 }
index cea90e386f6fd124edf7c266a447bf193f47137d..72ab8b803c7014ffdbf3ec7d9b77c54696c9caf7 100755 (executable)
@@ -55,7 +55,7 @@ done
 \hline
 \endhead
 '"$(
-list_attendance "$course" |sort -k 2 | debug |sed -r 's:^[0-9a-z\.]+ (.+) \(\*[0-9]{4}\)$:\1:;s:$: \& \& \& \& \& \& \& \& \& \& \\\\[3ex] \\hline:'
+tex_clean "$(list_attendance "$course")" |sort -k 2 | debug |sed -r 's:^[0-9a-z\.]+ (.+) \(\*[0-9]{4}\)$:\1:;s:$: \& \& \& \& \& \& \& \& \& \& \\\\[3ex] \\hline:'
 )"'
 \end{longtable}