Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: MythTV: Commits

Ticket #9797: Play Blu Ray from storage groups with directories whose names contain Cyrillic characters

 

 

MythTV commits RSS feed   Index | Next | Previous | View Threaded


noreply at mythtv

May 23, 2011, 2:56 AM

Post #1 of 20 (439 views)
Permalink
Ticket #9797: Play Blu Ray from storage groups with directories whose names contain Cyrillic characters

#9797: Play Blu Ray from storage groups with directories whose names contain
Cyrillic characters
-------------------------------------------+------------------------
Reporter: sandybigboy@… | Owner: robertm
Type: Patch - Bug Fix | Status: new
Priority: minor | Milestone: unknown
Component: MythTV - Blu-ray Playback | Version: 0.24-fixes
Severity: medium | Keywords:
Ticket locked: 0 |
-------------------------------------------+------------------------
This patch makes it possible to play Blu Ray from storage groups, which
contain the directories whose names contain Cyrillic characters. This
should also work for other characters in the utf8 encoding.

--
Ticket URL: <http://code.mythtv.org/trac/ticket/9797>
MythTV <http://code.mythtv.org/trac>
MythTV Media Center
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://www.mythtv.org/mailman/listinfo/mythtv-commits


noreply at mythtv

May 23, 2011, 7:51 AM

Post #2 of 20 (421 views)
Permalink
Re: Ticket #9797: Play Blu Ray from storage groups with directories whose names contain Cyrillic characters [In reply to]

#9797: Play Blu Ray from storage groups with directories whose names contain
Cyrillic characters
---------------------------------------+--------------------------------
Reporter: sandybigboy@… | Owner: robertm
Type: Patch - Bug Fix | Status: infoneeded_new
Priority: minor | Milestone: unknown
Component: MythTV - Blu-ray Playback | Version: 0.24-fixes
Severity: medium | Resolution:
Keywords: | Ticket locked: 0
---------------------------------------+--------------------------------
Changes (by robertm):

* status: new => infoneeded_new


Comment:

Hi,

Thanks for this patch-- There does seem to be an unnecessary hunk-- ISO
639 character codes are always two character latin codes, and never
UTF-8... is there a reason you're converting those to UTF-8? I have some
concerns about whether or not the functions deeper in bluray's HDMV
virtual machine would like to take a UTF-8 string.

--
Ticket URL: <http://code.mythtv.org/trac/ticket/9797#comment:1>
MythTV <http://code.mythtv.org/trac>
MythTV Media Center
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://www.mythtv.org/mailman/listinfo/mythtv-commits


noreply at mythtv

May 23, 2011, 2:12 PM

Post #3 of 20 (421 views)
Permalink
Re: Ticket #9797: Play Blu Ray from storage groups with directories whose names contain Cyrillic characters [In reply to]

#9797: Play Blu Ray from storage groups with directories whose names contain
Cyrillic characters
---------------------------------------+--------------------------------
Reporter: sandybigboy@… | Owner: robertm
Type: Patch - Bug Fix | Status: infoneeded_new
Priority: minor | Milestone: unknown
Component: MythTV - Blu-ray Playback | Version: 0.24-fixes
Severity: medium | Resolution:
Keywords: | Ticket locked: 0
---------------------------------------+--------------------------------

Comment (by sandybigboy@…):

You right, only filename need to convert. I.e. we need only part of patch,
from begin to line QByteArray fname = m_dvdFilename.toUtf8(); (inclusive)
Should I send a new patch?

--
Ticket URL: <http://code.mythtv.org/trac/ticket/9797#comment:2>
MythTV <http://code.mythtv.org/trac>
MythTV Media Center
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://www.mythtv.org/mailman/listinfo/mythtv-commits


noreply at mythtv

May 23, 2011, 2:23 PM

Post #4 of 20 (417 views)
Permalink
Re: Ticket #9797: Play Blu Ray from storage groups with directories whose names contain Cyrillic characters [In reply to]

#9797: Play Blu Ray from storage groups with directories whose names contain
Cyrillic characters
---------------------------------------+--------------------------------
Reporter: sandybigboy@… | Owner: robertm
Type: Patch - Bug Fix | Status: infoneeded_new
Priority: minor | Milestone: unknown
Component: MythTV - Blu-ray Playback | Version: 0.24-fixes
Severity: medium | Resolution:
Keywords: | Ticket locked: 0
---------------------------------------+--------------------------------

Comment (by robertm):

Sure, update the patch and I'll apply it later.

--
Ticket URL: <http://code.mythtv.org/trac/ticket/9797#comment:3>
MythTV <http://code.mythtv.org/trac>
MythTV Media Center
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://www.mythtv.org/mailman/listinfo/mythtv-commits


noreply at mythtv

May 23, 2011, 5:44 PM

Post #5 of 20 (417 views)
Permalink
Re: Ticket #9797: Play Blu Ray from storage groups with directories whose names contain Cyrillic characters [In reply to]

#9797: Play Blu Ray from storage groups with directories whose names contain
Cyrillic characters
---------------------------------------+--------------------------------
Reporter: sandybigboy@… | Owner: robertm
Type: Patch - Bug Fix | Status: infoneeded_new
Priority: minor | Milestone: unknown
Component: MythTV - Blu-ray Playback | Version: 0.24-fixes
Severity: medium | Resolution:
Keywords: | Ticket locked: 0
---------------------------------------+--------------------------------

Comment (by markk):

I may be off the mark here, but are you sure the following is safe:-

QTextCodec::setCodecForCStrings(QTextCodec::codecForName("UTF-8"));

That appears to be changing the global behaviour which I'm guessing may
have some unexpected consequences.

Just a thought.

--
Ticket URL: <http://code.mythtv.org/trac/ticket/9797#comment:4>
MythTV <http://code.mythtv.org/trac>
MythTV Media Center
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://www.mythtv.org/mailman/listinfo/mythtv-commits


noreply at mythtv

Jun 19, 2011, 8:46 AM

Post #6 of 20 (369 views)
Permalink
Re: Ticket #9797: Play Blu Ray from storage groups with directories whose names contain Cyrillic characters [In reply to]

#9797: Play Blu Ray from storage groups with directories whose names contain
Cyrillic characters
---------------------------------------+--------------------------------
Reporter: sandybigboy@… | Owner: robertm
Type: Patch - Bug Fix | Status: infoneeded_new
Priority: minor | Milestone: unknown
Component: MythTV - Blu-ray Playback | Version: 0.24-fixes
Severity: medium | Resolution:
Keywords: | Ticket locked: 0
---------------------------------------+--------------------------------

Comment (by robertm):

Mark is right, we can't globally set the text codec, this will break other
things. Are the correct UTF-8 locales set on both your frontend and
backend?

Robert

--
Ticket URL: <http://code.mythtv.org/trac/ticket/9797#comment:5>
MythTV <http://code.mythtv.org/trac>
MythTV Media Center
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://www.mythtv.org/mailman/listinfo/mythtv-commits


noreply at mythtv

Jul 24, 2011, 1:51 PM

Post #7 of 20 (341 views)
Permalink
Re: Ticket #9797: Play Blu Ray from storage groups with directories whose names contain Cyrillic characters [In reply to]

#9797: Play Blu Ray from storage groups with directories whose names contain
Cyrillic characters
---------------------------------------+----------------------------
Reporter: sandybigboy@… | Owner: robertm
Type: Patch - Bug Fix | Status: closed
Priority: minor | Milestone: unknown
Component: MythTV - Blu-ray Playback | Version: 0.24-fixes
Severity: medium | Resolution: Unverified
Keywords: | Ticket locked: 0
---------------------------------------+----------------------------
Changes (by wagnerrp):

* status: infoneeded_new => closed
* resolution: => Unverified


Comment:

Closing ticket due to lack of response from reporter. Ticket remains
unlocked, and can be re-opened if proper configuration of system 'LANG'
does not resolve issue.

--
Ticket URL: <http://code.mythtv.org/trac/ticket/9797#comment:6>
MythTV <http://code.mythtv.org/trac>
MythTV Media Center
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://www.mythtv.org/mailman/listinfo/mythtv-commits


noreply at mythtv

Aug 1, 2011, 6:05 AM

Post #8 of 20 (325 views)
Permalink
Re: Ticket #9797: Play Blu Ray from storage groups with directories whose names contain Cyrillic characters [In reply to]

#9797: Play Blu Ray from storage groups with directories whose names contain
Cyrillic characters
---------------------------------------+----------------------------
Reporter: sandybigboy@… | Owner: robertm
Type: Patch - Bug Fix | Status: new
Priority: minor | Milestone: unknown
Component: MythTV - Blu-ray Playback | Version: 0.24-fixes
Severity: medium | Resolution:
Keywords: | Ticket locked: 0
---------------------------------------+----------------------------
Changes (by p.kosseff@…):

* status: closed => new
* resolution: Unverified =>


Comment:

The attached patch latin1.patch will fix the BD player issues when the
path contains non Latin chars.

The path passed to the bd_open is converted the the local 8 bit encoding.

--
Ticket URL: <http://code.mythtv.org/trac/ticket/9797#comment:7>
MythTV <http://code.mythtv.org/trac>
MythTV Media Center
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://www.mythtv.org/mailman/listinfo/mythtv-commits


noreply at mythtv

Aug 1, 2011, 6:23 AM

Post #9 of 20 (322 views)
Permalink
Re: Ticket #9797: Play Blu Ray from storage groups with directories whose names contain Cyrillic characters [In reply to]

#9797: Play Blu Ray from storage groups with directories whose names contain
Cyrillic characters
---------------------------------------+----------------------------
Reporter: sandybigboy@… | Owner: robertm
Type: Patch - Bug Fix | Status: new
Priority: minor | Milestone: unknown
Component: MythTV - Blu-ray Playback | Version: 0.24-fixes
Severity: medium | Resolution:
Keywords: | Ticket locked: 0
---------------------------------------+----------------------------

Comment (by p.kosseff@…):

just to clarify local 8 bit encoding includes utf8

--
Ticket URL: <http://code.mythtv.org/trac/ticket/9797#comment:8>
MythTV <http://code.mythtv.org/trac>
MythTV Media Center
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://www.mythtv.org/mailman/listinfo/mythtv-commits


noreply at mythtv

Aug 3, 2011, 12:59 AM

Post #10 of 20 (315 views)
Permalink
Re: Ticket #9797: Play Blu Ray from storage groups with directories whose names contain Cyrillic characters [In reply to]

#9797: Play Blu Ray from storage groups with directories whose names contain
Cyrillic characters
---------------------------------------+----------------------------
Reporter: sandybigboy@… | Owner: robertm
Type: Patch - Bug Fix | Status: new
Priority: minor | Milestone: unknown
Component: MythTV - Blu-ray Playback | Version: 0.24-fixes
Severity: medium | Resolution:
Keywords: | Ticket locked: 0
---------------------------------------+----------------------------

Comment (by axboct@…):

Replying to [comment:8 p.kosseff@…]:
> just to clarify local 8 bit encoding includes utf8
just to clarify .... My local encoding - UTF8 that excludes any 8-bit
encoding

--
Ticket URL: <http://code.mythtv.org/trac/ticket/9797#comment:9>
MythTV <http://code.mythtv.org/trac>
MythTV Media Center
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://www.mythtv.org/mailman/listinfo/mythtv-commits


noreply at mythtv

Aug 3, 2011, 2:25 AM

Post #11 of 20 (317 views)
Permalink
Re: Ticket #9797: Play Blu Ray from storage groups with directories whose names contain Cyrillic characters [In reply to]

#9797: Play Blu Ray from storage groups with directories whose names contain
Cyrillic characters
---------------------------------------+----------------------------
Reporter: sandybigboy@… | Owner: robertm
Type: Patch - Bug Fix | Status: new
Priority: minor | Milestone: unknown
Component: MythTV - Blu-ray Playback | Version: 0.24-fixes
Severity: medium | Resolution:
Keywords: | Ticket locked: 0
---------------------------------------+----------------------------

Comment (by axboct@…):

My FE LANG
{{{
....@skyworker:~$ echo $LANG
ru_UA.UTF-8
}}}
My BE LANG
{{{
....@mythtv:~$ echo $LANG
ru_UA.UTF-8
}}}
Logs to demonstrate

{{{
libdvdnav: Using dvdnav version svnR1215
libdvdread: Encrypted DVD support unavailable.
2011-08-03 12:02:53.940590 I MythSocket(93c6af8:66): write -> 66 84
QUERY_FILE_EXISTS[]:[]Анимация/Shrek/Shrek Forever After/...
2011-08-03 12:02:53.949340 I MythSocket(93c6af8:66): read <- 66 195
1[]:[]/storage/videos/????????/Shrek/Shrek Forever After/VIDEO_TS...
2011-08-03 12:02:53.955420 N SG(Videos): Unable to find any directories
for the local storage group 'Videos' on '192.168.5.6', trying directories
on all hosts!
2011-08-03 12:02:53.981524 E SG(Videos): FindFile: Unable to find
'/Анимация/Shrek/Shrek Forever After'!
2011-08-03 12:02:53.981642 I DVDInfo: Trying
myth://Videos [at] 192:6543/Анимация/Shrek/Shrek Forever After
2011-08-03 12:02:53.992707 I MythSocket(93c6af8:66): write -> 66 91
QUERY_FILE_EXISTS[]:[]Анимация/Shrek/Shre...
libdvdread: Could not open input: Нет такого файла или каталога
libdvdread: Can't open myth://Videos [at] 192:6543/Анимация/Shrek/Shrek
Forever After for reading
libdvdnav: vm: failed to open/read the DVD
2011-08-03 12:02:54.093939 I MythSocket(93c6af8:66): read <- 66 1
0
2011-08-03 12:02:54.094312 I MythSocket(93c6af8:66): write -> 66 91
QUERY_FILE_EXISTS[]:[]Анимация/Shrek/Shre...
2011-08-03 12:02:54.101150 I MythSocket(93c6af8:66): read <- 66 1
0
2011-08-03 12:02:54.101738 E DVDInfo: Failed to open device at
myth://Videos [at] 192:6543/Анимация/Shrek/Shrek Forever After
2011-08-03 12:02:54.101773 I DVDInfo: Finishing.
2011-08-03 12:02:55.055307 I MythSocket(93a6d40:67): read <- 67 83
BACKEND_MESSAGE[]:[]UPDATE_FILE_SIZE 15101 2011-08-03T11:24:00 24...
2011-08-03 12:02:55.055363 I MythEvent: UPDATE_FILE_SIZE 15101
2011-08-03T11:24:00 2411142864
2011-08-03 12:03:05.056901 I MythSocket(93a6d40:67): read <- 67 83
BACKEND_MESSAGE[]:[]UPDATE_FILE_SIZE 15101 2011-08-03T11:24:00 24...
2011-08-03 12:03:05.056957 I MythEvent: UPDATE_FILE_SIZE 15101
2011-08-03T11:24:00 2424829828
2011-08-03 12:03:15.068637 I MythSocket(93a6d40:67): read <- 67 83
BACKEND_MESSAGE[]:[]UPDATE_FILE_SIZE 15101 2011-08-03T11:24:00 24...
2011-08-03 12:03:15.068696 I MythEvent: UPDATE_FILE_SIZE 15101
2011-08-03T11:24:00 2435677992
2011-08-03 12:03:25.071403 I MythSocket(93a6d40:67): read <- 67 83
BACKEND_MESSAGE[]:[]UPDATE_FILE_SIZE 15101 2011-08-03T11:24:00 24...
2011-08-03 12:03:25.071460 I MythEvent: UPDATE_FILE_SIZE 15101
2011-08-03T11:24:00 2449613868
}}}

I'm sorry .... if Cyrillic is not visible then I'll give a screenshot

--
Ticket URL: <http://code.mythtv.org/trac/ticket/9797#comment:10>
MythTV <http://code.mythtv.org/trac>
MythTV Media Center
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://www.mythtv.org/mailman/listinfo/mythtv-commits


noreply at mythtv

Aug 3, 2011, 2:32 AM

Post #12 of 20 (313 views)
Permalink
Re: Ticket #9797: Play Blu Ray from storage groups with directories whose names contain Cyrillic characters [In reply to]

#9797: Play Blu Ray from storage groups with directories whose names contain
Cyrillic characters
---------------------------------------+----------------------------
Reporter: sandybigboy@… | Owner: robertm
Type: Patch - Bug Fix | Status: new
Priority: minor | Milestone: unknown
Component: MythTV - Blu-ray Playback | Version: 0.24-fixes
Severity: medium | Resolution:
Keywords: | Ticket locked: 0
---------------------------------------+----------------------------

Comment (by p.kosseff@…):

In my setup the player uses the file system directly which probably
changes things :) Also my problems are with BD playback not with DVD and
the patch is BD specific.

I'll switch to myth:// scheme tonight to see what happens.

--
Ticket URL: <http://code.mythtv.org/trac/ticket/9797#comment:11>
MythTV <http://code.mythtv.org/trac>
MythTV Media Center
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://www.mythtv.org/mailman/listinfo/mythtv-commits


noreply at mythtv

Aug 3, 2011, 3:13 AM

Post #13 of 20 (313 views)
Permalink
Re: Ticket #9797: Play Blu Ray from storage groups with directories whose names contain Cyrillic characters [In reply to]

#9797: Play Blu Ray from storage groups with directories whose names contain
Cyrillic characters
---------------------------------------+----------------------------
Reporter: sandybigboy@… | Owner: robertm
Type: Patch - Bug Fix | Status: new
Priority: minor | Milestone: unknown
Component: MythTV - Blu-ray Playback | Version: 0.24-fixes
Severity: medium | Resolution:
Keywords: | Ticket locked: 0
---------------------------------------+----------------------------

Comment (by axboct@…):

Replying to [comment:11 p.kosseff@…]:
>
> In my setup the player uses the file system directly which probably
changes things :) Also my problems are with BD playback not with DVD and
the patch is BD specific.
>
> I'll switch to myth:// scheme tonight to see what happens.

It does not matter DVD or BD. To get the file name use the same mechanism

--
Ticket URL: <http://code.mythtv.org/trac/ticket/9797#comment:12>
MythTV <http://code.mythtv.org/trac>
MythTV Media Center
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://www.mythtv.org/mailman/listinfo/mythtv-commits


noreply at mythtv

Apr 10, 2012, 8:04 AM

Post #14 of 20 (147 views)
Permalink
Re: Ticket #9797: Play Blu Ray from storage groups with directories whose names contain Cyrillic characters [In reply to]

#9797: Play Blu Ray from storage groups with directories whose names contain
Cyrillic characters
---------------------------------------+----------------------------
Reporter: sandybigboy@… | Owner:
Type: Patch - Bug Fix | Status: assigned
Priority: minor | Milestone: unknown
Component: MythTV - Blu-ray Playback | Version: 0.24-fixes
Severity: medium | Resolution:
Keywords: | Ticket locked: 0
---------------------------------------+----------------------------
Changes (by robertm):

* owner: robertm =>
* status: new => assigned


--
Ticket URL: <http://code.mythtv.org/trac/ticket/9797#comment:13>
MythTV <http://code.mythtv.org/trac>
MythTV Media Center
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://www.mythtv.org/mailman/listinfo/mythtv-commits


noreply at mythtv

Apr 10, 2012, 8:51 AM

Post #15 of 20 (147 views)
Permalink
Re: Ticket #9797: Play Blu Ray from storage groups with directories whose names contain Cyrillic characters [In reply to]

#9797: Play Blu Ray from storage groups with directories whose names contain
Cyrillic characters
---------------------------------------+----------------------------
Reporter: sandybigboy@… | Owner:
Type: Patch - Bug Fix | Status: new
Priority: minor | Milestone: unknown
Component: MythTV - Blu-ray Playback | Version: 0.24-fixes
Severity: medium | Resolution:
Keywords: | Ticket locked: 0
---------------------------------------+----------------------------
Changes (by wagnerrp):

* status: assigned => new


--
Ticket URL: <http://code.mythtv.org/trac/ticket/9797#comment:14>
MythTV <http://code.mythtv.org/trac>
MythTV Media Center
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://www.mythtv.org/mailman/listinfo/mythtv-commits


noreply at mythtv

Apr 11, 2012, 1:50 AM

Post #16 of 20 (128 views)
Permalink
Re: Ticket #9797: Play Blu Ray from storage groups with directories whose names contain Cyrillic characters [In reply to]

#9797: Play Blu Ray from storage groups with directories whose names contain
Cyrillic characters
---------------------------------------+----------------------------
Reporter: sandybigboy@… | Owner:
Type: Patch - Bug Fix | Status: new
Priority: minor | Milestone: unknown
Component: MythTV - Blu-ray Playback | Version: 0.24-fixes
Severity: medium | Resolution:
Keywords: | Ticket locked: 0
---------------------------------------+----------------------------

Comment (by sandybigboy@…):

I must say that I am not a programmer, but I did some experimenting and
Google on this topic.

It seems that replacing filename.toLatin1 () on filename.toLocal8Bit () in
file BDRingBuffer.cpp (DVDRingBuffer.cpp in the file it is) we will solve
the problem, but in reality it is not.
As I understand the problem is that outside of the context object
QApplication and QCoreApplication Qt does not know about local encoding.
And in the code of BDRingBuffer.cpp and DVDRingBuffer.cpp this context is
not exists, so we have to explicitly specify the encoding for strings with
codecForName. Here's an example:

QApplication app (argc, argv);
setlocale (LC_ALL, "");

QTextCodec * vpCodec = QTextCodec :: codecForLocale ();
if (vpCodec) {
QTextCodec :: setCodecForCStrings (vpCodec);
}

const QString & filename = "привет!";
QString fn = filename.toLocal8Bit (). Data ();

In this code, the value of variable fn will be appropriate encoding of the
locale.

In the code:

QTextCodec * vpCodec = QTextCodec :: codecForLocale ();
if (vpCodec) {
QTextCodec :: setCodecForCStrings (vpCodec);
}

const QString & filename = "/ hello";
QString fn = filename.toLocal8Bit (). Data ();

no object QApplication, Qt will use the default encoding, and our code
will work only if we specify the codec with, for example QTextCodec ::
codecForName ("UTF-8")

Apologize for bad English, and perhaps not the correct terminology

--
Ticket URL: <http://code.mythtv.org/trac/ticket/9797#comment:15>
MythTV <http://code.mythtv.org/trac>
MythTV Media Center
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://www.mythtv.org/mailman/listinfo/mythtv-commits


noreply at mythtv

May 4, 2012, 10:28 PM

Post #17 of 20 (106 views)
Permalink
Re: Ticket #9797: Play Blu Ray from storage groups with directories whose names contain Cyrillic characters [In reply to]

#9797: Play Blu Ray from storage groups with directories whose names contain
Cyrillic characters
---------------------------------------+----------------------------
Reporter: sandybigboy@… | Owner:
Type: Patch - Bug Fix | Status: new
Priority: minor | Milestone: unknown
Component: MythTV - Blu-ray Playback | Version: 0.24-fixes
Severity: medium | Resolution:
Keywords: | Ticket locked: 0
---------------------------------------+----------------------------

Comment (by mdean):

see, also #10689

--
Ticket URL: <http://code.mythtv.org/trac/ticket/9797#comment:16>
MythTV <http://code.mythtv.org/trac>
MythTV Media Center
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://www.mythtv.org/mailman/listinfo/mythtv-commits


noreply at mythtv

May 5, 2012, 3:42 AM

Post #18 of 20 (105 views)
Permalink
Re: Ticket #9797: Play Blu Ray from storage groups with directories whose names contain Cyrillic characters [In reply to]

#9797: Play Blu Ray from storage groups with directories whose names contain
Cyrillic characters
-------------------------------------+-------------------------------------
Reporter: sandybigboy@… | Owner: Stuart Morgan
Type: Patch - Bug Fix | <smorgan@…>
Priority: minor | Status: closed
Component: MythTV - Blu-ray | Milestone: unknown
Playback | Version: 0.24-fixes
Severity: medium | Resolution: fixed
Keywords: | Ticket locked: 0
-------------------------------------+-------------------------------------
Changes (by Stuart Morgan <smorgan@…>):

* owner: => Stuart Morgan <smorgan@…>
* status: new => closed
* resolution: => fixed


Comment:

In [changeset:832a3fa71ab9f9ee59f36e03ed7d0503b5718af9/mythtv]:
{{{
#!CommitTicketReference repository="mythtv"
revision="832a3fa71ab9f9ee59f36e03ed7d0503b5718af9"
Fix playback of blu-ray ISOs containing UTF8 characters. Fixes #10689,
#9797
}}}

--
Ticket URL: <http://code.mythtv.org/trac/ticket/9797#comment:17>
MythTV <http://code.mythtv.org/trac>
MythTV Media Center
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://www.mythtv.org/mailman/listinfo/mythtv-commits


noreply at mythtv

May 5, 2012, 3:43 AM

Post #19 of 20 (105 views)
Permalink
Re: Ticket #9797: Play Blu Ray from storage groups with directories whose names contain Cyrillic characters [In reply to]

#9797: Play Blu Ray from storage groups with directories whose names contain
Cyrillic characters
-------------------------------------+-------------------------------------
Reporter: sandybigboy@… | Owner: Stuart Morgan
Type: Patch - Bug Fix | <smorgan@…>
Priority: minor | Status: closed
Component: MythTV - Blu-ray | Milestone: unknown
Playback | Version: 0.24-fixes
Severity: medium | Resolution: fixed
Keywords: | Ticket locked: 0
-------------------------------------+-------------------------------------

Comment (by Stuart Morgan <smorgan@…>):

In [changeset:b221af7e25dd4f354d210a90aa3aae441b59c896/mythtv]:
{{{
#!CommitTicketReference repository="mythtv"
revision="b221af7e25dd4f354d210a90aa3aae441b59c896"
Fix playback of blu-ray ISOs containing UTF8 characters. Fixes #10689,
#9797
(cherry picked from commit 832a3fa71ab9f9ee59f36e03ed7d0503b5718af9)
}}}

--
Ticket URL: <http://code.mythtv.org/trac/ticket/9797#comment:18>
MythTV <http://code.mythtv.org/trac>
MythTV Media Center
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://www.mythtv.org/mailman/listinfo/mythtv-commits


noreply at mythtv

May 5, 2012, 7:40 AM

Post #20 of 20 (109 views)
Permalink
Re: Ticket #9797: Play Blu Ray from storage groups with directories whose names contain Cyrillic characters [In reply to]

#9797: Play Blu Ray from storage groups with directories whose names contain
Cyrillic characters
-------------------------------------+-------------------------------------
Reporter: sandybigboy@… | Owner: Stuart Morgan
Type: Patch - Bug Fix | <smorgan@…>
Priority: minor | Status: closed
Component: MythTV - Blu-ray | Milestone: 0.25.1
Playback | Version: 0.24-fixes
Severity: medium | Resolution: fixed
Keywords: | Ticket locked: 0
-------------------------------------+-------------------------------------
Changes (by wagnerrp):

* milestone: unknown => 0.25.1


--
Ticket URL: <http://code.mythtv.org/trac/ticket/9797#comment:19>
MythTV <http://code.mythtv.org/trac>
MythTV Media Center
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://www.mythtv.org/mailman/listinfo/mythtv-commits

MythTV commits RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact Gossamer Threads
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.