[Customisation Database Commits] r442 [1/2] - in /trunk/titania: contributions/ includes/ includes/objects/ includes/tools/ styles/default/template/ styles/default/template/_to_remove/ styles/default/template/authors/ styles/default/template/common/ styles/default/template/contributions/ styles/default/template/misc/ styles/default/template/posting/ styles/default/template/titania/ styles/default/template/uploadify/

Nathan Guse exreaction at phpbb.com
Sat Dec 19 03:24:30 GMT 2009


Author: exreaction
Date: Sat Dec 19 03:24:30 2009
New Revision: 442

Log:
Reorganizing the template files.  Common files are now in template/common and uploadify files are in template/uploadify.  Removed old unused template files.

Added:
    trunk/titania/styles/default/template/common/
    trunk/titania/styles/default/template/common/category_list.html
    trunk/titania/styles/default/template/common/confirm_body.html
    trunk/titania/styles/default/template/common/contrib_list.html
    trunk/titania/styles/default/template/common/json_response.html
    trunk/titania/styles/default/template/common/login_body.html
    trunk/titania/styles/default/template/common/message_body.html
    trunk/titania/styles/default/template/common/overall_footer.html
    trunk/titania/styles/default/template/common/overall_header.html
    trunk/titania/styles/default/template/common/post_list.html
    trunk/titania/styles/default/template/common/rate.html
    trunk/titania/styles/default/template/common/topic_list.html
    trunk/titania/styles/default/template/posting/quickreply_editor.html
    trunk/titania/styles/default/template/uploadify/
    trunk/titania/styles/default/template/uploadify/uploadify.html
    trunk/titania/styles/default/template/uploadify/uploadify_file.html
    trunk/titania/styles/default/template/uploadify/uploadify_revisions_file.html
Removed:
    trunk/titania/styles/default/template/_to_remove/
    trunk/titania/styles/default/template/authors/author_list.html
    trunk/titania/styles/default/template/authors/author_profile.html
    trunk/titania/styles/default/template/authors/contribution_details.html
    trunk/titania/styles/default/template/category_list.html
    trunk/titania/styles/default/template/confirm_body.html
    trunk/titania/styles/default/template/contrib_list.html
    trunk/titania/styles/default/template/contributions/contribution_email.html
    trunk/titania/styles/default/template/contributions/contribution_new.html
    trunk/titania/styles/default/template/json_response.html
    trunk/titania/styles/default/template/login_body.html
    trunk/titania/styles/default/template/message_body.html
    trunk/titania/styles/default/template/misc/
    trunk/titania/styles/default/template/overall_footer.html
    trunk/titania/styles/default/template/overall_header.html
    trunk/titania/styles/default/template/post_list.html
    trunk/titania/styles/default/template/ratings.js
    trunk/titania/styles/default/template/search_body.html
    trunk/titania/styles/default/template/titania/
    trunk/titania/styles/default/template/topic_list.html
    trunk/titania/styles/default/template/uploadify.html
    trunk/titania/styles/default/template/uploadify_file.html
    trunk/titania/styles/default/template/uploadify_revisions_file.html
Modified:
    trunk/titania/contributions/previews.php
    trunk/titania/contributions/revisions.php
    trunk/titania/includes/functions.php
    trunk/titania/includes/objects/rating.php
    trunk/titania/includes/tools/uploader.php
    trunk/titania/styles/default/template/authors/author_footer.html
    trunk/titania/styles/default/template/authors/author_header.html
    trunk/titania/styles/default/template/contributions/contribution_footer.html
    trunk/titania/styles/default/template/contributions/contribution_header.html
    trunk/titania/styles/default/template/contributions/contribution_previews.html
    trunk/titania/styles/default/template/contributions/contribution_revisions.html
    trunk/titania/styles/default/template/contributions/contribution_support.html
    trunk/titania/styles/default/template/index_body.html

Modified: trunk/titania/contributions/previews.php
==============================================================================
*** trunk/titania/contributions/previews.php (original)
--- trunk/titania/contributions/previews.php Sat Dec 19 03:24:30 2009
***************
*** 86,92 ****
  
  				// Set up the template.
  				phpbb::$template->set_filenames(array(
! 					'body'		=> 'json_response.html',
  				));
  
  				phpbb::$template->assign_vars(array(
--- 86,92 ----
  
  				// Set up the template.
  				phpbb::$template->set_filenames(array(
! 					'body'		=> 'common/json_response.html',
  				));
  
  				phpbb::$template->assign_vars(array(

Modified: trunk/titania/contributions/revisions.php
==============================================================================
*** trunk/titania/contributions/revisions.php (original)
--- trunk/titania/contributions/revisions.php Sat Dec 19 03:24:30 2009
***************
*** 87,93 ****
  
  				// Set up the template.
  				phpbb::$template->set_filenames(array(
! 					'body'		=> 'json_response.html',
  				));
  
  				phpbb::$template->assign_vars(array(
--- 87,93 ----
  
  				// Set up the template.
  				phpbb::$template->set_filenames(array(
! 					'body'		=> 'common/json_response.html',
  				));
  
  				phpbb::$template->assign_vars(array(

Modified: trunk/titania/includes/functions.php
==============================================================================
*** trunk/titania/includes/functions.php (original)
--- trunk/titania/includes/functions.php Sat Dec 19 03:24:30 2009
***************
*** 203,209 ****
  			}
  
  			phpbb::$template->set_filenames(array(
! 				'body' => 'message_body.html')
  			);
  
  			phpbb::$template->assign_vars(array(
--- 203,209 ----
  			}
  
  			phpbb::$template->set_filenames(array(
! 				'body' => 'common/message_body.html')
  			);
  
  			phpbb::$template->assign_vars(array(

Modified: trunk/titania/includes/objects/rating.php
==============================================================================
*** trunk/titania/includes/objects/rating.php (original)
--- trunk/titania/includes/objects/rating.php Sat Dec 19 03:24:30 2009
***************
*** 201,207 ****
  		}
  
  		phpbb::$template->set_filenames(array(
! 			'rate'	=> 'misc/rate.html',
  		));
  
  		phpbb::$template->assign_vars(array(
--- 201,207 ----
  		}
  
  		phpbb::$template->set_filenames(array(
! 			'rate'	=> 'common/rate.html',
  		));
  
  		phpbb::$template->assign_vars(array(

Modified: trunk/titania/includes/tools/uploader.php
==============================================================================
*** trunk/titania/includes/tools/uploader.php (original)
--- trunk/titania/includes/tools/uploader.php Sat Dec 19 03:24:30 2009
***************
*** 202,208 ****
  
  		// Set up the template.
  		phpbb::$template->set_filenames(array(
! 			'body'		=> 'json_response.html',
  		));
  
  		// Do we have any errors?
--- 202,208 ----
  
  		// Set up the template.
  		phpbb::$template->set_filenames(array(
! 			'body'		=> 'common/json_response.html',
  		));
  
  		// Do we have any errors?
***************
*** 233,245 ****
  			}
  
  			$file = '';
! 			if (file_exists(TITANIA_ROOT . 'styles/' . titania::$config->style . '/template/uploadify_' . $attachment->object_type . '_file.html'))
  			{
! 				$file = 'uploadify_' . $attachment->object_type . '_file.html';
  			}
  			else
  			{
! 				$file = 'uploadify_file.html';
  			}
  
  			// Set template file.
--- 233,245 ----
  			}
  
  			$file = '';
! 			if (file_exists(TITANIA_ROOT . 'styles/' . titania::$config->style . '/template/uploadify/uploadify_' . $attachment->object_type . '_file.html'))
  			{
! 				$file = 'uploadify/uploadify_' . $attachment->object_type . '_file.html';
  			}
  			else
  			{
! 				$file = 'uploadify/uploadify_file.html';
  			}
  
  			// Set template file.

Modified: trunk/titania/styles/default/template/authors/author_footer.html
==============================================================================
*** trunk/titania/styles/default/template/authors/author_footer.html (original)
--- trunk/titania/styles/default/template/authors/author_footer.html Sat Dec 19 03:24:30 2009
***************
*** 9,12 ****
  </div>
  <div class="clear"></div>
  
! <!-- INCLUDE overall_footer.html -->
\ No newline at end of file
--- 9,12 ----
  </div>
  <div class="clear"></div>
  
! <!-- INCLUDE common/overall_footer.html -->
\ No newline at end of file

Modified: trunk/titania/styles/default/template/authors/author_header.html
==============================================================================
*** trunk/titania/styles/default/template/authors/author_header.html (original)
--- trunk/titania/styles/default/template/authors/author_header.html Sat Dec 19 03:24:30 2009
***************
*** 1,4 ****
! <!-- INCLUDE overall_header.html -->
  
  <div class="main-content">
  	<div class="main-column">
--- 1,4 ----
! <!-- INCLUDE common/overall_header.html -->
  
  <div class="main-content">
  	<div class="main-column">

Removed: trunk/titania/styles/default/template/authors/author_list.html
==============================================================================
*** trunk/titania/styles/default/template/authors/author_list.html (original)
--- trunk/titania/styles/default/template/authors/author_list.html (removed)
***************
*** 1,56 ****
- <!-- INCLUDE overall_header.html -->
- <h2>{L_AUTHOR_PROFILE}</h2>
- 
- 
- 
- <div class="forumbg">
- 	<div class="inner"><span class="corners-top"><span></span></span>
- 
- 	<table class="table1" cellspacing="1">
- 	<thead>
- 	<tr>
- 	        <th class="name"><span class="rank-img">{L_AUTHOR}</span>{L_AUTHOR_PROFILE}</th>
- 			<th class="posts"><!-- IF authors.U_PHPBB_PROFILE -->{L_PROFILE_LINK}<!-- ENDIF --></th>
- 			<th>{L_AUTHOR_CONTRIBS}</th>
-             <th>{L_AUTHOR_MODS}</th>
-             <th>{L_AUTHOR_STYLES}</th>
-             <th>{L_RATING}</th>
- 			<th class="joined">{L_WEBSITE}</th>
- 			<th class="active">{L_LAST_VISIT}</th>
-             <th>{L_POSTS}</th>
-             <th>{L_ONLINE}</th>
- 	</tr>
- 	</thead>
- 	<tbody>
-     <!-- BEGIN authors -->
-         <tr class="<!-- IF authors.S_ROW_COUNT is even -->bg1<!-- ELSE -->bg2<!-- ENDIF -->">
- 		<td><span class="rank-img">{authors.USER_FULL}</span> {authors.AUTHOR_FULL}</td>
- 		<td class="posts"><!-- IF authors.U_PHPBB_PROFILE --><a href="{authors.U_PHPBB_PROFILE}">{L_PHPBB_PROFILE}</a><!-- ENDIF --></td>
- 		<td>{authors.CONTRIBS}</td>
-         <td>{authors.MODS}</td>
- 		<td>{authors.STYLES}</td>
-  		<td>{authors.RATING}</td>
-         <td>{authors.WEBSITE}</td>
- 		<td>{authors.LAST_VISIT}</td>
-  		<td>{authors.POSTS}</td>
- 		<td><!-- IF authors.ONLINE --><img src="{T_IMAGESET_PATH}/icon_online.gif" width="11" height="11" alt="{L_ONLINE}" title="{L_ONLINE}" /><!-- ELSE --><img src="{T_IMAGESET_PATH}/icon_offline.gif" width="11" height="11" alt="{L_OFFLINE}" title="{L_OFFLINE}" /><!-- ENDIF --></td>       
- 	</tr>
-     <!-- BEGINELSE -->
- 	<tr class="bg1">
- 		<td colspan="<!-- IF S_VIEWONLINE -->5<!-- ELSE -->4<!-- ENDIF -->">{L_NO_MEMBERS}</td>
- 	</tr>
-     <!-- END authors -->
- 	</tbody>
- 	</table>
-     
-     <span class="corners-bottom"><span></span></span></div>
- </div>
- 
- <fieldset class="display-options">
- 	<!-- IF PREVIOUS_PAGE --><a href="{PREVIOUS_PAGE}" class="left-box {S_CONTENT_FLOW_BEGIN}">{L_PREVIOUS}</a><!-- ENDIF -->
- 	<!-- IF NEXT_PAGE --><a href="{NEXT_PAGE}" class="right-box {S_CONTENT_FLOW_END}">{L_NEXT}</a><!-- ENDIF -->
- 	<!-- IF S_MODE_SELECT --><label for="sk">{L_SELECT_SORT_METHOD}: <select name="sk" id="sk">{S_MODE_SELECT}</select></label>
- 	<label for="sd">{L_ORDER} <select name="sd" id="sd">{S_ORDER_SELECT}</select> <input type="submit" name="sort" value="{L_SUBMIT}" class="button2" /></label>
- 	<!-- ENDIF -->
- </fieldset>
- <!-- INCLUDE overall_footer.html -->
\ No newline at end of file
--- 0 ----

Removed: trunk/titania/styles/default/template/authors/author_profile.html
==============================================================================
*** trunk/titania/styles/default/template/authors/author_profile.html (original)
--- trunk/titania/styles/default/template/authors/author_profile.html (removed)
***************
*** 1,37 ****
- <!-- INCLUDE overall_header.html -->
- <h2>{L_AUTHOR_PROFILE} {AUTHOR_NAME}</h2>
- 
- <div class="column1">
- <div class="panel bg1">
- 	<div class="inner"><span class="corners-top"><span></span></span>
- 
- 	<h3>{AUTHOR_NAME} {L_USER_INFORMATION}</h3>
- 
- 	<dl class="details" style="float: left; display: block; width: 60%;">
- 
- 		<dt>{L_AUTHOR}:</dt> <dd>{USER_FULL}</dd>
- 		<dt>{L_REAL_NAME}:</dt> <dd>{REAL_NAME}</dd>
- 		<dt>{L_WEBSITE}:</dt> <dd>{WEBSITE}</dd>
-     <!-- IF U_PHPBB_PROFILE -->
- 	    <dt style="margin-bottom: 22px;">{L_PHPBB_PROFILE}:</dt> <dd><a href="{U_PHPBB_PROFILE}">{L_PHPBB_PROFILE}</a></dd>
-     <!-- ENDIF -->	
- 	</dl>
- 	<span class="corners-bottom"><span></span></span></div>
- </div>
- </div>
- 
- <div class="column2">
- <div class="panel bg2">
- 	<div class="inner"><span class="corners-top"><span></span></span>
- 		<h3>{L_MODO_ADVANCED}</h3>
- 		<dl class="details" style="float: left; display: block; width: 60%;">
- 			<dt>{L_AUTHOR_RATING}:</dt> <dd>{RATING} ({RATING_COUNT})</dd>
- 			<dt>{L_AUTHOR_CONTRIBS}:</dt> <dd>{CONTRIB_COUNT}</dd>
- 			<dt>{L_AUTHOR_SNIPPETS}:</dt> <dd>{SNIPPET_COUNT}</dd>
-             <dt>{L_AUTHOR_MODS}: </dt> <dd>{MOD_COUNT}</dd>
- 			<dt>{L_AUTHOR_STYLES}:</dt> <dd>{STYLE_COUNT}</dd>
- 		</dl>
- 	<span class="corners-bottom"><span></span></span></div>
- </div>
- </div>
- <!-- INCLUDE overall_footer.html -->
\ No newline at end of file
--- 0 ----

Removed: trunk/titania/styles/default/template/authors/contribution_details.html
==============================================================================
*** trunk/titania/styles/default/template/authors/contribution_details.html (original)
--- trunk/titania/styles/default/template/authors/contribution_details.html (removed)
***************
*** 1,21 ****
- <!-- INCLUDE authors/author_header.html -->
- 
- 
- <h2 class="section-title">{PAGE_TITLE} :: {L_DETAILS}</h2>
- 
- <div class="forumbg forumbg-table">
- 	<div class="inner"><span class="corners-top"><span></span></span>
- 
- 	<table class="table1" cellspacing="1" id="modlist">
- 		<!-- BEGIN contribs -->
- 			<tr class="<!-- IF contribs.S_ROW_COUNT is even -->bg1<!-- ELSE -->bg2<!-- ENDIF -->">
- 				<td><a href="{contribs.U_VIEW_CONTRIB}">{contribs.CONTRIB_NAME}</a> ({contribs.CONTRIB_TYPE})<br />
- 				{L_AUTHOR}: {contribs.CONTRIB_USERNAME_FULL} </td>
- 			</tr>
- 		<!-- END contribs -->
- 	</table>
- 
- 	<span class="corners-bottom"><span></span></span></div>
- </div>
- 
- <!-- INCLUDE authors/author_footer.html -->
\ No newline at end of file
--- 0 ----

Removed: trunk/titania/styles/default/template/category_list.html
==============================================================================
*** trunk/titania/styles/default/template/category_list.html (original)
--- trunk/titania/styles/default/template/category_list.html (removed)
***************
*** 1,25 ****
- <!-- IF .categories -->
- 
- <div class="forumbg forumbg-table">
- 	<div class="inner"><span class="corners-top"><span></span></span>
- 
- 		<table class="table1" cellspacing="1" id="modlist">
- 		<thead>
- 		<tr>
- 			<th>{L_CATEGORY}</th>
- 			<th>{L_CONTRIBUTIONS}</th>
- 		</tr>
- 		</thead>
- 		<tbody>
- 		<!-- BEGIN categories -->
- 			<tr class="<!-- IF categories.S_ROW_COUNT is even -->bg1<!-- ELSE -->bg2<!-- ENDIF -->">
- 				<td><a href="{categories.U_VIEW_CATEGORY}">{categories.CATEGORY_NAME}</a></td>
- 				<td>{categories.CATEGORY_CONTRIBS}</td>
- 			</tr>
- 		<!-- END categories -->
- 	</tbody>
- 	</table>
- 
- 	<span class="corners-bottom"><span></span></span></div>
- </div>
- <!-- ENDIF -->
\ No newline at end of file
--- 0 ----

Added: trunk/titania/styles/default/template/common/category_list.html
==============================================================================
*** trunk/titania/styles/default/template/common/category_list.html (added)
--- trunk/titania/styles/default/template/common/category_list.html Sat Dec 19 03:24:30 2009
***************
*** 0 ****
--- 1,25 ----
+ <!-- IF .categories -->
+ 
+ <div class="forumbg forumbg-table">
+ 	<div class="inner"><span class="corners-top"><span></span></span>
+ 
+ 		<table class="table1" cellspacing="1" id="modlist">
+ 		<thead>
+ 		<tr>
+ 			<th>{L_CATEGORY}</th>
+ 			<th>{L_CONTRIBUTIONS}</th>
+ 		</tr>
+ 		</thead>
+ 		<tbody>
+ 		<!-- BEGIN categories -->
+ 			<tr class="<!-- IF categories.S_ROW_COUNT is even -->bg1<!-- ELSE -->bg2<!-- ENDIF -->">
+ 				<td><a href="{categories.U_VIEW_CATEGORY}">{categories.CATEGORY_NAME}</a></td>
+ 				<td>{categories.CATEGORY_CONTRIBS}</td>
+ 			</tr>
+ 		<!-- END categories -->
+ 	</tbody>
+ 	</table>
+ 
+ 	<span class="corners-bottom"><span></span></span></div>
+ </div>
+ <!-- ENDIF -->
\ No newline at end of file

Added: trunk/titania/styles/default/template/common/confirm_body.html
==============================================================================
*** trunk/titania/styles/default/template/common/confirm_body.html (added)
--- trunk/titania/styles/default/template/common/confirm_body.html Sat Dec 19 03:24:30 2009
***************
*** 0 ****
--- 1,20 ----
+ <!-- INCLUDE common/overall_header.html -->
+ 
+ <form id="confirm" action="{S_CONFIRM_ACTION}" method="post">
+ <div class="panel">
+ 	<div class="inner"><span class="corners-top"><span></span></span>
+ 
+ 	<h2>{MESSAGE_TITLE}</h2>
+ 	<p>{MESSAGE_TEXT}</p>
+ 	
+ 	<fieldset class="submit-buttons">
+ 		{S_HIDDEN_FIELDS}
+ 		<input type="submit" name="confirm" value="{L_YES}" class="button2" />&nbsp; 
+ 		<input type="submit" name="cancel" value="{L_NO}" class="button2" />
+ 	</fieldset>
+ 
+ 	<span class="corners-bottom"><span></span></span></div>
+ </div>
+ </form>
+ 
+ <!-- INCLUDE common/overall_footer.html -->

Added: trunk/titania/styles/default/template/common/contrib_list.html
==============================================================================
*** trunk/titania/styles/default/template/common/contrib_list.html (added)
--- trunk/titania/styles/default/template/common/contrib_list.html Sat Dec 19 03:24:30 2009
***************
*** 0 ****
--- 1,21 ----
+ <!-- IF not .categories -->
+ 
+ <div class="forumbg forumbg-table">
+ 	<div class="inner"><span class="corners-top"><span></span></span>
+ 
+ 	<table class="table1" cellspacing="1" id="modlist">
+ 		<!-- BEGIN contribs -->
+ 			<tr class="<!-- IF contribs.S_ROW_COUNT is even -->bg1<!-- ELSE -->bg2<!-- ENDIF -->">
+ 				<td><a href="{contribs.U_VIEW_CONTRIB}">{contribs.CONTRIB_NAME}</a><br />
+ 				{L_AUTHOR}: {contribs.CONTRIB_USERNAME_FULL} </td>
+ 			</tr>
+ 		<!-- BEGINELSE -->
+ 			<tr class="bg1">
+ 				<td align="center">{L_NO_CONTRIBS}</td>
+ 			</tr>
+ 		<!-- END contribs -->
+ 	</table>
+ 
+ 	<span class="corners-bottom"><span></span></span></div>
+ </div>
+ <!-- ENDIF -->
\ No newline at end of file

Added: trunk/titania/styles/default/template/common/json_response.html
==============================================================================
*** trunk/titania/styles/default/template/common/json_response.html (added)
--- trunk/titania/styles/default/template/common/json_response.html Sat Dec 19 03:24:30 2009
***************
*** 0 ****
--- 1 ----
+ {JSON}
\ No newline at end of file

Added: trunk/titania/styles/default/template/common/login_body.html
==============================================================================
*** trunk/titania/styles/default/template/common/login_body.html (added)
--- trunk/titania/styles/default/template/common/login_body.html Sat Dec 19 03:24:30 2009
***************
*** 0 ****
--- 1,67 ----
+ <!-- INCLUDE common/overall_header.html -->
+ 
+ <form action="{S_LOGIN_ACTION}" method="post" id="login">
+ <div class="panel">
+ 	<div class="inner"><span class="corners-top"><span></span></span>
+ 
+ 	<div class="content">
+ 		<h2><!-- IF LOGIN_EXPLAIN -->{LOGIN_EXPLAIN}<!-- ELSE -->{L_LOGIN}<!-- ENDIF --></h2>
+ 		
+ 		<fieldset <!-- IF not S_CONFIRM_CODE -->class="fields1"<!-- ELSE -->class="fields2"<!-- ENDIF -->>
+ 		<!-- IF LOGIN_ERROR --><div class="error">{LOGIN_ERROR}</div><!-- ENDIF -->
+ 		<dl>
+ 			<dt><label for="{USERNAME_CREDENTIAL}">{L_USERNAME}:</label></dt>
+ 			<dd><input type="text" tabindex="1" name="{USERNAME_CREDENTIAL}" id="{USERNAME_CREDENTIAL}" size="25" value="{USERNAME}" class="inputbox autowidth" /></dd>
+ 		</dl>
+ 		<dl>
+ 			<dt><label for="{PASSWORD_CREDENTIAL}">{L_PASSWORD}:</label></dt>
+ 			<dd><input type="password" tabindex="2" id="{PASSWORD_CREDENTIAL}" name="{PASSWORD_CREDENTIAL}" size="25" class="inputbox autowidth" /></dd>
+ 			<!-- IF S_DISPLAY_FULL_LOGIN and (U_SEND_PASSWORD or U_RESEND_ACTIVATION) -->
+ 				<!-- IF U_SEND_PASSWORD --><dd><a href="{U_SEND_PASSWORD}">{L_FORGOT_PASS}</a></dd><!-- ENDIF -->
+ 				<!-- IF U_RESEND_ACTIVATION --><dd><a href="{U_RESEND_ACTIVATION}">{L_RESEND_ACTIVATION}</a></dd><!-- ENDIF -->
+ 			<!-- ENDIF -->
+ 		</dl>
+ 		
+ 		<!-- IF S_CONFIRM_CODE -->
+ 		<dl>
+ 			<dt><label for="confirm_code">{L_CONFIRM_CODE}:</label><br /><span>{L_CONFIRM_CODE_EXPLAIN}</span></dt>
+ 				<dd><input type="hidden" name="confirm_id" value="{CONFIRM_ID}" />{CONFIRM_IMAGE}</dd>
+ 				<dd><input type="text" name="confirm_code" id="confirm_code" size="8" maxlength="8" tabindex="3" class="inputbox narrow" title="{L_CONFIRM_CODE}" /></dd>
+ 		</dl>
+ 		<!-- ENDIF -->
+ 		
+ 		<!-- IF S_DISPLAY_FULL_LOGIN -->
+ 		<dl>
+ 			<!-- IF S_AUTOLOGIN_ENABLED --><dd><label for="autologin"><input type="checkbox" name="autologin" id="autologin" tabindex="4" /> {L_LOG_ME_IN}</label></dd><!-- ENDIF -->
+ 			<dd><label for="viewonline"><input type="checkbox" name="viewonline" id="viewonline" tabindex="5" /> {L_HIDE_ME}</label></dd>
+ 		</dl>
+ 		<!-- ENDIF -->
+ 		<dl>
+ 			<dt>&nbsp;</dt>
+ 			<dd>{S_HIDDEN_FIELDS}<input type="submit" name="login" tabindex="6" value="{L_LOGIN}" class="button1" /></dd>
+ 		</dl>
+ 	
+ 		</fieldset>
+ 	</div>
+ 	<span class="corners-bottom"><span></span></span></div>
+ </div>
+ 
+ <!-- IF not S_ADMIN_AUTH and S_REGISTER_ENABLED -->
+ 	<div class="panel">
+ 		<div class="inner"><span class="corners-top"><span></span></span>
+ 
+ 		<div class="content">
+ 			<h3>{L_REGISTER}</h3>
+ 			<p>{L_LOGIN_INFO}</p>
+ 			<p><strong><a href="{U_TERMS_USE}">{L_TERMS_USE}</a> | <a href="{U_PRIVACY}">{L_PRIVACY}</a></strong></p>
+ 			<hr class="dashed" />
+ 			<p><a href="{U_REGISTER}" class="button2">{L_REGISTER}</a></p>
+ 		</div>
+ 
+ 		<span class="corners-bottom"><span></span></span></div>
+ 	</div>
+ <!-- ENDIF -->
+ 
+ </form>
+ 
+ <!-- INCLUDE common/overall_footer.html -->
\ No newline at end of file

Added: trunk/titania/styles/default/template/common/message_body.html
==============================================================================
*** trunk/titania/styles/default/template/common/message_body.html (added)
--- trunk/titania/styles/default/template/common/message_body.html Sat Dec 19 03:24:30 2009
***************
*** 0 ****
--- 1,11 ----
+ <!-- INCLUDE common/overall_header.html -->
+ 
+ <div class="panel" id="message">
+ 	<div class="inner"><span class="corners-top"><span></span></span>
+ 	<h2>{MESSAGE_TITLE}</h2>
+ 	<p>{MESSAGE_TEXT}</p>
+ 	<!-- IF SCRIPT_NAME == "search" and not S_BOARD_DISABLED and not S_NO_SEARCH --><p><a href="{U_SEARCH}" class="{S_CONTENT_FLOW_BEGIN}">{L_RETURN_TO_SEARCH_ADV}</a></p><!-- ENDIF -->
+ 	<span class="corners-bottom"><span></span></span></div>
+ </div>
+ 
+ <!-- INCLUDE common/overall_footer.html -->
\ No newline at end of file

Added: trunk/titania/styles/default/template/common/overall_footer.html
==============================================================================
*** trunk/titania/styles/default/template/common/overall_footer.html (added)
--- trunk/titania/styles/default/template/common/overall_footer.html Sat Dec 19 03:24:30 2009
***************
*** 0 ****
--- 1,58 ----
+ 	<!-- IF not S_USER_LOGGED_IN and not S_IS_BOT -->
+ 		<form method="post" action="{S_LOGIN_ACTION}" class="headerspace">
+ 		<h3><a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a><!-- IF S_REGISTER_ENABLED -->&nbsp; &bull; &nbsp;<a href="{U_REGISTER}">{L_REGISTER}</a><!-- ENDIF --></h3>
+ 			<fieldset class="quick-login">
+ 				<label for="username">{L_USERNAME}:</label>&nbsp;<input type="text" name="username" id="username" size="10" class="inputbox" title="{L_USERNAME}" />  
+ 				<label for="password">{L_PASSWORD}:</label>&nbsp;<input type="password" name="password" id="password" size="10" class="inputbox" title="{L_PASSWORD}" />
+ 				<!-- IF S_AUTOLOGIN_ENABLED -->
+ 					| <label for="autologin">{L_LOG_ME_IN} <input type="checkbox" name="autologin" id="autologin" /></label>
+ 				<!-- ENDIF -->
+ 				<input type="hidden" name="redirect" value="{LOGIN_REDIRECT}" />
+ 				<input type="submit" name="login" value="{L_LOGIN}" class="button2" />
+ 			</fieldset>
+ 		</form>
+ 	<!-- ENDIF -->
+ 	</div>
+ 
+ 	<div id="page-footer">
+ 
+ 		<div class="navbar">
+ 			<div class="inner"><span class="corners-top"><span></span></span>
+ 
+ 			<ul class="linklist">
+ 				<li class="icon-home"><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a></li>
+ 				<li class="rightside"><!-- IF not S_IS_BOT --><a href="{U_DELETE_COOKIES}">{L_DELETE_COOKIES}</a><!-- ENDIF --></li>
+ 			</ul>
+ 
+ 			<span class="corners-bottom"><span></span></span></div>
+ 		</div>
+ 
+ 	<!--
+ 		We request you retain the full copyright notice below including the link to www.phpbb.com.
+ 		This not only gives respect to the large amount of time given freely by the developers
+ 		but also helps build interest, traffic and use of phpBB3. If you (honestly) cannot retain
+ 		the full copyright we ask you at least leave in place the "Powered by phpBB" line, with
+ 		"phpBB" linked to www.phpbb.com. If you refuse to include even this then support on our
+ 		forums may be affected.
+ 
+ 		The phpBB Group : 2006
+ 	//-->
+ 
+ 		<div class="copyright">Titania &copy; 2008 phpBB Customisation Database Team<br />
+ 		Powered by <a href="http://www.phpbb.com/">phpBB</a> &copy; 2000, 2002, 2005, 2007 phpBB Group
+ 			<!-- IF TRANSLATION_INFO --><br />{TRANSLATION_INFO}<!-- ENDIF -->
+ 			<!-- IF DEBUG_OUTPUT --><br />{DEBUG_OUTPUT}<!-- ENDIF -->
+ 			<!-- IF U_ACP --><br /><strong>[ <a href="{U_ACP}">{L_ACP}</a>
+ 			<!-- IF U_PURGE_CACHE --> | <a href="{U_PURGE_CACHE}" id="purge-cache">{L_PURGE_CACHE}</a><!-- ENDIF --> ]</strong><!-- ENDIF -->
+ 		</div>
+ 	</div>
+ 
+ </div>
+ 
+ <div>
+ 	<a id="bottom" name="bottom" accesskey="z"></a>
+ 	<!-- IF not S_IS_BOT -->{RUN_CRON_TASK}<!-- ENDIF -->
+ </div>
+ 
+ </body>
+ </html>
\ No newline at end of file

Added: trunk/titania/styles/default/template/common/overall_header.html
==============================================================================
*** trunk/titania/styles/default/template/common/overall_header.html (added)
--- trunk/titania/styles/default/template/common/overall_header.html Sat Dec 19 03:24:30 2009
***************
*** 0 ****
--- 1,147 ----
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+ <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}">
+ <head>
+ 
+ <meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />
+ <meta http-equiv="content-style-type" content="text/css" />
+ <meta http-equiv="content-language" content="{S_USER_LANG}" />
+ <meta http-equiv="imagetoolbar" content="no" />
+ <meta name="resource-type" content="document" />
+ <meta name="distribution" content="global" />
+ <meta name="copyright" content="2008 phpBB Customisation Database Team" />
+ <meta name="keywords" content="" />
+ <meta name="description" content="{META_DESCRIPTION}" />
+ {META}
+ <title>{PAGE_TITLE} &bull; {SITENAME}</title>
+ 
+ <!--
+ 	phpBB style name: prosilver
+ 	Based on style:   prosilver (this is the default phpBB3 style)
+ 	Original author:  Tom Beddard ( http://www.subBlue.com/ )
+ 	Modified by:
+ 
+ 	NOTE: This page was generated by phpBB, the free open-source bulletin board package.
+ 	      The phpBB Group is not responsible for the content of this page and forum. For more information
+ 	      about phpBB please visit http://www.phpbb.com
+ -->
+ 
+ <script type="text/javascript" src="{TITANIA_ROOT_PATH}js/jquery-1.3.2.min.js"></script>
+ <script type="text/javascript" src="{TITANIA_ROOT_PATH}js/jquery-ui-1.7.2.custom.min.js"></script>
+ <script type="text/javascript" src="{TITANIA_ROOT_PATH}js/common.js"></script>
+ 
+ <script type="text/javascript">
+ // <![CDATA[
+ 	var spacer_img = '{U_BASE_URL}/images/spacer.gif';
+ 	var jump_page = '{LA_JUMP_PAGE}:';
+ 	var on_page = '{ON_PAGE}';
+ 	var per_page = '{PER_PAGE}';
+ 	var base_url = '{A_BASE_URL}';
+ 	var style_cookie = 'phpBBstyle';
+ 	var onload_functions = new Array();
+ 	var onunload_functions = new Array();
+ 
+ 	// Rating Stuff
+ 	var grey_star = new Image(16,16);
+ 	grey_star.src = "{UA_GREY_STAR_SRC}";
+ 	var green_star= new Image(16,16);
+ 	green_star.src = "{UA_GREEN_STAR_SRC}";
+ 	var red_star= new Image(16,16);
+ 	red_star.src = "{UA_RED_STAR_SRC}";
+ 	var orange_star= new Image(16,16);
+ 	orange_star.src = "{UA_ORANGE_STAR_SRC}";
+ 	var max_rating = "{UA_MAX_RATING}";
+ 
+ 	<!-- IF S_HIDE_ERROR_BOX -->
+ 	$(document).ready(function() {
+ 		setTimeout("$('.{ERRORBOX_CLASS}').fadeOut('slow');", 5000);
+ 	});
+ 	<!-- ENDIF -->
+ // ]]>
+ </script>
+ 
+ <link href="{T_TITANIA_THEME_PATH}/print.css" rel="stylesheet" type="text/css" media="print" title="printonly" />
+ <link href="{T_STYLESHEET_LINK}" rel="stylesheet" type="text/css" media="screen, projection" />
+ <link href="{T_TITANIA_STYLESHEET}" rel="stylesheet" type="text/css" media="screen, projection" />
+ 
+ <!-- IF S_LIGHTBOX -->
+ <script type="text/javascript" src="{TITANIA_ROOT_PATH}js/jquery.lightbox-0.5.js"></script>
+ <!-- ENDIF -->
+ 
+ <!-- IF S_CONTENT_DIRECTION eq 'rtl' -->
+ 	<link href="{T_TITANIA_THEME_PATH}/bidi.css" rel="stylesheet" type="text/css" media="screen, projection" />
+ <!-- ENDIF -->
+ 
+ </head>
+ 
+ <body id="phpbb" class="section-{SCRIPT_NAME} {S_CONTENT_DIRECTION}">
+ 
+ <div id="wrap">
+ 	<a id="top" name="top" accesskey="t"></a>
+ 	<div id="page-header">
+ 		<div class="headerbar">
+ 			<div class="inner"><span class="corners-top"><span></span></span>
+ 
+ 			<div id="site-description">
+ 				<a href="{U_SITE_ROOT}" title="{L_SITE_INDEX}" id="logo">{SITE_LOGO_IMG}</a>
+ 				<h1>{SITENAME}</h1>
+ 				<p>{SITE_DESCRIPTION}</p>
+ 				<p style="display: none;"><a href="#start_here">{L_SKIP}</a></p>
+ 			</div>
+ 
+ 			<span class="corners-bottom"><span></span></span></div>
+ 		</div>
+ 
+ 		<div class="navbar">
+ 			<div class="inner"><span class="corners-top"><span></span></span>
+ 
+ 			<ul class="linklist navlinks">
+ 				<li class="icon-home"><a href="{U_SITE_ROOT}" accesskey="h">{L_SITE_INDEX}</a> <!-- BEGIN nav_header --> <strong>&#8249;</strong> <a href="{nav_header.U_TITLE}">{nav_header.L_TITLE}</a><!-- END nav_header --></li>
+ 			</ul>
+ 
+ 			<!-- IF not S_IS_BOT and S_USER_LOGGED_IN -->
+ 			<ul class="linklist leftside">
+ 				<!-- IF U_MY_CONTRIBUTIONS --><li class="icon-ucp"><a href="{U_MY_CONTRIBUTIONS}" title="{L_MY_CONTRIBUTIONS}">{L_MY_CONTRIBUTIONS}</a></li><!-- ENDIF -->
+ 			</ul>
+ 			<!-- ENDIF -->
+ 
+ 			<ul class="linklist rightside">
+ 				<!-- IF not S_IS_BOT -->
+ 					<!-- IF not S_USER_LOGGED_IN and S_REGISTER_ENABLED --><li class="icon-register"><a href="{U_REGISTER}">{L_REGISTER}</a></li><!-- ENDIF -->
+ 					<li class="icon-logout"><a href="{U_LOGIN_LOGOUT}" title="{L_LOGIN_LOGOUT}" accesskey="l">{L_LOGIN_LOGOUT}</a></li>
+ 				<!-- ENDIF -->
+ 			</ul>
+ 
+ 			<span class="corners-bottom"><span></span></span></div>
+ 		</div>
+ 	</div>
+ 
+ 	<a name="start_here"></a>
+ 	<div id="page-body">
+ 		<!-- IF S_BOARD_DISABLED and S_USER_LOGGED_IN and (U_MCP or U_ACP) -->
+ 		<div id="message" class="rules">
+ 			<div class="inner"><span class="corners-top"><span></span></span>
+ 				<strong>{L_INFORMATION}:</strong> {L_BOARD_DISABLED}
+ 			<span class="corners-bottom"><span></span></span></div>
+ 		</div>
+ 		<!-- ENDIF -->
+ 
+ 		<!-- IF .errorbox -->
+ 		<div id="errorbox" class="errorbox">
+ 			<div class="inner"><span class="corners-top"><span></span></span>
+ 			<!-- IF ERRORBOX_TITLE --><h3>{ERRORBOX_TITLE}</h3><!-- ENDIF -->
+ 			<!-- BEGIN errorbox -->
+ 				<p>{errorbox.MESSAGE}</p>
+ 			<!-- END errorbox -->
+ 			<span class="corners-bottom"><span></span></span></div>
+ 		</div>
+ 		<!-- ENDIF -->
+ 		<!-- IF .successbox -->
+ 		<div id="successbox" class="successbox">
+ 			<div class="inner"><span class="corners-top"><span></span></span>
+ 			<!-- IF SUCCESSBOX_TITLE --><h3>{SUCCESSBOX_TITLE}</h3><!-- ENDIF -->
+ 			<!-- BEGIN successbox -->
+ 				<p>{successbox.MESSAGE}</p>
+ 			<!-- END successbox -->
+ 			<span class="corners-bottom"><span></span></span></div>
+ 		</div>
+ 		<!-- ENDIF -->

Added: trunk/titania/styles/default/template/common/post_list.html
==============================================================================
*** trunk/titania/styles/default/template/common/post_list.html (added)
--- trunk/titania/styles/default/template/common/post_list.html Sat Dec 19 03:24:30 2009
***************
*** 0 ****
--- 1,169 ----
+ <div class="topic-actions">
+ 
+ 	<div class="buttons">
+ 	<!-- IF U_POST_REPLY -->
+ 		<div class="<!-- IF S_IS_LOCKED -->locked-icon<!-- ELSE -->reply-icon<!-- ENDIF -->"><a href="{U_POST_REPLY}" title="<!-- IF S_IS_LOCKED -->{L_TOPIC_LOCKED}<!-- ELSE -->{L_POST_REPLY}<!-- ENDIF -->"><span></span><!-- IF S_IS_LOCKED -->{L_TOPIC_LOCKED_SHORT}<!-- ELSE -->{L_POST_REPLY}<!-- ENDIF --></a></div>
+ 	<!-- ENDIF -->
+ 	</div>
+ 
+ 	<!-- IF S_DISPLAY_SEARCHBOX -->
+ 		<div class="search-box">
+ 			<form method="post" id="topic-search" action="{S_SEARCHBOX_ACTION}">
+ 			<fieldset>
+ 				<input class="inputbox search tiny"  type="text" name="keywords" id="search_keywords" size="20" value="{L_SEARCH_TOPIC}" onclick="if(this.value=='{LA_SEARCH_TOPIC}')this.value='';" onblur="if(this.value=='')this.value='{LA_SEARCH_TOPIC}';" />
+ 				<input class="button2" type="submit" value="{L_SEARCH}" />
+ 				<input type="hidden" value="{TOPIC_ID}" name="t" />
+ 				<input type="hidden" value="msgonly" name="sf" />
+ 			</fieldset>
+ 			</form>
+ 		</div>
+ 	<!-- ENDIF -->
+ 
+ 	<!-- IF PAGINATION or TOTAL_POSTS -->
+ 		<div class="pagination">
+ 			<!-- IF U_VIEW_UNREAD_POST and not S_IS_BOT --><a href="{U_VIEW_UNREAD_POST}">{L_VIEW_UNREAD_POST}</a> &bull; <!-- ENDIF -->{TOTAL_POSTS}
+ 			<!-- IF PAGE_NUMBER --><!-- IF PAGINATION --> &bull; <a href="#" onclick="jumpto(); return false;" title="{L_JUMP_TO_PAGE}">{PAGE_NUMBER}</a> &bull; <span>{PAGINATION}</span><!-- ELSE --> &bull; {PAGE_NUMBER}<!-- ENDIF --><!-- ENDIF -->
+ 		</div>
+ 	<!-- ENDIF -->
+ 
+ </div>
+ <div class="clear"></div>
+ 
+ <!-- BEGIN posts -->
+ 	<!-- IF posts.S_FIRST_UNREAD --><a id="unread"></a><!-- ENDIF -->
+ 	<div id="p{posts.POST_ID}" class="post <!-- IF posts.S_ROW_COUNT is odd -->bg1<!-- ELSE -->bg2<!-- ENDIF --><!-- IF posts.S_UNREAD_POST --> unreadpost<!-- ENDIF --><!-- IF posts.S_POST_REPORTED --> reported<!-- ENDIF --><!-- IF posts.S_ONLINE and not posts.S_IGNORE_POST --> online<!-- ENDIF -->">
+ 		<div class="inner"><span class="corners-top"><span></span></span>
+ 
+ 		<div class="postbody">
+ 			<!-- IF posts.S_IGNORE_POST -->
+ 				<div class="ignore">{posts.L_IGNORE_POST}</div>
+ 			<!-- ELSE -->
+ 
+ 		<!-- IF not S_IS_BOT -->
+ 			<!-- IF posts.U_EDIT or posts.U_DELETE or posts.U_REPORT or posts.U_WARN or posts.U_INFO or posts.U_QUOTE -->
+ 				<ul class="profile-icons">
+ 					<!-- IF posts.U_EDIT --><li class="edit-icon"><a href="{posts.U_EDIT}" title="{L_EDIT_POST}"><span>{L_EDIT_POST}</span></a></li><!-- ENDIF -->
+ 					<!-- IF posts.U_DELETE --><li class="delete-icon"><a href="{posts.U_DELETE}" title="{L_DELETE_POST}"><span>{L_DELETE_POST}</span></a></li><!-- ENDIF -->
+ 					<!-- IF posts.U_REPORT --><li class="report-icon"><a href="{posts.U_REPORT}" title="{L_REPORT_POST}"><span>{L_REPORT_POST}</span></a></li><!-- ENDIF -->
+ 					<!-- IF posts.U_WARN --><li class="warn-icon"><a href="{posts.U_WARN}" title="{L_WARN_USER}"><span>{L_WARN_USER}</span></a></li><!-- ENDIF -->
+ 					<!-- IF posts.U_INFO --><li class="info-icon"><a href="{posts.U_INFO}" title="{L_INFORMATION}"><span>{L_INFORMATION}</span></a></li><!-- ENDIF -->
+ 					<!-- IF posts.U_QUOTE --><li class="quote-icon"><a href="{posts.U_QUOTE}" title="{L_REPLY_WITH_QUOTE}"><span>{L_REPLY_WITH_QUOTE}</span></a></li><!-- ENDIF -->
+ 				</ul>
+ 			<!-- ENDIF -->
+ 		<!-- ENDIF -->
+ 
+ 			<h3 <!-- IF posts.S_FIRST_ROW -->class="first"<!-- ENDIF -->><!-- IF posts.POST_ICON_IMG --><img src="{T_ICONS_PATH}{posts.POST_ICON_IMG}" width="{posts.POST_ICON_IMG_WIDTH}" height="{posts.POST_ICON_IMG_HEIGHT}" alt="" /> <!-- ENDIF --><a href="{posts.U_VIEW_POST}">{posts.POST_SUBJECT}</a></h3>
+ 			<p class="author"><!-- IF S_IS_BOT -->{posts.MINI_POST_IMG}<!-- ELSE --><a href="{posts.U_MINI_POST}">{posts.MINI_POST_IMG}</a><!-- ENDIF -->{L_POST_BY_AUTHOR} <strong>{posts.USER_FULL}</strong> &raquo; {posts.POST_TIME} </p>
+ 
+ 			<!-- IF posts.S_POST_UNAPPROVED or posts.S_POST_REPORTED -->
+ 				<p class="rules">
+ 					<!-- IF posts.S_POST_UNAPPROVED -->{UNAPPROVED_IMG} <a href="{posts.U_MCP_APPROVE}"><strong>{L_POST_UNAPPROVED}</strong></a><br /><!-- ENDIF -->
+ 					<!-- IF posts.S_POST_REPORTED -->{REPORTED_IMG} <a href="{posts.U_MCP_REPORT}"><strong>{L_POST_REPORTED}</strong></a><!-- ENDIF -->
+ 				</p>
+ 			<!-- ENDIF -->
+ 
+ 			<div class="content">{posts.POST_TEXT}</div>
+ 
+ 			<!-- IF posts.EDIT_REASON -->
+ 				<div class="notice">{posts.EDITED_MESSAGE}
+ 					<!-- IF posts.POST_EDIT_REASON --><br /><strong>{L_REASON}:</strong> <em>{posts.POST_EDIT_REASON}</em><!-- ENDIF -->
+ 				</div>
+ 			<!-- ENDIF -->
+ 
+ 			<!-- IF posts.SIGNATURE --><div id="sig{posts.POST_ID}" class="signature">{posts.SIGNATURE}</div><!-- ENDIF -->
+ 		<!-- ENDIF -->
+ 
+ 		</div>
+ 
+ 		<!-- IF not posts.S_IGNORE_POST -->
+ 			<dl class="postprofile" id="profile{posts.POST_ID}">
+ 			<dt>
+ 				<!-- IF posts.USER_AVATAR -->
+ 					<!-- IF posts.U_USER_PROFILE --><a href="{posts.U_USER_PROFILE}">{posts.USER_AVATAR}</a><!-- ELSE -->{posts.USER_AVATAR}<!-- ENDIF --><br />
+ 				<!-- ENDIF -->
+ 				<!-- IF not posts.U_USER_PROFILE --><strong>{posts.USER_FULL}</strong><!-- ELSE -->{posts.USER_FULL}<!-- ENDIF -->
+ 			</dt>
+ 
+ 			<!-- IF posts.RANK_TITLE or posts.RANK_IMG --><dd>{posts.RANK_TITLE}<!-- IF posts.RANK_TITLE and posts.RANK_IMG --><br /><!-- ENDIF -->{posts.RANK_IMG}</dd><!-- ENDIF -->
+ 
+ 		<dd>&nbsp;</dd>
+ 
+ 		<!-- IF posts.USER_POSTS != '' --><dd><strong>{L_POSTS}:</strong> {posts.USER_POSTS}</dd><!-- ENDIF -->
+ 		<!-- IF posts.USER_JOINED --><dd><strong>{L_JOINED}:</strong> {posts.USER_JOINED}</dd><!-- ENDIF -->
+ 		<!-- IF posts.USER_FROM --><dd><strong>{L_LOCATION}:</strong> {posts.USER_FROM}</dd><!-- ENDIF -->
+ 
+ 		<!-- BEGIN custom_fields -->
+ 			<dd><strong>{posts.custom_fields.PROFILE_FIELD_NAME}:</strong> {posts.custom_fields.PROFILE_FIELD_VALUE}</dd>
+ 		<!-- END custom_fields -->
+ 
+ 		<!-- IF not S_IS_BOT -->
+ 		<!-- IF posts.U_PM or posts.U_EMAIL or posts.U_WWW or posts.U_MSN or posts.U_ICQ or posts.U_YIM or posts.U_AIM or posts.U_JABBER -->
+ 			<dd>
+ 				<ul class="profile-icons">
+ 					<!-- IF posts.U_PM --><li class="pm-icon"><a href="{posts.U_PM}" title="{L_PRIVATE_MESSAGE}"><span>{L_PRIVATE_MESSAGE}</span></a></li><!-- ENDIF -->
+ 					<!-- IF posts.U_EMAIL --><li class="email-icon"><a href="{posts.U_EMAIL}" title="{L_SEND_EMAIL_USER} {posts.POST_AUTHOR}"><span>{L_SEND_EMAIL_USER} {posts.POST_AUTHOR}</span></a></li><!-- ENDIF -->
+ 					<!-- IF posts.U_WWW --><li class="web-icon"><a href="{posts.U_WWW}" title="{L_VISIT_WEBSITE}: {posts.U_WWW}"><span>{L_WEBSITE}</span></a></li><!-- ENDIF -->
+ 					<!-- IF posts.U_MSN --><li class="msnm-icon"><a href="{posts.U_MSN}" onclick="popup(this.href, 550, 320); return false;" title="{L_MSNM}"><span>{L_MSNM}</span></a></li><!-- ENDIF -->
+ 					<!-- IF posts.U_ICQ --><li class="icq-icon"><a href="{posts.U_ICQ}" onclick="popup(this.href, 550, 320); return false;" title="{L_ICQ}"><span>{L_ICQ}</span></a></li><!-- ENDIF -->
+ 					<!-- IF posts.U_YIM --><li class="yahoo-icon"><a href="{posts.U_YIM}" onclick="popup(this.href, 780, 550); return false;" title="{L_YIM}"><span>{L_YIM}</span></a></li><!-- ENDIF -->
+ 					<!-- IF posts.U_AIM --><li class="aim-icon"><a href="{posts.U_AIM}" onclick="popup(this.href, 550, 320); return false;" title="{L_AIM}"><span>{L_AIM}</span></a></li><!-- ENDIF -->
+ 					<!-- IF posts.U_JABBER --><li class="jabber-icon"><a href="{posts.U_JABBER}" onclick="popup(this.href, 550, 320); return false;" title="{L_JABBER}"><span>{L_JABBER}</span></a></li><!-- ENDIF -->
+ 				</ul>
+ 			</dd>
+ 		<!-- ENDIF -->
+ 		<!-- ENDIF -->
+ 
+ 		</dl>
+ 	<!-- ENDIF -->
+ 
+ 		<div class="back2top"><a href="#wrap" class="top" title="{L_BACK_TO_TOP}">{L_BACK_TO_TOP}</a></div>
+ 
+ 		<span class="corners-bottom"><span></span></span></div>
+ 	</div>
+ 
+ 	<hr class="divider" />
+ <!-- END posts -->
+ 
+ <!-- IF S_QUICK_REPLY -->
+ 	<!-- INCLUDE posting/quickreply_editor.html -->
+ <!-- ENDIF -->
+ 
+ <!-- IF S_NUM_POSTS > 1 or PREVIOUS_PAGE -->
+ 	<form id="viewtopic" method="post" action="{S_TOPIC_ACTION}">
+ 
+ 	<fieldset class="display-options" style="margin-top: 0; ">
+ 		<!-- IF PREVIOUS_PAGE --><a href="{PREVIOUS_PAGE}" class="left-box {S_CONTENT_FLOW_BEGIN}">{L_PREVIOUS}</a><!-- ENDIF -->
+ 		<!-- IF NEXT_PAGE --><a href="{NEXT_PAGE}" class="right-box {S_CONTENT_FLOW_END}">{L_NEXT}</a><!-- ENDIF -->
+ 		<!-- IF not S_IS_BOT -->
+ 		<label>{L_DISPLAY_POSTS}: {S_SELECT_SORT_DAYS}</label>
+ 		<label>{L_SORT_BY} {S_SELECT_SORT_KEY}</label> <label>{S_SELECT_SORT_DIR} <input type="submit" name="sort" value="{L_GO}" class="button2" /></label>
+ 		<!-- ENDIF -->
+ 	</fieldset>
+ 
+ 	</form>
+ 	<hr />
+ <!-- ENDIF -->
+ 
+ <div class="topic-actions">
+ 	<div class="buttons">
+ 	<!-- IF U_POST_REPLY -->
+ 		<div class="<!-- IF S_IS_LOCKED -->locked-icon<!-- ELSE -->reply-icon<!-- ENDIF -->"><a href="{U_POST_REPLY}" title="<!-- IF S_IS_LOCKED -->{L_TOPIC_LOCKED}<!-- ELSE -->{L_POST_REPLY}<!-- ENDIF -->"><span></span><!-- IF S_IS_LOCKED -->{L_TOPIC_LOCKED_SHORT}<!-- ELSE -->{L_POST_REPLY}<!-- ENDIF --></a></div>
+ 	<!-- ENDIF -->
+ 	</div>
+ 
+ 	<!-- IF PAGINATION or TOTAL_POSTS -->
+ 		<div class="pagination">
+ 			{TOTAL_POSTS}
+ 			<!-- IF PAGE_NUMBER --><!-- IF PAGINATION --> &bull; <a href="#" onclick="jumpto(); return false;" title="{L_JUMP_TO_PAGE}">{PAGE_NUMBER}</a> &bull; <span>{PAGINATION}</span><!-- ELSE --> &bull; {PAGE_NUMBER}<!-- ENDIF --><!-- ENDIF -->
+ 		</div>
+ 	<!-- ENDIF -->
+ </div>
+ 
+ <!-- IF S_TOPIC_MOD -->
+ 	<form method="post" action="{S_MOD_ACTION}">
+ 	<fieldset class="quickmod">
+ 		<label for="quick-mod-select">{L_QUICK_MOD}:</label> {S_TOPIC_MOD} <input type="submit" value="{L_GO}" class="button2" />
+ 		{S_FORM_TOKEN}
+ 	</fieldset>
+ 	</form>
+ <!-- ENDIF -->
\ No newline at end of file

Added: trunk/titania/styles/default/template/common/rate.html
==============================================================================
*** trunk/titania/styles/default/template/common/rate.html (added)
--- trunk/titania/styles/default/template/common/rate.html Sat Dec 19 03:24:30 2009
***************
*** 0 ****
--- 1,16 ----
+ <ul class="<!-- IF S_HAS_RATED -->rated<!-- ELSE -->rating<!-- ENDIF -->" id="rating_{OBJECT_ID}">
+ <!-- BEGIN stars -->
+ 	<li><a href="{stars.RATE_URL}"><img id="{OBJECT_ID}_{stars.ID}" alt="{stars.ALT}" title="{stars.ALT}"
+ 	<!-- IF S_HAS_RATED && stars.ID <= OBJECT_RATING -->
+ 		class="green" src="{UA_GREEN_STAR_SRC}"
+ 	<!-- ELSEIF not S_HAS_RATED && stars.ID <= OBJECT_RATING -->
+ 		class="orange" src="{UA_ORANGE_STAR_SRC}"
+ 	<!-- ELSE -->
+ 		class="grey" src="{UA_GREY_STAR_SRC}"
+ 	<!-- ENDIF -->
+ 	/></a></li>
+ <!-- END stars -->
+ 	<li<!-- IF not S_HAS_RATED --> class="hidden"<!-- ENDIF -->><a href="{RATE_URL}">
+ 		<img id="{OBJECT_ID}_remove" class="remove" src="{UA_REMOVE_STAR_SRC}" alt="{L_REMOVE_RATING}" title="{L_REMOVE_RATING}" />
+ 	</a></li>
+ </ul>
\ No newline at end of file

Added: trunk/titania/styles/default/template/common/topic_list.html
==============================================================================
*** trunk/titania/styles/default/template/common/topic_list.html (added)
--- trunk/titania/styles/default/template/common/topic_list.html Sat Dec 19 03:24:30 2009
***************
*** 0 ****
--- 1,85 ----
+ <!-- BEGIN topics -->
+ 	<!-- IF topics.S_FIRST_ROW -->
+ 		<div class="topic-actions">
+ 			<div class="buttons">
+ 			<!-- IF U_POST_TOPIC -->
+ 				<p class="ui-button"><a href="{U_POST_TOPIC}" id="create-topic" class="ui-button ui-state-default ui-corner-all"><span class="ui-icon ui-icon-plus"></span>{L_NEW_TOPIC}</a></p>
+ 			<!-- ENDIF -->
+ 			</div>
+ 
+ 			<!-- IF PAGINATION or TOTAL_POSTS -->
+ 				<div class="pagination">
+ 					<!-- IF U_VIEW_UNREAD_POST and not S_IS_BOT --><a href="{U_VIEW_UNREAD_POST}">{L_VIEW_UNREAD_POST}</a> &bull; <!-- ENDIF -->{TOTAL_POSTS}
+ 					<!-- IF PAGE_NUMBER --><!-- IF PAGINATION --> &bull; <a href="#" onclick="jumpto(); return false;" title="{L_JUMP_TO_PAGE}">{PAGE_NUMBER}</a> &bull; <span>{PAGINATION}</span><!-- ELSE --> &bull; {PAGE_NUMBER}<!-- ENDIF --><!-- ENDIF -->
+ 				</div>
+ 			<!-- ENDIF -->
+ 		</div>
+ 		<div class="clear"></div>
+ 	<!-- ENDIF -->
+ 
+ 	<!-- IF topics.S_TOPIC_TYPE_SWITCH and not topics.S_FIRST_ROW -->
+ 		</ul>
+ 		<span class="corners-bottom"><span></span></span></div>
+ 	</div>
+ 	<!-- ENDIF -->
+ 
+ 	<!-- IF topics.S_FIRST_ROW or topics.S_TOPIC_TYPE_SWITCH -->
+ 		<div class="forumbg<!-- IF topics.TOPIC_STICKY --> announcement<!-- ENDIF -->">
+ 		<div class="inner"><span class="corners-top"><span></span></span>
+ 		<ul class="topiclist">
+ 			<li class="header">
+ 				<dl class="icon">
+ 					<dt><!-- IF topics.TOPIC_STICKY -->{L_STICKIES}<!-- ELSE -->{L_TOPICS}<!-- ENDIF --></dt>
+ 					<dd class="posts">{L_REPLIES}</dd>
+ 					<dd class="views">{L_VIEWS}</dd>
+ 					<dd class="lastpost"><span>{L_LAST_POST}</span></dd>
+ 				</dl>
+ 			</li>
+ 		</ul>
+ 		<ul class="topiclist topics">
+ 	<!-- ENDIF -->
+ 
+ 		<li class="row<!-- IF topics.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF --><!-- IF topics.S_POST_STICKY --> sticky<!-- ENDIF --><!-- IF topics.S_TOPIC_REPORTED --> reported<!-- ENDIF -->">
+ 			<dl class="icon" style="background-image: url({topics.TOPIC_FOLDER_IMG_SRC}); background-repeat: no-repeat;">
+ 				<dt title="{topics.TOPIC_FOLDER_IMG_ALT}"><!-- IF topics.S_UNREAD_TOPIC --><a href="{topics.U_NEWEST_POST}">{NEWEST_POST_IMG}</a> <!-- ENDIF --><a href="{topics.U_VIEW_TOPIC}" class="topictitle">{topics.TOPIC_SUBJECT}</a>
+ 					<!-- IF not topics.TOPIC_APPROVED or topics.S_POSTS_UNAPPROVED --><a href="{topics.U_MCP_QUEUE}">{topics.UNAPPROVED_IMG}</a> <!-- ENDIF -->
+ 					<!-- IF topics.TOPIC_REPORTED --><a href="{topics.U_MCP_REPORT}">{REPORTED_IMG}</a><!-- ENDIF --><br />
+ 					<!-- IF topics.PAGINATION --><strong class="pagination"><span>{topics.PAGINATION}</span></strong><!-- ENDIF -->
+ 					<!-- IF topics.ATTACH_ICON_IMG -->{topics.ATTACH_ICON_IMG} <!-- ENDIF -->{L_POST_BY_AUTHOR} {topics.TOPIC_FIRST_POST_USER_FULL} &raquo; {topics.TOPIC_FIRST_POST_TIME}
+ 				</dt>
+ 				<dd class="posts">{topics.TOPIC_POSTS} <dfn>{L_REPLIES}</dfn></dd>
+ 				<dd class="views">{topics.TOPIC_VIEWS} <dfn>{L_VIEWS}</dfn></dd>
+ 				<dd class="lastpost"><span><dfn>{L_LAST_POST} </dfn>{L_POST_BY_AUTHOR} {topics.TOPIC_LAST_POST_USER_FULL}
+ 					<!-- IF not S_IS_BOT --><a href="{topics.U_VIEW_LAST_POST}">{LAST_POST_IMG}</a> <!-- ENDIF --><br />{topics.TOPIC_LAST_POST_TIME}</span>
+ 				</dd>
+ 			</dl>
+ 		</li>
+ 
+ 	<!-- IF topics.S_LAST_ROW -->
+ 				</ul>
+ 			<span class="corners-bottom"><span></span></span></div>
+ 		</div>
+ 
+ 		<div class="topic-actions">
+ 			<div class="buttons">
+ 			<!-- IF U_POST_TOPIC -->
+ 				<p class="ui-button"><a href="{U_POST_TOPIC}" id="create-topic" class="ui-button ui-state-default ui-corner-all"><span class="ui-icon ui-icon-plus"></span>{L_NEW_TOPIC}</a></p>
+ 			<!-- ENDIF -->
+ 			</div>
+ 
+ 			<!-- IF PAGINATION or TOTAL_POSTS -->
+ 				<div class="pagination">
+ 					<!-- IF U_VIEW_UNREAD_POST and not S_IS_BOT --><a href="{U_VIEW_UNREAD_POST}">{L_VIEW_UNREAD_POST}</a> &bull; <!-- ENDIF -->{TOTAL_POSTS}
+ 					<!-- IF PAGE_NUMBER --><!-- IF PAGINATION --> &bull; <a href="#" onclick="jumpto(); return false;" title="{L_JUMP_TO_PAGE}">{PAGE_NUMBER}</a> &bull; <span>{PAGINATION}</span><!-- ELSE --> &bull; {PAGE_NUMBER}<!-- ENDIF --><!-- ENDIF -->
+ 				</div>
+ 			<!-- ENDIF -->
+ 		</div>
+ 	<!-- ENDIF -->
+ 
+ <!-- BEGINELSE -->
+ 	<div class="panel">
+ 		<div class="inner"><span class="corners-top"><span></span></span>
+ 		<strong>{L_NO_TOPICS}</strong>
+ 		<span class="corners-bottom"><span></span></span></div>
+ 	</div>
+ <!-- END topics -->
\ No newline at end of file

Removed: trunk/titania/styles/default/template/confirm_body.html
==============================================================================
*** trunk/titania/styles/default/template/confirm_body.html (original)
--- trunk/titania/styles/default/template/confirm_body.html (removed)
***************
*** 1,20 ****
- <!-- INCLUDE overall_header.html -->
- 
- <form id="confirm" action="{S_CONFIRM_ACTION}" method="post">
- <div class="panel">
- 	<div class="inner"><span class="corners-top"><span></span></span>
- 
- 	<h2>{MESSAGE_TITLE}</h2>
- 	<p>{MESSAGE_TEXT}</p>
- 	
- 	<fieldset class="submit-buttons">
- 		{S_HIDDEN_FIELDS}
- 		<input type="submit" name="confirm" value="{L_YES}" class="button2" />&nbsp; 
- 		<input type="submit" name="cancel" value="{L_NO}" class="button2" />
- 	</fieldset>
- 
- 	<span class="corners-bottom"><span></span></span></div>
- </div>
- </form>
- 
- <!-- INCLUDE overall_footer.html -->
--- 0 ----

Removed: trunk/titania/styles/default/template/contrib_list.html
==============================================================================
*** trunk/titania/styles/default/template/contrib_list.html (original)
--- trunk/titania/styles/default/template/contrib_list.html (removed)
***************
*** 1,21 ****
- <!-- IF not .categories -->
- 
- <div class="forumbg forumbg-table">
- 	<div class="inner"><span class="corners-top"><span></span></span>
- 
- 	<table class="table1" cellspacing="1" id="modlist">
- 		<!-- BEGIN contribs -->
- 			<tr class="<!-- IF contribs.S_ROW_COUNT is even -->bg1<!-- ELSE -->bg2<!-- ENDIF -->">
- 				<td><a href="{contribs.U_VIEW_CONTRIB}">{contribs.CONTRIB_NAME}</a><br />
- 				{L_AUTHOR}: {contribs.CONTRIB_USERNAME_FULL} </td>
- 			</tr>
- 		<!-- BEGINELSE -->
- 			<tr class="bg1">
- 				<td align="center">{L_NO_CONTRIBS}</td>
- 			</tr>
- 		<!-- END contribs -->
- 	</table>
- 
- 	<span class="corners-bottom"><span></span></span></div>
- </div>
- <!-- ENDIF -->
\ No newline at end of file
--- 0 ----

Removed: trunk/titania/styles/default/template/contributions/contribution_email.html
==============================================================================
*** trunk/titania/styles/default/template/contributions/contribution_email.html (original)
--- trunk/titania/styles/default/template/contributions/contribution_email.html (removed)
***************
*** 1,52 ****
- <!-- INCLUDE contributions/details_header.html -->
- 
- 	<h2 class="section-title">{CONTRIB_NAME} :: {L_CONTRIB_RECOMMEND}</h2>
- 
- <form method="post" action="{S_POST_ACTION}" id="post">
- 	<div class="panel">
- 		<div class="inner"><span class="corners-top"><span></span></span>
- 
- 		<div class="content">
- 			<!-- IF ERROR_MESSAGE --><p class="error">{ERROR_MESSAGE}</p><!-- ENDIF -->
- 			<fieldset class="fields2">
- 			<dl>
- 				<dt><label for="email">{L_EMAIL_ADDRESS}:</label></dt>
- 				<dd><input class="inputbox autowidth" type="text" name="email" id="email" size="50" maxlength="100" tabindex="2" value="{EMAIL}" /></dd>
- 			</dl>
- 			<dl>
- 				<dt><label for="name">{L_REAL_NAME}:</label></dt>
- 				<dd><input class="inputbox autowidth" type="text" name="name" id="name" size="50" tabindex="3" value="{NAME}" /></dd>
- 			</dl>
- 			<dl>
- 				<dt><label for="lang">{L_DEST_LANG}:</label><br />
- 					<span>{L_DEST_LANG_EXPLAIN}</span></dt>
- 				<dd><select name="lang">{S_LANG_OPTIONS}</select></dd>
- 			</dl>
- 			<dl>
- 				<dt><label for="message">{L_MESSAGE_BODY}:</label><br />
- 				<span>{L_EMAIL_MOD_BODY_EXPLAIN}</span></dt>
- 				<dd><textarea class="inputbox" name="message" id="message" rows="15" cols="76" tabindex="4">{MESSAGE}</textarea></dd>
- 			</dl>
- 			<dl>
- 				<dt>&nbsp;</dt>
- 				<dd><label for="cc_email"><input type="checkbox" name="cc_email" id="cc_email" value="1" checked="checked" tabindex="5" /> {L_CC_EMAIL}</label></dd>
- 			</dl>
- 			</fieldset>
- 		</div>
- 
- 		<span class="corners-bottom"><span></span></span></div>
- 	</div>
- 
- 	<div class="panel">
- 		<div class="inner"><span class="corners-top"><span></span></span>
- 		<div class="content">
- 			<fieldset class="submit-buttons">
- 				<input type="submit" tabindex="6" name="submit" class="button1" value="{L_SEND_EMAIL}" />
- 			</fieldset>
- 		</div>
- 		<span class="corners-bottom"><span></span></span></div>
- 	{S_FORM_TOKEN}
- 	</div>
- </form>
- 
- <!-- INCLUDE contributions/details_footer.html -->
\ No newline at end of file
--- 0 ----

Modified: trunk/titania/styles/default/template/contributions/contribution_footer.html
==============================================================================
*** trunk/titania/styles/default/template/contributions/contribution_footer.html (original)
--- trunk/titania/styles/default/template/contributions/contribution_footer.html Sat Dec 19 03:24:30 2009
***************
*** 9,12 ****
  </div>
  <div class="clear"></div>
  
! <!-- INCLUDE overall_footer.html -->
\ No newline at end of file
--- 9,12 ----
  </div>
  <div class="clear"></div>
  
! <!-- INCLUDE common/overall_footer.html -->
\ No newline at end of file

Modified: trunk/titania/styles/default/template/contributions/contribution_header.html
==============================================================================
*** trunk/titania/styles/default/template/contributions/contribution_header.html (original)
--- trunk/titania/styles/default/template/contributions/contribution_header.html Sat Dec 19 03:24:30 2009
***************
*** 1,4 ****
! <!-- INCLUDE overall_header.html -->
  
  <div class="main-content">
  	<div class="main-column">
--- 1,4 ----
! <!-- INCLUDE common/overall_header.html -->
  
  <div class="main-content">
  	<div class="main-column">

Removed: trunk/titania/styles/default/template/contributions/contribution_new.html
==============================================================================
*** trunk/titania/styles/default/template/contributions/contribution_new.html (original)
--- trunk/titania/styles/default/template/contributions/contribution_new.html (removed)
***************
*** 1,6 ****
- <!-- INCLUDE contributions/contribution_header.html -->
- 
- <h2 class="section-title">{PAGE_TITLE} :: {L_NEW_CONTRIBUTION}</h2>
- 
- 
- <!-- INCLUDE contributions/contribution_footer.html -->
\ No newline at end of file
--- 0 ----

Modified: trunk/titania/styles/default/template/contributions/contribution_previews.html
==============================================================================
*** trunk/titania/styles/default/template/contributions/contribution_previews.html (original)
--- trunk/titania/styles/default/template/contributions/contribution_previews.html Sat Dec 19 03:24:30 2009
***************
*** 45,51 ****
  <hr />
  
  <div class="upload_container">
! 	<!-- INCLUDE uploadify.html -->
  	
  
  	<div class="upload_item">
--- 45,51 ----
  <hr />
  
  <div class="upload_container">
! 	<!-- INCLUDE uploadify/uploadify.html -->
  	
  
  	<div class="upload_item">

Modified: trunk/titania/styles/default/template/contributions/contribution_revisions.html
==============================================================================
*** trunk/titania/styles/default/template/contributions/contribution_revisions.html (original)
--- trunk/titania/styles/default/template/contributions/contribution_revisions.html Sat Dec 19 03:24:30 2009
***************
*** 54,60 ****
  <hr />
  
  <div class="upload_container">
! 	<!-- INCLUDE uploadify.html -->
  	
  
  	<div class="upload_item">
--- 54,60 ----
  <hr />
  
  <div class="upload_container">
! 	<!-- INCLUDE uploadify/uploadify.html -->
  	
  
  	<div class="upload_item">

Modified: trunk/titania/styles/default/template/contributions/contribution_support.html
==============================================================================
*** trunk/titania/styles/default/template/contributions/contribution_support.html (original)
--- trunk/titania/styles/default/template/contributions/contribution_support.html Sat Dec 19 03:24:30 2009
***************
*** 3,11 ****
  <h2 class="section-title">{PAGE_TITLE}</h2>
  
  <!-- IF S_TOPIC_LIST -->
! 	<!-- INCLUDE topic_list.html -->
  <!-- ELSE -->
! 	<!-- INCLUDE post_list.html -->
  <!-- ENDIF -->
  
  <!-- INCLUDE contributions/contribution_footer.html -->
\ No newline at end of file
--- 3,11 ----
  <h2 class="section-title">{PAGE_TITLE}</h2>
  
  <!-- IF S_TOPIC_LIST -->
! 	<!-- INCLUDE common/topic_list.html -->
  <!-- ELSE -->
! 	<!-- INCLUDE common/post_list.html -->
  <!-- ENDIF -->
  
  <!-- INCLUDE contributions/contribution_footer.html -->
\ No newline at end of file

Modified: trunk/titania/styles/default/template/index_body.html
==============================================================================
*** trunk/titania/styles/default/template/index_body.html (original)
--- trunk/titania/styles/default/template/index_body.html Sat Dec 19 03:24:30 2009
***************
*** 1,4 ****
! <!-- INCLUDE overall_header.html -->
  
  <h2 class="solo">{L_CUSTOMISATION_DATABASE}</h2>
  
--- 1,4 ----
! <!-- INCLUDE common/overall_header.html -->
  
  <h2 class="solo">{L_CUSTOMISATION_DATABASE}</h2>
  
***************
*** 23,31 ****
  </div>
  <!-- ENDIF -->
  
! <!-- INCLUDE category_list.html -->
  
! <!-- INCLUDE contrib_list.html -->
  
  <!-- IF U_CREATE_CONTRIBUTION -->
  <div class="menu_bar">
--- 23,31 ----
  </div>
  <!-- ENDIF -->
  
! <!-- INCLUDE common/category_list.html -->
  
! <!-- INCLUDE common/contrib_list.html -->
  
  <!-- IF U_CREATE_CONTRIBUTION -->
  <div class="menu_bar">
***************
*** 48,51 ****
  </div>
  <!-- ENDIF -->
  
! <!-- INCLUDE overall_footer.html -->
\ No newline at end of file
--- 48,51 ----
  </div>
  <!-- ENDIF -->
  
! <!-- INCLUDE common/overall_footer.html -->
\ No newline at end of file

Removed: trunk/titania/styles/default/template/json_response.html
==============================================================================
*** trunk/titania/styles/default/template/json_response.html (original)
--- trunk/titania/styles/default/template/json_response.html (removed)
***************
*** 1 ****
- {JSON}
\ No newline at end of file
--- 0 ----

Removed: trunk/titania/styles/default/template/login_body.html
==============================================================================
*** trunk/titania/styles/default/template/login_body.html (original)
--- trunk/titania/styles/default/template/login_body.html (removed)
***************
*** 1,67 ****
- <!-- INCLUDE overall_header.html -->
- 
- <form action="{S_LOGIN_ACTION}" method="post" id="login">
- <div class="panel">
- 	<div class="inner"><span class="corners-top"><span></span></span>
- 
- 	<div class="content">
- 		<h2><!-- IF LOGIN_EXPLAIN -->{LOGIN_EXPLAIN}<!-- ELSE -->{L_LOGIN}<!-- ENDIF --></h2>
- 		
- 		<fieldset <!-- IF not S_CONFIRM_CODE -->class="fields1"<!-- ELSE -->class="fields2"<!-- ENDIF -->>
- 		<!-- IF LOGIN_ERROR --><div class="error">{LOGIN_ERROR}</div><!-- ENDIF -->
- 		<dl>
- 			<dt><label for="{USERNAME_CREDENTIAL}">{L_USERNAME}:</label></dt>
- 			<dd><input type="text" tabindex="1" name="{USERNAME_CREDENTIAL}" id="{USERNAME_CREDENTIAL}" size="25" value="{USERNAME}" class="inputbox autowidth" /></dd>
- 		</dl>
- 		<dl>
- 			<dt><label for="{PASSWORD_CREDENTIAL}">{L_PASSWORD}:</label></dt>
- 			<dd><input type="password" tabindex="2" id="{PASSWORD_CREDENTIAL}" name="{PASSWORD_CREDENTIAL}" size="25" class="inputbox autowidth" /></dd>
- 			<!-- IF S_DISPLAY_FULL_LOGIN and (U_SEND_PASSWORD or U_RESEND_ACTIVATION) -->
- 				<!-- IF U_SEND_PASSWORD --><dd><a href="{U_SEND_PASSWORD}">{L_FORGOT_PASS}</a></dd><!-- ENDIF -->
- 				<!-- IF U_RESEND_ACTIVATION --><dd><a href="{U_RESEND_ACTIVATION}">{L_RESEND_ACTIVATION}</a></dd><!-- ENDIF -->
- 			<!-- ENDIF -->
- 		</dl>
- 		
- 		<!-- IF S_CONFIRM_CODE -->
- 		<dl>
- 			<dt><label for="confirm_code">{L_CONFIRM_CODE}:</label><br /><span>{L_CONFIRM_CODE_EXPLAIN}</span></dt>
- 				<dd><input type="hidden" name="confirm_id" value="{CONFIRM_ID}" />{CONFIRM_IMAGE}</dd>
- 				<dd><input type="text" name="confirm_code" id="confirm_code" size="8" maxlength="8" tabindex="3" class="inputbox narrow" title="{L_CONFIRM_CODE}" /></dd>
- 		</dl>
- 		<!-- ENDIF -->
- 		
- 		<!-- IF S_DISPLAY_FULL_LOGIN -->
- 		<dl>
- 			<!-- IF S_AUTOLOGIN_ENABLED --><dd><label for="autologin"><input type="checkbox" name="autologin" id="autologin" tabindex="4" /> {L_LOG_ME_IN}</label></dd><!-- ENDIF -->
- 			<dd><label for="viewonline"><input type="checkbox" name="viewonline" id="viewonline" tabindex="5" /> {L_HIDE_ME}</label></dd>
- 		</dl>
- 		<!-- ENDIF -->
- 		<dl>
- 			<dt>&nbsp;</dt>
- 			<dd>{S_HIDDEN_FIELDS}<input type="submit" name="login" tabindex="6" value="{L_LOGIN}" class="button1" /></dd>
- 		</dl>
- 	
- 		</fieldset>
- 	</div>
- 	<span class="corners-bottom"><span></span></span></div>
- </div>
- 
- <!-- IF not S_ADMIN_AUTH and S_REGISTER_ENABLED -->
- 	<div class="panel">
- 		<div class="inner"><span class="corners-top"><span></span></span>
- 
- 		<div class="content">
- 			<h3>{L_REGISTER}</h3>
- 			<p>{L_LOGIN_INFO}</p>
- 			<p><strong><a href="{U_TERMS_USE}">{L_TERMS_USE}</a> | <a href="{U_PRIVACY}">{L_PRIVACY}</a></strong></p>
- 			<hr class="dashed" />
- 			<p><a href="{U_REGISTER}" class="button2">{L_REGISTER}</a></p>
- 		</div>
- 
- 		<span class="corners-bottom"><span></span></span></div>
- 	</div>
- <!-- ENDIF -->
- 
- </form>
- 
- <!-- INCLUDE overall_footer.html -->
\ No newline at end of file
--- 0 ----

Removed: trunk/titania/styles/default/template/message_body.html
==============================================================================
*** trunk/titania/styles/default/template/message_body.html (original)
--- trunk/titania/styles/default/template/message_body.html (removed)
***************
*** 1,11 ****
- <!-- INCLUDE overall_header.html -->
- 
- <div class="panel" id="message">
- 	<div class="inner"><span class="corners-top"><span></span></span>
- 	<h2>{MESSAGE_TITLE}</h2>
- 	<p>{MESSAGE_TEXT}</p>
- 	<!-- IF SCRIPT_NAME == "search" and not S_BOARD_DISABLED and not S_NO_SEARCH --><p><a href="{U_SEARCH}" class="{S_CONTENT_FLOW_BEGIN}">{L_RETURN_TO_SEARCH_ADV}</a></p><!-- ENDIF -->
- 	<span class="corners-bottom"><span></span></span></div>
- </div>
- 
- <!-- INCLUDE overall_footer.html -->
\ No newline at end of file
--- 0 ----

Removed: trunk/titania/styles/default/template/overall_footer.html
==============================================================================
*** trunk/titania/styles/default/template/overall_footer.html (original)
--- trunk/titania/styles/default/template/overall_footer.html (removed)
***************
*** 1,58 ****
- 	<!-- IF not S_USER_LOGGED_IN and not S_IS_BOT -->
- 		<form method="post" action="{S_LOGIN_ACTION}" class="headerspace">
- 		<h3><a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a><!-- IF S_REGISTER_ENABLED -->&nbsp; &bull; &nbsp;<a href="{U_REGISTER}">{L_REGISTER}</a><!-- ENDIF --></h3>
- 			<fieldset class="quick-login">
- 				<label for="username">{L_USERNAME}:</label>&nbsp;<input type="text" name="username" id="username" size="10" class="inputbox" title="{L_USERNAME}" />  
- 				<label for="password">{L_PASSWORD}:</label>&nbsp;<input type="password" name="password" id="password" size="10" class="inputbox" title="{L_PASSWORD}" />
- 				<!-- IF S_AUTOLOGIN_ENABLED -->
- 					| <label for="autologin">{L_LOG_ME_IN} <input type="checkbox" name="autologin" id="autologin" /></label>
- 				<!-- ENDIF -->
- 				<input type="hidden" name="redirect" value="{LOGIN_REDIRECT}" />
- 				<input type="submit" name="login" value="{L_LOGIN}" class="button2" />
- 			</fieldset>
- 		</form>
- 	<!-- ENDIF -->
- 	</div>
- 
- 	<div id="page-footer">
- 
- 		<div class="navbar">
- 			<div class="inner"><span class="corners-top"><span></span></span>
- 
- 			<ul class="linklist">
- 				<li class="icon-home"><a href="{U_INDEX}" accesskey="h">{L_INDEX}</a></li>
- 				<li class="rightside"><!-- IF not S_IS_BOT --><a href="{U_DELETE_COOKIES}">{L_DELETE_COOKIES}</a><!-- ENDIF --></li>
- 			</ul>
- 
- 			<span class="corners-bottom"><span></span></span></div>
- 		</div>
- 
- 	<!--
- 		We request you retain the full copyright notice below including the link to www.phpbb.com.
- 		This not only gives respect to the large amount of time given freely by the developers
- 		but also helps build interest, traffic and use of phpBB3. If you (honestly) cannot retain
- 		the full copyright we ask you at least leave in place the "Powered by phpBB" line, with
- 		"phpBB" linked to www.phpbb.com. If you refuse to include even this then support on our
- 		forums may be affected.
- 
- 		The phpBB Group : 2006
- 	//-->
- 
- 		<div class="copyright">Titania &copy; 2008 phpBB Customisation Database Team<br />
- 		Powered by <a href="http://www.phpbb.com/">phpBB</a> &copy; 2000, 2002, 2005, 2007 phpBB Group
- 			<!-- IF TRANSLATION_INFO --><br />{TRANSLATION_INFO}<!-- ENDIF -->
- 			<!-- IF DEBUG_OUTPUT --><br />{DEBUG_OUTPUT}<!-- ENDIF -->
- 			<!-- IF U_ACP --><br /><strong>[ <a href="{U_ACP}">{L_ACP}</a>
- 			<!-- IF U_PURGE_CACHE --> | <a href="{U_PURGE_CACHE}" id="purge-cache">{L_PURGE_CACHE}</a><!-- ENDIF --> ]</strong><!-- ENDIF -->
- 		</div>
- 	</div>
- 
- </div>
- 
- <div>
- 	<a id="bottom" name="bottom" accesskey="z"></a>
- 	<!-- IF not S_IS_BOT -->{RUN_CRON_TASK}<!-- ENDIF -->
- </div>
- 
- </body>
- </html>
\ No newline at end of file
--- 0 ----

Removed: trunk/titania/styles/default/template/overall_header.html
==============================================================================
*** trunk/titania/styles/default/template/overall_header.html (original)
--- trunk/titania/styles/default/template/overall_header.html (removed)
***************
*** 1,147 ****
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}" xml:lang="{S_USER_LANG}">
- <head>
- 
- <meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />
- <meta http-equiv="content-style-type" content="text/css" />
- <meta http-equiv="content-language" content="{S_USER_LANG}" />
- <meta http-equiv="imagetoolbar" content="no" />
- <meta name="resource-type" content="document" />
- <meta name="distribution" content="global" />
- <meta name="copyright" content="2008 phpBB Customisation Database Team" />
- <meta name="keywords" content="" />
- <meta name="description" content="{META_DESCRIPTION}" />
- {META}
- <title>{PAGE_TITLE} &bull; {SITENAME}</title>
- 
- <!--
- 	phpBB style name: prosilver
- 	Based on style:   prosilver (this is the default phpBB3 style)
- 	Original author:  Tom Beddard ( http://www.subBlue.com/ )
- 	Modified by:
- 
- 	NOTE: This page was generated by phpBB, the free open-source bulletin board package.
- 	      The phpBB Group is not responsible for the content of this page and forum. For more information
- 	      about phpBB please visit http://www.phpbb.com
- -->
- 
- <script type="text/javascript" src="{TITANIA_ROOT_PATH}js/jquery-1.3.2.min.js"></script>
- <script type="text/javascript" src="{TITANIA_ROOT_PATH}js/jquery-ui-1.7.2.custom.min.js"></script>
- <script type="text/javascript" src="{TITANIA_ROOT_PATH}js/common.js"></script>
- 
- <script type="text/javascript">
- // <![CDATA[
- 	var spacer_img = '{U_BASE_URL}/images/spacer.gif';
- 	var jump_page = '{LA_JUMP_PAGE}:';
- 	var on_page = '{ON_PAGE}';
- 	var per_page = '{PER_PAGE}';
- 	var base_url = '{A_BASE_URL}';
- 	var style_cookie = 'phpBBstyle';
- 	var onload_functions = new Array();
- 	var onunload_functions = new Array();
- 
- 	// Rating Stuff
- 	var grey_star = new Image(16,16);
- 	grey_star.src = "{UA_GREY_STAR_SRC}";
- 	var green_star= new Image(16,16);
- 	green_star.src = "{UA_GREEN_STAR_SRC}";
- 	var red_star= new Image(16,16);
- 	red_star.src = "{UA_RED_STAR_SRC}";
- 	var orange_star= new Image(16,16);
- 	orange_star.src = "{UA_ORANGE_STAR_SRC}";
- 	var max_rating = "{UA_MAX_RATING}";
- 
- 	<!-- IF S_HIDE_ERROR_BOX -->
- 	$(document).ready(function() {
- 		setTimeout("$('.{ERRORBOX_CLASS}').fadeOut('slow');", 5000);
- 	});
- 	<!-- ENDIF -->
- // ]]>
- </script>
- 
- <link href="{T_TITANIA_THEME_PATH}/print.css" rel="stylesheet" type="text/css" media="print" title="printonly" />
- <link href="{T_STYLESHEET_LINK}" rel="stylesheet" type="text/css" media="screen, projection" />
- <link href="{T_TITANIA_STYLESHEET}" rel="stylesheet" type="text/css" media="screen, projection" />
- 
- <!-- IF S_LIGHTBOX -->
- <script type="text/javascript" src="{TITANIA_ROOT_PATH}js/jquery.lightbox-0.5.js"></script>
- <!-- ENDIF -->
- 
- <!-- IF S_CONTENT_DIRECTION eq 'rtl' -->
- 	<link href="{T_TITANIA_THEME_PATH}/bidi.css" rel="stylesheet" type="text/css" media="screen, projection" />
- <!-- ENDIF -->
- 
- </head>
- 
- <body id="phpbb" class="section-{SCRIPT_NAME} {S_CONTENT_DIRECTION}">
- 
- <div id="wrap">
- 	<a id="top" name="top" accesskey="t"></a>
- 	<div id="page-header">
- 		<div class="headerbar">
- 			<div class="inner"><span class="corners-top"><span></span></span>
- 
- 			<div id="site-description">
- 				<a href="{U_SITE_ROOT}" title="{L_SITE_INDEX}" id="logo">{SITE_LOGO_IMG}</a>
- 				<h1>{SITENAME}</h1>
- 				<p>{SITE_DESCRIPTION}</p>
- 				<p style="display: none;"><a href="#start_here">{L_SKIP}</a></p>
- 			</div>
- 
- 			<span class="corners-bottom"><span></span></span></div>
- 		</div>
- 
- 		<div class="navbar">
- 			<div class="inner"><span class="corners-top"><span></span></span>
- 
- 			<ul class="linklist navlinks">
- 				<li class="icon-home"><a href="{U_SITE_ROOT}" accesskey="h">{L_SITE_INDEX}</a> <!-- BEGIN nav_header --> <strong>&#8249;</strong> <a href="{nav_header.U_TITLE}">{nav_header.L_TITLE}</a><!-- END nav_header --></li>
- 			</ul>
- 
- 			<!-- IF not S_IS_BOT and S_USER_LOGGED_IN -->
- 			<ul class="linklist leftside">
- 				<!-- IF U_MY_CONTRIBUTIONS --><li class="icon-ucp"><a href="{U_MY_CONTRIBUTIONS}" title="{L_MY_CONTRIBUTIONS}">{L_MY_CONTRIBUTIONS}</a></li><!-- ENDIF -->
- 			</ul>
- 			<!-- ENDIF -->
- 
- 			<ul class="linklist rightside">
- 				<!-- IF not S_IS_BOT -->
- 					<!-- IF not S_USER_LOGGED_IN and S_REGISTER_ENABLED --><li class="icon-register"><a href="{U_REGISTER}">{L_REGISTER}</a></li><!-- ENDIF -->
- 					<li class="icon-logout"><a href="{U_LOGIN_LOGOUT}" title="{L_LOGIN_LOGOUT}" accesskey="l">{L_LOGIN_LOGOUT}</a></li>
- 				<!-- ENDIF -->
- 			</ul>
- 
- 			<span class="corners-bottom"><span></span></span></div>
- 		</div>
- 	</div>
- 
- 	<a name="start_here"></a>
- 	<div id="page-body">
- 		<!-- IF S_BOARD_DISABLED and S_USER_LOGGED_IN and (U_MCP or U_ACP) -->
- 		<div id="message" class="rules">
- 			<div class="inner"><span class="corners-top"><span></span></span>
- 				<strong>{L_INFORMATION}:</strong> {L_BOARD_DISABLED}
- 			<span class="corners-bottom"><span></span></span></div>
- 		</div>
- 		<!-- ENDIF -->
- 
- 		<!-- IF .errorbox -->
- 		<div id="errorbox" class="errorbox">
- 			<div class="inner"><span class="corners-top"><span></span></span>
- 			<!-- IF ERRORBOX_TITLE --><h3>{ERRORBOX_TITLE}</h3><!-- ENDIF -->
- 			<!-- BEGIN errorbox -->
- 				<p>{errorbox.MESSAGE}</p>
- 			<!-- END errorbox -->
- 			<span class="corners-bottom"><span></span></span></div>
- 		</div>
- 		<!-- ENDIF -->
- 		<!-- IF .successbox -->
- 		<div id="successbox" class="successbox">
- 			<div class="inner"><span class="corners-top"><span></span></span>
- 			<!-- IF SUCCESSBOX_TITLE --><h3>{SUCCESSBOX_TITLE}</h3><!-- ENDIF -->
- 			<!-- BEGIN successbox -->
- 				<p>{successbox.MESSAGE}</p>
- 			<!-- END successbox -->
- 			<span class="corners-bottom"><span></span></span></div>
- 		</div>
- 		<!-- ENDIF -->
--- 0 ----

Removed: trunk/titania/styles/default/template/post_list.html
==============================================================================
*** trunk/titania/styles/default/template/post_list.html (original)
--- trunk/titania/styles/default/template/post_list.html (removed)
***************
*** 1,169 ****
- <div class="topic-actions">
- 
- 	<div class="buttons">
- 	<!-- IF U_POST_REPLY -->
- 		<div class="<!-- IF S_IS_LOCKED -->locked-icon<!-- ELSE -->reply-icon<!-- ENDIF -->"><a href="{U_POST_REPLY}" title="<!-- IF S_IS_LOCKED -->{L_TOPIC_LOCKED}<!-- ELSE -->{L_POST_REPLY}<!-- ENDIF -->"><span></span><!-- IF S_IS_LOCKED -->{L_TOPIC_LOCKED_SHORT}<!-- ELSE -->{L_POST_REPLY}<!-- ENDIF --></a></div>
- 	<!-- ENDIF -->
- 	</div>
- 
- 	<!-- IF S_DISPLAY_SEARCHBOX -->
- 		<div class="search-box">
- 			<form method="post" id="topic-search" action="{S_SEARCHBOX_ACTION}">
- 			<fieldset>
- 				<input class="inputbox search tiny"  type="text" name="keywords" id="search_keywords" size="20" value="{L_SEARCH_TOPIC}" onclick="if(this.value=='{LA_SEARCH_TOPIC}')this.value='';" onblur="if(this.value=='')this.value='{LA_SEARCH_TOPIC}';" />
- 				<input class="button2" type="submit" value="{L_SEARCH}" />
- 				<input type="hidden" value="{TOPIC_ID}" name="t" />
- 				<input type="hidden" value="msgonly" name="sf" />
- 			</fieldset>
- 			</form>
- 		</div>
- 	<!-- ENDIF -->
- 
- 	<!-- IF PAGINATION or TOTAL_POSTS -->
- 		<div class="pagination">
- 			<!-- IF U_VIEW_UNREAD_POST and not S_IS_BOT --><a href="{U_VIEW_UNREAD_POST}">{L_VIEW_UNREAD_POST}</a> &bull; <!-- ENDIF -->{TOTAL_POSTS}
- 			<!-- IF PAGE_NUMBER --><!-- IF PAGINATION --> &bull; <a href="#" onclick="jumpto(); return false;" title="{L_JUMP_TO_PAGE}">{PAGE_NUMBER}</a> &bull; <span>{PAGINATION}</span><!-- ELSE --> &bull; {PAGE_NUMBER}<!-- ENDIF --><!-- ENDIF -->
- 		</div>
- 	<!-- ENDIF -->
- 
- </div>
- <div class="clear"></div>
- 
- <!-- BEGIN posts -->
- 	<!-- IF posts.S_FIRST_UNREAD --><a id="unread"></a><!-- ENDIF -->
- 	<div id="p{posts.POST_ID}" class="post <!-- IF posts.S_ROW_COUNT is odd -->bg1<!-- ELSE -->bg2<!-- ENDIF --><!-- IF posts.S_UNREAD_POST --> unreadpost<!-- ENDIF --><!-- IF posts.S_POST_REPORTED --> reported<!-- ENDIF --><!-- IF posts.S_ONLINE and not posts.S_IGNORE_POST --> online<!-- ENDIF -->">
- 		<div class="inner"><span class="corners-top"><span></span></span>
- 
- 		<div class="postbody">
- 			<!-- IF posts.S_IGNORE_POST -->
- 				<div class="ignore">{posts.L_IGNORE_POST}</div>
- 			<!-- ELSE -->
- 
- 		<!-- IF not S_IS_BOT -->
- 			<!-- IF posts.U_EDIT or posts.U_DELETE or posts.U_REPORT or posts.U_WARN or posts.U_INFO or posts.U_QUOTE -->
- 				<ul class="profile-icons">
- 					<!-- IF posts.U_EDIT --><li class="edit-icon"><a href="{posts.U_EDIT}" title="{L_EDIT_POST}"><span>{L_EDIT_POST}</span></a></li><!-- ENDIF -->
- 					<!-- IF posts.U_DELETE --><li class="delete-icon"><a href="{posts.U_DELETE}" title="{L_DELETE_POST}"><span>{L_DELETE_POST}</span></a></li><!-- ENDIF -->
- 					<!-- IF posts.U_REPORT --><li class="report-icon"><a href="{posts.U_REPORT}" title="{L_REPORT_POST}"><span>{L_REPORT_POST}</span></a></li><!-- ENDIF -->
- 					<!-- IF posts.U_WARN --><li class="warn-icon"><a href="{posts.U_WARN}" title="{L_WARN_USER}"><span>{L_WARN_USER}</span></a></li><!-- ENDIF -->
- 					<!-- IF posts.U_INFO --><li class="info-icon"><a href="{posts.U_INFO}" title="{L_INFORMATION}"><span>{L_INFORMATION}</span></a></li><!-- ENDIF -->
- 					<!-- IF posts.U_QUOTE --><li class="quote-icon"><a href="{posts.U_QUOTE}" title="{L_REPLY_WITH_QUOTE}"><span>{L_REPLY_WITH_QUOTE}</span></a></li><!-- ENDIF -->
- 				</ul>
- 			<!-- ENDIF -->
- 		<!-- ENDIF -->
- 
- 			<h3 <!-- IF posts.S_FIRST_ROW -->class="first"<!-- ENDIF -->><!-- IF posts.POST_ICON_IMG --><img src="{T_ICONS_PATH}{posts.POST_ICON_IMG}" width="{posts.POST_ICON_IMG_WIDTH}" height="{posts.POST_ICON_IMG_HEIGHT}" alt="" /> <!-- ENDIF --><a href="{posts.U_VIEW_POST}">{posts.POST_SUBJECT}</a></h3>
- 			<p class="author"><!-- IF S_IS_BOT -->{posts.MINI_POST_IMG}<!-- ELSE --><a href="{posts.U_MINI_POST}">{posts.MINI_POST_IMG}</a><!-- ENDIF -->{L_POST_BY_AUTHOR} <strong>{posts.USER_FULL}</strong> &raquo; {posts.POST_TIME} </p>
- 
- 			<!-- IF posts.S_POST_UNAPPROVED or posts.S_POST_REPORTED -->
- 				<p class="rules">
- 					<!-- IF posts.S_POST_UNAPPROVED -->{UNAPPROVED_IMG} <a href="{posts.U_MCP_APPROVE}"><strong>{L_POST_UNAPPROVED}</strong></a><br /><!-- ENDIF -->
- 					<!-- IF posts.S_POST_REPORTED -->{REPORTED_IMG} <a href="{posts.U_MCP_REPORT}"><strong>{L_POST_REPORTED}</strong></a><!-- ENDIF -->
- 				</p>
- 			<!-- ENDIF -->
- 
- 			<div class="content">{posts.POST_TEXT}</div>
- 
- 			<!-- IF posts.EDIT_REASON -->
- 				<div class="notice">{posts.EDITED_MESSAGE}
- 					<!-- IF posts.POST_EDIT_REASON --><br /><strong>{L_REASON}:</strong> <em>{posts.POST_EDIT_REASON}</em><!-- ENDIF -->
- 				</div>
- 			<!-- ENDIF -->
- 
- 			<!-- IF posts.SIGNATURE --><div id="sig{posts.POST_ID}" class="signature">{posts.SIGNATURE}</div><!-- ENDIF -->
- 		<!-- ENDIF -->
- 
- 		</div>
- 
- 		<!-- IF not posts.S_IGNORE_POST -->
- 			<dl class="postprofile" id="profile{posts.POST_ID}">
- 			<dt>
- 				<!-- IF posts.USER_AVATAR -->
- 					<!-- IF posts.U_USER_PROFILE --><a href="{posts.U_USER_PROFILE}">{posts.USER_AVATAR}</a><!-- ELSE -->{posts.USER_AVATAR}<!-- ENDIF --><br />
- 				<!-- ENDIF -->
- 				<!-- IF not posts.U_USER_PROFILE --><strong>{posts.USER_FULL}</strong><!-- ELSE -->{posts.USER_FULL}<!-- ENDIF -->
- 			</dt>
- 
- 			<!-- IF posts.RANK_TITLE or posts.RANK_IMG --><dd>{posts.RANK_TITLE}<!-- IF posts.RANK_TITLE and posts.RANK_IMG --><br /><!-- ENDIF -->{posts.RANK_IMG}</dd><!-- ENDIF -->
- 
- 		<dd>&nbsp;</dd>
- 
- 		<!-- IF posts.USER_POSTS != '' --><dd><strong>{L_POSTS}:</strong> {posts.USER_POSTS}</dd><!-- ENDIF -->
- 		<!-- IF posts.USER_JOINED --><dd><strong>{L_JOINED}:</strong> {posts.USER_JOINED}</dd><!-- ENDIF -->
- 		<!-- IF posts.USER_FROM --><dd><strong>{L_LOCATION}:</strong> {posts.USER_FROM}</dd><!-- ENDIF -->
- 
- 		<!-- BEGIN custom_fields -->
- 			<dd><strong>{posts.custom_fields.PROFILE_FIELD_NAME}:</strong> {posts.custom_fields.PROFILE_FIELD_VALUE}</dd>
- 		<!-- END custom_fields -->
- 
- 		<!-- IF not S_IS_BOT -->
- 		<!-- IF posts.U_PM or posts.U_EMAIL or posts.U_WWW or posts.U_MSN or posts.U_ICQ or posts.U_YIM or posts.U_AIM or posts.U_JABBER -->
- 			<dd>
- 				<ul class="profile-icons">
- 					<!-- IF posts.U_PM --><li class="pm-icon"><a href="{posts.U_PM}" title="{L_PRIVATE_MESSAGE}"><span>{L_PRIVATE_MESSAGE}</span></a></li><!-- ENDIF -->
- 					<!-- IF posts.U_EMAIL --><li class="email-icon"><a href="{posts.U_EMAIL}" title="{L_SEND_EMAIL_USER} {posts.POST_AUTHOR}"><span>{L_SEND_EMAIL_USER} {posts.POST_AUTHOR}</span></a></li><!-- ENDIF -->
- 					<!-- IF posts.U_WWW --><li class="web-icon"><a href="{posts.U_WWW}" title="{L_VISIT_WEBSITE}: {posts.U_WWW}"><span>{L_WEBSITE}</span></a></li><!-- ENDIF -->
- 					<!-- IF posts.U_MSN --><li class="msnm-icon"><a href="{posts.U_MSN}" onclick="popup(this.href, 550, 320); return false;" title="{L_MSNM}"><span>{L_MSNM}</span></a></li><!-- ENDIF -->
- 					<!-- IF posts.U_ICQ --><li class="icq-icon"><a href="{posts.U_ICQ}" onclick="popup(this.href, 550, 320); return false;" title="{L_ICQ}"><span>{L_ICQ}</span></a></li><!-- ENDIF -->
- 					<!-- IF posts.U_YIM --><li class="yahoo-icon"><a href="{posts.U_YIM}" onclick="popup(this.href, 780, 550); return false;" title="{L_YIM}"><span>{L_YIM}</span></a></li><!-- ENDIF -->
- 					<!-- IF posts.U_AIM --><li class="aim-icon"><a href="{posts.U_AIM}" onclick="popup(this.href, 550, 320); return false;" title="{L_AIM}"><span>{L_AIM}</span></a></li><!-- ENDIF -->
- 					<!-- IF posts.U_JABBER --><li class="jabber-icon"><a href="{posts.U_JABBER}" onclick="popup(this.href, 550, 320); return false;" title="{L_JABBER}"><span>{L_JABBER}</span></a></li><!-- ENDIF -->
- 				</ul>
- 			</dd>
- 		<!-- ENDIF -->
- 		<!-- ENDIF -->
- 
- 		</dl>
- 	<!-- ENDIF -->
- 
- 		<div class="back2top"><a href="#wrap" class="top" title="{L_BACK_TO_TOP}">{L_BACK_TO_TOP}</a></div>
- 
- 		<span class="corners-bottom"><span></span></span></div>
- 	</div>
- 
- 	<hr class="divider" />
- <!-- END posts -->
- 
- <!-- IF S_QUICK_REPLY -->
- 	<!-- INCLUDE quickreply_editor.html -->
- <!-- ENDIF -->
- 
- <!-- IF S_NUM_POSTS > 1 or PREVIOUS_PAGE -->
- 	<form id="viewtopic" method="post" action="{S_TOPIC_ACTION}">
- 
- 	<fieldset class="display-options" style="margin-top: 0; ">
- 		<!-- IF PREVIOUS_PAGE --><a href="{PREVIOUS_PAGE}" class="left-box {S_CONTENT_FLOW_BEGIN}">{L_PREVIOUS}</a><!-- ENDIF -->
- 		<!-- IF NEXT_PAGE --><a href="{NEXT_PAGE}" class="right-box {S_CONTENT_FLOW_END}">{L_NEXT}</a><!-- ENDIF -->
- 		<!-- IF not S_IS_BOT -->
- 		<label>{L_DISPLAY_POSTS}: {S_SELECT_SORT_DAYS}</label>
- 		<label>{L_SORT_BY} {S_SELECT_SORT_KEY}</label> <label>{S_SELECT_SORT_DIR} <input type="submit" name="sort" value="{L_GO}" class="button2" /></label>
- 		<!-- ENDIF -->
- 	</fieldset>
- 
- 	</form>
- 	<hr />
- <!-- ENDIF -->
- 
- <div class="topic-actions">
- 	<div class="buttons">
- 	<!-- IF U_POST_REPLY -->
- 		<div class="<!-- IF S_IS_LOCKED -->locked-icon<!-- ELSE -->reply-icon<!-- ENDIF -->"><a href="{U_POST_REPLY}" title="<!-- IF S_IS_LOCKED -->{L_TOPIC_LOCKED}<!-- ELSE -->{L_POST_REPLY}<!-- ENDIF -->"><span></span><!-- IF S_IS_LOCKED -->{L_TOPIC_LOCKED_SHORT}<!-- ELSE -->{L_POST_REPLY}<!-- ENDIF --></a></div>
- 	<!-- ENDIF -->
- 	</div>
- 
- 	<!-- IF PAGINATION or TOTAL_POSTS -->
- 		<div class="pagination">
- 			{TOTAL_POSTS}
- 			<!-- IF PAGE_NUMBER --><!-- IF PAGINATION --> &bull; <a href="#" onclick="jumpto(); return false;" title="{L_JUMP_TO_PAGE}">{PAGE_NUMBER}</a> &bull; <span>{PAGINATION}</span><!-- ELSE --> &bull; {PAGE_NUMBER}<!-- ENDIF --><!-- ENDIF -->
- 		</div>
- 	<!-- ENDIF -->
- </div>
- 
- <!-- IF S_TOPIC_MOD -->
- 	<form method="post" action="{S_MOD_ACTION}">
- 	<fieldset class="quickmod">
- 		<label for="quick-mod-select">{L_QUICK_MOD}:</label> {S_TOPIC_MOD} <input type="submit" value="{L_GO}" class="button2" />
- 		{S_FORM_TOKEN}
- 	</fieldset>
- 	</form>
- <!-- ENDIF -->
\ No newline at end of file
--- 0 ----

Added: trunk/titania/styles/default/template/posting/quickreply_editor.html
==============================================================================
    (empty)

Removed: trunk/titania/styles/default/template/ratings.js
==============================================================================
*** trunk/titania/styles/default/template/ratings.js (original)
--- trunk/titania/styles/default/template/ratings.js (removed)
***************
*** 1,50 ****
- function ratingHover(cnt, name)
- {
- 	for (var i = 1; i <= max_rating; i++)
- 	{
- 		star = document.getElementById(name + '_' + i);
- 
- 		if (i <= cnt)
- 		{
- 			star.src = red_star.src;
- 		}
- 		else
- 		{
- 			star.src = grey_star.src;
- 		}
- 	}
- }
- 
- function ratingUnHover(cnt, name)
- {
- 	for (var i = 1; i <= max_rating; i++)
- 	{
- 		star = document.getElementById(name + '_' + i);
- 
- 		if (i <= Math.round(cnt))
- 		{
- 			star.src = orange_star.src;
- 		}
- 		else
- 		{
- 			star.src = grey_star.src;
- 		}
- 	}
- }
- 
- function ratingDown(id, name)
- {
- 	for (var i = 1; i <= max_rating; i++)
- 	{
- 		star = document.getElementById(name + '_' + i);
- 
- 		if (i <= cnt)
- 		{
- 			star.src = green_star.src;
- 		}
- 		else
- 		{
- 			star.src = grey_star.src;
- 		}
- 	}
- }
\ No newline at end of file
--- 0 ----

Removed: trunk/titania/styles/default/template/search_body.html
==============================================================================
*** trunk/titania/styles/default/template/search_body.html (original)
--- trunk/titania/styles/default/template/search_body.html (removed)
***************
*** 1,45 ****
- 	<div class="menu-column">
- 		<div class="menubg">
- 			<div class="inner">
- 				<span class="corners-top"><span></span></span>
- 
- 				<span class="menu-title">Advanced MOD Search</span>
- 
- 					<div class="contrib-content">
- 						<div class="inner"><span class="corners-top blue"><span></span></span>
- 
- 							<form method="post" id="csearch" action="" class="advanced-search">
- 								<fieldset>
- 									<label for="cat"><strong>Category:</strong></label>
- 									<select name="cat" id="f" onchange="if(this.options[this.selectedIndex].value != -1){ document.forms['jumpbox'].submit() }">
- 										<option value="-1">Select a category</option>
- 										<option value="14">Category 1</option>
- 										<option value="49">Category 2</option>
- 									</select>
- 
- 									<label for="author" id="aut"><strong>Author:</strong></label>
- 									<select name="author" id="f2" onchange="if(this.options[this.selectedIndex].value != -1){ document.forms['jumpbox'].submit() }">
- 										<option value="-1">Select an author</option>
- 										<option value="14">Author 1</option>
- 										<option value="49">Author 2</option>
- 									</select>
- 
- 									<label for="sf1" id="main"><strong>Complexity:</strong></label>
- 									<label for="sf1"><input type="radio" name="sf1" id="sf1" value="all" checked="checked" /> SQL Schema Changes</label>
- 									<label for="sf2"><input type="radio" name="sf2" id="sf2" value="msgonly" /> SQL Data Changes</label>
- 									<label for="sf3"><input type="radio" name="sf3" id="sf3" value="titleonly" /> File Edits</label>
- 									<label for="sf4"><input type="radio" name="sf4" id="sf4" value="firstpost" /> Template Changes</label>
- 								</fieldset>
- 
- 								<fieldset style="text-align: center; margin-top: 10px;">
- 									<input type="submit" value="Submit" class="button2" />
- 								</fieldset>
- 							</form>
- 
- 						<span class="corners-bottom blue"><span></span></span></div>
- 					</div>
- 
- 				<span class="corners-bottom"><span></span></span>
- 			</div>
- 		</div>
- 	</div>
\ No newline at end of file
--- 0 ----

Removed: trunk/titania/styles/default/template/topic_list.html
==============================================================================
*** trunk/titania/styles/default/template/topic_list.html (original)
--- trunk/titania/styles/default/template/topic_list.html (removed)
***************
*** 1,85 ****
- <!-- BEGIN topics -->
- 	<!-- IF topics.S_FIRST_ROW -->
- 		<div class="topic-actions">
- 			<div class="buttons">
- 			<!-- IF U_POST_TOPIC -->
- 				<p class="ui-button"><a href="{U_POST_TOPIC}" id="create-topic" class="ui-button ui-state-default ui-corner-all"><span class="ui-icon ui-icon-plus"></span>{L_NEW_TOPIC}</a></p>
- 			<!-- ENDIF -->
- 			</div>
- 
- 			<!-- IF PAGINATION or TOTAL_POSTS -->
- 				<div class="pagination">
- 					<!-- IF U_VIEW_UNREAD_POST and not S_IS_BOT --><a href="{U_VIEW_UNREAD_POST}">{L_VIEW_UNREAD_POST}</a> &bull; <!-- ENDIF -->{TOTAL_POSTS}
- 					<!-- IF PAGE_NUMBER --><!-- IF PAGINATION --> &bull; <a href="#" onclick="jumpto(); return false;" title="{L_JUMP_TO_PAGE}">{PAGE_NUMBER}</a> &bull; <span>{PAGINATION}</span><!-- ELSE --> &bull; {PAGE_NUMBER}<!-- ENDIF --><!-- ENDIF -->
- 				</div>
- 			<!-- ENDIF -->
- 		</div>
- 		<div class="clear"></div>
- 	<!-- ENDIF -->
- 
- 	<!-- IF topics.S_TOPIC_TYPE_SWITCH and not topics.S_FIRST_ROW -->
- 		</ul>
- 		<span class="corners-bottom"><span></span></span></div>
- 	</div>
- 	<!-- ENDIF -->
- 
- 	<!-- IF topics.S_FIRST_ROW or topics.S_TOPIC_TYPE_SWITCH -->
- 		<div class="forumbg<!-- IF topics.TOPIC_STICKY --> announcement<!-- ENDIF -->">
- 		<div class="inner"><span class="corners-top"><span></span></span>
- 		<ul class="topiclist">
- 			<li class="header">
- 				<dl class="icon">
- 					<dt><!-- IF topics.TOPIC_STICKY -->{L_STICKIES}<!-- ELSE -->{L_TOPICS}<!-- ENDIF --></dt>
- 					<dd class="posts">{L_REPLIES}</dd>
- 					<dd class="views">{L_VIEWS}</dd>
- 					<dd class="lastpost"><span>{L_LAST_POST}</span></dd>
- 				</dl>
- 			</li>
- 		</ul>
- 		<ul class="topiclist topics">
- 	<!-- ENDIF -->
- 
- 		<li class="row<!-- IF topics.S_ROW_COUNT is even --> bg1<!-- ELSE --> bg2<!-- ENDIF --><!-- IF topics.S_POST_STICKY --> sticky<!-- ENDIF --><!-- IF topics.S_TOPIC_REPORTED --> reported<!-- ENDIF -->">
- 			<dl class="icon" style="background-image: url({topics.TOPIC_FOLDER_IMG_SRC}); background-repeat: no-repeat;">
- 				<dt title="{topics.TOPIC_FOLDER_IMG_ALT}"><!-- IF topics.S_UNREAD_TOPIC --><a href="{topics.U_NEWEST_POST}">{NEWEST_POST_IMG}</a> <!-- ENDIF --><a href="{topics.U_VIEW_TOPIC}" class="topictitle">{topics.TOPIC_SUBJECT}</a>
- 					<!-- IF not topics.TOPIC_APPROVED or topics.S_POSTS_UNAPPROVED --><a href="{topics.U_MCP_QUEUE}">{topics.UNAPPROVED_IMG}</a> <!-- ENDIF -->
- 					<!-- IF topics.TOPIC_REPORTED --><a href="{topics.U_MCP_REPORT}">{REPORTED_IMG}</a><!-- ENDIF --><br />
- 					<!-- IF topics.PAGINATION --><strong class="pagination"><span>{topics.PAGINATION}</span></strong><!-- ENDIF -->
- 					<!-- IF topics.ATTACH_ICON_IMG -->{topics.ATTACH_ICON_IMG} <!-- ENDIF -->{L_POST_BY_AUTHOR} {topics.TOPIC_FIRST_POST_USER_FULL} &raquo; {topics.TOPIC_FIRST_POST_TIME}
- 				</dt>
- 				<dd class="posts">{topics.TOPIC_POSTS} <dfn>{L_REPLIES}</dfn></dd>
- 				<dd class="views">{topics.TOPIC_VIEWS} <dfn>{L_VIEWS}</dfn></dd>
- 				<dd class="lastpost"><span><dfn>{L_LAST_POST} </dfn>{L_POST_BY_AUTHOR} {topics.TOPIC_LAST_POST_USER_FULL}
- 					<!-- IF not S_IS_BOT --><a href="{topics.U_VIEW_LAST_POST}">{LAST_POST_IMG}</a> <!-- ENDIF --><br />{topics.TOPIC_LAST_POST_TIME}</span>
- 				</dd>
- 			</dl>
- 		</li>
- 
- 	<!-- IF topics.S_LAST_ROW -->
- 				</ul>
- 			<span class="corners-bottom"><span></span></span></div>
- 		</div>
- 
- 		<div class="topic-actions">
- 			<div class="buttons">
- 			<!-- IF U_POST_TOPIC -->
- 				<p class="ui-button"><a href="{U_POST_TOPIC}" id="create-topic" class="ui-button ui-state-default ui-corner-all"><span class="ui-icon ui-icon-plus"></span>{L_NEW_TOPIC}</a></p>
- 			<!-- ENDIF -->
- 			</div>
- 
- 			<!-- IF PAGINATION or TOTAL_POSTS -->
- 				<div class="pagination">
- 					<!-- IF U_VIEW_UNREAD_POST and not S_IS_BOT --><a href="{U_VIEW_UNREAD_POST}">{L_VIEW_UNREAD_POST}</a> &bull; <!-- ENDIF -->{TOTAL_POSTS}
- 					<!-- IF PAGE_NUMBER --><!-- IF PAGINATION --> &bull; <a href="#" onclick="jumpto(); return false;" title="{L_JUMP_TO_PAGE}">{PAGE_NUMBER}</a> &bull; <span>{PAGINATION}</span><!-- ELSE --> &bull; {PAGE_NUMBER}<!-- ENDIF --><!-- ENDIF -->
- 				</div>
- 			<!-- ENDIF -->
- 		</div>
- 	<!-- ENDIF -->
- 
- <!-- BEGINELSE -->
- 	<div class="panel">
- 		<div class="inner"><span class="corners-top"><span></span></span>
- 		<strong>{L_NO_TOPICS}</strong>
- 		<span class="corners-bottom"><span></span></span></div>
- 	</div>
- <!-- END topics -->
\ No newline at end of file
--- 0 ----

Removed: trunk/titania/styles/default/template/uploadify.html
==============================================================================
*** trunk/titania/styles/default/template/uploadify.html (original)
--- trunk/titania/styles/default/template/uploadify.html (removed)
***************
*** 1,85 ****
- <script type="text/javascript" src="{TITANIA_ROOT_PATH}js/uploadify/swfobject.js"></script>
- <script type="text/javascript" src="{TITANIA_ROOT_PATH}js/uploadify/jquery.uploadify.min.js"></script>
- <script type="text/javascript">
- //<![CDATA[
- 	$(document).ready(function() {
- 				
- 		// Create file uploader.
- 		$('#fileInput').uploadify ({
- 			'uploader'  	: '{UPLOADER}',
- 			'script'    	: '{UPLOAD_SCRIPT}',
- 			'cancelImg' 	: '{T_TITANIA_THEME_PATH}/images/cancel.png',
- 			'auto'      	: true,
- 			'fileDataName'	: 'uploadify',
- 			'onComplete'	: {ON_COMPLETE},
- 			'buttonText'	: '{L_SELECT_FILE}',
- 			'height'		: 22,
- 			'width'			: 110,
- 			'wmode'			: 'transparent'
- 		});
- 		
- 		// onComplete function.
- 		function onComplete(event, queueId, fileObj, response, data)
- 		{
- 			// Parse response as JSON.
- 			var response = window["eval"]("(" + response + ")");
- 
- 			if (response.error)
- 			{
- 				$('#errorbox_msg').text(response.error);
- 				$('#errorbox').fadeIn('slow');
- 
- 				setTimeout("$('#errorbox').fadeOut('slow');", 10000);
- 			}
- 			else
- 			{
- 				$("#uploads").append(response.html)
- 				$('#file_info_main_' + response.id).slideDown('slow');
- 			}
- 		}
- 
- 		
- 		$('.hide').live('click', function() { 
- 			var id = $(this).attr('id');
- 
- 			$('#file_info_main_' + id).slideToggle('slow');
- 
- 			var link_text = $(this).children('a');
- 
- 			if (link_text.html() == '{L_SHOW}')
- 			{
- 				link_text.html('{L_HIDE}');
- 			}
- 			else
- 			{
- 				link_text.html('{L_SHOW}');
- 			}
- 			$('show_hide_' + id).val('{L_CLOSE}');
- 		});
- 	});
- // ]]
- </script>
- 
- 
- <div id="upload_container">
- 	<!-- IF ATTACHMENT_EXPLAIN -->
- 	<div class="pannel">
- 		<div class="inner"><span class="corners-top"><span></span></span>
- 			<p>{ATTACHMENT_EXPLAIN}</p>
- 		<span class="corners-bottom"><span></span></span></div>
- 	</div>
- 	<!-- ENDIF -->
- 	
- 	<div id="errorbox" class="errorbox" style="display: none;">
- 		<div class="inner"><span class="corners-top"><span></span></span>
- 		<h3 id="errorbox_title">Error</h3>
- 			<p id="errorbox_msg"></p>
- 		<span class="corners-bottom"><span></span></span></div>
- 	</div>
- 	
- 	<input type="file" class="inputbox autowidth" value="" maxlength="262144" id="fileInput" name="fileInput"/>
- 	
- 	<hr />
- </div>
- 
- <!-- IF .file --><hr /><br /><!-- ENDIF -->
\ No newline at end of file
--- 0 ----

Added: trunk/titania/styles/default/template/uploadify/uploadify.html
==============================================================================
*** trunk/titania/styles/default/template/uploadify/uploadify.html (added)
--- trunk/titania/styles/default/template/uploadify/uploadify.html Sat Dec 19 03:24:30 2009
***************
*** 0 ****
--- 1,85 ----
+ <script type="text/javascript" src="{TITANIA_ROOT_PATH}js/uploadify/swfobject.js"></script>
+ <script type="text/javascript" src="{TITANIA_ROOT_PATH}js/uploadify/jquery.uploadify.min.js"></script>
+ <script type="text/javascript">
+ //<![CDATA[
+ 	$(document).ready(function() {
+ 				
+ 		// Create file uploader.
+ 		$('#fileInput').uploadify ({
+ 			'uploader'  	: '{UPLOADER}',
+ 			'script'    	: '{UPLOAD_SCRIPT}',
+ 			'cancelImg' 	: '{T_TITANIA_THEME_PATH}/images/cancel.png',
+ 			'auto'      	: true,
+ 			'fileDataName'	: 'uploadify',
+ 			'onComplete'	: {ON_COMPLETE},
+ 			'buttonText'	: '{L_SELECT_FILE}',
+ 			'height'		: 22,
+ 			'width'			: 110,
+ 			'wmode'			: 'transparent'
+ 		});
+ 		
+ 		// onComplete function.
+ 		function onComplete(event, queueId, fileObj, response, data)
+ 		{
+ 			// Parse response as JSON.
+ 			var response = window["eval"]("(" + response + ")");
+ 
+ 			if (response.error)
+ 			{
+ 				$('#errorbox_msg').text(response.error);
+ 				$('#errorbox').fadeIn('slow');
+ 
+ 				setTimeout("$('#errorbox').fadeOut('slow');", 10000);
+ 			}
+ 			else
+ 			{
+ 				$("#uploads").append(response.html)
+ 				$('#file_info_main_' + response.id).slideDown('slow');
+ 			}
+ 		}
+ 
+ 		
+ 		$('.hide').live('click', function() { 
+ 			var id = $(this).attr('id');
+ 
+ 			$('#file_info_main_' + id).slideToggle('slow');
+ 
+ 			var link_text = $(this).children('a');
+ 
+ 			if (link_text.html() == '{L_SHOW}')
+ 			{
+ 				link_text.html('{L_HIDE}');
+ 			}
+ 			else
+ 			{
+ 				link_text.html('{L_SHOW}');
+ 			}
+ 			$('show_hide_' + id).val('{L_CLOSE}');
+ 		});
+ 	});
+ // ]]
+ </script>
+ 
+ 
+ <div id="upload_container">
+ 	<!-- IF ATTACHMENT_EXPLAIN -->
+ 	<div class="pannel">
+ 		<div class="inner"><span class="corners-top"><span></span></span>
+ 			<p>{ATTACHMENT_EXPLAIN}</p>
+ 		<span class="corners-bottom"><span></span></span></div>
+ 	</div>
+ 	<!-- ENDIF -->
+ 	
+ 	<div id="errorbox" class="errorbox" style="display: none;">
+ 		<div class="inner"><span class="corners-top"><span></span></span>
+ 		<h3 id="errorbox_title">Error</h3>
+ 			<p id="errorbox_msg"></p>
+ 		<span class="corners-bottom"><span></span></span></div>
+ 	</div>
+ 	
+ 	<input type="file" class="inputbox autowidth" value="" maxlength="262144" id="fileInput" name="fileInput"/>
+ 	
+ 	<hr />
+ </div>
+ 
+ <!-- IF .file --><hr /><br /><!-- ENDIF -->
\ No newline at end of file

Added: trunk/titania/styles/default/template/uploadify/uploadify_file.html
==============================================================================
*** trunk/titania/styles/default/template/uploadify/uploadify_file.html (added)
--- trunk/titania/styles/default/template/uploadify/uploadify_file.html Sat Dec 19 03:24:30 2009
***************
*** 0 ****
--- 1,29 ----
+ <!-- BEGIN attachment -->
+ 	<div class="upload_item" id="upload_{attachment.ID}">
+ 		<div class="file_info_small" id="file_info_small_1">
+ 			<ul>
+ 				<li class="file_name">{attachment.NAME}</li>
+ 				<li class="hide float_right" id="{attachment.ID}"><a id="show_hide_{attachment.ID}" href="javascript:void;"><!-- IF S_HIDE_ATTACHMENT -->{L_SHOW}<!-- ELSE -->{L_HIDE}<!-- ENDIF --></a></li>
+ 				
+ 			</ul>
+ 		</div>
+ 		<div id="file_info_main_{attachment.ID}" <!-- IF S_HIDE_ATTACHMENT -->style="display: none;"<!-- ENDIF -->>
+ 			<div class="file_info">
+ 				<img src="{T_TITANIA_THEME_PATH}/images/zip.png" width="64px" height="64px" />
+ 				<ul>
+ 					<li>{L_REAL_NAME}: {attachment.REAL_NAME}</li>
+ 					<li>{L_MIME_TYPE}: {attachment.MIMETYPE}</li>
+ 					<li>{L_DATE_ADDED}: {attachment.DATE}</li>
+ 				</ul>
+ 			</div>
+ 			<fieldset style="clear: both;">
+ 				<dl style="clear: left;">
+ 					<dt><label for="title">{L_FILE_TITLE}:</label></dt>
+ 					<dd><input type="text" name="title[{file.ATTACHMENT_ID}]" id="name" size="45" maxlength="60" tabindex="1" value="{attachment.NAME}" class="inputbox autowidth" /></dd>
+ 				</dl>
+ 			</fieldset>
+ 		</div>
+ 	</div>
+ 	{attachment.S_HIDDEN_FIELDS}
+ 	<hr />
+ <!-- END attachment -->
\ No newline at end of file




More information about the customisationdb-commits mailing list