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
  #261  
Old 03-08-2007, 11:15 AM
lambda379 lambda379 is offline
Sage User
 
Join Date: Aug 2005
Posts: 24
Quote:
Originally Posted by nielm
Are you sure that you do not have a xerces.jar (or another jar that may include it) in your classpath because that is exactly the error I got before I removed it
xerces.jar could be either in
Program Files\SageTV\SageTV\JARS
Program Files\SageTV\SageTV
Program Files\Java\JRE_x_y_z\lib\ext
My bad, I guess I should just do as instructed! I had just renamed xerces.jar and kept the renamed file in the same ...\lib\ext directory. As soon as I deleted the file completely everything worked perfectly. Sorry for the trouble.
Reply With Quote
  #262  
Old 03-08-2007, 01:16 PM
nielm's Avatar
nielm nielm is offline
SageTVaholic
 
Join Date: Oct 2003
Location: Belgium
Posts: 4,496
__________________
Check out my enhancements for Sage in the Sage Customisations and Sageplugins Wiki
Reply With Quote
  #263  
Old 03-10-2007, 08:52 AM
arielshu arielshu is offline
Sage User
 
Join Date: Mar 2005
Posts: 33
hmm... I really, really looked hard for xerces.jar and renamed all the ones I found, even rebooted but I still get the exact same error... anything else I can do?
Reply With Quote
  #264  
Old 03-10-2007, 10:45 AM
owilsky's Avatar
owilsky owilsky is offline
Sage Aficionado
 
Join Date: Dec 2004
Location: Germany
Posts: 447
Quote:
Originally Posted by arielshu View Post
hmm... I really, really looked hard for xerces.jar and renamed all the ones I found, even rebooted but I still get the exact same error... anything else I can do?
Renaming does NOT help, you really have to delete it (or move it away).

Oliver
__________________
Oliver Kötter
------------
Check this thread for importing German TV Data into SageTV

Using SageTV 7.1.9, Java 1.6.0_24 Win7 Home Premium on an
Asus M4N78-AM Mainboard, AMD Athlon II X2 215, 4 GB RAM, 500 GB HDD, 2xTechnoTrend S-2400 as Network Encoder (LM DVB Smart Recorder), ATI Radeon HD 3450 with analog TV-Out on good old CRT TV (100Hz)
My avatar shows the world's best composer!!!
Reply With Quote
  #265  
Old 03-17-2007, 03:42 AM
cumak cumak is offline
Sage User
 
Join Date: Jun 2005
Posts: 42
I'm running SageTV Client v5, and I can't seem to get any version of this STVI more recent than 5.2 to install properly. I've tried to upgrade by simply extracting the new ZIP files, and I've also tried reverting back to my original STV and re-importing. Any idea what I'm doing wrong?

Thanks in advance.
Reply With Quote
  #266  
Old 03-17-2007, 04:25 AM
nielm's Avatar
nielm nielm is offline
SageTVaholic
 
Join Date: Oct 2003
Location: Belgium
Posts: 4,496
5.6 is the latest version that should run with V5.
V6.1 will not.

You need to both unpack and re-import into the original STV to re-install..

Can you explain what problems you were you having?
__________________
Check out my enhancements for Sage in the Sage Customisations and Sageplugins Wiki
Reply With Quote
  #267  
Old 03-17-2007, 08:25 AM
cumak cumak is offline
Sage User
 
Join Date: Jun 2005
Posts: 42
nielm,

Thanks for your reply. I swear, I did exactly that (unpack, revert to original STV, and re-import) several times, but for some reason it decided to work this time.

The first time I reloaded SageTV I got a "Failed to load..." message pertaining to the default menu file, but I saw in an earlier post that I had to delete the net/sf subdirectory. Now everything looks good.

Thanks again.
Reply With Quote
  #268  
Old 03-18-2007, 05:39 AM
rickgillyon's Avatar
rickgillyon rickgillyon is offline
Sage Icon
 
Join Date: Sep 2005
Location: Whitley Bay, England
Posts: 1,950
I've been trying to add the Picture Slideshow to the menu using this plugin. I've created new menu items using internal screens, using first the "Picture Slideshow" and then the "Screensaver" with the screensaver set to slideshow with a long timeout. In either case calling from the dynamic menu gives me a black screen. It thinks I'm in the slideshow because if I click I get the slideshow buttons, but I don't see any pictures. However, if I get the screensaver to kick in normally or call the slideshow from the photo browser, it works fine.

Any ideas?

Great plugin BTW, helps me control what the kids can access and makes it easier for them to find what they need...
__________________
unRAID Server: Intel Core i5 7600K, 48GB DDR4, 2x512GB PCIe M.2 Cache Pool, 2x10TB SATA3 Parity Drive, 3x8TB SATA Array, 1x hdHomeRun DVB-T2 Quattro, IPTV via xTeVe, unRAID 6.8.3, tvHeadEnd for recording back end, Emby
Clients: 3 Nvidia Shields, 3 FireTV, 3 Win10 Pro PC Clients
Reply With Quote
  #269  
Old 03-18-2007, 08:30 AM
nielm's Avatar
nielm nielm is offline
SageTVaholic
 
Join Date: Oct 2003
Location: Belgium
Posts: 4,496
when calling the slideshow from the photo browser, Sage passes a list of picture files, so you need to create a menu item that passes the same list...

Like this one (remove 2 of the 3 sort expressions to set the sorting criteria)

Code:
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE sageMenu PUBLIC "-//NIELM//DTD SAGEMENU XML 1.4//EN" "http://www.sage-community.org/~nielm/nielm_modules/dynamic_menu/sagemenu_1_3.dtd">
<sageMenu version="1.4">
    <internalScreenMenuItem screen="Picture Slideshow" title="Photo Slideshow">
        <evalExpression>AddStaticContext("SlideshowImages",  FilterByBoolMethod(GetMediaFiles(), "IsPictureFile", true))</evalExpression>

<!-- Remove 2 of the 3 following Sorting expressions -->

<!-- Sort by date  -->        
        <evalExpression>SlideshowImages = Sort(SlideshowImages, !GetProperty("photo_lib/sort_ascending", true), "GetAiringStartTime")</evalExpression>
<!-- Sort by filename -->
        <evalExpression>SlideshowImages = SortLexical(SlideshowImages, !GetProperty("photo_lib/sort_ascending", true), "GetShowEpisode")

<!-- Random sort -->
        <evalExpression>java_util_Collections_shuffle(java_util_Arrays_asList(SlideshowImages))</evalExpression>

</internalScreenMenuItem>
</sageMenu>
calling the slideshow window should work... I have no idea why it doesn't...
__________________
Check out my enhancements for Sage in the Sage Customisations and Sageplugins Wiki

Last edited by nielm; 03-18-2007 at 09:14 AM.
Reply With Quote
  #270  
Old 03-18-2007, 08:59 AM
rickgillyon's Avatar
rickgillyon rickgillyon is offline
Sage Icon
 
Join Date: Sep 2005
Location: Whitley Bay, England
Posts: 1,950
That worked perfectly, thanks!
__________________
unRAID Server: Intel Core i5 7600K, 48GB DDR4, 2x512GB PCIe M.2 Cache Pool, 2x10TB SATA3 Parity Drive, 3x8TB SATA Array, 1x hdHomeRun DVB-T2 Quattro, IPTV via xTeVe, unRAID 6.8.3, tvHeadEnd for recording back end, Emby
Clients: 3 Nvidia Shields, 3 FireTV, 3 Win10 Pro PC Clients
Reply With Quote
  #271  
Old 03-18-2007, 09:18 AM
nielm's Avatar
nielm nielm is offline
SageTVaholic
 
Join Date: Oct 2003
Location: Belgium
Posts: 4,496
just re-edited it to add a Random Sort (in case you missed it!)
__________________
Check out my enhancements for Sage in the Sage Customisations and Sageplugins Wiki
Reply With Quote
  #272  
Old 03-18-2007, 08:30 PM
joe123 joe123 is offline
Sage Fanatic
 
Join Date: Jan 2006
Posts: 954
I have the latest SageTV version and Online videos enabled.

I am able to see Google Video, but no YouTube videos. What do I need to do to enabled YouTube?

I am using Neiml menus and did not see any YouTube reference to add.
Reply With Quote
  #273  
Old 03-19-2007, 02:15 AM
nielm's Avatar
nielm nielm is offline
SageTVaholic
 
Join Date: Oct 2003
Location: Belgium
Posts: 4,496
see post 256 on previous page.
__________________
Check out my enhancements for Sage in the Sage Customisations and Sageplugins Wiki
Reply With Quote
  #274  
Old 03-20-2007, 12:54 PM
Deadbolt's Avatar
Deadbolt Deadbolt is offline
Sage Expert
 
Join Date: Nov 2003
Posts: 687
Quote:
Originally Posted by nielm View Post
see post 256 on previous page.
When I add the piece for Youtube as described I get an error "Unknown Internal Screen: Online Video Shortcut"

Any ideas?

Thanks for the great import!
Reply With Quote
  #275  
Old 03-20-2007, 01:24 PM
lotusvball's Avatar
lotusvball lotusvball is offline
Sage Aficionado
 
Join Date: Dec 2003
Location: PA
Posts: 482
I have also been unable to get the "Online Services" menu option to work. I get it to show but when you try to select it nothing.
__________________
Intel Core Duo 2.5mhz, 2gb RAM
Windows Home Server, Sage 7 beta
2 Hauppauge PVR-250, 1 PVR-500 MCE
1 HDHomeRun
4TB Storage, GB Network
2 MVPs, 1 HD100 & 1 HD300
Reply With Quote
  #276  
Old 03-20-2007, 01:31 PM
bcjenkins bcjenkins is offline
SageTVaholic
 
Join Date: Jan 2006
Posts: 3,764
Quote:
Originally Posted by Deadbolt View Post
When I add the piece for Youtube as described I get an error "Unknown Internal Screen: Online Video Shortcut"

Any ideas?

Thanks for the great import!
What version of Sage are you running? STV?
Reply With Quote
  #277  
Old 03-20-2007, 02:03 PM
nielm's Avatar
nielm nielm is offline
SageTVaholic
 
Join Date: Oct 2003
Location: Belgium
Posts: 4,496
Quote:
Originally Posted by Deadbolt View Post
When I add the piece for Youtube as described I get an error "Unknown Internal Screen: Online Video Shortcut"

Any ideas?
Use dynamic menus v6.1, which also requires Sage v6.1...

lotusvball: I don't understand what you are saying? You cannot get the online services menu (with weather, google, youtube) to display, or it displays but none of those menu items work (and do they report any errors)
__________________
Check out my enhancements for Sage in the Sage Customisations and Sageplugins Wiki
Reply With Quote
  #278  
Old 03-20-2007, 04:13 PM
lotusvball's Avatar
lotusvball lotusvball is offline
Sage Aficionado
 
Join Date: Dec 2003
Location: PA
Posts: 482
I am using the newest Sage RC. I can setup a menu item "Online Services" but when I try to select it from the menu screen (after setup and save) it does nothing. It doesn't take me to the Online services menu.
__________________
Intel Core Duo 2.5mhz, 2gb RAM
Windows Home Server, Sage 7 beta
2 Hauppauge PVR-250, 1 PVR-500 MCE
1 HDHomeRun
4TB Storage, GB Network
2 MVPs, 1 HD100 & 1 HD300
Reply With Quote
  #279  
Old 03-21-2007, 06:22 AM
nielm's Avatar
nielm nielm is offline
SageTVaholic
 
Join Date: Oct 2003
Location: Belgium
Posts: 4,496
Quote:
Originally Posted by lotusvball View Post
I am using the newest Sage RC. I can setup a menu item "Online Services" but when I try to select it from the menu screen (after setup and save) it does nothing. It doesn't take me to the Online services menu.
Gotcha. The original menus in Sage (eg online services, library, setup, schedule, search etc) are actually disabled in the dynamic menu plugin (because it causes menu navigation issues). What you need to is to duplicate the online services menu in the dynamic menus... Or just copy the online servcies menu item (with it's submeu and submenu items) from the 6.1 default menu.xml by...
  • load the default_menus_6_1.xml
  • highlight the Online services menu item and either right-click it, or hit Options
  • Edit Menu Item - Copy to clipboard
  • re-load your own menu.xml
  • right-click/options
  • Edit Menu Item - paste from clipboard
  • move it up and down to taste
  • Save
__________________
Check out my enhancements for Sage in the Sage Customisations and Sageplugins Wiki
Reply With Quote
  #280  
Old 03-21-2007, 07:35 AM
lotusvball's Avatar
lotusvball lotusvball is offline
Sage Aficionado
 
Join Date: Dec 2003
Location: PA
Posts: 482
Thanks, Makes total sense. I will give it a try tonight. BTW, this is one of the best plugins for SageTV. And everyone that says the navigation in sage sucks hasn't tried this plugin yet. I set up sage the way I want.
__________________
Intel Core Duo 2.5mhz, 2gb RAM
Windows Home Server, Sage 7 beta
2 Hauppauge PVR-250, 1 PVR-500 MCE
1 HDHomeRun
4TB Storage, GB Network
2 MVPs, 1 HD100 & 1 HD300
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
AWTThread Hang Detected - Problem getting out of hand! MTuckman SageTV Beta Test Software 11 01-04-2007 04:58 PM
STV: Cayars17 Ultimate STV (Release 17 - Jan 18) Cayars SageTV Customizations 3664 12-13-2005 05:35 PM
STV: nielm combo STV (v1.8 Oct 19) nielm SageTV Customizations 555 12-15-2004 09:07 AM
STV: MlbDude2 1.8.7 - July 5 mlbdude SageTV Customizations 583 11-08-2004 04:18 PM


All times are GMT -6. The time now is 09:53 AM.


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