3

I would like to use html5 validator from LiipFunctionalTestBundle in my Symfony2 project. So, I followed instructions on bundle's github page, but I got this error during python build:

IOError: [Errno 2] No such file or directory: './syntax/relaxng/datatype/java/dist/html5-datatypes.jar'

indeed, there is a "dist" folder under that path, but it's empty (no files inside). I also tried to download file from daisy-pipeline, but it's deleted after running python build again

I'm using Java 1.7.0_04 on Ubuntu x64

A.L
  • 10,259
  • 10
  • 67
  • 98
Massimiliano Arione
  • 2,422
  • 19
  • 40
  • 1
    You need to install JDK, not only JRE. That is because you need java compiler. – d.k Apr 06 '13 at 14:00
  • You can also use the default validator `https://validator.nu/`. Can you please add your configuration and the code which call the validator in your question? – A.L Feb 03 '16 at 12:41

1 Answers1

0

As noted above:

You need to install JDK, not only JRE. That is because you need java compiler.

Paul Sweatte
  • 24,148
  • 7
  • 127
  • 265