TiVo Community
TiVo Community
TiVo Community
Go Back   TiVo Community > Forum Extras > Forum Operations Center
TiVo Community
Reply
Forum Jump
 
Thread Tools
Old 11-06-2009, 04:26 PM   #31
betts4
WIFOM
 
betts4's Avatar
 
Join Date: Dec 2005
Location: A Galaxy far, far away....
Posts: 11,193
TC CLUB MEMBER
Quote:
Originally Posted by steve614 View Post
Spoiler:
OMG! I never expected this to happen so soon.


Thanks for the timely addition.
Spoiler:
Just testing this
__________________
CANCER SUCKS!
I agree with Betts. angbear1985


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
betts4 is offline   Reply With Quote
Old 11-06-2009, 04:26 PM   #32
betts4
WIFOM
 
betts4's Avatar
 
Join Date: Dec 2005
Location: A Galaxy far, far away....
Posts: 11,193
TC CLUB MEMBER
Quote:
Originally Posted by betts4 View Post
Spoiler:
Just testing this
Very cool!

Thank you!!!
__________________
CANCER SUCKS!
I agree with Betts. angbear1985


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
betts4 is offline   Reply With Quote
Old 11-06-2009, 04:29 PM   #33
Peter Redmer
Administrator
 
Peter Redmer's Avatar
 
Join Date: Jan 2008
Posts: 157
Spoiler:
Ok, the button in Quick Reply seems to be working. Can everyone test this out and let me know if it is working for you?

Pete
__________________
Peter Redmer
Administrator, Capable Networks

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Peter Redmer is offline   Reply With Quote
Old 11-06-2009, 05:00 PM   #34
steve614
what ru lookin at?
 
steve614's Avatar
 
Join Date: May 2006
Location: Dallas, TX
Posts: 3,817
Spoiler:
Test underway

We'll see if it works.


Spoiler:
Peter's earning his paycheck today!


It works for me.

Spoiler:
Nice job!
__________________
The Man Prayer: I'm a man ...... I can change ...... If I have to ...... I guess.
steve614 is offline   Reply With Quote
Old 11-06-2009, 05:09 PM   #35
Peter Redmer
Administrator
 
Peter Redmer's Avatar
 
Join Date: Jan 2008
Posts: 157
Spoiler:
I earn my paychecks every day
__________________
Peter Redmer
Administrator, Capable Networks

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Peter Redmer is offline   Reply With Quote
Old 11-06-2009, 05:15 PM   #36
Einselen
ɹǝsn pǝɹǝʇsıƃǝɹ
 
Einselen's Avatar
 
Join Date: Apr 2006
Posts: 9,324
Interesting new way to view spoilers? Does this change the way spoilers are handled in the e-mail notifications (not that I care, just wondering)?
__________________
Creator of
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
and
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


S2 80 HR - 3 Yr Prepaid
S2 526 HR - Lifetime

XBL Gamertag - UnseenThought
Einselen is offline   Reply With Quote
Old 11-06-2009, 05:45 PM   #37
Robin
Registered User
 
Robin's Avatar
 
Join Date: Dec 2001
Posts: 6,214
Peter, you rock! Thanks!
Robin is offline   Reply With Quote
Old 11-06-2009, 06:59 PM   #38
sushikitten
Exhausted mama
 
sushikitten's Avatar
 
Join Date: Jan 2005
Posts: 19,419
TC CLUB MEMBER
Today is a great day.
__________________
Do you shop at Amazon? Please help a new momma
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
You know you need the good karma!

No codes to use, nothing special to do---just click the link and shop as normal!
sushikitten is offline   Reply With Quote
Old 11-06-2009, 06:59 PM   #39
sushikitten
Exhausted mama
 
sushikitten's Avatar
 
Join Date: Jan 2005
Posts: 19,419
TC CLUB MEMBER
Spoiler:
Oops, and then I didn't even use the new function!


__________________
Do you shop at Amazon? Please help a new momma
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
You know you need the good karma!

No codes to use, nothing special to do---just click the link and shop as normal!
sushikitten is offline   Reply With Quote
Old 11-06-2009, 07:13 PM   #40
BitbyBlit
.
 
Join Date: Aug 2001
Posts: 1,552
Thanks Peter. I like this much better than highlighting.

If adding a script block somewhere on the page is not a big deal, I think it would also be nice to have a button to show and hide all spoilers at once.

Here's a script block that will allow that to happen:

Code:
<script type="text/javascript">  
  function ShowSpoiler(spoiler)
  {
    spoiler.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = '';
    
    var buttons = spoiler.getElementsByTagName('input');
    var showHideButton = buttons[0];
    var showHideAllButton = buttons[1];
        
    showHideButton.value = 'Hide';    
    showHideAllButton.value = 'Hide All';
  }

  function HideSpoiler(spoiler)
  {
    spoiler.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none';
    
    var buttons = spoiler.getElementsByTagName('input');
    var showHideButton = buttons[0];
    var showHideAllButton = buttons[1];
        
    showHideButton.value = 'Show';    
    showHideAllButton.value = 'Show All';    
  }

  function ToggleSpoiler(spoiler)
  {
    if (spoiler.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '')
      ShowSpoiler(spoiler);
    else
      HideSpoiler(spoiler);
  }

  function DoForAllSpoilers(node, action)
  {    
    if (node.name == "spoiler")
    {
      action(node);
      return;
    }
    
    var childNodes = node.childNodes;
    var length = childNodes.length;
    
    for (var i = 0; i < length; ++i)
    {      
      DoForAllSpoilers(childNodes[i], action);
    }
  }

  function ToggleAllSpoilers(showHideAllButton)
  {
    if (showHideAllButton.value == 'Show All')
      DoForAllSpoilers(document.body, ShowSpoiler);
    else
      DoForAllSpoilers(document.body, HideSpoiler);    
  }
</script>
And then you just need to update the template for spoilers to have the following:
Code:
<div name="spoiler" style="margin:20px; margin-top:5px">
<div class="smallfont" style="margin-bottom:2px">Spoiler: <input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="ToggleSpoiler(this.parentNode.parentNode)"></input> <input type="button" value="Show All" style="width:55px;font-size:10px;margin:0px;padding:0px;" onClick="ToggleAllSpoilers(this)"></div>
<div class="alt2" style="margin: 0px; padding: 6px; border: 1px inset;">
<div style="display: none;">
{Spoiler Text}
</div>
</div>
</div></div>
__________________
...there's a fine line between committing a felony and doing something really super cool. Sock, Reaper
BitbyBlit is offline   Reply With Quote
Old 11-06-2009, 08:35 PM   #41
DavidTigerFan
Transporter Accident
 
DavidTigerFan's Avatar
 
Join Date: Aug 2001
Location: Charleston, SC
Posts: 4,464
Spoiler:
Wooo hoo!
__________________
The invasion is complete. :D

Xbox Live: DTigerFan
DavidTigerFan is offline   Reply With Quote
Old 11-06-2009, 11:16 PM   #42
TIVO_GUY_HERE
I miss the ocean
 
TIVO_GUY_HERE's Avatar
 
Join Date: Jul 2000
Location: Dallas Texas
Posts: 3,558
me likes....
TIVO_GUY_HERE is offline   Reply With Quote
Old 11-07-2009, 04:37 PM   #43
Test
Register User
 
Join Date: Dec 2004
Posts: 1,749
Very cool, now I can read spoilers from my iPhone
__________________
.
Test is offline   Reply With Quote
Old 11-09-2009, 12:54 PM   #44
alpacaboy
Registered User
 
Join Date: Oct 2004
Posts: 1,588
Quote:
Originally Posted by BitbyBlit View Post
Thanks Peter. I like this much better than highlighting.

If adding a script block somewhere on the page is not a big deal, I think it would also be nice to have a button to show and hide all spoilers at once.

Here's a script block that will allow that to happen:
I'd love to see that as well. I'd go one farther and say I wish there was a user preference for spoiler display. That is a way to just say: Indicate what others consider a spoiler so I know what I need to spoilerize, but for me, just expand it so i don't have to hit any buttons, highlight, etc.
__________________
Save the cheerleader. Save the world. -"Heroes" ad on NBC
Screw the cheerleader. Destroy the world. -chalkboard on "My Name is Earl"
alpacaboy is offline   Reply With Quote
Old 11-09-2009, 01:01 PM   #45
Rob Helmerichs
I am Groot!
 
Rob Helmerichs's Avatar
 
Join Date: Oct 2000
Location: Minneapolis
Posts: 17,321
Quote:
Originally Posted by alpacaboy View Post
I'd love to see that as well. I'd go one farther and say I wish there was a user preference for spoiler display. That is a way to just say: Indicate what others consider a spoiler so I know what I need to spoilerize, but for me, just expand it so i don't have to hit any buttons, highlight, etc.
Better yet, write an artificial intelligence that will analyze the spoilers and break them down into categories..."next week" spoiler, casting spoilers, news about future episodes, etc. Then, we can select what kinds of things we want to remain tagged and which ones can just be out in the open.

That would be handy.
__________________
"The EMF is going nuts."—Not Sam. Then Sam.
Rob Helmerichs is offline   Reply With Quote
Old 11-14-2009, 12:54 PM   #46
ellinj
Registered User
 
ellinj's Avatar
 
Join Date: Feb 2002
Location: Warwick, RI
Posts: 8,686
Spoiler:
cool
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
ellinj is offline   Reply With Quote
Old 11-17-2009, 08:31 PM   #47
Sherminator
ɹǝs∩ pǝɹǝʇsıƃǝᴚ
 
Sherminator's Avatar
 
Join Date: Nov 2004
Location: Lafayette, IN
Posts: 3,990
Spoiler:
Can we have a quick spoiler tag button in the quick edit box also?


Thank you.
__________________
I am Sherminator, killer of threads

Last edited by Sherminator : 11-18-2009 at 04:01 PM.
Sherminator is offline   Reply With Quote
Old 11-17-2009, 09:06 PM   #48
Fofer
Potato CSR
 
Join Date: Oct 2000
Posts: 32,951
Quote:
Originally Posted by Sherminator View Post
Can we have a quick spoiler tag button in the quick edit box also?

Thank you.
Not a bad idea... hopefully our window of opportunity hasn't closed, the Powers That Be remained interested in continued improvements!

Here's instructions for an admin to add buttons to the QuickEdit template:
http://www.vbulletin.org/forum/showthread.php?t=102282

It'd be much appreciated...
Fofer is offline   Reply With Quote
Old 11-18-2009, 03:28 PM   #49
Peter Redmer
Administrator
 
Peter Redmer's Avatar
 
Join Date: Jan 2008
Posts: 157
Quote:
Originally Posted by Fofer View Post
Not a bad idea... hopefully our window of opportunity hasn't closed, the Powers That Be remained interested in continued improvements!

Here's instructions for an admin to add buttons to the QuickEdit template:
http://www.vbulletin.org/forum/showthread.php?t=102282

It'd be much appreciated...
Done It seems to work for me. Let me know if you have any trouble.
__________________
Peter Redmer
Administrator, Capable Networks

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Peter Redmer is offline   Reply With Quote
Old 11-18-2009, 03:34 PM   #50
sushikitten
Exhausted mama
 
sushikitten's Avatar
 
Join Date: Jan 2005
Posts: 19,419
TC CLUB MEMBER
This might be somewhat related...or not... but there is no quote button in the Quick Reply box and I thought there used to be. But it could be my bad memory...
__________________
Do you shop at Amazon? Please help a new momma
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
You know you need the good karma!

No codes to use, nothing special to do---just click the link and shop as normal!
sushikitten is offline   Reply With Quote
Old 11-18-2009, 03:37 PM   #51
Fofer
Potato CSR
 
Join Date: Oct 2000
Posts: 32,951
Awesome, thanks!

Spoiler:
Really!
Fofer is offline   Reply With Quote
Reply
Forum Jump




Thread Tools


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

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

Advertisements

TiVo Community
Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
vBulletin Skins by: Relivo Media
(C) 2008 Capable Networks LLC - All Rights Reserved. No information may be posted elsewhere without written permission.
TiVo® is a registered trademark of TiVo Inc. This site is not owned or operated by TiVo Inc.
All times are GMT -5. The time now is 02:54 AM.
OUR NETWORK: TechLore | Sling Community | Robo Community | MediaSmart Home | My Digital Entertainer | TouchSmart Community | Pogoplugged | DVR Playground