diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-01-05 08:37:14 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-01-06 10:09:11 +0100 |
commit | a67fd6fe0df6aec9ed97c85e4d72b97a6358d3be (patch) | |
tree | 63b4be04f683f233d83792a68d1d617539b5ca13 /docs/teaching/exercises/build.xml | |
parent | 0e8205bf1bf37bf685c52d0466e85ee025198f0c (diff) | |
download | aspectj-a67fd6fe0df6aec9ed97c85e4d72b97a6358d3be.tar.gz aspectj-a67fd6fe0df6aec9ed97c85e4d72b97a6358d3be.zip |
Replace docs GIFs by PNGs
Follow-up on previous rename-only commit. This time, the binaries are
real PNGs. The asciidoc and other references to them have also been
replaced. File figures_classes.png in the teaching materials also was
rotated by 90° to display it correctly.
Background: The Asciidoctor PDF back-end cannot handle GIFs directly
without an additional Ruby Gem. It is easier to only use PNGs and JPEGs.
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'docs/teaching/exercises/build.xml')
-rwxr-xr-x | docs/teaching/exercises/build.xml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/docs/teaching/exercises/build.xml b/docs/teaching/exercises/build.xml index cc12be52e..d35fd5e2a 100755 --- a/docs/teaching/exercises/build.xml +++ b/docs/teaching/exercises/build.xml @@ -1,4 +1,4 @@ -<!-- +<!-- This build script will create a directory called burn that is _almost_ suitable for burning onto a CD. However, there @@ -49,7 +49,7 @@ and a clean AspectJ installer. <delete dir="${printdir}/exercises.pdf.contents" /> <mkdir dir="${printdir}/exercises.pdf.contents" /> <copy toDir="${printdir}/exercises.pdf.contents" file="index.html" /> - <copy toDir="${printdir}/exercises.pdf.contents" file="figures_classes.gif" /> + <copy toDir="${printdir}/exercises.pdf.contents" file="figures_classes.pdf" /> <copy toDir="${printdir}/exercises.pdf.contents" file="${aj.home}/doc/quick.pdf" /> <delete dir="${printdir}/install.pdf.contents" /> @@ -68,7 +68,7 @@ and a clean AspectJ installer. </target> <target name="event" depends="tools,exercises"> - <filter token="aj.event" value="${aj.event}" /> + <filter token="aj.event" value="${aj.event}" /> <copy file="install.txt" toDir="${eventdir}" filtering="yes" /> </target> @@ -82,7 +82,7 @@ and a clean AspectJ installer. <target name="tools" depends="skeleton"> <mkdir dir="${eventdir}/aspectj" /> - <filter token="aj.event" value="${aj.event}" /> + <filter token="aj.event" value="${aj.event}" /> <copy toDir="${eventdir}/aspectj"> <fileset dir="${aj.home}" excludes="bin/**" /> @@ -118,4 +118,3 @@ and a clean AspectJ installer. </target> </project> - |