############################################################## ## Title: phpBB 3.0.4 to phpBB 3.0.5 prosilver Changes ## Author: Acyd Burn < N/A > (Meik Sievertsen) N/A ## Description: ## ## These are the phpBB 3.0.4 to phpBB 3.0.5 prosilver 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/prosilver/imageset/imageset.cfg ## styles/prosilver/style.cfg ## styles/prosilver/template/attachment.html ## styles/prosilver/template/editor.js ## styles/prosilver/template/forum_fn.js ## styles/prosilver/template/mcp_notes_user.html ## styles/prosilver/template/mcp_topic.html ## styles/prosilver/template/mcp_warn_user.html ## styles/prosilver/template/memberlist_body.html ## styles/prosilver/template/overall_header.html ## styles/prosilver/template/posting_buttons.html ## styles/prosilver/template/posting_editor.html ## styles/prosilver/template/posting_review.html ## styles/prosilver/template/posting_topic_review.html ## styles/prosilver/template/simple_header.html ## styles/prosilver/template/template.cfg ## styles/prosilver/template/ucp_main_bookmarks.html ## styles/prosilver/template/ucp_main_subscribed.html ## styles/prosilver/template/ucp_pm_viewmessage.html ## styles/prosilver/template/ucp_register.html ## styles/prosilver/template/viewforum_body.html ## styles/prosilver/template/viewtopic_body.html ## styles/prosilver/template/viewtopic_print.html ## styles/prosilver/theme/bidi.css ## styles/prosilver/theme/colours.css ## styles/prosilver/theme/common.css ## styles/prosilver/theme/content.css ## styles/prosilver/theme/links.css ## styles/prosilver/theme/theme.cfg ## styles/prosilver/theme/tweaks.css ## ## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2 ############################################################## # #-----[ OPEN ]--------------------------------------------- # styles/prosilver/imageset/imageset.cfg # #-----[ FIND ]--------------------------------------------- # Around Line 22 version = 3.0.4 # #-----[ REPLACE WITH ]--------------------------------------------- # version = 3.0.5 # #-----[ OPEN ]--------------------------------------------- # styles/prosilver/style.cfg # #-----[ FIND ]--------------------------------------------- # Around Line 22 version = 3.0.4 # #-----[ REPLACE WITH ]--------------------------------------------- # version = 3.0.5 # #-----[ OPEN ]--------------------------------------------- # styles/prosilver/template/attachment.html # #-----[ FIND ]--------------------------------------------- # Around Line 59 # #-----[ REPLACE WITH ]--------------------------------------------- # # #-----[ OPEN ]--------------------------------------------- # styles/prosilver/template/editor.js # #-----[ FIND ]--------------------------------------------- # Around Line 19 onload_functions.push('initInsertions()'); # #-----[ REPLACE WITH ]--------------------------------------------- # Just remove/delete the lines (replacing with an empty line) or commenting out // onload_functions.push('initInsertions()'); # #-----[ OPEN ]--------------------------------------------- # styles/prosilver/template/forum_fn.js # #-----[ FIND ]--------------------------------------------- # Around Line 21 if (page !== null && !isNaN(page) && page > 0) { document.location.href = base_url.replace(/&/g, '&') + '&start=' + ((page - 1) * per_page); } # #-----[ REPLACE WITH ]--------------------------------------------- # if (page !== null && !isNaN(page) && page == Math.floor(page) && page > 0) { if (base_url.indexOf('?') == -1) { document.location.href = base_url + '?start=' + ((page - 1) * per_page); } else { document.location.href = base_url.replace(/&/g, '&') + '&start=' + ((page - 1) * per_page); } } # #-----[ FIND ]--------------------------------------------- # Around Line 205 s.setBaseAndExtent(e, 0, e, e.innerText.length - 1); } // Firefox and Opera else { # #-----[ AFTER, ADD ]--------------------------------------------- # // workaround for bug # 42885 if (window.opera && e.innerHTML.substring(e.innerHTML.length - 4) == '
') { e.innerHTML = e.innerHTML + ' '; } # #-----[ OPEN ]--------------------------------------------- # styles/prosilver/template/mcp_notes_user.html # #-----[ FIND ]--------------------------------------------- # Around Line 5

{USERNAME}{USERNAME}

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

{USERNAME_FULL}

# #-----[ OPEN ]--------------------------------------------- # styles/prosilver/template/mcp_topic.html # #-----[ FIND ]--------------------------------------------- # Around Line 158
{L_MARK_ALL} :: {L_UNMARK_ALL}
# #-----[ REPLACE WITH ]--------------------------------------------- #
{L_MARK_ALL} :: {L_UNMARK_ALL}
# #-----[ OPEN ]--------------------------------------------- # styles/prosilver/template/mcp_warn_user.html # #-----[ FIND ]--------------------------------------------- # Around Line 5

{USERNAME}{USERNAME}

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

{USERNAME_FULL}

# #-----[ OPEN ]--------------------------------------------- # styles/prosilver/template/memberlist_body.html # #-----[ FIND ]--------------------------------------------- # Around Line 130
{memberrow.U_WWW}
{memberrow.LOCATION}
  # #-----[ REPLACE WITH ]--------------------------------------------- #
{memberrow.U_SHORT_WWW}
{memberrow.LOCATION}
  # #-----[ OPEN ]--------------------------------------------- # styles/prosilver/template/overall_header.html # #-----[ FIND ]--------------------------------------------- # Around Line 9 # #-----[ AFTER, ADD ]--------------------------------------------- # # #-----[ FIND ]--------------------------------------------- # Around Line 101

{L_SKIP}

# #-----[ REPLACE WITH ]--------------------------------------------- # # #-----[ OPEN ]--------------------------------------------- # styles/prosilver/template/posting_buttons.html # #-----[ FIND ]--------------------------------------------- # Around Line 91 # #-----[ REPLACE WITH ]--------------------------------------------- # # #-----[ OPEN ]--------------------------------------------- # styles/prosilver/template/posting_editor.html # #-----[ FIND ]--------------------------------------------- # Around Line 64
# #-----[ REPLACE WITH ]--------------------------------------------- #
# #-----[ FIND ]--------------------------------------------- # Around Line 137 # #-----[ REPLACE WITH ]--------------------------------------------- # # #-----[ FIND ]--------------------------------------------- # Around Line 158
# #-----[ REPLACE WITH ]--------------------------------------------- #
# #-----[ OPEN ]--------------------------------------------- # styles/prosilver/template/posting_review.html # #-----[ FIND ]--------------------------------------------- # Around Line 1
# #-----[ REPLACE WITH ]--------------------------------------------- #
{post_review_row.L_IGNORE_POST}
# #-----[ OPEN ]--------------------------------------------- # styles/prosilver/template/posting_topic_review.html # #-----[ FIND ]--------------------------------------------- # Around Line 6
# #-----[ REPLACE WITH ]--------------------------------------------- #
{topic_review_row.L_IGNORE_POST}
# #-----[ OPEN ]--------------------------------------------- # styles/prosilver/template/simple_header.html # #-----[ FIND ]--------------------------------------------- # Around Line 15 {SITENAME} • <!-- IF S_IN_MCP -->{L_MCP} • <!-- ELSEIF S_IN_UCP -->{L_UCP} • <!-- ENDIF -->{PAGE_TITLE} # #-----[ AFTER, ADD ]--------------------------------------------- # # #-----[ OPEN ]--------------------------------------------- # styles/prosilver/template/template.cfg # #-----[ FIND ]--------------------------------------------- # Around Line 22 version = 3.0.4 # #-----[ REPLACE WITH ]--------------------------------------------- # version = 3.0.5 # #-----[ OPEN ]--------------------------------------------- # styles/prosilver/template/ucp_main_bookmarks.html # #-----[ FIND ]--------------------------------------------- # Around Line 30
# #-----[ REPLACE WITH ]--------------------------------------------- # style="background-image: url({T_ICONS_PATH}{topicrow.TOPIC_ICON_IMG}); background-repeat: no-repeat;" title="{topicrow.TOPIC_FOLDER_IMG_ALT}"> # #-----[ OPEN ]--------------------------------------------- # styles/prosilver/template/ucp_main_subscribed.html # #-----[ FIND ]--------------------------------------------- # Around Line 50
# #-----[ REPLACE WITH ]--------------------------------------------- # style="background-image: url({T_ICONS_PATH}{topicrow.TOPIC_ICON_IMG}); background-repeat: no-repeat;" title="{topicrow.TOPIC_FOLDER_IMG_ALT}"> # #-----[ OPEN ]--------------------------------------------- # styles/prosilver/template/ucp_pm_viewmessage.html # #-----[ FIND ]--------------------------------------------- # Around Line 73 # #-----[ REPLACE WITH ]--------------------------------------------- # # #-----[ OPEN ]--------------------------------------------- # styles/prosilver/template/ucp_register.html # #-----[ FIND ]--------------------------------------------- # Around Line 90
{L_CONFIRM_CODE_EXPLAIN}
# #-----[ REPLACE WITH ]--------------------------------------------- #
{L_CONFIRM_CODE_EXPLAIN} {L_VC_REFRESH_EXPLAIN}
# #-----[ FIND ]--------------------------------------------- # Around Line 112 # #-----[ REPLACE WITH ]--------------------------------------------- # # #-----[ OPEN ]--------------------------------------------- # styles/prosilver/template/viewforum_body.html # #-----[ FIND ]--------------------------------------------- # Around Line 78 # #-----[ REPLACE WITH ]--------------------------------------------- # # #-----[ OPEN ]--------------------------------------------- # styles/prosilver/template/viewtopic_body.html # #-----[ FIND ]--------------------------------------------- # Around Line 112
# #-----[ REPLACE WITH ]--------------------------------------------- #
# #-----[ FIND ]--------------------------------------------- # Around Line 198 # #-----[ REPLACE WITH ]--------------------------------------------- # # #-----[ OPEN ]--------------------------------------------- # styles/prosilver/template/viewtopic_print.html # #-----[ FIND ]--------------------------------------------- # Around Line 14 # #-----[ REPLACE WITH ]--------------------------------------------- # # #-----[ OPEN ]--------------------------------------------- # styles/prosilver/theme/bidi.css # #-----[ FIND ]--------------------------------------------- # Around Line 722 /** * tweaks.css */ # #-----[ AFTER, ADD ]--------------------------------------------- # /** Reference: Bug #27155 */ .rtl #wrap, .rtl .headerbar, .rtl #site-description, .rtl .navbar { position: relative; } # #-----[ OPEN ]--------------------------------------------- # styles/prosilver/theme/colours.css # #-----[ FIND ]--------------------------------------------- # Around Line 885 pmlist li.pm_foe_colour, .pm_foe_colour { # #-----[ REPLACE WITH ]--------------------------------------------- # .pmlist li.pm_foe_colour, .pm_foe_colour { # #-----[ FIND ]--------------------------------------------- # Around Line 904 /* General form styles ----------------------------------------*/ select { border-color: #666666; background-color: #FAFAFA; # #-----[ AFTER, ADD ]--------------------------------------------- # color: #000; # #-----[ OPEN ]--------------------------------------------- # styles/prosilver/theme/common.css # #-----[ FIND ]--------------------------------------------- # Around Line 395 table.table1 .info div { width: 100%; white-space: nowrap; overflow: hidden; } # #-----[ REPLACE WITH ]--------------------------------------------- # table.table1 .info div { width: 100%; white-space: normal; overflow: hidden; } # #-----[ FIND ]--------------------------------------------- # Around Line 602 div.rules ul { # #-----[ REPLACE WITH ]--------------------------------------------- # div.rules ul, div.rules ol { # #-----[ OPEN ]--------------------------------------------- # styles/prosilver/theme/content.css # #-----[ FIND ]--------------------------------------------- # Around Line 46 ul.topiclist dfn { /* Labels for post/view counts */ display: none; } # #-----[ REPLACE WITH ]--------------------------------------------- # ul.topiclist dfn { /* Labels for post/view counts */ position: absolute; left: -999px; width: 990px; } # #-----[ FIND ]--------------------------------------------- # Around Line 280 #topicreview h2 { border-bottom-width: 0; } # #-----[ AFTER, ADD ]--------------------------------------------- # .post-ignore .postbody { display: none; } # #-----[ OPEN ]--------------------------------------------- # styles/prosilver/theme/links.css # #-----[ FIND ]--------------------------------------------- # Around Line 195 a.right:hover { color: #d2d2d2; text-decoration: none; background-position: 100% 60%; } # #-----[ AFTER, ADD ]--------------------------------------------- # /* invisible skip link, used for accessibility */ .skiplink { position: absolute; left: -999px; width: 990px; } # #-----[ OPEN ]--------------------------------------------- # styles/prosilver/theme/theme.cfg # #-----[ FIND ]--------------------------------------------- # Around Line 24 version = 3.0.4 # #-----[ REPLACE WITH ]--------------------------------------------- # version = 3.0.5 # #-----[ OPEN ]--------------------------------------------- # styles/prosilver/theme/tweaks.css # #-----[ FIND ]--------------------------------------------- # Around Line 80 * html dl.details dd { margin-left: 30%; float: none; } # #-----[ AFTER, ADD ]--------------------------------------------- # * html .forumbg table.table1 { margin: 0 -2px 0px -1px; } # #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ # # EoM