package hparse-0.1 reu par Maurice Diamantini de 
Jean-Luc commeau le 28/06/00

Modif suivantes effectues ( reporter par Jean-Luc)
Suppression de plusieurs fichiers inutiles (???) et cration
d'un sous rpertoire pour les tests :

Il reste seulement :

    - hparse.tcl
    - pkgIndex.tcl
    - test/mysample.tcl
    - test/exemple.html
    - test/forms.html
    - test/red_ball.gif

Modif du fichier mysample comme suit :
  #!/bin/sh
  # here is a sample html viewer to demonstrate the library usage
  # Copyright (c) 1995 by Sun Microsystems
  #
  # See the file "license.terms" for information on usage and redistribution
  # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  #
  # Make sure "wish" on the next line is a 8.1+ version
  # The next line is a TK comment, but a shell command \
  exec wish -f "$0" "$@" & exit 0
  
  if {$tk_version < 8.1 } {
          puts stderr "This library requires TK8.1, \
                       this is only $tk_version, \
                       patchlevel $tk_patchLevel"
          exit 1
  }
  if {[catch {array get env *}]} {
          puts stderr "This library requires tcl8.1, \
                        this version is too old!"
          exit 1
  }
  puts stderr "Starting sample HTML viewer..."
  
  # Include Html Parser
  set auto_path ".. $auto_path"
  package require hparse
