/irc-logs / w3c / #css / 2015-04-18 / end

Options:

Previous day, Next day

  1. # Session Start: Sat Apr 18 00:00:00 2015
  2. # Session Ident: #css
  3. # [00:40] * Quits: plh (plehegar@public.cloak) ("Leaving")
  4. # [00:55] * Quits: Ms2ger (~Ms2ger@public.cloak) ("nn")
  5. # [00:56] <TabAtkins> plinss: After I modify a spec in Shepherd, it often shows with a warning sign, and a last-generated data of "- Never -". Is this something I should be worried about?
  6. # [00:56] <TabAtkins> Or is it just waiting for a different process to kick off?
  7. # [00:57] <TabAtkins> (I notice that DOM showed this for a bit when I updated it to point to the new spec, but now it's fine.)
  8. # [00:59] <TabAtkins> And for that matter, what does the "Synchronize" button do? Does it manually kick off processing? The scary "you should back up your database" message is frightening me.
  9. # [01:43] <TabAtkins> plinss: btw, OMIGOD I'M JUST NOW USING PARSER.NORMALIZEDMETHODNAMES() PROPERLY AND IT'S AMAZING.
  10. # [01:43] <TabAtkins> My previous hacks were terrible, this is great, +1 forever.
  11. # [01:44] * TabAtkins can stop having to manually write lt="foo(bar, baz)|foo(bar)" when defining a foo() method where the baz argument is optional.
  12. # [01:45] * TabAtkins is finally fixing the pile of hacks that were previous barely managing to handle IDL method linking.
  13. # [01:45] <TabAtkins> Probably gonna have to bump the version number after this.
  14. # [01:55] <plinss> TabAtkins: yeah, when you modify a spec it clears all the anchor data, that’s why it shows not synced
  15. # [01:56] <plinss> You can just hit the “Synchronize” button to kick off a parse, ignore the backup DB message, it
  16. # [01:56] <TabAtkins> ok
  17. # [01:56] <plinss> it’s some old paranoia on my part
  18. # [01:57] * Quits: myles (~Adium@public.cloak) (Client closed connection)
  19. # [01:57] <plinss> you can sync a single spec or run them all
  20. # [01:57] * Joins: myles (~Adium@public.cloak)
  21. # [01:57] <plinss> bu the next event that triggers a sync will pick up anything that needs it
  22. # [01:58] * plinss is glad you’re finally using normalizedMethodNames, it’s about time :-)
  23. # [01:59] * Quits: adenilson (~anonymous@public.cloak) (adenilson)
  24. # [02:02] * Quits: myles (~Adium@public.cloak) ("Leaving.")
  25. # [02:03] <TabAtkins> plinss: Think I'm hitting a bug in Construct.fullName:
  26. # [02:04] <TabAtkins> Given a definition like "interface Foo { long bar(long baz); };", when marking up the "baz" argument, construct.parent.fullName return "Foo/bar" (no parens or arguments). Should be "Foo/bar(baz)", yeah?
  27. # [02:05] <plinss> hmm, yeah, seems so
  28. # [02:05] <plinss> looking
  29. # [02:20] * Quits: lajava (~javi@public.cloak) (Ping timeout: 180 seconds)
  30. # [02:25] <plinss> TabAtkins: fixed
  31. # [02:25] <TabAtkins> thanks!
  32. # [02:25] <plinss> np
  33. # [02:25] * Joins: estellevw (~estellevw@public.cloak)
  34. # [02:27] <TabAtkins> +1, works great.
  35. # [02:27] <TabAtkins> Oh man, things are finally starting to link up together properly. this is great.
  36. # [02:27] <TabAtkins> Now I need to figure out just where I do the "allow you to link to a method without specifying args, if it's unambiguous", because I can't find it
  37. # [02:30] <dbaron> TabAtkins, did something break <pre class="link-defaults"> in bikeshed?
  38. # [02:30] <dbaron> TabAtkins, a bunch of the ones in transitions (e.g., for 'left') don't seem to be working anymore
  39. # [02:31] <dbaron> (when I run locally)
  40. # [02:31] <TabAtkins> dbaron: I mean, not intentionally. Haven't worked in that part of the code for a while. But let me check.
  41. # [02:41] <dbaron> TabAtkins, it looks like there's one link default for 'left' coming from somewhere else, and that one comes first -- is first or second in the array supposed to win?
  42. # [02:41] <TabAtkins> dbaron: Yeah, 'left' is coming out of the Bikeshed-wide link defaults, linking to position.
  43. # [02:41] <dbaron> TabAtkins, and I have a second link default in the spec for it, linking to css21
  44. # [02:42] <dbaron> TabAtkins, either that used to win, or there used to not be a bkeshed-wide one
  45. # [02:42] <TabAtkins> The latter.
  46. # [02:42] <TabAtkins> If 2.1 should win here, I'll adjust the Bikeshed-wide one.
  47. # [02:42] <dbaron> TabAtkins, I think it should for transitions, given the stability of transitions; not sure that it should win everywhere
  48. # [02:43] <dbaron> TabAtkins, is there not a way to override?
  49. # [02:43] <TabAtkins> Rather, css2.1 is listed as "replaced by" css-position.
  50. # [02:43] <TabAtkins> dbaron: Let me take a look, I'm not sure.
  51. # [02:53] <dbaron> I guess it's ok to just link to position -- so don't worry about it.
  52. # [02:54] <TabAtkins> That shouldn't help. ^_^
  53. # [02:54] <TabAtkins> (Both 'left' and 'position' are defined by css-position.)
  54. # [02:59] <TabAtkins> Oh wait, you meant linking to the position spec.
  55. # [03:00] <dbaron> yes
  56. # [03:05] <TabAtkins> dbaron: Ah, I found the problem.
  57. # [03:06] <TabAtkins> Yeah, it's grabbing the first relevant link-default it finds, so since there's a global one saying the default for a "left" property is css-position, it uses that. I can change it to use the last, so local things will win.
  58. # [03:08] <TabAtkins> dbaron: Btw, the point of the infotree format (what the link-defaults block is written in) is that it's a tree structure, so repeated information can be omitted. All those 2.1 property defaults you're putting in can have the "spec" and "type" parts moved to a root, and all the texts put underneath (indented one level).
  59. # [03:11] <TabAtkins> dbaron: okay, done
  60. # [03:11] <TabAtkins> Your local ones will now defeat the global ones.
  61. # [03:12] <dbaron> TabAtkins, thanks
  62. # [03:12] * leaverou is now known as leaverou_away
  63. # [03:37] * leaverou_away is now known as leaverou
  64. # [03:46] * Quits: estellevw (~estellevw@public.cloak) ("Snuggling with the puppies")
  65. # [04:18] * Quits: dbaron (~dbaron@public.cloak) ("8403864 bytes have been tenured, next gc will be global.")
  66. # [04:29] * leaverou is now known as leaverou_away
  67. # [04:52] * leaverou_away is now known as leaverou
  68. # [05:01] * Joins: estellevw (~estellevw@public.cloak)
  69. # [05:20] * Joins: dbaron (~dbaron@public.cloak)
  70. # [05:39] * leaverou is now known as leaverou_away
  71. # [05:49] * Joins: maven (~uui@public.cloak)
  72. # [06:31] * leaverou_away is now known as leaverou
  73. # [06:40] * leaverou is now known as leaverou_away
  74. # [07:06] * Quits: estellevw (~estellevw@public.cloak) ("Snuggling with the puppies")
  75. # [07:15] * Joins: estellevw (~estellevw@public.cloak)
  76. # [07:15] * Quits: maven (~uui@public.cloak) ("Leaving.")
  77. # [07:32] * leaverou_away is now known as leaverou
  78. # [07:42] * leaverou is now known as leaverou_away
  79. # [07:55] * Joins: jdaggett (~jdaggett@public.cloak)
  80. # [08:28] * leaverou_away is now known as leaverou
  81. # [09:13] * Quits: dbaron (~dbaron@public.cloak) (Ping timeout: 180 seconds)
  82. # [09:30] * Joins: cyrax (~user@public.cloak)
  83. # [10:02] * Joins: Ms2ger (~Ms2ger@public.cloak)
  84. # [11:26] * Joins: lajava (~javi@public.cloak)
  85. # [11:40] * Quits: lajava (~javi@public.cloak) (Ping timeout: 180 seconds)
  86. # [11:45] * Quits: dholbert (~dholbert@public.cloak) (Ping timeout: 180 seconds)
  87. # [11:47] * Joins: dholbert (~dholbert@public.cloak)
  88. # [11:52] * Quits: estellevw (~estellevw@public.cloak) ("Snuggling with the puppies")
  89. # [12:51] * Quits: Ms2ger (~Ms2ger@public.cloak) (Ping timeout: 180 seconds)
  90. # [13:04] * Joins: Ms2ger (~Ms2ger@public.cloak)
  91. # [15:42] * Quits: cyrax (~user@public.cloak) ("")
  92. # [16:40] * Quits: Ms2ger (~Ms2ger@public.cloak) (Ping timeout: 180 seconds)
  93. # [16:50] * Joins: Ms2ger (~Ms2ger@public.cloak)
  94. # [16:57] * Quits: Ms2ger (~Ms2ger@public.cloak) (Ping timeout: 180 seconds)
  95. # [17:15] * Joins: Ms2ger` (~Ms2ger@public.cloak)
  96. # [17:27] * Quits: Ms2ger` (~Ms2ger@public.cloak) (Ping timeout: 180 seconds)
  97. # [17:37] * Joins: Ms2ger` (~Ms2ger@public.cloak)
  98. # [18:01] * Quits: Ms2ger` (~Ms2ger@public.cloak) (Ping timeout: 180 seconds)
  99. # [18:18] * Joins: Ms2ger (~Ms2ger@public.cloak)
  100. # [18:20] * Joins: tommyjtl (~tommyjtl@public.cloak)
  101. # [18:20] * Joins: dbaron (~dbaron@public.cloak)
  102. # [18:30] * Quits: Ms2ger (~Ms2ger@public.cloak) (Ping timeout: 180 seconds)
  103. # [18:41] * Joins: Ms2ger (~Ms2ger@public.cloak)
  104. # [18:47] * Joins: Ms2ger` (~Ms2ger@public.cloak)
  105. # [18:51] * Quits: Ms2ger (~Ms2ger@public.cloak) (Ping timeout: 180 seconds)
  106. # [18:54] * Quits: Ms2ger` (~Ms2ger@public.cloak) (Ping timeout: 180 seconds)
  107. # [19:37] * Joins: lajava (~javi@public.cloak)
  108. # [20:08] * Quits: lajava (~javi@public.cloak) (Ping timeout: 180 seconds)
  109. # [20:33] * Joins: Ms2ger (~Ms2ger@public.cloak)
  110. # [21:35] * Joins: estellevw (~estellevw@public.cloak)
  111. # [21:37] * Joins: zcorpan_ (~zcorpan@public.cloak)
  112. # [21:44] * Quits: dholbert (~dholbert@public.cloak) (Ping timeout: 180 seconds)
  113. # [21:47] * Joins: zcorpan (~zcorpan@public.cloak)
  114. # [21:47] * Quits: zcorpan_ (~zcorpan@public.cloak) (Client closed connection)
  115. # [21:47] * Joins: dholbert (~dholbert@public.cloak)
  116. # [21:59] * Joins: zcorpan_ (~zcorpan@public.cloak)
  117. # [21:59] * Quits: zcorpan (~zcorpan@public.cloak) (Client closed connection)
  118. # [22:02] * Quits: zcorpan_ (~zcorpan@public.cloak) (Client closed connection)
  119. # [22:11] * Joins: zcorpan (~zcorpan@public.cloak)
  120. # [22:12] * Quits: zcorpan (~zcorpan@public.cloak) (Client closed connection)
  121. # [22:16] * Quits: estellevw (~estellevw@public.cloak) ("Snuggling with the puppies")
  122. # [22:16] * Joins: estellevw (~estellevw@public.cloak)
  123. # [22:30] * Quits: estellevw (~estellevw@public.cloak) ("Snuggling with the puppies")
  124. # [22:47] * Quits: tommyjtl (~tommyjtl@public.cloak) (Client closed connection)
  125. # [23:06] * Joins: Ms2ger` (~Ms2ger@public.cloak)
  126. # [23:13] * Joins: estellevw (~estellevw@public.cloak)
  127. # [23:13] * Quits: Ms2ger (~Ms2ger@public.cloak) (Ping timeout: 180 seconds)
  128. # [23:22] * Joins: zcorpan (~zcorpan@public.cloak)
  129. # [23:29] * Quits: zcorpan (~zcorpan@public.cloak) (Ping timeout: 180 seconds)
  130. # Session Close: Sun Apr 19 00:00:00 2015

Previous day, Next day

Think these logs are useful? Then please donate to show your gratitude (and keep them up, of course). Thanks! — Krijn