Page Index Toggle Pages: 1 ... 3 4 [5] 6 7  Send TopicPrint
Very Hot Topic (More than 25 Replies) Quick-Quote V1.7 for YaBB 2.1 (Read 27210 times)
Jeff
God Member
*****
Offline


There are no bugs there
are only features

Posts: 2552
Joined: Jan 14th, 2005
Gender: Male
Re: [DONE] Quick-Quote V1.5 for YaBB 2.1
Reply #60 - Feb 10th, 2007 at 9:08pm
Print Post  
Hi
not true, in V1.1 of Quick Reply see step 7 in add before Grin
  

greetings
Jeff
Back to top
WWW  
IP Logged
 
LM_Forum
New Member
*
Offline


I love YaBB 1G - SP1.2!

Posts: 15
Joined: Jan 8th, 2007
Re: [DONE] Quick-Quote V1.5 for YaBB 2.1
Reply #61 - Feb 11th, 2007 at 6:44pm
Print Post  
I re-downloaded the newest version and when I open it in nodepad and search for it, it's not found ???
  
Back to top
 
IP Logged
 
D0T-C0M
God Member
*****
Offline



Posts: 806
Location: Tracadie
Joined: Sep 22nd, 2001
Gender: Male
Re: [DONE] Quick-Quote V1.5 for YaBB 2.1
Reply #62 - Feb 12th, 2007 at 1:24am
Print Post  
v1.5 not uploaded in first post. only v1.4a


btw thx for the fix
  
Back to top
 
IP Logged
 
Jeff
God Member
*****
Offline


There are no bugs there
are only features

Posts: 2552
Joined: Jan 14th, 2005
Gender: Male
Re: [DONE] Quick-Quote V1.5 for YaBB 2.1
Reply #63 - Feb 12th, 2007 at 7:59am
Print Post  
D0T-C0M wrote on Feb 12th, 2007 at 1:24am:
v1.5 not uploaded in first post. only v1.4a


btw thx for the fix

first post linkedGrin
  

greetings
Jeff
Back to top
WWW  
IP Logged
 
LM_Forum
New Member
*
Offline


I love YaBB 1G - SP1.2!

Posts: 15
Joined: Jan 8th, 2007
Re: [DONE] Quick-Quote V1.5 for YaBB 2.1
Reply #64 - Feb 12th, 2007 at 5:32pm
Print Post  
Errr... Undecided (?)
  
Back to top
 
IP Logged
 
Outumuro
God Member
*****
Offline


Publisher - YaBB Toolbar

Posts: 569
Location: Los Angeles
Joined: Apr 14th, 2004
Gender: Male
Re: [DONE] Quick-Quote V1.5 for YaBB 2.1
Reply #65 - Feb 13th, 2007 at 1:22am
Print Post  
Scroll to the very bottom of the very first post, and you will find a link V.1.5 there. Smiley
  


Back to top
WWW  
IP Logged
 
LM_Forum
New Member
*
Offline


I love YaBB 1G - SP1.2!

Posts: 15
Joined: Jan 8th, 2007
Re: [DONE] Quick-Quote V1.5 for YaBB 2.1
Reply #66 - Feb 13th, 2007 at 4:35pm
Print Post  
Outumuro wrote on Feb 13th, 2007 at 1:22am:
Scroll to the very bottom of the very first post, and you will find a link V.1.5 there. Smiley

Oh no sorry, that post was about the fact Jet Li seemed to ignore my previous post (about there being no "theForm" in the quick reply box mod, being a search term in this quick quote mod)
  
Back to top
 
IP Logged
 
Jeff
God Member
*****
Offline


There are no bugs there
are only features

Posts: 2552
Joined: Jan 14th, 2005
Gender: Male
Re: [DONE] Quick-Quote V1.5 for YaBB 2.1
Reply #67 - Feb 13th, 2007 at 4:59pm
Print Post  
Hi
I no ignored your post.

Please install Quick Reply 1.1 first and then Quick Quote 1.5  Wink
  

greetings
Jeff
Back to top
WWW  
IP Logged
 
Outumuro
God Member
*****
Offline


Publisher - YaBB Toolbar

Posts: 569
Location: Los Angeles
Joined: Apr 14th, 2004
Gender: Male
Re: [DONE] Quick-Quote V1.5 for YaBB 2.1
Reply #68 - Feb 14th, 2007 at 6:40am
Print Post  
LM_Forum wrote on Feb 13th, 2007 at 4:35pm:
Oh no sorry, that post was about...

DOH!  Nevermind. Wink
  


Back to top
WWW  
IP Logged
 
JMB
New Member
*
Offline



Posts: 20
Joined: Oct 7th, 2005
Gender: Male
Re: [DONE] Quick-Quote V1.5 for YaBB 2.1
Reply #69 - Feb 19th, 2007 at 11:06pm
Print Post  
For full browser compatibility the get_selection function this mod adds to ubbc.js should be changed to this:

Code
Select All
function get_selection() {
	if (window.getSelection) {
      selection = window.getSelection();
	  selection = selection.replace("/\r\n\r\n/gi", "_doublecaret_");
	  selection = selection.replace(/\r\n/gi, "_caret_");
      while (selection.indexOf("  ") !=-1) selection = selection.replace(/  /gi, "");
  	  selection = selection.replace(/_doublecaret_/gi, "\r\n\r\n");
	  selection = selection.replace(/_caret_/gi, "\r\n");
	} else if (document.getSelection) {
		selection = document.getSelection();
		selection = selection.replace("/\r\n\r\n/gi", "_doublecaret_");
	    selection = selection.replace(/\r\n/gi, "_caret_");
	    while (selection.indexOf("  ") !=-1) selection = selection.replace(/  /gi, "");
	    selection = selection.replace(/_doublecaret_/gi, "\r\n\r\n");
	    selection = selection.replace(/_caret_/gi, "\r\n");
	}
	else {
		selection = document.selection.createRange().text;
	}
} 



With this change this mod now works in all browsers I've tested it in as the original version didn't work is a few...
  
Back to top
 
IP Logged
 
D0T-C0M
God Member
*****
Offline



Posts: 806
Location: Tracadie
Joined: Sep 22nd, 2001
Gender: Male
Re: [DONE] Quick-Quote V1.5 for YaBB 2.1
Reply #70 - Feb 19th, 2007 at 11:17pm
Print Post  
which ones did it not work with? It works here with FF1.5 and 2.0 and IE6 and 7
  
Back to top
 
IP Logged
 
JMB
New Member
*
Offline



Posts: 20
Joined: Oct 7th, 2005
Gender: Male
Re: [DONE] Quick-Quote V1.5 for YaBB 2.1
Reply #71 - Feb 19th, 2007 at 11:40pm
Print Post  
D0T-C0M wrote on Feb 19th, 2007 at 11:17pm:
which ones did it not work with? It works here with FF1.5 and 2.0 and IE6 and 7

There were issues with Apple Safari and any browser that uses WebKit. Also some versions of NetScape, Opera and IE had problems.

The problem is, there are 3 ways to get selected text and different browsers use different ways! See here for details:

http://www.quirksmode.org/js/selected.html
  
Back to top
 
IP Logged
 
Jeff
God Member
*****
Offline


There are no bugs there
are only features

Posts: 2552
Joined: Jan 14th, 2005
Gender: Male
Re: Quick-Quote V1.6 for YaBB 2.1
Reply #72 - Feb 20th, 2007 at 6:23pm
Print Post  
Hi @All
New update first post attached.

@JMB
I have replace it with your fix, thnx.
  

greetings
Jeff
Back to top
WWW  
IP Logged
 
barry135
New Member
*
Offline


I love YaBB 1G - SP1.2!

Posts: 18
Joined: Feb 25th, 2007
Re: Quick-Quote V1.6 for YaBB 2.1
Reply #73 - Feb 26th, 2007 at 9:35pm
Print Post  
ok I am going to try and add this mod to my boards I am using yabb2.1v and going to use MB2.5.5v to do the install with
  

Barry A Robinson

Visit our web site
www.kaycopets.com
Back to top
 
IP Logged
 
MF-B
Senior Member
****
Offline



Posts: 410
Location: Moscow
Joined: Apr 11th, 2006
Gender: Male
Re: Quick-Quote V1.6 for YaBB 2.1
Reply #74 - Mar 11th, 2007 at 2:43pm
Print Post  
@Jet Li - new code not work on Opera 9.10 - pls return back old code in ubbc.js
  
Back to top
WWW  
IP Logged
 
Page Index Toggle Pages: 1 ... 3 4 [5] 6 7 
Send TopicPrint