Wednesday, May 8th, 2013, 00:01 UTC | ||
[00:01:28] | knightr: | (in case you haven't guess what I am afraid of is augmenting significantly the number of strings translators must translate...) |
[00:05:55] | knightr: | stichnot, how do they specify what file to use, is it always the same file name or is it specified someplace else? |
[00:06:38] | stichnot: | In the current implementation I'm working on, it's menu_playback.xml in the theme search directory path. |
[00:07:09] | stichnot: | How many different themes do you choose to translate? |
[00:08:20] | knightr: | 9 and two of these are Steppes... |
[00:08:32] | knightr: | two are MythCenter... |
[00:08:33] | knightr: | Arclight Childish Graphite Mythbuntu MythCenter MythCenter-wide Steppes Steppes-narrow Terra |
[00:10:47] | knightr: | Adding some themes can add many hundreds if not close to a thousand strings and a lot of them only differ by capitalizations, spacing differences, etc... |
[00:10:54] | danielk22 (danielk22!~danielk@exchange.wgen.net) has quit (Read error: Operation timed out) | |
[00:11:04] | stichnot: | Yeah, I don't want to impose that... |
[00:11:49] | knightr: | stichnot, but if they don't implement it we do provide a fallback right? |
[00:12:02] | stichnot: | sphery: have you had any thoughts on menu themes and translations? |
[00:12:38] | stichnot: | knightr: my bus is about to arrive, I'll have to respond later |
[00:12:51] | knightr: | (so it will only add new strings if they do decide to implement a different OSD, right?) |
[00:13:14] | knightr: | (I mean after the one in the default OSD, right? |
[00:13:19] | knightr: | OK... |
[00:18:33] | MavT (MavT!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv | |
[00:20:57] | XDS2010 (XDS2010!uid1218@gateway/web/irccloud.com/x-cpwitmlttimwumgv) has quit (Ping timeout: 264 seconds) | |
[00:21:58] | MaverickTech (MaverickTech!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Read error: Connection reset by peer) | |
[00:22:54] | stichnot (stichnot!~stichnot@mythtv/developer/stichnot) has quit (Ping timeout: 264 seconds) | |
[00:23:24] | jya_ (jya_!~jyavenard@mythtv/developer/jya) has joined #mythtv | |
[00:29:09] | len (len!~quassel@75-161-175-43.mpls.qwest.net) has quit (Read error: Connection reset by peer) | |
[00:29:45] | NightMonkey (NightMonkey!~NightrMon@pdpc/supporter/professional/nightmonkey) has quit (Remote host closed the connection) | |
[00:31:46] | len (len!~quassel@75-161-175-43.mpls.qwest.net) has joined #mythtv | |
[00:32:12] | danielk22 (danielk22!~danielk@exchange.wgen.net) has joined #mythtv | |
[00:34:44] | danielk221: | jya: It might not even be a threading issue. From my reading: MythAirplayServer::newConnection() connects the readyRead() signal to read(), read() calls HandleResponse(), HandleResponse() calls DisconnectAllClients() which deletes the socket sending the readyRead() signal. |
[00:35:15] | danielk221: | When we unwind the stack we end up back in the code calling readyRead(), but that instance has been deleted from under itself. |
[00:36:02] | jya_: | danielk22: that's what I thought too.. that thread wise we were okay… But I've had several crashes at the socket->disconnect() in the DisconnectAll() function |
[00:36:47] | jya_: | as we're all in the same thread… there shouldn't be a socket being processed while a new message is received.. it all occurs one after the other no ? |
[00:37:04] | danielk221: | The disconnect should be safe, if we change the "delete connection;" to "connection->deleteLater();" |
[00:37:20] | jya_: | oh… sorry misread you… no the disconnect all will delete all sockets but the current caller of course |
[00:37:40] | jya_: | it's the disconnect that crash, not the delete |
[00:37:43] | brfransen (brfransen!~brfransen@64.179.141.163) has quit (Ping timeout: 264 seconds) | |
[00:37:46] | danielk221: | oh, let me look at that again. |
[00:39:08] | jya_: | disconnectAllClients takes a parameter, which is the new session… A session is made of two sockets ; neither of those two will be disconnected |
[00:39:42] | danielk221: | That should be safe if all the sockets are being handled by the same thread. |
[00:39:44] | brfransen (brfransen!~brfransen@64.179.141.163) has joined #mythtv | |
[00:40:09] | jya_: | i wonder why the crash though… the crash is within the system. I have no usable backtrace there. |
[00:40:39] | jya_: | I've found that it occurs often when you play / stop / play another video. like start playback from different content. |
[00:40:49] | jya_: | I had it occurring on Linux too. |
[00:40:58] | jya_: | like you start playback on the iPhone, and mythfrontend crash |
[00:41:27] | jya_: | though to be honest, I'm not sure the crash occurs in the disconnect. On that fronted I have no dev environment, I just see the program crashing. |
[00:44:53] | wilmoore-misc (wilmoore-misc!~wilmoore@ip-64-134-62-108.public.wayport.net) has quit (Ping timeout: 255 seconds) | |
[00:45:13] | jya_: | danielk22: so just to confirm… that current handling of deleting the socket, we are all in the same thread, and this should normally be okay? and I should look somewhere else for the bug |
[00:45:20] | danielk221: | jya_: The call to gMythAirplayServer->Teardown(); in Cleanup() is unsafe, that should be done after the gMythAirplayServerThread->wait(); |
[00:45:30] | danielk221: | this isn't happening on shutdown is it? |
[00:45:35] | jya_: | no. |
[00:45:44] | jya_: | it's during playback |
[00:47:47] | danielk221: | It looks like all the socket handling is being done in the gMythAirplayServerThread. Since we're not deleting ourselves and we're using deleteLater we should be safe. |
[00:48:24] | danielk221: | (Except for that Teardown call happening in the UI thread, but that would only occur on shutdown.) |
[00:51:00] | jya_: | yes.. There's a bug for that: that mythfrontend shutdown hang on the delete bonjour |
[00:51:57] | danielk221: | Maybe there are some callbacks from other threads that touch the sockets? |
[00:54:17] | danielk221: | None that I can see. |
[01:04:27] | danielk22 (danielk22!~danielk@exchange.wgen.net) has quit (Read error: Operation timed out) | |
[01:06:06] | IReboot (IReboot!~doug@CPE10bf48e67915-CM78cd8e7e342d.cpe.net.cable.rogers.com) has quit (Ping timeout: 264 seconds) | |
[01:10:13] | danielk22 (danielk22!~danielk@ip66-104-227-162.z227-104-66.customer.algx.net) has joined #mythtv | |
[01:16:09] | danielk22 (danielk22!~danielk@ip66-104-227-162.z227-104-66.customer.algx.net) has quit (Read error: Operation timed out) | |
[01:18:24] | danielk22 (danielk22!~danielk@exchange.wgen.net) has joined #mythtv | |
[01:23:59] | stichnot (stichnot!~stichnot@adsl-69-110-157-184.dsl.pltn13.pacbell.net) has joined #mythtv | |
[01:23:59] | stichnot (stichnot!~stichnot@adsl-69-110-157-184.dsl.pltn13.pacbell.net) has quit (Changing host) | |
[01:23:59] | stichnot (stichnot!~stichnot@mythtv/developer/stichnot) has joined #mythtv | |
[01:37:41] | KungFuJesus (KungFuJesus!~adam@74.215.84.209) has joined #mythtv | |
[01:37:59] | KungFuJesus: | Hello, is AVFormatWriter::OpenAudio where the codecs are being written to a container? |
[02:07:52] | knightr: | stichnot, let me think about it, I'll see what we can do. I didn't know what exactly you wanted to do so I didn't have enough time to think about it. |
[02:08:12] | knightr: | If the themer doesn't implement it, there is a fallback, right? |
[02:23:09] | XDS2010 (XDS2010!uid1218@gateway/web/irccloud.com/x-fvojymfceizzeapi) has joined #mythtv | |
[02:38:43] | stichnot: | knightr: Yes. There would be a default fallback version installed in .../mythtv/themes/default/menu_playback.xml. This is similar to how osd_subtitle.xml works (though that file doesn't require any translations). |
[02:40:16] | stichnot: | I would be inclined to say that if a themer wants to customize a menu, they should reuse the menu titles in the default version, or somehow provide the translations for any new strings. |
[02:43:42] | wilmoore-misc (wilmoore-misc!~wilmoore@c-67-190-17-108.hsd1.co.comcast.net) has joined #mythtv | |
[03:21:56] | gregL (gregL!~greg@cpe-74-76-105-205.nycap.res.rr.com) has joined #mythtv | |
[03:38:41] | fetzerch (fetzerch!~quassel@unaffiliated/fetzerch) has quit (Ping timeout: 248 seconds) | |
[03:40:09] | fetzerch (fetzerch!~quassel@unaffiliated/fetzerch) has joined #mythtv | |
[04:51:08] | jya_ (jya_!~jyavenard@mythtv/developer/jya) has quit (Quit: jya_) | |
[05:16:54] | jya_ (jya_!~jyavenard@mythtv/developer/jya) has joined #mythtv | |
[05:34:00] | XChatMav (XChatMav!~MaverickT@111.86.233.220.static.exetel.com.au) has joined #mythtv | |
[05:34:00] | MavT (MavT!~MaverickT@111.86.233.220.static.exetel.com.au) has quit (Read error: Connection reset by peer) | |
[05:35:50] | jya_ (jya_!~jyavenard@mythtv/developer/jya) has quit (Quit: jya_) | |
[05:50:40] | dekarl (dekarl!~dekarl@p4FE854F4.dip0.t-ipconnect.de) has joined #mythtv | |
[05:50:47] | dekarl1 (dekarl1!~dekarl@p4FCEEAF2.dip0.t-ipconnect.de) has quit (Ping timeout: 256 seconds) | |
[06:02:02] | fetzerch (fetzerch!~quassel@unaffiliated/fetzerch) has quit (Ping timeout: 256 seconds) | |
[07:04:50] | SteveGoodey (SteveGoodey!~steve@host86-140-98-12.range86-140.btcentralplus.com) has joined #mythtv | |
[07:14:51] | brfransen (brfransen!~brfransen@64.179.141.163) has quit (Read error: Connection reset by peer) | |
[07:15:31] | brfransen (brfransen!~brfransen@64.179.141.163) has joined #mythtv | |
[07:35:52] | Merlin83b (Merlin83b!~Daniel@2a00:1ee0:3:1337:15d4:9a21:9101:a85b) has joined #mythtv | |
[08:40:14] | Lomion0815 (Lomion0815!~markus@93-82-142-234.adsl.highway.telekom.at) has joined #mythtv | |
[09:01:14] | len (len!~quassel@75-161-175-43.mpls.qwest.net) has quit (Remote host closed the connection) | |
[09:03:06] | Draiodoir__ (Draiodoir__!~Draiodoir@c-75-73-31-51.hsd1.mn.comcast.net) has joined #mythtv | |
[09:03:24] | sharky-wtf (sharky-wtf!~Sharky112@c-24-19-57-28.hsd1.wa.comcast.net) has joined #mythtv | |
[09:07:43] | jarle_ (jarle_!~jarle@70.84-234-133.customer.lyse.net) has joined #mythtv | |
[09:10:55] | RSpliet1 (RSpliet1!~RSpliet@53537511.cm-6-4b.dynamic.ziggo.nl) has joined #mythtv | |
[09:11:53] | ephemer0l_ (ephemer0l_!~ephemer0l@94.249.250.100) has joined #mythtv | |
[09:12:00] | SmallR2002 (SmallR2002!~quassel@c-98-253-173-240.hsd1.il.comcast.net) has joined #mythtv | |
[09:12:43] | jams_ (jams_!~jams@cpe-24-92-95-170.wi.res.rr.com) has joined #mythtv | |
[09:12:47] | petefunk_ (petefunk_!taco@192.157.58.132) has joined #mythtv | |
[09:14:44] | kormoc_ (kormoc_!~kormoc@mythtv/developer/kormoc) has joined #mythtv | |
[09:14:58] | Draiodoir_ (Draiodoir_!~Draiodoir@c-75-73-31-51.hsd1.mn.comcast.net) has quit (*.net *.split) | |
[09:14:58] | Sharky-Sleep (Sharky-Sleep!~Sharky112@c-24-19-57-28.hsd1.wa.comcast.net) has quit (*.net *.split) | |
[09:14:58] | jarle (jarle!~jarle@70.84-234-133.customer.lyse.net) has quit (*.net *.split) | |
[09:14:59] | kormoc (kormoc!~kormoc@mythtv/developer/kormoc) has quit (*.net *.split) | |
[09:15:00] | kormoc_ is now known as kormoc | |
[09:17:42] | foxbuntu (foxbuntu!~foxbuntu@97-125-156-215.desm.qwest.net) has joined #mythtv | |
[09:17:47] | foxbuntu (foxbuntu!~foxbuntu@97-125-156-215.desm.qwest.net) has quit (Changing host) | |
[09:17:48] | foxbuntu (foxbuntu!~foxbuntu@ubuntu/member/foxbuntu) has joined #mythtv | |
[09:18:23] | RSpliet1 (RSpliet1!~RSpliet@53537511.cm-6-4b.dynamic.ziggo.nl) has left #mythtv () | |
[09:21:02] | jams (jams!~jams@cpe-24-92-95-170.wi.res.rr.com) has quit (*.net *.split) | |
[09:21:02] | RSpliet (RSpliet!~RSpliet@53537511.cm-6-4b.dynamic.ziggo.nl) has quit (*.net *.split) | |
[09:21:02] | ephemer0l (ephemer0l!~ephemer0l@unaffiliated/ephemer0l) has quit (*.net *.split) | |
[09:21:02] | jst (jst!~quassel@2620:101:8003:200:224:e8ff:fe39:34c2) has quit (*.net *.split) | |
[09:21:02] | foxbuntu` (foxbuntu`!~foxbuntu@97-125-156-215.desm.qwest.net) has quit (*.net *.split) | |
[09:21:03] | SmallR2002_ (SmallR2002_!~quassel@c-98-253-173-240.hsd1.il.comcast.net) has quit (*.net *.split) | |
[09:21:03] | petefunk (petefunk!taco@192.157.58.132) has quit (*.net *.split) | |
[10:05:28] | sharky-wtf is now known as Sharky-Sleep | |
[10:23:21] | stichnot (stichnot!~stichnot@mythtv/developer/stichnot) has quit (Ping timeout: 252 seconds) | |
[10:32:00] | jst (jst!~quassel@2620:101:8003:200:224:e8ff:fe39:34c2) has joined #mythtv | |
[11:06:41] | jya (jya!~jyavenard@mythtv/developer/jya) has quit (Quit: jya) | |
[11:13:57] | joki (joki!~joki@p548633D6.dip0.t-ipconnect.de) has quit (Ping timeout: 252 seconds) | |
[11:18:48] | joki (joki!~joki@p54864AF3.dip0.t-ipconnect.de) has joined #mythtv | |
[11:29:03] | SteveGoodey (SteveGoodey!~steve@host86-140-98-12.range86-140.btcentralplus.com) has quit (Quit: Konversation terminated!) | |
[11:49:37] | TandyUK (TandyUK!admin@office.tandyukservers.co.uk) has joined #mythtv | |
[12:23:25] | RSpliet1 (RSpliet1!~RSpliet@53537511.cm-6-4b.dynamic.ziggo.nl) has joined #mythtv | |
[12:23:27] | RSpliet1 (RSpliet1!~RSpliet@53537511.cm-6-4b.dynamic.ziggo.nl) has left #mythtv () | |
[12:37:36] | jya (jya!~jyavenard@CPE-120-148-103-15.bjzv2.vic.bigpond.net.au) has joined #mythtv | |
[12:37:36] | jya (jya!~jyavenard@CPE-120-148-103-15.bjzv2.vic.bigpond.net.au) has quit (Changing host) | |
[12:37:36] | jya (jya!~jyavenard@mythtv/developer/jya) has joined #mythtv | |
[12:44:43] | stichnot (stichnot!~stichnot@adsl-69-110-157-184.dsl.pltn13.pacbell.net) has joined #mythtv | |
[12:44:44] | stichnot (stichnot!~stichnot@mythtv/developer/stichnot) has joined #mythtv | |
[12:44:44] | stichnot (stichnot!~stichnot@adsl-69-110-157-184.dsl.pltn13.pacbell.net) has quit (Changing host) | |
[12:58:23] | Jordack (Jordack!~jordack@h69-131-44-221.plmomi.dedicated.static.tds.net) has joined #mythtv | |
[13:00:43] | moparisthebest (moparisthebest!~quassel@66.55.92.38) has quit (Quit: No Ping reply in 180 seconds.) | |
[13:01:01] | moparisthebest (moparisthebest!~quassel@66.55.92.38) has joined #mythtv | |
[13:22:00] | gregL (gregL!~greg@cpe-74-76-105-205.nycap.res.rr.com) has quit (Quit: Leaving) | |
[13:25:54] | stuarta: | danielk22: do you need devel/logging putting in the build network? |
[13:35:10] | knightr: | stichnot, would a "disambiguation string" be enough to differentiate these strings from the rest? When provided a disambiguation string is added to the lookup key. Your strings would still be under the "ThemeUI" context but with a "disambiguation string" of "TV" (or maybe "OSD" since this is part of the "OSD"?) . There would be no chance of conflict with the other strings and the translator see the "disambiguation string" as a comment so they w |
[13:35:11] | knightr: | ould know it's OSD related. |
[13:36:43] | knightr: | This would also be far more in line with what I had in mind for per-theme translation. |
[13:37:24] | knightr: | Tying the theme translation to the theme would have the following benefits: |
[13:37:45] | knightr: | - The translators would chose which theme they decide to translate, not the ones we impose them. |
[13:39:33] | knightr: | - Since theme translation would be evenually provided with the theme the update of those translation would no longer be done with a release of MyhTV but with an update of the theme. |
[13:41:42] | knightr: | Oops, looks like I forgot why this would be more in line with what I had in mind for per-theme translation... |
[13:42:25] | knightr: | What I would like to add that could benefit per-theme translation is a disambiguation string that would, more or less, the name of the plugin (or pseudo-plugin for what has been merge (MythVideo...)) |
[13:43:48] | knightr: | We already have conflicts between plugins because all the strings end up under ThemeUI so it's not possible to translate differently the same word/string depending on where it is used. |
[13:44:46] | knightr: | Adding a "disambiguation string" in those case would fix that problem and we could have a "disambiguation string" specific to the OSD stuff. What do you think? |
[13:47:24] | knightr: | s/case/cases |
[13:48:21] | knightr: | ttyl, I have to get back to work... |
[13:57:03] | danielk22: | stuarta: I don't need it yet, but it would be useful. |
[13:59:36] | stuarta (stuarta!~stuarta@mythtv/developer/stuarta) has quit (Ping timeout: 245 seconds) | |
[14:06:57] | stuarta (stuarta!~stuarta@callisto.squashedfrog.net) has joined #mythtv | |
[14:06:58] | stuarta (stuarta!~stuarta@callisto.squashedfrog.net) has quit (Changing host) | |
[14:06:58] | stuarta (stuarta!~stuarta@mythtv/developer/stuarta) has joined #mythtv | |
[14:11:16] | stichnot: | knightr: For now, I added a function to the TV class that enumerates the 35 menu strings in that file for translation. This will mean nothing new for the translation infrastructure until we get a better sense for how this will be used/extended. |
[14:32:57] | gigem (gigem!~david@mythtv/developer/gigem) has quit (Quit: WeeChat 0.3.8) | |
[14:34:51] | gigem (gigem!~david@mythtv/developer/gigem) has joined #mythtv | |
[14:40:04] | Chutt (Chutt!~ijr@cpe-76-190-199-73.neo.res.rr.com) has quit (Read error: Connection reset by peer) | |
[14:42:17] | SteveGoodey (SteveGoodey!~steve@host86-140-98-12.range86-140.btcentralplus.com) has joined #mythtv | |
[14:47:47] | SteveGoodey (SteveGoodey!~steve@host86-140-98-12.range86-140.btcentralplus.com) has quit (Quit: Konversation terminated!) | |
[15:00:00] | stichnot (stichnot!~stichnot@mythtv/developer/stichnot) has quit (Ping timeout: 260 seconds) | |
[15:04:45] | wagnerrp_ (wagnerrp_!~wagnerrp_@mythtv/developer/wagnerrp) has joined #mythtv | |
[15:07:09] | wagnerrp (wagnerrp!~wagnerrp_@mythtv/developer/wagnerrp) has quit (Ping timeout: 252 seconds) | |
[15:07:10] | wilmoore-misc (wilmoore-misc!~wilmoore@c-67-190-17-108.hsd1.co.comcast.net) has quit (Remote host closed the connection) | |
[15:09:25] | stuarta (stuarta!~stuarta@mythtv/developer/stuarta) has quit (Ping timeout: 246 seconds) | |
[15:15:02] | ephemer0l_ (ephemer0l_!~ephemer0l@94.249.250.100) has quit () | |
[15:15:25] | ephemer0l (ephemer0l!~ephemer0l@unaffiliated/ephemer0l) has joined #mythtv | |
[15:33:43] | stuarta (stuarta!~stuarta@callisto.squashedfrog.net) has joined #mythtv | |
[15:33:43] | stuarta (stuarta!~stuarta@callisto.squashedfrog.net) has quit (Changing host) | |
[15:33:44] | stuarta (stuarta!~stuarta@mythtv/developer/stuarta) has joined #mythtv | |
[15:49:10] | fayek (fayek!~fayek@foresight/developer/fayek) has joined #mythtv | |
[15:51:20] | Chutt (Chutt!~ijr@cpe-76-190-199-73.neo.res.rr.com) has joined #mythtv | |
[16:00:55] | RSpliet (RSpliet!~RSpliet@53537511.cm-6-4b.dynamic.ziggo.nl) has joined #mythtv | |
[16:04:40] | stichnot (stichnot!~stichnot@mythtv/developer/stichnot) has joined #mythtv | |
[16:31:11] | natanojl (natanojl!~jonatan@c83-252-237-63.bredband.comhem.se) has joined #mythtv | |
[16:51:02] | Merlin83b (Merlin83b!~Daniel@2a00:1ee0:3:1337:15d4:9a21:9101:a85b) has quit (Read error: Connection reset by peer) | |
[16:58:25] | gregL (gregL!~greg@cpe-74-76-105-205.nycap.res.rr.com) has joined #mythtv | |
[17:13:35] | fetzerch (fetzerch!~quassel@unaffiliated/fetzerch) has joined #mythtv | |
[17:22:08] | NightMonkey (NightMonkey!~NightrMon@nat1.sp.collab.net) has joined #mythtv | |
[17:22:08] | NightMonkey (NightMonkey!~NightrMon@nat1.sp.collab.net) has quit (Changing host) | |
[17:22:08] | NightMonkey (NightMonkey!~NightrMon@pdpc/supporter/professional/nightmonkey) has joined #mythtv | |
[17:22:11] | gregL (gregL!~greg@cpe-74-76-105-205.nycap.res.rr.com) has quit (Remote host closed the connection) | |
[17:27:40] | SteveGoodey (SteveGoodey!~steve@host86-140-98-12.range86-140.btcentralplus.com) has joined #mythtv | |
[17:53:31] | Jordack (Jordack!~jordack@h69-131-44-221.plmomi.dedicated.static.tds.net) has quit (Read error: Connection reset by peer) | |
[17:55:45] | Jordack (Jordack!~jordack@h69-131-44-221.plmomi.dedicated.static.tds.net) has joined #mythtv | |
[18:10:44] | nephyrin (nephyrin!~neph@nat/mozilla/x-bqrauxzghxoavxvs) has joined #mythtv | |
[18:12:38] | nephyrin (nephyrin!~neph@nat/mozilla/x-bqrauxzghxoavxvs) has quit (Remote host closed the connection) | |
[18:13:19] | nephyrin (nephyrin!~neph@nat/mozilla/x-oylviezduuoqovla) has joined #mythtv | |
[18:14:59] | sphery: | peper03 (I hope you check logs since you're not here): Regarding your comment about libdvdnav upstream seeming to be dead, you should talk with Erik Hovland ( http://www.gossamer-threads.com/lists/engine? . . . ;list=mythtv ). He's one of the devs on libdvdnav, seems to be still rather active (based on //www.mail-archive.com/dvdnav-discuss@mplayerhq.hu/" rel="nofollow">http://www.mail-archive.com/dvdnav-discuss@mplayerhq.hu/ ), and he uses MythTV and has been very supportive of fixing issues we found. |
[18:17:06] | sphery: | peper03: Then again, it's quite possible they'd be happy to make you a committer on libdvdnav, too (a la //www.mail-archive.com/dvdnav-discuss@mplayerhq.hu/msg01725.html" rel="nofollow">http://www.mail-archive.com/dvdnav-discuss@mp . . . sg01725.html ) |
[18:22:47] | dekarl1 (dekarl1!~dekarl@p4FE84E77.dip0.t-ipconnect.de) has joined #mythtv | |
[18:22:59] | dekarl (dekarl!~dekarl@p4FE854F4.dip0.t-ipconnect.de) has quit (Ping timeout: 256 seconds) | |
[18:23:19] | dekarl1 (dekarl1!~dekarl@p4FE84E77.dip0.t-ipconnect.de) has quit (Client Quit) | |
[18:24:06] | dekarl (dekarl!~dekarl@p4FE84E77.dip0.t-ipconnect.de) has joined #mythtv | |
[18:38:47] | gregL (gregL!~greg@cpe-74-76-105-205.nycap.res.rr.com) has joined #mythtv | |
[18:45:35] | sphery (sphery!~mdean@mythtv/developer/sphery) has quit (Quit: leaving) | |
[18:46:12] | sphery (sphery!~mdean@mythtv/developer/sphery) has joined #mythtv | |
[18:46:32] | sphery (sphery!~mdean@mythtv/developer/sphery) has quit (Client Quit) | |
[18:47:02] | sphery (sphery!~mdean@mythtv/developer/sphery) has joined #mythtv | |
[18:48:53] | warped_ (warped_!~piotro@89-79-251-78.dynamic.chello.pl) has joined #mythtv | |
[18:48:53] | warped_ (warped_!~piotro@89-79-251-78.dynamic.chello.pl) has quit (Client Quit) | |
[18:49:13] | warped_ (warped_!~piotro@89-79-251-78.dynamic.chello.pl) has joined #mythtv | |
[18:57:03] | wilmoore-misc (wilmoore-misc!~wilmoore@vlandnat.mystrotv.com) has joined #mythtv | |
[18:57:59] | warped_ (warped_!~piotro@89-79-251-78.dynamic.chello.pl) has left #mythtv () | |
[19:01:29] | len (len!~quassel@75-161-175-43.mpls.qwest.net) has joined #mythtv | |
[19:01:31] | dekarl (dekarl!~dekarl@p4FE84E77.dip0.t-ipconnect.de) has quit (Ping timeout: 257 seconds) | |
[19:10:47] | dekarl (dekarl!~dekarl@p4FCEE56E.dip0.t-ipconnect.de) has joined #mythtv | |
[19:50:30] | jheizer_ (jheizer_!~jon@c-98-226-220-178.hsd1.il.comcast.net) has joined #mythtv | |
[19:57:18] | jheizer_ (jheizer_!~jon@c-98-226-220-178.hsd1.il.comcast.net) has quit (Ping timeout: 256 seconds) | |
[20:09:13] | natanojl (natanojl!~jonatan@c83-252-237-63.bredband.comhem.se) has quit (Ping timeout: 245 seconds) | |
[20:22:55] | Lomion0815 (Lomion0815!~markus@93-82-142-234.adsl.highway.telekom.at) has quit (Remote host closed the connection) | |
[20:36:25] | ephemer0l (ephemer0l!~ephemer0l@unaffiliated/ephemer0l) has quit (Quit: No Ping reply in 180 seconds.) | |
[20:49:32] | stichnot (stichnot!~stichnot@mythtv/developer/stichnot) has quit (Ping timeout: 260 seconds) | |
[21:12:35] | rsiebert (rsiebert!~quassel@g226063017.adsl.alicedsl.de) has joined #mythtv | |
[21:16:09] | rsiebert_ (rsiebert_!~quassel@g226061123.adsl.alicedsl.de) has quit (Ping timeout: 268 seconds) | |
[21:19:50] | Jordack (Jordack!~jordack@h69-131-44-221.plmomi.dedicated.static.tds.net) has quit (Quit: Men and women stalk differently. Men will drive by at night. Women will show up at your job and smash your stuff in front of everyone.) | |
[21:28:05] | stichnot (stichnot!~stichnot@216.239.45.70) has joined #mythtv | |
[21:28:05] | stichnot (stichnot!~stichnot@mythtv/developer/stichnot) has joined #mythtv | |
[21:28:05] | stichnot (stichnot!~stichnot@216.239.45.70) has quit (Changing host) | |
[21:48:08] | SteveGoodey (SteveGoodey!~steve@host86-140-98-12.range86-140.btcentralplus.com) has quit (Quit: Konversation terminated!) | |
[22:00:19] | fayek (fayek!~fayek@foresight/developer/fayek) has quit (Quit: WeeChat 0.4.0) | |
[23:07:49] | wilmoore-misc (wilmoore-misc!~wilmoore@vlandnat.mystrotv.com) has quit (Remote host closed the connection) | |
[23:52:20] | stichnot (stichnot!~stichnot@216.239.45.70) has joined #mythtv | |
[23:52:20] | stichnot (stichnot!~stichnot@mythtv/developer/stichnot) has joined #mythtv | |
[23:52:20] | stichnot (stichnot!~stichnot@216.239.45.70) has quit (Changing host) |
IRC Logs collected by
BeirdoBot.
Please use the above link to report any bugs.