IRC log for #arl on 20090520

00:12.12TorhalKaelten: ^^
00:12.21Torhalpompy: I told it no.
00:13.52ckknightplease enter http://www.wowace.com/contests/1-test-contest/
00:35.57aesirPlease see if you can view http://www.wowace.com/contests/1-test-contest/entries/10-aesir-rising/
00:36.06aesirNot a site admin.  Just anyone else.
00:37.20aesirBecause I think if I wanted mess around, I would try to see if I could find a ../1-ckknight/ and just keep brute forcing until I picked up a valid entry# and username URL
00:39.25*** part/#arl pompy (n=Mike@c-68-38-45-3.hsd1.nj.comcast.net)
00:45.18ckknightaesir: you'll be able to see others' entries once the contest closes.
00:45.57aesirUnderstood.  What about entries during the contest, where (for example) I wanted to see what others submitted, picked a good response because I couldn't figure out one for myself.
00:46.03Torhalckknight: I entered.
00:46.16ckknightthanks
00:46.26ckknightoh dear god, Torhal
00:46.31Torhalcackles.
00:47.05*** join/#arl pompy (n=Mike@c-68-38-45-3.hsd1.nj.comcast.net)
00:47.05*** mode/#arl [+v pompy] by ChanServ
00:49.44aesirI reported the contest.
00:50.51Torhal?
00:51.06aesirThere was a link "Report contest".  I used it.
00:51.44TorhalHeh
00:53.04ckknighthehe, aesir
00:53.26ckknightgood stuff, though
00:53.32ckknightfor the real contests, we'll be clear
00:53.39ckknighthoping to launch those tomorrow
00:53.55Torhalckknight: I was hoping for something along the lines of what you said out of that.
00:53.56Torhal:D
00:54.09ckknight;-)
00:54.33aesirI'm not worried about contest rules. I was just trying to be funneh.  What I am worried about is the clear URL entry#+username.  So... Torhal, can you view this link:   http://www.wowace.com/contests/1-test-contest/entries/10-aesir-rising/
00:54.46ckknighthe can't
00:54.47TorhalNo
00:54.49ckknightI can
00:55.03ckknightdef can_view(self, user=local('user')):
00:55.04ckknight<PROTECTED>
00:55.08aesirI figure admin types can, but cool.  If it's blocked for others that works.
00:55.59ckknightpeople who can manage contests (admins only, not even moderators) can see
00:56.06ckknightas soon as the close date is passed, everyone can see
00:57.23aesirWell, I hope they make a splash.  Contests are fun.
00:57.36ckknightyea
00:57.41ckknightand the prize is blizzcon tickets
00:57.46ckknightfor the next 3 contests
00:57.53aesirThat'll make a splash.
01:11.24aesirPity I just create new alts every couple of months.  This almost makes me want to level a character to 80 and start grinding heroics.  It's all in the name.  http://www.wowhead.com/?item=45868
01:21.36Torhalaesir: Heh
01:21.51*** join/#arl ckknight (n=ckknight@WoWUIDev/WoWAce/CurseStaff/CurseForge/ckknight)
01:23.01aesirSeriously.  I may need to actually focus on leveling one character.  Is that how most people play?  Cause that "Create New Character" button is my fav.
01:23.41ckknightlol
01:23.43ckknightI used to be an altoholic
01:23.45ckknightI've stuck to my paladin for now
01:23.47ckknightat lvl 62
01:25.19TorhalThis library project-versioning shit has me all...blech.
01:25.42TorhalDo I call it LibQTipClick-2, 2.0, or 1.1?
01:26.21TorhalIt's not a completely different lib, but it will break people's callback handlers.
01:26.22aesirI think you should call it LibQTip.  Incorporate QTipClick stuff, and figure out how to make it so all the 'old' functions work within the 'new' functions.
01:27.19TorhalThe whole reason it's a separate lib is that not everyone wants nor needs the clickable stuff in every project, so the rest is just bloat.
01:27.35TorhalThe only reason the scrollbars are in the core is because that was the only feasible way to do it.
01:28.03aesirWhy would it be bloat if it's not getting called?
01:28.26TorhalIt's still being loaded into memory - for every AddOn which uses it.
01:28.44TorhalThe bigger it is, the longer it takes to load, and people get touchy when WoW takes longer to load.
01:28.55aesirYou're illustrating why, if I ever do buckle down and try to write a decent addon, I won't use a library.
01:29.24TorhalThe key is using the right library, if you don't feel like re-inventing the wheel.
01:29.40TorhalThe whole purpose of libraries is to save memory overall, and to make writing addons easier.
01:29.58aesirThe key is having a dev community that doesn't actively try to subvert one of the great benefits of using libraries.
01:30.02TorhalIf there are 20 addons that implement their own version of LibQTip, that's a lot of wasted memory when they could all share a common implementation
01:30.24TorhalWho's subverting?
01:30.49aesirEvery addon author that starts a conversation about disembedded libs with, "Why would you want to?"
01:31.09TorhalAh
01:31.33aesirthen the versioning we see in a lot of popular libs.  Really, LibThisAndThat-1.0?  wtf.
01:32.24TorhalI didn't realize how silly having a version attached to a project was when I started it.
01:32.32TorhalI mean, 1.0 is the _initial_ commit.
01:32.33aesirI'm not saying it's easy to develop a lib.  But the idea is that the work is done up front by the lib maintainer(s) to ensure that everyone *other* than the lib author benefits from reusability and can avoid versioning issues.
01:33.52TorhalWell, there are a great many people who (whether they have a clue or not) view Tablet as an insanely bloated library because it has a bunch of stuff in it that they'll probably never use.
01:34.05TorhalThat's an example.
01:34.59TorhalI use it in Revelation because it works. But I don't use half the shit it has in it, and unless you're disembedding, loading that puppy 30 times takes awhile.
01:35.28aesirhindsight is 20/20, so I won't argue whether there are functions rarely used in a given lib, but I will suggest that you will end up with a lot more bloat (de facto, in practice) when a given user has to load LibTablet as well as it's slimmer replacement, because not every Tablet based addon author is going to convert to Tablet 2.0.
01:36.45TorhalI don't think the whole bloat thing would be as much of an issue if everyone would support disembedding instead of treating the people who want to do it as lepers.
01:36.47aesirOn my system: Ace2. Ace3.  Ace3? Because it was going to be more efficient and more clearly defined lib than Ace2.  Great. So now I run both.
01:37.21TorhalYou run both because Ace2 wasn't abandoned.
01:37.26aesirOh, 5 addons that use their own flavors of Astrolabe.
01:37.52ckknightTorhal: I know the trick
01:37.56ckknightyou write all the docs first
01:37.57ckknightget a good API
01:38.01ckknightthen write your code to match it
01:38.05ckknightthat's 1.0
01:38.22aesirckknight, this is all your fault anyway.  I got two words for you: Rock.
01:38.26ckknightwhat?
01:38.27aesir:p
01:38.36ckknighthow is this my fault?
01:38.45aesirI'm laughing, you should be too.
01:38.47TorhalYah, but every time you tag the library you're upping the version while the Project is still named 1.0
01:38.55TorhalIt seems silly.
01:39.09ckknightyea, it becomes 1.0.50
01:39.10ckknightor whatever
01:39.14TorhalSo I started tagging LibQTip by revision
01:39.20TorhalLibQTip-1.0 r72
01:39.28TorhalThat makes more sense.
01:39.36TorhalBut the .0 still bothers me :)
01:40.25aesirWhy are you versioning it like that? Is it really too much to have just LibQTip and then you do some funky stuff internally, entirely transparent to past and future users of the library, so that they can use your lib as a black box?
01:40.30TorhalAnd I see, for example, WindowLib-1.1
01:40.56TorhalWhat ever happened to WindowLib-1.0, and what made Mikk decide to up the project name by one maintenance version?
01:41.37Torhalaesir: There's a point where "funky stuff" to maintain backward-compatibility severely affects performance.
01:42.12TorhalAnd with my changes to LibQTipClick, there is no way to maintain it because the callback handler code has changed as far as the argument sequence goes.
01:42.14aesirCompared to having it separated in a new library?
01:42.41aesirIf it can't be done, it can't be done. I"m arguing for blue skies.
01:42.50TorhalIn that case, there will only be extra memory used since there will be two versions, each in its own sandbox, loaded.
01:42.51aesirReally just an academic argument
01:49.41Ackisbah I didn't get a murloc gladiator
01:50.54Torhalckknight: I'm actually wondering if I could just get away with sending a PM to the four authors who are using LibQTipClick letting them know to change their callbacks, rather than making a new project.
01:50.56TorhalHeh
01:50.58TorhalAckis: Aww
01:51.12ckknightyou could if you can get away with it.
01:51.28TorhalThat was...cryptic :)
01:52.55TorhalAckis: The new QTC supports mouse button differentiation.
01:53.19aesirOh oh tell him to change his callbacks!
01:53.27TorhalI can do that
01:53.32aesirlol
01:54.55Ackiswhat's a callback?
01:55.11TorhalIn ARL it's HandleTTClick()
01:59.17TorhalFuck it. There are four projects using it that I _know_ of. There may very well be 100 out in the wild.
01:59.27TorhalI should be considerate and make a new project,
02:03.09ckknight1.1 amirite?
02:03.16aesirI predict that in the near future, I'll going to grow my Qtip library collection by 50%.
02:03.34TorhalYah, it's not a complete rewrite but it does break the callback API.
02:04.22Torhalaesir: Bah. Unless you're running completely disembedded, you may already be loading LibQTip 20 times when WoW starts.
02:04.56TorhalI'm seeing a bunch of AddOns on WoWI that use it and aren't accounted for here.
02:05.08TorhalAnd they don't disembed :)
02:05.28aesirMy WoWI sourced stuff has dwindled.
02:05.48TorhalKaelten: Make CC 4.0 detect libs that are no longer in use :P
02:06.43ckknightTorhal: when you release 1.1 or 2.0 or whatever, put a notice in your 1.0 description pointing to the new project, describe what changed and why
02:07.32TorhalAye, planned on it. I'mma go with 1.1 since it's not a complete rewrite, and honestly, it's the first I've actually worked on the lib since I released the proof-of-concept back in December.
02:34.38Torhalckknight: Terminology quiz! LibQTipClick uses LibQTip, so LibQTip is a subset amirite?
02:34.51ckknightno
02:35.10TorhalSo I was right in the original description when I called it a superset.
02:35.26ckknightof {LibQTipClick, LibQTip}, {LibQTip} is a subset
02:35.46ckknightI would say it is an addition onto LibQTip
02:36.03TorhalTrue.
02:37.16TorhalNow, to figure out how to use git.
02:37.18Torhal:D
02:55.59aesirAckis: Is the output from scanning in the format you need for ticket creation purposes?  Do you need trainer name/ID or the name of the profession?  See example: http://www.wowace.com/projects/arl/tickets/595-inscription-recipe-skill-level-different/
02:59.54pompyaesir: thats a blizz issue
03:00.24aesirAs in, the API function he's using is giving back wrong data?
03:00.53pompyum? idk go scan the inscript trainer in dalaran, then one in org/sw
03:02.35aesirLet me start over: The scan dumps in chat used to include things like trainer name and ID.  Do we need that data still? Or is it safe for me to just copy/paste the text in the new popups?
03:03.01pompythey do inlcude that?
03:03.09aesirNot this one.
03:03.11pompybut with the skill level diff thing, i guess it doesnt
03:03.15pompyfor missing/extra
03:03.15pompyyeah
03:03.25pompythats bc
03:03.30pompyits the profession in general
03:03.32pompynot a trainer
03:04.26aesirGreat.
03:04.53pompybut the issue is..
03:05.03pompyif u use an older arl ver b4 i commited the skil level diff
03:05.08pompyscan teh dal inscrip trainer
03:05.13pompyand look at the output
03:05.18pompythen scn the org one
03:05.21pompyand look at teh output
03:05.25pompynotice teh difference
03:06.26aesirI don't have chars that can do that test.  So I'll take your word that there's a blizz issue.  Do I need to flag that ticket as invalid?
03:07.56pompyo u cant go to dalaran?
03:08.18pompyyeah flag it as invalid
03:09.12aesirI've a lot a low level alts.  One Artisan level 50 leatherworker and master enchanter are about as high as I got so far.
03:09.36aesirMy scribe is level 10. Hangs out in Stormwind.
03:10.06aesirIt'll take a while for her to get to places like outland and northrend.
03:10.13pompyu dotn need specific profs on a char to do these tests.
03:10.16pompybut
03:10.22pompyscan an in=script trainer in sw
03:10.31pompythat should work
03:10.41pompybasically
03:11.01aesirI did.  That's where that output came from.  So I think I am not understanding the issue- but that's ok.  I'll flag it as invalid.
03:11.06pompythe inscription trainer in dal says the trainer level of mystic tome is 85.. the inscription trainer in org says trainer level is 110
03:11.17aesiroh that's bad.
03:11.21pompyyeah
03:11.35aesirI looked at the recipe on the trainer, and the SW numbers were correct.
03:11.57pompyhmm
03:12.44aesirso, e.g., Mystic Tome really did require a skill level of 110, at least if I were (and I did just now) train it through that specific NPC.
03:13.09pompydid u scan that npc?
03:13.59aesirYes, the reason I opened the ticket was because I hit 110 skill level, ran to that SW Inscription NPC trainer, and ARL popped up the exceptions... Then I triained all the 110 level recipes.
03:14.44pompyit told u what trainer level for mysitic tome?
03:14.59aesirhttp://www.wowace.com/projects/arl/tickets/595-inscription-recipe-skill-level-different/
03:15.00aesirYes
03:15.29aesirMystic Tome was not trainable for my character at skill level 105.  It was at 110.  And that jibes with the output from ARL's scan.
03:16.45pompyyeah, sw/org same thing...
03:16.54pompyso basically they messed up with the nr ones
03:17.07pompythat seems to be listed as needing 85
03:18.14aesirNeat. I guess I should try to get my chars to northrend trainers and see if I can get recipes earlier than they're supposed to.
03:18.22pompylol
03:18.30pompyeh
03:20.04aesirI currently run 7 chars, representing each profession.  They're all level-capped until I get them all from level 15-20 up to level 35.  Getting a free boost of 25 skill points worth of recipes for each would be huge. Especially for my enchanter which pretty much funds all their profession training.
04:19.49*** join/#arl BWMerlin (n=chatzill@58.174.148.250)
07:38.47aesirTorhal: When did you up TipClick1.1?
07:48.28Torhalaesir: A bit over an hour ago.
07:50.05aesirMight have issues.  Investigating now.  Curse Client update ARL r1868-nolib did this:  Updated ARL (GOOD), failed to download LibQTipClick-1.1 (BAD) failed to remove LibQTipClick-1.0 (on my system, only ARL used it) (BAD), and I can't find the project page for TipClick 1.0 on wowace/curseforge.  I question whether addons using 1.0 are hosed now, for disembedded installs.
07:51.00aesirscratch that last.  I see 1.0
07:51.17aesirargh, no I don't.
07:54.57Torhalaesir: No, they're not hosed. And I told Kaelten that CC 4.0 needs to detect if libs are no longer needed, because 3.0 doesn't
07:55.13aesirjUst weird. I do a Search on 'click' and only 1.1 comes up.
07:55.32TorhalIf you click on Projects from the web page, select "Abandoned" from the dropdown, and then click Search, you'll see it
07:55.40aesirOnly mentioned the libs thing because when I uninstall some addons, it does seem to uninstall it's libs.  But I'll take your word for it.
07:56.07TorhalWell, it might....but if it does it's flaky.
07:59.02aesirIs ARL still using click 1.0?
08:00.32aesirI take it from release notes it's not.  But it shows up as a reverse relation for 1.0, and maybe that's why CC didn't remove it
08:03.19TorhalOh, yeah. That's probably why. It won't be fixed until ARL is tagged again.
08:04.22aesirok, I need to remember that sentence for when I see stuff like this.  Tagging has an impact on CC.  Got it.
11:12.43*** join/#arl pompy (n=Mike@c-68-38-45-3.hsd1.nj.comcast.net) [NETSPLIT VICTIM]
11:12.43*** mode/#arl [+v pompy] by irc.freenode.net
11:16.15*** join/#arl Repo (n=supybot@repos.curseforge.net)
11:16.15*** mode/#arl [+v Repo] by ChanServ
11:18.33*** join/#arl pompy (n=Mike@c-68-38-45-3.hsd1.nj.comcast.net) [NETSPLIT VICTIM]
11:18.33*** mode/#arl [+v pompy] by irc.freenode.net
11:20.29*** join/#arl Repo (n=supybot@repos.curseforge.net)
11:20.29*** mode/#arl [+v Repo] by ChanServ
13:19.16Zhinjiog'mornin'
13:40.03*** join/#arl ckknight (n=ckknight@WoWUIDev/WoWAce/CurseStaff/CurseForge/ckknight)
13:44.53Zhinjiog'morning, ck
14:11.57TorhalZhinjio: Morning.
14:38.41*** join/#arl ckknight (n=ckknight@WoWUIDev/WoWAce/CurseStaff/CurseForge/ckknight)
14:50.44*** join/#arl AckisWork (i=8ee553a4@WoWUIDev/WoWAce/ARL/Troll/Ackis)
14:50.45*** mode/#arl [+o AckisWork] by ChanServ
15:30.04*** join/#arl pompy1 (n=Mike@c-68-38-45-3.hsd1.nj.comcast.net)
15:44.34AckisWorkhttp://beta.wowace.com/projects/arl/ damn that looks good
15:50.32ckknightAckisWork: I like to think so
15:50.34ckknightsimple and clean
15:50.48TorhalThe poll is cropped on the right for me.
15:51.11ckknightright.
15:51.17ckknightas it's supposed to be
15:51.21ckknightonly so much data can be shown
15:51.30TorhalSo, Ackis is a douche?
15:51.38ckknightand making the height of the polls variable would look bad
15:51.50ckknightso instead, they're the same height, all look the same except for their width
15:51.53AckisWorkckknight: can you make it go ... when it gets cropped?
15:51.54ckknightand if you want more info, hover over the bar
15:52.02ckknightAckisWork: I might be able to.
15:52.17TorhalHover over what bar?
15:53.04AckisWorktwo other suggestions: the wiki ToC is gone, is that coming back?  I found that useful tbh, and secondly the wiki lists still look like they have too much space in between them.
15:53.35ckknightTorhal: the poll bars
15:54.00TorhalOnly bar I see says "Are you sad..."
15:54.03ckknightAckisWork: your ToC is gone, odd
15:54.04TorhalAnd hovering does nothing.
15:54.15ckknightTorhal: slightly lower
15:54.18ckknighton the actual poll.
15:54.36TorhalI'm moving my mouse over the entire poll. Nada.
15:54.51ckknightwhat browser are you using?
15:55.05TorhalFirefox 3.0.10
15:55.21ckknightso hovering over "65.6% - No, I never used it." just doesn't do anything?
15:55.34AckisWorkTorhal: when you hover over it, it pops up like a tooltip
15:55.39TorhalI don't see a percentage
15:55.41AckisWorkyou know what tooltips are right? ;)
15:55.50TorhalAckisWork: Wut's dem?
15:55.53TorhalI get no tooltip.
15:55.57ckknightwtf
15:56.05ckknighthow can you not see a percentage
15:56.06ckknight?
15:56.08ckknightTorhal: take a screenshot.
15:56.20AckisWorkckknight: it works for me albeit slightly slow
15:56.31ckknightit's just title="stuff", AckisWork
15:58.13AckisWorkodd
15:59.32TorhalBah. I have no idea where to send the screenshot. I don't feel like signing up for one of the image hosting sites right now :P
16:01.26ckknighttinypic.com
16:01.28Torhalckknight: Ok, I made a ticket on that ARL page and put the screenshot there
16:01.30TorhalHeh
16:01.31ckknightlol
16:01.48TorhalThankye - I'll use that next time.
16:01.49ckknightlink
16:02.18Torhalhttp://beta.wowace.com/projects/arl/tickets/598-screenshottage/
16:02.21TorhalI don't see the screenshot
16:02.23TorhalBah
16:04.48TorhalAnd Konqueror displays it fine.
16:04.54TorhalNot truncated.
16:04.58TorhalThe text wraps.
17:19.51Zhinjiothe toc isn't gone. its just on the bottom of the right hand column
17:19.58Zhinjiobut thats a useless placement afaic.
17:20.35ckknightAckisWork: http://www.wowace.test:5000/projects/arl/
17:21.34Zhinjiooh, didn't know you were talking about test
17:25.21AckisWorkckknight: can't find the server... is it wowace.test?
17:27.13Zhinjioyeah, I couldn't either.
17:27.41ZhinjioHow're you, Ackis?
17:28.04AckisWorkheya Zhinjio good... busy with all the shit as usual
17:28.32Zhinjionods.
17:28.35Zhinjiolikewise
17:28.57Zhinjiojust released a major revision in SKG with different security. I am expecting a mess of tickets over the next week or so
17:29.00AckisWorkyou has a beautiful baby however :)
17:29.04AckisWorkheh
17:32.57Zhinjiogrins.
17:33.12ZhinjioAckisWork: do you know how to assign a ticket to a milestone?
17:33.44Zhinjioor ck?
17:34.54Zhinjionm, I got it
17:35.30TorhalZhinjio: Yola
17:37.39Zhinjiosup Torhal
17:37.55TorhalNot too much. Yourself?
17:37.56Zhinjiodon't suppose you wanna redo all my dewdrops/tablets in SKG to use libqtip, do you?
17:37.58Zhinjiogrins.
17:38.10Torhaldances.
17:38.28TorhalSince you put it that way, I'm assuming you  have roughly 3.267 million of them.
17:41.06Zhinjionope, probably 6 or so.
17:41.15Zhinjioa couple are just stupidly complex though
17:41.22Zhinjioand I'm not sure of any way to get rid of the complexity
17:41.30Zhinjiothe latest patch actually removed 3 of them
17:41.44ZhinjioI'm debating just doing them with the default UIDROPDOWN stuff
17:41.50Zhinjioor libqtipclick
17:41.59Zhinjiosince they are all menus and need clickability
17:42.23TorhalI released LibQTipClick-1.1, btw
17:43.05AckisWorkTorhal: does ARL work with 1.1?
17:43.19TorhalAckisWork: Yah, committed it about 9 hours ago
17:43.23AckisWorkw00t
17:43.47TorhalSo now you can do more crazy shit since it recognizes which mousebutton you use
17:58.45*** mode/#arl [+v pompy] by ChanServ
17:58.56pompycomo esta betches
17:59.13Torhalpompy: betches?
17:59.28pompybitches == betches? lol
17:59.44Torhalmakes preparations to eBay pompy.
18:00.00pompy:(
18:01.10pompywhat the hell lol. for like 10 hours now, the steam servers have been to busy to handle my request
18:01.27pompy"please try again in a few minutes" .. its been 10 hours
18:03.27Torhalckknight: Bah. I didn't realize that setting LibQTip-1.0 as abandoned would make me lose 1.3 points per day :P
18:03.49TorhalIt's still being used at this point. Owell, set it back to Beta.
18:09.19TorhalErr, LibQTipClick-1.0
18:13.02pompyAckisWork: in one of teh tooltips in arl, is the 'obtained by' list truncuated?
18:26.52ckknightTorhal: set it to mature.
18:27.28ckknightAckisWork: whoops
18:27.34ckknighthttp://beta.wowace.com/projects/arl/
18:28.22ckknightAckisWork: check the poll
18:29.08AckisWorknice
18:29.20Torhalckknight: Danke
18:29.22AckisWorkit would be better if you could add a bit of whitespace between the last char and the border
18:29.23ckknightTorhal: wth: http://beta.wowace.com/projects/arl/tickets/598-screenshottage/
18:29.25AckisWorkpompy: wot/
18:29.25ckknightno image.
18:29.50TorhalSumbiatch
18:30.28TorhalI bet I know why: File extension is .jpeg
18:30.51pompyAckisWork: like the tooltip where it says who teaches you the item and shit? ..
18:31.19pompydoes it show only a certain amount of npcs or whatever instead of all?
18:31.24AckisWorkgimme screenshot sweety
18:32.52Torhalckknight: Heh. It won't let me upload. It clears the edit box when I hit Upload then reloads the page with "This field is required" in red.
18:33.00ckknighthmm
18:33.07ckknightlemme check it out
18:33.26pompyAckisWork: well u can jus see the images u put on the project page
18:33.32pompywhere it says 'obtained from:"
18:33.34pompythat list
18:34.17ckknighthmm
18:34.19ckknightthat is a bug
18:36.47pompyAckisWork: im just wondering if that list gets truncated or shows them all because, when im all done scanning the trainers and shit and have all the traineracquire in there, there can be like 27 or so trainers listed for a recipe
18:40.07ckknightwhoops, Torhal
18:40.07ckknight<PROTECTED>
18:40.39TorhalWTF? My screenshot?
18:42.44Torhalckknight: I did notice that it briefly shows what appears to be the correct rendering, then "flattens" the box making the right side abruptly truncate.
18:53.36AckisWorkhttp://www.wowwiki.com/User:Ackis/Previous_Guilds
18:56.12pompylol
18:56.37pompyyou guild/server hopper!
18:58.36AckisWorkthis is since wow came out my friend :P
18:58.44pompy;)
18:58.50pompyhttp://www.wowwiki.com/User:Pomp all i got lol
18:58.53pompygotta update thjat
18:59.50AckisWorkmine has a lot of shit on it
18:59.59pompyyes it does
18:59.59pompylol
19:04.47AckisWork:P
19:17.56TorhalHaha
19:17.59Torhal"they were all terrible, and well sucked hard core. "
19:18.28AckisWorkdude I got kicked from a guild there for calling an officer an idiot for stating that holy priests don't need +hit
19:18.40TorhalHaha
19:18.52pompyha
19:22.43pompyTorhal: http://www.wowace.com/projects/arl/tickets/598-screenshottage/ ? lol
19:35.01TorhalI was posting a ticket on beta.wowace.com with an image. The image didn't attach for some reason.
19:35.07TorhalI dunno why it's on the regular site as well.
19:35.14TorhalThey're supposed to be separate.
19:37.06pompywhens the relationships for arl guna be updated with the new lib of urs?
19:41.53ckknightTorhal: they're not actually separate.
19:41.56ckknightsame db.
19:42.06ckknightI'm getting it so that file uploads and all work on the beta site
19:42.14TorhalWewt
19:42.33TorhalFor hilarity: http://blogs.pitch.com/plog/2009/05/civilized_women_have_larger_pe.php
20:08.49pompydamnit ATSW needs to stop like "covering the whole screen" with its frame
20:13.33ckknightsuccess, Torhal
20:13.33ckknighthttp://beta.wowace.com/projects/arl/tickets/598-screenshottage/
20:13.37ckknightcookie
20:15.33pompyckknight                         5 minutes ago                         None   (.. on the current wowace lol.)
20:15.45ckknightoh yea
20:15.47ckknightdon't mind that
20:15.53ckknightI do a whole translation system thing now
20:15.59ckknightlet's see what it stores as:
20:16.42Torhalckknight: Uploaded
20:16.48ckknightu'm["Added attachment %(attachment)s", {"attachment": "Screenie.jpg"}]'
20:16.52ckknightm for markup
20:16.55ckknightthen a JSON object
20:17.02ckknightwell, a JSON list
20:17.28ckknightit's a list of two items, first is a string (which will be wrapped in a localization thing)
20:17.53ckknightsecond is a JSON object, that will turn into a python dict, which will be used to format the initial LazyTranslationString
20:17.57ckknight;-)
20:18.51ckknighteep, Torhal
20:18.54ckknightwhat version of Firefox?
20:20.12ckknightreproduced
20:29.44ckknightTorhal: fixed
20:40.10Torhalckknight: :D
22:20.57*** join/#arl BWMerlin (n=chatzill@58.174.148.250)
22:42.16BWMerlinis updating ARL with missing recipes. wrong skill lvl's etc easy?
22:44.13pompytakes a while
22:46.44BWMerlinwas just wondering if it was something I could do to help out

Generated by irclog2html.pl Modified by Tim Riker to work with infobot.