############################################################## 
## Title: phpBB 3.0.9 to phpBB 3.0.10 subsilver2 Changes
## Author: naderman < naderman@phpbb.com > (Nils Adermann) http://www.phpbb.com 
## Description: 
##		
##		
##		These are the phpBB 3.0.9 to phpBB 3.0.10 subsilver2 Changes summed up into a
##		little Mod. These changes are only partial and do not include any code changes,
##		therefore not meant for updating phpBB.
##		
##			
##		
## 
## Files To Edit: 
##		styles/subsilver2/imageset/imageset.cfg
##		styles/subsilver2/style.cfg
##		styles/subsilver2/template/attachment.html
##		styles/subsilver2/template/editor.js
##		styles/subsilver2/template/memberlist_body.html
##		styles/subsilver2/template/memberlist_view.html
##		styles/subsilver2/template/posting_buttons.html
##		styles/subsilver2/template/template.cfg
##		styles/subsilver2/template/ucp_pm_viewmessage_print.html
##		styles/subsilver2/theme/stylesheet.css
##		styles/subsilver2/theme/theme.cfg
##
## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2 
############################################################## 

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/imageset/imageset.cfg

#
#-----[ FIND ]---------------------------------------------
# Around Line 17
#

# General Information about this style
name = subsilver2
copyright = &copy; phpBB Group, 2003

#
#-----[ FIND ]---------------------------------------------
# Around Line 22
version = 3.0.9

#
#-----[ REPLACE WITH ]---------------------------------------------
#
version = 3.0.10

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/style.cfg

#
#-----[ FIND ]---------------------------------------------
# Around Line 17
#

# General Information about this style
name = subsilver2
copyright = &copy; 2005 phpBB Group

#
#-----[ FIND ]---------------------------------------------
# Around Line 22
version = 3.0.9

#
#-----[ REPLACE WITH ]---------------------------------------------
#
version = 3.0.10

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/template/attachment.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 70
				<embed name="qtstream_{_file.ATTACH_ID}" src="{_file.U_DOWNLOAD_LINK}" pluginspage="http://www.apple.com/quicktime/download/" enablejavascript="true" controller="true" width="320" height="285" type="video/quicktime" autoplay="false"> 

#
#-----[ REPLACE WITH ]---------------------------------------------
#
				<embed name="qtstream_{_file.ATTACH_ID}" src="{_file.U_DOWNLOAD_LINK}" pluginspage="http://www.apple.com/quicktime/download/" enablejavascript="true" controller="true" width="320" height="285" type="video/quicktime" autoplay="false"></embed>

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/template/editor.js

#
#-----[ FIND ]---------------------------------------------
# Around Line 149
	}
	if (spaces) 
	{
		text = ' ' + text + ' ';
	}

#
#-----[ FIND ]---------------------------------------------
# Around Line 154
	
	if (!isNaN(textarea.selectionStart))

#
#-----[ REPLACE WITH ]---------------------------------------------
#

	// Since IE9, IE also has textarea.selectionStart, but it still needs to be treated the old way.
	// Therefore we simply add a !is_ie here until IE fixes the text-selection completely.
	if (!isNaN(textarea.selectionStart) && !is_ie)

#
#-----[ FIND ]---------------------------------------------
# Around Line 218
	if (window.getSelection)
	{
		theSelection = window.getSelection().toString();
	}
	else if (document.getSelection)

#
#-----[ REPLACE WITH ]---------------------------------------------
#
	// IE9 must use the document.selection method but has the *.getSelection so we just force no IE
	if (window.getSelection && !is_ie)
	{
		theSelection = window.getSelection().toString();
	}
	else if (document.getSelection && !is_ie)

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/template/memberlist_body.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 12
			<td align="{S_CONTENT_FLOW_BEGIN}"><span class="genmed">{L_USERNAME_BEGINS_WITH}: </span><select name="first_char" onchange="this.form.submit();">{S_CHAR_OPTIONS}</select>&nbsp;<input type="submit" name="char" value="{L_DISPLAY}" class="btnlite" /></td>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
			<td align="{S_CONTENT_FLOW_BEGIN}"><span class="genmed">{L_USERNAME_BEGINS_WITH}: </span>
				<select name="first_char" onchange="this.form.submit();">
					<!-- BEGIN first_char -->
						<option value="{first_char.VALUE}"<!-- IF first_char.S_SELECTED --> selected="selected"<!-- ENDIF -->>{first_char.DESC}</option>
					<!-- END first_char -->
				</select>&nbsp;<input type="submit" name="char" value="{L_DISPLAY}" class="btnlite" /></td>

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/template/memberlist_view.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 87
					<td><!-- IF ACTIVE_FORUM --><b><a class="gen" href="{U_ACTIVE_FORUM}">{ACTIVE_FORUM}</a></b><br /><span class="genmed">[ {ACTIVE_FORUM_POSTS} / {ACTIVE_FORUM_PCT} ]</span><!-- ELSE --><span class="gen">-</span><!-- ENDIF --></td>
				</tr>
				<tr>
					<td class="gen" align="{S_CONTENT_FLOW_END}" valign="top" nowrap="nowrap">{L_ACTIVE_IN_TOPIC}: </td>
					<td><!-- IF ACTIVE_TOPIC --><b><a class="gen" href="{U_ACTIVE_TOPIC}">{ACTIVE_TOPIC}</a></b><br /><span class="genmed">[ {ACTIVE_TOPIC_POSTS} / {ACTIVE_TOPIC_PCT} ]</span><!-- ELSE --><span class="gen">-</span><!-- ENDIF --></td>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
					<td><!-- IF ACTIVE_FORUM != '' --><b><a class="gen" href="{U_ACTIVE_FORUM}">{ACTIVE_FORUM}</a></b><br /><span class="genmed">[ {ACTIVE_FORUM_POSTS} / {ACTIVE_FORUM_PCT} ]</span><!-- ELSE --><span class="gen">-</span><!-- ENDIF --></td>
				</tr>
				<tr>
					<td class="gen" align="{S_CONTENT_FLOW_END}" valign="top" nowrap="nowrap">{L_ACTIVE_IN_TOPIC}: </td>
					<td><!-- IF ACTIVE_TOPIC != '' --><b><a class="gen" href="{U_ACTIVE_TOPIC}">{ACTIVE_TOPIC}</a></b><br /><span class="genmed">[ {ACTIVE_TOPIC_POSTS} / {ACTIVE_TOPIC_PCT} ]</span><!-- ELSE --><span class="gen">-</span><!-- ENDIF --></td>

#
#-----[ FIND ]---------------------------------------------
# Around Line 146
			<!-- IF AGE -->
			<tr>
				<td class="gen" align="{S_CONTENT_FLOW_END}" nowrap="nowrap">{L_AGE}: </td>
				<td><b class="genmed"><!-- IF AGE -->{AGE}<!-- ELSE --> - <!-- ENDIF --></b></td>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
			<!-- IF AGE !== '' -->
			<tr>
				<td class="gen" align="{S_CONTENT_FLOW_END}" nowrap="nowrap">{L_AGE}: </td>
				<td><b class="genmed">{AGE}</b></td>

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/template/posting_buttons.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 20
			e: '{LA_BBCODE_E_HELP}',
			d: '{LA_BBCODE_D_HELP}',
			t: '{LA_BBCODE_T_HELP}',

#
#-----[ REPLACE WITH ]---------------------------------------------
#
			y: '{LA_BBCODE_Y_HELP}',
			d: '{LA_BBCODE_D_HELP}',

#
#-----[ FIND ]---------------------------------------------
# Around Line 42
		<input type="button" class="btnbbcode" accesskey="y" name="addlitsitem" value="[*]" style="width: 40px" onclick="bbstyle(-1)" onmouseover="helpline('e')" onmouseout="helpline('tip')" />				

#
#-----[ REPLACE WITH ]---------------------------------------------
#
		<input type="button" class="btnbbcode" accesskey="y" name="addlistitem" value="[*]" style="width: 40px" onclick="bbstyle(-1)" onmouseover="helpline('e')" onmouseout="helpline('tip')" />				

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/template/template.cfg

#
#-----[ FIND ]---------------------------------------------
# Around Line 17
#

# General Information about this template
name = subsilver2
copyright = &copy; phpBB Group, 2003

#
#-----[ FIND ]---------------------------------------------
# Around Line 22
version = 3.0.9

#
#-----[ REPLACE WITH ]---------------------------------------------
#
version = 3.0.10

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/template/ucp_pm_viewmessage_print.html

#
#-----[ FIND ]---------------------------------------------
# Around Line 59
	<td colspan="2" align="center"><span class="Forum">{SITENAME}</span><br /><span class="gensmall">{L_PRIVATE_MESSAGING}</a></span></td>

#
#-----[ REPLACE WITH ]---------------------------------------------
#
	<td colspan="2" align="center"><span class="Forum">{SITENAME}</span><br /><span class="gensmall">{L_PRIVATE_MESSAGING}</span></td>

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/theme/stylesheet.css

#
#-----[ FIND ]---------------------------------------------
# Around Line 1
/*  phpBB 3.0 Style Sheet
    --------------------------------------------------------------
	Style name:		subsilver2
	Based on style:	subSilver (the default phpBB 2 style)
	Original author:	subBlue ( http://www.subBlue.com/ )
	Modified by:		psoTFX and the phpBB team ( http://www.phpbb.com )
	
	This is an alternative style for phpBB3 for those wishing to stay with
	the familiar subSilver style of phpBB version 2.x
	
	Copyright 2006 phpBB Group ( http://www.phpbb.com/ )

#
#-----[ REPLACE WITH ]---------------------------------------------
#
/*  phpBB3 Style Sheet
    --------------------------------------------------------------
	Style name:			subsilver2
	Based on style:		subSilver (the default phpBB 2.0.x style)
	Original author:	Tom Beddard ( http://www.subblue.com/ )
	Modified by:		phpBB Group ( http://www.phpbb.com/ )

#
#-----[ OPEN ]--------------------------------------------- 
#
styles/subsilver2/theme/theme.cfg

#
#-----[ FIND ]---------------------------------------------
# Around Line 19
#

# General Information about this theme
name = subsilver2
copyright = &copy; phpBB Group, 2003

#
#-----[ FIND ]---------------------------------------------
# Around Line 24
version = 3.0.9

#
#-----[ REPLACE WITH ]---------------------------------------------
#
version = 3.0.10

# 
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ 
# 
# EoM