Hi....
One question about Milky way (just registered and I'm already getting tiring... :
LOL: )
I have my demo board of phpbb3 RC4. I've already installed the a Quick reply mod..
The template installed just fine.
Problem is this: Quick reply does not seem to work with milky way.. :? I tried to do the changes but there's difference in the code.
When I initially saw that in fact phpbb3 has 2 templates, I thought every other template that will be released will be based on them
And since mod have instructions for both subsilver2 and prosilver, I could actually install any mod on any template.
But I guess my thought was wrong :oops:
Anyway, if you would like to look into it, here is the install.txt of Quick reply (since phpbb3 is not the final release I would totally understand if you can not supply any support for this. After all my phpbb3 board is for the time beeing just for testing- it's on my localhost, not even on the internet...)
Install instructions for prosilver
##############################################################
## MOD Title: Advanced Quick Reply
## MOD Author: Z3u5 < brunovier@suportephpbb.org > http://www.suportephpbb.org
## MOD Description:
## Add quick reply box in the end of viewtopic with some options how:
## Attach sing
## Quote Selected
## Notify reply
## Enable/Disable quick reply box
## Enable/Disable colorize nicks
## Enable/Disable quote the last message
##
## http://www.suportephpbb.org
##
## MOD Version: 0.3.0
##
## Installation Level: Easy
## Installation Time: 5 Minutes
## Files To Edit:
## viewtopic.php
## styles/prosiver/template/viewtopic_body.html
## styles/prosiver/template/editor.js
##
## Included Files:
## root/*.*
##
##############################################################
## Author Notes:
##
## You can check updates for this mod in www.suportephpbb.org.
## This MOD has tested in phpBB RC1
##
##############################################################
## MOD History:
##
##
## 2007-08-03 - Version 0.3.0
## - Fixed theme bugs
##
## 2007-06-05 - Version 0.2.0
## - Fixed focus textarea
## - Fixed Subject in quick reply
## - Added option to enable bbcode buttons
##
## 2007-06-05 - Version 0.1.5
## - Fixed quote last message smilie
##
## 2007-06-02 - Version 0.1.4
## - Fixed javascript error for Anonymous User
##
## 2007-06-02 - Version 0.1.3
## - Added Subsilver2 template
##
## 2007-05-29 - Version 0.1.2
## - Fixed javascript error
## - Fixed incompatibility with Firefox
##
## 2007-05-29 - Version 0.1.1
## - Add Optoin of colorize
##
## 2007-05-28 - Version 0.1.0
## - Initial Release
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ COPY ]------------------------------------------
#
copy root/*.* to phpBB3 root/*.*
#
#-----[ OPEN ]------------------------------------------
#
viewtopic.php
#
#-----[ FIND ]------------------------------------------
#
// Output the posts
$first_unread = $post_unread = false;
#
#-----[ BEFORE, ADD ]------------------------------------------
#
//-- mod : Advanced Quick Reply ---------------------------------------------------------------------
$last_post = end($rowset);
//-- fin mod : Advanced Quick Reply -----------------------------------------------------------------
#
#-----[ FIND ]------------------------------------------
#
page_footer();
#
#-----[ BEFORE, ADD ]------------------------------------------
#
//-- mod : Advanced Quick Reply ---------------------------------------------------------------------
include $phpbb_root_path . 'includes/quickreply.' . $phpEx;
$QuickReply = new QuickReply($topic_id, $forum_id, $topic_data, $last_post);
//-- fin mod : Advanced Quick Reply -----------------------------------------------------------------
#
#-----[ OPEN ]------------------------------------------
#
styles/prosiver/template/editor.js
#
#-----[ FIND ]------------------------------------------
#
textarea.focus();
baseHeight = doc.selection.createRange().duplicate().boundingHeight;
#
#-----[ REPLACE WITH ]------------------------------------------
#
//Removed by Quick Reply
//textarea.focus();
baseHeight = doc.selection.createRange().duplicate().boundingHeight;
#
#-----[ OPEN ]------------------------------------------
#
styles/prosiver/template/viewtopic_body.html
#
#-----[ FIND ]------------------------------------------
#
<!-- IF not postrow.U_POST_AUTHOR --><strong>{postrow.POST_AUTHOR_FULL}</strong><!-- ELSE -->{postrow.POST_AUTHOR_FULL}<!-- ENDIF -->
#
#-----[ REPLACE WITH ]------------------------------------------
#
<!-- IF S_QR_ACTIVE -->
<!-- IF S_QR_COLOR_NICK -->
<!-- IF postrow.POST_AUTHOR_COLOUR -->
<a href="#" onclick="insert_text('[b][color={postrow.POST_AUTHOR_COLOUR}]{postrow.POST_AUTHOR}[/color][/b], ', true, false); return false;"><span style="color: {postrow.POST_AUTHOR_COLOUR};" class="username-coloured">{postrow.POST_AUTHOR}</span></a>
<!-- ELSE -->
<a href="#" onclick="insert_text('[b]{postrow.POST_AUTHOR}[/b], ', true, false); return false;"><span style="color: {postrow.POST_AUTHOR_COLOUR};" class="username-coloured">{postrow.POST_AUTHOR}</span></a>
<!-- ENDIF -->
<!-- ELSE -->
<a href="#" onclick="insert_text('[b]{postrow.POST_AUTHOR}[/b], ', true, false); return false;"><span style="color: {postrow.POST_AUTHOR_COLOUR};" class="username-coloured">{postrow.POST_AUTHOR}</span></a>
<!-- ENDIF -->
<!-- ELSE -->
{postrow.POST_AUTHOR_FULL}
<!-- ENDIF -->
#
#-----[ FIND ]------------------------------------------
#
<!-- INCLUDE jumpbox.html -->
#
#-----[ BEFORE, ADD ]------------------------------------------
#
<!-- INCLUDE quickreply_body.html -->
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
Install instructions for subsilver2:
##############################################################
## MOD Title: Advanced Quick Reply
## MOD Author: Z3u5 < brunovier@suportephpbb.org > http://www.suportephpbb.org
## MOD Description:
## Add quick reply box in the end of viewtopic with some options how:
## Attach sing
## Quote Selected
## Notify reply
## Enable/Disable quick reply box
## Enable/Disable colorize nicks
## Enable/Disable quote the last message
##
## http://www.suportephpbb.org
##
## MOD Version: 0.3.0
##
## Installation Level: Easy
## Installation Time: 5 Minutes
## Files To Edit:
## viewtopic.php
## styles/prosiver/template/viewtopic_body.html
## styles/prosiver/template/editor.js
##
## Included Files:
## root/*.*
##
##############################################################
## Author Notes:
##
## You can check updates for this mod in www.suportephpbb.org.
## This MOD has tested in phpBB RC1
##
##############################################################
## MOD History:
##
##
## 2007-08-03 - Version 0.3.0
## - Fixed theme bugs
##
## 2007-06-05 - Version 0.2.0
## - Fixed focus textarea
## - Fixed Subject in quick reply
## - Added option to enable bbcode buttons
##
## 2007-06-05 - Version 0.1.5
## - Fixed quote last message smilie
##
## 2007-06-02 - Version 0.1.4
## - Fixed javascript error for Anonymous User
##
## 2007-06-02 - Version 0.1.3
## - Added Subsilver2 template
##
## 2007-05-29 - Version 0.1.2
## - Fixed javascript error
## - Fixed incompatibility with Firefox
##
## 2007-05-29 - Version 0.1.1
## - Add Optoin of colorize
##
## 2007-05-28 - Version 0.1.0
## - Initial Release
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ COPY ]------------------------------------------
#
copy root/*.* to phpBB3 root/*.*
#
#-----[ OPEN ]------------------------------------------
#
viewtopic.php
#
#-----[ FIND ]------------------------------------------
#
// Output the posts
$first_unread = $post_unread = false;
#
#-----[ BEFORE, ADD ]------------------------------------------
#
//-- mod : Advanced Quick Reply ---------------------------------------------------------------------
$last_post = end($rowset);
//-- fin mod : Advanced Quick Reply -----------------------------------------------------------------
#
#-----[ FIND ]------------------------------------------
#
page_footer();
#
#-----[ BEFORE, ADD ]------------------------------------------
#
//-- mod : Advanced Quick Reply ---------------------------------------------------------------------
include $phpbb_root_path . 'includes/quickreply.' . $phpEx;
$QuickReply = new QuickReply($topic_id, $forum_id, $topic_data, $last_post);
//-- fin mod : Advanced Quick Reply -----------------------------------------------------------------
#
#-----[ OPEN ]------------------------------------------
#
styles/prosiver/template/editor.js
#
#-----[ FIND ]------------------------------------------
#
textarea.focus();
baseHeight = doc.selection.createRange().duplicate().boundingHeight;
#
#-----[ REPLACE WITH ]------------------------------------------
#
//Removed by Quick Reply
//textarea.focus();
baseHeight = doc.selection.createRange().duplicate().boundingHeight;
#
#-----[ OPEN ]------------------------------------------
#
styles/prosiver/template/viewtopic_body.html
#
#-----[ FIND ]------------------------------------------
#
{postrow.POST_AUTHOR}
#
#-----[ REPLACE WITH ]------------------------------------------
#
<!-- IF S_QR_ACTIVE -->
<!-- IF S_QR_COLOR_NICK -->
<!-- IF postrow.POST_AUTHOR_COLOUR -->
<a href="#" onclick="insert_text('[b][color={postrow.POST_AUTHOR_COLOUR}]{postrow.POST_AUTHOR}[/color][/b], ', true, false); return false;"><span style="color: {postrow.POST_AUTHOR_COLOUR};" class="username-coloured">{postrow.POST_AUTHOR}</span></a>
<!-- ELSE -->
<a href="#" onclick="insert_text('[b]{postrow.POST_AUTHOR}[/b], ', true, false); return false;"><span style="color: {postrow.POST_AUTHOR_COLOUR};" class="username-coloured">{postrow.POST_AUTHOR}</span></a>
<!-- ENDIF -->
<!-- ELSE -->
<a href="#" onclick="insert_text('[b]{postrow.POST_AUTHOR}[/b], ', true, false); return false;"><span style="color: {postrow.POST_AUTHOR_COLOUR};" class="username-coloured">{postrow.POST_AUTHOR}</span></a>
<!-- ENDIF -->
<!-- ELSE -->
{postrow.POST_AUTHOR_FULL}
<!-- ENDIF -->
#
#-----[ FIND ]------------------------------------------
#
<div id="pagefooter"></div>
#
#-----[ BEFORE, ADD ]------------------------------------------
#
<!-- INCLUDE quickreply_body.html -->
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM