You can subscribe to this list here.
| 2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(193) |
Nov
(393) |
Dec
(347) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2002 |
Jan
(401) |
Feb
(232) |
Mar
(343) |
Apr
(129) |
May
(129) |
Jun
(116) |
Jul
(189) |
Aug
(129) |
Sep
(68) |
Oct
(172) |
Nov
(298) |
Dec
(148) |
| 2003 |
Jan
(264) |
Feb
(210) |
Mar
(322) |
Apr
(309) |
May
(234) |
Jun
(188) |
Jul
(215) |
Aug
(161) |
Sep
(234) |
Oct
(163) |
Nov
(110) |
Dec
(7) |
| 2004 |
Jan
(95) |
Feb
(107) |
Mar
(55) |
Apr
(3) |
May
(49) |
Jun
(35) |
Jul
(57) |
Aug
(43) |
Sep
(56) |
Oct
(40) |
Nov
(25) |
Dec
(21) |
| 2005 |
Jan
(93) |
Feb
(25) |
Mar
(22) |
Apr
(72) |
May
(45) |
Jun
(24) |
Jul
(29) |
Aug
(20) |
Sep
(50) |
Oct
(93) |
Nov
(69) |
Dec
(183) |
| 2006 |
Jan
(185) |
Feb
(143) |
Mar
(402) |
Apr
(260) |
May
(322) |
Jun
(367) |
Jul
(234) |
Aug
(299) |
Sep
(206) |
Oct
(288) |
Nov
(338) |
Dec
(307) |
| 2007 |
Jan
(296) |
Feb
(250) |
Mar
(261) |
Apr
(434) |
May
(539) |
Jun
(274) |
Jul
(440) |
Aug
(190) |
Sep
(128) |
Oct
(249) |
Nov
(86) |
Dec
(51) |
| 2008 |
Jan
(177) |
Feb
(67) |
Mar
(61) |
Apr
(48) |
May
(56) |
Jun
(97) |
Jul
(60) |
Aug
(64) |
Sep
(151) |
Oct
(79) |
Nov
(109) |
Dec
(123) |
| 2009 |
Jan
(70) |
Feb
(70) |
Mar
(73) |
Apr
(80) |
May
(22) |
Jun
(193) |
Jul
(191) |
Aug
(181) |
Sep
(120) |
Oct
(48) |
Nov
(24) |
Dec
|
|
From: Paul S. O. <ps...@us...> - 2001-12-11 02:21:54
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv27942/includes
Modified Files:
functions.php
Log Message:
More updates for Euclid, minor update to subSilver, fixed bug #490798
Index: functions.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/functions.php,v
retrieving revision 1.90
retrieving revision 1.91
diff -C2 -r1.90 -r1.91
*** functions.php 2001/12/10 16:52:16 1.90
--- functions.php 2001/12/11 02:21:51 1.91
***************
*** 201,205 ****
// Simple version of jumpbox, just lists authed forums
//
! function make_forum_select($box_name)
{
global $db, $userdata;
--- 201,205 ----
// Simple version of jumpbox, just lists authed forums
//
! function make_forum_select($box_name, $ignore_forum = false)
{
global $db, $userdata;
***************
*** 218,222 ****
while( $row = $db->sql_fetchrow($q_forums) )
{
! if( $is_auth_ary[$row['forum_id']]['auth_read'] )
{
$forum_list .= "<option value=\"" . $row['forum_id'] . "\">" . $row['forum_name'] . "</option>";
--- 218,222 ----
while( $row = $db->sql_fetchrow($q_forums) )
{
! if( $is_auth_ary[$row['forum_id']]['auth_read'] && $ignore_forum != $row['forum_id'] )
{
$forum_list .= "<option value=\"" . $row['forum_id'] . "\">" . $row['forum_name'] . "</option>";
|
|
From: Paul S. O. <ps...@us...> - 2001-12-11 02:21:54
|
Update of /cvsroot/phpbb/phpBB2/templates/Euclid
In directory usw-pr-cvs1:/tmp/cvs-serv27942/templates/Euclid
Modified Files:
modcp_split.tpl
Log Message:
More updates for Euclid, minor update to subSilver, fixed bug #490798
Index: modcp_split.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/modcp_split.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** modcp_split.tpl 2001/12/10 00:58:50 1.1
--- modcp_split.tpl 2001/12/11 02:21:52 1.2
***************
*** 1,11 ****
! <form method="post" action="{S_SPLIT_ACTION}"><table width="98%" cellspacing="0" cellpadding="4" border="0" align="center">
<tr>
! <td align="left" valign="bottom" nowrap><span class="gensmall"><a href="{U_INDEX}">{SITENAME} {L_INDEX}</a> -> <a href="{U_VIEW_FORUM}">{FORUM_NAME}</a></span></td>
! </tr>
</table>
! <table width="98%" cellpadding="1" cellspacing="0" border="0" align="center">
<tr>
! <td class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="cat" colspan="3" align="center"><span class="cattitle">{L_SPLIT_TOPIC}</span><br /><span class="gensmall">{L_SPLIT_TOPIC_EXPLAIN}</span></td>
--- 1,29 ----
!
! <script language="Javascript" type="text/javascript">
! <!--
! //
! // Should really check the browser to stop this whining ...
! //
! function select_switch(status)
! {
! for (i = 0; i < document.split_list.length; i++)
! {
! document.split_list.elements[i].checked = status;
! }
! }
! //-->
! </script>
!
! <form action="{S_SPLIT_ACTION}" method="post" name="split_list">
!
! <table width="98%" cellspacing="0" cellpadding="4" border="0" align="center">
<tr>
! <td align="left" valign="bottom" nowrap><span class="gensmall"><a href="{U_INDEX}">{L_INDEX}</a> -> <a href="{U_VIEW_FORUM}">{FORUM_NAME}</a></span></td>
! </tr>
</table>
! <table width="98%" cellspacing="0" cellpadding="0" border="0" align="center">
<tr>
! <td class="tablebg"><table width="100%" cellspacing="1" cellpadding="4" border="0">
<tr>
<td class="cat" colspan="3" align="center"><span class="cattitle">{L_SPLIT_TOPIC}</span><br /><span class="gensmall">{L_SPLIT_TOPIC_EXPLAIN}</span></td>
***************
*** 17,40 ****
<tr>
<td class="row1"><span class="gen">{L_SPLIT_FORUM}</span></td>
! <td class="row2" colspan="2"><span class="courier">{FORUM_INPUT}</span></td>
</tr>
<tr>
! <td class="cat" colspan="3"><table width="60%" cellspacing="0" cellpadding="0" border="0" align="center">
! <tr>
! <td width="50%" align="center"><input class="button" type="submit" name="split_type_all" value="{L_SPLIT_POSTS}"></td>
! <td width="50%" align="center"><input class="button" type="submit" name="split_type_beyond" value="{L_SPLIT_AFTER}"></td>
! </tr>
! </table></td>
</tr>
<tr>
! <th>{L_AUTHOR}</th>
! <th>{L_MESSAGE}</th>
! <th>{L_SELECT}</th>
</tr>
! <!-- BEGIN postrow -->
<tr bgcolor="{postrow.ROW_COLOR}">
! <td align="left" valign="top"><a name="{postrow.U_POST_ID}"></a><table width="170" cellspacing="0" cellpadding="0" border="0">
<tr>
! <td valign="top"><span class="gen"><b>{postrow.POSTER_NAME}</b></span><br /></td>
</tr>
</table></td>
--- 35,70 ----
<tr>
<td class="row1"><span class="gen">{L_SPLIT_FORUM}</span></td>
! <td class="row2" colspan="2"><span class="courier">{S_FORUM_SELECT}</span></td>
</tr>
<tr>
! <td class="cat" colspan="3" height="30" align="center"><input class="liteoptiontable" type="submit" name="split_type_all" value="{L_SPLIT_POSTS}"> <input class="liteoptiontable" type="submit" name="split_type_beyond" value="{L_SPLIT_AFTER}"></td>
</tr>
<tr>
! <th width="160" height="25"><table width="160" cellspacing="0" cellpadding="0" border="0">
! <tr>
! <th>{L_AUTHOR}</th>
! </tr>
! </table></th>
! <th width="100%" height="25"><table width="100%" cellspacing="0" cellpadding="0" border="0">
! <tr>
! <th width="95%">{L_MESSAGE}</th>
! </tr>
! </table></th>
</tr>
! </table></td>
! </tr>
! <tr>
! <td class="cat" height="2"><img src="images/spacer.gif" height="2"></td>
! </tr>
! </table>
!
! <!-- BEGIN postrow -->
! <table width="98%" cellpadding="0" cellspacing="0" border="0" align="center">
! <tr>
! <td class="tablebg"><table border="0" cellpadding="4" cellspacing="1" width="100%">
<tr bgcolor="{postrow.ROW_COLOR}">
! <td width="160" align="left" valign="top"><a name="{postrow.U_POST_ID}"></a><table width="160" cellspacing="0" cellpadding="0" border="0">
<tr>
! <td valign="top"><span class="gen"><b>{postrow.POSTER_NAME}</b></span></td>
</tr>
</table></td>
***************
*** 42,67 ****
<tr>
<td valign="top"><table width="100%" cellspacing="0" cellpadding="0" border="0">
- <tr>
- <td valign="middle"><img src="images/icon_minipost.gif" alt="Post image icon" /><span class="gensmall">{L_POSTED}: {postrow.POST_DATE} {L_POST_SUBJECT}: {postrow.POST_SUBJECT}</span></td>
- </tr>
<tr>
! <td colspan="2"><hr /></td>
</tr>
</table></td>
</tr>
<tr>
! <td width="100%" height="100%" valign="top"><span class="gen">{postrow.MESSAGE}</span></td>
</tr>
</table></td>
- <td width="5%" align="center"> <input type="checkbox" name="post_id_list[]" value="{postrow.POST_ID}"> </td>
</tr>
! <!-- END postrow -->
! <tr>
! <td class="cat" colspan="3"><table width="60%" cellspacing="0" cellpadding="0" border="0" align="center">
<tr>
! <td width="50%" align="center"><input class="button" type="submit" name="split_type_all" value="{L_SPLIT_POSTS}"></td>
! <td width="50%" align="center"><input class="button" type="submit" name="split_type_beyond" value="{L_SPLIT_AFTER}"></td>
</tr>
</table></td>
</tr>
</table></td>
--- 72,112 ----
<tr>
<td valign="top"><table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
! <td valign="middle"><span class="gensmall">{L_POST_SUBJECT}: {postrow.POST_SUBJECT}</span></td>
</tr>
</table></td>
</tr>
<tr>
! <td width="100%" height="100%" valign="top"><hr /><span class="gen">{postrow.MESSAGE}</span></td>
</tr>
</table></td>
</tr>
! <tr bgcolor="{postrow.ROW_COLOR}">
! <td align="left" valign="middle"><table cellspacing="0" cellpadding="0" border="0">
<tr>
! <td valign="middle"><a href="#top"><img src="templates/Euclid/images/topic.gif" border="0" alt="" /></a></td>
! <td> </td>
! <td valign="middle"><span class="gensmall">{postrow.POST_DATE}</span></td>
</tr>
</table></td>
+ <td valign="middle"><table width="100%" cellspacing="0" cellpadding="0" border="0">
+ <tr>
+ <td align="right" valign="middle"><span class="gen">{L_SELECT}: <input type="checkbox" name="post_id_list[]" value="{postrow.POST_ID}" /></span></td>
+ </tr>
+ </table></td>
+ </tr>
+ </table></td>
+ </tr>
+ <tr>
+ <td class="cat" height="2"><img src="images/spacer.gif" height="2"></td>
+ </tr>
+ </table>
+ <!-- END postrow -->
+
+ <table width="98%" cellspacing="0" cellpadding="0" border="0" align="center">
+ <tr>
+ <td class="tablebg"><table width="100%" cellspacing="1" cellpadding="4" border="0">
+ <tr>
+ <td class="cat" colspan="3" height="30" align="center"><input class="liteoptiontable" type="submit" name="split_type_all" value="{L_SPLIT_POSTS}"> <input class="liteoptiontable" type="submit" name="split_type_beyond" value="{L_SPLIT_AFTER}"></td>
</tr>
</table></td>
***************
*** 69,73 ****
</table>
! {S_HIDDEN_FIELDS}</form>
<table cellspacing="2" border="0" width="98%" align="center">
--- 114,122 ----
</table>
! <table width="98%" cellspacing="0" cellpadding="4" border="0" align="center">
! <tr>
! <td align="right"><span class="gensmall"><a href="javascript:select_switch(true);">{L_MARK_ALL}</a> :: <a href="javascript:select_switch(false);">{L_UNMARK_ALL}</a></span></td>
! </tr>
! </table>
<table cellspacing="2" border="0" width="98%" align="center">
***************
*** 76,77 ****
--- 125,130 ----
</tr>
</table>
+
+ {S_HIDDEN_FIELDS}
+
+ </form>
|
|
From: Paul S. O. <ps...@us...> - 2001-12-11 02:21:54
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv27942
Modified Files:
modcp.php
Log Message:
More updates for Euclid, minor update to subSilver, fixed bug #490798
Index: modcp.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/modcp.php,v
retrieving revision 1.49
retrieving revision 1.50
diff -C2 -r1.49 -r1.50
*** modcp.php 2001/12/03 00:23:04 1.49
--- modcp.php 2001/12/11 02:21:51 1.50
***************
*** 490,566 ****
$new_forum_id = $HTTP_POST_VARS['new_forum'];
$old_forum_id = $forum_id;
- $topics = ( isset($HTTP_POST_VARS['topic_id_list']) ) ? $HTTP_POST_VARS['topic_id_list'] : array($topic_id);
! $topic_list = "";
! for($i = 0; $i < count($topics); $i++)
{
! if( $topic_list != "" )
{
! $topic_list .= ", ";
}
- $topic_list .= $topics[$i];
- }
! $sql_select = "SELECT *
! FROM " . TOPICS_TABLE . "
! WHERE topic_id IN ($topic_list)";
! if( !$result = $db->sql_query($sql_select, BEGIN_TRANSACTION) )
! {
! message_die(GENERAL_ERROR, "Could not select from topic table!", "Error", __LINE__, __FILE__, $sql_select);
! }
! $row = $db->sql_fetchrowset($result);
! for($i = 0; $i < count($row); $i++)
! {
! $topic_id = $row[$i]['topic_id'];
!
! if( isset($HTTP_POST_VARS['move_leave_shadow']) )
{
! // Insert topic in the old forum that indicates that the forum has moved.
! $sql = "INSERT INTO " . TOPICS_TABLE . " (forum_id, topic_title, topic_poster, topic_time, topic_status, topic_type, topic_vote, topic_views, topic_replies, topic_last_post_id, topic_moved_id)
! VALUES ($old_forum_id, '" . addslashes($row[$i]['topic_title']) . "', '" . $row[$i]['topic_poster'] . "', " . $row[$i]['topic_time'] . ", " . TOPIC_MOVED . ", " . POST_NORMAL . ", " . $row[$i]['topic_vote'] . ", " . $row[$i]['topic_views'] . ", " . $row[$i]['topic_replies'] . ", " . $row[$i]['topic_last_post_id'] . ", $topic_id)";
if( !$result = $db->sql_query($sql) )
{
! message_die(GENERAL_ERROR, "Could not insert shadow topic", "Error", __LINE__, __FILE__, $sql);
}
- }
! $sql = "UPDATE " . TOPICS_TABLE . "
! SET forum_id = $new_forum_id
! WHERE topic_id = $topic_id";
! if( !$result = $db->sql_query($sql) )
! {
! message_die(GENERAL_ERROR, "Could not update old topic", "Error", __LINE__, __FILE__, $sql);
}
! $sql = "UPDATE " . POSTS_TABLE . "
! SET forum_id = $new_forum_id
! WHERE topic_id = $topic_id";
! if( !$result = $db->sql_query($sql) )
! {
! message_die(GENERAL_ERROR, "Could not update post topic ids", "Error", __LINE__, __FILE__, $sql);
! }
! }
! // Sync the forum indexes
! sync("forum", $new_forum_id);
! sync("forum", $old_forum_id);
if( !empty($topic_id) )
{
$redirect_page = append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id");
! $message = sprintf($lang['Click_return_topic'], "<a href=\"$redirect_page\">", "</a>");
}
else
{
$redirect_page = append_sid("modcp.$phpEx?" . POST_FORUM_URL . "=$forum_id");
! $message = sprintf($lang['Click_return_modcp'], "<a href=\"$redirect_page\">", "</a>");
}
- $return_forum_url = append_sid("viewforum.$phpEx?" . POST_FORUM_URL . "=$old_forum_id");
- $returnforum = sprintf($lang['Click_return_forum'], "<a href=\"$return_forum_url\">", "</a>");
! $message = $message . "<br \><br \>$returnforum";
$template->assign_vars(array(
--- 490,575 ----
$new_forum_id = $HTTP_POST_VARS['new_forum'];
$old_forum_id = $forum_id;
! if( $new_forum_id != $old_forum_id )
{
! $topics = ( isset($HTTP_POST_VARS['topic_id_list']) ) ? $HTTP_POST_VARS['topic_id_list'] : array($topic_id);
!
! $topic_list = "";
! for($i = 0; $i < count($topics); $i++)
{
! if( $topic_list != "" )
! {
! $topic_list .= ", ";
! }
! $topic_list .= $topics[$i];
}
! $sql_select = "SELECT *
! FROM " . TOPICS_TABLE . "
! WHERE topic_id IN ($topic_list)";
! if( !$result = $db->sql_query($sql_select, BEGIN_TRANSACTION) )
! {
! message_die(GENERAL_ERROR, "Could not select from topic table!", "Error", __LINE__, __FILE__, $sql_select);
! }
! $row = $db->sql_fetchrowset($result);
! for($i = 0; $i < count($row); $i++)
{
! $topic_id = $row[$i]['topic_id'];
!
! if( isset($HTTP_POST_VARS['move_leave_shadow']) )
! {
! // Insert topic in the old forum that indicates that the forum has moved.
! $sql = "INSERT INTO " . TOPICS_TABLE . " (forum_id, topic_title, topic_poster, topic_time, topic_status, topic_type, topic_vote, topic_views, topic_replies, topic_last_post_id, topic_moved_id)
! VALUES ($old_forum_id, '" . addslashes($row[$i]['topic_title']) . "', '" . $row[$i]['topic_poster'] . "', " . $row[$i]['topic_time'] . ", " . TOPIC_MOVED . ", " . POST_NORMAL . ", " . $row[$i]['topic_vote'] . ", " . $row[$i]['topic_views'] . ", " . $row[$i]['topic_replies'] . ", " . $row[$i]['topic_last_post_id'] . ", $topic_id)";
! if( !$result = $db->sql_query($sql) )
! {
! message_die(GENERAL_ERROR, "Could not insert shadow topic", "Error", __LINE__, __FILE__, $sql);
! }
! }
!
! $sql = "UPDATE " . TOPICS_TABLE . "
! SET forum_id = $new_forum_id
! WHERE topic_id = $topic_id";
if( !$result = $db->sql_query($sql) )
{
! message_die(GENERAL_ERROR, "Could not update old topic", "Error", __LINE__, __FILE__, $sql);
}
! $sql = "UPDATE " . POSTS_TABLE . "
! SET forum_id = $new_forum_id
! WHERE topic_id = $topic_id";
! if( !$result = $db->sql_query($sql) )
! {
! message_die(GENERAL_ERROR, "Could not update post topic ids", "Error", __LINE__, __FILE__, $sql);
! }
}
! // Sync the forum indexes
! sync("forum", $new_forum_id);
! sync("forum", $old_forum_id);
! $message = $lang['Topics_Moved'] . "<br /><br />";
+ }
+ else
+ {
+ $message = $lang['No_Topics_Moved'] . "<br /><br />";
+ }
+
if( !empty($topic_id) )
{
$redirect_page = append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id");
! $message .= sprintf($lang['Click_return_topic'], "<a href=\"$redirect_page\">", "</a>");
}
else
{
$redirect_page = append_sid("modcp.$phpEx?" . POST_FORUM_URL . "=$forum_id");
! $message .= sprintf($lang['Click_return_modcp'], "<a href=\"$redirect_page\">", "</a>");
}
! $message = $message . "<br \><br \>" . sprintf($lang['Click_return_forum'], "<a href=\"" . append_sid("viewforum.$phpEx?" . POST_FORUM_URL . "=$old_forum_id") . "\">", "</a>");
$template->assign_vars(array(
***************
*** 568,572 ****
);
! message_die(GENERAL_MESSAGE, $lang['Topics_Moved'] . "<br /><br />" . $message);
}
else
--- 577,581 ----
);
! message_die(GENERAL_MESSAGE, $message);
}
else
***************
*** 609,613 ****
"L_NO" => $lang['No'],
! "S_FORUM_BOX" => make_forum_select("new_forum"),
"S_MODCP_ACTION" => append_sid("modcp.$phpEx"),
"S_HIDDEN_FIELDS" => $hidden_fields)
--- 618,622 ----
"L_NO" => $lang['No'],
! "S_FORUM_BOX" => make_forum_select("new_forum", $forum_id),
"S_MODCP_ACTION" => append_sid("modcp.$phpEx"),
"S_HIDDEN_FIELDS" => $hidden_fields)
***************
*** 740,744 ****
$new_topic_id = $db->sql_nextid();
! if($HTTP_POST_VARS['split_type_all'])
{
$post_id_sql = "";
--- 749,753 ----
$new_topic_id = $db->sql_nextid();
! if( $HTTP_POST_VARS['split_type_all'] )
{
$post_id_sql = "";
***************
*** 756,760 ****
WHERE post_id IN ($post_id_sql)";
}
! else if($HTTP_POST_VARS['split_type_beyond'])
{
$sql = "UPDATE " . POSTS_TABLE . "
--- 765,769 ----
WHERE post_id IN ($post_id_sql)";
}
! else if( $HTTP_POST_VARS['split_type_beyond'] )
{
$sql = "UPDATE " . POSTS_TABLE . "
***************
*** 819,827 ****
"L_SPLIT_AFTER" => $lang['Split_after'],
"L_POST_SUBJECT" => $lang['Post_subject'],
"S_SPLIT_ACTION" => append_sid("modcp.$phpEx"),
"S_HIDDEN_FIELDS" => $s_hidden_fields,
!
! "FORUM_INPUT" => make_forum_select("new_forum_id", $forum_id))
);
--- 828,841 ----
"L_SPLIT_AFTER" => $lang['Split_after'],
"L_POST_SUBJECT" => $lang['Post_subject'],
+ "L_MARK_ALL" => $lang['Mark_all'],
+ "L_UNMARK_ALL" => $lang['Unmark_all'],
+
+ "FORUM_NAME" => $forum_name,
+ "U_VIEW_FORUM" => append_sid("viewforum.$phpEx?" . POST_FORUM_URL . "=$forum_id"),
+
"S_SPLIT_ACTION" => append_sid("modcp.$phpEx"),
"S_HIDDEN_FIELDS" => $s_hidden_fields,
! "S_FORUM_SELECT" => make_forum_select("new_forum_id"))
);
***************
*** 870,874 ****
$message = make_clickable($message);
! if($board_config['allow_smilies'] && $postrow[$i]['enable_smilies'])
{
$message = smilies_pass($message);
--- 884,888 ----
$message = make_clickable($message);
! if( $board_config['allow_smilies'] && $postrow[$i]['enable_smilies'] )
{
$message = smilies_pass($message);
***************
*** 1156,1158 ****
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! ?>
--- 1170,1172 ----
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! ?>
\ No newline at end of file
|
|
From: Paul S. O. <ps...@us...> - 2001-12-11 02:11:29
|
Update of /cvsroot/phpbb/phpBB2/templates/Euclid In directory usw-pr-cvs1:/tmp/cvs-serv25531/templates/Euclid Removed Files: groupcp_list_body.tpl Log Message: Ancient ... --- groupcp_list_body.tpl DELETED --- |
|
From: Bart v. B. <ba...@us...> - 2001-12-10 21:53:31
|
Update of /cvsroot/phpbb/phpBB2/db/schemas
In directory usw-pr-cvs1:/tmp/cvs-serv22409
Modified Files:
mysql_schema.sql postgres_schema.sql oracle_schema.sql
Log Message:
Fix for some small problems with upgrade
Index: mysql_schema.sql
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/schemas/mysql_schema.sql,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** mysql_schema.sql 2001/11/30 23:15:53 1.5
--- mysql_schema.sql 2001/12/10 21:53:27 1.6
***************
*** 473,479 ****
user_viewemail tinyint(1),
user_attachsig tinyint(1),
! user_allowhtml tinyint(1),
! user_allowbbcode tinyint(1),
! user_allowsmile tinyint(1),
user_allowavatar tinyint(1) DEFAULT '1' NOT NULL,
user_allow_pm tinyint(1) DEFAULT '1' NOT NULL,
--- 473,479 ----
user_viewemail tinyint(1),
user_attachsig tinyint(1),
! user_allowhtml tinyint(1) DEFAULT '1',
! user_allowbbcode tinyint(1) DEFAULT '1',
! user_allowsmile tinyint(1) DEFAULT '1',
user_allowavatar tinyint(1) DEFAULT '1' NOT NULL,
user_allow_pm tinyint(1) DEFAULT '1' NOT NULL,
Index: postgres_schema.sql
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/schemas/postgres_schema.sql,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** postgres_schema.sql 2001/11/29 09:57:29 1.5
--- postgres_schema.sql 2001/12/10 21:53:27 1.6
***************
*** 468,474 ****
user_viewemail int2,
user_attachsig int2,
! user_allowhtml int2,
! user_allowbbcode int2,
! user_allowsmile int2,
user_allow_pm int2 DEFAULT '1' NOT NULL,
user_allowavatar int2 DEFAULT '1' NOT NULL,
--- 468,474 ----
user_viewemail int2,
user_attachsig int2,
! user_allowhtml int2 DEFAULT '1',
! user_allowbbcode int2 DEFAULT '1',
! user_allowsmile int2 DEFAULT '1',
user_allow_pm int2 DEFAULT '1' NOT NULL,
user_allowavatar int2 DEFAULT '1' NOT NULL,
Index: oracle_schema.sql
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/schemas/oracle_schema.sql,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** oracle_schema.sql 2001/11/24 17:17:32 1.2
--- oracle_schema.sql 2001/12/10 21:53:27 1.3
***************
*** 455,461 ****
user_viewemail number(4),
user_attachsig number(4),
! user_allowhtml number(4),
! user_allowbbcode number(4),
! user_allowsmile number(4),
user_allow_pm number(4) DEFAULT '1' NOT NULL,
user_allowavatar number(4) DEFAULT '1' NOT NULL,
--- 455,461 ----
user_viewemail number(4),
user_attachsig number(4),
! user_allowhtml number(4) DEFAULT '1',
! user_allowbbcode number(4) DEFAULT '1',
! user_allowsmile number(4) DEFAULT '1',
user_allow_pm number(4) DEFAULT '1' NOT NULL,
user_allowavatar number(4) DEFAULT '1' NOT NULL,
|
|
From: Bart v. B. <ba...@us...> - 2001-12-10 16:52:21
|
Update of /cvsroot/phpbb/phpBB2/templates/subSilver In directory usw-pr-cvs1:/tmp/cvs-serv25830/templates/subSilver Modified Files: subSilver.cfg posting_body.tpl Log Message: Fixed #490848 and introduced $current_template_path Index: subSilver.cfg =================================================================== RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/subSilver.cfg,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** subSilver.cfg 2001/12/10 00:17:20 1.6 --- subSilver.cfg 2001/12/10 16:52:16 1.7 *************** *** 22,76 **** // $smilies_url = "images/smiles"; ! $images['icon_quote'] = "templates/subSilver/images/icon_quote.gif"; ! $images['icon_edit'] = "templates/subSilver/images/icon_edit.gif"; ! $images['icon_search'] = "templates/subSilver/images/icon_search.gif"; ! $images['icon_profile'] = "templates/subSilver/images/icon_profile.gif"; ! $images['icon_pm'] = "templates/subSilver/images/icon_pm.gif"; ! $images['icon_email'] = "templates/subSilver/images/icon_email.gif"; ! $images['icon_delpost'] = "templates/subSilver/images/icon_delete.gif"; ! $images['icon_ip'] = "templates/subSilver/images/icon_ip.gif"; ! $images['icon_www'] = "templates/subSilver/images/icon_www.gif"; ! $images['icon_icq'] = "templates/subSilver/images/icon_icq_add.gif"; ! $images['icon_aim'] = "templates/subSilver/images/icon_aim.gif"; ! $images['icon_yim'] = "templates/subSilver/images/icon_yim.gif"; ! $images['icon_msnm'] = "templates/subSilver/images/icon_msnm.gif"; ! $images['icon_minipost'] = "templates/subSilver/images/icon_minipost.gif"; ! $images['icon_gotopost'] = "templates/subSilver/images/icon_minipost.gif"; ! $images['icon_minipost_new'] = "templates/subSilver/images/icon_minipost_new.gif"; ! $images['icon_latest_reply'] = "templates/subSilver/images/icon_latest_reply.gif"; ! $images['icon_newest_reply'] = "templates/subSilver/images/icon_newest_reply.gif"; ! ! $images['forum'] = "templates/subSilver/images/folder_big.gif"; ! $images['forum_new'] = "templates/subSilver/images/folder_new_big.gif"; ! $images['forum_locked'] = "templates/subSilver/images/folder_locked_big.gif"; ! ! $images['folder'] = "templates/subSilver/images/folder.gif"; ! $images['folder_new'] = "templates/subSilver/images/folder_new.gif"; ! $images['folder_hot'] = "templates/subSilver/images/folder_hot.gif"; ! $images['folder_hot_new'] = "templates/subSilver/images/folder_new_hot.gif"; ! $images['folder_locked'] = "templates/subSilver/images/folder_lock.gif"; ! $images['folder_locked_new'] = "templates/subSilver/images/folder_lock_new.gif"; ! $images['folder_sticky'] = "templates/subSilver/images/folder_sticky.gif"; ! $images['folder_sticky_new'] = "templates/subSilver/images/folder_sticky_new.gif"; ! $images['folder_announce'] = "templates/subSilver/images/folder_announce.gif"; ! $images['folder_announce_new'] = "templates/subSilver/images/folder_announce_new.gif"; ! ! $images['post_new'] = "templates/subSilver/images/post.gif"; ! $images['post_locked'] = "templates/subSilver/images/reply-locked.gif"; ! $images['reply_new'] = "templates/subSilver/images/reply.gif"; ! $images['reply_locked'] = "templates/subSilver/images/reply-locked.gif"; ! ! $images['pm_inbox'] = "templates/subSilver/images/msg_inbox.gif"; ! $images['pm_outbox'] = "templates/subSilver/images/msg_outbox.gif"; ! $images['pm_savebox'] = "templates/subSilver/images/msg_savebox.gif"; ! $images['pm_sentbox'] = "templates/subSilver/images/msg_sentbox.gif"; ! $images['pm_readmsg'] = "templates/subSilver/images/folder.gif"; ! $images['pm_unreadmsg'] = "templates/subSilver/images/folder_new.gif"; ! $images['pm_replymsg'] = "templates/subSilver/images/reply.gif"; ! $images['pm_postmsg'] = "templates/subSilver/images/msg_newpost.gif"; ! $images['pm_quotemsg'] = "templates/subSilver/images/icon_quote.gif"; ! $images['pm_editmsg'] = "templates/subSilver/images/icon_edit.gif"; $images['pm_new_msg'] = ""; $images['pm_no_new_msg'] = ""; --- 22,78 ---- // + $current_template_images = $current_template_path . "/images"; + $smilies_url = "images/smiles"; ! $images['icon_quote'] = "$current_template_images/icon_quote.gif"; ! $images['icon_edit'] = "$current_template_images/icon_edit.gif"; ! $images['icon_search'] = "$current_template_images/icon_search.gif"; ! $images['icon_profile'] = "$current_template_images/icon_profile.gif"; ! $images['icon_pm'] = "$current_template_images/icon_pm.gif"; ! $images['icon_email'] = "$current_template_images/icon_email.gif"; ! $images['icon_delpost'] = "$current_template_images/icon_delete.gif"; ! $images['icon_ip'] = "$current_template_images/icon_ip.gif"; ! $images['icon_www'] = "$current_template_images/icon_www.gif"; ! $images['icon_icq'] = "$current_template_images/icon_icq_add.gif"; ! $images['icon_aim'] = "$current_template_images/icon_aim.gif"; ! $images['icon_yim'] = "$current_template_images/icon_yim.gif"; ! $images['icon_msnm'] = "$current_template_images/icon_msnm.gif"; ! $images['icon_minipost'] = "$current_template_images/icon_minipost.gif"; ! $images['icon_gotopost'] = "$current_template_images/icon_minipost.gif"; ! $images['icon_minipost_new'] = "$current_template_images/icon_minipost_new.gif"; ! $images['icon_latest_reply'] = "$current_template_images/icon_latest_reply.gif"; ! $images['icon_newest_reply'] = "$current_template_images/icon_newest_reply.gif"; ! ! $images['forum'] = "$current_template_images/folder_big.gif"; ! $images['forum_new'] = "$current_template_images/folder_new_big.gif"; ! $images['forum_locked'] = "$current_template_images/folder_locked_big.gif"; ! ! $images['folder'] = "$current_template_images/folder.gif"; ! $images['folder_new'] = "$current_template_images/folder_new.gif"; ! $images['folder_hot'] = "$current_template_images/folder_hot.gif"; ! $images['folder_hot_new'] = "$current_template_images/folder_new_hot.gif"; ! $images['folder_locked'] = "$current_template_images/folder_lock.gif"; ! $images['folder_locked_new'] = "$current_template_images/folder_lock_new.gif"; ! $images['folder_sticky'] = "$current_template_images/folder_sticky.gif"; ! $images['folder_sticky_new'] = "$current_template_images/folder_sticky_new.gif"; ! $images['folder_announce'] = "$current_template_images/folder_announce.gif"; ! $images['folder_announce_new'] = "$current_template_images/folder_announce_new.gif"; ! ! $images['post_new'] = "$current_template_images/post.gif"; ! $images['post_locked'] = "$current_template_images/reply-locked.gif"; ! $images['reply_new'] = "$current_template_images/reply.gif"; ! $images['reply_locked'] = "$current_template_images/reply-locked.gif"; ! ! $images['pm_inbox'] = "$current_template_images/msg_inbox.gif"; ! $images['pm_outbox'] = "$current_template_images/msg_outbox.gif"; ! $images['pm_savebox'] = "$current_template_images/msg_savebox.gif"; ! $images['pm_sentbox'] = "$current_template_images/msg_sentbox.gif"; ! $images['pm_readmsg'] = "$current_template_images/folder.gif"; ! $images['pm_unreadmsg'] = "$current_template_images/folder_new.gif"; ! $images['pm_replymsg'] = "$current_template_images/reply.gif"; ! $images['pm_postmsg'] = "$current_template_images/msg_newpost.gif"; ! $images['pm_quotemsg'] = "$current_template_images/icon_quote.gif"; ! $images['pm_editmsg'] = "$current_template_images/icon_edit.gif"; $images['pm_new_msg'] = ""; $images['pm_no_new_msg'] = ""; *************** *** 78,92 **** $images['topic_watch'] = ""; $images['topic_un_watch'] = ""; ! $images['topic_mod_lock'] = "templates/subSilver/images/topic_lock.gif"; ! $images['topic_mod_unlock'] = "templates/subSilver/images/topic_unlock.gif"; ! $images['topic_mod_split'] = "templates/subSilver/images/topic_split.gif"; ! $images['topic_mod_move'] = "templates/subSilver/images/topic_move.gif"; ! $images['topic_mod_delete'] = "templates/subSilver/images/topic_delete.gif"; ! ! $images['voting_graphic'][0] = "templates/subSilver/images/voting_bar.gif"; ! $images['voting_graphic'][1] = "templates/subSilver/images/voting_bar.gif"; ! $images['voting_graphic'][2] = "templates/subSilver/images/voting_bar.gif"; ! $images['voting_graphic'][3] = "templates/subSilver/images/voting_bar.gif"; ! $images['voting_graphic'][4] = "templates/subSilver/images/voting_bar.gif"; $images['auth_can_read'] = ""; --- 80,94 ---- $images['topic_watch'] = ""; $images['topic_un_watch'] = ""; ! $images['topic_mod_lock'] = "$current_template_images/topic_lock.gif"; ! $images['topic_mod_unlock'] = "$current_template_images/topic_unlock.gif"; ! $images['topic_mod_split'] = "$current_template_images/topic_split.gif"; ! $images['topic_mod_move'] = "$current_template_images/topic_move.gif"; ! $images['topic_mod_delete'] = "$current_template_images/topic_delete.gif"; ! ! $images['voting_graphic'][0] = "$current_template_images/voting_bar.gif"; ! $images['voting_graphic'][1] = "$current_template_images/voting_bar.gif"; ! $images['voting_graphic'][2] = "$current_template_images/voting_bar.gif"; ! $images['voting_graphic'][3] = "$current_template_images/voting_bar.gif"; ! $images['voting_graphic'][4] = "$current_template_images/voting_bar.gif"; $images['auth_can_read'] = ""; *************** *** 109,111 **** $board_config['privmsg_graphic_length'] = 175; ! ?> \ No newline at end of file --- 111,113 ---- $board_config['privmsg_graphic_length'] = 175; ! ?> Index: posting_body.tpl =================================================================== RCS file: /cvsroot/phpbb/phpBB2/templates/subSilver/posting_body.tpl,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** posting_body.tpl 2001/11/29 13:25:56 1.12 --- posting_body.tpl 2001/12/10 16:52:16 1.13 *************** *** 332,336 **** <option style="color:darkred; background-color: #DEE3E7" value="darkred" class="genmed">Dark Red</option> ! <option style="color:red; background-color: #DEE3E7" value="darkred" class="genmed">Red</option> <option style="color:orange; background-color: #DEE3E7" value="orange" class="genmed">Orange</option> <option style="color:brown; background-color: #DEE3E7" value="brown" class="genmed">Brown</option> --- 332,336 ---- <option style="color:darkred; background-color: #DEE3E7" value="darkred" class="genmed">Dark Red</option> ! <option style="color:red; background-color: #DEE3E7" value="red" class="genmed">Red</option> <option style="color:orange; background-color: #DEE3E7" value="orange" class="genmed">Orange</option> <option style="color:brown; background-color: #DEE3E7" value="brown" class="genmed">Brown</option> |
|
From: Bart v. B. <ba...@us...> - 2001-12-10 16:52:21
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv25830/includes
Modified Files:
functions.php
Log Message:
Fixed #490848 and introduced $current_template_path
Index: functions.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/functions.php,v
retrieving revision 1.89
retrieving revision 1.90
diff -C2 -r1.89 -r1.90
*** functions.php 2001/12/05 00:50:12 1.89
--- functions.php 2001/12/10 16:52:16 1.90
***************
*** 329,332 ****
--- 329,333 ----
if( $template )
{
+ $current_template_path = $template_path . $template_name . '/';
@include($phpbb_root_path . $template_path . $template_name . '/' . $template_name . '.cfg');
***************
*** 1177,1179 ****
}
! ?>
\ No newline at end of file
--- 1178,1180 ----
}
! ?>
|
|
From: Paul S. O. <ps...@us...> - 2001-12-10 15:25:56
|
Update of /cvsroot/phpbb/phpBB2/templates/Euclid
In directory usw-pr-cvs1:/tmp/cvs-serv31437
Modified Files:
posting_body.tpl privmsgs_read_body.tpl privmsgs_preview.tpl
Log Message:
More updates
Index: posting_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/posting_body.tpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** posting_body.tpl 2001/12/10 15:17:18 1.3
--- posting_body.tpl 2001/12/10 15:25:53 1.4
***************
*** 226,230 ****
<td class="tablebg"><table width="100%" cellspacing="1" cellpadding="4" border="0">
<tr>
! <td class="cat" colspan="2" height="30"><span class="cattitle"><b>{L_POST_A}</b></span></td>
</tr>
<!-- BEGIN username_select -->
--- 226,230 ----
<td class="tablebg"><table width="100%" cellspacing="1" cellpadding="4" border="0">
<tr>
! <td class="cat" colspan="2" height="30" align="center"><span class="cattitle"><b>{L_POST_A}</b></span></td>
</tr>
<!-- BEGIN username_select -->
Index: privmsgs_read_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/privmsgs_read_body.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** privmsgs_read_body.tpl 2001/12/10 00:58:50 1.1
--- privmsgs_read_body.tpl 2001/12/10 15:25:53 1.2
***************
*** 34,46 ****
</table>
! <table border="0" cellpadding="1" cellspacing="0" width="98%" align="center">
<tr>
<td class="tablebg"><table border="0" cellpadding="4" cellspacing="1" width="100%">
<tr>
! <td class="cat" align="right">{QUOTE_PM_IMG} {REPLY_PM_IMG} {EDIT_PM_IMG}</td>
</tr>
<tr>
! <th>{BOX_NAME} :: {L_MESSAGE}</th>
</tr>
<tr>
<td class="row2" align="left"><table width="100%" cellspacing="0" cellpadding="0" border="0">
--- 34,53 ----
</table>
! <table width="98%" cellspacing="0" cellpadding="0" border="0" align="center">
<tr>
<td class="tablebg"><table border="0" cellpadding="4" cellspacing="1" width="100%">
<tr>
! <td class="cat" height="30" align="right">{QUOTE_PM_IMG} {REPLY_PM_IMG} {EDIT_PM_IMG}</td>
</tr>
<tr>
! <th height="25">{BOX_NAME} :: {L_MESSAGE}</th>
</tr>
+ </table></td>
+ </tr>
+ <tr>
+ <td class="cat" height="2"><img src="images/spacer.gif" height="2"></td>
+ </tr>
+ <tr>
+ <td class="tablebg"><table width="100%" cellspacing="1" cellpadding="4" border="0">
<tr>
<td class="row2" align="left"><table width="100%" cellspacing="0" cellpadding="0" border="0">
***************
*** 81,86 ****
<td class="row2" height="20" valign="middle">{PROFILE_IMG} {EMAIL_IMG} {SEARCH_IMG} {WWW_IMG} {ICQ_ADD_IMG} {AIM_IMG} {YIM_IMG} {MSN_IMG}</td>
</tr>
<tr>
! <td class="cat"><table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td>{QUOTE_PM_IMG} {REPLY_PM_IMG} {EDIT_PM_IMG}</td>
--- 88,100 ----
<td class="row2" height="20" valign="middle">{PROFILE_IMG} {EMAIL_IMG} {SEARCH_IMG} {WWW_IMG} {ICQ_ADD_IMG} {AIM_IMG} {YIM_IMG} {MSN_IMG}</td>
</tr>
+ </table></td>
+ </tr>
+ <tr>
+ <td class="cat" height="2"><img src="images/spacer.gif" height="2"></td>
+ </tr>
+ <tr>
+ <td class="tablebg"><table width="100%" cellspacing="1" cellpadding="4" border="0">
<tr>
! <td class="cat" height="30"><table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td>{QUOTE_PM_IMG} {REPLY_PM_IMG} {EDIT_PM_IMG}</td>
Index: privmsgs_preview.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/privmsgs_preview.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** privmsgs_preview.tpl 2001/12/10 00:58:50 1.1
--- privmsgs_preview.tpl 2001/12/10 15:25:53 1.2
***************
*** 1,12 ****
! <table width="80%" border="0" cellpadding="1" cellspacing="0" align="center">
<tr>
<td class="tablebg"><table border="0" cellpadding="4" cellspacing="1" width="100%">
<tr>
! <td class="cat"><table width="100%" cellspacing="0" cellpadding="0" border="0">
! <tr>
! <td><span class="cattitle"><b>{L_PREVIEW}</b></span></td>
! </tr>
! </table></td>
</tr>
<tr>
<td class="row2" align="left"><table width="100%" cellspacing="0" cellpadding="0" border="0">
--- 1,16 ----
!
! <table width="98%" cellspacing="0" cellpadding="0" border="0" align="center">
<tr>
<td class="tablebg"><table border="0" cellpadding="4" cellspacing="1" width="100%">
<tr>
! <td class="cat" height="30" align="center"><span class="cattitle">{L_PREVIEW}</span></td>
</tr>
+ </table></td>
+ </tr>
+ <tr>
+ <td class="cat" height="2"><img src="images/spacer.gif" height="2"></td>
+ </tr>
+ <tr>
+ <td class="tablebg"><table width="100%" cellspacing="1" cellpadding="4" border="0">
<tr>
<td class="row2" align="left"><table width="100%" cellspacing="0" cellpadding="0" border="0">
***************
*** 49,52 ****
--- 53,59 ----
</tr>
</table></td>
+ </tr>
+ <tr>
+ <td class="cat" height="2"><img src="images/spacer.gif" height="2"></td>
</tr>
</table>
|
|
From: Paul S. O. <ps...@us...> - 2001-12-10 15:17:21
|
Update of /cvsroot/phpbb/phpBB2/templates/Euclid
In directory usw-pr-cvs1:/tmp/cvs-serv28542
Modified Files:
posting_body.tpl
Log Message:
More updates
Index: posting_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/posting_body.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** posting_body.tpl 2001/12/10 14:48:11 1.2
--- posting_body.tpl 2001/12/10 15:17:18 1.3
***************
*** 238,242 ****
<tr>
<td class="row1"><span class="gen"><b>{L_USERNAME}</b></span></td>
! <td class="row2"><input type="text" name="username" maxlength="30" size="25" /> <input type="submit" name="usersubmit" value="{L_FIND_USERNAME}" class="liteoption" onClick="window.open('search.php?mode=searchuser', '_phpbbsearch', 'HEIGHT=155,resizable=yes,WIDTH=400');return false;" /></td>
</tr>
<!-- END privmsg_extensions -->
--- 238,242 ----
<tr>
<td class="row1"><span class="gen"><b>{L_USERNAME}</b></span></td>
! <td class="row2"><input type="text" name="username" maxlength="30" size="25" /> <input class="liteoptiontable" type="submit" name="usersubmit" value="{L_FIND_USERNAME}" onClick="window.open('search.php?mode=searchuser', '_phpbbsearch', 'HEIGHT=155,resizable=yes,WIDTH=400');return false;" /></td>
</tr>
<!-- END privmsg_extensions -->
|
|
From: Paul S. O. <ps...@us...> - 2001-12-10 15:12:53
|
Update of /cvsroot/phpbb/phpBB2/templates/Euclid
In directory usw-pr-cvs1:/tmp/cvs-serv27100
Modified Files:
posting_preview.tpl posting_topic_review.tpl
Log Message:
More updates
Index: posting_preview.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/posting_preview.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** posting_preview.tpl 2001/12/10 00:58:50 1.1
--- posting_preview.tpl 2001/12/10 15:12:50 1.2
***************
*** 1,20 ****
! <table width="90%" border="0" cellpadding="0" cellspacing="0" align="center">
<tr>
! <td class="tablebg"><table border="0" cellpadding="4" cellspacing="1" width="100%">
<tr>
! <td class="cat"><table width="100%" cellspacing="0" cellpadding="0" border="0">
! <tr>
! <td><span class="cattitle"><b>{L_PREVIEW}</b></span></td>
! </tr>
! </table></td>
</tr>
<tr>
! <th> {L_MESSAGE} </th>
</tr>
<tr bgcolor="{T_TD_COLOR1}">
<td height="100%"><table width="100%" height="100%" cellspacing="1" cellpadding="0" border="0">
<tr>
! <td><img src="images/icon_minipost.gif" alt="Post image icon" /><span class="gensmall">{L_POSTED}: {POST_DATE} Post Subject: {POST_SUBJECT}</span><hr /></td>
</tr>
<tr>
--- 1,37 ----
! <table width="98%" cellpadding="0" cellspacing="0" border="0" align="center">
<tr>
! <td class="tablebg"><table width="100%" cellspacing="1" cellpadding="4" border="0">
<tr>
! <td class="cat" colspan="2" height="30" align="center"><span class="cattitle">{L_PREVIEW}</span></td>
</tr>
<tr>
! <th width="160" height="25"><table width="160" cellspacing="0" cellpadding="0" border="0">
! <tr>
! <th>{L_AUTHOR}</th>
! </tr>
! </table></th>
! <th width="100%" height="25"><table width="100%" cellspacing="0" cellpadding="0" border="0">
! <tr>
! <th>{L_MESSAGE}</th>
! </tr>
! </table></th>
</tr>
+ </table></td>
+ </tr>
+ <tr>
+ <td class="cat" height="2"><img src="images/spacer.gif" height="2"></td>
+ </tr>
+ <tr>
+ <td class="tablebg"><table width="100%" cellspacing="1" cellpadding="4" border="0">
<tr bgcolor="{T_TD_COLOR1}">
+ <td width="160" align="left" valign="top"><a name="{postrow.U_POST_ID}"></a><table width="160" cellspacing="0" cellpadding="0" border="0">
+ <tr>
+ <td valign="top"><span class="gen"><b>{POSTER_NAME}</b></span></td>
+ </tr>
+ </table></td>
<td height="100%"><table width="100%" height="100%" cellspacing="1" cellpadding="0" border="0">
<tr>
! <td><span class="gensmall">Post Subject: {POST_SUBJECT}</span><hr /></td>
</tr>
<tr>
***************
*** 23,27 ****
--- 40,61 ----
</table></td>
</tr>
+ <tr bgcolor="{T_TD_COLOR1}">
+ <td align="left" valign="middle"><table cellspacing="0" cellpadding="0" border="0">
+ <tr>
+ <td valign="middle"><img src="templates/Euclid/images/topic.gif" alt="" /></td>
+ <td> </td>
+ <td valign="middle"><span class="gensmall">{POST_DATE}</span></td>
+ </tr>
+ </table></td>
+ <td valign="middle"><table width="100%" cellspacing="0" cellpadding="0" border="0">
+ <tr>
+ <td valign="middle"> </td>
+ </tr>
+ </table></td>
+ </tr>
</table></td>
+ </tr>
+ <tr>
+ <td class="cat" height="2"><img src="images/spacer.gif" height="2"></td>
</tr>
</table>
Index: posting_topic_review.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/posting_topic_review.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** posting_topic_review.tpl 2001/12/10 00:58:50 1.1
--- posting_topic_review.tpl 2001/12/10 15:12:50 1.2
***************
*** 1,5 ****
<!-- BEGIN switch_inline_mode -->
! <table width="90%" border="0" cellpadding="0" cellspacing="1" align="center">
<tr>
<td class="cat" height="30" align="center"><b><span class="cattitle">{L_TOPIC_REVIEW}</span></b></td>
--- 1,5 ----
<!-- BEGIN switch_inline_mode -->
! <table width="98%" border="0" cellpadding="0" cellspacing="1" align="center">
<tr>
<td class="cat" height="30" align="center"><b><span class="cattitle">{L_TOPIC_REVIEW}</span></b></td>
***************
*** 13,24 ****
<td width="100%" class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
<tr>
! <th width="160"><table width="160" cellspacing="0" cellpadding="0" border="0">
<tr>
! <td align="center"><span class="gensmall"><b>{L_AUTHOR}</b></span></td>
</tr>
</table></th>
! <th width="100%"><table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
! <td align="center"><span class="gensmall"><b>{L_MESSAGE}</b></span></td>
</tr>
</table></th>
--- 13,24 ----
<td width="100%" class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
<tr>
! <th width="160" height="25"><table width="160" cellspacing="0" cellpadding="0" border="0">
<tr>
! <th>{L_AUTHOR}</h>
</tr>
</table></th>
! <th width="100%" height="25"><table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
! <th>{L_MESSAGE}</th>
</tr>
</table></th>
***************
*** 27,31 ****
</tr>
<tr>
! <td><img src="images/spacer.gif" height="4" /></td>
</tr>
</table>
--- 27,31 ----
</tr>
<tr>
! <td class="cat" height="2"><img src="images/spacer.gif" height="2"></td>
</tr>
</table>
***************
*** 36,40 ****
<td class="tablebg"><table border="0" cellpadding="4" cellspacing="1" width="100%">
<tr bgcolor="{postrow.ROW_COLOR}">
! <td width="180" align="left" valign="top"><a name="{postrow.U_POST_ID}"></a><table width="180" cellspacing="0" cellpadding="0" border="0">
<tr>
<td valign="top"><span class="gen"><b>{postrow.POSTER_NAME}</b></span></td>
--- 36,40 ----
<td class="tablebg"><table border="0" cellpadding="4" cellspacing="1" width="100%">
<tr bgcolor="{postrow.ROW_COLOR}">
! <td width="160" align="left" valign="top"><a name="{postrow.U_POST_ID}"></a><table width="160" cellspacing="0" cellpadding="0" border="0">
<tr>
<td valign="top"><span class="gen"><b>{postrow.POSTER_NAME}</b></span></td>
***************
*** 45,65 ****
<td valign="top"><table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
! <td valign="middle"><img src="images/icon_minipost.gif" alt="Post image icon" /><span class="gensmall">{L_POSTED}: {postrow.POST_DATE} {L_POST_SUBJECT}: {postrow.POST_SUBJECT}</span></td>
! <td align="right" valign="middle" nowrap="nowrap"> {postrow.EDIT_IMG} {postrow.QUOTE_IMG} </td>
</tr>
- <tr>
- <td colspan="2"><hr /></td>
- </tr>
</table></td>
</tr>
<tr>
! <td width="100%" height="100%" valign="top"><span class="gen">{postrow.MESSAGE}</span></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
<tr>
! <td><img src="images/spacer.gif" height="2" /></td>
</tr>
</table>
--- 45,71 ----
<td valign="top"><table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
! <td valign="middle"><span class="gensmall">{L_POST_SUBJECT}: {postrow.POST_SUBJECT}</span></td>
</tr>
</table></td>
</tr>
+ <tr>
+ <td width="100%" height="100%" valign="top"><hr /><span class="gen">{postrow.MESSAGE}</span></td>
+ </tr>
+ </table></td>
+ </tr>
+ <tr bgcolor="{postrow.ROW_COLOR}">
+ <td align="left" valign="middle"><table cellspacing="0" cellpadding="0" border="0">
<tr>
! <td valign="middle"><a href="#top"><img src="templates/Euclid/images/topic.gif" border="0" alt="" /></a></td>
! <td> </td>
! <td valign="middle"><span class="gensmall">{postrow.POST_DATE}</span></td>
</tr>
</table></td>
+ <td valign="middle"> </td>
</tr>
</table></td>
</tr>
<tr>
! <td class="cat" height="2"><img src="images/spacer.gif" height="2"></td>
</tr>
</table>
|
|
From: Paul S. O. <ps...@us...> - 2001-12-10 14:48:16
|
Update of /cvsroot/phpbb/phpBB2/templates/Euclid
In directory usw-pr-cvs1:/tmp/cvs-serv18548
Modified Files:
overall_header.tpl simple_header.tpl modcp_viewip.tpl
posting_body.tpl posting_poll_body.tpl
Log Message:
More updates
Index: overall_header.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/overall_header.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** overall_header.tpl 2001/12/10 01:18:09 1.2
--- overall_header.tpl 2001/12/10 14:48:11 1.3
***************
*** 4,8 ****
<html>
<head>
! <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta http-equiv="Content-Style-Type" content="text/css" />
{META}
--- 4,8 ----
<html>
<head>
! <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}" />
<meta http-equiv="Content-Style-Type" content="text/css" />
{META}
***************
*** 40,44 ****
A:hover {color:{T_BODY_HLINK};text-decoration:underline}
! HR {height:2px}
@import url("templates/Euclid/ie_form_elements.css");
--- 40,44 ----
A:hover {color:{T_BODY_HLINK};text-decoration:underline}
! HR {border: solid {T_FONTCOLOR1} 0px; border-top-width: 1px; height: 0px; }
@import url("templates/Euclid/ie_form_elements.css");
***************
*** 74,78 ****
<!-- BEGIN switch_user_logged_out -->
<tr>
! <td colspan="3" align="right" valign="bottom"><span class="gensmall">{L_USERNAME}: <input class="text" type="text" name="username" size="15" /> {L_PASSWORD}: <input type="password" name="password" size="15" /> {L_AUTO_LOGIN}</span>: <input class="text" type="checkbox" name="autologin" /> <input class="mainoptiontable" type="submit" name="submit" value="{L_LOGIN}" /> </td>
</tr>
<!-- END switch_user_logged_out -->
--- 74,78 ----
<!-- BEGIN switch_user_logged_out -->
<tr>
! <td colspan="3" align="right" valign="bottom"><span class="gensmall">{L_USERNAME}: <input class="text" type="text" name="username" size="15" /> {L_PASSWORD}: <input type="password" name="password" size="15" /> {L_AUTO_LOGIN}</span>: <input class="text" type="checkbox" name="autologin" /> <input class="mainoptiontable" type="submit" name="login" value="{L_LOGIN}" /> </td>
</tr>
<!-- END switch_user_logged_out -->
Index: simple_header.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/simple_header.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** simple_header.tpl 2001/12/10 00:58:50 1.1
--- simple_header.tpl 2001/12/10 14:48:11 1.2
***************
*** 4,8 ****
<html>
<head>
! <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta http-equiv="Content-Style-Type" content="text/css" />
{META}
--- 4,8 ----
<html>
<head>
! <meta http-equiv="Content-Type" content="text/html; charset={S_CONTENT_ENCODING}" />
<meta http-equiv="Content-Style-Type" content="text/css" />
{META}
***************
*** 11,19 ****
<!--
! BODY {background-color:{T_BODY_BGCOLOR}; color:{T_BODY_TEXT}; scrollbar-base-color:{T_TH_COLOR2}; scrollbar-arrow-color:{T_TH_COLOR1}; margin:0px;}
P {font-family:{T_FONTFACE1};font-size:10pt}
! TH {background-color:{T_TH_COLOR3};font-family:{T_FONTFACE2};font-size:8pt;font-weight:normal}
! TH.secondary {background-color:{T_TH_COLOR3};font-family:{T_FONTFACE1};font-size:10pt;font-weight:normal;text-align:left}
TD.tablebg {background-color:{T_TH_COLOR1}}
TD.cat {background-color:{T_TH_COLOR2};font-family:{T_FONTFACE1};font-size:12pt}
--- 11,19 ----
<!--
! BODY {background-color:{T_BODY_BGCOLOR};color:{T_BODY_TEXT};scrollbar-base-color:{T_TH_COLOR2};scrollbar-arrow-color:{T_TH_COLOR1}}
P {font-family:{T_FONTFACE1};font-size:10pt}
! TH {background-color:{T_TH_COLOR3};color:{T_FONTCOLOR2};font-family:{T_FONTFACE2};font-size:8pt;font-weight:bold}
! TH.secondary {background-color:{T_TH_COLOR3};color:{T_FONTCOLOR2};font-family:{T_FONTFACE1};font-size:10pt;font-weight:normal;text-align:left}
TD.tablebg {background-color:{T_TH_COLOR1}}
TD.cat {background-color:{T_TH_COLOR2};font-family:{T_FONTFACE1};font-size:12pt}
***************
*** 21,25 ****
TD.row2 {background-color:{T_TD_COLOR2}}
! SPAN.title {font-family:Impact,sans-serif;font-size:36pt}
SPAN.cattitle {font-family:{T_FONTFACE1};font-size:12pt;font-weight:bold}
SPAN.gen {font-family:{T_FONTFACE1};font-size:10pt}
--- 21,25 ----
TD.row2 {background-color:{T_TD_COLOR2}}
! SPAN.title {font-family:{T_FONTFACE2};font-size:26pt}
SPAN.cattitle {font-family:{T_FONTFACE1};font-size:12pt;font-weight:bold}
SPAN.gen {font-family:{T_FONTFACE1};font-size:10pt}
***************
*** 32,38 ****
INPUT.text {font-family:"Courier New",courier;font-size:8pt;}
A.forumlinks {font-weight:bold}
A {text-decoration:none}
! A:hover {text-decoration:underline}
//-->
--- 32,46 ----
INPUT.text {font-family:"Courier New",courier;font-size:8pt;}
+ INPUT.outsidetable {background-color:{T_TD_COLOR1}}
+ INPUT.mainoptiontable {background-color:{T_TD_COLOR1}}
+ INPUT.liteoptiontable {background-color:{T_TD_COLOR1}}
+
A.forumlinks {font-weight:bold}
A {text-decoration:none}
! A:hover {color:{T_BODY_HLINK};text-decoration:underline}
!
! HR {border: solid {T_FONTCOLOR1} 0px; border-top-width: 1px; height: 0px; }
!
! @import url("templates/Euclid/ie_form_elements.css");
//-->
Index: modcp_viewip.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/modcp_viewip.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** modcp_viewip.tpl 2001/12/10 00:58:50 1.1
--- modcp_viewip.tpl 2001/12/10 14:48:11 1.2
***************
*** 2,17 ****
<table width="80%" cellspacing="0" cellpadding="4" border="0" align="center">
<tr>
! <td align="left"><span class="gensmall"><a href="{U_INDEX}">{SITENAME} {L_INDEX}</a></span></td>
</tr>
</table>
! <table width="80%" cellpadding="1" cellspacing="0" border="0" align="center">
<tr>
! <td class="tablebg"><table width="100%" cellpadding="3" cellspacing="1" border="0">
<tr>
! <th>{L_IP_INFO}</th>
</tr>
<tr>
! <td class="cat"><span class="cat"><b>{L_THIS_POST_IP}</b></span></td>
</tr>
<tr>
--- 2,17 ----
<table width="80%" cellspacing="0" cellpadding="4" border="0" align="center">
<tr>
! <td align="left"><span class="gensmall"><a href="{U_INDEX}">{L_INDEX}</a></span></td>
</tr>
</table>
! <table width="80%" cellspacing="0" cellpadding="0" border="0" align="center">
<tr>
! <td class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
<tr>
! <th height="25">{L_IP_INFO}</th>
</tr>
<tr>
! <td class="cat" height="30"><span class="cattitle">{L_THIS_POST_IP}</span></td>
</tr>
<tr>
***************
*** 24,28 ****
</tr>
<tr>
! <td class="cat"><span class="cattitle"><b>{L_OTHER_USERS}</b></span></td>
</tr>
<!-- BEGIN userrow -->
--- 24,28 ----
</tr>
<tr>
! <td class="cat" height="30"><span class="cattitle">{L_OTHER_USERS}</span></td>
</tr>
<!-- BEGIN userrow -->
***************
*** 37,41 ****
<!-- END userrow -->
<tr>
! <td class="cat"><span class="cattitle"><b>{L_OTHER_IPS}</b></span></td>
</tr>
<!-- BEGIN iprow -->
--- 37,41 ----
<!-- END userrow -->
<tr>
! <td class="cat" height="30"><span class="cattitle">{L_OTHER_IPS}</span></td>
</tr>
<!-- BEGIN iprow -->
Index: posting_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/posting_body.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** posting_body.tpl 2001/12/10 00:58:50 1.1
--- posting_body.tpl 2001/12/10 14:48:11 1.2
***************
*** 1,5 ****
<!-- BEGIN privmsg_extensions -->
! <table width="90%" cellpadding="1" cellspacing="0" border="0" align="center">
<tr>
<td><span class="cattitle">{INBOX_IMG} {INBOX_LINK} {SENTBOX_IMG} {SENTBOX_LINK} {OUTBOX_IMG} {OUTBOX_LINK} {SAVEBOX_IMG} {SAVEBOX_LINK}</span></td>
--- 1,5 ----
<!-- BEGIN privmsg_extensions -->
! <table width="98%" cellspacing="0" cellpadding="0" border="0" align="center">
<tr>
<td><span class="cattitle">{INBOX_IMG} {INBOX_LINK} {SENTBOX_IMG} {SENTBOX_LINK} {OUTBOX_IMG} {OUTBOX_LINK} {SAVEBOX_IMG} {SAVEBOX_LINK}</span></td>
***************
*** 10,14 ****
<!-- END privmsg_extensions -->
! <form action="{S_POST_ACTION}" method="post" name="post"><table width="90%" cellspacing="0" cellpadding="4" border="0" align="center">
<tr>
<td align="left"><span class="gensmall"><a href="{U_INDEX}">{L_INDEX}</a> -> <a href="{U_VIEW_FORUM}">{FORUM_NAME}</a></span></td>
--- 10,14 ----
<!-- END privmsg_extensions -->
! <form action="{S_POST_ACTION}" method="post" name="post"><table width="98%" cellspacing="0" cellpadding="4" border="0" align="center">
<tr>
<td align="left"><span class="gensmall"><a href="{U_INDEX}">{L_INDEX}</a> -> <a href="{U_VIEW_FORUM}">{FORUM_NAME}</a></span></td>
***************
*** 16,47 ****
</table>
- <script type="text/javascript" language="javascript" src="spellcheck/spch.js"></script>
<script language="JavaScript" type="text/javascript">
<!--
! //
! // This is 'borrowed' from subBlue's subSilver template
! // coming soon to phpBB 2.0 !
! //
! function bbstyle(formObj, bbopen, bbclose) {
! if ((parseInt(navigator.appVersion) >= 4) && (navigator.appName == "Microsoft Internet Explorer")) {
theSelection = document.selection.createRange().text;
if (!theSelection) {
! formObj.message.value += bbopen + bbclose;
! formObj.message.focus();
return;
}
document.selection.createRange().text = bbopen + theSelection + bbclose;
! formObj.message.focus();
return;
} else {
! formObj.message.value += bbopen + bbclose;
! formObj.message.focus();
return;
}
}
! function emoticon(theSmilie) {
! document.post.message.value += ' ' + theSmilie + ' ';
! document.post.message.focus();
}
--- 16,216 ----
</table>
<script language="JavaScript" type="text/javascript">
<!--
! // bbCode control by
! // subBlue design
! // www.subBlue.com
!
!
! // Startup variables
! var imageTag = false;
! var theSelection = false;
!
!
! // Check for Browser & Platform for PC & IE specific bits
! // More details from: http://www.mozilla.org/docs/web-developer/sniffer/browser_type.html
! var clientPC = navigator.userAgent.toLowerCase(); // Get client info
! var clientVer = parseInt(navigator.appVersion); // Get browser version
!
! var is_ie = ((clientPC.indexOf("msie") != -1) && (clientPC.indexOf("opera") == -1));
! var is_nav = ((clientPC.indexOf('mozilla')!=-1) && (clientPC.indexOf('spoofer')==-1)
! && (clientPC.indexOf('compatible') == -1) && (clientPC.indexOf('opera')==-1)
! && (clientPC.indexOf('webtv')==-1) && (clientPC.indexOf('hotjava')==-1));
!
! var is_win = ((clientPC.indexOf("win")!=-1) || (agt.indexOf("16bit")!=-1));
! var is_mac = (clientPC.indexOf("mac")!=-1);
!
!
! // Helpline messages
! b_help = "Bold text: [b]text[/b] (alt+b)";
! i_help = "Italic text: [i]text[/i] (alt+i)";
! u_help = "Underline text: [u]text[/u] (alt+u)";
! q_help = "Quote text: [quote]text[/quote] (alt+q)";
! c_help = "Code display: [code]code[/code] (alt+c)";
! l_help = "List: [list]text[/list] (alt+l)";
! o_help = "Ordered list: [list=]text[/list] (alt+o)";
! p_help = "Insert image: [img]http://image_url[/img] (alt+p)";
! w_help = "Insert URL: [url]http://url[/url] or [url=http://url]URL text[/url] (alt+w)";
! a_help = "Close all open bbCode tags";
! s_help = "Font color: [color=red]text[/color] Tip: you can also use color=#FF0000";
! f_help = "Font size: [size=x-small]small text[/size]";
!
! // Define the bbCode tags
! bbcode = new Array();
! bbtags = new Array('[b]','[/b]','[i]','[/i]','[u]','[/u]','[quote]','[/quote]','[code]','[/code]','[list]','[/list]','[list=]','[/list]','[img]','[/img]','[url]','[/url]');
! imageTag = false;
!
! // Shows the help messages in the helpline window
! function helpline(help) {
! document.post.helpbox.value = eval(help + "_help");
! }
!
!
! // Replacement for arrayname.length property
! function getarraysize(thearray) {
! for (i = 0; i < thearray.length; i++) {
! if ((thearray[i] == "undefined") || (thearray[i] == "") || (thearray[i] == null))
! return i;
! }
! return thearray.length;
! }
!
! // Replacement for arrayname.push(value) not implemented in IE until version 5.5
! // Appends element to the array
! function arraypush(thearray,value) {
! thearray[ getarraysize(thearray) ] = value;
! }
!
! // Replacement for arrayname.pop() not implemented in IE until version 5.5
! // Removes and returns the last element of an array
! function arraypop(thearray) {
! thearraysize = getarraysize(thearray);
! retval = thearray[thearraysize - 1];
! delete thearray[thearraysize - 1];
! return retval;
! }
!
!
! function checkForm() {
!
! formErrors = false;
!
! if (document.post.message.value.length < 2) {
! formErrors = "You must enter a message!";
! }
!
! if (formErrors) {
! alert(formErrors);
! return false;
! } else {
! bbstyle(-1);
! //formObj.preview.disabled = true;
! //formObj.submit.disabled = true;
! return true;
! }
! }
!
! function emoticon(text) {
! text = ' ' + text + ' ';
! if (document.post.message.createTextRange && document.post.message.caretPos) {
! var caretPos = document.post.message.caretPos;
! caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text + ' ' : text;
! document.post.message.focus();
! } else {
! document.post.message.value += text;
! document.post.message.focus();
! }
! }
!
!
! function bbfontstyle(bbopen, bbclose) {
! if ((clientVer >= 4) && is_ie && is_win) {
theSelection = document.selection.createRange().text;
if (!theSelection) {
! document.post.message.value += bbopen + bbclose;
! document.post.message.focus();
return;
}
document.selection.createRange().text = bbopen + theSelection + bbclose;
! document.post.message.focus();
return;
} else {
! document.post.message.value += bbopen + bbclose;
! document.post.message.focus();
return;
}
}
!
! function bbstyle(bbnumber) {
!
! donotinsert = false;
! theSelection = false;
! bblast = 0;
!
! if (bbnumber == -1) { // Close all open tags & default button names
! while (bbcode[0]) {
! butnumber = arraypop(bbcode) - 1;
! document.post.message.value += bbtags[butnumber + 1];
! buttext = eval('document.post.addbbcode' + butnumber + '.value');
! eval('document.post.addbbcode' + butnumber + '.value ="' + buttext.substr(0,(buttext.length - 1)) + '"');
! }
! document.post.message.focus();
! return;
! }
!
! if ((clientVer >= 4) && is_ie && is_win)
! theSelection = document.selection.createRange().text; // Get text selection
!
! if (theSelection) {
! // Add tags around selection
! document.selection.createRange().text = bbtags[bbnumber] + theSelection + bbtags[bbnumber+1];
! document.post.message.focus();
! theSelection = '';
! return;
! }
!
! // Find last occurance of an open tag the same as the one just clicked
! for (i = 0; i < bbcode.length; i++) {
! if (bbcode[i] == bbnumber+1) {
! bblast = i;
! donotinsert = true;
! }
! }
!
! if (donotinsert) { // Close all open tags up to the one just clicked & default button names
! while (bbcode[bblast]) {
! butnumber = arraypop(bbcode) - 1;
! document.post.message.value += bbtags[butnumber + 1];
! buttext = eval('document.post.addbbcode' + butnumber + '.value');
! eval('document.post.addbbcode' + butnumber + '.value ="' + buttext.substr(0,(buttext.length - 1)) + '"');
! imageTag = false;
! }
! document.post.message.focus();
! return;
! } else { // Open tags
!
! if (imageTag && (bbnumber != 14)) { // Close image tag before adding another
! document.post.message.value += bbtags[15];
! lastValue = arraypop(bbcode) - 1; // Remove the close image tag from the list
! document.post.addbbcode14.value = "Img"; // Return button back to normal state
! imageTag = false;
! }
!
! // Open tag
! document.post.message.value += bbtags[bbnumber];
! if ((bbnumber == 14) && (imageTag == false)) imageTag = 1; // Check to stop additional tags after an unclosed image tag
! arraypush(bbcode,bbnumber+1);
! eval('document.post.addbbcode'+bbnumber+'.value += "*"');
! document.post.message.focus();
! return;
! }
!
! }
!
! // Insert at Claret position. Code from
! // http://www.faqts.com/knowledge_base/view.phtml/aid/1052/fid/130
! function storeCaret(textEl) {
! if (textEl.createTextRange) textEl.caretPos = document.selection.createRange().duplicate();
}
***************
*** 53,66 ****
{ERROR_BOX}
! <table width="90%" cellpadding="0" cellspacing="0" border="0" align="center">
<tr>
! <td class="tablebg"><table border="0" cellpadding="4" cellspacing="1" width="100%">
<tr>
! <td class="cat" colspan="2"><span class="cattitle"><b>{L_POST_A}</b></span></td>
</tr>
<!-- BEGIN username_select -->
<tr>
<td class="row1"><span class="gen"><b>{L_USERNAME}</b></span></td>
! <td class="row2"><span class="courier"><input type="text" name="username" size="25" maxlength="25" value="{USERNAME}" /></span></td>
</tr>
<!-- END username_select -->
--- 222,235 ----
{ERROR_BOX}
! <table width="98%" cellspacing="0" cellpadding="0" border="0" align="center">
<tr>
! <td class="tablebg"><table width="100%" cellspacing="1" cellpadding="4" border="0">
<tr>
! <td class="cat" colspan="2" height="30"><span class="cattitle"><b>{L_POST_A}</b></span></td>
</tr>
<!-- BEGIN username_select -->
<tr>
<td class="row1"><span class="gen"><b>{L_USERNAME}</b></span></td>
! <td class="row2"><span class="courier"><input type="text" name="username" size="25" maxlength="30" value="{USERNAME}" /></span></td>
</tr>
<!-- END username_select -->
***************
*** 69,73 ****
<tr>
<td class="row1"><span class="gen"><b>{L_USERNAME}</b></span></td>
! <td class="row2"><input type="text" name="username" maxlength="50" size="20" /> <input type="submit" name="usersubmit" value="{L_FIND_USERNAME}" class="liteoption" onClick="window.open('search.php?mode=searchuser', '_phpbbsearch', 'HEIGHT=155,resizable=yes,WIDTH=400');return false;" /></td>
</tr>
<!-- END privmsg_extensions -->
--- 238,242 ----
<tr>
<td class="row1"><span class="gen"><b>{L_USERNAME}</b></span></td>
! <td class="row2"><input type="text" name="username" maxlength="30" size="25" /> <input type="submit" name="usersubmit" value="{L_FIND_USERNAME}" class="liteoption" onClick="window.open('search.php?mode=searchuser', '_phpbbsearch', 'HEIGHT=155,resizable=yes,WIDTH=400');return false;" /></td>
</tr>
<!-- END privmsg_extensions -->
***************
*** 80,92 ****
<td class="row2" valign="middle"><table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
! <td width="50%"><table border="0" cellspacing="0" cellpadding="2">
! <tr>
! <td align="center"><span class="courier"><input type="button" name="addbbcode1" value=" B " title="Bold" style="font-weight:bold" onClick="bbstyle(this.form,'[b]','[/b]');"> <input type="button" name="addbbcode2" value=" i " title="Italic" style="font-style:italic" onClick="bbstyle(this.form,'[i]','[/i]');"> <input type="button" name="addbbcode3" value="Quote" title="Quote" onClick="bbstyle(this.form,'[quote]','[/quote]');"> <input type="button" name="addbbcode4" value="Code" title="Code" onClick="bbstyle(this.form,'[code]','[/code]');"> <input type="button" name="addbbcode5" value="List" title="List" onClick="bbstyle(this.form,'[list]','[/list]');"> <input type="button" name="addbbcode6" value="List=" title="Ordered list" onClick="bbstyle(this.form,'[list=]','[/list]');"> <input type="button" name="addbbcode7" value="Img" title="Image" onClick="bbstyle(this.form,'[img]','[/img]');"> <input type="button" name="addbbcode8" value="URL" title="URL" style="text-decoration: underline" onClick="bbstyle(this.form,'[url]','[/url]');"></span></td>
</tr>
<tr>
! <td align="center"><span class="gensmall">Font color: </span><span class="courier"><select name="addbbcode9" onChange="bbstyle(this.form, '[color=' + this.form.addbbcode9.options[this.form.addbbcode9.selectedIndex].value + ']', '[/color]')"><option style="color:{T_FONTCOLOR1}" value="{T_FONTCOLOR1}">Default</option><option style="color:darkred" value="darkred">Dark Red</option><option style="color:red" value="darkred">Red</option><option style="color:orange" value="orange">Orange</option><option style="color:brown" value="brown">Brown</option><option style="color:yellow" value="yellow">Yellow</option><option style="color:green" value="green">Green</option><option style="color:olive" value="olive">Olive</option><option style="color:cyan" value="cyan">Cyan</option><option style="color:blue" value="blue">Blue</option><option style="color:darkblue" value="darkblue">Dark Blue</option><option style="color:indigo" value="indigo">Indigo</option><option style="color:violet" value="violet">Violet</option><option style="color:white" value="white">White</option><option style="color:black" value="black">Black</option></select> <span class="gensmall">Font size: </span><span class="courier"><select name="addbbcode10" onChange="bbstyle(this.form, '[size=' + this.form.addbbcode10.options[this.form.addbbcode10.selectedIndex].value + ']', '[/size]')"><option value="-3">Tiny</option><option value="-2">Smaller</option><option value="0" selected="selected">Normal</option><option value="+2">Larger</option><option value="+3">Largest</option></select></td>
</tr>
! <tr>
! <td><span class="courier"><textarea name="message" rows="12" cols="50" wrap="virtual" tabindex="2">{MESSAGE}</textarea></span></td>
</tr>
</table></td>
--- 249,277 ----
<td class="row2" valign="middle"><table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
! <td width="50%"><table cellspacing="0" cellpadding="2" border="0">
! <tr align="center" valign="middle">
! <td><span class="gensmall"><input type="button" class="liteoptiontable" accesskey="b" name="addbbcode0" value=" B " style="font-weight:bold; width: 30px" onClick="bbstyle(0)" onMouseOver="helpline('b')" /></span></td>
! <td><span class="gensmall"><input type="button" class="liteoptiontable" accesskey="i" name="addbbcode2" value=" i " style="font-style:italic; width: 30px" onClick="bbstyle(2)" onMouseOver="helpline('i')" /></span></td>
! <td><span class="gensmall"><input type="button" class="liteoptiontable" accesskey="u" name="addbbcode4" value=" u " style="text-decoration: underline; width: 30px" onClick="bbstyle(4)" onMouseOver="helpline('u')" /></span></td>
! <td><span class="gensmall"><input type="button" class="liteoptiontable" accesskey="q" name="addbbcode6" value="Quote" style="width: 50px" onClick="bbstyle(6)" onMouseOver="helpline('q')" /></span></td>
! <td><span class="gensmall"><input type="button" class="liteoptiontable" accesskey="c" name="addbbcode8" value="Code" style="width: 40px" onClick="bbstyle(8)" onMouseOver="helpline('c')" /></span></td>
! <td><span class="gensmall"><input type="button" class="liteoptiontable" accesskey="l" name="addbbcode10" value="List" style="width: 40px" onClick="bbstyle(10)" onMouseOver="helpline('l')" /></span></td>
! <td><span class="gensmall"><input type="button" class="liteoptiontable" accesskey="o" name="addbbcode12" value="List=" style="width: 40px" onClick="bbstyle(12)" onMouseOver="helpline('o')" /></span></td>
! <td><span class="gensmall"><input type="button" class="liteoptiontable" accesskey="p" name="addbbcode14" value="Img" style="width: 40px" onClick="bbstyle(14)" onMouseOver="helpline('p')" /></span></td>
! <td><span class="gensmall"><input type="button" class="liteoptiontable" accesskey="w" name="addbbcode16" value="URL" style="text-decoration: underline; width: 40px" onClick="bbstyle(16)" onMouseOver="helpline('w')" /></span></td>
</tr>
<tr>
! <td colspan="9"><table width="100%" cellspacing="0" cellpadding="0" border="0">
! <tr>
! <td><span class="gensmall"> Font color:<select name="addbbcode18" onChange="bbfontstyle('[color=' + this.form.addbbcode18.options[this.form.addbbcode18.selectedIndex].value + ']', '[/color]')" onMouseOver="helpline('s')"><option style="color:black; background-color: #FFFFFF " value="{T_FONTCOLOR1}" class="gensmall">Default</option><option style="color:darkred; background-color: white" value="darkred" class="gensmall">Dark Red</option><option style="color:red; background-color: white" value="red" class="gensmall">Red</option><option style="color:orange; background-color: white" value="orange" class="gensmall">Orange</option><option style="color:brown; background-color: white" value="brown" class="gensmall">Brown</option><option style="color:yellow; background-color: white" value="yellow" class="gensmall">Yellow</option><option style="color:green; background-color: white" value="green" class="gensmall">Green</option><option style="color:olive; background-color: white" value="olive" class="gensmall">Olive</option><option style="color:cyan; background-color: white" value="cyan" class="gensmall">Cyan</option><option style="color:blue; background-color: white" value="blue" class="gensmall">Blue</option><option style="color:darkblue; background-color: white" value="darkblue" class="gensmall">Dark Blue</option><option style="color:indigo; background-color: white" value="indigo" class="gensmall">Indigo</option><option style="color:violet; background-color: white" value="violet" class="gensmall">Violet</option><option style="color:white; background-color: white" value="white" class="gensmall">White</option><option style="color:black; background-color: white" value="black" class="gensmall">Black</option></select> Font size: <select name="addbbcode20" onChange="bbfontstyle('[size=' + this.form.addbbcode20.options[this.form.addbbcode20.selectedIndex].value + ']', '[/size]')" onMouseOver="helpline('f')"><option value="9" class="gensmall">Tiny</option><option value="10" class="gensmall">Small</option><option value="12" selected class="gensmall">Normal</option><option value="18" class="gensmall">Large</option><option value="24" class="gensmall">Huge</option></select></span></td>
! <td nowrap="nowrap" align="right"><span class="gensmall"><a href="javascript:bbstyle(-1)" class="gensmall" onMouseOver="helpline('a')">Close Tags</a></span></td>
! </tr>
! </table></td>
</tr>
! <tr>
! <td colspan="9"><span class="gensmall"><input style="background-color: {T_TD_COLOR2}; border-style: none;" type="text" name="helpbox" size="45" maxlength="100" style="width:450px; font-size:10px" value="Tip: Styles can be applied quickly to selected text" /></span></td>
! </tr>
! <tr>
! <td colspan="9"><span class="gen"><textarea name="message" rows="15" cols="35" wrap="virtual" style="width:450px" tabindex="3" class="post" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);">{MESSAGE}</textarea></span></td>
</tr>
</table></td>
***************
*** 105,109 ****
<td><a href="javascript:emoticon(':(')"><img src="images/smiles/icon_sad.gif" width="15" height="15" border="0"></a></td>
<td><a href="javascript:emoticon(':?')"><img src="images/smiles/icon_confused.gif" width="15" height="15" border="0"></a></td>
! <td><a href="javascript:emoticon(':o')"><img src="images/smiles/icon_eek.gif" width="15" height="15" border="0"></a></td>
</tr>
<tr align="center" valign="middle">
--- 290,294 ----
<td><a href="javascript:emoticon(':(')"><img src="images/smiles/icon_sad.gif" width="15" height="15" border="0"></a></td>
<td><a href="javascript:emoticon(':?')"><img src="images/smiles/icon_confused.gif" width="15" height="15" border="0"></a></td>
! <td><a href="javascript:emoticon(':shock:')"><img src="images/smiles/icon_eek.gif" width="15" height="15" border="0"></a></td>
</tr>
<tr align="center" valign="middle">
***************
*** 178,182 ****
{POLLBOX}
<tr>
! <td class="cat" colspan="2" align="center">{S_HIDDEN_FORM_FIELDS}<input type="button" tabindex="4" name="spellcheck" value="Spell Check" onclick= "doSpell ('uk', document.post.message, document.location.protocol + '//' + document.location.host + '/phpBB2/spellcheck/sproxy.php', true);" /> <input type="submit" name="preview" value="{L_PREVIEW}" /> <input type="submit" name="submit" value="{L_SUBMIT}" /> <input type="submit" name="cancel" value="{L_CANCEL}" /></td>
</tr>
</table></td>
--- 363,367 ----
{POLLBOX}
<tr>
! <td class="cat" colspan="2" height="30" align="center">{S_HIDDEN_FORM_FIELDS}<!-- input class="liteoptiontable" type="button" tabindex="4" name="spellcheck" value="Spell Check" onclick= "doSpell ('uk', document.post.message, document.location.protocol + '//' + document.location.host + '/phpBB2/spellcheck/sproxy.php', true);" /--> <input class="liteoptiontable" type="submit" name="preview" value="{L_PREVIEW}" /> <input class="mainoptiontable" type="submit" name="submit" value="{L_SUBMIT}" /> <input class="liteoptiontable" type="submit" name="cancel" value="{L_CANCEL}" /></td>
</tr>
</table></td>
***************
*** 184,188 ****
</table></form>
! <table width="90%" cellspacing="2" border="0" align="center">
<tr>
<td valign="top"><span class="gensmall"><b>{S_TIMEZONE}</b></span></td>
--- 369,373 ----
</table></form>
! <table width="98%" cellspacing="2" border="0" align="center">
<tr>
<td valign="top"><span class="gensmall"><b>{S_TIMEZONE}</b></span></td>
Index: posting_poll_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/posting_poll_body.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** posting_poll_body.tpl 2001/12/10 00:58:50 1.1
--- posting_poll_body.tpl 2001/12/10 14:48:11 1.2
***************
*** 1,4 ****
<tr>
! <td class="cat" colspan="2"><span class="cattitle"><b>{L_ADD_A_POLL}</b></span><br /><span class="gensmall">{L_ADD_POLL_EXPLAIN}</span></td>
</tr>
<tr>
--- 1,4 ----
<tr>
! <td class="cat" colspan="2" height="30"><span class="cattitle">{L_ADD_A_POLL}</span><br /><span class="gensmall">{L_ADD_POLL_EXPLAIN}</span></td>
</tr>
<tr>
***************
*** 9,18 ****
<tr>
<td class="row1"><span class="gen"><b>{L_POLL_OPTION}</b></span></td>
! <td class="row2"><span class="courier"><input type="text" name="poll_option_text[{poll_option_rows.S_POLL_OPTION_NUM}]" size="50" maxlength="255" value="{poll_option_rows.POLL_OPTION}" /></span> <input type="submit" name="edit_poll_option[{poll_option_rows.S_POLL_OPTION_NUM}]" value="{L_UPDATE_OPTION}" /> <input type="submit" name="del_poll_option[{poll_option_rows.S_POLL_OPTION_NUM}]" value="{L_DELETE_OPTION}" /></td>
</tr>
<!-- END poll_option_rows -->
<tr>
<td class="row1"><span class="gen"><b>{L_POLL_OPTION}</b></span></td>
! <td class="row2"><span class="courier"><input type="text" name="add_poll_option_text" size="50" maxlength="255" value="{ADD_POLL_OPTION}" /></span> <input type="submit" name="add_poll_option" value="{L_ADD_OPTION}" /></td>
</tr>
<tr>
--- 9,18 ----
<tr>
<td class="row1"><span class="gen"><b>{L_POLL_OPTION}</b></span></td>
! <td class="row2"><span class="courier"><input type="text" name="poll_option_text[{poll_option_rows.S_POLL_OPTION_NUM}]" size="50" maxlength="255" value="{poll_option_rows.POLL_OPTION}" /></span> <input class="mainoptiontable" type="submit" name="edit_poll_option[{poll_option_rows.S_POLL_OPTION_NUM}]" value="{L_UPDATE_OPTION}" /> <input class="liteoptiontable" type="submit" name="del_poll_option[{poll_option_rows.S_POLL_OPTION_NUM}]" value="{L_DELETE_OPTION}" /></td>
</tr>
<!-- END poll_option_rows -->
<tr>
<td class="row1"><span class="gen"><b>{L_POLL_OPTION}</b></span></td>
! <td class="row2"><span class="courier"><input type="text" name="add_poll_option_text" size="50" maxlength="255" value="{ADD_POLL_OPTION}" /></span> <input class="mainoptiontable" type="submit" name="add_poll_option" value="{L_ADD_OPTION}" /></td>
</tr>
<tr>
|
|
From: Paul S. O. <ps...@us...> - 2001-12-10 13:45:51
|
Update of /cvsroot/phpbb/phpBB2/templates/Euclid
In directory usw-pr-cvs1:/tmp/cvs-serv32569
Modified Files:
modcp_body.tpl modcp_move.tpl
Log Message:
More updates
Index: modcp_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/modcp_body.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** modcp_body.tpl 2001/12/10 00:58:50 1.1
--- modcp_body.tpl 2001/12/10 13:45:48 1.2
***************
*** 1,11 ****
<form method="post" action="{S_MODCP_ACTION}"><table width="98%" cellspacing="0" cellpadding="4" border="0" align="center">
<tr>
! <td align="left" valign="bottom" nowrap><span class="gensmall"><a href="{U_INDEX}">{SITENAME} {L_INDEX}</a> -> <a href="{U_VIEW_FORUM}">{FORUM_NAME}</a></span></td>
</tr>
</table>
! <table width="98%" cellpadding="1" cellspacing="0" border="0" align="center">
<tr>
! <td class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="cat" colspan="5"><table width="100%" cellspacing="0" cellpadding="0" border="0" align="center">
--- 1,12 ----
+
<form method="post" action="{S_MODCP_ACTION}"><table width="98%" cellspacing="0" cellpadding="4" border="0" align="center">
<tr>
! <td align="left" valign="bottom" nowrap><span class="gensmall"><a href="{U_INDEX}">{L_INDEX}</a> -> <a href="{U_VIEW_FORUM}">{FORUM_NAME}</a></span></td>
</tr>
</table>
! <table width="98%" cellspacing="0" cellpadding="0" border="0" align="center">
<tr>
! <td class="tablebg"><table width="100%" cellspacing="1" cellpadding="4" border="0">
<tr>
<td class="cat" colspan="5"><table width="100%" cellspacing="0" cellpadding="0" border="0" align="center">
***************
*** 13,35 ****
<td class="cat" align="center"><span class="cattitle">{L_MOD_CP}</span><br /><span class="gensmall">{L_MOD_CP_EXPLAIN}</span></td>
</tr>
- <tr>
- <td><table width="100%" cellspacing="0" cellpadding="4" border="0">
- <tr>
- <td align="center" valign="bottom"><input class="button" type="submit" name="delete" value="{L_DELETE}"> <input class="button" type="submit" name="move" value="{L_MOVE}"> <input class="button" type="submit" name="lock" value="{L_LOCK}"> <input class="button" type="submit" name="unlock" value="{L_UNLOCK}"></td>
- </tr>
- </table></td>
- </tr>
</table></td>
</tr>
<tr>
! <th width="4%"> </th>
! <th> {L_TOPICS} </th>
! <th width="8%"> {L_REPLIES} </th>
! <th width="17%"> {L_LASTPOST} </th>
! <th width="5%"> {L_SELECT} </th>
</tr>
<!-- BEGIN topicrow -->
<tr>
! <td class="row1" align="center" valign="middle"> {topicrow.FOLDER_IMG} </td>
<td class="row2"> <span class="gensmall">{topicrow.TOPIC_TYPE}<a href="{topicrow.U_VIEW_TOPIC}">{topicrow.TOPIC_TITLE}</a></span></td>
<td class="row1" align="center" valign="middle"><span class="gen">{topicrow.REPLIES}</span></td>
--- 14,29 ----
<td class="cat" align="center"><span class="cattitle">{L_MOD_CP}</span><br /><span class="gensmall">{L_MOD_CP_EXPLAIN}</span></td>
</tr>
</table></td>
</tr>
<tr>
! <th width="4%" height="25"> </th>
! <th height="25">{L_TOPICS}</th>
! <th width="8%" height="25">{L_REPLIES}</th>
! <th width="17%" height="25">{L_LASTPOST}</th>
! <th width="5%" height="25">{L_SELECT}</th>
</tr>
<!-- BEGIN topicrow -->
<tr>
! <td class="row1" align="center" valign="middle">{topicrow.FOLDER_IMG}</td>
<td class="row2"> <span class="gensmall">{topicrow.TOPIC_TYPE}<a href="{topicrow.U_VIEW_TOPIC}">{topicrow.TOPIC_TITLE}</a></span></td>
<td class="row1" align="center" valign="middle"><span class="gen">{topicrow.REPLIES}</span></td>
***************
*** 39,51 ****
<!-- END topicrow -->
<tr>
! <td class="cat" colspan="5"><table width="100%" cellspacing="0" cellpadding="0" border="0">
! <tr>
! <td align="left" valign="middle" nowrap> <span class="gen">{L_PAGE} <b>{ON_PAGE}</b> {L_OF} <b>{TOTAL_PAGES}</b></span> </td>
! <td width="100%" align="right" valign="middle"><span class="gen">{PAGINATION}</span> </td>
! </tr>
<tr>
! <td colspan="2"><table width="100%" cellspacing="0" cellpadding="4" border="0">
<tr>
! <td align="center" valign="bottom"><input class="button" type="submit" name="delete" value="{L_DELETE}"> <input class="button" type="submit" name="move" value="{L_MOVE}"> <input class="button" type="submit" name="lock" value="{L_LOCK}"> <input class="button" type="submit" name="unlock" value="{L_UNLOCK}"></td>
</tr>
</table></td>
--- 33,44 ----
<!-- END topicrow -->
<tr>
! <td class="cat" colspan="5" height="30"><table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
! <td align="left" valign="middle"><span class="gensmall">{PAGE_NUMBER}</b></span></td>
! <td align="right" valign="middle"><table cellspacing="0" cellpadding="0" border="0">
<tr>
! <td align="right"><span class="gensmall">{PAGINATION}</span></td>
! <td> </td>
! <td align="right"><input class="liteoptiontable" type="submit" name="delete" value="{L_DELETE}"> <input class="liteoptiontable" type="submit" name="move" value="{L_MOVE}"> <input class="liteoptiontable" type="submit" name="lock" value="{L_LOCK}"> <input class="liteoptiontable" type="submit" name="unlock" value="{L_UNLOCK}"></td>
</tr>
</table></td>
***************
*** 56,66 ****
</tr>
</table>
! {S_HIDDEN_FIELDS}</form>
! <table cellspacing="2" border="0" width="98%" align="center">
<tr>
! <td width="40%"><span class="gensmall"><b>{S_TIMEZONE}</b></span></td>
! <td align="right" valign="top" nowrap>{JUMPBOX}<br><span class="gensmall">{S_AUTH_LIST}</span></td>
</tr>
</table>
--- 49,61 ----
</tr>
</table>
+
+ {S_HIDDEN_FIELDS}
! </form>
! <table width="98%" cellspacing="2" border="0" align="center">
<tr>
! <td valign="top"><span class="gensmall"><b>{S_TIMEZONE}</b></span></td>
! <td align="right" valign="top" nowrap="nowrap">{JUMPBOX}</td>
</tr>
</table>
Index: modcp_move.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/modcp_move.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** modcp_move.tpl 2001/12/10 00:58:50 1.1
--- modcp_move.tpl 2001/12/10 13:45:48 1.2
***************
*** 1,11 ****
! <form action="{S_MODCP_ACTION}" method="post"><table width="80%" cellpadding="1" cellspacing="0" border="0" align="center">
<tr>
! <td class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
<tr>
<th class="secondary"><b>{MESSAGE_TITLE}</b></th>
</tr>
<tr>
! <td class="row2" align="center"><br /><span class="gen">{L_MOVE_TO_FORUM} {S_FORUM_BOX}<br /><br />{MESSAGE_TEXT}</span><br /><br />{S_HIDDEN_FIELDS}<input type="submit" name="confirm" value="{L_YES}" /> <input type="submit" name="cancel" value="{L_NO}" /><br /><br /></td>
</tr>
</table></td>
--- 1,11 ----
! <form action="{S_MODCP_ACTION}" method="post"><table width="80%" cellspacing="0" cellpadding="0" border="0" align="center">
<tr>
! <td class="tablebg"><table width="100%" cellspacing="1" cellpadding="4" border="0">
<tr>
<th class="secondary"><b>{MESSAGE_TITLE}</b></th>
</tr>
<tr>
! <td class="row2" align="center"><br /><span class="gen">{L_MOVE_TO_FORUM} {S_FORUM_BOX}<br /><br />{MESSAGE_TEXT}</span><br /><br />{S_HIDDEN_FIELDS}<input class="mainoptiontable" type="submit" name="confirm" value="{L_YES}" /> <input class="liteoptiontable" type="submit" name="cancel" value="{L_NO}" /><br /><br /></td>
</tr>
</table></td>
|
|
From: Paul S. O. <ps...@us...> - 2001-12-10 13:35:01
|
Update of /cvsroot/phpbb/phpBB2/templates/Euclid In directory usw-pr-cvs1:/tmp/cvs-serv29670 Removed Files: mini_search.tpl Log Message: Gone ... --- mini_search.tpl DELETED --- |
|
From: Paul S. O. <ps...@us...> - 2001-12-10 13:23:15
|
Update of /cvsroot/phpbb/phpBB2/templates/Euclid
In directory usw-pr-cvs1:/tmp/cvs-serv26371
Modified Files:
confirm_body.tpl message_body.tpl memberlist_body.tpl
Log Message:
More udates
Index: confirm_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/confirm_body.tpl,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** confirm_body.tpl 2001/12/10 13:14:25 1.2
--- confirm_body.tpl 2001/12/10 13:23:12 1.3
***************
*** 1,4 ****
! <form action="{S_CONFIRM_ACTION}" method="post"><table width="98%" cellpadding="1" cellspacing="0" border="0" align="center">
<tr>
<td class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
--- 1,4 ----
! <form action="{S_CONFIRM_ACTION}" method="post"><table width="80%" cellspacing="0" cellpadding="1" border="0" align="center">
<tr>
<td class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
Index: message_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/message_body.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** message_body.tpl 2001/12/10 00:58:50 1.1
--- message_body.tpl 2001/12/10 13:23:12 1.2
***************
*** 2,10 ****
<table width="80%" cellspacing="0" cellpadding="4" border="0" align="center">
<tr>
! <td align="left"><span class="gensmall"><a href="{U_INDEX}">{SITENAME} {L_INDEX}</a></span></td>
</tr>
</table>
! <table width="80%" cellpadding="1" cellspacing="0" border="0" align="center">
<tr>
<td class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
--- 2,10 ----
<table width="80%" cellspacing="0" cellpadding="4" border="0" align="center">
<tr>
! <td align="left"><span class="gensmall"><a href="{U_INDEX}">{L_INDEX}</a></span></td>
</tr>
</table>
! <table width="80%" cellspacing="0" cellpadding="0" border="0" align="center">
<tr>
<td class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
***************
*** 13,19 ****
</tr>
<tr>
! <td class="row2" width="100%" align="center"><span class="gen">{MESSAGE_TEXT}</span></td>
</tr>
</table></td>
</tr>
</table>
--- 13,21 ----
</tr>
<tr>
! <td class="row2" align="center"><span class="gen">{MESSAGE_TEXT}</span></td>
</tr>
</table></td>
</tr>
</table>
+
+ <br clear="all" />
Index: memberlist_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/memberlist_body.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** memberlist_body.tpl 2001/12/10 00:58:50 1.1
--- memberlist_body.tpl 2001/12/10 13:23:12 1.2
***************
*** 7,15 ****
</table>
! <table border="0" cellpadding="1" cellspacing="0" width="98%" align="center">
<tr>
<td class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
<tr>
! <td class="cat" colspan="7" height="28"><table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td><span class="gensmall">{PAGINATION}</span></td>
--- 7,15 ----
</table>
! <table width="98%" cellspacing="0" cellpadding="0" border="0" align="center">
<tr>
<td class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
<tr>
! <td class="cat" colspan="7" height="30"><table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td><span class="gensmall">{PAGINATION}</span></td>
***************
*** 39,43 ****
<!-- END memberrow -->
<tr>
! <td class="cat" colspan="7" height="28"><table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td><span class="gensmall">{PAGE_NUMBER}</span></td>
--- 39,43 ----
<!-- END memberrow -->
<tr>
! <td class="cat" colspan="7" height="30"><table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td><span class="gensmall">{PAGE_NUMBER}</span></td>
***************
*** 52,56 ****
<table width="98%" cellspacing="2" border="0" align="center">
<tr>
! <td width="40%" valign="top"><span class="gensmall"><b>{S_TIMEZONE}</b></span></td>
<td align="right" valign="top" nowrap="nowrap">{JUMPBOX}</td>
</tr>
--- 52,56 ----
<table width="98%" cellspacing="2" border="0" align="center">
<tr>
! <td valign="top"><span class="gensmall"><b>{S_TIMEZONE}</b></span></td>
<td align="right" valign="top" nowrap="nowrap">{JUMPBOX}</td>
</tr>
|
|
From: Paul S. O. <ps...@us...> - 2001-12-10 13:14:29
|
Update of /cvsroot/phpbb/phpBB2/templates/Euclid
In directory usw-pr-cvs1:/tmp/cvs-serv24132
Modified Files:
agreement.tpl bbcode.tpl confirm_body.tpl error_body.tpl
faq_body.tpl groupcp_info_body.tpl groupcp_pending_info.tpl
groupcp_user_body.tpl login_body.tpl
Log Message:
More udates
Index: agreement.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/agreement.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** agreement.tpl 2001/12/10 00:58:50 1.1
--- agreement.tpl 2001/12/10 13:14:25 1.2
***************
*** 9,13 ****
<td class="tablebg"><table border="0" cellpadding="3" cellspacing="1" width="100%">
<tr>
! <td class="cat" width="100%" align="center"><span class="cattitle"><b>{SITENAME} - Forums Registration Agreement<b></span></td>
</tr>
<tr>
--- 9,13 ----
<td class="tablebg"><table border="0" cellpadding="3" cellspacing="1" width="100%">
<tr>
! <td class="cat" width="100%" height="30" align="center"><span class="cattitle"><b>{SITENAME} - Forums Registration Agreement<b></span></td>
</tr>
<tr>
Index: bbcode.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/bbcode.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** bbcode.tpl 2001/12/10 00:58:50 1.1
--- bbcode.tpl 2001/12/10 13:14:25 1.2
***************
*** 30,37 ****
</tr>
<tr>
! <td bgcolor="#000000"><img src="images/spacer.gif" height="1" /></td>
! </tr>
! <tr>
! <td><span class="gensmall"><!-- END quote_username_open -->
<!-- BEGIN quote_open -->
--- 30,34 ----
</tr>
<tr>
! <td><hr /><span class="gensmall"><!-- END quote_username_open -->
<!-- BEGIN quote_open -->
***************
*** 42,56 ****
<td><span class="gensmall"><b>{L_QUOTE}:</b></span></td>
</tr>
- <tr>
- <td bgcolor="#000000"><img src="images/spacer.gif" height="1" /></td>
- </tr>
<tr>
! <td><span class="gensmall"><!-- END quote_open -->
! <!-- BEGIN quote_close --></span><br /></td>
</tr>
- <tr>
- <td bgcolor="#000000"><img src="images/spacer.gif" height="1" /></td>
- </tr>
</table>
--- 39,47 ----
<td><span class="gensmall"><b>{L_QUOTE}:</b></span></td>
</tr>
<tr>
! <td><hr /><span class="gensmall"><!-- END quote_open -->
! <!-- BEGIN quote_close --></span><hr /></td>
</tr>
</table>
***************
*** 66,75 ****
</tr>
<tr>
! <td><pre><!-- END code_open -->
! <!-- BEGIN code_close --></pre></td>
</tr>
</table>
! <span class="postbody">
<!-- END code_close -->
--- 57,67 ----
</tr>
<tr>
! <td><hr /><span class="courier"><!-- END code_open -->
! <!-- BEGIN code_close --></span><hr /></td>
</tr>
</table>
!
! <span class="gen">
<!-- END code_close -->
***************
*** 120,133 ****
<!-- BEGIN img -->
! <img src="{URL}" border="0" />
<!-- END img -->
<!-- BEGIN url -->
! <a href="{URL}" target="_blank" class="postlink">{DESCRIPTION}</a>
<!-- END url -->
<!-- BEGIN email -->
! <a href="mailto:{EMAIL}">{EMAIL}</A>
<!-- END email -->
--- 112,125 ----
<!-- BEGIN img -->
! <img src="{URL}" border="0" alt="" />
<!-- END img -->
<!-- BEGIN url -->
! <a href="{URL}" target="_blank">{DESCRIPTION}</a>
<!-- END url -->
<!-- BEGIN email -->
! <a href="mailto:{EMAIL}">{EMAIL}</a>
<!-- END email -->
Index: confirm_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/confirm_body.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** confirm_body.tpl 2001/12/10 00:58:50 1.1
--- confirm_body.tpl 2001/12/10 13:14:25 1.2
***************
*** 1,12 ****
! <form action="{S_CONFIRM_ACTION}" method="POST"><table width="80%" cellpadding="1" cellspacing="0" border="0" align="center">
<tr>
<td class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
<tr>
! <th class="secondary"><b>{MESSAGE_TITLE}</b></th>
</tr>
<tr>
! <td class="row2" width="100%" align="center"><br /><span class="gen">{MESSAGE_TEXT}</span><br /><br />{S_HIDDEN_FIELDS}<input type="submit" name="confirm" value="{L_YES}" /> <input type="submit" name="cancel" value="{L_NO}" /><br /><br /></td>
</tr>
</table></td>
</tr>
! </table>
--- 1,13 ----
!
! <form action="{S_CONFIRM_ACTION}" method="post"><table width="98%" cellpadding="1" cellspacing="0" border="0" align="center">
<tr>
<td class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
<tr>
! <th class="secondary" height="25"><b>{MESSAGE_TITLE}</b></th>
</tr>
<tr>
! <td class="row2" align="center"><br /><span class="gen">{MESSAGE_TEXT}</span><br /><br />{S_HIDDEN_FIELDS}<input class="liteoptiontable" type="submit" name="confirm" value="{L_YES}" /> <input class="liteoptiontable" type="submit" name="cancel" value="{L_NO}" /><br /><br /></td>
</tr>
</table></td>
</tr>
! </table></form>
Index: error_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/error_body.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** error_body.tpl 2001/12/10 00:58:50 1.1
--- error_body.tpl 2001/12/10 13:14:25 1.2
***************
*** 1,9 ****
! <div align="center"><table width="98%" cellpadding="0" cellspacing="1" border="0">
<tr>
! <td bgcolor="{T_TH_COLOR1}"><table width="100%" cellpadding="5" cellspacing="1" border="0">
<tr>
! <td width="100%" bgcolor="{T_TD_COLOR1}" align="center"><font face="{T_FONTFACE1}" size="{T_FONTSIZE2}"><b>{ERROR_MESSAGE}<b></font></td>
</tr>
</table></td>
</tr>
! </table>
\ No newline at end of file
--- 1,10 ----
!
! <table width="98%" cellpadding="0" cellspacing="1" border="0" align="center">
<tr>
! <td class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
<tr>
! <td class="row1" width="100%" align="center"><span class="gen">{ERROR_MESSAGE}</span></td>
</tr>
</table></td>
</tr>
! </table>
Index: faq_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/faq_body.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** faq_body.tpl 2001/12/10 00:58:50 1.1
--- faq_body.tpl 2001/12/10 13:14:25 1.2
***************
*** 2,6 ****
<table width="98%" cellspacing="0" cellpadding="4" border="0" align="center">
<tr>
! <td align="left" valign="bottom" nowrap="nowrap"><span class="gensmall"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
</tr>
</table>
--- 2,6 ----
<table width="98%" cellspacing="0" cellpadding="4" border="0" align="center">
<tr>
! <td align="left" valign="bottom"><span class="gensmall"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
</tr>
</table>
***************
*** 10,14 ****
<td width="100%" class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
<tr>
! <td class="cat" align="center"><span class="cattitle">{L_FAQ}</span></td>
</tr>
<tr>
--- 10,14 ----
<td width="100%" class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
<tr>
! <td class="cat" height="30" align="center"><span class="cattitle">{L_FAQ}</span></td>
</tr>
<tr>
***************
*** 18,21 ****
--- 18,24 ----
</tr>
<!-- BEGIN faq_block_link -->
+ <tr>
+ <td><span class="gen"><b>{faq_block_link.BLOCK_TITLE}</b></span></td>
+ </tr>
<!-- BEGIN faq_row_link -->
<tr>
***************
*** 29,36 ****
</table></td>
</tr>
<tr>
<td height="2" class="cat"><img src="images/spacer.gif" height="2" /></td>
</tr>
! <!-- BEGIN faq_block -->
<!-- BEGIN faq_row -->
<tr>
--- 32,51 ----
</table></td>
</tr>
+ </table></td>
+ </tr>
<tr>
<td height="2" class="cat"><img src="images/spacer.gif" height="2" /></td>
</tr>
! </table>
!
! <br clear="all" />
!
! <!-- BEGIN faq_block -->
! <table width="98%" cellpadding="0" cellspacing="0" border="0" align="center">
! <tr>
! <td width="100%" class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
! <tr>
! <td class="cat" height="30"><span class="cattitle">{faq_block.BLOCK_TITLE}</span></td>
! </tr>
<!-- BEGIN faq_row -->
<tr>
***************
*** 38,54 ****
</tr>
<!-- END faq_row -->
- <tr>
- <td class="cat" height="25"><span class="gen">{faq_block.BLOCK_TITLE}</span></td>
- </tr>
- <!-- END faq_block -->
</table></td>
</tr>
</table>
<br clear="all" />
<table width="98%" cellpadding="0" cellspacing="0" border="0" align="center">
<tr>
! <td><span class="gensmall"><b>{S_TIMEZONE}</b></td>
<td align="right" valign="middle" nowrap="nowrap"><span class="gensmall">{JUMPBOX}</span></td>
</tr>
--- 53,72 ----
</tr>
<!-- END faq_row -->
</table></td>
</tr>
+ <tr>
+ <td height="2" class="cat"><img src="images/spacer.gif" height="2" /></td>
+ </tr>
</table>
<br clear="all" />
+ <!-- END faq_block -->
+
+ <br clear="all" />
+
<table width="98%" cellpadding="0" cellspacing="0" border="0" align="center">
<tr>
! <td valign="top"><span class="gensmall"><b>{S_TIMEZONE}</b></td>
<td align="right" valign="middle" nowrap="nowrap"><span class="gensmall">{JUMPBOX}</span></td>
</tr>
Index: groupcp_info_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/groupcp_info_body.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** groupcp_info_body.tpl 2001/12/10 00:58:50 1.1
--- groupcp_info_body.tpl 2001/12/10 13:14:25 1.2
***************
*** 1,119 ****
! <form method="POST" action="{S_GROUP_INFO_ACTION}">
! <table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
! <tr>
! <td align="left"><span class="gensmall"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td>
! </tr>
! </table>
!
! <table width="100%" cellpadding="4" cellspacing="1" border="0">
! <tr>
! <th colspan="7" class="thHead" height="25"><span class="cattitle">{L_GROUP_INFORMATION}</span></th>
! </tr>
! <tr>
! <td class="row1" width="20%"><span class="gen">{L_GROUP_NAME}:</span></td>
! <td class="row2"><span class="gen"><b>{GROUP_NAME}</b></span></td>
! </tr>
! <tr>
! <td class="row1" width="20%"><span class="gen">{L_GROUP_DESC}:</span></td>
! <td class="row2"><span class="gen">{GROUP_DESC}</span></td>
! </tr>
! <tr>
! <td class="row1" width="20%"><span class="gen">{L_GROUP_MEMBERSHIP}:</span></td>
! <td class="row2"><span class="gen">{GROUP_DETAILS}
! <!-- BEGIN switch_subscribe_group_input -->
! <input class="mainoption" type="submit" name="joingroup" value="{L_JOIN_GROUP}" />
! <!-- END switch_subscribe_group_input -->
! <!-- BEGIN switch_unsubscribe_group_input -->
! <input class="mainoption" type="submit" name="unsub" value="{L_UNSUBSCRIBE_GROUP}" />
! <!-- END switch_unsubscribe_group_input -->
! </span></td>
! </tr>
! <!-- BEGIN switch_mod_option -->
! <tr>
! <td class="row1" width="20%"><span class="gen">{L_GROUP_STATUS}:</span></td>
! <td class="row2"><span class="gen"><span class="gen"><input type="radio" name="group_type" value="{S_GROUP_OPEN_TYPE}" {S_GROUP_OPEN_CHECKED} /> {L_GROUP_OPEN} <input type="radio" name="group_type" value="{S_GROUP_CLOSED_TYPE}" {S_GROUP_CLOSED_CHECKED} /> {L_GROUP_CLOSED} <input type="radio" name="group_type" value="{S_GROUP_HIDDEN_TYPE}" {S_GROUP_HIDDEN_CHECKED} /> {L_GROUP_HIDDEN} <input class="mainoption" type="submit" name="groupstatus" value="{L_UPDATE}" /></span></td>
! </tr>
! <!-- END switch_mod_option -->
! </table>
! {S_HIDDEN_FIELDS}
! </form>
!
! <form action="{S_PENDING_ACTION}" method="post" name="post">
! <table width="100%" cellpadding="4" cellspacing="1" border="0">
! <tr>
! <th class="thCornerL" height="25">{L_PM}</th>
! <th class="thTop">{L_USERNAME}</th>
! <th class="thTop">{L_POSTS}</th>
! <th class="thTop">{L_FROM}</th>
! <th class="thTop">{L_EMAIL}</th>
! <th class="thTop">{L_WEBSITE}</th>
! <th class="thCornerR">{L_SELECT}</th>
! </tr>
!
! <tr>
! <td colspan="8" height="28"><span class="cattitle">{L_GROUP_MODERATOR}</span></td>
! </tr>
<tr>
! <td class="row1" align="center"> {MOD_PM_IMG} </td>
! <td class="row1" align="center"><span class="gen"><a href="{U_MOD_VIEWPROFILE}" class="gen">{MOD_USERNAME}</a></span></td>
! <td class="row1" align="center" valign="middle"><span class="gen">{MOD_POSTS}</span></td>
! <td class="row1" align="center" valign="middle"><span class="gen">{MOD_FROM}</span></td>
! <td class="row1" align="center" valign="middle"><span class="gen">{MOD_EMAIL_IMG}</span></td>
! <td class="row1" align="center">{MOD_WWW_IMG}</td>
! <td class="row1" align="center"> </td>
</tr>
!
! <tr>
! <td class="catSides" colspan="8" height="28"><span class="cattitle">{L_GROUP_MEMBERS}</span></td>
! </tr>
! <!-- BEGIN member_row -->
! <tr>
! <td class="{member_row.ROW_CLASS}" align="center"> {member_row.PM_IMG} </td>
! <td class="{member_row.ROW_CLASS}" align="center"><span class="gen"><a href="{member_row.U_VIEWPROFILE}" class="gen">{member_row.USERNAME}</a></span></td>
! <td class="{member_row.ROW_CLASS}" align="center"><span class="gen">{member_row.POSTS}</span></td>
! <td class="{member_row.ROW_CLASS}" align="center"><span class="gen"> {member_row.FROM}
! </span></td>
! <td class="{member_row.ROW_CLASS}" align="center" valign="middle"><span class="gen">{member_row.EMAIL_IMG}</span></td>
! <td class="{member_row.ROW_CLASS}" align="center"> {member_row.WWW_IMG}</td>
! <td class="{member_row.ROW_CLASS}" align="center">
! <!-- BEGIN switch_mod_option -->
! <input type="checkbox" name="members[]" value="{member_row.USER_ID}" />
! <!-- END switch_mod_option -->
! </td>
! </tr>
! <!-- END member_row -->
! <!-- BEGIN switch_no_members -->
! <tr>
! <td class="row1" colspan="7" align="center"><span class="gen">{L_NO_MEMBERS}</span></td>
! </tr>
! <!-- END switch_no_members -->
! <!-- BEGIN switch_hidden_group -->
! <tr>
! <td class="row1" colspan="7" align="center"><span class="gen">{L_HIDDEN_MEMBERS}</span></td>
! </tr>
! <!-- END switch_hidden_group -->
! <!-- BEGIN switch_mod_option -->
<tr>
! <td class="cat" colspan="8" align="right"><span class="cattitle">
! <input type="submit" name="remove" value="{L_REMOVE_SELECTED}" class="mainoption" />
! </td>
</tr>
- <!-- END switch_mod_option -->
</table>
! <table width="100%" cellspacing="2" border="0" align="center" cellpadding="2">
<tr>
! <td align="left" valign="top">
! <!-- BEGIN switch_mod_option -->
! <span class="genmed"><input type="text" class="post" name="username" maxlength="50" size="20" /> <input type="submit" name="add" value="{L_ADD_MEMBER}" class="mainoption" /> <input type="submit" name="usersubmit" value="{L_FIND_USERNAME}" class="liteoption" onClick="window.open('{U_SEARCH_USER}', '_phpbbsearch', 'HEIGHT=250,resizable=yes,WIDTH=400');return false;" /></span>
! <!-- END switch_mod_option -->
! </td>
! <td align="right" valign="top"><span class="gensmall">{S_TIMEZONE}</span></td>
</tr>
</table>
--- 1,133 ----
! <form action="{S_GROUP_INFO_ACTION}" method="post">
+ <table width="98%" cellspacing="0" cellpadding="4" border="0" align="center">
<tr>
! <td align="left"><span class="gensmall"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
</tr>
! </table>
! <table width="98%" cellpadding="0" cellspacing="0" border="0" align="center">
! <tr>
! <td width="100%" class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
! <tr>
! <td class="cat" colspan="7" height="30"><span class="cattitle">{L_GROUP_INFORMATION}</span></td>
! </tr>
! <tr>
! <td class="row1" width="20%"><span class="gen">{L_GROUP_NAME}:</span></td>
! <td class="row2"><span class="gen"><b>{GROUP_NAME}</b></span></td>
! </tr>
! <tr>
! <td class="row1" width="20%"><span class="gen">{L_GROUP_DESC}:</span></td>
! <td class="row2"><span class="gen">{GROUP_DESC}</span></td>
! </tr>
! <tr>
! <td class="row1" width="20%"><span class="gen">{L_GROUP_MEMBERSHIP}:</span></td>
! <td class="row2"><span class="gen">{GROUP_DETAILS}
! <!-- BEGIN switch_subscribe_group_input -->
! <input class="mainoption" type="submit" name="joingroup" value="{L_JOIN_GROUP}" />
! <!-- END switch_subscribe_group_input -->
! <!-- BEGIN switch_unsubscribe_group_input -->
! <input class="mainoption" type="submit" name="unsub" value="{L_UNSUBSCRIBE_GROUP}" />
! <!-- END switch_unsubscribe_group_input -->
! </span></td>
! </tr>
! <!-- BEGIN switch_mod_option -->
! <tr>
! <td class="row1" width="20%"><span class="gen">{L_GROUP_TYPE}:</span></td>
! <td class="row2"><span class="gen"><span class="gen"><input type="radio" name="group_type" value="{S_GROUP_OPEN_TYPE}" {S_GROUP_OPEN_CHECKED} /> {L_GROUP_OPEN} <input type="radio" name="group_type" value="{S_GROUP_CLOSED_TYPE}" {S_GROUP_CLOSED_CHECKED} /> {L_GROUP_CLOSED} <input type="radio" name="group_type" value="{S_GROUP_HIDDEN_TYPE}" {S_GROUP_HIDDEN_CHECKED} /> {L_GROUP_HIDDEN} <input class="liteoptiontable" type="submit" name="groupstatus" value="{L_UPDATE}" /></span></td>
! </tr>
! <!-- END switch_mod_option -->
! </table></td>
! </tr>
! </table>
! {S_HIDDEN_FIELDS}
! </form>
! <form action="{S_PENDING_ACTION}" method="post" name="post">
! <table width="98%" cellpadding="0" cellspacing="0" border="0" align="center">
<tr>
! <td width="100%" class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
! <tr>
! <th height="25">{L_PM}</th>
! <th height="25">{L_USERNAME}</th>
! <th height="25">{L_POSTS}</th>
! <th height="25">{L_FROM}</th>
! <th height="25">{L_EMAIL}</th>
! <th height="25">{L_WEBSITE}</th>
! <th height="25">{L_SELECT}</th>
! </tr>
! <tr>
! <td class="cat" colspan="8" height="30"><span class="cattitle">{L_GROUP_MODERATOR}</span></td>
! </tr>
! <tr>
! <td class="row1" align="center"> {MOD_PM_IMG} </td>
! <td class="row1" align="center"><span class="gen"><a href="{U_MOD_VIEWPROFILE}" class="gen">{MOD_USERNAME}</a></span></td>
! <td class="row1" align="center" valign="middle"><span class="gen">{MOD_POSTS}</span></td>
! <td class="row1" align="center" valign="middle"><span class="gen">{MOD_FROM}</span></td>
! <td class="row1" align="center" valign="middle"><span class="gen">{MOD_EMAIL_IMG}</span></td>
! <td class="row1" align="center">{MOD_WWW_IMG}</td>
! <td class="row1" align="center"> </td>
! </tr>
! <tr>
! <td class="cat" colspan="8" height="30"><span class="cattitle">{L_GROUP_MEMBERS}</span></td>
! </tr>
! <!-- BEGIN member_row -->
! <tr>
! <td class="{member_row.ROW_CLASS}" align="center">{member_row.PM_IMG}</td>
! <td class="{member_row.ROW_CLASS}" align="center"><span class="gen"><a href="{member_row.U_VIEWPROFILE}" class="gen">{member_row.USERNAME}</a></span></td>
! <td class="{member_row.ROW_CLASS}" align="center"><span class="gen">{member_row.POSTS}</span></td>
! <td class="{member_row.ROW_CLASS}" align="center"><span class="gen">{member_row.FROM}</span></td>
! <td class="{member_row.ROW_CLASS}" align="center" valign="middle"><span class="gen">{member_row.EMAIL_IMG}</span></td>
! <td class="{member_row.ROW_CLASS}" align="center">{member_row.WWW_IMG}</td>
! <td class="{member_row.ROW_CLASS}" align="center">
! <!-- BEGIN switch_mod_option -->
! <input type="checkbox" name="members[]" value="{member_row.USER_ID}" />
! <!-- END switch_mod_option -->
! </td>
! </tr>
! <!-- END member_row -->
! <!-- BEGIN switch_no_members -->
! <tr>
! <td class="row1" colspan="7" align="center"><span class="gen">{L_NO_MEMBERS}</span></td>
! </tr>
! <!-- END switch_no_members -->
! <!-- BEGIN switch_hidden_group -->
! <tr>
! <td class="row1" colspan="7" align="center"><span class="gen">{L_HIDDEN_MEMBERS}</span></td>
! </tr>
! <!-- END switch_hidden_group -->
! <tr>
! <td class="cat" colspan="8" height="30"><table width="100%" cellspacing="0" cellpadding="0" border="0">
! <tr>
! <td><span class="gensmall">{PAGE_NUMBER}</span></td>
! <td align="right"><table cellspacing="0" cellpadding="0" border="0">
! <tr>
! <td align="right"><span class="gensmall">{PAGINATION}</span></td>
! <!-- BEGIN switch_mod_option -->
! <td> </td>
! <td align="right"><span class="cattitle"><input class="liteoptiontable" type="submit" name="remove" value="{L_REMOVE_SELECTED}" /></td>
! <!-- END switch_mod_option -->
! </tr>
! </table></td>
! </tr>
! </table></td>
! </table></td>
</tr>
</table>
! <table width="98%" cellpadding="0" cellspacing="0" border="0" align="center">
<tr>
! <td width="100%" class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
! <tr>
! <td align="left" valign="top">
! <!-- BEGIN switch_mod_option -->
! <span class="genmed"><input type="text" class="post" name="username" maxlength="50" size="20" /> <input class="outsidetable" type="submit" name="add" value="{L_ADD_MEMBER}" /> <input class="outsidetable" type="submit" name="usersubmit" value="{L_FIND_USERNAME}" onClick="window.open('{U_SEARCH_USER}', '_phpbbsearch', 'HEIGHT=250,resizable=yes,WIDTH=400');return false;" /></span>
! <!-- END switch_mod_option -->
! </td>
! </tr>
! </table></td>
</tr>
</table>
***************
*** 121,129 ****
{PENDING_USER_BOX}
! {S_HIDDEN_FIELDS}</form>
! <table width="100%" cellspacing="2" border="0" align="center">
! <tr>
! <td valign="top" align="right">{JUMPBOX}</td>
! </tr>
</table>
--- 135,146 ----
{PENDING_USER_BOX}
! {S_HIDDEN_FIELDS}
!
! </form>
! <table width="98%" cellspacing="2" border="0" align="center">
! <tr>
! <td valign="top"><span class="gensmall"><b>{S_TIMEZONE}</b></span></td>
! <td valign="top" align="right">{JUMPBOX}</td>
! </tr>
</table>
Index: groupcp_pending_info.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/groupcp_pending_info.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** groupcp_pending_info.tpl 2001/12/10 00:58:50 1.1
--- groupcp_pending_info.tpl 2001/12/10 13:14:25 1.2
***************
*** 2,36 ****
<br clear="all" />
! <table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
! <tr>
! <th class="thCornerL" height="25">{L_PM}</th>
! <th class="thTop">{L_USERNAME}</th>
! <th class="thTop">{L_POSTS}</th>
! <th class="thTop">{L_FROM}</th>
! <th class="thTop">{L_EMAIL}</th>
! <th class="thTop">{L_WEBSITE}</th>
! <th class="thCornerR">{L_SELECT}</th>
</tr>
- <tr>
- <td class="catSides" colspan="8" height="28"><span class="cattitle">{L_PENDING_MEMBERS}</span></td>
- </tr>
- <!-- BEGIN pending_members_row -->
- <tr>
- <td class="{pending_members_row.ROW_CLASS}" align="center"> {pending_members_row.PM_IMG}
- </td>
- <td class="{pending_members_row.ROW_CLASS}" align="center"><span class="gen"><a href="{pending_members_row.U_VIEWPROFILE}" class="gen">{pending_members_row.USERNAME}</a></span></td>
- <td class="{pending_members_row.ROW_CLASS}" align="center"><span class="gen">{pending_members_row.POSTS}</span></td>
- <td class="{pending_members_row.ROW_CLASS}" align="center"><span class="gen">{pending_members_row.FROM}</span></td>
- <td class="{pending_members_row.ROW_CLASS}" align="center"><span class="gen">{pending_members_row.EMAIL_IMG}</span></td>
- <td class="{pending_members_row.ROW_CLASS}" align="center"><span class="gen">{pending_members_row.WWW_IMG}</span></td>
- <td class="{pending_members_row.ROW_CLASS}" align="center"><span class="gensmall"> <input type="checkbox" name="pending_members[]" value="{pending_members_row.USER_ID}" /></span></td>
- </tr>
- <!-- END pending_members_row -->
- <tr>
- <td class="cat" colspan="8" align="right"><span class="cattitle">
- <input type="submit" name="approve" value="{L_APPROVE_SELECTED}" class="mainoption" />
-
- <input type="submit" name="deny" value="{L_DENY_SELECTED}" class="liteoption" />
- </span></td>
- </tr>
</table>
--- 2,37 ----
<br clear="all" />
! <table width="98%" cellpadding="0" cellspacing="0" border="0" align="center">
! <tr>
! <td width="100%" class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
! <tr>
! <th height="25">{L_PM}</th>
! <th height="25">{L_USERNAME}</th>
! <th height="25">{L_POSTS}</th>
! <th height="25">{L_FROM}</th>
! <th height="25">{L_EMAIL}</th>
! <th height="25">{L_WEBSITE}</th>
! <th height="25">{L_SELECT}</th>
! </tr>
! <tr>
! <td class="cat" colspan="8" height="30"><span class="cattitle">{L_PENDING_MEMBERS}</span></td>
! </tr>
! <!-- BEGIN pending_members_row -->
! <tr>
! <td class="{pending_members_row.ROW_CLASS}" align="center">{pending_members_row.PM_IMG}</td>
! <td class="{pending_members_row.ROW_CLASS}" align="center"><span class="gen"><a href="{pending_members_row.U_VIEWPROFILE}" class="gen">{pending_members_row.USERNAME}</a></span></td>
! <td class="{pending_members_row.ROW_CLASS}" align="center"><span class="gen">{pending_members_row.POSTS}</span></td>
! <td class="{pending_members_row.ROW_CLASS}" align="center"><span class="gen"> {pending_members_row.FROM}</span></td>
! <td class="{pending_members_row.ROW_CLASS}" align="center" valign="middle"><span class="gen">{pending_members_row.EMAIL_IMG}</span></td>
! <td class="{pending_members_row.ROW_CLASS}" align="center">{pending_members_row.WWW_IMG}</td>
! <td class="{pending_members_row.ROW_CLASS}" align="center"> <input type="checkbox" name="members[]" value="{pending_members_row.USER_ID}" /> </td>
! </tr>
! <!-- END pending_members_row -->
! <tr>
! <td class="cat" colspan="8" height="30" align="right"><input class="liteoptiontable" type="submit" name="approve" value="{L_APPROVE_SELECTED}" /> <input class="liteoptiontable" type="submit" name="deny" value="{L_DENY_SELECTED}" /></td>
! </tr>
! </table></td>
</tr>
</table>
+
+ <br clear="all" />
Index: groupcp_user_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/groupcp_user_body.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** groupcp_user_body.tpl 2001/12/10 00:58:50 1.1
--- groupcp_user_body.tpl 2001/12/10 13:14:25 1.2
***************
*** 1,28 ****
! <div align="center"><table width="98%" cellspacing="0" cellpadding="4" border="0">
<tr>
! <td align="left"><span class="gensmall"><a href="{U_INDEX}">{SITENAME} {L_INDEX}</a></span></td>
</tr>
! </table></div>
! <div align="center"><table border="0" cellpadding="1" cellspacing="0" width="98%">
<tr>
<td class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
! <!-- BEGIN group_joined -->
<tr>
! <td class="cat" colspan="2"><span class="cattitle"><b>{L_GROUP_MEMBERSHIP_DETAILS}</b></span></td>
</tr>
! <!-- BEGIN group_member -->
<tr>
<td class="row1"><span class="gen">{L_YOU_BELONG_GROUPS}</span></td>
<td class="row2"><table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr><form method="post" action="{S_USERGROUP_ACTION}">
! <td width="40%" align="center"> {GROUP_MEMBER_SELECT} </td>
! <td width="30%" align="center"> <input type="submit" name="viewinfo" value="{L_VIEW_INFORMATION}"> </td>
! <td width="30%" align="center"> <input type="submit" name="unsub" value="{L_UNSUBSCRIBE}"> </td>
</form></tr>
</table></td>
</tr>
! <!-- END group_member -->
! <!-- BEGIN group_pending -->
<tr>
<td class="row1"><span class="gen">{L_PENDING_GROUPS}</span></td>
--- 1,28 ----
!
! <table width="98%" cellspacing="0" cellpadding="4" border="0" align="center">
<tr>
! <td><span class="gensmall"><a href="{U_INDEX}">{L_INDEX}</a></span></td>
</tr>
! </table>
! <table width="98%" cellpadding="1" cellspacing="0" border="0" align="center">
<tr>
<td class="tablebg"><table width="100%" cellpadding="4" cellspacing="1" border="0">
! <!-- BEGIN groups_joined -->
<tr>
! <td class="cat" colspan="2" height="30"><span class="cattitle">{L_GROUP_MEMBERSHIP_DETAILS}</span></td>
</tr>
! <!-- BEGIN groups_member -->
<tr>
<td class="row1"><span class="gen">{L_YOU_BELONG_GROUPS}</span></td>
<td class="row2"><table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr><form method="post" action="{S_USERGROUP_ACTION}">
! <td width="50%" align="center"> {GROUP_MEMBER_SELECT} </td>
! <td width="50%" align="center"> <input class="mainoptiontable" type="submit" name="viewinfo" value="{L_VIEW_INFORMATION}"> </td>
</form></tr>
</table></td>
</tr>
! <!-- END groups_member -->
! <!-- BEGIN groups_pending -->
<tr>
<td class="row1"><span class="gen">{L_PENDING_GROUPS}</span></td>
***************
*** 30,43 ****
<tr><form method="post" action="{S_USERGROUP_ACTION}">
<td width="40%" align="center"> {GROUP_PENDING_SELECT} </td>
! <td width="30%" align="center"> <input type="submit" name="viewinfo" value="{L_VIEW_INFORMATION}"> </td>
! <td width="30%" align="center"> <input type="submit" name="unsubpending" value="{L_UNSUBSCRIBE}"> </td>
</form></tr>
</table></td>
</tr>
! <!-- END group_pending -->
! <!-- END group_joined -->
! <!-- BEGIN group_subscribe -->
<tr>
! <td class="cat" colspan="2"><span class="cattitle"><b>{L_JOIN_A_GROUP}</b></span></td>
</tr>
<tr>
--- 30,42 ----
<tr><form method="post" action="{S_USERGROUP_ACTION}">
<td width="40%" align="center"> {GROUP_PENDING_SELECT} </td>
! <td width="30%" align="center"> <input class="mainoptiontable" type="submit" name="viewinfo" value="{L_VIEW_INFORMATION}"> </td>
</form></tr>
</table></td>
</tr>
! <!-- END groups_pending -->
! <!-- END groups_joined -->
! <!-- BEGIN groups_remaining -->
<tr>
! <td class="cat" colspan="2" height="30"><span class="cattitle"><b>{L_JOIN_A_GROUP}</b></span></td>
</tr>
<tr>
***************
*** 46,58 ****
<tr><form method="post" action="{S_USERGROUP_ACTION}">
<td width="40%" align="center"> {GROUP_LIST_SELECT} </td>
! <td width="30%" align="center"> <input type="submit" name="viewinfo" value="{L_VIEW_INFORMATION}"> </td>
<td width="30%" align="center"> </td>
</form></tr>
</table></td>
</tr>
! <!-- END group_join -->
</table></td>
</tr>
! </table></div>
! <br clear="all">
--- 45,57 ----
<tr><form method="post" action="{S_USERGROUP_ACTION}">
<td width="40%" align="center"> {GROUP_LIST_SELECT} </td>
! <td width="30%" align="center"> <input class="mainoptiontable" type="submit" name="viewinfo" value="{L_VIEW_INFORMATION}"> </td>
<td width="30%" align="center"> </td>
</form></tr>
</table></td>
</tr>
! <!-- END groups_remaining -->
</table></td>
</tr>
! </table>
! <br clear="all" />
Index: login_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/login_body.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** login_body.tpl 2001/12/10 00:58:50 1.1
--- login_body.tpl 2001/12/10 13:14:25 1.2
***************
*** 1,38 ****
! <div align="center"><table width="60%" cellspacing="0" cellpadding="4" border="0">
<tr>
! <td align="left"><font face="{T_FONTFACE1}" size="{T_FONTSIZE1}" color="{T_FONTCOLOR1}"><a href="/">{SITENAME} {L_INDEX}</a></font></td>
</tr>
! </table></div>
! <div align="center"><table border="0" cellpadding="1" cellspacing="0" width="60%">
! <tr><form action="{S_LOGIN_ACTION}" method="post">
! <td bgcolor="{T_TH_COLOR1}"><table border="0" cellpadding="4" cellspacing="1" width="100%">
<tr>
! <th colspan="2" bgcolor="{T_TH_COLOR3}" align="center"><font face="{T_FONTFACE1}" size="{T_FONTSIZE2}" color="{T_FONTCOLOR1}"><p><b>Please enter your username and password to login</b></p></font></th>
</tr>
<tr>
! <td width="45%" bgcolor="{T_TD_COLOR1}" align="right"><font face="{T_FONTFACE1}" size="{T_FONTSIZE2}" color="{T_FONTCOLOR2}">{L_USERNAME}: </font></td><td bgcolor="{T_TD_COLOR2}"><input type="text" name="username" size="25" maxlength="40" value="{USERNAME}"></td>
</tr>
<tr>
! <td bgcolor="{T_TD_COLOR1}" align="right"><font face="{T_FONTFACE1}" size="{T_FONTSIZE2}" color="{T_FONTCOLOR2}">{L_PASSWORD}: </font></td><td bgcolor="{T_TD_COLOR2}"><input type="password" name="password" size="25" maxlength="25"></td>
</tr>
<tr>
! <td colspan="2" bgcolor="{T_TH_COLOR2}"><table width="100%" cellspacing="0" cellpadding="6" border="0">
<tr>
! <td align="center"><font face="{T_FONTFACE1}" size="2" color="{T_FONTCOLOR2}">{L_AUTO_LOGIN}</font>: <input type="checkbox" name="autologin"></td>
</tr>
<tr>
! <td align="center"><input type="hidden" name="login" value="login"><input type="hidden" name="forward_page" value="{FORWARD_PAGE}"><input type="submit" name="submit" value="{L_LOGIN}"></td>
</tr>
<tr>
! <td align="center"><font face="{T_FONTFACE1}" size="{T_FONTSIZE2}"><a href="{U_SEND_PASSWORD}">{L_SEND_PASSWORD}</a></font></td>
</tr>
</table></td>
</tr>
</table></td>
! </form></tr>
! </table></div>
! <div align="center"><table align="center" border="0" width="60%">
! <td align="right"><font face="{T_FONTFACE1}" size="{T_FONTSIZE1}"><b>{S_TIMEZONE}</b></font></td>
</table>
--- 1,47 ----
!
! <form action="{S_LOGIN_ACTION}" method="post">
!
! <table width="80%" cellspacing="0" cellpadding="4" border="0" align="center">
<tr>
! <td><span class="gensmall"><a href="{U_INDEX}">{L_INDEX}</a></span></td>
</tr>
! </table>
! <table width="80%" cellspacing="0" cellpadding="0" border="0" align="center">
! <tr>
! <td class="tablebg"><table width="100%" cellspacing="1" cellpadding="4" border="0">
<tr>
! <td class="cat" colspan="2" height="30" align="center"><span class="cattitle">{L_ENTER_PASSWORD}</span></td>
</tr>
<tr>
! <td class="row1" width="45%" align="right"><span class="gen">{L_USERNAME}: </span></td>
! <td class="row1"><input type="text" name="username" size="25" maxlength="30" value="{USERNAME}" /></td>
</tr>
<tr>
! <td class="row2" align="right"><span class="gen">{L_PASSWORD}: </span></td>
! <td class="row2"><input type="password" name="password" size="25" maxlength="25" /></td>
</tr>
<tr>
! <td class="row1" colspan="2"><table width="100%" cellspacing="0" cellpadding="6" border="0">
<tr>
! <td align="center"><span class="gen">{L_AUTO_LOGIN}</font>: <input type="checkbox" name="autologin" /></span></td>
</tr>
<tr>
! <td align="center">{S_HIDDEN_FIELDS}<input class="mainoptiontable" type="submit" name="login" value="{L_LOGIN}" /></td>
</tr>
<tr>
! <td align="center"><span class="gensmall"><a href="{U_SEND_PASSWORD}">{L_SEND_PASSWORD}</a></span></td>
</tr>
</table></td>
</tr>
</table></td>
! </tr>
! </table></form>
! <table width="80%" border="0" align="center">
! <tr>
! <td valign="top"><span class="gensmall"><b>{S_TIMEZONE}</b></span></td>
! </tr>
</table>
+
+ <br clear="all" />
|
|
From: Paul S. O. <ps...@us...> - 2001-12-10 02:39:33
|
Update of /cvsroot/phpbb/phpBB2/templates/Euclid/images In directory usw-pr-cvs1:/tmp/cvs-serv9306 Removed Files: msg_draft.gif Log Message: oops, that shouldn't be there --- msg_draft.gif DELETED --- |
|
From: Paul S. O. <ps...@us...> - 2001-12-10 02:33:24
|
Update of /cvsroot/phpbb/phpBB2/templates/Euclid/images In directory usw-pr-cvs1:/tmp/cvs-serv7423 Modified Files: post-locked.gif Log Message: Updated Index: post-locked.gif =================================================================== RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/images/post-locked.gif,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 Binary files /tmp/cvs932ece and /tmp/cvsUkP4fi differ |
|
From: Paul S. O. <ps...@us...> - 2001-12-10 02:01:30
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv30496
Modified Files:
common.php
Log Message:
Updated IP stuff
Index: common.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/common.php,v
retrieving revision 1.66
retrieving revision 1.67
diff -C2 -r1.66 -r1.67
*** common.php 2001/12/05 00:20:52 1.66
--- common.php 2001/12/10 02:01:28 1.67
***************
*** 143,158 ****
// Obtain and encode users IP
//
! if(!empty($HTTP_CLIENT_IP))
{
! $client_ip = ( ereg("[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+", $HTTP_CLIENT_IP) ) ? $HTTP_CLIENT_IP : $REMOTE_ADDR;
}
- else if(!empty($HTTP_X_FORWARDED_FOR))
- {
- $client_ip = ( ereg("^([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)", $HTTP_X_FORWARDED_FOR, $ip_list) ) ? $ip_list[0] : $REMOTE_ADDR;
- }
- else if(!empty($HTTP_PROXY_USER))
- {
- $client_ip = ( ereg("[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+", $HTTP_PROXY_USER) ) ? $HTTP_PROXY_USER : $REMOTE_ADDR;
- }
else
{
--- 143,150 ----
// Obtain and encode users IP
//
! if( !empty($HTTP_X_FORWARDED_FOR) )
{
! $client_ip = ( preg_match("/^([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)/", $HTTP_X_FORWARDED_FOR, $ip_list) ) ? $ip_list[1] : $REMOTE_ADDR;
}
else
{
***************
*** 185,187 ****
}
! ?>
--- 177,179 ----
}
! ?>
\ No newline at end of file
|
|
From: Paul S. O. <ps...@us...> - 2001-12-10 01:20:52
|
Update of /cvsroot/phpbb/phpBB2/templates/Euclid
In directory usw-pr-cvs1:/tmp/cvs-serv19036
Modified Files:
viewforum_body.tpl search_results_topics.tpl
Log Message:
Updates
Index: viewforum_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/viewforum_body.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** viewforum_body.tpl 2001/12/10 00:58:50 1.1
--- viewforum_body.tpl 2001/12/10 01:20:50 1.2
***************
*** 36,41 ****
<td class="row1" align="center" valign="middle"> {topicrow.FOLDER} </td>
<td class="row2"> <span class="gensmall">{topicrow.NEWEST_POST_IMG}{topicrow.TOPIC_TYPE}<a href="{topicrow.U_VIEW_TOPIC}">{topicrow.TOPIC_TITLE}</a> {topicrow.GOTO_PAGE}</span></td>
! <td class="row2" align="center" valign="middle"><span class="gen"><a href="{topicrow.U_TOPIC_POSTER_PROFILE}">{topicrow.TOPIC_POSTER}</a></span></td>
! <td class="row1" align="center" valign="middle"><span class="gen">{topicrow.REPLIES}</span></td>
<td class="row1" align="center" valign="middle"><span class="gen">{topicrow.VIEWS}</span></td>
<td class="row2" align="center" valign="middle" NOWRAP><span class="gensmall">{topicrow.LAST_POST}</span></td>
--- 36,41 ----
<td class="row1" align="center" valign="middle"> {topicrow.FOLDER} </td>
<td class="row2"> <span class="gensmall">{topicrow.NEWEST_POST_IMG}{topicrow.TOPIC_TYPE}<a href="{topicrow.U_VIEW_TOPIC}">{topicrow.TOPIC_TITLE}</a> {topicrow.GOTO_PAGE}</span></td>
! <td class="row1" align="center" valign="middle"><span class="gen"><a href="{topicrow.U_TOPIC_POSTER_PROFILE}">{topicrow.TOPIC_POSTER}</a></span></td>
! <td class="row2" align="center" valign="middle"><span class="gen">{topicrow.REPLIES}</span></td>
<td class="row1" align="center" valign="middle"><span class="gen">{topicrow.VIEWS}</span></td>
<td class="row2" align="center" valign="middle" NOWRAP><span class="gensmall">{topicrow.LAST_POST}</span></td>
Index: search_results_topics.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/search_results_topics.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** search_results_topics.tpl 2001/12/10 00:58:50 1.1
--- search_results_topics.tpl 2001/12/10 01:20:50 1.2
***************
*** 31,36 ****
<td class="row2"><span class="gensmall"><a href="{searchresults.U_VIEW_FORUM}" class="forumlink">{searchresults.FORUM_NAME}</a></span></td>
<td class="row1"> <span class="gensmall">{searchresults.NEWEST_POST_IMG}{searchresults.TOPIC_TYPE}<a href="{searchresults.U_VIEW_TOPIC}">{searchresults.TOPIC_TITLE}</a> {searchresults.GOTO_PAGE}</span></td>
! <td class="row1" align="center" valign="middle"><span class="gen"><a href="{searchresults.U_TOPIC_POSTER_PROFILE}">{searchresults.TOPIC_POSTER}</a></span></td>
! <td class="row2" align="center" valign="middle"><span class="gen">{searchresults.REPLIES}</span></td>
<td class="row2" align="center" valign="middle"><span class="gen">{searchresults.VIEWS}</span></td>
<td class="row1" align="center" valign="middle" NOWRAP><span class="gensmall">{searchresults.LAST_POST}</span></td>
--- 31,36 ----
<td class="row2"><span class="gensmall"><a href="{searchresults.U_VIEW_FORUM}" class="forumlink">{searchresults.FORUM_NAME}</a></span></td>
<td class="row1"> <span class="gensmall">{searchresults.NEWEST_POST_IMG}{searchresults.TOPIC_TYPE}<a href="{searchresults.U_VIEW_TOPIC}">{searchresults.TOPIC_TITLE}</a> {searchresults.GOTO_PAGE}</span></td>
! <td class="row2" align="center" valign="middle"><span class="gen"><a href="{searchresults.U_TOPIC_POSTER_PROFILE}">{searchresults.TOPIC_POSTER}</a></span></td>
! <td class="row1" align="center" valign="middle"><span class="gen">{searchresults.REPLIES}</span></td>
<td class="row2" align="center" valign="middle"><span class="gen">{searchresults.VIEWS}</span></td>
<td class="row1" align="center" valign="middle" NOWRAP><span class="gensmall">{searchresults.LAST_POST}</span></td>
|
|
From: Paul S. O. <ps...@us...> - 2001-12-10 01:19:15
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv18535/includes
Modified Files:
page_header.php
Log Message:
Updates putting back something I took away, slapped hands for me
Index: page_header.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/page_header.php,v
retrieving revision 1.75
retrieving revision 1.76
diff -C2 -r1.75 -r1.76
*** page_header.php 2001/12/05 00:20:56 1.75
--- page_header.php 2001/12/10 01:19:12 1.76
***************
*** 293,299 ****
"L_AUTHOR" => $lang['Author'],
"L_MESSAGE" => $lang['Message'],
- "L_BY" => $lang['by'],
"L_LOGIN_LOGOUT" => $l_login_logout,
"U_INDEX" => append_sid("index.".$phpEx),
"U_REGISTER" => append_sid("profile.".$phpEx."?mode=register"),
--- 293,304 ----
"L_AUTHOR" => $lang['Author'],
"L_MESSAGE" => $lang['Message'],
"L_LOGIN_LOGOUT" => $l_login_logout,
+ "L_SEARCH_NEW" => $lang['Search_new'],
+ "L_SEARCH_UNANSWERED" => $lang['Search_unanswered'],
+ "L_SEARCH_SELF" => $lang['Search_your_posts'],
+ "U_SEARCH_UNANSWERED" => append_sid("search.".$phpEx."?search_id=unanswered"),
+ "U_SEARCH_SELF" => append_sid("search.".$phpEx."?search_id=egosearch"),
+ "U_SEARCH_NEW" => append_sid("search.$phpEx?search_id=newposts"),
"U_INDEX" => append_sid("index.".$phpEx),
"U_REGISTER" => append_sid("profile.".$phpEx."?mode=register"),
|
|
From: Paul S. O. <ps...@us...> - 2001-12-10 01:19:15
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv18535
Modified Files:
index.php
Log Message:
Updates putting back something I took away, slapped hands for me
Index: index.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/index.php,v
retrieving revision 1.80
retrieving revision 1.81
diff -C2 -r1.80 -r1.81
*** index.php 2001/12/05 00:20:53 1.80
--- index.php 2001/12/10 01:19:12 1.81
***************
*** 239,249 ****
"L_FORUM_LOCKED" => $lang['Forum_is_locked'],
"L_MARK_FORUMS_READ" => $lang['Mark_all_forums'],
- "L_SEARCH_NEW" => $lang['Search_new'],
- "L_SEARCH_UNANSWERED" => $lang['Search_unanswered'],
- "L_SEARCH_SELF" => $lang['Search_your_posts'],
- "U_SEARCH_UNANSWERED" => append_sid("search.".$phpEx."?search_id=unanswered"),
- "U_SEARCH_SELF" => append_sid("search.".$phpEx."?search_id=egosearch"),
- "U_SEARCH_NEW" => append_sid("search.$phpEx?search_id=newposts"),
"U_MARK_READ" => append_sid("index.$phpEx?mark=forums"))
);
--- 239,243 ----
|
|
From: Paul S. O. <ps...@us...> - 2001-12-10 01:18:11
|
Update of /cvsroot/phpbb/phpBB2/templates/Euclid
In directory usw-pr-cvs1:/tmp/cvs-serv18275
Modified Files:
viewtopic_body.tpl overall_header.tpl index_body.tpl
Log Message:
Updates
Index: viewtopic_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/viewtopic_body.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** viewtopic_body.tpl 2001/12/10 00:58:50 1.1
--- viewtopic_body.tpl 2001/12/10 01:18:09 1.2
***************
*** 50,59 ****
<td class="tablebg"><table border="0" cellpadding="4" cellspacing="1" width="100%">
<tr bgcolor="{postrow.ROW_COLOR}">
! <td rowspan="2" width="160" align="left" valign="top"><a name="{postrow.U_POST_ID}"></a><table width="160" cellspacing="0" cellpadding="0" border="0">
<tr>
<td valign="top"><span class="gen"><b>{postrow.POSTER_NAME}</b></span><br /><span class="gensmall">{postrow.POSTER_RANK}<br />{postrow.RANK_IMAGE}{postrow.POSTER_AVATAR}<br /><br />{postrow.POSTER_JOINED}<br />{postrow.POSTER_POSTS}<br />{postrow.POSTER_FROM}</span><br /><br /></td>
</tr>
</table></td>
! <td width="100%" height="20" valign="top"><table width="100%" cellspacing="1" cellpadding="0" border="0">
<tr>
<td valign="top"><table width="100%" cellspacing="0" cellpadding="0" border="0">
--- 50,59 ----
<td class="tablebg"><table border="0" cellpadding="4" cellspacing="1" width="100%">
<tr bgcolor="{postrow.ROW_COLOR}">
! <td width="160" align="left" valign="top"><a name="{postrow.U_POST_ID}"></a><table width="160" cellspacing="0" cellpadding="0" border="0">
<tr>
<td valign="top"><span class="gen"><b>{postrow.POSTER_NAME}</b></span><br /><span class="gensmall">{postrow.POSTER_RANK}<br />{postrow.RANK_IMAGE}{postrow.POSTER_AVATAR}<br /><br />{postrow.POSTER_JOINED}<br />{postrow.POSTER_POSTS}<br />{postrow.POSTER_FROM}</span><br /><br /></td>
</tr>
</table></td>
! <td width="100%" valign="top"><table width="100%" cellspacing="1" cellpadding="0" border="0">
<tr>
<td valign="top"><table width="100%" cellspacing="0" cellpadding="0" border="0">
***************
*** 61,74 ****
<td valign="middle"><span class="gensmall">{L_POST_SUBJECT}: {postrow.POST_SUBJECT}</span></td>
<td> </td>
! <td align="right" valign="middle" nowrap="nowrap">{postrow.EDIT_IMG} {postrow.QUOTE_IMG}</td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
<tr bgcolor="{postrow.ROW_COLOR}">
- <td width="100%" height="100%" valign="top"><br /><span class="gen">{postrow.MESSAGE}</span></td>
- </tr>
- <tr bgcolor="{postrow.ROW_COLOR}">
<td align="left" valign="middle"><table cellspacing="0" cellpadding="0" border="0">
<tr>
--- 61,74 ----
<td valign="middle"><span class="gensmall">{L_POST_SUBJECT}: {postrow.POST_SUBJECT}</span></td>
<td> </td>
! <td align="right" valign="middle" nowrap="nowrap">{postrow.EDIT_IMG} {postrow.QUOTE_IMG} {postrow.DELETE_IMG}</td>
</tr>
</table></td>
</tr>
+ <tr>
+ <td width="100%" height="100%" valign="top"><hr /><span class="gen">{postrow.MESSAGE}</span></td>
+ </tr>
</table></td>
</tr>
<tr bgcolor="{postrow.ROW_COLOR}">
<td align="left" valign="middle"><table cellspacing="0" cellpadding="0" border="0">
<tr>
***************
*** 81,85 ****
<tr>
<td valign="middle">{postrow.PROFILE_IMG} {postrow.PM_IMG} {postrow.EMAIL_IMG} {postrow.WWW_IMG} {postrow.ICQ_ADD_IMG} {postrow.AIM_IMG} {postrow.YIM_IMG} {postrow.MSN_IMG}</td>
! <td align="right" valign="middle">{postrow.IP_IMG} {postrow.DELETE_IMG}</td>
</tr>
</table></td>
--- 81,85 ----
<tr>
<td valign="middle">{postrow.PROFILE_IMG} {postrow.PM_IMG} {postrow.EMAIL_IMG} {postrow.WWW_IMG} {postrow.ICQ_ADD_IMG} {postrow.AIM_IMG} {postrow.YIM_IMG} {postrow.MSN_IMG}</td>
! <td align="right">{postrow.IP_IMG}</td>
</tr>
</table></td>
Index: overall_header.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/overall_header.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** overall_header.tpl 2001/12/10 00:58:50 1.1
--- overall_header.tpl 2001/12/10 01:18:09 1.2
***************
*** 21,25 ****
TD.row2 {background-color:{T_TD_COLOR2}}
! SPAN.title {font-family:{T_FONTFACE2};font-size:36pt}
SPAN.cattitle {font-family:{T_FONTFACE1};font-size:12pt;font-weight:bold}
SPAN.gen {font-family:{T_FONTFACE1};font-size:10pt}
--- 21,25 ----
TD.row2 {background-color:{T_TD_COLOR2}}
! SPAN.title {font-family:{T_FONTFACE2};font-size:26pt}
SPAN.cattitle {font-family:{T_FONTFACE1};font-size:12pt;font-weight:bold}
SPAN.gen {font-family:{T_FONTFACE1};font-size:10pt}
***************
*** 58,62 ****
<tr>
<td><span class="title"><a href="{U_INDEX}"><img src="templates/Euclid/images/logo_phpBB.gif" border="0" alt="" title="" /></a></span></td>
! <td width="100%" align="center" valign="top"><br /><span class="cattitle"><b>{SITENAME}</b></span><br /><br /><span class="gen">{SITE_DESCRIPTION}</span></td>
</tr>
</table></td>
--- 58,62 ----
<tr>
<td><span class="title"><a href="{U_INDEX}"><img src="templates/Euclid/images/logo_phpBB.gif" border="0" alt="" title="" /></a></span></td>
! <td width="100%" align="center" valign="top"><span class="title"><b>{SITENAME}</b></span><br /><span class="gen">{SITE_DESCRIPTION}</span></td>
</tr>
</table></td>
Index: index_body.tpl
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/templates/Euclid/index_body.tpl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** index_body.tpl 2001/12/10 00:58:50 1.1
--- index_body.tpl 2001/12/10 01:18:09 1.2
***************
*** 47,51 ****
<tr>
<td class="row1" width="7%" align="center" valign="middle"><img src="templates/Euclid/images/whosonline.gif" alt="{L_WHO_IS_ONLINE}" /></td>
! <td class="row2" colspan="4" align="left"><span class="gensmall">{TOTAL_USERS_ONLINE}</span><br /><span class="gen">{LOGGED_IN_USER_LIST}</span></td>
</tr>
</table></td>
--- 47,51 ----
<tr>
<td class="row1" width="7%" align="center" valign="middle"><img src="templates/Euclid/images/whosonline.gif" alt="{L_WHO_IS_ONLINE}" /></td>
! <td class="row2" colspan="4" align="left"><span class="gensmall">{TOTAL_USERS_ONLINE}</span><br /><span class="gensmall">{LOGGED_IN_USER_LIST}</span></td>
</tr>
</table></td>
|
|
From: Paul S. O. <ps...@us...> - 2001-12-10 01:03:22
|
Update of /cvsroot/phpbb/phpBB2/templates/Euclid
In directory usw-pr-cvs1:/tmp/cvs-serv14832
Added Files:
ie_form_elements.css
Log Message:
A new name for PSO ...
--- NEW FILE ---
INPUT.outsidetable {border:solid 1px;}
INPUT.mainoptiontable {border:groove 2px;font-weight:bold}
INPUT.liteoptiontable {border:groove 2px;}
|
|
From: Paul S. O. <ps...@us...> - 2001-12-10 01:02:46
|
Update of /cvsroot/phpbb/phpBB2/templates/Euclid/images/voting In directory usw-pr-cvs1:/tmp/cvs-serv14627 Added Files: bar_1.gif bar_2.gif bar_3.gif bar_4.gif bar_5.gif index.htm Log Message: A new name for PSO ... --- NEW FILE --- GIF89a --- NEW FILE --- GIF89a --- NEW FILE --- GIF89a --- NEW FILE --- GIF89a --- NEW FILE --- GIF89a --- NEW FILE --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> |
Update of /cvsroot/phpbb/phpBB2/templates/Euclid/images
In directory usw-pr-cvs1:/tmp/cvs-serv14436
Added Files:
icon_aim.gif icon_delete.gif icon_edit.gif icon_email.gif
icon_icq_add.gif icon_ip.gif icon_latest_reply.gif
icon_minipost.gif icon_msnm.gif icon_newest_reply.gif
icon_pm.gif icon_profile.gif icon_quote.gif icon_search.gif
icon_www.gif icon_yim.gif logo_phpBB.gif logo_phpBB_med.gif
mailbox.gif msg_draft.gif msg_inbox.gif msg_outbox.gif
msg_savebox.gif msg_sentbox.gif post-edit.gif post-locked.gif
post-new.gif post-quote.gif post-reply.gif
topic-announce-new.gif topic-announce.gif topic-hot-new.gif
topic-hot.gif topic-lock-new.gif topic-lock.gif topic-new.gif
topic-sticky-new.gif topic-sticky.gif topic.gif whosonline.gif
index.htm
Log Message:
A new name for PSO ...
--- NEW FILE ---
GIF89aF
w ¨@a»|'Xp«¶ïàÂóàÛ #÷y2^
4dØ
L0p öìßÀÑJ0¼8ñãÆ·[׳gP{xäØ_7îõC $Ü|ÿ}¼øóäÁÈÀCõð3(
BÐpÈa ø¡:
--- NEW FILE ---
GIF89aF
dÚ@a)Ó¥M¡JuJõ©Ó¨U³fJ!éZÃK¶¬M¯ $DA-[
--- NEW FILE ---
GIF89aF
dÚ@a)Ó¥M¡JuJõ©Ó¨U³fJ!éZÃK¶¬M¯ $DA-[ o×¶ ®]
--- NEW FILE ---
GIF89aF
#`
.s
¦^¡×`z8ÞHb(¢hbv
)dDÁLf AI>
--- NEW FILE ---
GIF89aF
PªLYÂfXÐ`M5oêÌÉçÍ=þ*´(ÑdÚ\À`)Ó¥M¡JuJõ©Ó¨U³fÊ iZÃK¶¬M¯$X@-[o×¶û
8 ø]}á%@
--- NEW FILE ---
GIF89aF
@YA PªL9AB
^H° M5oêÌÉçÍ=þ*´(ÑdÚL `)Ó¥M¡JuJõ©Ó¨U³fª iZÃK¶¬M¯Hp@-[o×¶Kw.
--- NEW FILE ---
GIF89a
--- NEW FILE ---
GIF89a
--- NEW FILE ---
GIF89aF
!º
)£RJ(¤&)¥¤e¦
ª¦Z訨ªj©i@Á«)°Æ*무Öjë¸zÂWðêë@¿ö
ì°_k¬°¿;¬°Ìþ
B@
--- NEW FILE ---
GIF89a
--- NEW FILE ---
GIF89aF
--- NEW FILE ---
GIF89aF
Txp!B JtH±á@%2jÜȱcG%@YbDÈ"H¤\©r DÄ)3@DPâB>þJt¨Q¡AU´)Ó§N6Ø( V±^Õʫ׮`¿ëÃTdÓª]˶-Ö³$*\ `Â
Ï£g^zïè ÷À~\ú¿¼þCÄ ç'¤ ¡}ö
ü¨
--- NEW FILE ---
GIF89aF
PªLYÂfXÐ`M5oêÌÉçÍ=þ*´(ÑdÚ\À`)Ó¥M¡JuJõ©Ó¨U³fÊ iZÃK¶¬M¯$X@-[o×K»kÛÚK÷._
dG°½»v
--- NEW FILE ---
GIF89aF
Txp!B JtH±á@$2jÜȱcÇ$@IBDH!F¤\©RÄBÄ)Ä><@Â>þJt¨Q¡AU´)Ó§N2Øè V±^Õʫ׮`¿ëõÂTdÓª]˶-Ö³#(XPa
uèÝ ß½
þêõ+ðßÀäÒí«8ñÜÄgIL 0yÝÉ
@Àþ}ôäÁ×{
--- NEW FILE ---
GIF89aF
*@Â
(PªLyÂD ®èð¡M5oêÌÉçÍ=þ*´(ÑdÚìàa)Ó¥M¡JuJõ©Ó¨U³fê!iZÃK¶¬M¯*4tȰ[
Å*묱z
--- NEW FILE ---
GIF89aF
!º
--- NEW FILE ---
GIF89aÈ
*\Ȱ¡Ã#JH±¢Å3:< G*È8bçÉ(Sª\ɲ¥Ë0cÊI³¦ÍvȨà#A ÜJ´¨Ñ£HªTRAO ÚèQJµªÕ«X]úáô'©YÃKe³gõèáJ°Ø²pãÊ%¶n]="à2·¯R'+H,XGÕ=7^!&¦ÝÇví é¡ßËGØÌyÄsêôIÊçFgÎ"Jg%ä×hóÈ7̸j>=D+fð6Í;5-pFÿýZ¶sçj`äò6·u»O²¥ÎpÞ#Rþÿ¢&s»ÏÓ;ÇÃã`ɹz|L
%Ʋ¬Ë.G²é'¦º«´Oî
ÖØ¥lÚJ,ß®¸ãö[nèÚ-§ºYûñ:ï%Öa*£
z>T0Á>çX×ɬ-¼j£1qT<3Í6g}s³°¡³ I§äGh³ûÒÇê3T
ME'yqtU3ðõÐé
}Rzû±Ò~
,èàÄ׬ùùs
À<
Û¸¦§!Á
v¾A
dÿÀ ôð
xa4{Ð@`Èg©
P¢ªïT²S
v3Ю5µB¢×ôà¯SÀÂÈ`3!
PCàäü©
mþ*x7¸,ca@:xA-`#Há
ZØÂæ+
H÷
g%ʰ]&Ùû[^t!สôµ°@4V`AÇOóq\E!Ø
èÐòeØ/Jg.à¥wC3uhºÚ 9X¡ÍµºÈPÐRñ¢©àé&%J$×õY|×Gx%)ghj8é6ÚN£ù
>w¥$hèrë·ÑF"PÈ\Þ Gºþ P=p"
*¢ñ°É{8Z]2Îñ¥õ
}xQ8Uh^G§t¥èB
{G:u˪¬óê&Ð* 1*H ÆbBg ¢ð Y
ìÕ¹*Kz Mð¯sâ( {Pppº°Ïa"kаø%c@È+2I´))
T¸cCåZ¨1D V'W î:y-0{Wà³xD7à{ri¤w°'´K ²A,ðV0°=G2û¬x
{
P
èçåÏüÌ©,X Ýå®ÎåN}
íÈÞÂ\.ïðî]äîé
Úï]Oç ð.ï$þëõ¤÷.ãL²ÀþïÄðÏ©ìðé
óó:ñãÞñ>ÿóNòBßåQ@ïDO)/0+ïѼíòðVZÜ&zó20«óZí<ÏÂ2 @Í10>Ïå0Cö°Î>p ^`ÚãNÿòPõÆn¥3ßÖðxóZ y»õ¯ð]> ÞUU\ô<@ö0ôï¼00òj/ïEm?Soïqßôs?wuõx?õm
#è÷ååF>øG^øåø û³Öß?[4Ð^ßå>p
HÐ(Ãe&0¨¥¯$R`ÌõåcÅþ'SÞÂÒ%LcpÚäÙèë1FeUZ)S§^%I~§\Ñê¸BT¹1kâ(£8É\
p',"
-¸0xT¼(>¤Hp^@@¼"£H÷3Ä
â²: x
"&·`"¨ª", x1#¦`Ë¡«q Á(B
cÂ?
! ì`
1ÊB®ÜâOF
¸À° ÈÒâ{Q>ïÔ: Éèo ¸5KT5 "<"Rme²¿°.è·duAË8CI:͸³0Ô¦às§?}
TPB Õ
$}**(0,ù»N}|±ªN5 2ËQQ»
¿XQ¡}pW)=®©e+"#28W/Ã<?"ru@
.¾4ð7Î)æ¶Î;%|)&k³ÝÛn?üöÛpsÛ
+ªr V]/£¨ê9(þØÊ͸@7°Qè¨$íY¡*ê
¢*KJa4Âÿ¼bé¹b
Ç(¶"4`
),%ÂÒ^°²:W]E5 XÜJHpGKmqEÆ!»lTF2
m½q ü{
)@«1ú,Ù
/¿-h×»Ó=Iî߯/ÏýJÞg
öÐÜÖ͹»:K½Ó!|îrÝÿ¢ ¹Ðm
þPxA*äaË'w
Q Ô2 HqÕQ
HCúù~ëNu|µÒÝ] ÀBâF@+ "T 1LìauÄ)ÁOò`¸ clA¤²Áy°6!dãºÜø+11F¸Kí8Í}ÏwùHýøG@R
ÝðÙG ` ¨@lB,ÐKS@ãQÔ¨6ÐÜdåp,[%nw´êxHT¦R9`ÄVIÈH @
0©'Ìa*ÓÊ<%4ÍyNtj/å5% "ìéoÜÔ7NNSäLg?ýùÌ ôít碰AzÖÓ/Ãg>÷ùÐrþS¢$ð^S£ìY¦.¡
DMJQ¦´4êÁZ ÆÀ@^pSæT§;åiO}úS U¨C%jQzTb
--- NEW FILE ---
GIF89az
lú2ÃÎï Pö½3Vg=uÃÎÓò÷úí0MÍg·ÐÝÔÛßq ïéãçêìÛÖÑöúûéçä_ïôöAXÀÒ¿¤#I\ °·z èíïÙÙÙüõîûú÷nøûüñíéééé^ïòóÕÖÖÿÿÿcþþþýýýååååãâÝçëýüûêâÙùùù7`uùúúóóóñññã=éêê÷õó
Î3ÀCæ§Oo¦è!E.ìªPJRø¶Ô1"CS¨h¡J¥â
Yÿnâ:ôÅmbÕÍ k6NÚ¿jq
ÓyÕI\¹t½½»-cÞdï
+ak
UpÆ
k
@2¡bl±B!"ô«¡kàk!AÀB1¸ÛE%Ì[ï
v*ÜÚ&Dÿ
Hp»Ä,ÜÁB¸ê\ñ¶0ºébæBH
]ðp Æ
UèºFwüú²
Zà{1$Q'p±RHah1BwTÆ
;ø
h
è
Há5DJ\p¸¨HhýÅX!i£ÔÀÌzx ²'\w3¸^ØÎJ[@wuårÓ
½RDsüñAt,0ÿÅ
H!(0ÂÔ®
,jÙ:ß
W$ÀÇ× z$xk:á
Y¡N°(Ø ;mÁÉ+LY®T
¨pî/?h`
¥ñ!¥DÀÀÉXp®>(5°A\ð(@h
öÐÇZ` H±8Ýò
e.ðÁøÔ!5ôf3Û:× Ç@Á@A!=qÈ0ÀJ¹ÃÎ@Ì+H
f*´@èÃávª¸Tr0ÁUÕ!Dîñ®z°ÂC'0 %6*UKUÒÄR
Z½H#ÐÕݤ%
èm5«¥Hû¾;^ © Q, KUX`®jÌ¡ViÅ T
åb@ȧV@ÈÞþù®ò\lîÎp@#¨t]ä@kÐ¥gq*!eû³ZÀ觤&?5¡`bï JµªÀ{]ÿ°i3{z¢¡Æ¤°o@lcG©_FhÃLtÜÊÚ)É
Z»!ª|¶_À¤ÒLÑ/ÕÀT `
PÐ9`a
(@8
¸)
¡ú Ûé
^RÈyäyèýéÏ 7XzjH
££È 4Z£5*Ûi£¤(
T¦jJ£Ð°2`p
2Ð20©:©Z©@
--- NEW FILE ---
GIF89a
sàkÔMzÂeA# HcDÈV#a-Ð {ÔÄ
G$p¨àÚ-\ÔI Jø¤)
--- NEW FILE ---
GIF89a
&,0379>5*(
/¢
(H
-YX
hsO8Õ%4ÐSÀ#Í|Ò©$
MçPrøóO,ôDcdCÈ"Ëq;4¥CH!ßÜS!@Â
--- NEW FILE ---
GIF89a
hru
¬£#¬
×±èéè ¢à'ÉÞÂõööÒdáÏõùÞ 8ñþ¹+H¦¡ÃøEH±¢ÅY2hØ8(QHtÀqÈ%8 DÀ¥K!
--- NEW FILE ---
GIF89a
#
n6
®¯®°
©« ¿ÁÀÂ "
ÒÔÖÕÓ
Ϋsæèçéßâ
--- NEW FILE ---
GIF89a
pp..>7qqJr´´irx hll>>>
ÉÊ«}®Ã·É
--- NEW FILE ---
GIF89a
Ccc##ýýýÌÌÌyyy...ÿÿÿ!ù
%ºªi
¿I&ÉʦPe¢%qÝ
5(e9ú) Lf`À
--- NEW FILE ---
GIF89aP
Õ°`gС_õyt
¥EÓõùÕÂ
´mãÊýúV,Ô¶]
ð+·¬Y
L¸pܼ*VPlaqcÅeÏzèÀØñbËgv¹3gÌ;çuAÁÂ
,¶ÈÚ¯dÔ¦U§NM!uëÛn pÚ(ܺ-¦mv^§g¾ètðµõ Õ[ì÷íÚþPG]}6bìØk3oÁµtôðkOÿ]zîOß~??
I`Ñ
ÖHã
êfÀ)j"ÒùH£6¢xc^#ÐÈáºàbI
Ð
--- NEW FILE ---
GIF89aF
Txp!B JtH±á@02jÜȱcÇ0@ ÃEH-^¤\©ÒÅ+ZÄ)Å*V
ûþ»@/»tC
Q·òÝ
ÚÅ/>þ¼ö³+:xðÀÁþþ
Ð@ |
--- NEW FILE ---
GIF89aP
ÜÀsûVA\
EãÃ?^¼¹åÉ·àÕF
ë×A[¬´*
d«í¶Úfà-·à+î¸äËí
--- NEW FILE ---
GIF89aP
)L¬0ñ²¦L
`hØ agO>úÓ'O¢G*MÊt©Ó¦ê,Ú³@°j¥Êµ§W ^ÃKV,X²Qs-à¢
DYËÊK·®Ü´/z2ØË·íDdÐ0pØÂ+FÌØkã
#;î&è(ÁÏ.hÀ
¶gAy»YDÃ-°
(
'XÁà{Ó¥xÁì© -X[.^hAZ&øÇa(à p x`¦äN:¹¤
E0
JPÐ$lÀV
kZ%D ²l[· B® èÊ+³d«m¶D°í¶Ý~«m·Ë¾-³Þ{î²*»°
)µ t`¯
--- NEW FILE ---
GIF89aP
Txp!B JtH±¡ÅÊØÈ±£ÇcÈIr¤#a¼±²%K-b´x1³&M-Z°h±ÂÅ
@{
t ÄFMÊt©S¥I>µ*Õ«V³b0°(T¤Iûµ,X³ B U{¶Û·hNè
"d
ÐÀ% Ö %øWd)£$|wè{rç²Yè¨Tb]d¨FGXyõø!
--- NEW FILE ---
GIF89a
«?qH)³4Û×<3?FFá1pè$&ß ,á#Ù\2ã.ÔÞEk8
ó**Aô
ÅÎb?'[ªÕ²ãÁp]YviS
,R'bb.
R
--- NEW FILE ---
GIF89a
l
Z)z"W
--- NEW FILE ---
GIF89a
" &%-")$)&,"&$*(--6'0,5-92<4>"-4#07#3<)5=6A:E<K$6@$9C%=I,7B*:D*>I2<E#@M+CF,BM%CR+DR+IU,LZ1@F0CN1FQ2IT3M[;MW9MZ5Q^:R^:Y_/P`3Sd6Wi5Yg7Yi:Tc<Yd9Zj8[l9]m=Yi<]n;^p<`o>aq=fzAUbAYdC\kB^qE`nH`nDcsEfxEiyIesHfyKk{MpQl}QqLnGpKqLvKzQnRqStVyXvY{RzR}R~TzV}UZ~VS[\
Z]X¡Z¥]¡\¤_ ^¤\©]`a
ba b¢b¤e¡e¢e¤fªi£d¥aªbe©e¬fªej¦i¨i©im©nlªm¬k®d°d³i±k±k¶k³jµm°n´m²mµl¹qp®q±q´q³qµt²t²uµs¸m ¶m¡ºr ¶q ¹r¡½s¤»r¤½u¢¹u¢¼v¤ºv¥½t¨¿y¢ºz£½x¤»z¥½}¡º}¤»|¥½y¨¿s¦Àv©Â|¦Ày©ÁyªÄz¬Å}©Á}ªÄ}¬Â}¬Æ|®È}±Ë}´Ð©Á«Ä¬ÃÆÆ®È±Ê²Ì´Î±É²Ì´Î³Í¶Ñ
¹Ô¼Û¶ÑºÕ½Ú¾ÚÀÞÁÝÂÝÂáÄãÉçËëÑòÅáÇéÈäËëËçÍêÎðÐïÒóÕøÜþÔò×ùØ÷Úû¢Øö£áÿ§èÿªëÿ
qØ®aÓÖí¥·pðÐÙAðË£wêÄ¡c7=];wùNÆ h":nâ¸YFù8|ü x°½{
fRâ°Q .2u
T+b°È1SBU[nuÃV
¶mÛÂ;F¦¬¢ê
³cÊ9«7.³üPÄÕUÎ3VY4mÞZÜt`²¸©3v,Y2fÙ¼©â¢
ô¿IBquí0cÌ_kNþEFU7fÆM³ÆØ-/ÇKWH«Ì¨oÍ5kö¬6r½Æh9`f-=ê éSL¦l#£¥
áBpetÐ&È
ü>tì @¤$Tø
+P¬X!bä6pl\HF!@z
0bìø'À¿Þ!£¥Ç2\ÊC¡"ÁRzèȱcË:D²Àä2¨
D(O@
¥Âa`à¿jbté%SJ
öEÈ +ÍÙ5l϶uëî1W-r©åí²d̦9«¦»Z"ÒþÓ"ë1a½6v©Nè½Ë°\Êz;
7v¤¼J±]ÇSÆÌ²¸YyMbåù±1dÅ
o3'+õÀ*ª%ÓåK¯fͪ]c7ʶEÜÏJ/sÆÌ¶káÜÉBkÒÊ«pÎacû¶pê`i}HP&CIä(%T¹Ò0 (0Lþ"D¨D¨} #sÔñrÄñs¢Hz-Ã
(°°Â
r¸
)( WCä03ÈCD1È@ÃZDÐ4ÖV@
ü>tì @¤$Tøï +P¬X!bä6pl\H"@z
" Â#pB0ä BýÄ0È!.°à3üÄJ"dâ?
7läÂ3GλxXÄÙÀO¡nÆõRY´fàÐ1BQ¨AH{ 3Æ«é´nìøøs¬I{!SÆôk9B'ª>460_ÍAUÐ DåÒF/×iM·c4âQ4¶SJìØ±dÔÀtDLl=Fk+0fÈÜâYáù¡4°!SÌò4¾æðtþ¬µc¾cVÙ4oìð@DÞ¼uÓ.º¸qìàqA#&:Ãä-¡C<;tìÔÕëãbILs¾HiÄ A
ä(ÑpºtìÌÙtw¯
"d®²iή=Ó®[<u8\ý7æO8bÂv!&
³jìÊá 1uËqXñ:ÆÚQväløoK«½!ÛÕ¬5dæÐÍØ0UK´Âr!;¬Y4jåÄÝÐÊoÊtùv¬±hÓØ}Aù9à°ÚÚl2°ßltze·cºõêLZ3Ñ74Lb{«0fÂúVÃp@å°YÃFÍÛ¶nàÂÁ#ÃÃÔ/Ú>¡óFNÜ·råÈW/©ì#Ný6nàÀ ÔÇÊ© E @XÀ$°4EWCÂtÐ
-/¹l!4¦à?8$AÓ
dÊI
eNDÈÓÆ¦P,âÄÊÓ¯QE\èqÃL3j:*\bªâgÊFZX%kÛ5gÓ®u÷§Õ#*s¦©C&J¢®)cÆLo·9Mñ
K(&!ÂÄ1fƸ=óÃÊ9U´¼ÁìhsgcÁaÛ6g¦)¨¯ÀÂ(¢IÎ%Sf¬Û5?&á~y9$Fy66M[7ä¦Ìa¥ykL΢1Ö,\·?¸\aDfÊjF ÚÖY7nå¼òõé'MÈ
@R,¥2J.·'¸
- $1Ø4pPep È
--- NEW FILE ---
GIF89a
D D*=mF<D;np
+&$""! !&hÞFBA
t'33x344587) p6&95
|89.p 5&7>=<=>¬¬7'%-¤%6=::;;ª®'(3?4%5<9Ê:<<¬5%$0?ÆÈ˺Î>Ð$/Ô×%4É9ÛÜÞ.ÔÅ&6>»Í«Ï%%.?
2$5=;rñâv#pذ¢1dZ#Z
xpae
9
WZ¼8a3
6hÈ ¡©¤@¬
ªfüAh@Äà
p¨ £p*=uª><p;vx<{½¶s£l`®¦.Ïbp
+&$""! !&o\WëìNLïðñ
//0ë}£\*,''&(öõ',1iC*D
Èßv³Ñf²«µZQ?$àGÒ>Çó)DÄqû¹Ìh¦iDäñcAw867899/#?1105>:2$0"?00/2=:;<=71"1%? ¢<9:¥<6. - ?/0.1´¶¦¹.½¯.¡2Æ·É,?ÏÄ;µÓ>5ÊÖ?-¡ÅÞÈà-Õ×ç/Åǧ¹íã/P4>¨|ÜP¶ÂC#
)¦DÓah2/@Â`
*R¤@B
H"Ú%IP!/\Li1F$`A
rb¸pCµlàHXZÀ¡3
u&À£¹±+ÆÈÊ<;}~=>,Ò0pg1+6àf'k?
& ÷JOMþüG
x$
*¯¤³<Ç«®;;==s<\«´Ú>¿H .äv
*)&ô&%÷&(.!«I@°
Ì!ñññál5ÚlÉ`-°8XJ£z4"J¦©øh6é½7P4#-?
+**+42345595"- ).X67:282 .1#66><¯>±/62!,),![24¯°±.7µ·%)2113;:Í<>=Â1¶#*Ê03Î::Ð=-6Ô·"ÇÚÌÝàâµ+!Ø0òÜÍ;=ÑÂÄ Ç/1Û;v
--- NEW FILE ---
GIF89a
--- NEW FILE ---
GIF89a
,ØÈäÈ`"".èhR¡È¬,)ÐeÈì(@àòô 4åÀ¡
À¶Ö p
--- NEW FILE ---
GIF89a
--- NEW FILE ---
GIF89a
$P¨CB4dØ ã /jÔ@G \adG
(ZDèÒ#Ì2/N@0 ÀË
1퀡 6?
¼ 27
3µ#ª`>
--- NEW FILE ---
GIF89a
--- NEW FILE ---
GIF89a
,ØÈ1fܸ ãD
--- NEW FILE ---
GIF89a
adbq {
ÓeÑjØgÓ{Ça Ìf"À|#Ðj#Úr&ßw(àZäj$ìg#äu%ä|)íu#±®!®1°3¶-fxµG¶J¾G½\©v®p¼¦sÓÜÑ
!Ò 8âäôë
+ê0ö.ÿ"û.ò!ü$ÿ/ÿ.ö=ÿ2þ3ÿ8ôªÿ¯ÿ¼
ÿé.ÿð=ÿÂUÿÁ[æÃiôÝfÿàNÿÿgÿÿw¤¦´
µ¨¾¢¢»¢ÂÁ±ªØÅͽһӽdz£ß²ÑÔÁÐϰÌÛÌÑçÕÑðÿÿÿÅÿüÏæñÿæÿÿëõÿëûþ÷ýÿþþþ!ù
*THá@q0çIÔ§PQx1®Ê
|',[8p×@
AÂp!P,møò}Ã?~õrôD
f8f@Á^eÁ
ØãG' R lT±D6ÁN?Cñ
BG"`r!q0ÅLtF@´ÄY¡ld`
Qì@TlDF$ñtÅ
< ¥1TYP@
--- NEW FILE ---
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
</body>
</html>
|