Re: [Htmlvalidator-help] tidy FreeBSD
Brought to you by:
mgueury
From: Marc G. <mg...@sk...> - 2006-06-08 14:07:50
|
Hi Dominic, I think that what happens is that the detection of the OS does not work for freeBSD. There is a code in the tidyInstall.js that detect the OS. function tidyInstallGetPlatform() { var platform = navigator.platform.toLowerCase(); if (platform.indexOf('linux') != -1) { return 'linux'; } if (platform.indexOf('mac') != -1) { return 'mac'; } return 'windows'; } Based on this, the extension tries to detect the OS and file extension. I think that it will not work for FreeBSD ? Just I do not know how to do it in a better way. If you could correct this, I will include the fix in the next beta version that I finally succeeded to compile and run on Linux. Marc [LoN]Kamikaze wrote: > When trying to install the extension as root an alert pops up saying: > > Html Validator-002: Failed autoRegistering renamed platform specific nstidy.dll > > Does it mean it's looking for nstidy.dll instead of libnstidy.so? > > PS: Any feedback on the new line numbering algorithm? > > > ------------------------------------------------------------------------ > > _______________________________________________ > Htmlvalidator-help mailing list > Htm...@li... > https://lists.sourceforge.net/lists/listinfo/htmlvalidator-help > |