[ABD] advanced quoting

Any abandoned MODs will be moved to this forum.

WARNING: MODs in this forum are not currently being supported or maintained by the original MOD author. Proceed at your own risk.
Forum rules
IMPORTANT: MOD Development Forum rules

WARNING: MODs in this forum are not currently being supported nor updated by the original MOD author. Proceed at your own risk.
User avatar
Erik Frèrejean
Former Team Member
Posts: 9899
Joined: Tue Oct 09, 2007 9:09 am
Location: The Netherlands, 3.0.x Support Forum
Name: Erik Frèrejean

Re: [BETA] advanced quoting

Post by Erik Frèrejean »

See your pm.
Support Toolkit | Support Request Template | Knowledge Base | phpBB 3.0.x documentation
I don't give support via PM or IM! (all unsolicited pms will be trashed!)
annepenullar
Registered User
Posts: 137
Joined: Sun Oct 21, 2007 7:01 am

Re: [BETA] advanced quoting

Post by annepenullar »

I would also like have my quotes like this:
RdJ1 wrote:How can you edit
username - post_title wrote:
to
username wrote in post_title:
and
username - post_time wrote:
to
username wrote at post_time:
:?: :?: :?:
but I use the quickfix posted
Erik Frèrejean wrote:Open ./includes/bbcode.php, Find:

Code: Select all

$post_link .= date ($user->data['user_dateformat'], $param['post_time']);    
After-add:

Code: Select all

$split = "wrote at ";    
Find:

Code: Select all

$post_link .= $param['post_subject'];    
After-add:

Code: Select all

$split = "wrote in ";    
Find:

Code: Select all

return $username . (($post_link != "") ? ' - ' . $post_link : '');    
After-add:

Code: Select all

return $username . (($post_link != "") ? '  '.$split . $post_link : '');    
Should do the trick.
I am not getting the outcome I wanted. Please help.
User avatar
Erik Frèrejean
Former Team Member
Posts: 9899
Joined: Tue Oct 09, 2007 9:09 am
Location: The Netherlands, 3.0.x Support Forum
Name: Erik Frèrejean

Re: [BETA] advanced quoting

Post by Erik Frèrejean »

Can you post a screen shot (or live demo), of the result you are getting?
Support Toolkit | Support Request Template | Knowledge Base | phpBB 3.0.x documentation
I don't give support via PM or IM! (all unsolicited pms will be trashed!)
User avatar
Erik Frèrejean
Former Team Member
Posts: 9899
Joined: Tue Oct 09, 2007 9:09 am
Location: The Netherlands, 3.0.x Support Forum
Name: Erik Frèrejean

Re: [BETA] advanced quoting

Post by Erik Frèrejean »

A little update on this one.
Is started rewriting the core of this mod. The things I want to implement before I release a beta for this:
  • Multi quote
  • Single quote (If I can find a nice way to create this)
Erik.
Support Toolkit | Support Request Template | Knowledge Base | phpBB 3.0.x documentation
I don't give support via PM or IM! (all unsolicited pms will be trashed!)
User avatar
Erik Frèrejean
Former Team Member
Posts: 9899
Joined: Tue Oct 09, 2007 9:09 am
Location: The Netherlands, 3.0.x Support Forum
Name: Erik Frèrejean

Re: [BETA] advanced quoting

Post by Erik Frèrejean »

I just finished my version of the single quote mod. I have decided to create a soft version of it.
So only the top quote is shown to normal users, but moderators will see all the quotes.

The main reason for me to decide to create a "soft single quote" is the ability to switch on this feature without distroying the quotes. (the full quote is still shown when you are typing a reply)!

Next stop the multi quote.
Support Toolkit | Support Request Template | Knowledge Base | phpBB 3.0.x documentation
I don't give support via PM or IM! (all unsolicited pms will be trashed!)
User avatar
Brizzle
Registered User
Posts: 80
Joined: Tue Jan 15, 2008 10:53 pm
Location: Cambridge, MA

Re: [BETA] advanced quoting

Post by Brizzle »

I just installed this mod and I'm having trouble with the last step, the DIY step.

I created the advanced_quoting mod and when I go to the edit screen and look for "Advanced Quoting" from the Choose Module pull-down menu, I don't see it as an option. I uploaded the files to the right places. Is there some cache I need to be clearing?
User avatar
Brizzle
Registered User
Posts: 80
Joined: Tue Jan 15, 2008 10:53 pm
Location: Cambridge, MA

Re: [BETA] advanced quoting

Post by Brizzle »

D'oh. Nevermind. I uploaded the "info" folder to the wrong directory. Seems to work now.
User avatar
Brizzle
Registered User
Posts: 80
Joined: Tue Jan 15, 2008 10:53 pm
Location: Cambridge, MA

Re: [BETA] advanced quoting

Post by Brizzle »

Okay, here's something curious. I got this to work and it looks great, except that there appear to be brackets around the date above the quoted text.

Image

Any idea how that might have happened and how I can fix it? Might it have been something I had already modded prior to installing this mod?
fatmcgav
Registered User
Posts: 62
Joined: Sat Jul 10, 2004 5:01 pm

Re: [BETA] advanced quoting

Post by fatmcgav »

Erik Frèrejean wrote:I just finished my version of the single quote mod. I have decided to create a soft version of it.
So only the top quote is shown to normal users, but moderators will see all the quotes.

The main reason for me to decide to create a "soft single quote" is the ability to switch on this feature without distroying the quotes. (the full quote is still shown when you are typing a reply)!

Next stop the multi quote.
Glad to hear your making progress mate.

Gimme a shout if u need a tester... :)

Cheers
Gavin
User avatar
Erik Frèrejean
Former Team Member
Posts: 9899
Joined: Tue Oct 09, 2007 9:09 am
Location: The Netherlands, 3.0.x Support Forum
Name: Erik Frèrejean

Re: [BETA] advanced quoting

Post by Erik Frèrejean »

Brizzle wrote:Okay, here's something curious. I got this to work and it looks great, except that there appear to be brackets around the date above the quoted text.

Image

Any idea how that might have happened and how I can fix it? Might it have been something I had already modded prior to installing this mod?
Can you post the complete advanced_quoting_quote_head() function for me? This can be found in: ./includes/bbcode.php.
Support Toolkit | Support Request Template | Knowledge Base | phpBB 3.0.x documentation
I don't give support via PM or IM! (all unsolicited pms will be trashed!)
User avatar
Erik Frèrejean
Former Team Member
Posts: 9899
Joined: Tue Oct 09, 2007 9:09 am
Location: The Netherlands, 3.0.x Support Forum
Name: Erik Frèrejean

Re: [BETA] advanced quoting

Post by Erik Frèrejean »

fatmcgav wrote:
Erik Frèrejean wrote:I just finished my version of the single quote mod. I have decided to create a soft version of it.
So only the top quote is shown to normal users, but moderators will see all the quotes.

The main reason for me to decide to create a "soft single quote" is the ability to switch on this feature without distroying the quotes. (the full quote is still shown when you are typing a reply)!

Next stop the multi quote.
Glad to hear your making progress mate.

Gimme a shout if u need a tester... :)

Cheers
Gavin
A tester nerver hurts :D. At the moment I'm working on a premodded alfa release, for on the svn. If it is online I'll give a screem.
Support Toolkit | Support Request Template | Knowledge Base | phpBB 3.0.x documentation
I don't give support via PM or IM! (all unsolicited pms will be trashed!)
User avatar
Brizzle
Registered User
Posts: 80
Joined: Tue Jan 15, 2008 10:53 pm
Location: Cambridge, MA

Re: [BETA] advanced quoting

Post by Brizzle »

Erik Frèrejean wrote:Can you post the complete advanced_quoting_quote_head() function for me? This can be found in: ./includes/bbcode.php.
I wasn't sure exactly what to post, so here's a link to the entire file:

Link
User avatar
Erik Frèrejean
Former Team Member
Posts: 9899
Joined: Tue Oct 09, 2007 9:09 am
Location: The Netherlands, 3.0.x Support Forum
Name: Erik Frèrejean

Re: [BETA] advanced quoting

Post by Erik Frèrejean »

Brizzle wrote:
Erik Frèrejean wrote:Can you post the complete advanced_quoting_quote_head() function for me? This can be found in: ./includes/bbcode.php.
I wasn't sure exactly what to post, so here's a link to the entire file:

Link
Works als :).
I don't see anything wrong in my code. Do you have other mods installed which change the working of bbcode.php?
Support Toolkit | Support Request Template | Knowledge Base | phpBB 3.0.x documentation
I don't give support via PM or IM! (all unsolicited pms will be trashed!)
User avatar
Brizzle
Registered User
Posts: 80
Joined: Tue Jan 15, 2008 10:53 pm
Location: Cambridge, MA

Re: [BETA] advanced quoting

Post by Brizzle »

The only bbcode mod I installed was this:

http://www.phpbb.com/community/viewtopi ... ilit=video
User avatar
Erik Frèrejean
Former Team Member
Posts: 9899
Joined: Tue Oct 09, 2007 9:09 am
Location: The Netherlands, 3.0.x Support Forum
Name: Erik Frèrejean

Re: [BETA] advanced quoting

Post by Erik Frèrejean »

O, I know what causes the problem.
It is due to your date settings. You have enabled that when the original post is posted to day, it is shown so. The mod seems to have problems with this setting.
At the moment I don't have a fix for this, but it should be corrected in the next version.
Support Toolkit | Support Request Template | Knowledge Base | phpBB 3.0.x documentation
I don't give support via PM or IM! (all unsolicited pms will be trashed!)

Return to “[3.0.x] Abandoned MODs”