IRC log for #wowace on 20120611

00:13.21*** join/#wowace Wobin (~quassel@124-149-191-53.dyn.iinet.net.au)
00:13.23*** mode/#wowace [+v Wobin] by ChanServ
00:34.47*** join/#wowace Torhal (~torhal@c-71-207-224-241.hsd1.al.comcast.net)
00:34.47*** mode/#wowace [+o Torhal] by ChanServ
00:44.12*** join/#wowace RabidCabbage (~RabidCabb@host109-152-53-203.range109-152.btcentralplus.com)
00:54.38*** join/#wowace Ingela (~Ingela@90-230-170-118-no35.tbcn.telia.com)
00:58.49*** join/#wowace mascondante (~mascondan@66.119.110.130)
01:06.50*** join/#wowace webturtle0 (~webturtle@d28-23-242-73.dim.wideopenwest.com)
01:21.38*** join/#wowace Sintacks (Syntax@173-80-102-171-swby.atw.dyn.suddenlink.net)
01:38.06*** join/#wowace groktar (~gr@108-237-102-52.lightspeed.frsnca.sbcglobal.net)
01:41.36quiescensmoo
01:53.34mckenziemc~cattlebrand
01:53.35purlACTION brands quiescens.
02:03.55*** join/#wowace webturtle0 (~webturtle@d28-23-242-73.dim.wideopenwest.com)
02:10.14*** join/#wowace quiesense (~quiescens@203-217-28-61.perm.iinet.net.au)
02:12.17groktarthat's fun
02:12.20groktar~cattlebrand
02:12.20purlACTION brands quiescens.
02:12.35groktarpurl really has it in for quiescens, doesn't it?
02:12.36quiescensdies.
02:17.17*** join/#wowace Pucmel (~pucmel@static-84-242-121-43.net.upcbroadband.cz)
02:45.57*** join/#wowace TNSe (~evil@ti0042a380-1333.bb.online.no)
02:48.03*** join/#wowace mascondante (~mascondan@66.119.110.130)
02:57.37*** join/#wowace Kivin (43d40c45@gateway/web/freenode/ip.67.212.12.69)
02:58.51KivinWould anyone please help me find out which api event causes the "A buyer has been found for your auction of %s" message to show in the chat box? Hint: it's none of the AUCTION_* events, and the chat message pattern is in Interface\FrameXML\GlobalStrings.lua as ERR_AUCTION_SOLD_S
03:00.34pompyKivin: have someone buy an auction you put up and have /eventtrace going
03:01.07Kivinpompy: wow didn't know that existed. thanks.
03:01.18Kivini tried registering every event i could think of and printing out to chat but couldn't find it
03:02.18Kivineither CHAT_MSG_SYSTEM or UPDATE_PENDING_MAIL
03:03.38KivinCHAT_MSG_SYSTEM, bingo
03:06.55pompy!api chat_msg_system
03:06.56lua_botCHAT_MSG_SYSTEM: Fires when a system message is received (http://wowprogramming.com/docs/events/CHAT_MSG_SYSTEM)
03:09.44Kivin:)
03:11.59groktarnibbles on chat_msg_system
03:12.23quiescensgives groktar a cookie
03:12.39groktarthinks system messages taste better
03:14.47KivinFrameXML\BNet.lua does initialization on VARIABLES_LOADED. I have to guarantee that my addon initializes after that point. What should I do?
03:15.12*** join/#wowace asq (~asq@unaffiliated/asq)
03:17.02TorhalEither use AceAddon and set things up in OnEnable, or do so after VARIABLES_LOADED using an OnUpdate
03:17.36KivinIs OnEnable guaranteed to occur after BNet.lua's VARIABLES_LOADED?
03:18.19TorhalLook at AceAddon's definition for OnEnable.
03:18.27TorhalActually
03:18.28Kivinok
03:18.37TorhalThe BNet stuff is an AddOn?
03:18.50pompyframexml
03:18.51KivinNo, it's just floating in FrameXML
03:18.51TorhalHook its On_Load
03:19.02TorhalRun your stuff after it's executed.
03:19.11KivinAhh okay
03:19.24KivinThe OnLoad of the Xml Frame?
03:19.36TorhalNo idea; not familiar with that code.
03:19.49TorhalBut that's a route that should work if it HAS an On_Load
03:20.21Kivinhttp://pastebin.com/K49a6Gke I want my code to occur after the "VARIABLES_LOADED" condition of that if statement
03:22.42KivinShould I just post-hook BNToastFrame_OnEvent itself and listen for the VARIABLES_LOADED?
03:22.51TorhalKivin: hooksecurefunc("BNToastFrame_OnEvent", function(self, event, arg1) if event == "VARIABLES_LOADED" then do_my_stuff() end end)
03:23.03KivinExactly. Thank you Torhal .
03:23.17Torhalnp
03:23.19Stanzillathis torhal dude is such a nice guy
03:24.41TorhalHeh
03:24.54KivinI put the securehook in my OnInitialize function and it isn't getting called. Is OnInitialize too late to hit the VARIABLES_LOADED?
03:25.07TorhalHook it in the main chunk of your code.
03:25.12Kivinkk
03:25.57KivinStill no dice
03:26.15*** join/#wowace Arrowmaster (arrow@WoWUIDev/WoWAce/ResponsibleForEverythingAndNothing/Arrowmaster)
03:26.28TorhalNo idea.
03:27.02TorhalUse print statements
03:27.08TorhalSee when things are firing.
03:27.11KivinYeah, workin on it
03:28.17KivinBNToatFrame_OnEvent == nil in my main code chunk
03:28.31Kivins/Toat/Toast
03:28.39TorhalThen try hooking it in your OnInitialize
03:30.50TorhalErm, why not just hook BNet_ReopenClosedConversations() ?
03:30.55KivinVery strange. The function does exist in OnInitialize but it isn't getting called with VARIABLES_LOADED
03:31.05Kivinsec, lemme check that API
03:31.22TorhalIf you only need it to run once, then disable it after the first run.
03:32.00KivinBNet_ReopenClosedConversations only gets called under conditions that are unrelated to my addon ( GetCVar("conversationMode") == "popout" or GetCVar("conversationMode") == "popout_and_inline" )
03:33.03TorhalBut that's all that runs under the VARIABLES_LOADED clause
03:33.30Kivinhttp://pastebin.com/K49a6Gke lines 16 .. 21
03:33.54KivinMy addon is forcing BNet_EnableToasts, but I want to make sure it isn't already enabled.
03:34.08TorhalShit, I was looking at teh wrong OnEvent
03:34.24Stanzillafacepalms Torhal
03:34.31KivinOh goodness, did I copy & paste the wrong one in to my code
03:34.40KivinNo, no i did not
03:36.10KivinIs there a way to check if a frame has events registered to it? Based on BNet_EnableToasts and BNet_DisableToasts, I could check that at any arbitrary point in time without race conditions.
03:36.12TorhalThen just check for it in the same manner that EnableToasts enables it
03:36.18TorhalOh
03:36.20TorhalHrm.
03:36.34KivinYou know what? Can frames have an event registered twice?
03:36.52Kivinie will calling this twice cause symptoms: http://pastebin.com/kmK1z5AF
03:37.05TorhalNo.
03:37.22KivinThen fuck it. I'll just call it when my addon loads and call it a day.
03:37.26TorhalIt's an on/off thing, so turning it on twice isn't going to change anuything.
03:37.35TorhalYah - overthinking is bad, mmmkay?
03:37.38Torhal:D
03:37.41KivinIndeed
03:38.37KivinI wouldn't need any of this if the damn table BNToasts on line 1 of the lua was global
03:38.54TorhalYah, gotta love how they suddenly start localizing shit.
03:39.19KivinBlizzard code... lul
03:43.27pompyhttp://i.imgur.com/lvhND.gif :O
03:44.45Kivinokay, thats a lil weird
03:46.38groktar^
04:03.20KivinIf I pre-hook one of the BN functions from that lua file, how can I know if it will taint other parts of the UI?
04:09.33Repogrid: 03Phanx * r1481 README.txt: - Updated README
04:35.51*** join/#wowace Lornetc (~Lorne@S010698fc11809a36.vf.shawcable.net)
05:08.17*** join/#wowace quiesense (~quiescens@203-217-28-61.perm.iinet.net.au)
05:33.45*** join/#wowace znf (~ibm86@2001:470:1f0b:83e:20b:6aff:fe57:4d0f)
06:00.23*** join/#wowace tekkubby (~tekkub@c-71-237-116-205.hsd1.co.comcast.net)
06:06.38quiescenso.o
06:10.28Torhalthrows a couple of D3 elite packs at quiescens.
06:11.58groktarintercepts them and ebays
06:17.41groktarkekekes
06:30.14*** join/#wowace dubf (~quassel@98.115.92.62.static.cust.telenor.com)
06:48.04*** join/#wowace profalbert (~profalber@178-190-201-127.adsl.highway.telekom.at)
06:48.47*** join/#wowace profalbert_ (~profalber@178-190-201-127.adsl.highway.telekom.at)
06:49.26*** join/#wowace profalbert_ (~profalber@178-190-201-127.adsl.highway.telekom.at)
07:14.44*** join/#wowace Kemayo (~kemayo@97-88-168-90.dhcp.stls.mo.charter.com)
07:14.45*** mode/#wowace [+v Kemayo] by ChanServ
07:22.23*** join/#wowace Kalroth (~md@mail1.retailplanit.com)
07:26.28*** join/#wowace stolenlegacy (~stolenleg@unaffiliated/stolenlegacy)
07:39.38*** join/#wowace bluspacecow (~bluspacec@60-234-165-167.bitstream.orcon.net.nz)
08:39.19*** join/#wowace Elkano (~elkano@pool012.vpn.uni-saarland.de)
08:39.19*** join/#wowace Elkano (~elkano@WoWUIDev/WoWAce/Elkano)
08:39.19*** mode/#wowace [+v Elkano] by ChanServ
08:58.17*** join/#wowace tim_l (tim_l@ool-457bf217.dyn.optonline.net)
09:00.50tim_lhi
09:14.38tim_lis there a way to check if an aceaddon-3.0 module is really enabled?  :IsEnabled() returns true after i call :Disable() on the parent
09:38.43*** join/#wowace Vilkku (~vilkku@88-148-211-12.bb.dnainternet.fi)
09:38.47*** join/#wowace Vilkku (~vilkku@unaffiliated/vilkku)
09:51.51*** join/#wowace bluspacecow (~bluspacec@60-234-165-167.bitstream.orcon.net.nz)
10:10.47*** join/#wowace Megalon (Megalon@d86-32-5-1.cust.tele2.at)
10:21.59quiescenso.o
10:24.06*** join/#wowace pompy (~Mike@68.36.135.0)
10:47.59*** join/#wowace ThiefMaster (~thief@HSI-KBW-091-089-003-242.hsi2.kabelbw.de)
10:47.59*** join/#wowace ThiefMaster (~thief@unaffiliated/thiefmaster)
11:07.26*** join/#wowace pompy (~Mike@68.36.135.0)
11:46.24sbumorning
11:53.37*** join/#wowace Ingela (~Ingela@90-230-170-118-no35.tbcn.telia.com)
11:53.47*** join/#wowace Motig (~Motig@g90037.upc-g.chello.nl)
11:58.29*** join/#wowace pompy (~Mike@68.36.135.0)
11:58.36*** join/#wowace Alisamix__ (~Alisamix@mnch-5d87bc40.pool.mediaWays.net)
11:59.16*** join/#wowace renchap (renchap@je.suis.aigri.fr)
12:03.16*** join/#wowace Brybry (~Brybry@unaffiliated/brybry)
12:33.40*** join/#wowace pompy (~Mike@68.36.135.0)
12:36.17*** join/#wowace renchap (renchap@je.suis.aigri.fr)
12:44.49*** join/#wowace Cairenn (~Owner@MMOI/Administratrix/Cairenn)
12:44.49*** mode/#wowace [+o Cairenn] by ChanServ
12:49.45*** join/#wowace gix (~gix@p5DC168B3.dip.t-dialin.net)
13:05.57*** join/#wowace pompy (~Mike@68.36.135.0)
13:41.09*** join/#wowace Alisamix_ (~Alisamix@mnch-5d87bc40.pool.mediaWays.net)
13:49.50*** join/#wowace Higdur (~nike@h23n5-u-d2.ias.bredband.telia.com)
14:00.19*** join/#wowace groktar (~gr@50.59.13.66)
14:24.49*** join/#wowace oscarucb (~oscarucb@cpe-204-210-241-64.columbus.res.rr.com)
14:28.46*** join/#wowace Mihau (~Mihau@67.58.77.206)
14:35.18Repobad-boy: 03funkydude * r998 / (2 files in 1 directory): more D3 spam
14:35.21Repobadboy_guilded: 03funkydude * r122 BadBoy_Guilded.lua: More ads
14:35.30Repoyorsahjannounce: 03oscarucb * r42 YorsahjAnnounce.lua: change the LFR default priority to purple > yellow > red
14:35.31Reposince that seems to be the consensus of what most players prefer
14:35.43Repoyorsahjannounce: 03oscarucb * r41 YorsahjAnnounce.lua: add configurable strategy text, by popular request
14:35.52Repoyorsahjannounce: 03oscarucb 042.0 beta 1 * r43 : Tagging as 2.0 beta 1
15:02.43oscarucbdid anyone else just get a giant wowace subscription email with like 2 days worth of updates?
15:05.45znfchecks mail
15:05.49znfnope
15:19.23Torhal|workNein
15:26.01*** join/#wowace Kalroth (~Kalroth@d40aa5af.rev.stofanet.dk)
15:31.41quiescensmoo
15:37.18*** join/#wowace pompy (~Mike@68.36.135.0)
15:40.22prencheroscarucb: everybody did
15:41.26prencherthe task sending mails out wasn't running over the weekend
15:44.38durcynwhat, something else ckknight wrote?
15:44.52Torhal|worklol
16:17.24Funkeh`durcyn, it may be him who wrote it but the fact these things are still happening is worse :(
16:19.44*** join/#wowace pompy (~Mike@68.36.135.0)
16:42.49*** join/#wowace Yoshimo (~Miranda@p5B04E5FE.dip0.t-ipconnect.de)
16:43.05groktarwoot i finally get to virtualize something
16:43.18groktarrather than have 16 1u boxen
16:43.28*** join/#wowace Funkeh` (~funk@5ada267a.bb.sky.com)
16:43.47*** join/#wowace Funkeh` (~funk@WoWUIDev/WoWAce/Ace3/BigWigs/funkeh)
16:43.47*** mode/#wowace [+o Funkeh`] by ChanServ
16:43.51durcynwhich hypervisor?
16:44.18groktartrying xenserver
16:44.43groktarthis is coming from the company that decided windows 7 pro was good enough
16:44.45groktar:p
16:46.53durcynit is, if you must have windows clients?
16:47.03Fiskerhey Funkeh`
16:47.06Fiskernot so hey durcyn
16:48.05durcynhi fisker, did you see the doctor yet?
16:48.12Fiskerwhat doctor durcyn ?
16:48.20Fiskeror should i say
16:48.22FiskerDoctor Who?
16:48.56*** join/#wowace Dark_Elf (~Dark_Elf@h184-61-56-118.wdrnin.dsl.dynamic.tds.net)
16:49.34Dark_Elfcurse client is broke again bah
16:49.58*** join/#wowace Slayman (~dejhap08@port-24653.pppoe.wtnet.de)
17:02.31*** join/#wowace pompy (~Mike@68.36.135.0)
17:14.40*** join/#wowace koaschten (~koaschten@31-16-2-45-dynip.superkabel.de)
17:16.06*** join/#wowace sylvanaar_work (~sylvanaar@pdpc/supporter/active/sylvanaar)
17:40.35*** join/#wowace pompy (~Mike@68.36.135.0)
17:46.27*** join/#wowace tim_l (tim_l@ool-457bf217.dyn.optonline.net)
18:01.12*** join/#wowace Aens|Superiority (~a@24-212-233-165.cable.teksavvy.com)
18:03.54*** join/#wowace Elkano_ (~elkano@pool011.vpn.uni-saarland.de)
18:03.54*** join/#wowace Elkano_ (~elkano@WoWUIDev/WoWAce/Elkano)
18:03.54*** mode/#wowace [+v Elkano_] by ChanServ
18:05.54*** join/#wowace stolenlegacy (stolenlega@unaffiliated/stolenlegacy)
18:11.04*** join/#wowace profalbert (~profalber@178-190-201-127.adsl.highway.telekom.at)
18:11.41*** join/#wowace Telshin (~textual@67.58.77.206)
18:12.33*** join/#wowace Antiarc (~Chris@ip98-165-254-25.ph.ph.cox.net)
18:12.34*** mode/#wowace [+v Antiarc] by ChanServ
18:37.36*** join/#wowace Alisamix (~Alisamix@mnch-5d874829.pool.mediaWays.net)
18:44.00Yoshimothis packager should start syncing again, i made redundant bugreports that are already fixed. i just dont receive the update in my cclient ;)
18:48.21*** join/#wowace pompy (~Mike@68.36.135.0)
20:07.01*** join/#wowace Antiarc1 (~Chris@ip98-165-254-25.ph.ph.cox.net)
20:08.36Reporoleicons: 03oscarucb * r66 RoleIcons.lua: add third-party addon support for raid button highlighting
20:20.18*** join/#wowace Ketho (~ngsc@ip565063bd.direct-adsl.nl)
20:34.03Reporetardcheck: 03oscarucb * r138 RetardCheck.lua: add RoleIcons and tooltip integration
20:34.38*** join/#wowace arton (~arton@tx-184-6-179-33.dhcp.embarqhsd.net)
20:53.01*** join/#wowace profalbert (~profalber@178-190-201-127.adsl.highway.telekom.at)
21:02.55*** join/#wowace Funkeh` (~funk@5ada267a.bb.sky.com)
21:02.56*** join/#wowace Funkeh` (~funk@WoWUIDev/WoWAce/Ace3/BigWigs/funkeh)
21:02.56*** mode/#wowace [+o Funkeh`] by ChanServ
21:03.19Repoouroloot: 03farmbuyer * r100 / (2 files in 1 directory):
21:03.20RepoFormalize the code handling unique ID collisions that turn out to not be avoidable with improv numbers.  Turn on debug.comm and debug.loot with @debug@ markers.
21:09.34*** join/#wowace mitch0 (~mitch@drvolomdental.hu)
21:18.07MysticalOShuh? i just got spammed a bunch of emails for updates from 2010 tickets and file commits. is apple updating curse too on top of mac pros? :)
21:21.44PrimerSo yet another bug report for my addon
21:22.02PrimerFor the problem where zoning into an instance hangs the game
21:22.10PrimerWTF can I do to debug this?
21:23.10pompyevents? hm
21:23.17PrimerIt's definitely some sort of infinite loop in an event
21:23.52pompyrun an /eventtrace ?
21:24.02PrimerOn a hung game?
21:24.06PrimerHow the hell do I do that?
21:24.42pompyhung to the point of logging out?
21:24.45pompydisconnecting*(
21:24.57Primerto the point of "this program has stopped responding"
21:25.06Primerand all you can do is alt-f4
21:26.08pompywelp find out what the events are for entering an instance.. and, look at your code
21:26.11pompyto see whats going on
21:26.52PrimerI register this event for sure: ZONE_CHANGED_NEW_AREA
21:27.06Primeras well as PLAYER_ENTERING_WORLD
21:27.51PrimerIf I had to guess, it's the latter, as that one is triggered on zoning into instances, whereas the former is just on normal zoning in the world
21:28.08PrimerI guess I should have made that clear. This only happens, and randomly at that, when zoning into instances
21:31.48*** join/#wowace tekkub (~tekkub@WoWUIDev/WoWI/Featured/Dongle/GitHub/Tekkub)
21:31.48*** mode/#wowace [+v tekkub] by ChanServ
21:33.30PrimerThe only thing that comes to mind is if I'm triggering an event that is then being handled again, ad infinitum. I just don't see where my code could be triggering any events
21:33.52*** join/#wowace MiRai (~MiRai@99-106-144-143.lightspeed.nsvltn.sbcglobal.net)
21:36.12PrimerThe only suspect part is where I call an Astrolabe function
21:36.54pompycould be it
21:42.37Primersigh...svn: The path '/home/daniel/World of Warcraft/Interface/AddOns/FlightHUD' appears to be part of a Subversion 1.7 or greater
21:45.05*** join/#wowace profalbert_ (~profalber@178-191-182-169.adsl.highway.telekom.at)
21:46.16*** join/#wowace Kivin (43d40c45@gateway/web/freenode/ip.67.212.12.69)
21:46.25KivinI take it you cannot set a metatable on a frame?
21:46.51Arrowmasterframes already have a metatable
21:47.30KivinYeah, okay.
21:58.02Torhal|workPrimer: If you only need the PEW functionality once, unregister it after the first time it's called.
21:58.22Torhal|workYou're likely hanging up because the code is running twice which is somehow fucking your state.
22:10.08Repomail-outbox: 03dieendieen * r38 / (2 files in 1 directory): updated the gold tracking a bit
22:11.14Repomail-outbox: 03dieendieen 041.2.2.release * r39 : Tagging as 1.2.2.release
22:12.32PrimerTorhal|work: interesting approach. I'll try it
22:13.19PrimerBut just to make sure I understand you: In the PEW event handler, unregister it first, run my code, then re-register it?
22:13.48PrimerBecause it gets called when you zone into an instance, that I know for sure
22:15.44*** part/#wowace Slayman (~dejhap08@port-24653.pppoe.wtnet.de)
22:16.54*** join/#wowace arlen (~arlen@c-24-125-124-95.hsd1.va.comcast.net)
22:18.17*** join/#wowace DarkerAudit (~Brian@c-98-236-98-13.hsd1.wv.comcast.net)
22:19.51Primerhrmm, maybe it's actually ZONE_CHANGED_NEW_AREA
22:20.13*** join/#wowace grokse (~gr@50.59.13.66)
22:20.45*** join/#wowace dieck_ (~dieck@bandbreiter.net)
22:22.01*** join/#wowace Gagorian (~k@dsl-tkubrasgw3-fe94dd00-67.dhcp.inet.fi)
22:22.06*** join/#wowace AckisWork (~Ackis@WoWUIDev/WoWAce/ARL/Troll/Ackis)
22:22.06*** mode/#wowace [+o AckisWork] by ChanServ
22:22.32*** join/#wowace Higdur_ (~nike@h23n5-u-d2.ias.bredband.telia.com)
22:22.39*** join/#wowace phyber_ (phyber@irssi.co.uk)
22:25.49*** join/#wowace Jyggaa (jygga@unaffiliated/jygga)
22:26.09Torhal|workPrimer: Well unless you actually want your code being called twice every time you zone, either get rid of PEW completely or unregister it within its handler the first time it's called.
22:26.59*** join/#wowace vhaarr_ (~folk@ti0013a380-dhcp1829.bb.online.no)
22:27.32*** join/#wowace Vilkku_ (~vilkku@88-148-211-12.bb.dnainternet.fi)
22:27.32Torhal|workIn fact, for TravelAgent I only listen for ZONE_CHANGED, ZONE_CHANGED_INDOORS, and ZONE_CHANGED_NEW_AREA
22:27.32*** join/#wowace Vilkku_ (~vilkku@unaffiliated/vilkku)
22:27.37Torhal|workPEW is completely absent.
22:27.43*** join/#wowace Alisamix_ (~Alisamix@mnch-5d874829.pool.mediaWays.net)
22:28.34PrimerZONE_CHANGED_NEW_AREA doesn't fire when going it/out of instances
22:28.43Primerat least that's what I'm seeing right now
22:28.45*** join/#wowace Adys_ (~adys@cpc3-leic16-2-0-cust322.8-1.cable.virginmedia.com)
22:28.48*** join/#wowace Adys_ (~adys@unaffiliated/adys)
22:29.19*** join/#wowace Zyn- (~skreeee@h187n4-av-a11.ias.bredband.telia.com)
22:29.21Torhal|workAre you listening for all three I just listed?
22:29.51*** join/#wowace Higdur (~nike@h23n5-u-d2.ias.bredband.telia.com)
22:30.00*** join/#wowace ggjgj (~Denial@unaffiliated/windaria)
22:30.33*** join/#wowace mckenziemc1 (~Mark@adsl-67-126-198-53.dsl.chic01.pacbell.net)
22:30.40Primerno, but I will now
22:30.44Torhal|workAnd ZONE_CHANGED_NEW_AREA is supposed to fire when entering/leaving an Instance so I'm at a loss on why it isn't for you.
22:31.20*** join/#wowace tim_l (tim_l@ool-457bf217.dyn.optonline.net)
22:31.37Primermaking sure now
22:32.12*** join/#wowace Arrowmaster (arrow@WoWUIDev/WoWAce/ResponsibleForEverythingAndNothing/Arrowmaster)
22:32.33*** join/#wowace Torhal (~torhal@c-71-207-224-241.hsd1.al.comcast.net)
22:32.33*** mode/#wowace [+o Torhal] by ChanServ
22:33.43PrimerI still can't reliably replicate this problem
22:33.50Primerit happens to me once in a great while
22:33.57Torhal|workWell hopefully taking PEW out of the equation will do it.
22:35.01PrimerI hope so. Thanks for your help :)
22:35.11Torhal|worknp
22:35.11*** join/#wowace oscarucb1 (~oscarucb@cpe-204-210-241-64.columbus.res.rr.com)
22:35.12*** join/#wowace dracula (~dracula@d74124.upc-d.chello.nl)
22:35.24Stanzillapews Torhal|work
22:36.05*** join/#wowace Gagorian (~k@dsl-tkubrasgw3-fe94dd00-67.dhcp.inet.fi)
22:36.12Torhal|workFoof
22:36.15Torhal|workAnywho, heading home.
22:36.19PrimerShouldn't I see
22:36.31Primera ZONE_CHANGED event at login though?
22:36.35Primerand reload ui?
22:36.52PrimerI think this may have been why I added PEW
22:39.44*** join/#wowace Ketho (~ngsc@ip565063bd.direct-adsl.nl)
22:44.03*** join/#wowace sylvanaar_work (~sylvanaar@pdpc/supporter/active/sylvanaar)
22:46.33grokseoh god i updated all the rows
22:46.34groksewith rand
22:46.58*** join/#wowace arkanes (~arkanes@python/site-packages/arkanes)
22:47.43Primerbegin;
22:47.47Primer...
22:47.48groksei didn't see the semicolon before my where clause
22:47.51Primerrollback;
22:48.21PrimerPITR time
22:48.35grokseyay for only borking the beta environment
22:48.40Primerheh
22:48.45groksei strongly suspect nobody will notice...
22:49.10groksei was filling in GPS coordinates
22:49.18groksetrying to get some random ones
22:52.09groksenot impressed with xenserver so far
22:52.20PrimerFor what task?
22:52.28Primermanaging VMs?
22:52.37groksejust trying to get a ubuntu server vm and a windows 7 pro vm going
22:52.45groksebeen totally unsuccessful so far
22:52.58PrimerI use qemu-kvm here at the office
22:53.01Primerand AWS in prod
22:53.17*** join/#wowace Diao (~vince@ip68-225-245-196.oc.oc.cox.net)
22:54.18Primerall the VMs at the office are pretty static though. Only rarely do I need to create a new one
22:54.21groksewe have a zillion 1u boxes in production
22:54.21grokse:p
22:57.05Primerthat sucks
22:57.17PrimerI'm really happy with AWS
22:57.36PrimerI never have to go to datacenters and rack/de-rack machines
22:58.53groksei hate doing that
22:59.24grokseit seems like i'm the only one that knows where his keycard and cabinet keys are
22:59.36grokseso i always have to drive down there
22:59.53grokseand it's really far from my house :()
23:01.11PrimerI hear that. I used to have to drive to downtown LA some times
23:01.16Primerfrom 30 miles away
23:19.55*** join/#wowace Kivin (43d40c45@gateway/web/freenode/ip.67.212.12.69)
23:20.42KivinI absolutely cannot get a child frame to appear inside my frame. The parent frame is shown and placed correctly on the screen.
23:23.19Primerbogus
23:24.18KivinThe child apparently is shown and placed correctly too. It renders if I change the inherited frame. But vanishes when I create it with the correct inherited frame =/
23:24.20KivinWhat the hell have I done
23:28.57TorhalPrimer: Are you using AceAddon?
23:29.08Repoflight-hud: 03barfolomeu * r372 / (4 files in 1 directory):
23:29.09RepoRemove PLAYER_ENTERING_WORLD event and replace it with ZONE_CHANGED and friends. Hoping this fixes the race condition that I can't debug.
23:29.36PrimerTorhal: let me check
23:29.45Primeraye, AceAddon-3.0
23:29.47TorhalIf you are, run your code in OnEnable.
23:29.50TorhalThere you go.
23:30.07PrimerNot sure what you mean by that
23:30.11TorhalOtherwise, I was going to suggest the unregister-PEW-within-its-handler scenerio
23:30.13Repoflight-hud: 03barfolomeu 04v0.12.2 * r373 : Tagging as v0.12.2
23:30.22PrimerI have an OnEnable handler
23:30.25TorhalThe code you're running on the events
23:30.26TorhalAh.
23:33.40PrimerTurns out ZONE_CHANGED and friends did all I neded
23:33.42Primerneeded, even
23:33.54TorhalNice :)
23:34.19pompywoo
23:34.20PrimerIt remains to be seen if this actually fixes the problem
23:34.25PrimerNot too many people use my addon
23:34.35PrimerIt's more eye candy than function
23:34.42Primeralthough I find it very useful
23:34.46Primerand pretty :)
23:38.34TorhalHehe
23:38.50KivinI cannot get any buttons that inherit from AuctionSortButtonTemplate to display on the screen. They all just vanished between UI reloads. SVN revert didn't clear the issue. Creating one right on the UIParent doesn't even render. Troubleshooting advise?
23:39.07TorhalKivin: Set width and height.
23:39.15KivinTorhal: done
23:39.24TorhalExplicitly :Show()?
23:39.28Kivindone
23:39.43TorhalCheck out the template you're deriving from to see if there's initialization which must be performed?
23:39.52TorhalOn_Load and whatnot.
23:39.55KivinChanging the inherited frame to OptionsButtonTemplate makes it render, so I know its visible and placed correctly
23:39.59KivinThere is not
23:40.15PrimerI do everything programatically
23:40.22Primernever liked mixing XML and code
23:40.27Primerfeels so...java-ish
23:40.48TorhalOh, you can inherit from templates using Lua, provided your frame is named.
23:41.18pompyPrimer: errr-oorr err-oorr
23:41.21KivinTorhal: the virtual frame has no scripts save for an OnClick and they aren't refrerenced in FrameXML lua files in any significant way.
23:41.25pompyPrimer: http://www.wowace.com/addons/flight-hud/repositories/mainline/packager/
23:41.28pompyTorhal ^
23:41.46pompyastrolabe and libaboutpanel
23:42.07Primerlovely
23:42.18PrimerI haven't updated this code in a long time
23:42.20TorhalAstrolabe, I believe, must be hard-embedded.
23:42.29TorhalAnd there's 1 .0 now
23:42.40TorhalAckis may have done something silly with LibAboutPanel as well.
23:42.45pompyand the error is saying the repo for libaboutpanel doesnt exist.
23:42.50TorhalSo check your .pkgmeta in relation to the repos.
23:42.53pompyi think primer is referencing the correct one
23:43.08pompyhttp://wow.curseforge.com/addons/libaboutpanel/repositories/mainline/
23:43.51Primerthat's what I have
23:43.56pompyDone with git://git.curseforge.net/wow/libaboutpanel/mainline.git
23:43.58pompyhm
23:44.09TorhalIt did package.
23:44.24pompynot the tag
23:44.32Primerthe tag did
23:44.49pompyUnable to create tag zip v0.7.12 for svn://svn.curseforge.net/wow/flight-hud/mainline/trunk: Can't find repo object for wow / libaboutpanel / mainline.git
23:45.05PrimerThe zip lacks Astrolabe though
23:45.30pompywhats v0.7.12 of
23:45.31pompylol
23:45.43Primerthe tag is 0.12.2
23:45.48pompyya
23:46.00pompybut its talking about 0.7.12 in that line
23:46.11TorhalKivin: That template has an OnEnter, OnLeave, OnClick, and OnUpdate. If you're not setting things up correctly with regards to likely the OnUpdate, that may be the issue.
23:46.11PrimerDunno why
23:46.18Primerthat one's old as fuck
23:46.55KivinTorhal: I had them working for ages and then they just disappeared. I didn't change any scripts.
23:47.01TorhalDunno.
23:47.16PrimerLooks like the Astrolabe svn server is just down
23:47.27PrimerNot sure why that's not hosted locally...
23:47.32TorhalIt is
23:47.47Torhalhttp://wow.curseforge.com/addons/astrolabe/
23:47.56TorhalOh
23:48.01TorhalGuess not - it synchronizes
23:48.08Primeryeah, and repo is his own site
23:48.12Stanzillaastrolabe is crap anyway
23:48.13TorhalAye
23:48.19Torhalkicks Stanzilla.
23:48.19quiescensbrr
23:48.25Primerwhich just issues a connection reset
23:49.31Primerwell, it just closes the connection, that is
23:51.06PrimerI use Astrolabe to manage world and minimap icos
23:51.08Primericons
23:53.11pompyPrimer:  change it to http://svn.esamynn.org/astrolabe/trunk ?
23:54.01Primersvn ls http://svn.esamynn.org/astrolabe/trunk
23:54.01Primersvn: OPTIONS of 'http://svn.esamynn.org/astrolabe/trunk': Could not read status line: connection was closed by server (http://svn.esamynn.org)
23:54.45Primerthe server's just broken
23:54.55Primerbut yeah, I guess that's the URL to use
23:55.01pompyyeah..
23:55.09pompyand mayvbe the libaboutpanel thing is just a hiccup
23:55.09KivinWhat would cause a virtual frame to no longer be available... I migrated my missing xml frame over to lua (CreateFrame et al) and I'm getting a framexml error "Couldn't find inherited node AuctionSortButtonTemplate"
23:56.11PrimerWell, the zip had libaboutpanel
23:56.17Primerit did not have Astrolabe though
23:56.28PrimerIt shouldn't have packaged since it failed, IMO
23:56.35pompyyeah true but the error had to do with libaboutpanel weird
23:56.48pompysaying the repo didnt exist lol. hm
23:56.49TorhalKivin: Using it as "AuctionSortButtonTemplate"?
23:56.54TorhalWIth quotes, I mean
23:58.12TorhalKivin: Got it.
23:58.25KivinTorhal: yes
23:58.36TorhalThe default UI doesn't load that XML file - Interface/AddOns/Blizzard_AuctionUI does.
23:58.50KivinOh right
23:59.07TorhalSo you have to ensure that AddOn is loaded before you initialize your stuff.
23:59.45KivinBingo. I refactored one of my virtual frames in to an absolute frame in xml. Its been created before blizzard_auctionUI loads.

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