00:56 | <GPHemsley> | Hixie_: Doesn't the HTML differences spec list the differences between W3C and WHATWG? At least, inline with the respective changes? |
01:05 | <Hixie_> | does it? |
02:35 | <GPHemsley> | I recall it saying things like "this is only in the WHATWG version of the spec" |
02:44 | <MikeSmith> | jpwhiting: here now |
02:46 | <MikeSmith> | jpwhiting: the validator is not intended to be 64-bit only. We just try to keep up with the latest jetty, to make sure we have whatever security fixes and what-not |
02:47 | <MikeSmith> | the "ext" part in that path makes me suspect that's not used by jetty by default. and we're just using default jetty stuff afaik |
02:48 | <MikeSmith> | $ file libsetuid.so |
02:48 | <MikeSmith> | libsetuid.so: ELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=b71a2fa09cdc31e9985026e6f1b02f4e079194fe, not stripped |
02:50 | <MikeSmith> | anyway now that I think of it I don't even understand how that library would be used by jetty, since all the jetty code is java code |
02:50 | <MikeSmith> | platform independent |
02:51 | <MikeSmith> | and that lib of course is compiled for particular architecture |
02:52 | <MikeSmith> | no idea why they are even including that built binary in the jetty distribution |
02:53 | <MikeSmith> | about the validator still loading http://s.validator.nu/html5.rnc it's probably because the other schemas reference it through relative paths |
02:53 | MikeSmith | looks |
02:54 | <MikeSmith> | GPHemsley: the differences doc does include that info, yeah. Simon added it |
03:22 | <MikeSmith> | jpwhiting: after looking through the sources I don't actually see why they validator would still be trying to load that schema even after you removed it from the presets |
03:23 | <MikeSmith> | and that java.lang.StackOverflowError with com.thaiopensource.relaxng.impl.ChoicePattern.checkRestrictions is not an error I can remember seeing before |
03:37 | <jpwhiting> | MikeSmith: ok, perfect, I'll remove the .so file and that should make it so dh_shlibdeps doesn't fail anymore, I'll see if I can figure out the other issues, thanks for checking |
03:41 | <jpwhiting> | MikeSmith: just curious is there a minimum jdk version required for validator.nu or any of it's dependencies? |
04:17 | <jpwhiting> | MikeSmith: ah, the reason it says it's loading html5.rnc is because classes/nu/validator/localentities/files/presets has the w3c presets, not my list of presets |
04:17 | jpwhiting | looks to see which file that is generated by |
04:17 | <jpwhiting> | s/by/from/ |
04:17 | <zewt> | the more i think about it, the more i suspect letting pages control orientation is possibly the worst thing that could happen to mobile browsing |
04:18 | <zewt> | it's bad enough that switching apps on mobile randomly changes orientation--having it change as you go page to page would be apocalyptically bad |
04:19 | <jpwhiting> | heh, that's coming from presets.txt copied directly, /me changes my patch to change presets.txt rather than w3c-presets.txt |
10:05 | <galant> | why when I write new path over existing path I see the old path in the background it isn't overdrawn completely I still can see shadows in background from old path? |
10:05 | <galant> | how can I delete - clear old path from canvas? |
14:26 | <galant> | ccany idea why it seems canvas drwas vertical lines faster then horizontal? |
15:36 | <zewt> | rage @ the whole nonsense of ssl wildcard certificates only being valid down one level |
23:10 | <gallant> | lineWidth of canvas is square? so if lineWidth is 3 the point for drawinfg is square with 3 px width and 3px height? |
23:22 | <cabanier1> | gallant: yes |
23:22 | <Philip`> | gallant: No |
23:23 | <cabanier1> | :-) |
23:23 | <cabanier1> | it depends. |
23:23 | <Philip`> | It doesn't really have a shape, except at joins and ends, where its shape depends on lineJoin and lineCap |
23:24 | <cabanier1> | yes, but a horizontal line will be 3px |
23:24 | <cabanier1> | and vertical as well |
23:24 | <cabanier1> | (depending on ctm) |
23:25 | <cabanier1> | gallant: what are you asking exactly? |
23:26 | <gallant> | any idea why I can't make gradient with lineWidth of 3 px? |
23:26 | <gallant> | I am doing var gradient=mainText.createLinearGradient(0,0,0,3); |
23:26 | <gallant> | gradient.addColorStop(0,"yellow"); |
23:26 | <gallant> | gradient.addColorStop(1,"red"); |
23:26 | <gallant> | and I See only red color |
23:26 | <gallant> | if I make var gradient=mainText.createLinearGradient(0,0,0,36); and make lineWidth 36 px everything is fine I see the gradient |
23:26 | <gallant> | but cant with 3px why? |
23:29 | <gallant> | so |
23:29 | <gallant> | if I make lineWidth 3 px I am drawing with square that has width 3px and height 3px? |
23:30 | <cabanier1> | gallant: can you create a jsfiddle? |
23:36 | <cabanier1> | gone⦠|
23:36 | <cabanier1> | seems to work: http://jsfiddle.net/JV6Hz/1/ |