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

Mailing List Archive: MythTV: Commits

Ticket #4517: sorting in upnp

 

 

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


mythtv at cvs

Jan 22, 2008, 1:45 PM

Post #1 of 9 (597 views)
Permalink
Ticket #4517: sorting in upnp

#4517: sorting in upnp
----------------------------+-----------------------------------------------
Reporter: Kevin Kalmbach | Owner: dblain
Type: patch | Status: new
Priority: minor | Milestone: unknown
Component: upnp | Version: head
Severity: medium | Mlocked: 0
----------------------------+-----------------------------------------------
I already put this in the mailing list, but this might be a better forum.


I noticed that in the latest incarnation of upnp stuff, the names are not
sorted.
I put in a quick sorting, don't know if it's the correct way or worthy of
committing, but I thought I would throw it out there.
If basically adds a sortColumn to the UPnpCDSRootInfo, then adds that in
the select.

Thanks
-Kevin

--- upnpcds.cpp 2008-01-19 17:13:47.000000000 -0700
+++ ../upnpcds.cpp 2008-01-19 18:46:54.000000000 -0700
@@ -1210,7 +1210,6 @@
if (query.isConnected())
{
QString sWhere( "" );
- QString sOrder( "" );

if ( sKey.length() > 0)
{
@@ -1218,13 +1217,6 @@
.arg( pInfo->column );
}

-
- QString orderColumn( pInfo->orderColumn );
- if (orderColumn.length() != 0) {
- sOrder = QString( "ORDER BY %1 " )
- .arg( orderColumn );
- }
-
if (pRequest->m_sObjectId.startsWith("Videos", true))
{
if (pRequest->m_sParentId != "")
@@ -1263,7 +1255,7 @@

QString sSQL = QString( "%1 %2 LIMIT %3, %4" )
.arg( GetItemListSQL( pInfo->column ) )
- .arg( sWhere + ParentClause + sOrder )
+ .arg( sWhere + ParentClause )
.arg( pRequest->m_nStartingIndex )
.arg( pRequest->m_nRequestedCount );

--- upnpcds.h 2008-01-18 16:54:15.000000000 -0700
+++ ../upnpcds.h 2008-01-19 18:46:54.000000000 -0700
@@ -111,7 +111,6 @@
char *column;
char *sql;
char *where;
- char *orderColumn;

} UPnpCDSRootInfo;



--- upnpcdsmusic.cpp 2008-01-18 16:57:19.000000000 -0700
+++ ../upnpcdsmusic.cpp 2008-01-19 18:46:54.000000000 -0700
@@ -50,7 +50,7 @@
"FROM music_songs song "
"%1 "
"ORDER BY name",
- "", "" },
+ "" },

/*
This is currently broken... need to handle list of items with single
parent
(like 'All Music')
@@ -74,7 +74,7 @@
"%1 "
"GROUP BY a.album_id "
"ORDER BY a.album_name",
- "WHERE song.album_id=:KEY","" },
+ "WHERE song.album_id=:KEY" },
/*

{ "By Artist",
--- upnpcdstv.cpp 2008-01-18 16:58:54.000000000 -0700
+++ ../upnpcdstv.cpp 2008-01-19 18:46:54.000000000 -0700
@@ -44,7 +44,7 @@
"FROM recorded "
"%1 "
"ORDER BY starttime DESC",
- "", "" },
+ "" },

{ "By Title",
"title",
@@ -55,7 +55,7 @@
"%1 "
"GROUP BY title "
"ORDER BY title",
- "WHERE title=:KEY", "" },
+ "WHERE title=:KEY" },

{ "By Genre",
"category",
@@ -66,7 +66,7 @@
"%1 "
"GROUP BY category "
"ORDER BY category",
- "WHERE category=:KEY", "" },
+ "WHERE category=:KEY" },

{ "By Date",
"DATE_FORMAT(starttime, '%Y-%m-%d')",
@@ -77,7 +77,7 @@
"%1 "
"GROUP BY name "
"ORDER BY starttime DESC",
- "WHERE DATE_FORMAT(starttime, '%Y-%m-%d') =:KEY", "" },
+ "WHERE DATE_FORMAT(starttime, '%Y-%m-%d') =:KEY" },

{ "By Channel",
"chanid",
@@ -89,7 +89,7 @@
"%1 "
"GROUP BY name "
"ORDER BY channel.chanid",
- "WHERE channel.chanid=:KEY", "" },
+ "WHERE channel.chanid=:KEY" },


{ "By Group",
@@ -100,7 +100,7 @@
"%1 "
"GROUP BY recgroup "
"ORDER BY recgroup",
- "WHERE recgroup=:KEY", "" }
+ "WHERE recgroup=:KEY" }
};

int UPnpCDSTv::g_nRootCount = sizeof( g_RootNodes ) / sizeof(
UPnpCDSRootInfo );
--- upnpcdsvideo.cpp 2008-01-18 16:57:50.000000000 -0700
+++ ../upnpcdsvideo.cpp 2008-01-19 18:46:54.000000000 -0700
@@ -22,8 +22,8 @@
"1 as children "
"FROM upnpmedia "
"%1 "
- "ORDER BY title ASC",
- "", "title" }
+ "ORDER BY title DESC",
+ "" }

};

--
Ticket URL: <http://svn.mythtv.org/trac/ticket/4517>
MythTV <http://svn.mythtv.org/trac>
MythTV
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-commits


mythtv at cvs

May 23, 2008, 7:21 PM

Post #2 of 9 (573 views)
Permalink
Re: Ticket #4517: sorting in upnp [In reply to]

#4517: sorting in upnp
----------------------------+-----------------------------------------------
Reporter: Kevin Kalmbach | Owner: greg
Type: patch | Status: assigned
Priority: minor | Milestone: unknown
Component: upnp | Version: head
Severity: medium | Resolution:
Mlocked: 0 |
----------------------------+-----------------------------------------------
Changes (by greg):

* owner: dblain => greg
* status: new => assigned


--
Ticket URL: <http://svn.mythtv.org/trac/ticket/4517#comment:1>
MythTV <http://www.mythtv.org/>
MythTV
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-commits


mythtv at cvs

Sep 3, 2008, 4:02 AM

Post #3 of 9 (491 views)
Permalink
Re: Ticket #4517: sorting in upnp [In reply to]

#4517: sorting in upnp
----------------------------+-----------------------------------------------
Reporter: Kevin Kalmbach | Owner: greg
Type: patch | Status: assigned
Priority: minor | Milestone: unknown
Component: upnp | Version: head
Severity: medium | Resolution:
Mlocked: 0 |
----------------------------+-----------------------------------------------
Description changed by nigel:

Old description:

> I already put this in the mailing list, but this might be a better forum.
>

> I noticed that in the latest incarnation of upnp stuff, the names are not
> sorted.
> I put in a quick sorting, don't know if it's the correct way or worthy of
> committing, but I thought I would throw it out there.
> If basically adds a sortColumn to the UPnpCDSRootInfo, then adds that in
> the select.
>
> Thanks
> -Kevin
>
> --- upnpcds.cpp 2008-01-19 17:13:47.000000000 -0700
> +++ ../upnpcds.cpp 2008-01-19 18:46:54.000000000 -0700
> @@ -1210,7 +1210,6 @@
> if (query.isConnected())
> {
> QString sWhere( "" );
> - QString sOrder( "" );
>
> if ( sKey.length() > 0)
> {
> @@ -1218,13 +1217,6 @@
> .arg( pInfo->column );
> }
>
> -
> - QString orderColumn( pInfo->orderColumn );
> - if (orderColumn.length() != 0) {
> - sOrder = QString( "ORDER BY %1 " )
> - .arg( orderColumn );
> - }
> -
> if (pRequest->m_sObjectId.startsWith("Videos", true))
> {
> if (pRequest->m_sParentId != "")
> @@ -1263,7 +1255,7 @@
>
> QString sSQL = QString( "%1 %2 LIMIT %3, %4" )
> .arg( GetItemListSQL( pInfo->column ) )
> - .arg( sWhere + ParentClause + sOrder )
> + .arg( sWhere + ParentClause )
> .arg( pRequest->m_nStartingIndex )
> .arg( pRequest->m_nRequestedCount );
>
> --- upnpcds.h 2008-01-18 16:54:15.000000000 -0700
> +++ ../upnpcds.h 2008-01-19 18:46:54.000000000 -0700
> @@ -111,7 +111,6 @@
> char *column;
> char *sql;
> char *where;
> - char *orderColumn;
>
> } UPnpCDSRootInfo;
>

>
> --- upnpcdsmusic.cpp 2008-01-18 16:57:19.000000000 -0700
> +++ ../upnpcdsmusic.cpp 2008-01-19 18:46:54.000000000 -0700
> @@ -50,7 +50,7 @@
> "FROM music_songs song "
> "%1 "
> "ORDER BY name",
> - "", "" },
> + "" },
>
> /*
> This is currently broken... need to handle list of items with single
> parent
> (like 'All Music')
> @@ -74,7 +74,7 @@
> "%1 "
> "GROUP BY a.album_id "
> "ORDER BY a.album_name",
> - "WHERE song.album_id=:KEY","" },
> + "WHERE song.album_id=:KEY" },
> /*
>
> { "By Artist",
> --- upnpcdstv.cpp 2008-01-18 16:58:54.000000000 -0700
> +++ ../upnpcdstv.cpp 2008-01-19 18:46:54.000000000 -0700
> @@ -44,7 +44,7 @@
> "FROM recorded "
> "%1 "
> "ORDER BY starttime DESC",
> - "", "" },
> + "" },
>
> { "By Title",
> "title",
> @@ -55,7 +55,7 @@
> "%1 "
> "GROUP BY title "
> "ORDER BY title",
> - "WHERE title=:KEY", "" },
> + "WHERE title=:KEY" },
>
> { "By Genre",
> "category",
> @@ -66,7 +66,7 @@
> "%1 "
> "GROUP BY category "
> "ORDER BY category",
> - "WHERE category=:KEY", "" },
> + "WHERE category=:KEY" },
>
> { "By Date",
> "DATE_FORMAT(starttime, '%Y-%m-%d')",
> @@ -77,7 +77,7 @@
> "%1 "
> "GROUP BY name "
> "ORDER BY starttime DESC",
> - "WHERE DATE_FORMAT(starttime, '%Y-%m-%d') =:KEY", "" },
> + "WHERE DATE_FORMAT(starttime, '%Y-%m-%d') =:KEY" },
>
> { "By Channel",
> "chanid",
> @@ -89,7 +89,7 @@
> "%1 "
> "GROUP BY name "
> "ORDER BY channel.chanid",
> - "WHERE channel.chanid=:KEY", "" },
> + "WHERE channel.chanid=:KEY" },
>

> { "By Group",
> @@ -100,7 +100,7 @@
> "%1 "
> "GROUP BY recgroup "
> "ORDER BY recgroup",
> - "WHERE recgroup=:KEY", "" }
> + "WHERE recgroup=:KEY" }
> };
>
> int UPnpCDSTv::g_nRootCount = sizeof( g_RootNodes ) / sizeof(
> UPnpCDSRootInfo );
> --- upnpcdsvideo.cpp 2008-01-18 16:57:50.000000000 -0700
> +++ ../upnpcdsvideo.cpp 2008-01-19 18:46:54.000000000 -0700
> @@ -22,8 +22,8 @@
> "1 as children "
> "FROM upnpmedia "
> "%1 "
> - "ORDER BY title ASC",
> - "", "title" }
> + "ORDER BY title DESC",
> + "" }
>
> };

New description:

I already put this in the mailing list, but this might be a better forum.


I noticed that in the latest incarnation of upnp stuff, the names are not
sorted.
I put in a quick sorting, don't know if it's the correct way or worthy of
committing, but I thought I would throw it out there.
If basically adds a sortColumn to the UPnpCDSRootInfo, then adds that in
the select.

Thanks
-Kevin
{{{
--- upnpcds.cpp 2008-01-19 17:13:47.000000000 -0700
+++ ../upnpcds.cpp 2008-01-19 18:46:54.000000000 -0700
@@ -1210,7 +1210,6 @@
if (query.isConnected())
{
QString sWhere( "" );
- QString sOrder( "" );

if ( sKey.length() > 0)
{
@@ -1218,13 +1217,6 @@
.arg( pInfo->column );
}

-
- QString orderColumn( pInfo->orderColumn );
- if (orderColumn.length() != 0) {
- sOrder = QString( "ORDER BY %1 " )
- .arg( orderColumn );
- }
-
if (pRequest->m_sObjectId.startsWith("Videos", true))
{
if (pRequest->m_sParentId != "")
@@ -1263,7 +1255,7 @@

QString sSQL = QString( "%1 %2 LIMIT %3, %4" )
.arg( GetItemListSQL( pInfo->column ) )
- .arg( sWhere + ParentClause + sOrder )
+ .arg( sWhere + ParentClause )
.arg( pRequest->m_nStartingIndex )
.arg( pRequest->m_nRequestedCount );

--- upnpcds.h 2008-01-18 16:54:15.000000000 -0700
+++ ../upnpcds.h 2008-01-19 18:46:54.000000000 -0700
@@ -111,7 +111,6 @@
char *column;
char *sql;
char *where;
- char *orderColumn;

} UPnpCDSRootInfo;



--- upnpcdsmusic.cpp 2008-01-18 16:57:19.000000000 -0700
+++ ../upnpcdsmusic.cpp 2008-01-19 18:46:54.000000000 -0700
@@ -50,7 +50,7 @@
"FROM music_songs song "
"%1 "
"ORDER BY name",
- "", "" },
+ "" },

/*
This is currently broken... need to handle list of items with single
parent
(like 'All Music')
@@ -74,7 +74,7 @@
"%1 "
"GROUP BY a.album_id "
"ORDER BY a.album_name",
- "WHERE song.album_id=:KEY","" },
+ "WHERE song.album_id=:KEY" },
/*

{ "By Artist",
--- upnpcdstv.cpp 2008-01-18 16:58:54.000000000 -0700
+++ ../upnpcdstv.cpp 2008-01-19 18:46:54.000000000 -0700
@@ -44,7 +44,7 @@
"FROM recorded "
"%1 "
"ORDER BY starttime DESC",
- "", "" },
+ "" },

{ "By Title",
"title",
@@ -55,7 +55,7 @@
"%1 "
"GROUP BY title "
"ORDER BY title",
- "WHERE title=:KEY", "" },
+ "WHERE title=:KEY" },

{ "By Genre",
"category",
@@ -66,7 +66,7 @@
"%1 "
"GROUP BY category "
"ORDER BY category",
- "WHERE category=:KEY", "" },
+ "WHERE category=:KEY" },

{ "By Date",
"DATE_FORMAT(starttime, '%Y-%m-%d')",
@@ -77,7 +77,7 @@
"%1 "
"GROUP BY name "
"ORDER BY starttime DESC",
- "WHERE DATE_FORMAT(starttime, '%Y-%m-%d') =:KEY", "" },
+ "WHERE DATE_FORMAT(starttime, '%Y-%m-%d') =:KEY" },

{ "By Channel",
"chanid",
@@ -89,7 +89,7 @@
"%1 "
"GROUP BY name "
"ORDER BY channel.chanid",
- "WHERE channel.chanid=:KEY", "" },
+ "WHERE channel.chanid=:KEY" },


{ "By Group",
@@ -100,7 +100,7 @@
"%1 "
"GROUP BY recgroup "
"ORDER BY recgroup",
- "WHERE recgroup=:KEY", "" }
+ "WHERE recgroup=:KEY" }
};

int UPnpCDSTv::g_nRootCount = sizeof( g_RootNodes ) / sizeof(
UPnpCDSRootInfo );
--- upnpcdsvideo.cpp 2008-01-18 16:57:50.000000000 -0700
+++ ../upnpcdsvideo.cpp 2008-01-19 18:46:54.000000000 -0700
@@ -22,8 +22,8 @@
"1 as children "
"FROM upnpmedia "
"%1 "
- "ORDER BY title ASC",
- "", "title" }
+ "ORDER BY title DESC",
+ "" }

};
}}}

--

--
Ticket URL: <http://svn.mythtv.org/trac/ticket/4517#comment:2>
MythTV <http://www.mythtv.org/>
MythTV
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-commits


mythtv at cvs

Oct 9, 2009, 12:42 PM

Post #4 of 9 (326 views)
Permalink
Re: Ticket #4517: sorting in upnp [In reply to]

#4517: sorting in upnp
----------------------------+-----------------------------------------------
Reporter: Kevin Kalmbach | Owner: greg
Type: patch | Status: assigned
Priority: minor | Milestone: unknown
Component: MythTV - UPnP | Version: head
Severity: medium | Resolution:
Mlocked: 0 |
----------------------------+-----------------------------------------------
Changes (by stuartm):

* component: upnp => MythTV - UPnP


--
Ticket URL: <http://svn.mythtv.org/trac/ticket/4517#comment:3>
MythTV <http://www.mythtv.org/>
MythTV
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-commits


mythtv at cvs

Aug 3, 2010, 4:15 PM

Post #5 of 9 (240 views)
Permalink
Re: Ticket #4517: sorting in upnp [In reply to]

#4517: sorting in upnp
----------------------------+-----------------------------------------------
Reporter: Kevin Kalmbach | Owner: beirdo
Type: patch | Status: assigned
Priority: minor | Milestone: unknown
Component: MythTV - UPnP | Version: head
Severity: medium | Mlocked: 0
----------------------------+-----------------------------------------------
Changes (by beirdo):

* owner: greg => beirdo


Comment:

I'm gonna steal this. Greg, if you want it back, let me know, but as I'm
in this stuff for #3580 anyways...

--
Ticket URL: <http://svn.mythtv.org/trac/ticket/4517#comment:4>
MythTV <http://www.mythtv.org/>
MythTV
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-commits


mythtv at cvs

Aug 3, 2010, 4:21 PM

Post #6 of 9 (238 views)
Permalink
Re: Ticket #4517: sorting in upnp [In reply to]

#4517: sorting in upnp
----------------------------+-----------------------------------------------
Reporter: Kevin Kalmbach | Owner: beirdo
Type: patch | Status: assigned
Priority: minor | Milestone: unknown
Component: MythTV - UPnP | Version: head
Severity: medium | Mlocked: 0
----------------------------+-----------------------------------------------

Old description:

> I already put this in the mailing list, but this might be a better forum.
>

> I noticed that in the latest incarnation of upnp stuff, the names are not
> sorted.
> I put in a quick sorting, don't know if it's the correct way or worthy of
> committing, but I thought I would throw it out there.
> If basically adds a sortColumn to the UPnpCDSRootInfo, then adds that in
> the select.
>
> Thanks
> -Kevin
> {{{
> --- upnpcds.cpp 2008-01-19 17:13:47.000000000 -0700
> +++ ../upnpcds.cpp 2008-01-19 18:46:54.000000000 -0700
> @@ -1210,7 +1210,6 @@
> if (query.isConnected())
> {
> QString sWhere( "" );
> - QString sOrder( "" );
>
> if ( sKey.length() > 0)
> {
> @@ -1218,13 +1217,6 @@
> .arg( pInfo->column );
> }
>
> -
> - QString orderColumn( pInfo->orderColumn );
> - if (orderColumn.length() != 0) {
> - sOrder = QString( "ORDER BY %1 " )
> - .arg( orderColumn );
> - }
> -
> if (pRequest->m_sObjectId.startsWith("Videos", true))
> {
> if (pRequest->m_sParentId != "")
> @@ -1263,7 +1255,7 @@
>
> QString sSQL = QString( "%1 %2 LIMIT %3, %4" )
> .arg( GetItemListSQL( pInfo->column ) )
> - .arg( sWhere + ParentClause + sOrder )
> + .arg( sWhere + ParentClause )
> .arg( pRequest->m_nStartingIndex )
> .arg( pRequest->m_nRequestedCount );
>
> --- upnpcds.h 2008-01-18 16:54:15.000000000 -0700
> +++ ../upnpcds.h 2008-01-19 18:46:54.000000000 -0700
> @@ -111,7 +111,6 @@
> char *column;
> char *sql;
> char *where;
> - char *orderColumn;
>
> } UPnpCDSRootInfo;
>

>
> --- upnpcdsmusic.cpp 2008-01-18 16:57:19.000000000 -0700
> +++ ../upnpcdsmusic.cpp 2008-01-19 18:46:54.000000000 -0700
> @@ -50,7 +50,7 @@
> "FROM music_songs song "
> "%1 "
> "ORDER BY name",
> - "", "" },
> + "" },
>
> /*
> This is currently broken... need to handle list of items with single
> parent
> (like 'All Music')
> @@ -74,7 +74,7 @@
> "%1 "
> "GROUP BY a.album_id "
> "ORDER BY a.album_name",
> - "WHERE song.album_id=:KEY","" },
> + "WHERE song.album_id=:KEY" },
> /*
>
> { "By Artist",
> --- upnpcdstv.cpp 2008-01-18 16:58:54.000000000 -0700
> +++ ../upnpcdstv.cpp 2008-01-19 18:46:54.000000000 -0700
> @@ -44,7 +44,7 @@
> "FROM recorded "
> "%1 "
> "ORDER BY starttime DESC",
> - "", "" },
> + "" },
>
> { "By Title",
> "title",
> @@ -55,7 +55,7 @@
> "%1 "
> "GROUP BY title "
> "ORDER BY title",
> - "WHERE title=:KEY", "" },
> + "WHERE title=:KEY" },
>
> { "By Genre",
> "category",
> @@ -66,7 +66,7 @@
> "%1 "
> "GROUP BY category "
> "ORDER BY category",
> - "WHERE category=:KEY", "" },
> + "WHERE category=:KEY" },
>
> { "By Date",
> "DATE_FORMAT(starttime, '%Y-%m-%d')",
> @@ -77,7 +77,7 @@
> "%1 "
> "GROUP BY name "
> "ORDER BY starttime DESC",
> - "WHERE DATE_FORMAT(starttime, '%Y-%m-%d') =:KEY", "" },
> + "WHERE DATE_FORMAT(starttime, '%Y-%m-%d') =:KEY" },
>
> { "By Channel",
> "chanid",
> @@ -89,7 +89,7 @@
> "%1 "
> "GROUP BY name "
> "ORDER BY channel.chanid",
> - "WHERE channel.chanid=:KEY", "" },
> + "WHERE channel.chanid=:KEY" },
>

> { "By Group",
> @@ -100,7 +100,7 @@
> "%1 "
> "GROUP BY recgroup "
> "ORDER BY recgroup",
> - "WHERE recgroup=:KEY", "" }
> + "WHERE recgroup=:KEY" }
> };
>
> int UPnpCDSTv::g_nRootCount = sizeof( g_RootNodes ) / sizeof(
> UPnpCDSRootInfo );
> --- upnpcdsvideo.cpp 2008-01-18 16:57:50.000000000 -0700
> +++ ../upnpcdsvideo.cpp 2008-01-19 18:46:54.000000000 -0700
> @@ -22,8 +22,8 @@
> "1 as children "
> "FROM upnpmedia "
> "%1 "
> - "ORDER BY title ASC",
> - "", "title" }
> + "ORDER BY title DESC",
> + "" }
>
> };
> }}}

New description:

I already put this in the mailing list, but this might be a better forum.


I noticed that in the latest incarnation of upnp stuff, the names are not
sorted.
I put in a quick sorting, don't know if it's the correct way or worthy of
committing, but I thought I would throw it out there.
If basically adds a sortColumn to the UPnpCDSRootInfo, then adds that in
the select.

Thanks
-Kevin

--

Comment(by beirdo):

Patch moved from description to an attachment

--
Ticket URL: <http://svn.mythtv.org/trac/ticket/4517#comment:5>
MythTV <http://www.mythtv.org/>
MythTV
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-commits


mythtv at cvs

Aug 15, 2010, 11:24 PM

Post #7 of 9 (211 views)
Permalink
Re: Ticket #4517: sorting in upnp [In reply to]

#4517: sorting in upnp
----------------------------+-----------------------------------------------
Reporter: Kevin Kalmbach | Owner: beirdo
Type: patch | Status: assigned
Priority: minor | Milestone: unknown
Component: MythTV - UPnP | Version: head
Severity: medium | Resolution:
Keywords: | Ticket locked: 0
----------------------------+-----------------------------------------------

Comment (by beirdo):

Patch redone to trunk [25695].

--
Ticket URL: <http://svn.mythtv.org/trac/ticket/4517#comment:6>
MythTV <http://www.mythtv.org/>
MythTV
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-commits


noreply at mythtv

Dec 19, 2010, 6:26 PM

Post #8 of 9 (148 views)
Permalink
Re: Ticket #4517: sorting in upnp [In reply to]

#4517: sorting in upnp
----------------------------+----------------------------
Reporter: Kevin Kalmbach | Owner: beirdo
Type: patch | Status: assigned
Priority: minor | Milestone: unknown
Component: MythTV - UPnP | Version: Trunk Head
Severity: medium | Resolution:
Keywords: | Ticket locked: 0
----------------------------+----------------------------
Changes (by beirdo):

* version: head => Trunk Head


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


noreply at mythtv

Dec 19, 2010, 9:08 PM

Post #9 of 9 (143 views)
Permalink
Re: Ticket #4517: sorting in upnp [In reply to]

#4517: sorting in upnp
----------------------------+----------------------------
Reporter: Kevin Kalmbach | Owner: beirdo
Type: patch | Status: closed
Priority: minor | Milestone: 0.25
Component: MythTV - UPnP | Version: Trunk Head
Severity: medium | Resolution: Fixed
Keywords: | Ticket locked: 0
----------------------------+----------------------------
Changes (by beirdo):

* status: assigned => closed
* resolution: => Fixed
* milestone: unknown => 0.25


Comment:

Committed to master in e270c1046

--
Ticket URL: <http://code.mythtv.org/trac/ticket/4517#comment:8>
MythTV <http://code.mythtv.org/trac>
MythTV Media Center
_______________________________________________
mythtv-commits mailing list
mythtv-commits [at] mythtv
http://mythtv.org/cgi-bin/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.