SageTV Community  

Go Back   SageTV Community > SageTV Development and Customizations > SageTV Customizations
Forum Rules FAQs Community Downloads Today's Posts Search

Notices

SageTV Customizations This forums is for discussing and sharing user-created modifications for the SageTV application created by using the SageTV Studio or through the use of external plugins. Use this forum to discuss customizations for SageTV version 6 and earlier, or for the SageTV3 UI.

Reply
 
Thread Tools Search this Thread Display Modes
  #101  
Old 05-05-2010, 04:32 PM
JerryB JerryB is offline
Sage Aficionado
 
Join Date: Aug 2008
Posts: 273
I didn't think there was much more you could do to improve the gadget but the addition of the recording schedule in v1.4 was brilliant. Thanks for the update.
Reply With Quote
  #102  
Old 05-05-2010, 09:17 PM
voorhees voorhees is offline
Sage Aficionado
 
Join Date: Sep 2007
Location: Colorado
Posts: 339
Quote:
Originally Posted by JerryB View Post
I didn't think there was much more you could do to improve the gadget but the addition of the recording schedule in v1.4 was brilliant. Thanks for the update.
I concur. Great addition. I have been wanting that addition for a while. Thanks.
__________________
Server: OS: MS WHS v1; MB: GIGABYTE GA-EP45-UD3R; CPU: Intel Q9400 2.66GHz; RAM: G.SKILL 4GB (4x1GB); HDs: 1x80GB, 7x1.5TB; Graphics: EVGA GeForce 9500 GT 512MB
Capture/Content: HD-PVR, 2xHDHRP (CC), Comcast
STBs (Controllers): RNG110 (Firewire ChCh)
Clients: 2xHD300, 2xHD200, 2xPS, Client
SageTV/Plugins: v7.1.9, SageDCT, SRE, Comm Det, Jetty, Web Server, Mob Web, PlayOn, E/D Fav, Fav Ex, MF Stop, Enc Names
Reply With Quote
  #103  
Old 05-06-2010, 06:34 AM
cncb cncb is offline
Sage Icon
 
Join Date: Jul 2006
Posts: 1,271
Thanks, I'm glad you guys like it.
__________________
-Craig
Reply With Quote
  #104  
Old 06-05-2010, 04:59 AM
sbeaulieu sbeaulieu is offline
Sage User
 
Join Date: Mar 2010
Location: Epsom, NH
Posts: 21
Sweet! Like the update. Exactly what I was looking for.
Reply With Quote
  #105  
Old 06-05-2010, 09:51 PM
cheekymonkey cheekymonkey is offline
Sage User
 
Join Date: Feb 2009
Posts: 43
very cool app, just noticed something that looks like a parsing problem

sidebar_problem.jpg

If I remove it the problem recoding, the pop-out shows all the upcoming schedules fine

the xml from the problem show is

- <sageShowInfo version="1.3">
- <channelList>
- <channel channelId="426">
<channelName>West TV</channelName>
<channelDescription>West TV</channelDescription>
<channelNetwork>West TV</channelNetwork>
<channelNumber>44</channelNumber>
</channel>
</channelList>
<favoriteList />
- <showList>
- <show epgId="DT72810171">
<title>4x4 WA</title>
<description></description>
- <airing channelId="426" duration="1440" sageDbId="6422179" startTime="2010-06-06T08:30:00.00Z">
<manualRecord />
<recordSchedule duration="1440" startTime="2010-06-06T08:30:00.00Z" />
</airing>
</show>
</showList>
</sageShowInfo>
Reply With Quote
  #106  
Old 06-06-2010, 03:51 PM
cncb cncb is offline
Sage Icon
 
Join Date: Jul 2006
Posts: 1,271
Sorry, I don't know what the problem is. The XML looks fine - it does have an empty description but it should handle that fine.
__________________
-Craig
Reply With Quote
  #107  
Old 06-06-2010, 08:00 PM
cheekymonkey cheekymonkey is offline
Sage User
 
Join Date: Feb 2009
Posts: 43
The lack of a description does indeed break it. Not knowing js but willing to have a dig I found the problem in shared.js the offending line is

sorted[count++] = { title: t != null ? t.text : "", airingId: airings[j].getAttribute("sageDbId"), channelName: channel, channelId: airings[j].getAttribute("channelId"), description: desc != null ? desc.text : "", startTime: times.startTime, stopTime: times.stopTime };

if I changed it to

sorted[count++] = { title: t != null ? t.text : "", airingId: airings[j].getAttribute("sageDbId"), channelName: channel, channelId: airings[j].getAttribute("channelId"), description: desc , startTime: times.startTime, stopTime: times.stopTime };

everything worked fine
Reply With Quote
  #108  
Old 06-06-2010, 08:29 PM
cncb cncb is offline
Sage Icon
 
Join Date: Jul 2006
Posts: 1,271
Instead of

description: desc


try

description: (desc != null && desc.text != null) ? desc.text : ""

Hopefully this will avoid the error and still give you the description in the tooltip. Let me know and I will update the file. Thanks.
__________________
-Craig
Reply With Quote
  #109  
Old 06-07-2010, 04:40 AM
cheekymonkey cheekymonkey is offline
Sage User
 
Join Date: Feb 2009
Posts: 43
Bummer same result. How about set the description to "n/a" as a default and overwrite it if a description does truely exist?

btw this channel I am having problems with is a community channel, that has just started up hence the reason why they haven't quite grasped the idea of fully populating the epg
Reply With Quote
  #110  
Old 06-07-2010, 07:00 AM
cncb cncb is offline
Sage Icon
 
Join Date: Jul 2006
Posts: 1,271
Quote:
Originally Posted by cheekymonkey View Post
Bummer same result. How about set the description to "n/a" as a default and overwrite it if a description does truely exist?
This is basically what it should be doing but it may have a problem with an empty string. Let's try this:

description: (desc != null && desc.text != null && desc.text != "") ? desc.text : "Description not available."
__________________
-Craig
Reply With Quote
  #111  
Old 06-09-2010, 01:14 AM
cheekymonkey cheekymonkey is offline
Sage User
 
Join Date: Feb 2009
Posts: 43
Still no luck, but I did some digging and found the reason. Previously I had posted the xml as presented to by by IE, I looked at the source and it seems the description is filled with 17 instances of what maybe code for spaces
& # 0 ; (spaces added to get it to post)

Note this forum stuffs up my attempt to past the actual code

I have tried pasting the same code into the check, or putting the same number of spaces in but still failed.

Sorry for the confusion.
BTW I have put a call into the station to see if they can fix up the description probs, but they are also having other probs with the guide so asked me to call back when it is back on line

Last edited by cheekymonkey; 06-09-2010 at 01:29 AM. Reason: try to get all the code to post
Reply With Quote
  #112  
Old 08-09-2010, 09:49 PM
wayner wayner is offline
SageTVaholic
 
Join Date: Jan 2008
Location: Toronto, ON
Posts: 7,491
Would there be any reason why this would not work in V7? I have both a V6 and V7 server running right now - but I can't get the Gadget to work with V7. I am sure that everything is correct and clicking on the logo does open up the web page in my browser which would seem to indicate that the server name and port are ok since if I change these the web page does not load.
__________________
New Server - Sage9 on unRAID 2xHD-PVR, HDHR for OTA
Old Server - Sage7 on Win7Pro-i660CPU with 4.6TB, HD-PVR, HDHR OTA, HVR-1850 OTA
Clients - 2xHD-300, 8xHD-200 Extenders, Client+2xPlaceshifter and a WHS which acts as a backup Sage server
Reply With Quote
  #113  
Old 08-09-2010, 09:53 PM
darcilicious's Avatar
darcilicious darcilicious is offline
Sage Icon
 
Join Date: Jul 2009
Location: Venus
Posts: 1,306
Works fine with v7 for me, no problems whatsoever.
__________________
SageTV Server 7.1.x w/Gemstone and Plex Home Theater v1.0.10 w/PlexPass
HD-PVR w/v1.5.6 drivers / Hauppauge IR blaster / FiOS Extreme HD / Motorola QIP6200 / SPDIF+720p Fixed Output
on HP Media Center 8400F (Phenom 9500 QuadCore 2.2GHz, nVidia GeForce 8500 GT)
via Olevia 247TFHD/Onyko TX-SR606/Harmony 550/HP MediaSmart EX490 WHS w/12TB
Plex Media Server v0.9.9.5 on HP Touchsmart Envy 23 d16qd
Sonos Play:3, Connect / SimpleTV v2 / Roku 2 XS+Plex / iPhone 5 / iPad 2
Reply With Quote
  #114  
Old 08-10-2010, 06:56 AM
cncb cncb is offline
Sage Icon
 
Join Date: Jul 2006
Posts: 1,271
Quote:
Originally Posted by wayner View Post
Would there be any reason why this would not work in V7? I have both a V6 and V7 server running right now - but I can't get the Gadget to work with V7. I am sure that everything is correct and clicking on the logo does open up the web page in my browser which would seem to indicate that the server name and port are ok since if I change these the web page does not load.
Make sure you don't have an old version of the web server running.
__________________
-Craig
Reply With Quote
  #115  
Old 08-10-2010, 07:18 AM
wayner wayner is offline
SageTVaholic
 
Join Date: Jan 2008
Location: Toronto, ON
Posts: 7,491
Quote:
Originally Posted by cncb View Post
Make sure you don't have an old version of the web server running.
I should be ok there since I installed it via the plugin manager for V7. I will try the gadget on a second PC tonight.
__________________
New Server - Sage9 on unRAID 2xHD-PVR, HDHR for OTA
Old Server - Sage7 on Win7Pro-i660CPU with 4.6TB, HD-PVR, HDHR OTA, HVR-1850 OTA
Clients - 2xHD-300, 8xHD-200 Extenders, Client+2xPlaceshifter and a WHS which acts as a backup Sage server
Reply With Quote
  #116  
Old 09-14-2010, 03:31 PM
wayner wayner is offline
SageTVaholic
 
Join Date: Jan 2008
Location: Toronto, ON
Posts: 7,491
I am still unable to get this to work. I am sure that I have all of the parameters correct. I have tried on two different PCs, both running Win7 and my server is Sage7.

The Gadget shows the message: "NA - Check network connection, server, and settings."

But when I go in the Jetty logs I see the request come in to the server - Here is what I see:
192.168.1.96 - wayne [14/Sep/2010:21:07:58 +0000] "GET /sage/Home?xml=currrecording HTTP/1.1" 200 1206 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; Trident/4.0; GTB6.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET CLR 1.1.4322; eMusic DLM/4; InfoPath.2; Media Center PC 5.0; SLCC1; OfficeLiveConnector.1.5; OfficeLivePatch.1.3)"

I think that I still might be having an authentication problem - how do I turn off passwords? When I tried not putting a password in the config UI in the plugin manager it didn't like not having a password.
__________________
New Server - Sage9 on unRAID 2xHD-PVR, HDHR for OTA
Old Server - Sage7 on Win7Pro-i660CPU with 4.6TB, HD-PVR, HDHR OTA, HVR-1850 OTA
Clients - 2xHD-300, 8xHD-200 Extenders, Client+2xPlaceshifter and a WHS which acts as a backup Sage server
Reply With Quote
  #117  
Old 09-14-2010, 03:38 PM
cncb cncb is offline
Sage Icon
 
Join Date: Jul 2006
Posts: 1,271
Quote:
Originally Posted by wayner View Post
I think that I still might be having an authentication problem - how do I turn off passwords? When I tried not putting a password in the config UI in the plugin manager it didn't like not having a password.
Sorry, I'm not sure. You should ask the web UI guys about that.
__________________
-Craig
Reply With Quote
  #118  
Old 09-14-2010, 04:28 PM
wayner wayner is offline
SageTVaholic
 
Join Date: Jan 2008
Location: Toronto, ON
Posts: 7,491
OK thanks. Does it matter if I do not have Sage installed on the PC using this gadget? I see that the sage.js file has variables for the Sage Install Dir, Sage EXE, Client EXE, Sage reg settings, etc. What if your PC doesn't have these other than Placeshifter, will that cause problems. The main PC that I am working on used to have Sage installed but it doesn't anymore, but there may be some remnants of Sage left.
__________________
New Server - Sage9 on unRAID 2xHD-PVR, HDHR for OTA
Old Server - Sage7 on Win7Pro-i660CPU with 4.6TB, HD-PVR, HDHR OTA, HVR-1850 OTA
Clients - 2xHD-300, 8xHD-200 Extenders, Client+2xPlaceshifter and a WHS which acts as a backup Sage server
Reply With Quote
  #119  
Old 09-14-2010, 04:35 PM
darcilicious's Avatar
darcilicious darcilicious is offline
Sage Icon
 
Join Date: Jul 2009
Location: Venus
Posts: 1,306
I use this widget on at least two PCs that don't have any SageTV software installed on them.
__________________
SageTV Server 7.1.x w/Gemstone and Plex Home Theater v1.0.10 w/PlexPass
HD-PVR w/v1.5.6 drivers / Hauppauge IR blaster / FiOS Extreme HD / Motorola QIP6200 / SPDIF+720p Fixed Output
on HP Media Center 8400F (Phenom 9500 QuadCore 2.2GHz, nVidia GeForce 8500 GT)
via Olevia 247TFHD/Onyko TX-SR606/Harmony 550/HP MediaSmart EX490 WHS w/12TB
Plex Media Server v0.9.9.5 on HP Touchsmart Envy 23 d16qd
Sonos Play:3, Connect / SimpleTV v2 / Roku 2 XS+Plex / iPhone 5 / iPad 2
Reply With Quote
  #120  
Old 09-14-2010, 07:21 PM
wayner wayner is offline
SageTVaholic
 
Join Date: Jan 2008
Location: Toronto, ON
Posts: 7,491
That's what I guessed so I can't figure out why it won't work for me. I have now tried three PCs and it is not working on any of the three. They are all running Win7. My old Sage6 server is still running and if I change my server, port and user it runs fine connecting to my Sage6 server. But for some reason nada to Sage7.
__________________
New Server - Sage9 on unRAID 2xHD-PVR, HDHR for OTA
Old Server - Sage7 on Win7Pro-i660CPU with 4.6TB, HD-PVR, HDHR OTA, HVR-1850 OTA
Clients - 2xHD-300, 8xHD-200 Extenders, Client+2xPlaceshifter and a WHS which acts as a backup Sage server
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
SageTV vs. Vista Media Center Brent General Discussion 29 05-03-2009 03:01 PM
My Sage TV 6.3 Problems and Fixes (Long) tcsubwoofer SageTV Software 12 05-08-2008 07:35 PM
Vista Issue and my Solution jobe1022 SageTV Software 2 11-21-2007 11:46 AM
Any way to view SageTV as a sidebar gadget? SAGEaustin General Discussion 6 10-17-2007 07:56 PM
SageMC - Stop button causes AWTThread Hang Mahoney SageMC Custom Interface 7 10-25-2006 12:47 AM


All times are GMT -6. The time now is 10:00 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2023, vBulletin Solutions Inc.
Copyright 2003-2005 SageTV, LLC. All rights reserved.