Go Back  DVD Talk Forum > Feedback > Forum Feedback and Support
Reload this Page >

Software feature request

Forum Feedback and Support Post forum feedback and related problems, here.

Software feature request

Old 08-20-03, 12:54 PM
  #1  
DVD Talk Hero
Thread Starter
 
Join Date: Nov 1999
Posts: 36,983
Likes: 0
Received 1 Like on 1 Post
Software feature request

I guess this should be addressed to whoever makes the vbforum software but i'm sure you can pass it along.

I love the quick reply...its quick. But if you want to quote someone, you either have to click the link and wait for the page to load or manually quote them. the quote button should be a script thing where when you click it, it auto puts the quote stuff in the quick reply box in the bottom. that would save you a lot of bandwidth. do you see what i mean or am i not clear?


also, the smilies link should be somewhere near the quick reply box as well.
Old 08-20-03, 01:03 PM
  #2  
DVD Talk Legend
 
Join Date: Oct 1999
Location: Plano, TX
Posts: 23,225
Likes: 0
Received 1 Like on 1 Post
Great idea.. I use the quick reply unless I need to quote someone.

The only problem is that would DOUBLE the size of every topic page as there would have to be a script with the entire text plus quote tags for every post.
Old 08-20-03, 01:39 PM
  #3  
DVD Talk Hero
Thread Starter
 
Join Date: Nov 1999
Posts: 36,983
Likes: 0
Received 1 Like on 1 Post
couldn't you simply write a script so that when the quote button is pushed it extracts the text of the post with that id and puts it in the quick reply box? I haven't done any php scripting, but it seems possible
Old 08-20-03, 01:47 PM
  #4  
DVD Talk Reviewer/ Admin
 
Adam Tyner's Avatar
 
Join Date: Sep 1999
Location: Greenville, South Cackalack
Posts: 28,741
Received 1,856 Likes on 1,227 Posts
PHP is parsed on the server side. For an application like this, it would have to be done on the client side, so you'd need Javascript or something similar. For the page to be accessible for users who have scripting disabled, you'd have to have two copies of each post -- one rendered in HTML, the other existing in a Javascript array (or something similar). That would greatly increase the size of each page.
Old 08-20-03, 01:53 PM
  #5  
DVD Talk Hero
Thread Starter
 
Join Date: Nov 1999
Posts: 36,983
Likes: 0
Received 1 Like on 1 Post
yeah, forgot about the server side thing. couldnt you make a php script that checked if the user used javascript or not and generate a page depending on that, so the size would be the same? the php script might be a little slower but I dont know..
Old 08-20-03, 02:00 PM
  #6  
DVD Talk Reviewer/ Admin
 
Adam Tyner's Avatar
 
Join Date: Sep 1999
Location: Greenville, South Cackalack
Posts: 28,741
Received 1,856 Likes on 1,227 Posts
It might be possible, but that's a pretty monstrous task, involving a near-total rewrite of the way pages are rendered, unfortunately. That's the type of thing I'd leave up to the guys at vBulletin. I personally don't know off the top of my head how to remotely determine if a user has Javascript enabled or not. I'd rather wait 6-7 seconds for the page to load than spend several days miring through all that code.
Old 08-20-03, 02:12 PM
  #7  
Moderator
 
Groucho's Avatar
 
Join Date: Mar 2000
Location: Salt Lake City, Utah
Posts: 71,383
Received 122 Likes on 84 Posts
Those of with a premium membership already enjoy this feature. Sign up already!
Old 08-20-03, 02:44 PM
  #8  
DVD Talk Legend
 
Join Date: Oct 1999
Location: Plano, TX
Posts: 23,225
Likes: 0
Received 1 Like on 1 Post
It's easily possible yes.. however it would not save any bandwidth and would cause regular topics to take twice as long to load, as eash post would need to be in the HTML twice (once to appear on scree, and once as part of the script).

Hmm.. come to think of it.. there MAY be another way. If each post were assigned a name.. hmm.. it could look something like:

Code:
{div name=post01}Pan and Scam sucks, no inserts, bitch moan complain!{/div}
Then there could be a quick-quote button next to the quote button and it could do a js something like:

Code:
document.quickreply.value=document.post01.value
Since the main forum is in PHP naming each post something like post01 post02, etc would be quite easy.. espically since there are only 25 posts per static page.

Just some random brainstorming thoughts..
Old 08-20-03, 02:56 PM
  #9  
DVD Talk Hero
 
das Monkey's Avatar
 
Join Date: May 1999
Location: Atlanta, GA
Posts: 35,879
Likes: 0
Received 1 Like on 1 Post
That's pretty much what I was thinking too:

<hr>

<div id="venusiansanidiot">This is my post.

It has multiple lines.</div>

<textarea id="imjustkiddingbutnotreally" rows="5" cols="50"></textarea>
<a onClick="imjustkiddingbutnotreally.value = '-quote-' + venusiansanidiot.innerHTML.replace(/<BR>/g,'\n') + '-/quote-';" ***********="this.style.cursor = 'hand';">Click to Quote my above post</a>

das

P.S. It becomes infinitely easier if you're doing it from the master and not trying to demo it from within a post.

Last edited by das Monkey; 08-20-03 at 03:11 PM.
Old 08-20-03, 03:01 PM
  #10  
DVD Talk Hero
Thread Starter
 
Join Date: Nov 1999
Posts: 36,983
Likes: 0
Received 1 Like on 1 Post
Originally posted by das Monkey
That's pretty much what I was thinking too:

<hr>

<div id="test">This is my post.

It has multiple lines.</div>

<textarea id="text" rows="5" cols="50"></textarea>
<a onClick="text.value = '-quote-' + test.innerHTML.replace(/<BR>/g,'\n') + '-/quote-';" ***********="this.style.cursor = 'hand';">Click to Quote my above post</a>

das

P.S. It becomes infinitely easier if you're doing it from the master and not trying to demo it from within a post.
wow. not just a couch potato
Old 08-20-03, 03:04 PM
  #11  
DVD Talk Hero
 
das Monkey's Avatar
 
Join Date: May 1999
Location: Atlanta, GA
Posts: 35,879
Likes: 0
Received 1 Like on 1 Post
It's not going to work now that you've quoted it and reused my id names.

Anyway, you'd have to tweak it for cross-browser (I didn't test it past IE), but it really wouldn't be hard. Just id all the posts (which if it isn't already done, should be anyway), write a conversion function (so you don't have to double the data), and add a button.

das

<i>Edit: Fine, I'll change my names. It works again.</i>

Last edited by das Monkey; 08-20-03 at 03:12 PM.
Old 08-20-03, 03:18 PM
  #12  
DVD Talk Legend
 
Join Date: Oct 1999
Location: Plano, TX
Posts: 23,225
Likes: 0
Received 1 Like on 1 Post
Here's a quick example of how this COULD work and without doubling up the file size.

http://pixyjunket.digitalcrap.net/test.html
Old 08-20-03, 03:22 PM
  #13  
DVD Talk Hero
 
das Monkey's Avatar
 
Join Date: May 1999
Location: Atlanta, GA
Posts: 35,879
Likes: 0
Received 1 Like on 1 Post
<BLOCKQUOTE> • Quoth PixyJunket •<HR SIZE=1>Here's a quick example of how this COULD work and without doubling up the file size.

http://pixyjunket.digitalcrap.net/test.html
<HR SIZE=1></BLOCKQUOTE>

vB parses text and replaces cr/lfs with brs and smilies with imgs (among other things), so you'll also need a translation function. I can't demonstrate that from within a post for that very reason, but I used an inline regexp replace to give an idea of how it would work.

das
Old 08-20-03, 03:23 PM
  #14  
Moderator
 
Groucho's Avatar
 
Join Date: Mar 2000
Location: Salt Lake City, Utah
Posts: 71,383
Received 122 Likes on 84 Posts
Hey, Pixy, that button at the bottom of your page didn't work as expected.
Old 08-20-03, 03:27 PM
  #15  
DVD Talk Hero
 
das Monkey's Avatar
 
Join Date: May 1999
Location: Atlanta, GA
Posts: 35,879
Likes: 0
Received 1 Like on 1 Post
<BLOCKQUOTE> • Quoth Groucho •<HR SIZE=1>Hey, Pixy, that button at the bottom of your page didn't work as expected. <HR SIZE=1></BLOCKQUOTE>

You may need updated drivers. Try here:

http://www.onzin.nl/fufme/index.shtml.htm

das
Old 08-21-03, 12:59 PM
  #16  
DVD Talk Hall of Fame
 
Join Date: Jan 2000
Location: US
Posts: 9,631
Likes: 0
Received 1 Like on 1 Post
Personal Attack in that post!!

Dave
Originally posted by das Monkey
That's pretty much what I was thinking too:

<hr>

<div id="venusiansanidiot2">This is my post.

It has multiple lines.</div>

<textarea id="imjustkiddingbutnotreally2" rows="5" cols="50"></textarea>
<a onClick="imjustkiddingbutnotreally2.value = '-quote-' + venusiansanidiot2.innerHTML.replace(/<BR>/g,'\n') + '-/quote-';" ***********="this.style.cursor = 'hand';">Click to Quote my above post</a>

das

P.S. It becomes infinitely easier if you're doing it from the master and not trying to demo it from within a post.
Old 08-21-03, 01:29 PM
  #17  
DVD Talk Legend
 
Join Date: Oct 1999
Location: Plano, TX
Posts: 23,225
Likes: 0
Received 1 Like on 1 Post
Originally posted by das Monkey
<BLOCKQUOTE> • Quoth PixyJunket •<HR SIZE=1>Here's a quick example of how this COULD work and without doubling up the file size.

http://pixyjunket.digitalcrap.net/test.html
<HR SIZE=1></BLOCKQUOTE>

vB parses text and replaces cr/lfs with brs and smilies with imgs (among other things), so you'll also need a translation function. I can't demonstrate that from within a post for that very reason, but I used an inline regexp replace to give an idea of how it would work.

das
Yeah.. depending on just how many smilies are being used on the forum that alone could add extra size to any page.. plus, you'd have to do something to remove quotes before quoting or else you end up with double-triple quoted stuff like above.
Old 08-21-03, 03:35 PM
  #18  
DVD Talk Hero
 
das Monkey's Avatar
 
Join Date: May 1999
Location: Atlanta, GA
Posts: 35,879
Likes: 0
Received 1 Like on 1 Post
<BLOCKQUOTE> • Quoth Dave99 •<HR SIZE=1>Personal Attack in that post!!

Dave
<HR SIZE=1></BLOCKQUOTE>

Good catch!

das
Old 08-21-03, 06:34 PM
  #19  
DVD Talk God
 
twikoff's Avatar
 
Join Date: Feb 2000
Location: Right Behind You!!!
Posts: 79,513
Received 14 Likes on 8 Posts
pretty cool
now, can you make allow for multiple quotes into the quick reply?
Old 08-22-03, 10:00 AM
  #20  
DVD Talk Hero
Thread Starter
 
Join Date: Nov 1999
Posts: 36,983
Likes: 0
Received 1 Like on 1 Post
so any word from the higher ups?
Old 08-22-03, 10:09 AM
  #21  
DVD Talk Reviewer/ Admin
 
Adam Tyner's Avatar
 
Join Date: Sep 1999
Location: Greenville, South Cackalack
Posts: 28,741
Received 1,856 Likes on 1,227 Posts
Originally posted by Venusian
so any word from the higher ups?
You'll either need to contact vBulletin, or someone here would need to write a hack for the software.
Old 08-22-03, 11:50 AM
  #22  
DVD Talk Hero
Thread Starter
 
Join Date: Nov 1999
Posts: 36,983
Likes: 0
Received 1 Like on 1 Post
what about the link to smilies in quick reply?


or better yet, clickable smilies
Old 08-22-03, 11:50 AM
  #23  
DVD Talk Hero
Thread Starter
 
Join Date: Nov 1999
Posts: 36,983
Likes: 0
Received 1 Like on 1 Post
...and i think vBulletin would be a lot more receptive to suggestions from a client than from an end user
Old 08-22-03, 12:30 PM
  #24  
DVD Talk Reviewer/ Admin
 
Adam Tyner's Avatar
 
Join Date: Sep 1999
Location: Greenville, South Cackalack
Posts: 28,741
Received 1,856 Likes on 1,227 Posts
Showing my brilliance for not checking this earlier... but an instantiation of the vBulletin 3.0 beta I have available for test includes a quote option in 'Quick Reply', so presumably this could be made available when the final version of the software is released and DVD Talk upgrades.

It does work differently than what's described here, though -- click on an icon in a post, and it takes you down to the Quick Reply box at the bottom of the page. There's a "Quote Message in Reply?" checkbox, and if checked, it'll automatically fill in the message when your posted message appears. It differs in that you don't actually see the message you're quoting in the Quick Reply box (unless I'm overlooking an obvious option), and if the checkbox is selected, the entire source post is quoted, not just a selected portion. What I mean is, if you want to quote a single line from a lengthy post, you'll still have to use the intermediate reply page.

The new quick reply has a toolbar with clickable vBCode elements, but to get a similar bar for smileys, it looks like you still have to hit the intermediate reply page.

BTW, I meant the generic "you" when I said "you", not necessarily you specifically. Bad habit. It would depend on whether or not Geoff and other vBulletin users want this functionality, and if a hack writer or the vBulletin developers are interested in implementing it.
Old 08-22-03, 12:52 PM
  #25  
DVD Talk Hero
Thread Starter
 
Join Date: Nov 1999
Posts: 36,983
Likes: 0
Received 1 Like on 1 Post
cool. any idea when the full version rolls out?

Thread Tools
Search this Thread

Archive - Advertising - Cookie Policy - Privacy Statement - Terms of Service -

Copyright © 2024 MH Sub I, LLC dba Internet Brands. All rights reserved. Use of this site indicates your consent to the Terms of Use.