NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Other Clients Old Stuff (legacy) NextPVR Enhanced Web Admin (NEWA) v
« Previous 1 … 36 37 38 39 40 … 47 Next »
Enhanced Web Admin (EWA) Build 62 Released

 
  • 0 Vote(s) - 0 Average
Enhanced Web Admin (EWA) Build 62 Released
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#1
2007-05-29, 03:16 AM
Build 62 of EWA has been released. You can download it here or on the wiki.

This upgrade requires GBPVR 99.12 or higher to work.

This release replaces the Tortuga RSS Library with the open source library RSS.Net. This move greatly reduced the size of the package and I believe RSS generation is now faster.

Package was 1,385k in size. With the new library the package is now only 568k in size.

Date: 2007-05-28 Build Number: 62 Changes:
  • UncleJohnsBand: Bug fix in saved search functioanlity in Search tab.
  • UncleJohnsBand: Switched RSS Library from the heavy weight Tortuga library to the much lighter weight open source RSS.Net library.
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
dejunai
Offline

Junior Member

Posts: 24
Threads: 4
Joined: Dec 2006
#2
2007-05-29, 06:45 PM (This post was last modified: 2007-05-29, 07:22 PM by dejunai.)
Seems to be working Fine...
Just need to update my Custom Linking to IMDB/NetFlix/TV.Com/etc...

Which by the way, I have refined...
Now works very well without ZapTools...

The major differences are that I still always use Google's "Feeling Lucky",
and then leave the traditional site search as an (*) tiny link..

I also use "quotes around titles" and "episodic subtitles"...
And Avoid adding Links for "Paid Programming"...

The code is below, if you'd care to look at it Smile
-Dejunai

P.S. Still works nicely in Build 62...

( Replacing Lines 296 thru 398 )
Code:
// Original Line 296 :            // Add external links (these must be added in reverse order)
///////////////// Paid Programming ==> No Links ////////////////////////
if ( title != null && title != "Paid Programming" && programme != null )
{
    string programUniqueIdentifier = programme.getUniqueProgrammeIdentifier();

// Add external links (these must be added in reverse order)
/////////////////////////// Wiki /////////////////////////////////
// Straight Forward Search of Wikipedia ( using Wikipedia Only )

// Show the show link to Wikipedia for all EPG Users

    if (externallinks && guideParams.showWiki)
    {
        description = " (<a href=\"http://en.wikipedia.org/w/index.php?title=Special:Search&search=%22" +
            Server.UrlEncode(title) + "%22" +
            "\" target=\"_blank\">Wiki</a>)" + description;
    }

/////////////////////////// TV.Com /////////////////////////////////
// Google "I'm Feeling Lucky" for title ( and subtitle when available ) against "site:tv.com"
// Backup of direct TV.Com title search available as an *ASTRIX*
// Links Not available if program is a Movie (MV)

// Show the show link to TV.Com for all EPG Users
    if (externallinks && guideParams.showTVCom && !programUniqueIdentifier.StartsWith("MV"))
    {
        description = "(<a href=\"http://www.tv.com/search.php?type=11&stype=program&qs=%22" +
            Server.UrlEncode(title) + "%22" +
            "\" target=\"_blank\">*</a>)" + description;
        if ( subtitle != "" )
        {
            description = " (<a href=\"http://www.google.com/search?hl=en&q=site:tv.com+%22" +
                Server.UrlEncode(title) + "%22+%22" + Server.UrlEncode(subtitle) + "%22+%22read+episode+recap%22" + "&btnI=I'm+Feeling+Lucky" +
                "\" target=\"_blank\">TV.Com</a>)" + description;
        }else{
                    description = " (<a href=\"http://www.google.com/search?hl=en&q=site:tv.com+%22" +
                Server.UrlEncode(title) + "%22+premiered+&btnI=I'm+Feeling+Lucky" +
                "\" target=\"_blank\">TV.Com</a>)" + description;
        }
    }

/////////////////////////// NetFlix /////////////////////////////////
// Google "I'm Feeling Lucky" for title against "site:netflix.com/Movie"
// Backup of direct NetFlix.Com title search available as an *ASTRIX*
// Links Only Available if program is a Movie (MV)

// Show the show link to Netflix for all EPG Users
    if (externallinks && guideParams.showNetflix && programUniqueIdentifier.StartsWith("MV"))
    {
        description = "(<a href=\"http://www.netflix.com/Search?dtl=1&type=title&v1=%22" +
            Server.UrlEncode(title) + "%22" +
            "\" target=\"_blank\">*</a>)" + description;
        description = " (<a href=\"http://www.google.com/search?hl=en&q=site:netflix.com/Movie+%22" +
            Server.UrlEncode(title) + "%22&btnI=I%27m+Feeling+Lucky" +
            "\" target=\"_blank\">NetFlix</a>)" + description;
    }
                    
/////////////////////////// IMDB /////////////////////////////////
// Google "I'm Feeling Lucky" for title ( and subtitle when avaiable ) against "site:imdb.com/title"
// Backup of direct IMDB.Com title ( and subtitle ) search available as an *ASTRIX*
// Links for title only if program is a Movie (MV) or Show (SH), subtitle links possible if (EP)

// Show the show link to IMDB for all EPG Users
    if (externallinks && guideParams.showIMDB)
    {
        if (!programUniqueIdentifier.StartsWith("MV"))
        {// Is An Episode
            if(subtitle != "")
            {
                description = "(<a href=\"http://www.imdb.com/find?s=tt&q=%22" +
                    Server.UrlEncode(title) + "%22" + "&s=ep&q=%22" + Server.UrlEncode(subtitle) + "%22" +
                    "\" target=\"_blank\">*</a>)" + description;
                description = " (<a href=\"http://www.google.com/search?hl=en&q=site%3Aimdb.com/title+%22" +
                    Server.UrlEncode(title) + "%22+%22" + Server.UrlEncode(subtitle) + "%22+%22rate+this+title%22&btnI=I%27m+Feeling+Lucky" +
                    "\" target=\"_blank\">IMDB</a>)" + description;
            }else{
                description = "(<a href=\"http://www.imdb.com/find?s=tt&q=%22" +
                    Server.UrlEncode(title) + "%22" +
                    "\" target=\"_blank\">*</a>)" + description;
                description = " (<a href=\"http://www.google.com/search?hl=en&q=site%3Aimdb.com/title+%22" +
                    Server.UrlEncode(title) + "+%22TV-Series%22+%22rate+this+title%22&btnI=I%27m+Feeling+Lucky" +
                    "\" target=\"_blank\">IMDB</a>)" + description;
            }
        }else{// Is a Movie
            description = "(<a href=\"http://www.imdb.com/find?s=tt&q=%22" +
                Server.UrlEncode(title) + "%22" +
                "\" target=\"_blank\">*</a>)" + description;
            description = " (<a href=\"http://www.google.com/search?hl=en&q=site%3Aimdb.com/title+%22" +
                Server.UrlEncode(title) + "%22+%22rate+this+title%22&btnI=I%27m+Feeling+Lucky" +
                "\" target=\"_blank\">IMDB</a>)" + description;
        }
    }

}//end Paid Programming
///////////////// Paid Programming ==> No Links ////////////////////////
// Original Line 396 :                    description = " (<a href=\"http://www.imdb.com/find?s=tt&q=" + Server.UrlEncode(title) + "\" target=\"_blank\">IMDB</a>)" + description;
// Original Line 397 :                }
// Original Line 398 :            }
User
Offline

Senior Member

Inglewood, California, USA
Posts: 365
Threads: 10
Joined: Oct 2005
#3
2007-05-30, 12:54 AM
Looking good here too. Thank you!
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#4
2007-05-30, 01:40 AM
dejunai Wrote:Seems to be working Fine...
Just need to update my Custom Linking to IMDB/NetFlix/TV.Com/etc...

Which by the way, I have refined...
Now works very well without ZapTools...

The major differences are that I still always use Google's "Feeling Lucky",
and then leave the traditional site search as an (*) tiny link..

I also use "quotes around titles" and "episodic subtitles"...
And Avoid adding Links for "Paid Programming"...

The code is below, if you'd care to look at it Smile
-Dejunai

P.S. Still works nicely in Build 62...

( Replacing Lines 296 thru 398 )
Code:
// Original Line 296 :            // Add external links (these must be added in reverse order)
///////////////// Paid Programming ==> No Links ////////////////////////
if ( title != null && title != "Paid Programming" && programme != null )
{
    string programUniqueIdentifier = programme.getUniqueProgrammeIdentifier();

// Add external links (these must be added in reverse order)
/////////////////////////// Wiki /////////////////////////////////
// Straight Forward Search of Wikipedia ( using Wikipedia Only )

// Show the show link to Wikipedia for all EPG Users

    if (externallinks && guideParams.showWiki)
    {
        description = " (<a href=\"http://en.wikipedia.org/w/index.php?title=Special:Search&search=%22" +
            Server.UrlEncode(title) + "%22" +
            "\" target=\"_blank\">Wiki</a>)" + description;
    }

/////////////////////////// TV.Com /////////////////////////////////
// Google "I'm Feeling Lucky" for title ( and subtitle when available ) against "site:tv.com"
// Backup of direct TV.Com title search available as an *ASTRIX*
// Links Not available if program is a Movie (MV)

// Show the show link to TV.Com for all EPG Users
    if (externallinks && guideParams.showTVCom && !programUniqueIdentifier.StartsWith("MV"))
    {
        description = "(<a href=\"http://www.tv.com/search.php?type=11&stype=program&qs=%22" +
            Server.UrlEncode(title) + "%22" +
            "\" target=\"_blank\">*</a>)" + description;
        if ( subtitle != "" )
        {
            description = " (<a href=\"http://www.google.com/search?hl=en&q=site:tv.com+%22" +
                Server.UrlEncode(title) + "%22+%22" + Server.UrlEncode(subtitle) + "%22+%22read+episode+recap%22" + "&btnI=I'm+Feeling+Lucky" +
                "\" target=\"_blank\">TV.Com</a>)" + description;
        }else{
                    description = " (<a href=\"http://www.google.com/search?hl=en&q=site:tv.com+%22" +
                Server.UrlEncode(title) + "%22+premiered+&btnI=I'm+Feeling+Lucky" +
                "\" target=\"_blank\">TV.Com</a>)" + description;
        }
    }

/////////////////////////// NetFlix /////////////////////////////////
// Google "I'm Feeling Lucky" for title against "site:netflix.com/Movie"
// Backup of direct NetFlix.Com title search available as an *ASTRIX*
// Links Only Available if program is a Movie (MV)

// Show the show link to Netflix for all EPG Users
    if (externallinks && guideParams.showNetflix && programUniqueIdentifier.StartsWith("MV"))
    {
        description = "(<a href=\"http://www.netflix.com/Search?dtl=1&type=title&v1=%22" +
            Server.UrlEncode(title) + "%22" +
            "\" target=\"_blank\">*</a>)" + description;
        description = " (<a href=\"http://www.google.com/search?hl=en&q=site:netflix.com/Movie+%22" +
            Server.UrlEncode(title) + "%22&btnI=I%27m+Feeling+Lucky" +
            "\" target=\"_blank\">NetFlix</a>)" + description;
    }
                    
/////////////////////////// IMDB /////////////////////////////////
// Google "I'm Feeling Lucky" for title ( and subtitle when avaiable ) against "site:imdb.com/title"
// Backup of direct IMDB.Com title ( and subtitle ) search available as an *ASTRIX*
// Links for title only if program is a Movie (MV) or Show (SH), subtitle links possible if (EP)

// Show the show link to IMDB for all EPG Users
    if (externallinks && guideParams.showIMDB)
    {
        if (!programUniqueIdentifier.StartsWith("MV"))
        {// Is An Episode
            if(subtitle != "")
            {
                description = "(<a href=\"http://www.imdb.com/find?s=tt&q=%22" +
                    Server.UrlEncode(title) + "%22" + "&s=ep&q=%22" + Server.UrlEncode(subtitle) + "%22" +
                    "\" target=\"_blank\">*</a>)" + description;
                description = " (<a href=\"http://www.google.com/search?hl=en&q=site%3Aimdb.com/title+%22" +
                    Server.UrlEncode(title) + "%22+%22" + Server.UrlEncode(subtitle) + "%22+%22rate+this+title%22&btnI=I%27m+Feeling+Lucky" +
                    "\" target=\"_blank\">IMDB</a>)" + description;
            }else{
                description = "(<a href=\"http://www.imdb.com/find?s=tt&q=%22" +
                    Server.UrlEncode(title) + "%22" +
                    "\" target=\"_blank\">*</a>)" + description;
                description = " (<a href=\"http://www.google.com/search?hl=en&q=site%3Aimdb.com/title+%22" +
                    Server.UrlEncode(title) + "+%22TV-Series%22+%22rate+this+title%22&btnI=I%27m+Feeling+Lucky" +
                    "\" target=\"_blank\">IMDB</a>)" + description;
            }
        }else{// Is a Movie
            description = "(<a href=\"http://www.imdb.com/find?s=tt&q=%22" +
                Server.UrlEncode(title) + "%22" +
                "\" target=\"_blank\">*</a>)" + description;
            description = " (<a href=\"http://www.google.com/search?hl=en&q=site%3Aimdb.com/title+%22" +
                Server.UrlEncode(title) + "%22+%22rate+this+title%22&btnI=I%27m+Feeling+Lucky" +
                "\" target=\"_blank\">IMDB</a>)" + description;
        }
    }

}//end Paid Programming
///////////////// Paid Programming ==> No Links ////////////////////////
// Original Line 396 :                    description = " (<a href=\"http://www.imdb.com/find?s=tt&q=" + Server.UrlEncode(title) + "\" target=\"_blank\">IMDB</a>)" + description;
// Original Line 397 :                }
// Original Line 398 :            }

I like it.....it will be in the next release.

Thanks.
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
dejunai
Offline

Junior Member

Posts: 24
Threads: 4
Joined: Dec 2006
#5
2007-05-30, 08:43 AM
UncleJohnsBand Wrote:I like it.....it will be in the next release.

Thanks.

Glad I can help... even in a small way... Wink

You are very generous to maintain the EWA, and I appreciate it! Big Grin
My only wish is that I could do more to contribute. Rolleyes

-Dejunai
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)



Possibly Related Threads…
Thread Author Replies Views Last Post
  Error with Web Admin? jksmurf 0 2,322 2019-06-20, 10:34 AM
Last Post: jksmurf
  NEWA Web Admin working OK, but have question about modern GUI playback controls tinstaafl 0 2,292 2017-03-19, 10:11 PM
Last Post: tinstaafl
  Multiple Users for Web Admin rowle1jt 5 3,854 2017-01-10, 01:00 AM
Last Post: UncleJohnsBand
  NEWA Release Build 2.17 Released 2015-08-29 UncleJohnsBand 0 8,286 2015-08-30, 08:05 PM
Last Post: UncleJohnsBand
  NEWA Release Build 2.16 Released 2015-04-25 UncleJohnsBand 0 1,847 2015-04-25, 03:18 PM
Last Post: UncleJohnsBand
  NEWA Release Build 2.15 Released 2014-10-25 UncleJohnsBand 0 2,181 2014-10-26, 09:38 PM
Last Post: UncleJohnsBand
  NEWA Release Build 2.13 Released 2014-07-21 UncleJohnsBand 0 2,076 2014-07-21, 09:13 PM
Last Post: UncleJohnsBand
  NEWA Release Build 2.11 Released 2014-01-12 UncleJohnsBand 0 2,015 2014-01-13, 03:41 AM
Last Post: UncleJohnsBand
  NEWA Release Build 2.10 Released 2013-12-30 UncleJohnsBand 0 2,207 2013-12-31, 02:49 AM
Last Post: UncleJohnsBand
  NEWA Release Build 1.34 Released 2013-03-25 UncleJohnsBand 0 7,621 2013-03-29, 03:03 AM
Last Post: UncleJohnsBand

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode