e-Learning im Geschichtsunterricht. Produktion einer mehrsprachigen (Deutsch, Französisch, Italienisch) Multi-Media-DVD mit mehreren tausend textuellen, grafischen und akustischen Medien, deren Inhalte über einen Webbrowser angezeigt und durchsucht werden können. Die Suchfunktion habe ich als Java-Applet realisiert. Für die automatisierte Konvertierung der Daten von XML nach HTML unter Verwendung eigener XSLT-Stylesheets habe ich
Parser
Eurodelphes
By ramiro - Posted on June 21st, 2006
Tagged: CGI
• E-Learning
• Eurodelphes
• Java
• Magisterarbeit
• Multimedia
• Parser
• Perl
• Referenzen
• SMIL
• Studium
• XML
uniqueXPaths.pl
By ramiro - Posted on November 3rd, 2004
#!/usr/bin/perl -w
# uniqueXPaths.pl reports all the unique element paths and their
# frequencies of the XML file supplied as the only mandatory
# argument on the command line.
#
# Copyright 2003, Ramiro Gómez.
#
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.
use strict;
use XML::Parser;
use utf8; # Unicode support (not needed with Perl 5.8)
die "Usage: $0 XMLfile" unless @ARGV;
my $xmlfile = shift;