Page MenuHomeIn-Portal Phabricator

in-bulletin
No OneTemporary

File Metadata

Created
Tue, May 20, 4:36 AM

in-bulletin

This file is larger than 256 KB, so syntax highlighting was skipped.
This document is not UTF8. It was detected as ISO-8859-1 (Latin 1) and converted to UTF8 for display.
Index: trunk/in-bulletin/constants.php
===================================================================
--- trunk/in-bulletin/constants.php (revision 12824)
+++ trunk/in-bulletin/constants.php (nonexistent)
@@ -1,11 +0,0 @@
-<?php
-
- // Private Message Statuses: 0 - Unread, 1 - Viewed', 2 - Read, 3 - Replyed, 4 - Sent
- define('PM_STATUS_UNREAD', 0);
- define('PM_STATUS_READ', 2);
-
- // Private Message Folders
- define('PM_FOLDER_INBOX', 0);
- define('PM_FOLDER_SENT', -1);
-
-?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/constants.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/searchaction.php
===================================================================
--- trunk/in-bulletin/searchaction.php (revision 12824)
+++ trunk/in-bulletin/searchaction.php (nonexistent)
@@ -1,51 +0,0 @@
-<?php
- /* action handlers for listview searches */
- switch($Action)
- {
- case "bb_censor_search": /* censorship list */
- $searchlist = trim($objSession->GetVariable("CensorSearchWord"));
- if(strlen($searchlist)>0)
- $searchlist .= ",";
- $searchlist .= $_POST["list_search"];
- $objSession->SetVariable("CensorSearchWord",$searchlist);
- $objSession->SetVariable("Page_Censorship",1);
- break;
- case "bb_censor_search_reset": /*censorship list */
- $objSession->SetVariable("CensorSearchWord","");
- $objSession->SetVariable("Page_Censorship",1);
- break;
-
- case "bb_emoticon_search": /* censorship list */
- $searchlist = trim($objSession->GetVariable("EmoticonSearchWord"));
- if(strlen($searchlist)>0)
- $searchlist .= ",";
- $searchlist .= $_POST["list_search"];
- $objSession->SetVariable("EmoticonSearchWord",$searchlist);
- $objSession->SetVariable("Page_Emoticon",1);
- break;
- case "bb_emoticon_search_reset": /*censorship list */
- $objSession->SetVariable("EmoticonSearchWord","");
- $objSession->SetVariable("Page_Emoticon",1);
- break;
-
- // Advanced View Search Actions
- case 'bb_adv_view_search':
- SaveAdvView_SearchWord('bb');
- break;
-
- case 'bb_adv_view_search_reset':
- ResetAdvView_SearchWord('bb');
- break;
-
- // Reviews
- case 'bb_review_direct_search':
- SaveAdvView_SearchWord('bb','_review_direct_search');
- break;
-
- case 'bb_review_direct_search_reset':
- ResetAdvView_SearchWord('bb','_review_direct_search');
- break;
-
-
- }
-?>
Property changes on: trunk/in-bulletin/searchaction.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install.php
===================================================================
--- trunk/in-bulletin/admin/install.php (revision 12824)
+++ trunk/in-bulletin/admin/install.php (nonexistent)
@@ -1,108 +0,0 @@
-<?php
-
- $MODULE_NAME = 'in-bulletin'; // define current module name
-
- // new startup: begin
- if (!defined('REL_PATH'))
- {
- define('REL_PATH', defined('IS_INSTALL') && IS_INSTALL ? 'admin' : 'in-bulletin/admin');
- $relation_level = count( explode('/', REL_PATH) );
- define('FULL_PATH', realpath(dirname(__FILE__) . str_repeat('/..', $relation_level) ) );
- }
- if (!defined('IS_INSTALL')) define('IS_INSTALL', 1);
- require_once FULL_PATH.'/kernel/startup.php';
- // new startup: end
-
- $application =& kApplication::Instance();
- $application->Init();
-
- require_once FULL_PATH.'/admin/install/install_lib.php';
- require_once FULL_PATH.'/kernel/include/tag-class.php';
- require_once FULL_PATH.'/'.$MODULE_NAME.'/emoticon.php';
- if( !isset($objTagList) ) $objTagList = new clsTagList();
-
- $ado =& GetADODBConnection();
-
- // create module category
- $ml_formatter =& $application->recallObject('kMultiLanguage');
- $name_field = $ml_formatter->LangFieldName('Name');
- $description_field = $ml_formatter->LangFieldName('Description');
-
- $cat =& $application->recallObject('c', null, Array('skip_autoload' => true));
- $cat->Clear();
- $cat_fields = Array($name_field => 'Forums', 'AutomaticFilename' => 1, 'Filename' => 'Forums',
- $description_field => 'Discussion Forums', 'Status' => 1, 'ParentId' => 0,
- 'CategoryTemplate' => 'inbulletin/index', 'CachedCategoryTemplate' => 'inbulletin/index');
- $cat->SetDBFieldsFromHash($cat_fields);
- $cat->Create();
-
- $cat_id = $cat->GetID();
-
- $filename = FULL_PATH.'/'.$MODULE_NAME.'/admin/install/inportal_schema.sql';
- if (file_exists($filename)) RunSchemaFile($ado, $filename);
-
- $filename = FULL_PATH.'/'.$MODULE_NAME.'/admin/install/inportal_data.sql';
- if (file_exists($filename))
- {
- $sql = file($filename);
- for ($x = 0; $x < count($sql); $x++)
- {
- $sql[$x] = str_replace('{TopicCatId}', $cat_id, $sql[$x]);
- }
- RunSQLText($ado, $sql);
-
- $sql = 'SELECT Version FROM '.TABLE_PREFIX.'Modules WHERE Name = '.$ado->qstr('In-Bulletin');
- $mod_version = $application->Conn->GetOne($sql);
-
- if (!(isset($ini_file) && $ini_file)) {
- $ini_file = FULL_PATH.'/config.php';
- $ini_vars = inst_parse_portal_ini($ini_file, true);
- }
-
- set_ini_value('Module Versions', 'In-Bulletin', $mod_version);
- save_values();
-
- $objTagList->ParseFile(FULL_PATH.'/'.$MODULE_NAME.'/parser.php');
- }
-
- linkCustomFields('KERNEL', 'c', 1); // to create ItemTemplate custom field
-
- $cat->defineFields();
- $application->removeObject('c-cdata');
- $cat->SetDBField('cust_bb_ItemTemplate', 'inbulletin/post_list');
- $cat->Update();
-
- $sql = 'DELETE FROM '.TABLE_PREFIX.'Cache WHERE (VarName = "config_files") OR (VarName LIKE "%_parsed")';
- $application->Conn->Query($sql);
-
- $objModules->Refresh();
- $objModules->SetModuleRoot('In-Bulletin', $cat_id);
-
- $inp_cat =& $objCatList->GetCategory($cat_id);
- $inp_cat->UpdateCachedPath();
- $inp_cat->UpdateACL();
-
- function bb_inst_SmileyImages()
- {
- global $MODULE_NAME;
- $objSmileys = new clsEmoticonList();
- $objImageList = new clsImageList();
- $objSmileys->Clear();
- $objSmileys->Query_Item('SELECT * FROM '.$objSmileys->SourceTable);
- foreach($objSmileys->Items as $s)
- {
- $img =& $objImageList->Add($s->Get('Name'), $s->Get('Name'), 0, 1, 1, '', '', $s->Get('Enabled'), 0, 0, 0,1);
- $img->Set('LocalPath',$MODULE_NAME.'/images/emoticons/0_'.$s->Get('EmoticonId').'.gif');
- $img->Set('ThumbPath',$MODULE_NAME.'/images/emoticons/0_'.$s->Get('EmoticonId').'.gif');
- $img->Update();
-
- $s->Set('ImageId',$img->Get('ImageId'));
- $s->Update();
- }
- }
-
- bb_inst_SmileyImages();
-
- finalizeModuleInstall($MODULE_NAME);
-
-?>
Property changes on: trunk/in-bulletin/admin/install.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.21
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/addtopic_custom.php
===================================================================
--- trunk/in-bulletin/admin/addtopic_custom.php (revision 12824)
+++ trunk/in-bulletin/admin/addtopic_custom.php (nonexistent)
@@ -1,224 +0,0 @@
-<?php
-##############################################################
-##In-portal ##
-##############################################################
-## In-portal ##
-## Intechnic Corporation ##
-## All Rights Reserved, 1998-2002 ##
-## ##
-## No portion of this code may be copied, reproduced or ##
-## otherwise redistributed without proper written ##
-## consent of Intechnic Corporation. Violation will ##
-## result in revocation of the license and support ##
-## privileges along maximum prosecution allowed by law. ##
-##############################################################
-
-// new startup: begin
-define('REL_PATH', 'in-bulletin/admin');
-$relation_level = count( explode('/', REL_PATH) );
-define('FULL_PATH', realpath(dirname(__FILE__) . str_repeat('/..', $relation_level) ) );
-require_once FULL_PATH.'/kernel/startup.php';
-// new startup: end
-
-$pathtolocal = $pathtoroot."in-bulletin/";
-require_once ($pathtoroot.$admin."/include/elements.php");
-require_once ($pathtoroot."kernel/admin/include/navmenu.php");
-require_once ($pathtolocal."admin/include/navmenu.php");
-require_once($pathtoroot.$admin."/toolbar.php");
-require_once($pathtoroot.$admin."/listview/listview.php");
-
-unset($objEditItems);
-
-$application->SetVar('bb_mode', 't');
-$objEditItems = new clsTopicList();
-$objEditItems->SourceTable = $objSession->GetEditTable("Topic");
-$objEditItems->EnablePaging = FALSE;
-
-//Multiedit init
-$en = (int)$_GET["en"];
-$objEditItems->Query_Item("SELECT * FROM ".$objEditItems->SourceTable);
-$itemcount=$objEditItems->NumItems();
-
-$c = $objEditItems->GetItemByIndex($en);
-
-if($itemcount>1)
-{
- if ($en+1 == $itemcount)
- $en_next = -1;
- else
- $en_next = $en+1;
-
- if ($en == 0)
- $en_prev = -1;
- else
- $en_prev = $en-1;
-}
-$action = "m_edit_topic";
-
-$envar = "env=" . BuildEnv() . "&en=$en";
-$saveURL = $admin."/".$objSession->GetVariable('ReturnScript');
-$section = 'in-bulletin:edittopic_custom';
-
-$title = prompt_language("la_Text_Editing")." ".prompt_language("la_Text_Topic")." '".$c->Get("TopicText")."' - ".prompt_language("la_tab_Custom");
-
-//$formaction = $_SERVER["PHP_SELF"]."?".$envar;
-
-//echo $envar."<br>\n";
-
-//Display header
-$sec = $objSections->GetSection($section);
-$objCatToolBar = new clsToolBar();
-$objCatToolBar->Add("img_save", "la_Save","","swap('img_save','toolbar/tool_select_f2.gif');", "swap('img_save', 'toolbar/tool_select.gif');","edit_submit('topic','','".$saveURL."',1);","tool_select.gif");
-$objCatToolBar->Add("img_cancel", "la_Cancel","","swap('img_cancel','toolbar/tool_cancel_f2.gif');", "swap('img_cancel', 'toolbar/tool_cancel.gif');","edit_submit('topic','','".$saveURL."',2);","tool_cancel.gif");
-if($itemcount == 1) $objCatToolBar->Add("divider");
-
-if ( isset($en_prev) || isset($en_next) )
-{
- $url = $RootUrl."in-bulletin/admin/addtopic_custom.php";
- $StatusField = "TopicEditStatus";
- $form = "topic";
- MultiEditButtons($objCatToolBar,$en_next,$en_prev,$form,$StatusField,$url,$sec->Get("OnClick"));
- $objCatToolBar->Add("divider");
-}
-
-
- $objCatToolBar->Add("viewmenubutton", "la_ToolTip_View","#","swap('viewmenubutton','toolbar/tool_view_f2.gif'); ",
- "swap('viewmenubutton', 'toolbar/tool_view.gif');",
- "ShowViewMenu();","tool_view.gif");
-
- $objCatToolBar->AddToInitScript("fwLoadMenus(); \n");
-
- int_header($objCatToolBar,NULL,$title);
-if ($objSession->GetVariable("HasChanges") == 1) {
-?>
-<table width="100%" border="0" cellspacing="0" cellpadding="0" class="toolbar">
- <tr>
- <td valign="top">
- <?php int_hint_red(admin_language("la_Warning_Save_Item")); ?>
- </td>
- </tr>
-</table>
-<?php } ?>
-<form id="topic" name="topic" action="" method=POST>
-<?php
-
- $objCustomFields = new clsCustomFieldList(3);
-
- $field_list = $objCustomFieldList->Query_CustomField("Type=3");
-
-
- $objCustomDataList->SourceTable = $objSession->GetEditTable("CustomMetaData");
- $objCustomDataList->LoadResource($c->Get("ResourceId"));
-
- for($i=0;$i<$objCustomFields->NumItems(); $i++)
- {
- $field =& $objCustomFields->GetItemRefByIndex($i);
- $fieldid = $field->Get("CustomFieldId");
-
- $CF=$field->GetAdminUI();
- if (is_object($cfield = $objCustomFields->GetItemByField("FieldName",substr($CF->name,1),FALSE))) {
- $CF->default_value = $c->GetCustomFieldValue(substr($CF->name,1), '', 0, true);
- }
-
- $f = $objCustomDataList->GetDataItem($fieldid);
- $fieldname = "CustomData[$fieldid]";
- if(is_object($f))
- {
- $val_field = "<input type=text tabindex=\"".($i+1)."\" VALUE=\"".inp_htmlize($f->Get("Value"))."\" name=\"$fieldname\">";
- $field->Set("Value", $CF->ItemFormElement());
- if ($field->Get('Prompt') != '') {
- $field->Set("FieldLabel", admin_language($field->Get('Prompt')));
- }
- else {
- $field->Set("FieldLabel", admin_language('lu_fieldcustom__'.strtolower($field->Get('FieldName'))));
- }
- $field->Set("DataId",$f->Get("CustomDataId"));
- }
- else
- {
- $val_field = "<input type=text tabindex=\"".($i+1)."\" VALUE=\"\" name=\"$fieldname\">";
- $field->Set("Value", $CF->ItemFormElement());
- if ($field->Get('Prompt') != '') {
- $field->Set("FieldLabel", admin_language($field->Get('Prompt')));
- }
- else {
- $field->Set("FieldLabel", admin_language('lu_fieldcustom__'.strtolower($field->Get('FieldName'))));
- }
- $field->Set("DataId",0);
- }
- }
- $objCustomFields->SortField = $objConfig->Get("CustomData_LV_Sortfield");;
- $objCustomFields->SortItems($objConfig->Get("CustomData_LV_Sortorder")!="desc");
-
- $objListView = new clsListView($objCatToolBar,$objCustomFields);
- $objListView->IdField = "DataId";
-
- $order = $objConfig->Get("CustomData_LV_Sortfield");
- $SortOrder=0;
- if($objConfig->Get("CustomData_LV_Sortorder")=="asc")
- $SortOrder=1;
-
- $objListView->ColumnHeaders->Add("FieldName",admin_language("la_ColHeader_FieldName"),1,0,$order,"width=\"30%\"","CustomData_LV_Sortfield","CustomData_LV_Sortorder","FieldName");
- $objListView->ColumnHeaders->Add("FieldLabel",admin_language("la_ColHeader_FieldLabel"),1,0,$order,"width=\"30%\"","CustomData_LV_Sortfield","CustomData_LV_Sortorder","FieldLabel");
- $objListView->ColumnHeaders->Add("Value",admin_language("la_ColHeader_Value"),1,0,$order,"width=\"40%\"","CustomData_LV_Sortfield","CustomData_LV_Sortorder","Value");
-
- $objListView->ColumnHeaders->SetSort($objConfig->Get("CustomData_LV_Sortfield"), $objConfig->Get("CustomData_LV_Sortorder"));
-
- $objListView->PrintToolBar = FALSE;
- $objListView->checkboxes = FALSE;
- $objListView->PageURL = "javascript:page_submit('topic','in-bulletin/admin/addtopic_custom.php',0,'{TargetPage}');";
-
- $objListView->CurrentPageVar = "Page_CustomData";
- $objListView->PerPageVar = "Perpage_CustomData";
- //$objListView->CheckboxName = "itemlist[]";
-
- for($i=0;$i<count($objCustomFields->Items);$i++)
- {
- $objListView->RowIcons[] = $imagesURL."/itemicons/icon16_custom.gif";
- }
- $objListView->PageLinks = $objListView->PrintPageLinks();
- $objListView->SliceItems();
- print $objListView->PrintList();
-?>
- <input type="hidden" name="ItemId" value="<?php echo $c->Get("ResourceId"); ?>">
- <input type="hidden" name="Action" value="m_edit_custom_data">
- <input type="hidden" name="TopicEditStatus" VALUE="0">
- <input type="hidden" name="CustomType" VALUE="3">
-</FORM>
-
-
-<FORM method="POST" NAME="save_edit" ID="save_edit">
- <input type="hidden" name="Action" value="m_edit_custom_data">
- <input type="hidden" name="TopicEditStatus" VALUE="0">
- <input type="hidden" name="CustomType" VALUE="3">
-</FORM>
-<!-- CODE FOR VIEW MENU -->
-<form ID="viewmenu" method="post" action="<?php echo $_SERVER["PHP_SELF"]."?".$envar; ?>" name="viewmenu">
-<input type="hidden" name="fieldname" value="">
-<input type="hidden" name="varvalue" value="">
-<input type="hidden" name="varvalue2" value="">
-<input type="hidden" name="Action" value="">
-</form>
-<script>
-
-function edit_submit(formname,satus_field, targetURL,save_value,env)
-{
- var env_str = '<?php echo $envar; ?>';
- if(env)
- {
- if(env.length>0)
- env_str = env;
- }
- f = document.getElementById(formname);
- if(f)
- {
- f.action = '<?php echo $rootURL; ?>' + targetURL + '?' + env_str;
- f.TopicEditStatus.value = save_value; //0= stay in temp, 1=save to perm, 2 = purge no save
- //alert(f.name+ ' is submitting to '+ f.action + ' action is:' + f.Action.value);
- f.submit();
- }
- else
- alert('Form '+formname+' was not found.');
-}
-</script>
-<?php int_footer(); ?>
Property changes on: trunk/in-bulletin/admin/addtopic_custom.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.12
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/addtopic_category.php
===================================================================
--- trunk/in-bulletin/admin/addtopic_category.php (revision 12824)
+++ trunk/in-bulletin/admin/addtopic_category.php (nonexistent)
@@ -1,233 +0,0 @@
-<?php
-##############################################################
-##In-portal ##
-##############################################################
-## In-portal ##
-## Intechnic Corporation ##
-## All Rights Reserved, 1998-2002 ##
-## ##
-## No portion of this code may be copied, reproduced or ##
-## otherwise redistributed without proper written ##
-## consent of Intechnic Corporation. Violation will ##
-## result in revocation of the license and support ##
-## privileges along maximum prosecution allowed by law. ##
-##############################################################
-
-// new startup: begin
-define('REL_PATH', 'in-bulletin/admin');
-$relation_level = count( explode('/', REL_PATH) );
-define('FULL_PATH', realpath(dirname(__FILE__) . str_repeat('/..', $relation_level) ) );
-require_once FULL_PATH.'/kernel/startup.php';
-// new startup: end
-
-$pathtolocal = $pathtoroot."in-bulletin/";
-require_once ($pathtoroot.$admin."/include/elements.php");
-require_once ($pathtoroot."kernel/admin/include/navmenu.php");
-require_once ($pathtolocal."admin/include/navmenu.php");
-require_once($pathtoroot.$admin."/toolbar.php");
-require_once($pathtoroot.$admin."/listview/listview.php");
-
-unset($objEditItems);
-
-$objEditItems = new clsTopicList();
-$objEditItems->SourceTable = $objSession->GetEditTable("Topic");
-$objEditItems->EnablePaging = FALSE;
-
-//Multiedit init
-$en = (int)$_GET["en"];
-$objEditItems->Query_Item("SELECT * FROM ".$objEditItems->SourceTable);
-$itemcount=$objEditItems->NumItems();
-$c = $objEditItems->GetItemByIndex($en);
-
-if($itemcount>1)
-{
- if ($en+1 == $itemcount)
- $en_next = -1;
- else
- $en_next = $en+1;
-
- if ($en == 0)
- $en_prev = -1;
- else
- $en_prev = $en-1;
-}
-
-$action = "bb_edit_topic";
-$envar = "env=" . BuildEnv() . "&en=$en";
-
-//Set Section
-$section = 'in-bulletin:edittopic_category';
-$formaction = $_SERVER["PHP_SELF"]."?".$envar;
-
-//Set Environment Variable
-$saveURL = $admin."/".$objSession->GetVariable('ReturnScript');
-//Display header
-$sec = $objSections->GetSection($section);
-
-$objListToolBar = new clsToolBar();
-$objListToolBar->Add("img_save", "la_Save","#","swap('img_save','toolbar/tool_select_f2.gif');", "swap('img_save', 'toolbar/tool_select.gif');","do_edit_save('save_edit_buttons','TopicEditStatus','".$saveURL."',1);","tool_select.gif");
-$objListToolBar->Add("img_cancel", "la_Cancel","#","swap('img_cancel','toolbar/tool_cancel_f2.gif');", "swap('img_cancel', 'toolbar/tool_cancel.gif');","do_edit_save('save_edit_buttons','TopicEditStatus','".$saveURL."',2);","tool_cancel.gif");
-if($itemcount == 1) $objListToolBar->Add("divider");
-
-$objListToolBar->Set("section",$section);
-$objListToolBar->Set("load_menu_func","");
-$objListToolBar->Set("CheckClass","PermChecks");
-$objListToolBar->Set("CheckForm","topic");
-
-//Display header
-$sec = $objSections->GetSection($section);
-
-if ( isset($en_prev) || isset($en_next) )
-{
- $url = $RootUrl."in-bulletin/admin/addtopic_category.php";
- $StatusField = "TopicEditStatus";
- $form = "topic";
- MultiEditButtons($objListToolBar,$en_next,$en_prev,$form,$StatusField,$url,$sec->Get("OnClick"));
- $objListToolBar->Add("divider");
-}
-
-$listImages = array();
- //$img, $alt, $link, $onMouseOver, $onMouseOut, $onClick
-
-$objListToolBar->Add("new_cat", "la_ToolTip_New_Category","#".$envar,"swap('new_cat','toolbar/tool_new_cat_f2.gif');",
- "swap('new_cat', 'toolbar/tool_new_cat.gif');",
- "OpenCatSelector('$envar&source=addarticle_category&destform=popup&destfield=CatList');",
- "tool_new_cat.gif");
-
-$objListToolBar->Add("cat_del","la_ToolTip_Delete","#", "if (PermChecks.itemChecked()) swap('cat_del','toolbar/tool_delete_f2.gif');",
- "if (PermChecks.itemChecked()) swap('cat_del', 'toolbar/tool_delete.gif');","if (PermChecks.itemChecked()) PermChecks.check_submit('addtopic_category', 'bb_cat_delete');",
- "tool_delete.gif");
-$listImages[] = "PermChecks.addImage('cat_del','$imagesURL/toolbar/tool_delete.gif','$imagesURL/toolbar/tool_delete_f3.gif',1); ";
-
-// Set Primary Category
-$objListToolBar->Add("cat_primary","la_ToolTip_SetPrimary","#", "if (PermChecks.itemChecked()) swap('cat_primary','toolbar/tool_primary_cat_f2.gif');",
- "if (PermChecks.itemChecked()) swap('cat_primary', 'toolbar/tool_primary_cat.gif');","if (PermChecks.itemChecked()) PermChecks.check_submit('addtopic_category', 'bb_primary_cat');",
- "tool_primary_cat.gif");
-
-$listImages[] = "PermChecks.addImage('cat_primary','$imagesURL/toolbar/tool_primary_cat.gif','$imagesURL/toolbar/tool_primary_cat_f3.gif',1); ";
-
-$objListToolBar->AddToInitScript($listImages);
-
-$title = prompt_language("la_Text_Editing")." ".prompt_language("la_Text_Topic")." '".$c->Get("TopicText")."' - ".prompt_language("la_tab_Categories");
-int_header($objListToolBar,NULL,$title);
-if ($objSession->GetVariable("HasChanges") == 1) {
-?>
-<table width="100%" border="0" cellspacing="0" cellpadding="0" class="toolbar">
- <tr>
- <td valign="top">
- <?php int_hint_red(admin_language("la_Warning_Save_Item")); ?>
- </td>
- </tr>
-</table>
-<?php } ?>
-<form name="topic" id="topic" action="" method=POST>
-<?php
- $objCats = new clsCatList();
- $objCatList = new clsCatList();
- //$objCats->UpdateMissingCacheData();
- $CatList = $c->CategoryMemberList($objSession->GetEditTable("CategoryItems"));
- $Primary = $c->GetPrimaryCategory($objSession->GetEditTable("CategoryItems"));
- $catlist = array();
- if(strlen($CatList))
- {
- $cats = explode(",",$CatList);
- $per_page = $objConfig->Get('Perpage_LV_Catlist');
-
- $current_page = GetVar('lpn') ? GetVar('lpn') : $objSession->GetVariable('Page_LV_CatList');
- $start_from = $current_page ? ($current_page - 1) * $per_page : 0;
- if( !getArrayValue($cats, $start_from) )
- {
- $current_page = 1;
- $start_from = 0;
- $objSession->SetVariable('Page_LV_CatList', $current_page);
- }
-
- for($i=$start_from; $i < $start_from+$per_page; $i++)
- {
- if( getArrayValue($cats, $i) === false ) break;
-
- $cat =& $objCatList->GetItem($cats[$i]);
- $Status = $cat->get("Status");
- $catlist[$i] = $cat->Get("CachedNavbar");
- if(!strlen($catlist[$i]))
- {
- $cat->UpdateCachedPath();
- $catlist[$i] = $cat->Get("CachedNavbar");
- }
-
- if(strlen($catlist[$i]))
- {
- $catlist[$i] = prompt_language($objConfig->Get("Root_Name"))."&gt;".$catlist[$i];
- }
- else
- {
- $catlist[$i] = prompt_language($objConfig->Get("Root_Name"));
- $Status=1;
- }
- if($cats[$i]==$Primary)
- {
- $catlist[$i] .= "(".prompt_language("la_Text_Primary").")";
- }
- $attr = array();
- $attr["CachedNavbar"] = $catlist[$i];
- $attr["CategoryId"]=$cats[$i];
- $attr["Status"]=$Status;
- $objCats->AddItemFromArray($attr);
- }
- }
-
- $objListView = new clsListView($objListToolBar,$objCats);
-
- $objListView->IdField = "CategoryId";
-
- $order = $objConfig->Get("Category_LV_Sortfield");
- $SortOrder=0;
- if($objConfig->Get("Category_LV_Sortorder")=="asc")
- $SortOrder=1;
-
- $objListView->ColumnHeaders->Add("CachedNavbar",prompt_language("la_Text_Category"),1,0,$order,"width=\"30%\"","Category_LV_Sortfield","Category_LV_Sortorder","CachedNavbar");
-
- $objListView->ColumnHeaders->SetSort($objConfig->Get("Category_LV_Sortfield"), $objConfig->Get("Category_LV_Sortorder"));
-
- $objListView->PrintToolBar = FALSE;
- $objListView->checkboxes = TRUE;
-
- $objListView->CurrentPageVar = "Page_LV_CatList";
- $objListView->PerPageVar = "Perpage_LV_Catlist";
- $objListView->CheckboxName = "itemlist[]";
- $objListView->TotalItemCount = count($cats);
-
- for($i=0;$i<count($objCats->Items);$i++)
- {
- $objListView->RowIcons[] = $objCats->Items[$i]->StatusIcon();
- }
- $objListView->SliceItems();
- print $objListView->PrintList();
-?>
-<input type="hidden" name="Action" value="">
-<INPUT TYPE="hidden" NAME="ResourceId" VALUE = "<?php echo $c->Get("ResourceId"); ?>">
-</FORM>
-<FORM NAME="popup" ID="popup" METHOD="POST" ACTION="<?php echo $formaction; ?>">
- <INPUT TYPE="hidden" NAME="CatList">
- <INPUT TYPE="hidden" NAME="ResourceId" VALUE="<?php echo $c->Get("ResourceId"); ?>">
- <INPUT TYPE="hidden" NAME="Action" value="bb_add_category">
-</FORM>
-
-<!-- CODE FOR VIEW MENU -->
-<form ID="viewmenu" method="post" action="<?php echo $_SERVER["PHP_SELF"]."?".$envar; ?>" name="viewmenu">
-<input type="hidden" name="fieldname" value="">
-<input type="hidden" name="varvalue" value="">
-<input type="hidden" name="varvalue2" value="">
-<input type="hidden" name="Action" value="">
-</form>
-<FORM NAME="save_edit_buttons" ID="save_edit_buttons" method="POST" ACTION="">
- <input type=hidden NAME="Action" VALUE="save_topic_edit">
- <input type="hidden" name="TopicEditStatus" VALUE="0">
-</FORM>
-<script src="<?php echo $adminURL; ?>/listview/listview.js"></script>
-<script>
-initSelectiorContainers();
-<?php echo $objListToolBar->Get("CheckClass").".setImages();"; ?>
-</script>
-<!-- END CODE-->
-<?php int_footer(); ?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/addtopic_category.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.12
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/templates/topic_element.tpl
===================================================================
--- trunk/in-bulletin/admin/templates/topic_element.tpl (revision 12824)
+++ trunk/in-bulletin/admin/templates/topic_element.tpl (nonexistent)
@@ -1,16 +0,0 @@
-<tr <inp:topic _Field="admin_cell_back" />>
- <TD><div inportalType="topics"><input type=checkbox value="<inp:topic_id/>" name=topiclist[]>
- <IMG src="<inp:topic _Field="admin_icon" />" align="absMiddle">
- <span class="priority"><sup><inp:topic _field="priority"/></sup></span>
- <a href="<inp:topic _field="link" _Template="inbulletin/post_list.tpl" />" target="_blank" class="link"><inp:topic _Field="text" /></a>
- <span class="topic_pick"><inp:topic _Field="pick" /></span>
- <span class="topic_pop"><inp:topic _Field="pop" /></span>
- <span class="topic_new"><inp:topic _Field="new" /></span>
- <span class="topic_hot"><inp:topic _Field="hot" /></span>
- </div>
- </TD>
- <TD width="200"><inp:topic _Field="postedby" /></TD>
- <TD align="center" width="120"><inp:topic _Field="admin_modified" /></TD>
- <TD align="center" width="80"><inp:topic _Field="replies" /></TD>
- <TD align="center" width="80"><inp:topic _Field="views" /></TD>
-</tr>
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/templates/topic_element.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/templates/topic_element_av.tpl
===================================================================
--- trunk/in-bulletin/admin/templates/topic_element_av.tpl (revision 12824)
+++ trunk/in-bulletin/admin/templates/topic_element_av.tpl (nonexistent)
@@ -1,18 +0,0 @@
-<tr <inp:topic _Field="admin_cell_back" />>
- <TD><div inportalType="topics"><input type=checkbox value="<inp:topic_id/>" name=topiclist[]>
- <IMG src="<inp:topic _Field="admin_icon" />" align="absMiddle">
- <span class="priority"><sup><inp:topic _field="priority"/></sup></span>
- <a href="<inp:topic _field="link" _Template="inbulletin/post_list.tpl" />" target="_blank" class="link"><inp:topic _Field="text" /></a>
- <span class="topic_pick"><inp:topic _Field="pick" /></span>
- <span class="topic_pop"><inp:topic _Field="pop" /></span>
- <span class="topic_new"><inp:topic _Field="new" /></span>
- <span class="topic_hot"><inp:topic _Field="hot" /></span>
- <br>
- <span class="topic_detail"><inp:m_language _Phrase="la_category" />: <a href="<inp:topic _Field="PrimaryCategoryLink" />"><inp:topic _field="PrimaryCategory"/></a> </span><br>
- </div>
- </TD>
- <TD width="200"><inp:topic _Field="postedby" /></TD>
- <TD align="center" width="120"><inp:topic _Field="admin_modified" /></TD>
- <TD align="center" width="80"><inp:topic _Field="replies" /></TD>
- <TD align="center" width="80"><inp:topic _Field="views" /></TD>
-</tr>
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/templates/topic_element_av.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/templates/topic_select_element.tpl
===================================================================
--- trunk/in-bulletin/admin/templates/topic_select_element.tpl (revision 12824)
+++ trunk/in-bulletin/admin/templates/topic_select_element.tpl (nonexistent)
@@ -1,8 +0,0 @@
-<tr <inp:topic_admin_cell_back/>>
- <TD><div inportalType="topics" ><input type=checkbox value="<inp:topic_resourceid/>" name="topiclist[]" ItemType="3"> <IMG src="<inp:topic_admin_icon/>">
- <a href="<inp:topic_link/>" target="_blank" class="link"><inp:topic_text/></a></div></TD>
- <TD width="20%"><inp:topic_poster/></TD>
- <TD><inp:topic_admin_modified/></TD>
- <TD><inp:topic_replies/></TD>
- <TD><inp:topic_views/></TD>
-</tr>
Property changes on: trunk/in-bulletin/admin/templates/topic_select_element.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/templates/post_element.tpl
===================================================================
--- trunk/in-bulletin/admin/templates/post_element.tpl (revision 12824)
+++ trunk/in-bulletin/admin/templates/post_element.tpl (nonexistent)
@@ -1,16 +0,0 @@
-<tr <?php int_table_color(); ?>>
-<td valign="top" ID="<inp:news_resourceid/>">
-<input type="checkbox" name="newslist[]" value="<inp:news_id/>" onclick="if (this.checked) {usenews_add(this.parentElement);} else {usenews_sub(this.parentElement);}">
-<a href="<inp:news_link/>" target="_blank" class="link"><inp:news_title/></a>
-<span class="pick"></span>
-<span class="top"></span>
-<span class="pop"></span>
-<span class="new"></span><br>
-<span class="link_desc"><inp:news_excerpt/></span>
-<SPAN class="error2"></SPAN>
-
-<br>
-<span class="link_detail"> (Added: <inp:news_date/> Hits: <inp:news_hits/> Rating: <inp:news_rating/> Votes: <inp:news_votes/> Author: <inp:news_author/>) </span>
-<br>
-</td>
-</tr>
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/templates/post_element.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/templates/topic_review_element.tpl
===================================================================
--- trunk/in-bulletin/admin/templates/topic_review_element.tpl (revision 12824)
+++ trunk/in-bulletin/admin/templates/topic_review_element.tpl (nonexistent)
@@ -1,13 +0,0 @@
-<td>
- <div inportalType="topic_reviews">
- <input type=checkbox value="<inp:review _field="id" />" name=reviewlist[]>
- <img src="<inp:review _field="admin_icon"/>">
- <span class="priority"><sup><inp:review _field="priority"/></sup></span>
- <inp:review _field="text" _CutFirst="100"/>
- <div style="padding-left:3px">
- <span class="topic_detail"><inp:m_language _Phrase="la_topic_reviewed" />: <a href="<inp:review _Field="ItemLink" />"><inp:review _field="ItemName" /></a> </span><br>
- <span class="topic_detail">(<inp:m_language _Phrase="la_added" />: <inp:review _field="date"/> / <inp:m_language _Phrase="la_reviewer" />: <inp:review _field="reviewer"/> )</span>
- </div>
- <br>
- </div>
-</td>
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/templates/topic_review_element.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/import/phpbb_import.php
===================================================================
--- trunk/in-bulletin/admin/import/phpbb_import.php (revision 12824)
+++ trunk/in-bulletin/admin/import/phpbb_import.php (nonexistent)
@@ -1,582 +0,0 @@
-<?php
-
- // How much records of sprified step will
- // be processes before refresh occurs
-
- define('GROUPS_PERPAGE', 100);
- define('USERS_PERPAGE', 200);
- define('USER_BANLIST_PERPAGE', 30);
- define('CATS_PERPAGE', 10);
- define('FORUMS_PERPAGE', 40);
- define('FORUMS_PERMS_PERPAGE', 40);
- define('TOPICS_PERPAGE', 100);
- define('POSTS_PERPAGE', 100);
-
- // new startup: begin
- define('REL_PATH', 'in-bulletin/admin/import');
- $relation_level = count( explode('/', REL_PATH) );
- define('FULL_PATH', realpath(dirname(__FILE__) . str_repeat('/..', $relation_level) ) );
- require_once FULL_PATH.'/kernel/startup.php';
- // new startup: end
-
- //admin only util
- $pathtolocal = $pathtoroot.'kernel/';
- require_once ($pathtoroot.'admin/include/elements.php');
- require_once ($pathtoroot.'kernel/admin/include/navmenu.php');
- require_once ($pathtolocal.'admin/include/navmenu.php');
- require_once ($pathtoroot.'admin/toolbar.php');
-
- require_once $pathtoroot.'admin/import/import_funcs.php';
-
- //Set Section
- $section = 'in-portal:main_import';
- //$sec = $objSections->GetSection($section);
-
- //Set Environment Variable
- $envar = 'env='.BuildEnv();
-
- $ImportTable = $objSession->GetSessionTable('BBImport','');
- $sql_type = $objSession->GetVariable("import_sql_type");
- $db_server = $objSession->GetVariable("import_server");
- $db_name = $objSession->GetVariable("import_db");
- $db_user = $objSession->GetVariable("import_user");
- $db_pass = $objSession->GetVariable("import_pass");
-
- // made connection to source database
- $db =& ADONewConnection($sql_type);
- $db->NConnect($db_server, $db_user, $db_pass, $db_name);
-
- // get connection to destination database
- $dst_db =&GetADODBConnection();
-
- // if connection error occured, then say this
- if(!$db)
- {
- echo "Database connection failed. DB Type: $sql_type, DB Server: $inlink_server, DB User: $inlink_user, DB Name: $inlink_db"; //fatal;
- echo $db->ErrorMsg();
- exit;
- }
-
- // global vars
- if( GetVar('bb_prefix') ) $objSession->SetVariable('import_table_prefix', GetVar('bb_prefix') );
- $bb_prefix = $objSession->GetVariable('import_table_prefix');
-
- // If script 1st run -> create temporary
- // import table in destination database
-
- // define import steps
- $import_steps = Array();
- $import_steps['groups'] = Array('id' => 'groups', 'caption' => 'Groups'); // groups
- $import_steps['groups']['count_sql'] = 'SELECT COUNT(DISTINCT g.group_id) FROM '.$bb_prefix.'groups g, '.$bb_prefix.'auth_access aa WHERE (g.group_id = aa.group_id)';
- $import_steps['users'] = Array('id' => 'users', 'caption' => 'Users, avatars'); // users + avatars
- $import_steps['users']['count_sql'] = 'SELECT COUNT(*) FROM '.$bb_prefix.'users';
- $import_steps['user_banlist'] = Array('id' => 'user_banlist', 'caption' => 'Users Banrules'); // banned users
- $import_steps['user_banlist']['count_sql'] = 'SELECT COUNT(*) FROM '.$bb_prefix.'banlist';
- $import_steps['cats'] = Array('id' => 'cats', 'caption' => 'Categories');
- $import_steps['cats']['count_sql'] = 'SELECT COUNT(*) FROM '.$bb_prefix.'categories';
- $import_steps['forums'] = Array('id' => 'forums', 'caption' => 'Forums');
- $import_steps['forums']['count_sql'] = 'SELECT COUNT(*) FROM '.$bb_prefix.'forums';
- $import_steps['forums_perms'] = Array('id' => 'forums_perms', 'caption' => 'Forum Permissions');
- $import_steps['forums_perms']['count_sql'] = 'SELECT COUNT(*) FROM '.$bb_prefix.'auth_access';
- $import_steps['topics'] = Array('id' => 'topics', 'caption' => 'Topics');
- $import_steps['topics']['count_sql'] = 'SELECT COUNT(*) FROM '.$bb_prefix.'topics';
- $import_steps['posts'] = Array('id' => 'posts', 'caption' => 'Posts');
- $import_steps['posts']['count_sql'] = 'SELECT COUNT(*) FROM '.$bb_prefix.'posts';
-
- $StepIndex = Array( 1 => 'groups', 2 => 'users', 3 => 'user_banlist', 4 => 'cats', 5 => 'forums', 6 => 'forums_perms',
- 7 => 'topics', 8 => 'posts');
-
- if( GetVar('Action') == 'Import' )
- {
-
- $sql = 'CREATE TABLE '.$ImportTable.'(
- bbi_id int(11) unsigned NOT NULL auto_increment,
- bbi_step varchar(20) NOT NULL default \'\',
- bbi_cache longtext NOT NULL,
- bbi_percent tinyint(3) NOT NULL default \'0\',
- bbi_details varchar(100) NOT NULL default \'\',
- bbi_current tinyint(1) NOT NULL default \'0\',
- bbi_rec_no int(11) unsigned NOT NULL default \'0\',
- bbi_recs_count int(11) unsigned NOT NULL default \'0\',
- PRIMARY KEY (bbi_id)
- )';
- $dst_db->Execute($sql);
-
- // set initial info
- $sql = 'INSERT INTO '.$ImportTable.'(bbi_step,bbi_cache,bbi_recs_count) VALUES(\'%s\',\''.serialize( Array() ).'\',%s)';
- foreach ($import_steps as $is_name => $is_data)
- {
- $recs_count = $db->GetOne( $is_data['count_sql'] );
- $tmp = sprintf($sql, $is_name, $recs_count);
- $dst_db->Execute($tmp);
- }
- // set 1st step
- $dst_db->Execute('UPDATE '.$ImportTable.' SET bbi_current = 1 WHERE bbi_step = \''.$StepIndex[1].'\'');
- $objSession->SetVariable('import_begins', GetMC() );
- }
-
-
- // update import step info with current information
- $sql = 'SELECT * FROM '.$ImportTable;
- $rs =& $dst_db->Execute($sql);
-
- $current_step = Array(); // current step info
- $cache = Array();
-
- while(!$rs->EOF)
- {
- $rec =& $rs->fields;
-
- $is =& $import_steps[ $rec['bbi_step'] ];
- $is['percent'] = $rec['bbi_percent'];
- $is['details'] = $rec['bbi_details'];
- $is['rec_no'] = $rec['bbi_rec_no'];
- $is['recs_count'] = $rec['bbi_recs_count'];
- $is['current'] = $rec['bbi_current'];
- $tmp = unserialize( $rec['bbi_cache'] );
- $cache[ $rec['bbi_step'] ] = $tmp;
-
- if( $rec['bbi_current'] == 1 )
- {
- $is['perpage'] = constant( strtoupper($is['id']).'_PERPAGE' );
- $current_step = $is;
- $ImportFunction = 'import_'.$is['id'];
- }
- $rs->MoveNext();
- }
-
- // Error Reporting
- if( IsDebugMode() )
- {
- error_reporting(E_ALL);
- ini_set('display_errors', 1);
- }
-
- // draw import screen
- DrawScreen($import_steps);
-
- // category/forum specific
- $import_category_id = $objSession->GetVariable('import_category_id');
-
-
- // user specific
- define('DT_USER', 6); // user data type
- $user_regular = $objSession->GetVariable("user_regular_values");
- $user_group =& new clsPortalGroup($user_regular);
-
- $perm_mappings = Array( 'CATEGORY.VIEW' => 'auth_view', 'TOPIC.VIEW' => 'auth_read',
- 'TOPIC.REPLY.VIEW' => 'auth_read', 'TOPIC.ADD' => 'auth_post',
- 'TOPIC.REPLY.ADD' => 'auth_reply', 'TOPIC.OWNER.MODIFY' => 'auth_edit',
- 'TOPIC.REPLY.OWNER.MODIFY' => 'auth_edit', 'TOPIC.OWNER.DELETE' => 'auth_delete',
- 'TOPIC.REPLY.OWNER.DELETE' => 'auth_delete');
-
- // begin processing
- $import_steps[ $current_step['id'] ]['rec_no'] += $ImportFunction(); // based on step name
- $current_step['rec_no'] = $import_steps[ $current_step['id'] ]['rec_no'];
- StepRedirect($current_step);
- // end processing
-
-
- function import_groups()
- {
- global $cache, $current_step, $objGroups, $db, $bb_prefix, $import_steps;
-
- // import administrative & personal groups
- $sql = 'SELECT DISTINCT g.group_id, g.group_name, g.group_single_user, g.group_description
- FROM '.$bb_prefix.'groups g, '.$bb_prefix.'auth_access aa
- WHERE (g.group_id = aa.group_id)
- LIMIT '.$current_step['rec_no'].','.$current_step['perpage'];
-
- $rs = $db->Execute($sql);
- $recs_count = $rs->RecordCount();
- while(!$rs->EOF)
- {
- $rec =& $rs->fields;
-
- $gprefix = ($rec['group_single_user'] == 1) ? '_' : 'phpbb_';
- $group = $objGroups->Add_Group($gprefix.$rec['group_name'], $rec['group_description'], 0);
- $group_id = $group->UniqueId();
-
- // add created group to cache
- $cache['groups'][ $rec['group_id'] ] = Array('new_id' => $group_id );
- unset($group);
-
- $rs->MoveNext();
- }
- return $recs_count;
- }
-
-
-
- function import_users()
- {
- global $cache, $current_step, $objUsers, $objGroups, $db, $bb_prefix, $import_steps, $user_regular, $user_group;
-
- $pesistant_vars = Array('my_signature' => 'user_sig', 'bb_posts' => 'user_posts',
- 'smileys' => 'user_allowsmile', 'bbcode' => 'user_allowbbcode',
- 'show_sig' => 'user_attachsig');
-
- $uf_defs = Array( 'user_msn' => 'user_msnm', 'user_icq' => 'user_icq', 'user_aim' => 'user_aim',
- 'user_yahoo' => 'user_yim', 'user_website' => 'user_website',
- 'user_occupation' => 'user_occ', 'user_interests' => 'user_interests',
- 'user_from' => 'user_from');
-
- if( $current_step['rec_no'] < $current_step['perpage'])
- {
- // create custom fields for in-bulletin users (and show them on general tab)
- $user_fields = new clsCustomFieldList(DT_USER);
- $user_fields_created = $user_fields->GetFieldNames();
-
- $application =& kApplication::Instance();
- $ml_helper =& $application->recallObject('kMultiLanguageHelper');
-
- foreach ($uf_defs as $pending_uf => $no_in_use) {
- if (in_array($pending_uf, $user_fields_created)) continue;
- $user_fields->AddField(DT_USER, $pending_uf, '', 1, 'la_bb', 'lu_fieldcustom__'.$pending_uf, 'text', '');
- }
-
- $ml_helper->createFields('u-cdata', true);
- }
-
- // get users
- //$cache['users'] = Array();
- $sql = 'SELECT * FROM '.$bb_prefix.'users ORDER BY user_id
- LIMIT '.$current_step['rec_no'].','.$current_step['perpage'];
- $rs = $db->Execute($sql);
- $recs_count = $rs->RecordCount();
-
- // Create Anonymous User
- $user =& $objUsers->Add_User('Guest', '', 'anonymous@user.com', adodb_mktime(), '', '', 1, '', '', '', '', '', '');
- $cache['users'][ -1 ] = Array('new_id' => $user->UniqueId(), 'username' => 'Guest');
- $cache['users'][ 0 ] = Array('new_id' => $user->UniqueId(), 'username' => 'Guest');
- unset($user);
-
- $missing_pers_groups = Array();
- while(!$rs->EOF)
- {
- $rec =& $rs->fields;
- /*$address = explode(',', $rec['user_from']); // state, country
- foreach($address as $id => $addr_part) $address[$id] = trim($addr_part);
- $user_state = isset( $address[0] ) ? $address[0] : '';
- $user_country = isset( $address[1] ) ? $address[1] : '';*/
-
- $user =& $objUsers->Add_User($rec['username'], $rec['user_password'], $rec['user_email'], $rec['user_regdate'],
- '', '', $rec['user_active'], '', '', '', '', '', '');
-
- $user_id = $user->UniqueId();
-
- // set user pesistant variables (why not custom fields)
- foreach($pesistant_vars as $dst_field => $src_field)
- {
- SetPersistantVariable($user_id, $dst_field, $rec[$src_field]);
- }
- SetPersistantVariable($user_id, 'bb_signatures', '1'); // show other signatures
-
- // set user custom fields
- foreach($uf_defs as $dst_field => $src_field)
- $user->SetCustomField($dst_field, $rec[$src_field]);
- $user->SaveCustomFields();
-
- // add user to user_group specified (in import step 3)
- $user_group->AddUser($user_id, 1,false); // make it primary
- // add user to it's personal group
- $user_pers_group = $objGroups->GetItemByField('Name','_'.$rec['username']);
- if( is_object($user_pers_group) )
- $user_pers_group->AddUser($user_id, 0,false); // make it supplimentary
- else
- $missing_pers_groups[] = $rec['username'];
- unset($user_pers_group);
-
- // add created user to cache
- $cache['users'][ $rec['user_id'] ] = Array('new_id' => $user_id, 'username' => $rec['username']);
- unset($user);
- $rs->MoveNext();
- }
- return $recs_count;
- }
-
- function import_user_banlist()
- {
- global $cache, $current_step, $objBanList, $db, $dst_db, $bb_prefix, $import_steps;
-
- // get ban rules
- $sql = 'SELECT * FROM '.$bb_prefix.'banlist ORDER BY ban_id
- LIMIT '.$current_step['rec_no'].','.$current_step['perpage'];
-
- $rs = $db->Execute($sql);
- $recs_count = $rs->RecordCount();
- $banrule_priority = $dst_db->GetOne('SELECT MAX(Priority) FROM '.GetTablePrefix().'BanRules');
-
- while(!$rs->EOF)
- {
- $rec =& $rs->fields;
- if( $rec['ban_userid'] )
- {
- $tmp =& $objBanList->AddRule(DT_USER, 0, 'Login',1, $cache['users'][ $rec['ban_userid'] ]['username'], $banrule_priority, 1);
- unset($tmp);
- $banrule_priority++;
- }
-
- if( $rec['ban_ip'] )
- {
- $tmp =& $objBanList->AddRule(DT_USER, 0, 'ip',1, DecodeIP( $rec['ban_ip'] ), $banrule_priority, 1);
- unset($tmp);
- $banrule_priority++;
- }
-
- if( $rec['ban_email'] )
- {
- $tmp =& $objBanList->AddRule(DT_USER, 0, 'Email',1, $rec['ban_email'], $banrule_priority, 1);
- unset($tmp);
- $banrule_priority++;
- }
- $rs->MoveNext();
- }
- return $recs_count;
- }
-
-
- function import_cats()
- {
- global $cache, $current_step, $objCatList, $db, $bb_prefix, $import_steps, $import_category_id;
-
- // get categories
- //$cache['cats'] = Array();
- $cache['all_cats'] = Array();
-
- $sql = 'SELECT * FROM '.$bb_prefix.'categories ORDER BY cat_order
- LIMIT '.$current_step['rec_no'].','.$current_step['perpage'];
-
- $rs = $db->Execute($sql);
- $recs_count = $rs->RecordCount();
-
- while(!$rs->EOF)
- {
- $rec =& $rs->fields;
- $NewOrder = $rec['cat_order'] == 1 ? 0 : $rec['cat_order'] / -10;
- $fields_hash = Array( 'ParentId' => $import_category_id,
- 'Name' => $rec['cat_title'],
- 'Description' => $rec['cat_title'],
- 'CreatedOn' => adodb_mktime(),
- 'EditorsPick' => 0,
- 'Status' => 1,
- 'HotItem' => 2,
- 'NewItem' => 2,
- 'PopItem' => 2,
- 'Priority' => $NewOrder,
- 'MetaKeywords' => '',
- 'MetaDescription' => '',
- 'AutomaticFilename' => 1,
- 'Filename' => '',
- 'CategoryTemplate' => '',
- 'ItemTemplate' => '',
- );
- $category =& $objCatList->Add_NEW($fields_hash);
- $cache['cats'][ $rec['cat_id'] ] = Array( 'new_id' => $category->UniqueId() );
- $cache['all_cats'][] = $cache['cats'][ $rec['cat_id'] ]['new_id'];
-
- unset($category);
- $rs->MoveNext();
- }
- return $recs_count;
- }
-
- function import_forums()
- {
- global $cache, $current_step, $objCatList, $db, $dst_db, $bb_prefix, $import_steps,
- $user_regular, $import_category_id, $perm_mappings;
- // get forums
- //$cache['forums'] = Array();
- $sql = 'SELECT * FROM '.$bb_prefix.'forums ORDER BY cat_id
- LIMIT '.$current_step['rec_no'].','.$current_step['perpage'];
-
- $rs = $db->Execute($sql);
- $recs_count = $rs->RecordCount();
-
- while(!$rs->EOF)
- {
- $rec =& $rs->fields;
- $NewOrder = $rec['forum_order'] == 1 ? 0 : $rec['forum_order'] / -10;
- $category =& $objCatList->Add( $cache['cats'][ $rec['cat_id'] ]['new_id'], $rec['forum_name'],
- $rec['forum_desc'], adodb_mktime(), 0, 1, 2, 2, 2, $NewOrder, '', '');
-
- $category_id = $category->UniqueId();
- $cache['forums'][ $rec['forum_id'] ] = Array('new_id' => $category_id);
-
- // set forum permissions to "Member" group or group what user specified
- $objPermList = new clsPermList($category_id, $user_regular);
- $objPermList->LoadCategory($category_id);
- foreach($perm_mappings as $perm_name => $perm_field)
- {
- $HasPerm = $rec[$perm_field] == 0 || $rec[$perm_field] == 1;
- $objPermList->Set_Permission($category_id, $user_regular, $perm_name, $HasPerm, 0);
- }
-
- unset($category);
- $rs->MoveNext();
- }
-
- // fix all priorities
- $all_cats = array($import_category_id);
-
- foreach($cache['forums'] as $k => $v) {
- $all_cats[] = $v['new_id'];
- }
- foreach($cache['cats'] as $k => $v) {
- $all_cats[] = $v['new_id'];
- }
-
- $sql = 'SELECT ParentId, MIN(Priority) AS MinPri FROM '.$objCatList->SourceTable.' WHERE ParentId IN ('.implode(',', $all_cats) .') GROUP BY ParentId';
- $rs = $dst_db->Execute($sql);
- while(!$rs->EOF)
- {
- $rec =& $rs->fields;
- $MinPri = $rec['MinPri'];
- $sql = 'UPDATE '.$objCatList->SourceTable.' SET Priority = Priority + ABS('.$MinPri.') WHERE ParentId = '.$rec['ParentId'];
- $dst_db->Execute($sql);
- $rs->MoveNext();
- }
- return $recs_count;
- }
-
-
- function import_forums_perms()
- {
- global $cache, $current_step, $db, $bb_prefix, $import_steps, $import_category_id, $perm_mappings, $user_regular;
-
- // get user-per-forum permissions
- //$cache['forums_perms'] = Array();
-
- $sql = 'SELECT * FROM '.$bb_prefix.'auth_access
- LIMIT '.$current_step['rec_no'].','.$current_step['perpage'];
-
- $rs = $db->Execute($sql);
- $recs_count = $rs->RecordCount();
-
- while(!$rs->EOF)
- {
- $rec =& $rs->fields;
- $category_id = $cache['forums'][ $rec['forum_id'] ]['new_id']; // forum category
- $user_group = $cache['groups'][ $rec['group_id'] ]['new_id'];
-
- $objPermList = new clsPermList($category_id, $user_group);
- $objPermList->LoadCategory($category_id);
-
- foreach($perm_mappings as $perm_name => $perm_field)
- {
- $objPermList->Set_Permission($category_id, $user_group, $perm_name, $rec[$perm_field], 0);
- }
- $rs->MoveNext();
- }
- return $recs_count;
- }
-
-
- function import_topics()
- {
- global $cache, $current_step, $db, $objTopicList, $bb_prefix, $import_steps, $import_category_id;
-
- // get topics
- //$cache['topics'] = Array();
- $sql = 'SELECT * FROM '.$bb_prefix.'topics ORDER BY forum_id
- LIMIT '.$current_step['rec_no'].','.$current_step['perpage'];
- $rs = $db->Execute($sql);
- $recs_count = $rs->RecordCount();
-
- while(!$rs->EOF)
- {
- $rec =& $rs->fields;
- $rec['topic_replies'] += 1;
- $topic =& $objTopicList->Add_Topic( $rec['topic_title'], $cache['forums'][ $rec['forum_id'] ]['new_id'],
- 1, 0, 0, $rec['topic_time'], GetUserID( $rec['topic_poster'] ),
- Array( 'Posts' => $rec['topic_replies'], 'Views' => $rec['topic_views'],
- 'Modified' => $rec['topic_time'], 'PostedBy' => GetUserName($rec['topic_poster']) ) );
-
- $cache['topics'][ $rec['topic_id'] ] = Array( 'new_id' => $topic->UniqueId() );
-
- unset($topic);
- $rs->MoveNext();
- }
-
- //unset($objTopicList);
- return $recs_count;
- }
-
-
- function import_posts()
- {
- global $cache, $current_step, $db, $dst_db, $bb_prefix, $import_steps, $import_category_id;
- // get posts
-
- //$cache['users'] = Array();
- $sql = 'SELECT * FROM '.$bb_prefix.'posts p LEFT JOIN '.$bb_prefix.'posts_text pt ON pt.post_id = p.post_id ORDER BY topic_id
- LIMIT '.$current_step['rec_no'].','.$current_step['perpage'];
- $rs = $db->Execute($sql);
- $recs_count = $rs->RecordCount();
- $post =& new clsPosting();
- while(!$rs->EOF)
- {
- $rec =& $rs->fields;
- $post->Set('ResourceId', 0);
- $post->Set('PostingId', 0);
-
- // Map post options (enable_sig, enable_bbcode, enable_smilies)
- $post->SetPostOption('show_sig', $rec['enable_sig']);
- $post->SetPostOption('disable_bbcode', !$rec['enable_bbcode']);
- $post->SetPostOption('disable_smileys', !$rec['enable_smilies']);
-
- $post->Set( Array('IPAddress', 'PosterAlias', 'Subject', 'PostingText', 'CreatedOn', 'CreatedById', 'TopicId' ),
- Array(
- DecodeIP( $rec['poster_ip'] ),
- GetUserName( $rec['poster_id'] ),
- $rec['post_subject'],
- $rec['post_text'],
- $rec['post_time'],
- GetUserID( $rec['poster_id'] ),
- $cache['topics'][ $rec['topic_id'] ]['new_id'] )
- );
- $post->Create();
- //$cache['posts'][ $rec['post_id'] ] = Array( 'new_id' => $post->UniqueId() );
-
- $size = strlen(serialize($cache));
-
- //unset($post);
- $rs->MoveNext();
- }
-
- if($current_step['recs_count'] == $current_step['rec_no'] + $recs_count)
- {
- // set lastpostid for each topic
-
- $sql = 'SELECT PostingId, MAX(CreatedOn) AS pt, TopicId FROM '.GetTablePrefix().'Posting GROUP BY TopicId ORDER BY CreatedOn DESC';
- $rs = $dst_db->Execute($sql);
- $update_sql = 'UPDATE '.GetTablePrefix().'Topic SET LastPostId = %s, LastPostDate = %s WHERE TopicId = %s';
- while(!$rs->EOF)
- {
- $rec =& $rs->fields;
-
- $tmp = sprintf($update_sql, $rec['PostingId'], $rec['pt'], $rec['TopicId']);
- $dst_db->Execute($tmp);
- $rs->MoveNext();
- }
-
-
-
-
- /*$sql = 'SELECT topic_id, MAX(post_time) AS pt, post_id FROM '.$bb_prefix.' posts GROUP BY topic_id ORDER BY post_time DESC';
- $rs = $db->Execute($sql);
- $update_sql = 'UPDATE '.GetTablePrefix().'Topic SET LastPostId = %s, LastPostDate = %s WHERE TopicId = %s';
- while(!$rs->EOF)
- {
- $rec =& $rs->fields;
- $TopicId = $cache['topics'][ $rec['topic_id'] ]['new_id'];
- $tmp = sprintf($update_sql, $cache['posts'][ $rec['post_id'] ]['new_id'], $rec['pt'], $TopicId);
- $dst_db->Execute($tmp);
- $rs->MoveNext();
- }*/
- }
- return $recs_count;
- }
-
-
-?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/import/phpbb_import.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.27
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/censor_config.php
===================================================================
--- trunk/in-bulletin/admin/censor_config.php (revision 12824)
+++ trunk/in-bulletin/admin/censor_config.php (nonexistent)
@@ -1,193 +0,0 @@
-<?php
-##############################################################
-##In-portal ##
-##############################################################
-## In-portal ##
-## Intechnic Corporation ##
-## All Rights Reserved, 1998-2002 ##
-## ##
-## No portion of this code may be copied, reproduced or ##
-## otherwise redistributed without proper written ##
-## consent of Intechnic Corporation. Violation will ##
-## result in revocation of the license and support ##
-## privileges along maximum prosecution allowed by law. ##
-##############################################################
-
-// new startup: begin
-define('REL_PATH', 'in-bulletin/admin');
-$relation_level = count( explode('/', REL_PATH) );
-define('FULL_PATH', realpath(dirname(__FILE__) . str_repeat('/..', $relation_level) ) );
-require_once FULL_PATH.'/kernel/startup.php';
-// new startup: end
-checkViewPermission('in-bulletin:configuration_censorship');
-
-$pathtolocal = $pathtoroot."in-bulletin/";
-require_once ($pathtoroot.$admin."/include/elements.php");
-require_once ($pathtoroot."kernel/admin/include/navmenu.php");
-require_once ($pathtolocal."admin/include/navmenu.php");
-require_once($pathtoroot.$admin."/toolbar.php");
-require_once($pathtoroot.$admin."/listview/listview.php");
-
-unset($objEditItems);
-
-/* -------------------------------------- Section configuration ------------------------------------------- */
-$section = "in-bulletin:configuration_censorship";
-$sec = $objSections->GetSection($section);
-$envar = "env=".BuildEnv();
-
-$SortFieldVar = "CensorConfig_LV_Sortfield";
-$SortOrderVar = "CensorConfig_LV_Sortorder";
-$DefaultSortField = "BadWord";
-$PerPageVar = "Perpage_Censorship";
-$CurrentPageVar = "Page_Censorship";
-$CurrentFilterVar = "";
-
-$ListForm = "configform";
-$CheckClass = "FieldChecks";
-
-$formaction = $_SERVER["PHP_SELF"]."?".$envar;
-
-/* ------------------------------------- Configure the toolbar ------------------------------------------- */
-$objListToolBar = new clsToolBar();
-$objListToolBar->Set("section",$section);
-$objListToolBar->Set("load_menu_func","");
-$objListToolBar->Set("CheckClass",$CheckClass);
-$objListToolBar->Set("CheckForm",$ListForm);
-
-$listImages = array();
-
-$highURL = $rootURL."in-bulletin/admin/images/tool_forum_new_censor_f2.gif";
-$lowURL = $rootURL."in-bulletin/admin/images/tool_forum_new_censor.gif";
-
-$objListToolBar->Add("new_word", "la_ToolTip_New_CensorWord",$rootURL."in-bulletin/admin/addcensor_word.php?$envar&new=1","swap('new_word','$highURL');",
- "swap('new_word', '$lowURL');","",$lowURL);
-
-$objListToolBar->Add("word_edit","la_ToolTip_Edit","#", "if (FieldChecks.itemChecked()) swap('word_edit','toolbar/tool_edit_f2.gif');",
- "if (FieldChecks.itemChecked()) swap('word_edit', 'toolbar/tool_edit.gif');","if (FieldChecks.itemChecked()) FieldChecks.check_submit('addcensor_word', '');",
- "tool_edit.gif",TRUE,TRUE);
-$listImages[] = "FieldChecks.addImage('word_edit','$imagesURL/toolbar/tool_edit.gif','$imagesURL/toolbar/tool_edit_f3.gif',1); ";
-
-$objListToolBar->Add("word_del","la_ToolTip_Delete","#", "if (FieldChecks.itemChecked()) swap('word_del','toolbar/tool_delete_f2.gif');",
- "if (FieldChecks.itemChecked()) swap('word_del', 'toolbar/tool_delete.gif');","if (FieldChecks.itemChecked()) FieldChecks.check_submit('censor_config', 'bb_censorship_delete');",
- "tool_delete.gif",FALSE,TRUE);
-$listImages[] = "FieldChecks.addImage('word_del','$imagesURL/toolbar/tool_delete.gif','$imagesURL/toolbar/tool_delete_f3.gif',1); ";
-
-$objListToolBar->Add("divider");
-
-$objListToolBar->Add("viewmenubutton", "la_ToolTip_View","#","swap('viewmenubutton','toolbar/tool_view_f2.gif'); ",
- "swap('viewmenubutton', 'toolbar/tool_view.gif');",
- "ShowViewMenu();","tool_view.gif");
-
-
-$objListToolBar->AddToInitScript($listImages);
-$objListToolBar->AddToInitScript("fwLoadMenus(); \n");
-
-$SearchWords = $objSession->GetVariable("CensorSearchWord");
-
-/* ------------------------------------ Build the SQL statement to populate the list ---------------------------*/
-
-$objCensor = new clsCensorship();
-
-if(!strlen($objConfig->Get($SortFieldVar)))
-{
- $objConfig->Set($SortFieldVar,"BadWord");
- $objConfig->Get($SortOrderVar,"desc");
-}
-
-$order = trim($objConfig->Get($SortFieldVar)." ".$objConfig->Get($SortOrderVar));
-
-if(strlen($SearchWords))
-{
- $where .= $objCensor->AdminSearchWhereClause($SearchWords);
-}
-
-$sql = "SELECT * FROM ".$objCensor->SourceTable." ";
-if(strlen($where))
- $sql .= "WHERE $where ";
-
-if($_GET["lpn"])
- $objSession->SetVariable($CurrentPageVar,(int)$_GET["lpn"]);
-
-if((int)$objSession->GetVariable($CurrentPageVar)==0)
- $objSession->SetVariable($CurrentPageVar,"1");
-
-$Limit = GetLimitSQL($objSession->GetVariable($CurrentPageVar),$objConfig->Get($PerPageVar));
-
-$objCensor->Page = $objSession->GetVariable($CurrentPageVar);
-
-$sql .= "ORDER BY ".$order." ";
-$sql .= $Limit;
-
-if($objSession->HasSystemPermission("DEBUG.LIST"))
- echo htmlentities($sql,ENT_NOQUOTES)."<br>\n";
-
-$itemcount = TableCount(GetTablePrefix()."Censorship", $where,0);
-$objCensor->Query_Item($sql);
-
-$objListView = new clsListView($objListToolBar,$objCensor);
-$objListView->IdField = "CensorshipId";
-
-$order = $objConfig->Get($SortFieldVar);
-$objListView->ColumnHeaders->Add("BadWord",admin_language("la_ColHeader_BadWord"),1,0,$order,"width=\"30%\"","CensorConfig_LV_Sortfield","CensorConfig_LV_Sortorder","BadWord");
-$objListView->ColumnHeaders->Add("Replacement",admin_language("la_ColHeader_Replacement"),1,0,$order,"width=\"30%\"","CensorConfig_LV_Sortfield","CensorConfig_LV_Sortorder","Replacement");
-
-$objListView->ColumnHeaders->SetSort($objConfig->Get("CensorConfig_LV_Sortfield"), $objConfig->Get("CensorConfig_LV_Sortorder"));
-
-$objListView->PrintToolBar = FALSE;
-$objListView->checkboxes = TRUE;
-$objListView->SearchBar = TRUE;
-$objListView->SearchKeywords = $SearchWords;
-$objListView->SearchAction="bb_censor_search";
-$objListView->TotalItemCount = $itemcount;
-$objListView->CurrentPageVar = $CurrentPageVar;
-$objListView->PerPageVar =$PerPageVar;
-$objListView->CheckboxName = "itemlist[]";
-
-$objListView->ConfigureViewMenu($SortFieldVar,$SortOrderVar,$DefaultSortField,"","",0);
-
-$filter = false;
-if ($SearchWords != '') {
- $filter = true;
-}
-
-//$title = prompt_language("la_Text_Editing")." ".prompt_language("la_Text_Censorship");
-$h = "\n\n<SCRIPT Language=\"JavaScript1.2\">\n".$objListView->GetViewMenu($imagesURL)."\n</SCRIPT>\n";
-int_header($objListToolBar,NULL, $title,NULL,$h);
-if ($filter) { ?>
-<table width="100%" border="0" cellspacing="0" cellpadding="0" class="toolbar">
- <tr>
- <td valign="top">
- <?php int_hint_red(admin_language("la_Warning_Filter")); ?>
- </td>
- </tr>
-</table>
-<?php } ?>
-<form name="configform" ID="configform" action="<?php echo $_SERVER["PHP_SELF"]."?".$envar;?>" method=POST>
-<table cellSpacing="0" cellPadding="2" width="100%" class="tableborder">
-<tbody>
-<?php
- $objListView->PageLinks = $objListView->PrintPageLinks(); /* call this before we slice! */
- $objListView->SliceItems();
- print $objListView->PrintList();
-?>
- <input TYPE="hidden" NAME="DataType" VALUE="<?php echo $FieldType; ?>">
- <input type="hidden" NAME="section" VALUE="<?php echo $section; ?>">
- <input type="hidden" name="Action" value="m_config_custom">
-</FORM>
-<!-- CODE FOR VIEW MENU -->
-<form ID="viewmenu" method="post" action="<?php echo $_SERVER["PHP_SELF"]."?".$envar; ?>" name="viewmenu">
-<input type="hidden" name="fieldname" value="">
-<input type="hidden" name="varvalue" value="">
-<input type="hidden" name="varvalue2" value="">
-<input type="hidden" name="Action" value="">
-</form>
-<FORM ID="ListSearchForm" NAME="ListSearchForm" method="POST" action="<?php echo $_SERVER["PHP_SELF"]."?env=".BuildEnv(); ?>">
- <INPUT TYPE="HIDDEN" NAME="Action" VALUE="">
- <INPUT TYPE="HIDDEN" NAME="list_search">
-</FORM>
-<script src="<?php echo $adminURL; ?>/listview/listview.js"></script>
-<script>
-initSelectiorContainers();
-<?php echo $objListToolBar->Get("CheckClass").".setImages();"; ?>
-</script>
-<?php int_footer(); ?>
Property changes on: trunk/in-bulletin/admin/censor_config.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.7
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/relation_select.php
===================================================================
--- trunk/in-bulletin/admin/relation_select.php (revision 12824)
+++ trunk/in-bulletin/admin/relation_select.php (nonexistent)
@@ -1,88 +0,0 @@
-<?php
-##############################################################
-##In-portal ##
-##############################################################
-## In-portal ##
-## Intechnic Corporation ##
-## All Rights Reserved, 1998-2002 ##
-## ##
-## No portion of this code may be copied, reproduced or ##
-## otherwise redistributed without proper written ##
-## consent of Intechnic Corporation. Violation will ##
-## result in revocation of the license and support ##
-## privileges along maximum prosecution allowed by law. ##
-##############################################################
-
-if(!$pathtoroot) die('error: no base path defined');
-
-$rootURL="http://".ThisDomain().$objConfig->Get("Site_Path");
-$localURL=$rootURL."in-bulletin/";
-$admin = $objConfig->Get("AdminDirectory");
-if(!strlen($admin))
- $admin = "admin";
-$adminURL = $rootURL.$admin;
-$imagesURL = $adminURL."/images";
-
-//admin only util
-
-$pathtolocal = $pathtoroot."in-bulletin/";
-
-//require_once ($pathtoroot."admin/include/elements.php");
-//require_once ($pathtoroot."kernel/admin/include/navmenu.php");
-require_once ($pathtolocal."admin/include/navmenu.php");
-require_once($pathtoroot.$admin."/listview/columnheader.php");
-
-$localImageURL = $localURL."admin/images";
-$list = $objSession->GetVariable("SearchWord");
-
-?>
-<!-- TOPICS-->
-<div id="topics" class="ini_tab" isTab="true" tabTitle="Topics" ActionPrefix="bb_topic_" EditURL="in-bulletin/admin/addtopic">
-<form name="topics_form" action="" method=post><input type=hidden name=Action>
-<table cellSpacing=0 cellPadding=2 width="100%" class="tabTable">
- <tbody>
- <tr>
- <td>
- <img height=15 src="<?php echo $imagesURL; ?>/arrow.gif" width=15 align=absMiddle border=0>
- <b class=text><?php echo prompt_language("la_Page"); ?></b> <?php print $objTopicList->GetAdminPageLinkList($_SERVER["PHP_SELF"]); ?>
- </td>
- </tr>
- </tbody>
-</table>
-<br>
-<table cellSpacing=0 cellPadding=2 width="100%" border=0>
-<tbody>
-<?php
-
- $cols = new clsColumnHeaderList();
-
- $order = $objConfig->Get('Topic_SortField');
-
- $SortOrder=0;
- if( $objConfig->Get('Topic_SortOrder') == 'asc' ) $SortOrder = 1;
-
- // $Field="",$Label="",$Searchable=1,$sortfield=0,$asc=1,$width="",$config_field,$config_sortorder,$key=""
- // $cols->Add("","",0,0,"","","","_blank");
-
- $cols->Add("TopicText",admin_language("la_ColHeader_Topic"),1,0,$order,"width=\"20%\"","Topic_SortField","Topic_SortOrder","TopicText");
- $cols->Add("OwnerId",admin_language("la_ColHeader_Poster"),1,0,$order,"width=\"20%\"","Topic_SortField","Topic_SortOrder","Poster");
- $cols->Add("ModifiedDate",admin_language("la_ColHeader_Date"),1,0,$order,"width=\"10%\"","Topic_SortField","Topic_SortOrder","DateModified");
- $cols->Add("Posts",admin_language("la_ColHeader_Reply"),1,0,$order,"width=\"10%\"","Topic_SortField","Topic_SortOrder","Posts");
- $cols->Add("Views",admin_language("la_ColHeader_Views"),1,0,"width=\"10%\"","Topic_SortField","Topic_SortOrder","Views");
-
- //$cols->SetSort($order,$SortOrder)
- print $cols ->PrintColumns();
-
- print adListTopics($pathtoroot."in-bulletin/admin/templates/topic_select_element.tpl");
-
- // $objTopicView->PrintList(); */
-?>
- </tbody>
-</table>
-</form>
-</div>
-<SCRIPT LANGUAGE="JavaScript">
- AddButtonAction('new_topic',"get_to_server('<?php echo $rootURL;?>in-bulletin/admin/addtopic.php','new=1');"); //new cat
-</SCRIPT>
-<!-- END TOPICS-->
-
Property changes on: trunk/in-bulletin/admin/relation_select.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/addreview.php
===================================================================
--- trunk/in-bulletin/admin/addreview.php (revision 12824)
+++ trunk/in-bulletin/admin/addreview.php (nonexistent)
@@ -1,222 +0,0 @@
-<?php
-
-##############################################################
-##In-portal ##
-##############################################################
-## In-portal ##
-## Intechnic Corporation ##
-## All Rights Reserved, 1998-2002 ##
-## ##
-## No portion of this code may be copied, reproduced or ##
-## otherwise redistributed without proper written ##
-## consent of Intechnic Corporation. Violation will ##
-## result in revocation of the license and support ##
-## privileges along maximum prosecution allowed by law. ##
-##############################################################
-
-// new startup: begin
-define('REL_PATH', 'in-bulletin/admin');
-$relation_level = count( explode('/', REL_PATH) );
-define('FULL_PATH', realpath(dirname(__FILE__) . str_repeat('/..', $relation_level) ) );
-require_once FULL_PATH.'/kernel/startup.php';
-// new startup: end
-
-$pathtolocal = $pathtoroot."kernel/";
-require_once ($pathtoroot.$admin."/include/elements.php");
-require_once ($pathtoroot."kernel/admin/include/navmenu.php");
-require_once ($pathtolocal."admin/include/navmenu.php");
-require_once($pathtoroot.$admin."/browse/toolbar.php");
-require_once($pathtoroot.$admin."/listview/listview.php");
-
-unset($objEditCat);
-
-$objEditCat = new clsTopicList();
-$objEditCat->SourceTable = $objSession->GetEditTable("Topic");
-$objEditCat->EnablePaging = FALSE;
-//Multiedit init
-$en = (int)$_GET["en"];
-$objEditCat->Query_Item("SELECT * FROM ".$objEditCat->SourceTable);
-$itemcount=$objEditCat->NumItems();
-$c = $objEditCat->GetItemByIndex($en);
-
-unset($objEditItems);
-
-$objEditItems = new clsItemReviewList();
-$objEditItems->SourceTable = $objSession->GetEditTable("ItemReview");
-
-if(isset($_POST["itemlist"]))
-{
- if(is_array($_POST["itemlist"]))
- {
- $ReviewId = $_POST["itemlist"][0];
- }
- else
- {
- $ReviewId = $_POST["itemlist"];
- }
- $Rev = $objEditItems->GetItem($ReviewId);
- $action = "m_review_edit";
-}
-else
-{
- $Rev = new clsItemReview();
- $Rev->Set("ItemId",$c->Get("ResourceId"));
- $Rev->Set("ItemType",4);
- $Rev->Set("Status",2);
- $Rev->Set("Priority",0);
- $Rev->Set("CreatedById",$objSession->Get("PortalUserId"));
- $Rev->Set("CreatedOn",adodb_date("U"));
- $action = "m_review_add";
-}
-
-$envar = "env=" . BuildEnv() . "&en=$en";
-
-$section = 'in-bulletin:edittopic_review';
-
-$ado = &GetADODBConnection();
-
-
-if(is_numeric($Rev->Get("CreatedById")))
-{
- if($Rev->Get("CreatedById")>0)
- {
- $u = $objUsers->GetUser($Rev->Get("CreatedById"));
- $login_name = $u->Get("Login");
- }
- else
- $login_name = "root";
-}
-else
-{
- if($objSession->Get("PortalUserId")>0)
- {
- $u = $objUsers->Get($objSession->Get("PortalUserId"));
- $login_name = $u->Get("CreatedById");
- }
- else
- $login_name="root";
-}
-
-$title = prompt_language("la_Text_Editing")." ".prompt_language("la_Text_Topic")." '".$c->Get("TopicText")."' - ".prompt_language("la_tab_Review")." by ".$login_name;
-
-$objListToolBar = new clsToolBar();
-$objListToolBar->Add("img_save", "la_Save","#","swap('img_save','toolbar/tool_select_f2.gif');", "swap('img_save', 'toolbar/tool_select.gif');","do_save_review('topic','in-bulletin/admin/addtopic_reviews.php',0);",$imagesURL."/toolbar/tool_select.gif");
-$objListToolBar->Add("img_cancel", "la_Cancel","#","swap('img_cancel','toolbar/tool_cancel_f2.gif');", "swap('img_cancel', 'toolbar/tool_cancel.gif');","do_save_review('topic','in-bulletin/admin/addtopic_reviews.php',-1);",$imagesURL."/toolbar/tool_cancel.gif");
-int_header($objListToolBar,NULL,$title);
-if ($objSession->GetVariable("HasChanges") == 1) {
-?>
-<table width="100%" border="0" cellspacing="0" cellpadding="0" class="toolbar">
- <tr>
- <td valign="top">
- <?php int_hint_red(admin_language("la_Warning_Save_Item")); ?>
- </td>
- </tr>
-</table>
-<?php } ?>
-<TABLE cellSpacing="0" cellPadding="2" width="100%" class="tableborder">
-<FORM ID="topic" NAME="topic" method="POST" ACTION="">
-<?php int_subsection_title("Review"); ?>
- <tr <?php int_table_color(); ?>>
- <td valign="top" colspan="3"><?php echo prompt_language("la_prompt_Enable_HTML"); ?>
- <input type="checkbox" ID="html_enable" tabindex="1" name="html_enable" value="1" <?php if($Rev->Get("TextFormat")==1) echo "CHECKED"; ?>>
- <br>
- <?php int_hint(prompt_language("la_Warning_Enable_HTML")); ?>
- </td>
- </tr>
- <tr <?php int_table_color(); ?>>
- <td valign="top"><span class="text"><?php echo prompt_language("la_prompt_ReviewId"); ?></span></td>
- <td>
- <span class="text"><?php echo $Rev->Get("ReviewId"); ?></span>
- </td>
- <td><span class="text">&nbsp;</span></td>
- </tr>
-
- <tr <?php int_table_color(); ?>>
- <td valign="top"><span class="text" id="prompt_createdby" ><?php echo prompt_language("la_prompt_CreatedBy"); ?></span></td>
- <td>
- <span class="text">
- <input type="text" tabindex="1" ValidationType="exists" name="createdby" class="text" size="40" value="<?php echo inp_textarea_unescape($login_name); ?>">
- <a href="#">
- <img src="<?php echo $imagesURL; ?>/icon24_link_user.gif" style="cursor:hand" border="0"
- ONCLICK="OpenUserSelector('','','<?php echo $envar; ?>&Selector=radio&destform=topic&destfield=createdby&IdField=Login');">
- </a>
- </span>
- </td>
- <td><span class="text">&nbsp;</span></td>
- </tr>
-
-
- <tr <?php int_table_color(); ?>>
- <td valign="top"><SPAN id="prompt_review_body" class="text"><?php echo prompt_language("la_prompt_ReviewText"); ?></SPAN><br>
- <a href="#">
- <img src="<?php echo $imagesURL; ?>/icon24_link_editor.gif" style="cursor:hand" border="0"
- ONCLICK="document.getElementById('html_enable').checked = true; OpenEditor('&section=<?php echo $section; ?>','topic','review_body');">
- </a>
- </td>
- <td>
- <textarea rows="8" tabindex="1" ValidationType="exists" name="review_body" id="review_body" cols="70" class="text"><?php echo inp_textarea_unescape(inp_htmlize($Rev->parsetag("review_text"))); ?></textarea>
- </td>
- <td></td>
- </tr>
-
- <?php int_subsection_title("General"); ?>
-
- <tr <?php int_table_color(); ?>>
- <td valign="top" class="text"><?php echo prompt_language("la_prompt_Status"); ?></td>
- <td>
- <input type="radio" tabindex="2" name="status" class="text" value="1" <?php if($Rev->Get("Status") == 1) echo "checked"; ?>><?php echo prompt_language("la_val_Active"); ?>
- <input type="radio" tabindex="2" name="status" class="text" value="2" <?php if($Rev->Get("Status") == 2) echo "checked"; ?>><?php echo prompt_language("la_val_Pending"); ?>
- <input type="radio" tabindex="2" name="status" class="text" value="0" <?php if($Rev->Get("Status") == 0) echo "checked"; ?>><?php echo prompt_language("la_val_Disabled"); ?>
- </td>
- <td class="text">&nbsp;</td>
- </tr>
-
- <tr <?php int_table_color(); ?>>
- <td valign="top" class="text"><?php echo prompt_language("la_prompt_Priority"); ?></td>
- <td>
- <input type="text" tabindex="3" name="review_priority" class="text" size="3" value="<?php echo $Rev->Get("Priority"); ?>">
- </td>
- <td class="text">&nbsp;</td>
- </tr>
-
- <tr <?php int_table_color(); ?>>
- <td valign="top"><SPAN ID="prompt_review_date" class="text"><?php echo prompt_language("la_prompt_CreatedOn"); ?></SPAN></td>
- <td>
- <input type="text" tabindex="4" ValidationType="date" name="review_date" id="review_date_selector" datepickerIcon="<?php echo $adminURL; ?>/images/ddarrow.gif" class="text" size="20" value="<?php echo $Rev->parsetag("review_created_date"); ?>">
- <span class="small"><?php echo prompt_language("la_prompt_DateFormat"); ?></span></td>
- <td></td>
- </tr>
- <tr <?php int_table_color(); ?>>
- <td valign="top"><SPAN id="prompt_review_time" class="text"><?php echo prompt_language("la_prompt_CreatedOn_Time"); ?></SPAN></td>
- <td>
- <input type="text" tabindex="5" ValidationType="time" name="review_time" class="text" size="20" value="<?php echo $Rev->parsetag("review_created_time"); ?>">
- <span class="small"><?php echo prompt_language("la_prompt_TimeFormat"); ?></span></td>
- <td></td>
- </tr>
- <INPUT TYPE="hidden" NAME="CreatedById" value = "<?php echo $Rev->Get("CreatedById"); ?>">
- <input type="hidden" name="ReviewId" value ="<?php echo $Rev->Get("ReviewId"); ?>">
- <input type="hidden" name="ItemId" value ="<?php echo $Rev->Get("ItemId"); ?>">
- <input type="hidden" name="ItemType" value ="<?php echo $Rev->Get("ItemType"); ?>">
- <input type="hidden" name="Action" value="<?php echo $action; ?>">
- <input type="hidden" name="TopicEditStatus" VALUE="0">
-</FORM>
-</TABLE>
-<FORM NAME="save_edit_buttons" ID="save_edit_buttons" method="POST" ACTION="">
- <input type=hidden NAME="Action" VALUE="save_cat_edit">
- <input type="hidden" name="TopicEditStatus" VALUE="0">
-</FORM>
-<!-- CODE FOR VIEW MENU -->
-<form method="post" action="<?php echo $_SERVER["PHP_SELF"]."?".$envar; ?>" name="viewmenu">
-<input type="hidden" name="fieldname" value="">
-<input type="hidden" name="varvalue" value="">
-<input type="hidden" name="varvalue2" value="">
-<input type="hidden" name="Action" value="">
-</form>
-<!-- END CODE-->
-<script src="<?php echo $adminURL; ?>/include/calendar.js"></script>
-<SCRIPT language="JavaScript">
- initCalendar("review_date_selector", CalDateFormat);
- MarkAsRequired(document.getElementById("topic"));
-</SCRIPT>
-
-<?php int_footer(); ?>
Property changes on: trunk/in-bulletin/admin/addreview.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.12
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/addtopic_reviews.php
===================================================================
--- trunk/in-bulletin/admin/addtopic_reviews.php (revision 12824)
+++ trunk/in-bulletin/admin/addtopic_reviews.php (nonexistent)
@@ -1,306 +0,0 @@
-<?php
-##############################################################
-##In-portal ##
-##############################################################
-## In-portal ##
-## Intechnic Corporation ##
-## All Rights Reserved, 1998-2002 ##
-## ##
-## No portion of this code may be copied, reproduced or ##
-## otherwise redistributed without proper written ##
-## consent of Intechnic Corporation. Violation will ##
-## result in revocation of the license and support ##
-## privileges along maximum prosecution allowed by law. ##
-##############################################################
-
-// new startup: begin
-define('REL_PATH', 'in-bulletin/admin');
-$relation_level = count( explode('/', REL_PATH) );
-define('FULL_PATH', realpath(dirname(__FILE__) . str_repeat('/..', $relation_level) ) );
-require_once FULL_PATH.'/kernel/startup.php';
-// new startup: end
-
-$pathtolocal = $pathtoroot."in-bulletin/";
-require_once ($pathtoroot.$admin."/include/elements.php");
-require_once ($pathtoroot."kernel/admin/include/navmenu.php");
-require_once ($pathtolocal."admin/include/navmenu.php");
-require_once($pathtoroot.$admin."/toolbar.php");
-require_once($pathtoroot.$admin."/listview/listview.php");
-
-
-
-unset($objEditItems);
-$objEditItems = new clsTopicList();
-$objEditItems->SourceTable = $objSession->GetEditTable("Topic");
-$objEditItems->EnablePaging = FALSE;
-
-$objReviewList = new clsItemReviewList();
-$objReviewList->SourceTable = $objSession->GetEditTable("ItemReview");
-
-$en = (int)GetVar('en');
-$objEditItems->Query_Item("SELECT * FROM ".$objEditItems->SourceTable);
-$itemcount=$objEditItems->NumItems();
-$c = $objEditItems->GetItemByIndex($en);
-if($itemcount>1)
-{
- if ($en+1 == $itemcount)
- $en_next = -1;
- else
- $en_next = $en+1;
- if ($en == 0)
- $en_prev = -1;
- else
- $en_prev = $en-1;
-}
-
-//Set Section
-$section = 'in-bulletin:edittopic_reviews';
-$saveURL = $admin."/".$objSession->GetVariable('ReturnScript');
-//Set Environment Variable
-$envar = "env=" . BuildEnv() . "&en=$en";
-
-$objListToolBar = new clsToolBar();
-$objListToolBar->Add("img_save", "la_Save","#","swap('img_save','toolbar/tool_select_f2.gif');", "swap('img_save', 'toolbar/tool_select.gif');","do_edit_save('topic','".$saveURL."',1);","tool_select.gif");
-$objListToolBar->Add("img_cancel", "la_Cancel","#","swap('img_cancel','toolbar/tool_cancel_f2.gif');", "swap('img_cancel', 'toolbar/tool_cancel.gif');","do_edit_save('topic','".$saveURL."',2);","tool_cancel.gif");
-if($itemcount == 1) $objListToolBar->Add("divider");
-
-$objListToolBar->Set("section",$section);
-$objListToolBar->Set("load_menu_func","");
-$objListToolBar->Set("CheckClass","RevChecks");
-$objListToolBar->Set("CheckForm","topic");
-
-//Display header
-$sec = $objSections->GetSection($section);
-
-if ( isset($en_prev) || isset($en_next) )
-{
- $url = $RootUrl."in-bulletin/admin/addtopic_reviews.php";
- $StatusField = "TopicEditStatus";
- $form = "topic";
- MultiEditButtons($objListToolBar,$en_next,$en_prev,$form,$StatusField,$url,$sec->Get("OnClick"));
- $objListToolBar->Add("divider");
-}
-
-$listImages = array();
- //$img, $alt, $link, $onMouseOver, $onMouseOut, $onClick
-
-$objListToolBar->Add("new_review", "la_ToolTip_New_Review",$rootURL."in-bulletin/admin/addreview.php?".$envar,"swap('new_review','toolbar/tool_new_review_f2.gif');",
- "swap('new_review', 'toolbar/tool_new_review.gif');",
- "","tool_new_review.gif");
-
-$objListToolBar->Add("review_edit","la_ToolTip_Edit","#", "if (RevChecks.itemChecked()) swap('review_edit','toolbar/tool_edit_f2.gif');",
- "if (RevChecks.itemChecked()) swap('review_edit', 'toolbar/tool_edit.gif');","if (RevChecks.itemChecked()) RevChecks.check_submit('addreview', '');",
- "tool_edit.gif");
-$listImages[] = "RevChecks.addImage('review_edit','$imagesURL/toolbar/tool_edit.gif','$imagesURL/toolbar/tool_edit_f3.gif',1); ";
-
-$objListToolBar->Add("review_del","la_ToolTip_Delete","#", "if (RevChecks.itemChecked()) swap('review_del','toolbar/tool_delete_f2.gif');",
- "if (RevChecks.itemChecked()) swap('review_del', 'toolbar/tool_delete.gif');","if (RevChecks.itemChecked()) RevChecks.check_submit('addtopic_reviews', 'm_review_delete');",
- "tool_delete.gif");
-$listImages[] = "RevChecks.addImage('review_del','$imagesURL/toolbar/tool_delete.gif','$imagesURL/toolbar/tool_delete_f3.gif',1); ";
-
-$objListToolBar->Add("divider");
-
-$objListToolBar->Add("rev_move_up","la_ToolTip_Move_Up","#", "if (RevChecks.itemChecked()) swap('rev_move_up','toolbar/tool_move_up_f2.gif');",
- "if (RevChecks.itemChecked()) swap('rev_move_up', 'toolbar/tool_move_up.gif');","if (RevChecks.itemChecked()) RevChecks.check_submit('addtopic_reviews', 'm_review_move_up');",
- "tool_move_up.gif");
-$listImages[] = "RevChecks.addImage('rev_move_up','$imagesURL/toolbar/tool_move_up.gif','$imagesURL/toolbar/tool_move_up_f3.gif',1); ";
-
-$objListToolBar->Add("rev_move_down","la_ToolTip_Move_Down","#", "if (RevChecks.itemChecked()) swap('rev_move_down','toolbar/tool_move_down_f2.gif');",
- "if (RevChecks.itemChecked()) swap('rev_move_down', 'toolbar/tool_move_down.gif');","if (RevChecks.itemChecked()) RevChecks.check_submit('addtopic_reviews', 'm_review_move_down');",
- "tool_move_down.gif");
-$listImages[] = "RevChecks.addImage('rev_move_down','$imagesURL/toolbar/tool_move_down.gif','$imagesURL/toolbar/tool_move_down_f3.gif',1); ";
-
-$objListToolBar->Add("divider");
-$objListToolBar->Add("viewmenubutton", "la_ToolTip_View","#","swap('viewmenubutton','toolbar/tool_view_f2.gif'); ",
- "swap('viewmenubutton', 'toolbar/tool_view.gif');",
- "ShowViewMenu();","tool_view.gif");
-
-$objListToolBar->AddToInitScript($listImages);
-$objListToolBar->AddToInitScript("fwLoadMenus(); \n");
-
-// For filter warning
-$Bit_Pending=4;
-$Bit_Disabled=2;
-$Bit_Valid=1;
-$Bit_All = 7;
-
-/* determine current view menu settings */
-$UserView = $objConfig->Get("TopicRev_View");
-
-if(!is_numeric($UserView))
-{
- $UserView = $Bit_All; //Set all bits ON
- $UserFilter = "";
-}
-
-$filter = false; // always initialize variables before use
-if($objSession->GetVariable("TopicRevSearchWord") != '') {
- $filter = true;
-}
-else {
- if ($UserView != $Bit_All) {
- $filter = true;
- }
-}
-
-$title = prompt_language("la_Text_Editing")." ".prompt_language("la_Text_Topic")." '".$c->Get("TopicText")."' - ".prompt_language("la_tab_Reviews");
-
-int_header($objListToolBar,NULL, $title);
-if ($objSession->GetVariable("HasChanges") == 1) {
-?>
-<table width="100%" border="0" cellspacing="0" cellpadding="0" class="toolbar">
- <tr>
- <td valign="top">
- <?php int_hint_red(admin_language("la_Warning_Save_Item")); ?>
- </td>
- </tr>
-</table>
-<?php } ?>
-<?php if ($filter) { ?>
-<table width="100%" border="0" cellspacing="0" cellpadding="0" class="toolbar">
- <tr>
- <td valign="top">
- <?php int_hint_red(admin_language("la_Warning_Filter")); ?>
- </td>
- </tr>
-</table>
-<?php } ?>
-<table width="100%" border="0" cellspacing="0" cellpadding="4" class="tableborder">
-<form ID ="topic" name="topic" action="" method=POST>
-<?php
-
-$objReviewList->itemID=$c->Get("ResourceId");
-
-$pre = GetTablePrefix();
-$time = is12HourMode() ? '%r' : '%T';
-
-$sql = "SELECT r.ReviewText as ReviewText, r.CreatedOn as CreatedOn,";
-$sql .=" ELT(r.Status+1,'".admin_language("la_Text_Disabled")."','".admin_language("la_Text_Enabled")."','";
-$sql .= admin_language("la_Text_Pending")."') as ReviewStatus, r.Priority as Priority, r.ReviewId as ReviewId, ";
-$sql .= "FROM_UNIXTIME(r.CreatedOn,'%m-%d-%Y $time') as DatePosted, pu.Login as Reviewer, r.Status FROM ".$objReviewList->SourceTable." as r ";
-$sql .= "LEFT JOIN ".$pre."PortalUser as pu ON (pu.PortalUserId = r.CreatedById) ";
-$sql .= "WHERE r.ItemId=".$c->Get("ResourceId");
-
-if(strlen($RevFilter))
-{
- $sql .= " AND (".$RevFilter.")";
-}
-
-$SearchWords = $objSession->GetVariable("TopicRevSearchWord");
-
-if(strlen($SearchWords))
-{
- $where = $objReviewList->AdminSearchWhereClause($SearchWords);
-}
-else
- $where = "";
-
-if(strlen($where))
- $sql .= " AND ($where) ";
-
-if(strlen(trim($objConfig->Get("TopicReview_LV_Sortfield"))))
-{
- $order = " ORDER BY Priority DESC, ".$objConfig->Get("TopicReview_LV_Sortfield")." ".$objConfig->Get("TopicReview_LV_Sortorder");
-}
-else
-{
- $order = " ORDER BY Priority DESC, CreatedOn DESC";
-}
-
-$total_records = QueryCount('SELECT * FROM '.$objReviewList->SourceTable.' WHERE ItemId='.$c->Get('ResourceId') );
-$objReviewList->RefreshPage('Page_Reviews', $total_records);
-
-$sql .= $order." ".$objReviewList->GetLimitSQL();
-
-if($objSession->HasSystemPermission("DEBUG.LIST"))
- echo htmlentities($sql,ENT_NOQUOTES)."<br>\n";
-
-$objListView = new clsListView($objListToolBar);
-$objListView->CurrentPageVar = "Page_Reviews";
-$objListView->PerPageVar = "Perpage_Reviews";
-
-$objReviewList->Query_Item($sql); // , $objListView->GetLimitSQL()
-
-$SortOrder = $objConfig->Get("TopicReview_LV_Sortorder");
-if(!strlen($SortOrder))
- $SortOrder = "desc";
-
-$SortField = $objConfig->Get("TopicReview_LV_Sortfield");
-if(!strlen($SortField))
- $SortField = "CreatedOn";
-
-for($i=0;$i<count($objReviewList->Items);$i++)
-{
- $rt = $objReviewList->Items[$i]->Get("ReviewText");
-// $rt = stripslashes($rt);
- if(strlen($rt)>100)
- {
- $rt = substr($rt,0,100);
- $rt .= " ...";
- }
- $objReviewList->Items[$i]->Set("ReviewText",$rt);
-
- /* Do review Icons */
- $img = &$objReviewList->GetItemRefByIndex($i);
- if(is_numeric($img->Get('Status')))
- {
- $img_map=Array(0=>'icon16_review_disabled.gif',1=>'icon16_review.gif',2=>'icon16_review_pending.gif');
- $img->Set('Icon',$rootURL.'admin/images/itemicons/'.$img_map[ $img->Get('Status') ]);
- }
-
-}
-
-$objListView->SetListItems(&$objReviewList);
-$objListView->IdField = "ReviewId";
-$objListView->PageLinkTemplate = $pathtoroot.$admin."/templates/user_page_link.tpl";
-
-/* Initialize the Icons */
-for($i=0;$i<count($objReviewList->Items);$i++)
-{
- $img = &$objReviewList->GetItemRefByIndex($i);
- $objListView->RowIcons[] = $img->Get("Icon");
-}
-
-$objListView->ColumnHeaders->Add("ReviewText",admin_language("la_prompt_ReviewText"),1,0,$order,"width=\"50%\"","TopicReview_LV_Sortfield","TopicReview_LV_Sortorder","ReviewText");
-$objListView->ColumnHeaders->Add("Reviewer",admin_language("la_Prompt_ReviewedBy"),1,0,$order,"width=\"20%\"","TopicReview_LV_Sortfield","TopicReview_LV_Sortorder","Reviewer");
-$objListView->ColumnHeaders->Add("DatePosted",admin_language("la_prompt_CreatedOn"),1,0,$order,"width=\"20%\"","TopicReview_LV_Sortfield","TopicReview_LV_Sortorder","CreatedOn");
-$objListView->ColumnHeaders->Add("ReviewStatus",admin_language("la_prompt_Status"),1,0,$order,"width=\"10%\"","TopicReview_LV_Sortfield","TopicReview_LV_Sortorder","ReviewStatus");
-$objListView->ColumnHeaders->SetSort($objConfig->Get("TopicReview_LV_Sortfield"), $objConfig->Get("TopicReview_LV_Sortorder"));
-
-$objListView->PrintToolBar = FALSE;
-$objListView->SearchBar = TRUE;
-$objListView->SearchKeywords = $SearchWords;
-$objListView->SearchAction="l_review_search";
-$objListView->CheckboxName = "itemlist[]";
-$objListView->TotalItemCount = $total_records;
-$objListView->extra_env='en='.(int)GetVar('en');
-
- print $objListView->PrintList();
-
-?>
- <input type = "hidden" name="ResourceId" value="<?php echo $c->get("ResourceId"); ?>">
- <input type = "hidden" name="Action" value="update_reviews">
- <input type="hidden" name="TopicEditStatus" VALUE="0">
-
- </FORM>
-</table>
-<!-- CODE FOR VIEW MENU -->
-<form ID="viewmenu" method="post" action="<?php echo $_SERVER["PHP_SELF"]."?".$envar; ?>" name="viewmenu">
-<input type="hidden" name="fieldname" value="">
-<input type="hidden" name="varvalue" value="">
-<input type="hidden" name="varvalue2" value="">
-<input type="hidden" name="Action" value="">
-</form>
-<FORM ID="ListSearchForm" NAME="ListSearchForm" method="POST" action="<?php echo $_SERVER["PHP_SELF"]."?env=".BuildEnv(); ?>">
- <INPUT TYPE="HIDDEN" NAME="Action" VALUE="">
- <INPUT TYPE="HIDDEN" NAME="list_search">
- <input type="hidden" name="en" value="<?php echo GetVar('en'); ?>">
-</FORM>
-
-<script src="<?php echo $adminURL; ?>/listview/listview.js"></script>
-<script>
-initSelectiorContainers();
-<?php echo $objListToolBar->Get("CheckClass").".setImages();"; ?>
-</script>
-<!-- END CODE-->
-<?php int_footer(); ?>
Property changes on: trunk/in-bulletin/admin/addtopic_reviews.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.11
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/advanced_view.php
===================================================================
--- trunk/in-bulletin/admin/advanced_view.php (revision 12824)
+++ trunk/in-bulletin/admin/advanced_view.php (nonexistent)
@@ -1,86 +0,0 @@
-<?php
-##############################################################
-##In-portal ##
-##############################################################
-## In-portal ##
-## Intechnic Corporation ##
-## All Rights Reserved, 1998-2002 ##
-## ##
-## No portion of this code may be copied, reproduced or ##
-## otherwise redistributed without proper written ##
-## consent of Intechnic Corporation. Violation will ##
-## result in revocation of the license and support ##
-## privileges along maximum prosecution allowed by law. ##
-##############################################################
-global $rootURL, $imagesURL, $adminURL,$admin;
-
-if(!$pathtoroot) die('error: no base path defined');
-
-//$rootURL="http://".ThisDomain().$objConfig->Get("Site_Path");
-$localURL=$rootURL."in-bulletin/";
-
-//$imagesURL = $rootURL."admin/images";
-
-//admin only util
-
-$pathtolocal = $pathtoroot."in-bulletin/";
-
-//require_once ($pathtoroot."admin/include/elements.php");
-//require_once ($pathtoroot."kernel/admin/include/navmenu.php");
-require_once ($pathtolocal."admin/include/navmenu.php");
-require_once($pathtoroot.$admin."/listview/columnheader.php");
-
-//Set Section
-$section = 'in-bulletin:advanced_view';
-//Set Environment Variable
-$envar = "env=" . BuildEnv($mod_prefixes);
-
-$localImageURL = $localURL."admin/images";
-
-?>
-<!-- TOPICS-->
-<div id="topics" class="ini_tab" isTab="true" tabTitle="Topics" PrefixSpecial="t" ActionPrefix="bb_topic_" EditURL="in-bulletin/admin/addtopic">
-
-<table cellSpacing=0 cellPadding=2 width="100%" class="tabTable">
- <tbody>
- <tr>
- <td align="left" width="70%">
- <img height=15 src="<?php echo $imagesURL; ?>/arrow.gif" width=15 align=absMiddle border=0>
- <b class=text><?php echo prompt_language("la_Page"); ?></b> <?php print $objTopicList->GetAdminPageLinkList($_SERVER["PHP_SELF"]); ?>
- </td>
- <td align="right" width="30%">
- <?php ShowSearchForm('bb', $envar, 'topics'); ?>
-
- </td>
- </tr>
- </tbody>
-</table>
-<form name="topics_form" action="" method=post>
- <input type="hidden" name="Action">
- <table cellSpacing=0 cellPadding=2 width="100%" border=0>
- <tbody>
- <?php
- $cols = new clsColumnHeaderList();
- $order = $objConfig->Get('Topic_SortField');
- $SortOrder=0;
- if($objConfig->Get("Topic_SortOrder") == 'asc')
- $SortOrder=1;
-
- $cols->Add("TopicText",admin_language("la_ColHeader_Topic"),1,0,$order,"width=\"40%\"","Topic_SortField","Topic_SortOrder","TopicText");
- $cols->Add("PostedBy",admin_language("la_ColHeader_Poster"),1,0,$order,"width=\"39%\"","Topic_SortField","Topic_SortOrder","PostedBy");
- $cols->Add("ModifiedDate",admin_language("la_ColHeader_Date"),1,0,$order,"width=\"10%\"","Topic_SortField","Topic_SortOrder","Modified");
- $cols->Add("Posts",admin_language("la_ColHeader_Reply"),1,0,$order,"width=\"10%\"","Topic_SortField","Topic_SortOrder","Posts");
- $cols->Add("Views",admin_language("la_ColHeader_Views"),1,0,$order,"width=\"10%\"","Topic_SortField","Topic_SortOrder","Views");
- $cols->SetSort($objConfig->Get("Topic_SortField"),$objConfig->Get("Topic_SortOrder"));
-
- print $cols ->PrintColumns();
- print adListTopics($pathtoroot."in-bulletin/admin/templates/topic_element_av.tpl");
- ?>
- </tbody>
- </table>
-</form>
-</div>
-
-<!-- END TOPICS-->
-
-
Property changes on: trunk/in-bulletin/admin/advanced_view.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.8
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/addrelation.php
===================================================================
--- trunk/in-bulletin/admin/addrelation.php (revision 12824)
+++ trunk/in-bulletin/admin/addrelation.php (nonexistent)
@@ -1,222 +0,0 @@
-<?php
-##############################################################
-##In-portal ##
-##############################################################
-## In-portal ##
-## Intechnic Corporation ##
-## All Rights Reserved, 1998-2002 ##
-## ##
-## No portion of this code may be copied, reproduced or ##
-## otherwise redistributed without proper written ##
-## consent of Intechnic Corporation. Violation will ##
-## result in revocation of the license and support ##
-## privileges along maximum prosecution allowed by law. ##
-##############################################################
-
-// new startup: begin
-define('REL_PATH', 'in-bulletin/admin');
-$relation_level = count( explode('/', REL_PATH) );
-define('FULL_PATH', realpath(dirname(__FILE__) . str_repeat('/..', $relation_level) ) );
-require_once FULL_PATH.'/kernel/startup.php';
-// new startup: end
-
-require_once ($pathtoroot.$admin."/include/elements.php");
-require_once ($pathtoroot."kernel/admin/include/navmenu.php");
-//require_once ($pathtolocal."admin/include/navmenu.php");
-require_once($pathtoroot.$admin."/browse/toolbar.php");
-require_once($pathtoroot.$admin."/listview/listview.php");
-
-unset($objEditCat);
-
-$objEditCat = new clsTopicList();
-$objEditCat->SourceTable = $objSession->GetEditTable("Topic");
-$objEditCat->EnablePaging = FALSE;
-//Multiedit init
-$en = (int)$_GET["en"];
-$objEditCat->Query_Item("SELECT * FROM ".$objEditCat->SourceTable);
-$itemcount=$objEditCat->NumItems();
-$c = $objEditCat->GetItemByIndex($en);
-
-unset($objEditItems);
-
-$objEditItems = new clsRelationshipList();
-$objEditItems->SourceTable = $objSession->GetEditTable("Relationship");
-
-if(isset($_POST["itemlist"]))
-{
- if(is_array($_POST["itemlist"]))
- {
- $RelationId = $_POST["itemlist"][0];
- }
- else
- {
- $RelationId = $_POST["itemlist"];
- }
- // $Rel = $objEditItems->GetItem($RelationId);
- $Rel = new clsRelationship();
- $Rel->tablename = $objEditItems->SourceTable;
- $Rel->LoadFromDatabase($RelationId);
- $action = "m_edit_relation";
-}
-else
-{
- $Rel = new clsRelationship();
- $Rel->Set("SourceType","3");
- $Rel->Set("SourceId",$c->Get("ResourceId"));
- $Rel->Set("TargetId",$_POST["TargetId"]);
- $Rel->Set("TargetType",$_POST["TargetType"]);
- $Rel->Set("Type","0");
- $Rel->Set("Enabled","1");
- $action = "m_add_relation";
-}
-
-$item = $Rel->GetTargetItemData();
-
-$envar = "env=" . BuildEnv() . "&en=$en";
-
-$section = 'in-bulletin:edittopic_relations';
-
-$ado = &GetADODBConnection();
-
-/* page header */
-$charset = GetRegionalOption('Charset');
-print <<<END
-<html>
-<head>
- <title>In-portal</title>
- <meta http-equiv="content-type" content="text/html;charset=$charset">
- <meta http-equiv="Pragma" content="no-cache">
- <script language="JavaScript">
- imagesPath='$imagesURL'+'/';
- </script>
- <script src="$browseURL/common.js"></script>
- <script src="$browseURL/toolbar.js"></script>
- <script src="$browseURL/utility.js"></script>
- <script src="$browseURL/checkboxes.js"></script>
- <script language="JavaScript1.2" src="$browseURL/fw_menu.js"></script>
- <link rel="stylesheet" type="text/css" href="$browseURL/checkboxes.css">
- <link rel="stylesheet" type="text/css" href="$cssURL/style.css">
- <link rel="stylesheet" type="text/css" href="$browseURL/toolbar.css">
-END;
-
-$title = prompt_language("la_Text_Editing")." ".prompt_language("la_Text_Topic")." '".$c->Get("TopicText")."' - ".prompt_language("la_tab_Relations");
-$title .= " ".prompt_language("la_Text_to")." '".$item[$item["TitleField"]]."'";
-
-
-
-
-$objCatToolBar = new clsToolBar();
-$objCatToolBar->Add("img_save", "la_Save","#","swap('img_save','toolbar/tool_select_f2.gif');", "swap('img_save', 'toolbar/tool_select.gif');","do_edit_save('topic','TopicEditStatus','in-bulletin/admin/addtopic_relations.php',0);",$imagesURL."/toolbar/tool_select.gif");
-
-$objCatToolBar->Add("img_cancel", "la_Cancel","#","swap('img_cancel','toolbar/tool_cancel_f2.gif');", "swap('img_cancel', 'toolbar/tool_cancel.gif');","do_edit_save('topic','TopicEditStatus','in-bulletin/admin/addtopic_relations.php',-1);",$imagesURL."/toolbar/tool_cancel.gif");
-
-int_header($objCatToolBar,NULL,$title);
-
-if ($objSession->GetVariable("HasChanges") == 1) {
-?>
-<table width="100%" border="0" cellspacing="0" cellpadding="0" class="toolbar">
- <tr>
- <td valign="top">
- <?php int_hint_red(admin_language("la_Warning_Save_Item")); ?>
- </td>
- </tr>
-</table>
-<?php } ?>
-<TABLE cellSpacing="0" cellPadding="2" width="100%" class="tableborder">
-<FORM ID="topic" NAME="topic" method="POST" ACTION="">
-
-<?php int_subsection_title("Relation"); ?>
-
-<TR <?php int_table_color(); ?> >
- <TD>
- <span class="text"><?php echo prompt_language("la_prompt_RelationId"). ":</span></TD><TD>".$Rel->Get("RelationshipId"); ?>
- </TD>
- <TD>&nbsp;</TD>
-</TR>
-
-<TR <?php int_table_color(); ?> >
- <TD><span class="text"><?php echo prompt_language("la_prompt_Item"); ?></SPAN></TD>
- <TD>
- <IMG src="<?php echo $Rel->Admin_Icon(); ?>" align="absmiddle"><SPAN id="TargetName"><?php echo $item[$item["TitleField"]]; ?></SPAN> <SPAN ID="TargetTypeName">(<?php echo prompt_language("la_Text_".$item["SourceTable"]); ?>)</SPAN>
- </TD>
- <TD>&nbsp;</TD>
-</TR>
-<TR <?php int_table_color(); ?> >
- <TD><span class="text"><?php echo prompt_language("la_prompt_Type"); ?></SPAN></TD>
- <TD>
-
-<?php
- $Recip = "";
- $OneWay = "";
- if($Rel->Get("Type")=="1")
- {
- $Recip = " CHECKED";
- }
- else
- $OneWay = " CHECKED";
-?>
- <input type="radio" tabindex="1" name="RelType" VALUE=1 <?php echo $Recip; ?>><?php echo prompt_language("la_Text_Reciprocal"); ?>
- <input type="radio" tabindex="1" name="RelType" VALUE=0 <?php echo $OneWay; ?>><?php echo prompt_language("la_Text_OneWay"); ?>
- </TD>
- <TD>&nbsp;</TD>
-</TR>
-
- <TR <?php int_table_color(); ?> >
- <TD><span class="text"><?php echo prompt_language("la_prompt_Enabled"); ?></SPAN></TD>
- <TD>
- <?php
- $checked = "";
- $unchecked = "";
- if($Rel->Get("Enabled")=="1")
- {
- $checked = " CHECKED";
- }
- else
- {
- $unchecked = " CHECKED";
- }
- ?>
- <input type="radio" tabindex="2" VALUE="1" name="Enabled" <?php echo $checked; ?>><?php echo prompt_language("la_Text_Enabled"); ?>
- <input type="radio" tabindex="2" VALUE="0" name="Enabled" <?php echo $unchecked; ?>><?php echo prompt_language("la_Text_Disabled"); ?>
- </TD>
- <TD>&nbsp;</TD>
-</TR>
-<TR <?php int_table_color(); ?> >
- <TD><span class="text"><?php echo prompt_language("la_prompt_Priority"); ?></SPAN></TD>
- <TD>
- <INPUT TYPE="TEXT" tabindex="3" SIZE="5" NAME="priority" VALUE="<?php echo $Rel->Get("Priority"); ?>"> <?php echo prompt_language("la_prompt_Priority"); ?>
- </TD>
- <TD>&nbsp;</TD>
-</TR>
-
- <input type="hidden" name="TargetId" value ="<?php echo $Rel->Get("TargetId"); ?>">
- <input type="hidden" name="TargetType" value ="<?php echo $Rel->Get("TargetType"); ?>">
- <input type="hidden" name="SourceType" value ="<?php echo $Rel->Get("SourceType"); ?>">
- <input type="hidden" name="SourceId" value ="<?php echo $c->Get("ResourceId"); ?>">
- <INPUT TYPE="hidden" NAME="RelationshipId" VALUE="<?php echo $Rel->Get("RelationshipId"); ?>">
- <input type="hidden" name="Action" value="<?php echo $action; ?>">
- <input type="hidden" name="TopicEditStatus" VALUE="0">
-</FORM>
-</TABLE>
-
-
-<FORM NAME="save_edit_buttons" ID="save_edit_buttons" method="POST" ACTION="">
- <tr <?php int_table_color(); ?>>
- <td colspan="3">
- <input type=hidden NAME="Action" VALUE="save_cat_edit">
- <input type="hidden" name="TopicEditStatus" VALUE="0">
- </td>
- </tr>
-</FORM>
-
-
-
-<!-- CODE FOR VIEW MENU -->
-<form method="post" action="user_groups.php?<?php echo $envar; ?>" name="viewmenu">
-<input type="hidden" name="fieldname" value="">
-<input type="hidden" name="varvalue" value="">
-<input type="hidden" name="varvalue2" value="">
-<input type="hidden" name="Action" value="">
-</form>
-<!-- END CODE-->
-<?php int_footer(); ?>
Property changes on: trunk/in-bulletin/admin/addrelation.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.7
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/images/tool_forum_new_censor.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin/images/tool_forum_new_censor.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin/images/icon16_topic_attn.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin/images/icon16_topic_attn.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin/images/icon16_topic.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin/images/icon16_topic.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin/images/icon16_topic_denied.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin/images/icon16_topic_denied.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin/images/tool_forum_new_smiley_f3.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin/images/tool_forum_new_smiley_f3.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin/images/tool_forum_new_smiley_f2.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin/images/tool_forum_new_smiley_f2.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin/images/tool_forum_new_custom_f3.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin/images/tool_forum_new_custom_f3.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin/images/tool_forum_new_custom_f2.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin/images/tool_forum_new_custom_f2.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin/images/icon16_topic_disabled.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin/images/icon16_topic_disabled.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin/images/icon16_topic_locked.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin/images/icon16_topic_locked.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin/images/icon16_topic_deleted.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin/images/icon16_topic_deleted.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin/images/tool_forum_new_smiley.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin/images/tool_forum_new_smiley.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin/images/tool_forum_new_custom.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin/images/tool_forum_new_custom.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin/images/icon16_topic_pending.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin/images/icon16_topic_pending.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin/images/icon16_topic_new.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin/images/icon16_topic_new.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin/images/icon16_topic_pick.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin/images/icon16_topic_pick.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin/images/icon16_topic_top.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin/images/icon16_topic_top.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin/images/icon16_topic_hot.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin/images/icon16_topic_hot.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin/images/tool_forum_new_censor_f3.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin/images/tool_forum_new_censor_f3.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin/images/tool_forum_new_censor_f2.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin/images/tool_forum_new_censor_f2.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin/images/icon46_phpbb.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin/images/icon46_phpbb.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin/images
===================================================================
--- trunk/in-bulletin/admin/images (revision 12824)
+++ trunk/in-bulletin/admin/images (nonexistent)
Property changes on: trunk/in-bulletin/admin/images
___________________________________________________________________
Deleted: svn:ignore
## -1 +0,0 ##
-Thumbs.db
Index: trunk/in-bulletin/admin/reviews.php
===================================================================
--- trunk/in-bulletin/admin/reviews.php (revision 12824)
+++ trunk/in-bulletin/admin/reviews.php (nonexistent)
@@ -1,75 +0,0 @@
-<?php
-##############################################################
-##In-portal ##
-##############################################################
-## In-portal ##
-## Intechnic Corporation ##
-## All Rights Reserved, 1998-2002 ##
-## ##
-## No portion of this code may be copied, reproduced or ##
-## otherwise redistributed without proper written ##
-## consent of Intechnic Corporation. Violation will ##
-## result in revocation of the license and support ##
-## privileges along maximum prosecution allowed by law. ##
-##############################################################
-global $rootURL, $imagesURL, $adminURL,$admin;
-
-if(!$pathtoroot) die('error: no base path defined');
-
-//$rootURL="http://".ThisDomain().$objConfig->Get("Site_Path");
-$localURL=$rootURL."in-bulletin/";
-
-//$imagesURL = $rootURL."admin/images";
-
-//admin only util
-
-$pathtolocal = $pathtoroot."in-bulletin/";
-
-//require_once ($pathtoroot."admin/include/elements.php");
-//require_once ($pathtoroot."kernel/admin/include/navmenu.php");
-require_once ($pathtolocal."admin/include/navmenu.php");
-require_once($pathtoroot.$admin."/listview/columnheader.php");
-
-//Set Section
-$section = 'in-bulletin:reviews';
-//Set Environment Variable
-$envar = "env=" . BuildEnv($mod_prefixes);
-
-$localImageURL = $localURL."admin/images";
-
-if( $objSession->HasCatPermission("TOPIC.VIEW") )
-{
-?>
-<!-- TOPICS-->
-<div id="topic_reviews" class="ini_tab" isTab="true" tabTitle="Topics" PrefixSpecial="rev.topics" ActionPrefix="m_review_direct_" EditURL="admin/addreview_direct">
-
-<table cellSpacing=0 cellPadding=2 width="100%" class="tabTable">
- <tbody>
- <tr>
- <td align="left" width="70%">
- <img height=15 src="<?php echo $imagesURL; ?>/arrow.gif" width=15 align=absMiddle border=0>
- <b class=text><?php echo prompt_language("la_Page"); ?></b> <?php print $objTopicReviewList->GetAdminPageLinkList($_SERVER["PHP_SELF"]); ?>
- </td>
- <td align="right" width="30%">
- <?php ShowSearchForm('bb', $envar, 'topic_reviews','_review_direct_search'); ?>
- </td>
- </tr>
- </tbody>
-</table><br>
-<form name="topic_reviews_form" action="" method=post>
- <input type="hidden" name="Action">
- <table cellSpacing=0 cellPadding=2 width="100%" border=0>
- <tbody>
- <?php
- print $objTopicReviewList->AdminPrintItems($pathtoroot.'in-bulletin/admin/templates/topic_review_element.tpl');
- ?>
- </tbody>
- </table>
-</form>
-</div>
-
-<!-- END TOPICS-->
-<?php
-}
-?>
-
Property changes on: trunk/in-bulletin/admin/reviews.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/item_select.php
===================================================================
--- trunk/in-bulletin/admin/item_select.php (revision 12824)
+++ trunk/in-bulletin/admin/item_select.php (nonexistent)
@@ -1,160 +0,0 @@
-<?php
-##############################################################
-##In-portal ##
-##############################################################
-## In-portal ##
-## Intechnic Corporation ##
-## All Rights Reserved, 1998-2002 ##
-## ##
-## No portion of this code may be copied, reproduced or ##
-## otherwise redistributed without proper written ##
-## consent of Intechnic Corporation. Violation will ##
-## result in revocation of the license and support ##
-## privileges along maximum prosecution allowed by law. ##
-##############################################################
-
-// MAY BE FILE NOT IN USE
-// new startup: begin
-define('REL_PATH', 'in-bulletin/admin');
-$relation_level = count( explode('/', REL_PATH) );
-define('FULL_PATH', realpath(dirname(__FILE__) . str_repeat('/..', $relation_level) ) );
-require_once FULL_PATH.'/kernel/startup.php';
-// new startup: end
-
-$pathtolocal = $pathtoroot."kernel/";
-require_once ($pathtoroot.$admin."/include/elements.php");
-//require_once ($pathtoroot."kernel/admin/include/navmenu.php");
-require_once ($pathtolocal."admin/include/navmenu.php");
-require_once($pathtoroot.$admin."/toolbar.php");
-
-$section = 'inportal:item_select';
-
-//Set Environment Variable
-$envar = "env=" . BuildEnv();
-
-echo $envar."<br>\n";
-//$targetform= $_GET["destform"];
-//$targetfield= $_GET["destfield"];
-$homeenv=HomeEnv();
-$linkup=UpEnv();
-
-$objCatToolBar = new clsToolBar();
-$objCatToolBar->Set("section","inportal:browse");
-$objCatToolBar->Set("load_menu_func","");
-$objCatToolBar->Set("CheckClass","");
-
-$catImages = array();
- //$img, $alt, $link, $onMouseOver, $onMouseOut, $onClick
-$objCatToolBar->Add("up","Up","javascript:DoCatNav('".$linkup."');", "swap('up','tool_up_1.gif');","swap('up', 'tool_up.gif');","");
-$objCatToolBar->Add("home","Home", "javascript:DoCatNav('$homeenv'); ","swap('home','tool_home_1.gif');","swap('home', 'tool_home.gif');","");
-$objCatToolBar->Add("divider");
-
-$objCatToolBar->AddToInitScript($catImages);
-
-//Display header
-
-int_header($objCatToolBar);
-
-if(strlen($_GET["values"]))
-{
- $current_value = explode(",",$_GET["values"]);
-}
-?>
-<!-- CATEGORY NAVIGATOR -->
-
-<table width="100%" border="0" cellspacing="0" cellpadding="2" bgcolor="#E0E0DA">
- <tr>
- <td><img src="<?php echo $imagesURL; ?>/arrow.gif" border="0" width="15" height="15" align="absmiddle"><b class="text"><span class="navbar"> <?php echo m_navbar(1); ?></span></b></td>
- </tr>
-</table>
-
-<H1 CLASS="selector"><?php echo $_GET["title"]; ?></H1>
-
-<!-- CATEGORY DIVIDER -->
-<table width="100%" border="0" cellspacing="0" cellpadding="0">
-
- <tr>
- <?php
- if($m_tab_CatTab_hide!=1)
- {
- $divimage="/divider_up.gif";
- }
- else
- $divimage="/divider_dn.gif";
- ?>
- <td width="19" height="21" class="divider_tab"><img src="<?php print $imagesURL.$divimage; ?>" border="0" width="20" height="20" onClick="config_val('m_tab_CatTab_hide',flip(m_tab_CatTab_hide));"></td>
- <td nowrap class="divider_tab">Categories: <span class="cats_stats">(<?php echo m_cat_num(); ?>)</span></td>
- <td width="19" height="21" class="divider_tab"><img src="<?php print $imagesURL; ?>/divider_right.gif" border="0" width="20" height="20"></td>
- <td width="100%"></td>
- </tr>
- <tr class="divider">
- <td colspan="4"><img src="<?php print $imagesURL; ?>/spacer.gif" border="0" width="1" height="1"></td>
- </tr>
-</table>
-<!-- CATEGORY OUTPUT START -->
-<?php
-
-print adListCats_Selector($objCatList->CurrentCategoryID());
-
-if(is_array($current_value))
-{
- for($i=0;$i<count($current_value);$i++)
- {
- $values[] = "CategoryChecks.CheckList.push(".$current_value[$i].");\n CategoryChecks.CheckValues[".$current_value[$i]."]=1;";
- }
- $cats = implode("\n", $values);
- $o ="
- <script language=\"javascript\">
- <!--
- $cats
- //-->
- </script>
- ";
- print $o;
-}
-?>
-<!-- CATEGORY OUTPUT END -->
-
-<!-- CODE FOR VIEW MENU -->
-<form method="post" action="browse.php?env=<?php echo BuildEnv(); ?>" name="viewmenu">
-<input type="hidden" name="fieldname" value="">
-<input type="hidden" name="varvalue" value="">
-<input type="hidden" name="varvalue2" value="">
-<input type="hidden" name="Action" value="">
-</form>
-<!-- END CODE-->
-
-<FORM method="POST" ACTION="" NAME="catnav">
-<INPUT TYPE="HIDDEN" NAME="TargetAction" VALUE="<?php echo $_POST["TargetAction"]; ?>">
-<INPUT TYPE="HIDDEN" NAME="SourceId" VALUE="<?php echo $_POST["SourceId"]; ?>">
-<INPUT TYPE="HIDDEN" NAME="SourceType" VALUE="<?php echo $_POST["SourceType"]; ?>">
-<input type="HIDDEN" name="TargetType" VALUE="<?php echo $_POST["TargetType"]; ?>">
-</FORM>
-<!-- TOPIC OUTPUT BEGIN -->
- <form method=post action="" name="newslistform">
- <input type="hidden" name="Action" value="<?php echo $_POST["TargetAction"]; ?>">
-<?php
- foreach($_POST as $key=>$value)
- {
- print "<INPUT TYPE=hidden NAME=\"$key\" VALUE=\"$value\">";
- }
- print "<INPUT TYPE=hidden NAME=\"TargetType\" VALUE=\"3\">";
- print adListTopicsSelector($objCatList->CurrentCategoryID(),$pathtoroot.$admin."/templates/topic_select_element.tpl");
-// print n_news_nav_admin();
-?>
-
-<br><CENTER>
-<TABLE BORDER=0>
-<TR><TD>
-<INPUT TYPE="BUTTON" CLASS="button" Value="Cancel" ONCLICK="window.close();">
-</TD>
-<TD WIDTH=100>
-<TD>
-<b><INPUT TYPE="SUBMIT" CLASS="button" Value="Select" ONCLICK="window.opener.navigate(window.opener.location); //window.close();"></B>
-</TD>
-</TR>
-</TABLE>
-</CENTER>
-</form>
-
- <?php int_footer(); ?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/item_select.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/addtopic_images.php
===================================================================
--- trunk/in-bulletin/admin/addtopic_images.php (revision 12824)
+++ trunk/in-bulletin/admin/addtopic_images.php (nonexistent)
@@ -1,277 +0,0 @@
-<?php
-##############################################################
-##In-portal ##
-##############################################################
-## In-portal ##
-## Intechnic Corporation ##
-## All Rights Reserved, 1998-2002 ##
-## ##
-## No portion of this code may be copied, reproduced or ##
-## otherwise redistributed without proper written ##
-## consent of Intechnic Corporation. Violation will ##
-## result in revocation of the license and support ##
-## privileges along maximum prosecution allowed by law. ##
-##############################################################
-
-// new startup: begin
-define('REL_PATH', 'in-bulletin/admin');
-$relation_level = count( explode('/', REL_PATH) );
-define('FULL_PATH', realpath(dirname(__FILE__) . str_repeat('/..', $relation_level) ) );
-require_once FULL_PATH.'/kernel/startup.php';
-// new startup: end
-
-$pathtolocal = $pathtoroot."in-bulletin/";
-require_once ($pathtoroot.$admin."/include/elements.php");
-require_once ($pathtoroot."kernel/admin/include/navmenu.php");
-require_once ($pathtolocal."admin/include/navmenu.php");
-require_once($pathtoroot.$admin."/toolbar.php");
-require_once($pathtoroot.$admin."/listview/listview.php");
-
-unset($objEditItems);
-
-$objEditItems = new clsTopicList();
-$objEditItems->SourceTable = $objSession->GetEditTable("Topic");
-$objEditItems->EnablePaging = FALSE;
-
-//Multiedit init
-$en = (int)$_GET["en"];
-$objEditItems->Query_Item("SELECT * FROM ".$objEditItems->SourceTable);
-$itemcount=$objEditItems->NumItems();
-$c = $objEditItems->GetItemByIndex($en);
-$objImageList = new clsImageList();
-$objImageList->SourceTable = $objSession->GetEditTable("Images");
-
-if($itemcount>1)
-{
- if ($en+1 == $itemcount)
- $en_next = -1;
- else
- $en_next = $en+1;
-
- if ($en == 0)
- $en_prev = -1;
- else
- $en_prev = $en-1;
-}
-$action = "m_item_image";
-
-$envar = "env=" . BuildEnv() . "&en=$en";
-$saveURL = $admin."/".$objSession->GetVariable('ReturnScript');
-$section = 'in-bulletin:edittopic_images';
-
-$objListToolBar = new clsToolBar();
-$objListToolBar->Add("img_save", "la_Save","#","swap('img_save','toolbar/tool_select_f2.gif');", "swap('img_save', 'toolbar/tool_select.gif');","do_edit_save('save_edit_buttons','".$saveURL."',1);","tool_select.gif");
-$objListToolBar->Add("img_cancel", "la_Cancel","#","swap('img_cancel','toolbar/tool_cancel_f2.gif');", "swap('img_cancel', 'toolbar/tool_cancel.gif');","do_edit_save('save_edit_buttons','".$saveURL."',2);","tool_cancel.gif");
-if($itemcount == 1) $objListToolBar->Add("divider");
-
-$objListToolBar->Set("section",$section);
-$objListToolBar->Set("load_menu_func","");
-$objListToolBar->Set("CheckClass","PermChecks");
-$objListToolBar->Set("CheckForm","imagelistform");
-
-//Display header
-$sec = $objSections->GetSection($section);
-if ( isset($en_prev) || isset($en_next) )
-{
- $url = $RootUrl."in-bulletin/admin/addtopic_images.php";
- $StatusField = "TopicEditStatus";
- $form = "topic";
- MultiEditButtons($objListToolBar,$en_next,$en_prev,$form,$StatusField,$url,$sec->Get("OnClick"));
- $objListToolBar->Add("divider");
-}
-
-
-$listImages = array();
- //$img, $alt, $link, $onMouseOver, $onMouseOut, $onClick
-
-$objListToolBar->Add("new_img", "la_ToolTip_New_Image",$rootURL."in-bulletin/admin/addimage.php?".$envar,"swap('new_img','toolbar/tool_new_image_f2.gif');",
- "swap('new_img', 'toolbar/tool_new_image.gif');",
- "","tool_new_image.gif");
-
-$objListToolBar->Add("img_edit","la_ToolTip_Edit","#", "if (PermChecks.itemChecked()) swap('img_edit','toolbar/tool_edit_f2.gif');",
- "if (PermChecks.itemChecked()) swap('img_edit', 'toolbar/tool_edit.gif');","if (PermChecks.itemChecked()) PermChecks.check_submit('addimage', '');",
- "tool_edit.gif",TRUE,TRUE);
-$listImages[] = "PermChecks.addImage('img_edit','$imagesURL/toolbar/tool_edit.gif','$imagesURL/toolbar/tool_edit_f3.gif',1); ";
-
-$objListToolBar->Add("img_del","la_ToolTip_Delete","#", "if (PermChecks.itemChecked()) swap('img_del','toolbar/tool_delete_f2.gif');",
- "if (PermChecks.itemChecked()) swap('img_del', 'toolbar/tool_delete.gif');","if (PermChecks.itemChecked()) PermChecks.check_submit('addtopic_images', 'm_img_delete');",
- "tool_delete.gif",FALSE,TRUE);
-$listImages[] = "PermChecks.addImage('img_del','$imagesURL/toolbar/tool_delete.gif','$imagesURL/toolbar/tool_delete_f3.gif',1); ";
-
-$objListToolBar->Add("divider");
-
-$objListToolBar->Add("img_move_up","la_ToolTip_Move_Up","#", "if (PermChecks.itemChecked()) swap('img_move_up','toolbar/tool_move_up_f2.gif');",
- "if (PermChecks.itemChecked()) swap('img_move_up', 'toolbar/tool_move_up.gif');","if (PermChecks.itemChecked()) PermChecks.check_submit('addtopic_images', 'm_img_move_up');",
- "tool_move_up.gif",FALSE,TRUE);
-$listImages[] = "PermChecks.addImage('img_move_up','$imagesURL/toolbar/tool_move_up.gif','$imagesURL/toolbar/tool_move_up_f3.gif',1); ";
-
-$objListToolBar->Add("img_move_down","la_ToolTip_Move_Down","#", "if (PermChecks.itemChecked()) swap('img_move_down','toolbar/tool_move_down_f2.gif');",
- "if (PermChecks.itemChecked()) swap('img_move_down', 'toolbar/tool_move_down.gif');","if (PermChecks.itemChecked()) PermChecks.check_submit('addtopic_images', 'm_img_move_down');",
- "tool_move_down.gif",FALSE,TRUE);
-$listImages[] = "PermChecks.addImage('img_move_down','$imagesURL/toolbar/tool_move_down.gif','$imagesURL/toolbar/tool_move_down_f3.gif',1); ";
-
-
-$objListToolBar->Add("divider");
-
-$objListToolBar->Add("viewmenubutton", "la_ToolTip_View","#","swap('viewmenubutton','toolbar/tool_view_f2.gif'); ",
- "swap('viewmenubutton', 'toolbar/tool_view.gif');",
- "ShowViewMenu();","tool_view.gif");
-
-
-$objListToolBar->AddToInitScript($listImages);
-
-/* ----------------------------------------- Set the View Filter ---------------------------------------- */
-$Img_AllValue = 3;
-$Bit_Enabled=1;
-$Bit_Disabled=2;
-$FilterLabels = array();
-
-$FilterLabels[0] = admin_language("la_Text_Enabled");
-$FilterLabels[1] = admin_language("la_Text_Disabled");
-
-$ImgView = $objConfig->Get("TopicImg_View");
-
-if(!is_numeric($ImgView))
-{
- $ImgView = $Img_AllValue;
-}
-else
-{
- if($ImgView & $Bit_Enabled)
- $Filters[] = "img.Enabled=1";
-
- if($ImgView & $Bit_Disabled)
- $Filters[] = "img.Enabled=0";
-
- if(count($Filters))
- {
- $imgFilter = implode(" OR ",$Filters);
- }
- else
- $imgFilter = "ImageId = -1";
-}
-
-$objListToolBar->AddToInitScript("fwLoadMenus(); \n");
-
-$filter = false; // always initialize variables before use
-if ($ImgView != $Img_AllValue) {
- $filter = true;
-}
-
-
-$title = prompt_language("la_Text_Editing")." ".prompt_language("la_Text_Topic")." '".$c->Get("TopicText")."' - ".prompt_language("la_tab_Images");
-int_header($objListToolBar,NULL, $title);
-if ($objSession->GetVariable("HasChanges") == 1) {
-?>
-<table width="100%" border="0" cellspacing="0" cellpadding="0" class="toolbar">
- <tr>
- <td valign="top">
- <?php int_hint_red(admin_language("la_Warning_Save_Item")); ?>
- </td>
- </tr>
-</table>
-<?php } ?>
-<?php if ($filter) { ?>
-<table width="100%" border="0" cellspacing="0" cellpadding="0" class="toolbar">
- <tr>
- <td valign="top">
- <?php int_hint_red(admin_language("la_Warning_Filter")); ?>
- </td>
- </tr>
-</table>
-<?php } ?>
-<form name="imagelistform" ID="imagelistform" action="<?php echo $_SERVER["PHP_SELF"]."?".$envar;?>" method=POST>
-<table cellSpacing="0" cellPadding="2" width="100%" class="tableborder">
-<tbody>
-<?php
-$objImageList = new clsImageList();
-$objImageList->SourceTable = $objSession->GetEditTable("Images");
-$sql = "SELECT ELT(img.Enabled+1,'".admin_language("la_Text_Disabled")." ','".admin_language("la_Text_Enabled")." ') as Status, ";
-$sql .="img.AltName as AltName, img.ImageId as ImageId, img.Enabled as Enabled, img.Priority as Priority, ";
-$sql .="concat(img.Name,ELT(img.DefaultImg+1,'','<br>(".admin_language("la_prompt_Primary").") ')) as FullName, ";
-$sql .="if(img.LocalImage=1,'(".admin_language("la_Text_Local").") ',img.Url) as ShowURL, concat( '<IMG src=\"',";
-$sql .="IF (img.LocalThumb=1, CASE WHEN ( LENGTH( img.ThumbPath ) >0 AND img.LocalThumb =1 ) ";
-$sql .="THEN concat('".$rootURL."',img.ThumbPath,'?".adodb_mktime()."' ) END , img.ThumbUrl), '\">') AS Preview ";
-
-$sql .="FROM ".$objImageList->SourceTable." as img WHERE img.ResourceId=".$c->Get("ResourceId");
-
-if(strlen($imgFilter))
- $sql .= " AND ($imgFilter)";
-
-$total_records = QueryCount($sql);
-$objImageList->RefreshPage('Page_Images', $total_records);
-$sql .=" ".GetLimitSQL($objSession->GetVariable("Page_Images"),$objConfig->Get("Perpage_Images"));
-
-$objImageList->Query_item($sql);
-
-if($objSession->HasSystemPermission("DEBUG.LIST"))
- echo htmlentities($sql,ENT_NOQUOTES)."<br>\n";
-
-for($i=0;$i<count($objImageList->Items);$i++)
-{
- $img =& $objImageList->GetItemRefByIndex($i);
- $icon = $imagesURL."/itemicons/icon16_image_disabled.gif";
-
- if($img->Get("Enabled")=="1")
- {
- $icon = $imagesURL."/itemicons/icon16_image.gif";
- }
- $img->Set("Icon",$icon);
-}
-
- $objListView = new clsListView($objListToolBar,$objImageList);
- $objListView->IdField = "ImageId";
- $order = $objConfig->Get("Image_LV_Sortfield");
- $SortOrder=0;
- if($objConfig->Get("Image_LV_Sortorder")=="asc")
- $SortOrder=1;
-
- $objListView->ColumnHeaders->Add("FullName",admin_language("la_ColHeader_Image"),1,0,$order,"width=\"10%\"","TopicImage_LV_Sortfield","TopicImage_LV_Sortorder","FullName");
- $objListView->ColumnHeaders->Add("AltName",admin_language("la_ColHeader_AltValue"),1,0,$order,"width=\"20%\"","TopicImage_LV_Sortfield","TopicImage_LV_Sortorder","AltName");
- $objListView->ColumnHeaders->Add("ShowURL",admin_language("la_ColHeader_Url"),1,0,$order,"width=\"20%\"","TopicImage_LV_Sortfield","TopicImage_LV_Sortorder","ShowURL");
- $objListView->ColumnHeaders->Add("Status",admin_language("la_ColHeader_Enabled"),1,0,$order,"width=\"10%\"","TopicImage_LV_Sortfield","TopicImage_LV_Sortorder","Status");
- $objListView->ColumnHeaders->Add("Preview",admin_language("la_ColHeader_Preview"),1,0,$order,"width=\"40%\"","TopicImage_LV_Sortfield","TopicImage_LV_Sortorder","Preview");
-
- $objListView->ColumnHeaders->SetSort($objConfig->Get("TopicImage_LV_Sortfield"), $objConfig->Get("TopicImage_LV_Sortorder"));
-
- $objListView->PrintToolBar = FALSE;
- $objListView->CurrentPageVar = "Page_Images";
- $objListView->PerPageVar = "Perpage_Images";
- $objListView->CheckboxName = "itemlist[]";
- $objListView->TotalItemCount = $total_records;
-
- for($i=0;$i<count($objImageList->Items);$i++)
- {
- $img =& $objImageList->GetItemRefByIndex($i);
- $objListView->RowIcons[] = $img->Get("Icon");
- }
-
- $objListView->SliceItems();
- print $objListView->PrintList();
-
-?>
- <input TYPE="hidden" NAME="ResourceId" VALUE="<?php echo $c->Get("ResourceId"); ?>">
- <input type="hidden" name="Action" value="m_item_image">
-
-</FORM>
-</TBODY>
-</table>
-<FORM NAME="save_edit_buttons" ID="save_edit_buttons" method="POST" ACTION="">
- <input type=hidden NAME="Action" VALUE="save_category_edit">
- <input type="hidden" name="TopicEditStatus" VALUE="0">
-</FORM>
-
-<!-- CODE FOR VIEW MENU -->
-<form ID="viewmenu" method="post" action="<?php echo $_SERVER["PHP_SELF"]."?".$envar; ?>" name="viewmenu">
-<input type="hidden" name="fieldname" value="">
-<input type="hidden" name="varvalue" value="">
-<input type="hidden" name="varvalue2" value="">
-<input type="hidden" name="Action" value="">
-</form>
-<script src="<?php echo $adminURL; ?>/listview/listview.js"></script>
-<script>
-initSelectiorContainers();
-<?php echo $objListToolBar->Get("CheckClass").".setImages();"; ?>
-</script>
-<!-- END CODE-->
-<?php int_footer(); ?>
Property changes on: trunk/in-bulletin/admin/addtopic_images.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.10
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/emoticon_config.php
===================================================================
--- trunk/in-bulletin/admin/emoticon_config.php (revision 12824)
+++ trunk/in-bulletin/admin/emoticon_config.php (nonexistent)
@@ -1,176 +0,0 @@
-<?php
-##############################################################
-##In-portal ##
-##############################################################
-## In-portal ##
-## Intechnic Corporation ##
-## All Rights Reserved, 1998-2002 ##
-## ##
-## No portion of this code may be copied, reproduced or ##
-## otherwise redistributed without proper written ##
-## consent of Intechnic Corporation. Violation will ##
-## result in revocation of the license and support ##
-## privileges along maximum prosecution allowed by law. ##
-##############################################################
-
-// new startup: begin
-define('REL_PATH', 'in-bulletin/admin');
-$relation_level = count( explode('/', REL_PATH) );
-define('FULL_PATH', realpath(dirname(__FILE__) . str_repeat('/..', $relation_level) ) );
-require_once FULL_PATH.'/kernel/startup.php';
-// new startup: end
-checkViewPermission('in-bulletin:configuration_emoticon');
-
-$pathtolocal = $pathtoroot."in-bulletin/";
-require_once ($pathtoroot.$admin."/include/elements.php");
-require_once ($pathtoroot."kernel/admin/include/navmenu.php");
-require_once ($pathtolocal."admin/include/navmenu.php");
-require_once($pathtoroot.$admin."/toolbar.php");
-require_once($pathtoroot.$admin."/listview/listview.php");
-
-
-unset($objEditItems);
-
-/* -------------------------------------- Section configuration ------------------------------------------- */
-$section = "in-bulletin:configuration_emoticon";
-$envar = "env=".BuildEnv();
-$formaction = $_SERVER["PHP_SELF"]."?".$envar;
-$sec = $objSections->GetSection($section);
-
-$SortFieldVar = "Emoticon_LV_Sortfield";
-$SortOrderVar = "Emoticon_LV_Sortorder";
-$DefaultSortField = "Name";
-$PerPageVar = "Perpage_Emoticon";
-$CurrentPageVar = "Page_Emoticon";
-$CurrentFilterVar = "";
-
-$ListForm = "configform";
-$CheckClass = "FieldChecks";
-
-$formaction = $_SERVER["PHP_SELF"]."?".$envar;
-
-/* ------------------------------------- Configure the toolbar ------------------------------------------- */
-$objListToolBar = new clsToolBar();
-$objListToolBar->Set("section",$section);
-$objListToolBar->Set("load_menu_func","");
-$objListToolBar->Set("CheckClass",$CheckClass);
-$objListToolBar->Set("CheckForm",$ListForm);
-
-$listImages = array();
-
-$highURL = $rootURL."in-bulletin/admin/images/tool_forum_new_smiley_f2.gif";
-$lowURL = $rootURL."in-bulletin/admin/images/tool_forum_new_smiley.gif";
-
-$objListToolBar->Add("new_icon", "la_ToolTip_New_Emoticon",$rootURL."in-bulletin/admin/addemoticon.php?$envar&new=1","swap('new_icon','$highURL');",
- "swap('new_icon', '$lowURL');","",$lowURL);
-
-$objListToolBar->Add("icon_edit","la_ToolTip_Edit","#", "if (FieldChecks.itemChecked()) swap('icon_edit','toolbar/tool_edit_f2.gif');",
- "if (FieldChecks.itemChecked()) swap('icon_edit', 'toolbar/tool_edit.gif');","if (FieldChecks.itemChecked()) FieldChecks.check_submit('addemoticon', '');",
- "tool_edit.gif",TRUE,TRUE);
-$listImages[] = "FieldChecks.addImage('icon_edit','$imagesURL/toolbar/tool_edit.gif','$imagesURL/toolbar/tool_edit_f3.gif',1); ";
-
-$objListToolBar->Add("icon_del","la_ToolTip_Delete","#", "if (FieldChecks.itemChecked()) swap('icon_del','toolbar/tool_delete_f2.gif');",
- "if (FieldChecks.itemChecked()) swap('icon_del', 'toolbar/tool_delete.gif');","if (FieldChecks.itemChecked()) FieldChecks.check_submit('emoticon_config', 'bb_emoticon_delete');",
- "tool_delete.gif",FALSE,TRUE);
-$listImages[] = "FieldChecks.addImage('icon_del','$imagesURL/toolbar/tool_delete.gif','$imagesURL/toolbar/tool_delete_f3.gif',1); ";
-
-$objListToolBar->AddToInitScript($listImages);
-$objListToolBar->AddToInitScript("fwLoadMenus(); \n");
-
-$SearchWords = $objSession->GetVariable("EmoticonSearchWord");
-
-$objEmoticons = new clsEmoticonList();
-
-$order = trim($objConfig->Get("Emoticon_LV_Sortfield")." ".$objConfig->Get("Emoticon_LV_Sortorder"));
-
-if(strlen($SearchWords))
-{
- $where .= $objEmoticons->AdminSearchWhereClause($SearchWords);
-}
-
-if(!strlen($objConfig->Get($SortFieldVar)))
- $objConfig->Set($SortFieldVar,$DefaultSortField);
-
-$orderBy = trim($objConfig->Get($SortFieldVar)." ".$objConfig->Get($SortOrderVar));
-if(strlen($orderBy))
- $objEmoticons->LoadEmoticons($where, $orderBy);
-else
- $objEmoticons->LoadEmoticons($where);
-
-$count = $objEmoticons->NumItems();
-for($i=0;$i<$count;$i++)
-{
- $e =& $objEmoticons->GetItemRefByIndex($i);
- $img = $e->GetImageObject();
-
- $e->Set("Image","<IMG src=\"".$img->FullURL()."\">");
-}
-
-$objListView = new clsListView($objListToolBar,$objEmoticons);
-$objListView->IdField = "EmoticonId";
-
-$order = $objConfig->Get("Emoticon_LV_Sortfield");
-$objListView->ColumnHeaders->Add("Name",admin_language("la_prompt_Name"),1,0,$order,"width=\"30%\"","Emoticon_LV_Sortfield","Emoticon_LV_Sortorder","Name");
-$objListView->ColumnHeaders->Add("KeyStroke",admin_language("la_prompt_KeyStroke"),1,0,$order,"width=\"30%\"","Emoticon_LV_Sortfield","Emoticon_LV_Sortorder","KeyStroke");
-$objListView->ColumnHeaders->Add("Image",admin_language("la_prompt_Image"),1,0,$order,"width=\"30%\"","Emoticon_LV_Sortfield","Emoticon_LV_Sortorder","ImageId");
-
-$objListView->ColumnHeaders->SetSort($objConfig->Get("Emoticon_LV_Sortfield"), $objConfig->Get("Emoticon_LV_Sortorder"));
-
-$objListView->PrintToolBar = FALSE;
-$objListView->checkboxes = TRUE;
-$objListView->SearchBar = TRUE;
-$objListView->SearchKeywords = $SearchWords;
-$objListView->SearchAction="bb_emoticon_search";
-$objListView->CurrentPageVar = "Page_Emoticon";
-$objListView->PerPageVar = "Perpage_Emoticon";
-$objListView->CheckboxName = "itemlist[]";
-
-$objListView->ConfigureViewMenu($SortFieldVar,$SortOrderVar,$DefaultSortField,"","",0);
-
-$filter = false;
-if ($SearchWords != '') {
- $filter = true;
-}
-
-$title = prompt_language("la_Text_Editing")." ".prompt_language("la_Text_Emoticons");
-$h = "\n\n<SCRIPT Language=\"JavaScript1.2\">\n".$objListView->GetViewMenu($imagesURL)."\n</SCRIPT>\n";
-
-int_header($objListToolBar,NULL,$title, NULL, $h);
-if ($filter) { ?>
-<table width="100%" border="0" cellspacing="0" cellpadding="0" class="toolbar">
- <tr>
- <td valign="top">
- <?php int_hint_red(admin_language("la_Warning_Filter")); ?>
- </td>
- </tr>
-</table>
-<?php } ?>
-<form name="configform" ID="configform" action="<?php echo $_SERVER["PHP_SELF"]."?".$envar;?>" method=POST>
-<table cellSpacing="0" cellPadding="2" width="100%" class="tableborder">
-<tbody>
-<?php
-$objListView->PageLinks = $objListView->PrintPageLinks(); /* call this before we slice! */
-$objListView->SliceItems();
-print $objListView->PrintList();
-?>
- <input type="hidden" name="Action" value="bb_config_emoticon">
-</FORM>
-<!-- CODE FOR VIEW MENU -->
-<form ID="viewmenu" method="post" action="<?php echo $_SERVER["PHP_SELF"]."?".$envar; ?>" name="viewmenu">
-<input type="hidden" name="fieldname" value="">
-<input type="hidden" name="varvalue" value="">
-<input type="hidden" name="varvalue2" value="">
-<input type="hidden" name="Action" value="">
-</form>
-<FORM ID="ListSearchForm" NAME="ListSearchForm" method="POST" action="<?php echo $_SERVER["PHP_SELF"]."?env=".BuildEnv(); ?>">
- <INPUT TYPE="HIDDEN" NAME="Action" VALUE="">
- <INPUT TYPE="HIDDEN" NAME="list_search">
-</FORM>
-
-<script src="<?php echo $adminURL; ?>/listview/listview.js"></script>
-<script>
-initSelectiorContainers();
-<?php echo $objListToolBar->Get("CheckClass").".setImages();"; ?>
-</script>
-<?php int_footer(); ?>
-
Property changes on: trunk/in-bulletin/admin/emoticon_config.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.7
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/addimage.php
===================================================================
--- trunk/in-bulletin/admin/addimage.php (revision 12824)
+++ trunk/in-bulletin/admin/addimage.php (nonexistent)
@@ -1,277 +0,0 @@
-<?php
-##############################################################
-##In-portal ##
-##############################################################
-## In-portal ##
-## Intechnic Corporation ##
-## All Rights Reserved, 1998-2002 ##
-## ##
-## No portion of this code may be copied, reproduced or ##
-## otherwise redistributed without proper written ##
-## consent of Intechnic Corporation. Violation will ##
-## result in revocation of the license and support ##
-## privileges along maximum prosecution allowed by law. ##
-##############################################################
-
-// new startup: begin
-define('REL_PATH', 'in-bulletin/admin');
-$relation_level = count( explode('/', REL_PATH) );
-define('FULL_PATH', realpath(dirname(__FILE__) . str_repeat('/..', $relation_level) ) );
-require_once FULL_PATH.'/kernel/startup.php';
-// new startup: end
-
-/* set the destination of the image upload, relative to the root path */
-$DestDir = 'in-bulletin/images/';
-
-$pathtolocal = $pathtoroot."in-bulletin/";
-require_once ($pathtoroot.$admin."/include/elements.php");
-require_once ($pathtoroot."kernel/admin/include/navmenu.php");
-require_once ($pathtolocal."admin/include/navmenu.php");
-require_once($pathtoroot.$admin."/browse/toolbar.php");
-require_once($pathtoroot.$admin."/listview/listview.php");
-
-unset($objEditCat);
-
-$objEditCat = new clsTopicList();
-$objEditCat->SourceTable = $objSession->GetEditTable("Topic");
-$objEditCat->EnablePaging = FALSE;
-//Multiedit init
-$en = (int)$_GET["en"];
-$objEditCat->Query_Item("SELECT * FROM ".$objEditCat->SourceTable);
-$itemcount=$objEditCat->NumItems();
-$c = $objEditCat->GetItemByIndex($en);
-
-unset($objEditItems);
-
-$objEditItems = new clsImageList();
-$objEditItems->SourceTable = $objSession->GetEditTable("Images");
-
-if(isset($_POST["itemlist"]))
-{
- if(is_array($_POST["itemlist"]))
- {
- $ImageId = $_POST["itemlist"][0];
- }
- else
- {
- $ImageId = $_POST["itemlist"];
- }
- $img = $objEditItems->GetItem($ImageId);
- $action = "m_img_edit";
- $name = $img->Get("Name");
- $img->Pending=TRUE;
-}
-else
-{
- $img = new clsImage();
- $img->Set("ResourceId",$c->Get("ResourceId"));
- $img->Set("ImageId",$img->FieldMin("ImageId")-1);
- $img->Pending=TRUE;
- $img->tablename = $objEditItems->SourceTable;
- $action = "m_img_add";
- $name = "'New Image'";
-}
-
-$envar = "env=" . BuildEnv() . "&en=$en";
-$section = 'in-bulletin:edittopic_image';
-$ado = &GetADODBConnection();
-
-/* page header */
-$charset = GetRegionalOption('Charset');
-print <<<END
-<html>
-<head>
- <title>In-portal</title>
- <meta http-equiv="content-type" content="text/html;charset=$charset">
- <meta http-equiv="Pragma" content="no-cache">
- <script language="JavaScript">
- imagesPath='$imagesURL'+'/';
- </script>
- <script src="$browseURL/common.js"></script>
- <script src="$browseURL/toolbar.js"></script>
- <script src="$browseURL/utility.js"></script>
- <script src="$browseURL/checkboxes_new.js"></script>
- <script language="JavaScript1.2" src="$browseURL/fw_menu.js"></script>
- <link rel="stylesheet" type="text/css" href="$browseURL/checkboxes.css">
- <link rel="stylesheet" type="text/css" href="$cssURL/style.css">
- <link rel="stylesheet" type="text/css" href="$browseURL/toolbar.css">
-END;
-
-
-$title = prompt_language("la_Text_Editing")." ".prompt_language("la_Text_Topic")." '".$c->Get("TopicText")."' - ".prompt_language("la_Text_Image");
-$title .= " '".$name."'";
-$objCatToolBar = new clsToolBar();
-$objCatToolBar->Add("img_save", "la_Save","#","swap('img_save','toolbar/tool_select_f2.gif');", "swap('img_save', 'toolbar/tool_select.gif');","do_image_save('topic','in-bulletin/admin/addtopic_images.php',0);",$imagesURL."/toolbar/tool_select.gif");
-$objCatToolBar->Add("img_cancel", "la_Cancel","#","swap('img_cancel','toolbar/tool_cancel_f2.gif');", "swap('img_cancel', 'toolbar/tool_cancel.gif');","edit_submit('topic','in-bulletin/admin/addtopic_images.php',-1);",$imagesURL."/toolbar/tool_cancel.gif");
-
-int_header($objCatToolBar,NULL,$title);
-if ($objSession->GetVariable("HasChanges") == 1) {
-?>
-<table width="100%" border="0" cellspacing="0" cellpadding="0" class="toolbar">
- <tr>
- <td valign="top">
- <?php int_hint_red(admin_language("la_Warning_Save_Item")); ?>
- </td>
- </tr>
-</table>
-<?php } ?>
-<TABLE cellSpacing="0" cellPadding="2" width="100%" class="tableborder">
-<FORM enctype="multipart/form-data" ID="topic" NAME="topic" method="POST" ACTION="">
-<?php int_subsection_title(prompt_language("la_Text_Image")); ?>
-<TR <?php int_table_color(); ?> >
- <TD><?php echo prompt_language("la_prompt_ImageId"); ?></TD>
- <TD><?php if ($img->Get("ImageId") != -1) echo $img->Get("ImageId"); ?></TD>
- <TD></TD>
-</TR>
-
-<TR <?php int_table_color(); ?> >
- <TD><SPAN class="text" id="prompt_imgName"><?php echo prompt_language("la_prompt_Name"); ?></SPAN></TD>
- <TD><input type=text NAME="imgName" ValidationType="exists" tabindex="1" size="30" VALUE="<?php echo inp_htmlize($img->parsetag("image_name")); ?>"></TD>
- <TD></TD>
-</TR>
-
-<TR <?php int_table_color(); ?> >
- <TD><SPAN class="text" id="prompt_imgAlt"><?php echo prompt_language("la_prompt_AltName"); ?></SPAN></TD>
- <TD><input type=text NAME="imgAlt" ValidationType="exists" tabindex="2" size="30" VALUE="<?php echo inp_htmlize($img->parsetag("image_alt")); ?>"></TD>
- <TD></TD>
-</TR>
-
-<TR <?php int_table_color(); ?> >
- <TD><?php echo prompt_language("la_prompt_Status"); ?></TD>
- <TD>
- <input type=RADIO tabindex="3" NAME="imgEnabled" <?php if($img->Get("Enabled")==1) echo "CHECKED"; ?> VALUE="1"><?php echo prompt_language("la_Text_Enabled"); ?>
- <input type=RADIO tabindex="3" NAME="imgEnabled" <?php if($img->Get("Enabled")==0) echo "CHECKED"; ?> VALUE="0"><?php echo prompt_language("la_Text_Disabled"); ?>
- </TD>
- <TD></TD>
-</TR>
-
-<TR <?php int_table_color(); ?> >
- <TD><?php echo prompt_language("la_prompt_Primary"); ?></TD>
- <TD><input type=checkbox tabindex="4" NAME="imgDefault" <?php if($img->Get("DefaultImg")==1) echo "CHECKED"; ?> VALUE="1"></TD>
- <TD></TD>
-</TR>
-
-<TR <?php int_table_color(); ?> >
- <TD><?php echo prompt_language("la_prompt_Priority"); ?></TD>
- <TD><input type=text SIZE="5" tabindex="5" NAME="imgPriority" VALUE="<?php echo $img->Get("Priority"); ?>"></TD>
- <TD></TD>
-</TR>
-
-
-<?php int_subsection_title(prompt_language("la_text_Thumbnail_Image")); ?>
-
-<TR <?php int_table_color(); ?> >
- <TD><?php echo prompt_language("la_prompt_Location"); ?></TD>
- <?php
- if($img->Get("LocalThumb")==1 || strlen($img->Get("LocalThumb"))==0)
- {
- $local="checked";
- $remote = "";
- }
- else
- {
- $remote="checked";
- $local = "";
- }
- ?>
- <TD>
- <TABLE border=0>
- <tr>
- <TD>
- <input type="radio" tabindex="6" name="imgLocalThumb" <?php echo $local; ?> VALUE="1"><?php echo prompt_language("la_prompt_upload"); ?>:
- </td>
- <td>
- <input type=FILE tabindex="7" NAME="imgThumbFile" VALUE=""> <br />
- </td>
- </tr>
- <tr>
- <td>
- <input type="radio" tabindex="6" name="imgLocalThumb" <?php echo $remote; ?> VALUE="0"> <?php echo prompt_language("la_prompt_remote_url"); ?>:
- </td>
- <td>
- <input type=text size=32 tabindex="8" NAME="imgThumbUrl" VALUE="<?php echo $img->Get("ThumbUrl"); ?>"> <br />
- </td>
- </tr>
- </table>
- </TD>
-
-
- <TD ALIGN="RIGHT">
- <IMG SRC="<?php echo $img->ThumbURL(); ?>">
- </TD>
-</TR>
-
-<?php int_subsection_title(prompt_language("la_Text_Full_Size_Image")); ?>
-
-<TR <?php int_table_color(); ?>>
- <TD><?php echo prompt_language("la_text_Same_As_Thumbnail"); ?></TD>
- <?php
- if(($img->Get("SameImages")=="1") || !$img->Get("ImageId") || ($img->Get("ImageId") == "-1"))
- {
-
- $checked = "CHECKED";
- $disabled = "DISABLED=\"true\"";
- }
- ?>
- <TD><input type=checkbox id="imgSameImages" tabindex="9" NAME="imgSameImages" VALUE="1" <?php echo $checked; ?> ONCLICK="enableFullImage(this);"></TD>
- <TD></TD>
-</TR>
-<TR <?php int_table_color(); ?>>
- <TD><?php echo prompt_language("la_prompt_Location"); ?></TD>
- <?php
- if($img->Get("LocalImage")==1 || strlen($img->Get("LocalImage"))==0)
- {
- $local="checked";
- $remote = "";
- }
- else
- {
- $remote="checked";
- $local = "";
- }
- ?>
- <TD>
- <TABLE border=0>
- <tr>
- <TD>
- <input id="full1" tabindex="10" type="radio" name="imgLocalFull" <?php echo $local; ?> VALUE="1"><?php echo prompt_language("la_prompt_upload"); ?>:
- </td>
- <td>
- <input type=FILE tabindex="11" ID="imgFullFile" NAME="imgFullFile" VALUE=""> <br />
- </td>
- </tr>
- <tr>
- <td>
- <input id="full2" tabindex="10" type="radio" name="imgLocalFull" <?php echo $remote; ?> VALUE="0"> <?php echo prompt_language("la_prompt_remote_url"); ?>:
- </td>
- <td>
- <input type=text tabindex="12" size=32 ID="imgFullUrl" NAME="imgFullUrl" VALUE="<?php echo $img->Get("Url"); ?>"> <br />
- </td>
- </tr>
- </table>
- </td>
- <TD ALIGN="RIGHT">
- <IMG SRC="<?php echo $img->FullURL(); ?>">
- </TD>
-</TR>
- <input type=hidden NAME="Action" VALUE="<?php echo $action; ?>">
- <input type="hidden" name="TopicEditStatus" VALUE="0">
- <input type="hidden" name="DestDir" VALUE="<?php echo $DestDir; ?>">
- <INPUT TYPE="hidden" NAME="ImageId" VALUE="<?php echo $img->Get("ImageId"); ?>">
- <input TYPE="HIDDEN" NAME="ResourceId" VALUE="<?php echo $c->Get("ResourceId"); ?>">
-</FORM>
-</TABLE>
-
-<!-- CODE FOR VIEW MENU -->
-<form method="post" action="user_groups.php?<?php echo $envar; ?>" name="viewmenu">
-<input type="hidden" name="fieldname" value="">
-<input type="hidden" name="varvalue" value="">
-<input type="hidden" name="varvalue2" value="">
-<input type="hidden" name="Action" value="">
-</form>
-<script language="JavaScript">
- enableFullImage(document.getElementById('imgSameImages'));
- MarkAsRequired(document.getElementById("topic"));
-</script>
-<!-- END CODE-->
-<?php int_footer(); ?>
Property changes on: trunk/in-bulletin/admin/addimage.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.10
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/addtopic.php
===================================================================
--- trunk/in-bulletin/admin/addtopic.php (revision 12824)
+++ trunk/in-bulletin/admin/addtopic.php (nonexistent)
@@ -1,610 +0,0 @@
-<?php
-##############################################################
-##In-portal ##
-##############################################################
-## In-portal ##
-## Intechnic Corporation ##
-## All Rights Reserved, 1998-2002 ##
-## ##
-## No portion of this code may be copied, reproduced or ##
-## otherwise redistributed without proper written ##
-## consent of Intechnic Corporation. Violation will ##
-## result in revocation of the license and support ##
-## privileges along maximum prosecution allowed by law. ##
-##############################################################
-
-// new startup: begin
-define('REL_PATH', 'in-bulletin/admin');
-$relation_level = count( explode('/', REL_PATH) );
-define('FULL_PATH', realpath(dirname(__FILE__) . str_repeat('/..', $relation_level) ) );
-require_once FULL_PATH.'/kernel/startup.php';
-// new startup: end
-
-$pathtolocal = $pathtoroot."in-bulletin/";
-require_once ($pathtoroot.$admin."/include/elements.php");
-require_once ($pathtoroot."kernel/admin/include/navmenu.php");
-require_once ($pathtolocal."admin/include/navmenu.php");
-require_once($pathtoroot.$admin."/toolbar.php");
-
-unset($objEditItems);
-
-$objEditItems = new clsTopicList();
-$objEditItems->SourceTable = $objSession->GetEditTable("Topic");
-$objEditItems->EnablePaging = FALSE;
-
-$objRelList = new clsRelationshipList();
-$objReviewList = new clsItemReviewList();
-$objImages = new clsImageList();
-
-$application->SetVar('bb_mode', 't');
-$objCustomFields = new clsCustomFieldList(3);
-$objCustomDataList = new clsCustomDataList();
-
-//Multiedit init
-if ($_GET["new"] == 1)
-{
- $c = new clsTopic(NULL);
- $c->Set("CreatedOn", adodb_mktime());
- $c->Set("EndOn", adodb_mktime());
- $c->Set("CategoryId",$objCatList->CurrentCategoryID());
- $c->Set("HotItem",2);
- $c->Set("NewItem",2);
- $c->Set("PopItem",2);
- $c->Set("Status",2);
-
- $en = 0;
- $action = "bb_new_topic";
- $objTopicList->CreateEmptyEditTable("TopicId");
- $objRelList->CreateEmptyEditTable("SourceId");
- $objReviewList->CreateEmptyEditTable("ReviewId");
- $objCustomDataList->CreateEmptyEditTable('bb');
- $objTopicList->CreateEmptyCatListTable("ItemResourceId");
- $objImages->CreateEmptyEditTable("ResourceId");
-
- $TitleVerb = prompt_language("la_Text_Adding");
-}
-else
-{
- $env_id=$bb_var_list['top'];
- if($env_id) $_POST['topiclist']=Array($env_id);
-
- $en = (int)$_GET["en"];
- if($_GET["item"])
- {
- if($_GET["newsession"]==1)
- {
- $objSession->CopyToNewSession();
- $objEditItems->SourceTable = $objSession->GetEditTable("Topic");
- }
-
- /*shortcut to edit link */
- $objTopicList->CopyToEditTable("ResourceId",$_GET["item"]);
- }
- else
- {
- if (isset($_POST["topiclist"]))
- {
- $objTopicList->CopyToEditTable("TopicId",$_POST["topiclist"]);
- }
- }
- $objEditItems->Query_Item("SELECT * FROM ".$objEditItems->SourceTable);
- if(isset($_POST["topiclist"]) || $_GET["item"])
- {
- $ids = $objEditItems->GetResourceIDList();
- $objRelList->CopyToEditTable("SourceId",$ids);
- $objReviewList->CopyToEditTable("ItemId",$ids);
- $objCustomDataList->CopyToEditTable('bb', $ids);
- $objTopicList->CopyCatListToEditTable("ItemResourceId", $ids);
- $objImages->CopyToEditTable("ResourceId",$ids);
- }
-
- $itemcount=$objEditItems->NumItems();
- $c = $objEditItems->GetItemByIndex($en);
-
- if($itemcount>1)
- {
- if ($en+1 == $itemcount)
- $en_next = -1;
- else
- $en_next = $en+1;
-
- if ($en == 0)
- $en_prev = -1;
- else
- $en_prev = $en-1;
- }
- $action = "bb_admin_edit_topic";
- $TitleVerb = prompt_language("la_Text_Editing");
- /* check to see if this is a pending item */
- if((int)$c->Get("OrgId")>0 && $c->Get("Status")==-2)
- {
- $Org = new clsTopic($c->Get("OrgId"));
- }
- else
- $Org = NULL;
-}
-
-$envar = "env=" . BuildEnv() . "&en=$en";
-
-//Set Section
-
-$section = 'in-bulletin:edittopic_general';
-
-$saveURL = $admin."/".$objSession->GetVariable('ReturnScript');
-//Display header
-$sec = $objSections->GetSection($section);
-$objCatToolBar = new clsToolBar();
-$objCatToolBar->Add("img_save", "la_Save","#","swap('img_save','toolbar/tool_select_f2.gif');", "swap('img_save', 'toolbar/tool_select.gif');","edit_submit('topic','TopicEditStatus','".$saveURL."',1);","tool_select.gif");
-$objCatToolBar->Add("img_cancel", "la_Cancel","#","swap('img_cancel','toolbar/tool_cancel_f2.gif');", "swap('img_cancel', 'toolbar/tool_cancel.gif');","edit_submit('topic','TopicEditStatus','".$saveURL."',2);","tool_cancel.gif");
-
-
-if (strlen($c->Get("TopicText")))
- $editing_title = "'".$c->Get("TopicText")."' ";
-else
- $editing_title = "";
-
-$title = $TitleVerb." ".prompt_language("la_Text_Topic")." $editing_title- ".prompt_language("la_tab_General");
-
-if ( isset($en_prev) || isset($en_next) )
-{
- $url = $RootUrl."in-bulletin/admin/addtopic.php";
- $StatusField = "TopicEditStatus";
- $form = "topic";
- MultiEditButtons($objCatToolBar,$en_next,$en_prev,$form,$StatusField,$url,$sec->Get("OnClick"));
- //$objCatToolBar->Add("divider");
-}
-
- int_header($objCatToolBar,NULL,$title);
- $c->Data=inp_htmlize($c->Data);
-if ($objSession->GetVariable("HasChanges") == 1) {
-?>
-<table width="100%" border="0" cellspacing="0" cellpadding="0" class="toolbar">
- <tr>
- <td valign="top">
- <?php int_hint_red(admin_language("la_Warning_Save_Item")); ?>
- </td>
- </tr>
-</table>
-<?php } ?>
-<table width="100%" border="0" cellspacing="0" cellpadding="4" class="tableborder">
-<form ID="topic" name="topic" action="" method=POST>
- <tr <?php int_table_color(); ?>>
- <td valign="top" colspan="3"><?php echo prompt_language("la_prompt_Enable_HTML"); ?>
- <input type="checkbox" tabindex="1" name="html_enable" value="1">
- <br>
- <?php int_hint(prompt_language("la_Warning_Enable_HTML")); ?>
- </td>
- </tr>
- <?php int_subsection_title(prompt_language("la_Text_Topic")); ?>
- <?php if( $c->Get("TopicId") > 0 ) { ?>
- <tr <?php int_table_color(); ?>>
- <td valign="top"><span class="text" ID="prompt_TopicId"><?php echo prompt_language("la_prompt_TopicId"); ?></span></td>
- <TD><?php echo $c->Get("TopicId"); ?>
- <TD><b><?php if(is_object($Org)) echo prompt_language("la_original_values"); ?></b></TD>
- </TR>
- <?php } ?>
- <tr <?php int_table_color(); ?>>
- <td valign="top"><span class="text" ID="prompt_bb_topic_subject"><?php echo prompt_language("la_prompt_Name"); ?></span></td>
- <td>
- <input TYPE="TEXT" tabindex="2" ValidationType="exists" SIZE="40" name="bb_topic_subject" VALUE="<?php echo $c->Get("TopicText"); ?>">
- </td>
- <td>
-<?php
- if(is_object($Org))
- {
- $OrgValue = $Org->Get("TopicText");
- $NewValue = $c->Get("TopicText");
- if($OrgValue != $NewValue)
- {
- $class = "error";
- }
- else
- $class = "text";
- echo "<SPAN CLASS=\"$class\">$OrgValue</SPAN>";
- }
-?>
- </td>
- </tr>
- <tr <?php int_table_color(); ?>>
- <td valign="top"><span class="text" ID="prompt_topic_poster"><?php echo prompt_language("la_prompt_PostedBy"); ?></span></td>
- <td>
- <input TYPE="TEXT" tabindex="3" ValidationType="exists" SIZE="40" name="topic_poster" VALUE="<?php echo $c->Get("PostedBy"); ?>">
- <a href="#">
- <img src="<?php echo $imagesURL; ?>/icon24_link_user.gif" style="cursor:hand" border="0"
- ONCLICK="OpenUserSelector('','','<?php echo $envar; ?>&destform=topic&destfield=topic_poster&IdField=Login&Selector=radio');">
- </a>
- </td>
- <td>
-<?php
- if(is_object($Org))
- {
- $OrgValue = $Org->Get("PostedBy");
- $NewValue = $c->Get("PostedBy");
- if($OrgValue != $NewValue)
- {
- $class = "error";
- }
- else
- $class = "text";
- echo "<SPAN CLASS=\"$class\">$OrgValue</SPAN>";
- }
-?>
- </td>
- </tr>
-
-<?php int_subsection_title(prompt_language("la_tab_Properties")); ?>
- <tr <?php int_table_color(); ?>>
- <td valign="top" class="text"><?php echo prompt_language("la_prompt_TopicLocked"); ?></td>
- <td>
- <input type="checkbox" tabindex="4" name="lock_topic" class="text" value="1" <?php if($c->Get("TopicType") == 0) echo "checked"; ?>>
- </td>
- <td class="text">
-&nbsp;
- </td>
- </tr>
- <tr <?php int_table_color(); ?>>
- <td valign="top" class="text"><?php echo prompt_language("la_prompt_Status"); ?></td>
- <td>
- <input type="radio" tabindex="5" name="status" class="text" value="1" <?php if($c->Get("Status") == 1) echo "checked"; ?>><?php echo prompt_language("la_val_Active"); ?>
-<?php
- if(is_object($Org))
- {
- $PendingVal = -2;
- }
- else
- $PendingVal = 2;
-?>
- <input type="radio" tabindex="5" name="status" class="text" value="<?php echo $PendingVal; ?>" <?php if($c->Get("Status") == $PendingVal) echo "checked"; ?>><?php echo prompt_language("la_val_Pending"); ?>
- <input type="radio" tabindex="5" name="status" class="text" value="0" <?php if($c->Get("Status") == 0) echo "checked"; ?>><?php echo prompt_language("la_val_Disabled"); ?>
- </td>
- <td class="text">
- <?php
- if(is_object($Org))
- {
- echo prompt_language("la_approve_description");
- }
- ?>
- </td>
- </tr>
- <tr <?php int_table_color(); ?>>
- <td valign="top" class="text"><?php echo prompt_language("la_prompt_New"); ?></td>
- <td>
- <input type="radio" tabindex="6" name="itemnew" class="text" value="2" <?php if($c->Get("NewItem") == 2) echo "checked"; ?>><?php echo prompt_language("la_val_Auto"); ?>
- <input type="radio" tabindex="6" name="itemnew" class="text" value="0" <?php if($c->Get("NewItem") == 0) echo "checked"; ?>><?php echo prompt_language("la_val_Never"); ?>
- <input type="radio" tabindex="6" name="itemnew" class="text" value="1" <?php if($c->Get("NewItem") == 1) echo "checked"; ?>><?php echo prompt_language("la_val_Always"); ?>
- </td>
- <td class="text">
-<?php
- if(is_object($Org))
- {
- switch($Org->Get("NewItem"))
- {
- case 2:
- echo prompt_language("la_val_Auto");
- break;
- case 1:
- echo prompt_language("la_val_Always");
- break;
- case 0:
- echo prompt_language("la_val_Never");
- break;
- }
- }
-?>
- </td>
- </tr>
- <tr <?php int_table_color(); ?>>
- <td valign="top" class="text"><?php echo prompt_language("la_prompt_Hot"); ?></td>
- <td>
- <input type="radio" tabindex="7" name="itemhot" class="text" value="2" <?php if($c->Get("HotItem") == 2) echo "checked"; ?>><?php echo prompt_language("la_val_Auto"); ?>
- <input type="radio" tabindex="7" name="itemhot" class="text" value="0" <?php if($c->Get("HotItem") == 0) echo "checked"; ?>><?php echo prompt_language("la_val_Never"); ?>
- <input type="radio" tabindex="7" name="itemhot" class="text" value="1" <?php if($c->Get("HotItem") == 1) echo "checked"; ?>><?php echo prompt_language("la_val_Always"); ?>
- </td>
- <td class="text">
-<?php
- if(is_object($Org))
- {
- switch($Org->Get("HotItem"))
- {
- case 2:
- echo prompt_language("la_val_Auto");
- break;
- case 1:
- echo prompt_language("la_val_Always");
- break;
- case 0:
- echo prompt_language("la_val_Never");
- break;
- }
- }
-?>
-
- </td>
- </tr>
- <tr <?php int_table_color(); ?>>
- <td valign="top" class="text"><?php echo prompt_language("la_prompt_Pop"); ?></td>
- <td>
- <input type="radio" tabindex="8" name="itempop" class="text" value="2" <?php if($c->Get("PopItem") == 2) echo "checked"; ?>><?php echo prompt_language("la_val_Auto"); ?>
- <input type="radio" tabindex="8" name="itempop" class="text" value="0" <?php if($c->Get("PopItem") == 0) echo "checked"; ?>><?php echo prompt_language("la_val_Never"); ?>
- <input type="radio" tabindex="8" name="itempop" class="text" value="1" <?php if($c->Get("PopItem") == 1) echo "checked"; ?>><?php echo prompt_language("la_val_Always"); ?>
- </td>
- <td class="text">
-<?php
- if(is_object($Org))
- {
- switch($Org->Get("PopItem"))
- {
- case 2:
- echo prompt_language("la_val_Auto");
- break;
- case 1:
- echo prompt_language("la_val_Always");
- break;
- case 0:
- echo prompt_language("la_val_Never");
- break;
- }
- }
-?>
-
- </td>
- </tr>
- <tr <?php int_table_color(); ?>>
- <td valign="top" class="text"><?php echo prompt_language("la_prompt_EditorsPick"); ?></td>
- <td>
- <input type="checkbox" tabindex="9" name="topic_pick" class="text" value="1" <?php if($c->Get("EditorsPick") == 1) echo "checked"; ?>>
- </td>
- <td class="text">
-<?php
- if(is_object($Org))
- {
- if($c->Get("EditorsPick"))
- {
- echo prompt_language("lu_yes");
- }
- else
- echo prompt_language("lu_no");
- }
-?>
- </td>
- </tr>
-
- <TR <?php int_table_color(); ?> >
- <TD><?php echo prompt_language("la_prompt_Priority"); ?></TD>
- <TD><input type=text tabindex="10" SIZE="5" NAME="Priority" VALUE="<?php echo $c->Get("Priority"); ?>"></TD>
- <TD>
-<?php
- if(is_object($Org))
- {
- $OrgValue = (int)$Org->Get("Priority");
- $NewValue = (int)$c->Get("Priority");
- if($OrgValue != $NewValue)
- {
- $class = "error";
- }
- else
- $class = "text";
- echo "<SPAN CLASS=\"$class\">$OrgValue</SPAN>";
- }
-?>
- </TD>
- </TR>
- <tr <?php int_table_color(); ?>>
- <td valign="top"><SPAN id="prompt_topic_created" class="text"><?php echo prompt_language("la_prompt_CreatedOn"); ?></SPAN></td>
- <td>
- <input type="text" tabindex="11" ValidationType="date,exists" name="topic_created" id="topic_created_selector" datepickerIcon="<?php echo $adminURL; ?>/images/ddarrow.gif" class="text" size="20" value="<?php echo $c->parsetag("topic_created"); ?>">
- <span class="small"><?php echo prompt_language("la_prompt_DateFormat"); ?></span></td>
- <td>
-<?php
- if(is_object($Org))
- {
- $OrgValue = $Org->parsetag("topic_created");
- $NewValue = $c->parsetag("topic_created");
- if($OrgValue != $NewValue)
- {
- $class = "error";
- }
- else
- $class = "text";
- echo "<SPAN CLASS=\"$class\">$OrgValue</SPAN>";
- }
-?>
- </td>
- </tr>
- <tr <?php int_table_color(); ?>>
- <td valign="top"><SPAN id="prompt_topic_created_time" class="text"><?php echo prompt_language("la_prompt_CreatedOn_Time"); ?></SPAN></td>
- <td>
- <input type="text" tabindex="12" ValidationType="time" name="topic_created_time" class="text" size="20" value="<?php echo $c->parsetag("topic_created_time"); ?>">
- <span class="small"><?php echo prompt_language("la_prompt_TimeFormat"); ?></span></td>
- <td>
-<?php
- if(is_object($Org))
- {
- $OrgValue = $Org->parsetag("topic_created_time");
- $NewValue = $c->parsetag("topic_created_time");
- if($OrgValue != $NewValue)
- {
- $class = "error";
- }
- else
- $class = "text";
- echo "<SPAN CLASS=\"$class\">$OrgValue</SPAN>";
- }
-?>
- </td>
- </tr>
-
- <tr <?php int_table_color(); ?>>
- <td valign="top"><SPAN id="prompt_topic_modified" class="text"><?php echo prompt_language("la_prompt_ModifedOn"); ?></SPAN></td>
- <td>
- <input type="text" tabindex="13" ValidationType="date,exists" name="topic_modified" id="topic_modified_selector" datepickerIcon="<?php echo $adminURL; ?>/images/ddarrow.gif" class="text" size="20" value="<?php echo $c->parsetag("topic_modified"); ?>">
- <span class="small"><?php echo prompt_language("la_prompt_DateFormat"); ?></span></td>
- <td>
-<?php
- if(is_object($Org))
- {
- $OrgValue = $Org->parsetag("topic_modified");
- $NewValue = $c->parsetag("topic_modified");
- if($OrgValue != $NewValue)
- {
- $class = "error";
- }
- else
- $class = "text";
- echo "<SPAN CLASS=\"$class\">$OrgValue</SPAN>";
- }
-?>
- </td>
- </tr>
- <tr <?php int_table_color(); ?>>
- <td valign="top"><SPAN id="prompt_topic_modified_time" class="text"><?php echo prompt_language("la_prompt_ModifedOn_Time"); ?></SPAN></td>
- <td>
- <input type="text" tabindex="14" ValidationType="time" name="topic_modified_time" class="text" size="20" value="<?php echo $c->parsetag("topic_modified_time"); ?>">
- <span class="small"><?php echo prompt_language("la_prompt_TimeFormat"); ?></span></td>
- <td>
-<?php
- if(is_object($Org))
- {
- $OrgValue = $Org->parsetag("topic_modified_time");
- $NewValue = $c->parsetag("topic_modified_time");
- if($OrgValue != $NewValue)
- {
- $class = "error";
- }
- else
- $class = "text";
- echo "<SPAN CLASS=\"$class\">$OrgValue</SPAN>";
- }
-?>
- </td>
- </tr>
-
- <?php int_subsection_title(prompt_language("la_Text_Counters")); ?>
- <tr <?php int_table_color(); ?>>
- <td valign="top" class="text"><?php echo prompt_language("la_prompt_Rating"); ?></td>
- <td>
- <input type="text" tabindex="15" name="topic_rating" class="text" size="5" value="<?php echo $c->Get("CachedRating"); ?>">
- <span class="small"><?php echo prompt_language("la_prompt_RatingLimits"); ?></span></td>
- <td>
-<?php
- if(is_object($Org))
- {
- $OrgValue = (int)$Org->Get("CachedRating");
- $NewValue = (int)$c->Get("CachedRating");
- if($OrgValue != $NewValue)
- {
- $class = "error";
- }
- else
- $class = "text";
- echo "<SPAN CLASS=\"$class\">$OrgValue</SPAN>";
- }
-?>
- </td>
- </tr>
- <tr <?php int_table_color(); ?>>
- <td valign="top" class="text"><?php echo prompt_language("la_prompt_Votes"); ?></td>
- <td>
- <input type="text" tabindex="16" name="topic_votes" class="text" size="5" value="<?php echo $c->Get("CachedVotesQty"); ?>">
- <span class="small"><?php echo prompt_language("la_prompt_VoteLimits"); ?></span></td>
- <td>
-<?php
- if(is_object($Org))
- {
- $OrgValue = (int)$Org->Get("CachedVotesQty");
- $NewValue = (int)$c->Get("CachedVotesQty");
- if($OrgValue != $NewValue)
- {
- $class = "error";
- }
- else
- $class = "text";
- echo "<SPAN CLASS=\"$class\">$OrgValue</SPAN>";
- }
-?>
- </td>
- </tr>
- <tr <?php int_table_color(); ?>>
- <td valign="top" class="text"><?php echo prompt_language("la_prompt_Views"); ?></td>
- <td>
- <input type="text" tabindex="17" name="topic_views_show" class="text" size="5" value="<?php echo round($c->Get("Views")); ?>">
- <input type="hidden" name="topic_views" value="<?php echo $c->Get("Views"); ?>">
- <span class="small"><?php echo prompt_language("la_prompt_HitLimits"); ?></span></td>
- <td>
-<?php
- if(is_object($Org))
- {
- $OrgValue = (int)$Org->Get("Views");
- $NewValue = (int)$c->Get("Views");
- if($OrgValue != $NewValue)
- {
- $class = "error";
- }
- else
- $class = "text";
- echo "<SPAN CLASS=\"$class\">$OrgValue</SPAN>";
- }
-?>
- </td>
- </tr>
-<?php
-$CustomFieldUI = $objCustomFields->GetFieldUIList(TRUE);
-if($CustomFieldUI->NumItems()>0)
-{
- $objCustomDataList->SourceTable = $objSession->GetEditTable("CustomMetaData");
- if((int)$c->Get("ResourceId")>0)
- {
- $objCustomDataList->LoadResource($c->Get("ResourceId"));
- }
- $headings = $CustomFieldUI->GetHeadingList();
- //echo "<PRE>";print_r($objCustomFields); echo "</PRE>";
- $tab_index = 18;
- for($i=0;$i<=count($headings);$i++)
- {
- $h = $headings[$i];
- if(strlen($h))
- {
- int_subsection_title(prompt_language($h));
- $Items = $CustomFieldUI->GetHeadingItems($h);
- foreach($Items as $f)
- {
- $n = substr($f->name,1);
- $cfield = $objCustomFields->GetItemByField("FieldName",$n,FALSE);
- if (is_object($cfield)) {
- $f->default_value = $c->GetCustomFieldValue($n, '', 0, true);
- }
- print "<tr ".int_table_color_ret().">\n";
- print " <td valign=\"top\" class=\"text\">".$f->GetPrompt()."</td>\n";
- print " <td nowrap>".$f->ItemFormElement($tab_index++)."</TD>";
- if(is_object($f->NextItem))
- {
- $n = $f->NextItem;
- print " <td>".$n->ItemFormElement($tab_index++)."</TD>";
- }
- else
- print " <td><span class=\"text\">&nbsp;</span></td>\n";
- print "</tr>\n";
- }
- }
- }
-}
-?>
- <input type="hidden" name="CategoryId" value="<?php echo $objCatList->CurrentCategoryID(); ?>">
- <input type="hidden" name="TopicId" value="<?php echo $c->parsetag("topic_id"); ?>">
- <input type="hidden" name="Action" value="<?php echo $action; ?>">
- <input type="hidden" name="TopicEditStatus" VALUE="0">
-</FORM>
-</table>
-
-<script src="<?php echo $adminURL; ?>/include/calendar.js"></script>
-<SCRIPT language="JavaScript">
- initCalendar("topic_created_selector", CalDateFormat);
- initCalendar("topic_modified_selector", CalDateFormat);
- MarkAsRequired(document.getElementById("topic"));
-</SCRIPT>
-
-<FORM method="POST" NAME="save_edit" ID="save_edit">
- <input type="hidden" name="TopicEditStatus" VALUE="0">
-</FORM>
-
-<?php int_footer(); ?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/addtopic.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.14
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/include/navmenu.php
===================================================================
--- trunk/in-bulletin/admin/include/navmenu.php (revision 12824)
+++ trunk/in-bulletin/admin/include/navmenu.php (nonexistent)
@@ -1,132 +0,0 @@
-<?php
-##############################################################
-## In-bulletin :: Section & Navigation Structure Library ##
-##############################################################
-## In-portal ##
-## Intechnic Corporation ##
-## All Rights Reserved, 1998-2002 ##
-## ##
-## No portion of this code may be copied, reproduced or ##
-## otherwise redistributed without proper written ##
-## consent of Intechnic Corporation. Violation will ##
-## result in revocation of the license and support ##
-## privileges along maximum prosecution allowed by law. ##
-##############################################################
-
-/* edit topic toolbar */
-$objSections->AddSection("in-bulletin:edittopic_general","la_tab_General", "la_title_Edit_Topic","in-bulletin/admin/",
- "javascript:edit_submit('topic','TopicEditStatus','in-bulletin/admin/addtopic.php',0);",
- $admin."/icons/icon46_catalog.gif", $admin."/icons/icon24_navigate.gif",
- NULL,NULL, NULL, "in-bulletin:edittopic_category",-1);
-
-$objSections->AddSection("in-bulletin:edittopic_category","la_tab_Categories", "la_title_Edit_Topic","in-bulletin/admin/",
- "javascript:edit_submit('topic','TopicEditStatus','in-bulletin/admin/addtopic_category.php',0);",
- $admin."/icons/icon46_catalog.gif", $admin."/icons/icon24_navigate.gif",
- NULL,NULL, "in-bulletin:edittopic_general", "in-bulletin:edittopic_relations",-1);
-
-$objSections->AddSection("in-bulletin:edittopic_relations", "la_tab_Relations","la_title_Edit_Topic","in-bulletin/admin/",
- "javascript:edit_submit('topic','TopicEditStatus','in-bulletin/admin/addtopic_relations.php',0);",
- $admin."/icons/icon46_catalog.gif", $admin."/icons/icon24_navigate.gif",
- NULL, NULL, 'in-bulletin:edittopic_category', "in-bulletin:edittopic_images",-1);
-
-$objSections->AddSection("in-bulletin:edittopic_images","la_tab_Images","la_title_Edit_Topic","in-bulletin/admin/",
- "javascript:edit_submit('topic','TopicEditStatus','in-bulletin/admin/addtopic_images.php',0);",
- $admin."/icons/icon46_catalog.gif", $admin."/icons/icon24_navigate.gif",
- NULL,NULL, "in-bulletin:edittopic_relations","in-bulletin:edittopic_reviews",-1);
-
-$objSections->AddSection("in-bulletin:edittopic_reviews","la_tab_Reviews","la_title_Edit_Topic", "in-bulletin/admin/",
- "javascript:edit_submit('topic','TopicEditStatus','in-bulletin/admin/addtopic_reviews.php',0);",
- $admin."/icons/icon46_catalog.gif", $admin."/icons/icon24_navigate.gif",
- NULL,NULL,'in-bulletin:edittopic_images',"in-bulletin:edittopic_custom",-1);
-
-$objSections->AddSection("in-bulletin:edittopic_custom","la_tab_Custom","la_title_Edit_Topic","in-bulletin/admin/",
- "javascript:edit_submit('topic','TopicEditStatus','in-bulletin/admin/addtopic_custom.php',0);",
- $admin."/icons/icon46_catalog.gif", $admin."/icons/icon24_navigate.gif",
- NULL,NULL,"in-bulletin:edittopic_reviews", NULL,-1);
-
-/* topic edit subitems */
-
-$objSections->AddSection("in-bulletin:edittopic_image","la_tab_Images","la_title_Edit_Topic","in-bulletin/admin/",
- "javascript:edit_submit('topic','TopicEditStatus','in-bulletin/admin/addimage.php',0);",
- $admin."/icons/icon46_catalog.gif", $admin."/icons/icon24_navigate.gif",
- NULL, NULL, NULL,NULL,-1);
-
-$objSections->AddSection("in-bulletin:edittopic_relation","la_tab_Relations","la_title_Edit_Topic","in-bulletin/admin/",
- "javascript:edit_submit('topic','TopicEditStatus','in-bulletin/admin/addrelation.php',0);",
- $admin."/icons/icon46_catalog.gif", $admin."/icons/icon24_navigate.gif",
- NULL, NULL, NULL,NULL,-1);
-
-$objSections->AddSection("in-bulletin:edittopic_review","la_tab_Reviews","la_title_Edit_Topic","in-bulletin/admin/",
- "javascript:edit_submit('topic','TopicEditStatus','in-bulletin/admin/addreview.php',0);",
- $admin."/icons/icon46_catalog.gif", $admin."/icons/icon24_navigate.gif",
- NULL, NULL, NULL,NULL,-1);
-
-/* Tree Items */
-
-// Load In-News module to get it's version
-$mod = $objModules->GetModule("In-Bulletin");
-$ModVersion = $mod ? $mod->Get('Version') : '';
-
-$objSections->AddSection("in-bulletin","la_title_In-Bulletin","la_title_In-Bulletin",$admin."/","subitems.php",
- "in-bulletin/admin/images/icon46_settings_in-bulletin.gif","in-bulletin/admin/images/icon24_settings_in-bulletin.gif",
- NULL,"in-portal:modules",NULL,NULL,0,"",1,
- NULL,NULL,NULL,"in-bulletin/admin/images/icon46_list_settings_in-bulletin.gif","la_Text_Version"," $ModVersion");
-
-$objSections->AddSection("in-bulletin:inbulletin_general", "la_tab_GeneralSettings","la_tab_General",
- "in-bulletin/admin/","config_general.php",
- $admin."/icons/icon46_settings_general.gif",$admin."/icons/icon24_settings_general.gif",
- NULL,"in-bulletin", NULL,"in-bulletin:configuration_output",0,"",1,
- NULL,NULL,NULL,$admin."/icons/icon46_list_settings_general.gif","la_updating_config");
-
-$objSections->AddSection("in-bulletin:configuration_output", "la_tab_ConfigOutput","la_tab_ConfigOutput",
- $admin.'/index4.php?section=in-bulletin:configuration_output&module=In-Bulletin','kernel4:config/config_universal',
- $admin."/icons/icon46_settings_output.gif",$admin."/icons/icon24_settings_output.gif",
- NULL, "in-bulletin","in-bulletin:inbulletin_general", "in-bulletin:configuration_search",0,"",1,
- NULL,NULL,NULL,$admin."/icons/icon46_list_settings_output.gif","la_updating_config");
-
-$objSections->AddSection("in-bulletin:configuration_search", "la_tab_ConfigSearch", "la_tab_ConfigSearch",
- $admin.'/index4.php?module=In-Bulletin&section=in-bulletin:configuration_search&module_key=topics',
- 'kernel4:config/config_search',
- $admin."/icons/icon46_settings_search.gif",$admin."/icons/icon24_settings_search.gif",
- NULL, "in-bulletin", "in-bulletin:configuration_output","in-bulletin:configuration_censorship",0,"",1,
- NULL,NULL,NULL,$admin."/icons/icon46_list_settings_search.gif","la_updating_config");
-
-$objSections->AddSection("in-bulletin:configuration_censorship","la_tab_ConfigCensorship","la_tab_ConfigCensorship",
- "in-bulletin/admin/","censor_config.php",
- $admin."/icons/icon46_settings_censor.gif",$admin."/icons/icon24_settings_censor.gif",
- NULL,"in-bulletin", "in-bulletin:configuration_search","in-bulletin:configuration_emoticon",0,"",1,
- NULL,NULL,NULL,"in-bulletin/admin/images/icon46_list_settings_censor.gif","la_updating_config");
-
-$objSections->AddSection("in-bulletin:configuration_emoticon","la_tab_ConfigSmileys","la_tab_ConfigSmileys",
- "in-bulletin/admin/","emoticon_config.php",
- $admin."/icons/icon46_settings_smiley.gif",$admin."/icons/icon24_settings_smiley.gif",
- NULL, "in-bulletin", "in-bulletin:configuration_censorship","in-bulletin:configuration_email",0,"",1,
- NULL,NULL,NULL,"in-bulletin/admin/images/icon46_list_settings_smiley.gif","la_updating_config");
-
-$objSections->AddSection("in-bulletin:configuration_email", "la_tab_ConfigE-mail","la_tab_ConfigE-mail",$admin."/config/",
- "module_email.php?&module=In-Bulletin&section=in-bulletin:configuration_email&lpn=1",
- $admin."/icons/icon46_settings_email.gif",$admin."/icons/icon24_settings_email.gif",
- NULL,"in-bulletin","in-bulletin:configuration_emoticon","in-bulletin:configuration_custom",0,"",1,
- NULL,NULL,NULL,$admin."/icons/icon46_list_settings_email.gif","la_updating_config");
-
-$objSections->AddSection("in-bulletin:configuration_custom","la_tab_ConfigCustom","la_tab_ConfigCustom", $admin.'/index4.php',
- "kernel4:custom_fields/custom_fields_list:cf----3-",
- $admin."/icons/icon46_settings_custom.gif",$admin."/icons/icon24_settings_custom.gif",
- NULL,"in-bulletin", "in-bulletin:configuration_email", NULL,0,"",1,
- NULL,NULL,NULL,$admin."/icons/icon46_list_settings_custom.gif","la_updating_config");
-
-$objSections->SimpleSection('in-bulletin','in-bulletin:phpbb','la_tab_PhpbbImport','la_title_Help','in-bulletin/admin/import/',
- 'phpbb_import.php',null,null,null,null);
-
-
-
-$name = admin_language("lu_btn_NewTopic");
-
-/*$NewButtons[] = array(
- "ImagePath" => $rootURL."in-bulletin/admin/images/",
- "Action" => "new_topic",
- "Alt" => $name,
- "Tab" => "topics");
-*/
-
-?>
Property changes on: trunk/in-bulletin/admin/include/navmenu.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.7
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/include/toolbar/edittopic_images.php
===================================================================
--- trunk/in-bulletin/admin/include/toolbar/edittopic_images.php (revision 12824)
+++ trunk/in-bulletin/admin/include/toolbar/edittopic_images.php (nonexistent)
@@ -1,306 +0,0 @@
-<?php
-global $envar,$rootURL,$imagesURL, $objConfig,$imgFilter, $adminURL,$admin;
-
-$group_select = $adminURL."/users/group_select.php";
-
-$item_select = $adminURL."/relations/item_type.php";
-$cat_select = $adminURL."/cat_select.php";
-
-$Img_AllValue = 3;
-
-$Bit_Enabled=1;
-$Bit_Disabled=2;
-
-$ImgView = $objConfig->Get("TopicImg_View");
-
-if(!is_numeric($ImgView))
-{
- $ImgView = $Img_AllValue;
-}
-else
-{
- if($ImgView & $Bit_Enabled)
- $Filters[] = "img.Enabled=1";
-
- if($ImgView & $Bit_Disabled)
- $Filters[] = "img.Enabled=0";
-
- if(count($Filters))
- {
- $imgFilter = implode(" OR ",$Filters);
- }
- else
- $imgFilter = "ImageId = -1";
-}
-
-$SortField = $objConfig->Get("TopicImage_LV_Sortfield");
-if(!strlen($SortField))
- $SortField = "Name";
-
-$SortOrder = $objConfig->Get("TopicImage_LV_Sortorder");
-if(!strlen($SortOrder))
- $SortOrder = "desc";
-
-$Perpage_Images = (int)$objConfig->Get("Perpage_Images");
-if(!$Perpage_Images)
- $Perpage_Images = 20;
-
-$lang_Alt = language("la_prompt_AltName");
-$lang_Images = language("la_Text_Images");
-$errormsg = language("la_validation_AlertMsg");
-
-
-print<<<END
-
-<script language="JavaScript1.2" src="$adminURL/include/checkarray.js"></script>
-
-<script language="javascript1.2">
-<!--
-
-
-var ImgView = $ImgView;
-var Img_Perpage = $Perpage_Images;
-var Img_Sortfield = "$SortField";
-var Img_Sortorder = "$SortOrder";
-var lang_Alt = "$lang_Alt";
-var lang_Images = "$lang_Images";
-var doubleClickAction = "PermChecks.check_submit('addimage', '');";
-var ErrorMsg = '$errormsg';
-
-PermChecks = new CheckArray();
-
-PermChecks.formname='imagelistform';
-PermChecks.envar='$envar';
-
-function SetFieldEnable(el,TargetFieldId)
-{
- t = document.getElementById(TargetFieldId);
- if(el.checked)
- {
- t.disabled = true;
- }
- else
- t.disabled = false;
-}
-
-function enableFullImage(el)
-{
- SetFieldEnable(el,'imgFullFile');
- SetFieldEnable(el,'imgFullUrl');
- SetFieldEnable(el,'full1');
- SetFieldEnable(el,'full2');
-}
-
-//function used by the edit tabs to submit to temp tables
-function edit_submit(formname, targetURL)
-{
- var env_str = '$envar';
-
- document.location = '$rootURL' + targetURL + '?' + env_str;
-
-}
-
-function do_edit_save(formname, targetURL,save_value)
-{
- var env_str = '$envar';
-
- f = document.getElementById(formname);
- if(f)
- {
- f.action = '$rootURL' + targetURL + '?' + env_str;
- f.TopicEditStatus.value = save_value; //0= stay in temp, 1=save to perm, 2 = purge no save
- f.submit();
- }
- else
- alert('Form '+formname+' was not found.');
-}
-
-
-function DataIsValid(f)
-{
- var result=true;
-
- s = document.getElementById("prompt_imgName");
- if(f.imgName.value.length)
- {
- s.className = "text";
- }
- else
- {
- result = false;
- s.className = "validation_error";
- }
-
- s = document.getElementById("prompt_imgAlt");
- if(f.imgAlt.value.length)
- {
- s.className = "text";
- }
- else
- {
- result = false;
- s.className = "validation_error";
- }
-
- return result;
-}
-
-function do_image_save(formname, targetURL,save_value)
-{
- var env_str = '$envar';
-
- f = document.getElementById(formname);
- if(f)
- {
- valid = DataIsValid(f);
- if(valid || save_value==-1)
- {
- f.action = '$rootURL' + targetURL + '?' + env_str;
- f.TopicEditStatus.value = save_value; //0= stay in temp, 1=save to perm, 2 = purge no save
- f.submit();
- }
- else
- if(!valid)
- alert(ErrorMsg);
-
- }
- else
- alert('Form '+formname+' was not found.');
-}
-
-function ShowViewMenu()
-{
- button = document.getElementById('viewmenubutton');
-
- x = getRealLeft(button);
- y = getRealTop(button);
-
- fwLoadMenus();
-
- window.FW_showMenu(window.view_menu,x,y+32);
- return false;
-}
-
-
-function fwLoadMenus() {
-
- window.menu_filter = new Menu(lang_View);
-
- menu_filter.imagePath = "$imagesURL"+'/';
- menu_filter.addMenuItem(lang_All,"config_val('TopicImg_View',$Img_AllValue);",ImgView==$Img_AllValue);
- menu_filter.addMenuSeparator();
-
- menu_filter.addMenuItem(lang_Enabled,"FlipBit('TopicImg_View',ImgView,0);",BitStatus(ImgView,0));
- menu_filter.addMenuItem(lang_Disabled,"FlipBit('TopicImg_View',ImgView,1);",BitStatus(ImgView,1));
-
-
- window.menu_sorting = new Menu(lang_Sort);
- menu_sorting.imagePath = "$imagesURL"+'/';
- menu_sorting.addMenuItem(lang_Asc,"config_val('TopicImage_LV_Sortorder','asc');",RadioIsSelected(Img_Sortorder,'asc'));
- menu_sorting.addMenuItem(lang_Desc,"config_val('TopicImage_LV_Sortorder','desc');",RadioIsSelected(Img_Sortorder,'desc'));
- menu_sorting.addMenuSeparator();
- menu_sorting.addMenuItem(lang_Default,"config_val('TopicImage_LV_Sortfield','FullName');","");
- menu_sorting.addMenuItem(lang_Name,"config_val('TopicImage_LV_Sortfield','FullName');",RadioIsSelected(Img_Sortfield,'FullName'));
- menu_sorting.addMenuItem(lang_Alt,"config_val('TopicImage_LV_Sortfield','AltName');",RadioIsSelected(Img_Sortfield,'AltName'));
- menu_sorting.addMenuItem(lang_URL,"config_val('TopicImage_LV_Sortfield','ShowURL');",RadioIsSelected(Img_Sortfield,'ShowURL'));
- menu_sorting.addMenuItem(lang_Status,"config_val('TopicImage_LV_Sortfield','Status');",RadioIsSelected(Img_Sortfield,'Status'));
-
-
- window.menu_results = new Menu(lang_Images+' '+lang_PerPage);
- menu_results.imagePath = "$imagesURL"+'/';
- menu_results.addMenuItem("10","config_val('Perpage_Images', '10');",RadioIsSelected(Img_Perpage,10));
- menu_results.addMenuItem("20","config_val('Perpage_Images', '20');",RadioIsSelected(Img_Perpage,20));
- menu_results.addMenuItem("50","config_val('Perpage_Images', '50');",RadioIsSelected(Img_Perpage,50));
- menu_results.addMenuItem("100","config_val('Perpage_Images', '100');",RadioIsSelected(Img_Perpage,100));
- menu_results.addMenuItem("500","config_val('Perpage_Images', '500');",RadioIsSelected(Img_Perpage,500));
-
- window.menu_select = new Menu(lang_Select);
- menu_select.addMenuItem(lang_All,"PermChecks.selectAll(true);","");
- menu_select.addMenuItem(lang_Unselect,"PermChecks.selectAll(false);","");
- menu_select.addMenuItem(lang_Invert,"PermChecks.invertItems();","");
-
- window.view_menu = new Menu("root");
- view_menu.imagePath = "$imagesURL"+'/';
- window.view_menu.addMenuItem(menu_filter);
- window.view_menu.addMenuItem(menu_sorting);
- window.view_menu.addMenuItem(menu_results);
- window.view_menu.addMenuItem(menu_select);
-
- window.triedToWriteMenus = false;
- window.view_menu.writeMenus();
-
-} // fwLoadMenus()
-
-//function called when a listview item is double clicked
-function handleDoubleClick()
-{
- PermChecks.check_submit('addimage', '');
-}
-
-//function called to create the right click popup menu
-function initContextMenu()
-{
- window.contextMenu = new Menu("Context");
- contextMenu.addMenuItem(lang_Edit,"PermChecks.check_submit('addimage', '');","");
- contextMenu.addMenuItem(lang_Delete,"PermChecks.check_submit('addcategory_images', 'm_img_delete');","");
- contextMenu.addMenuSeparator();
- contextMenu.addMenuItem(lang_MoveUp,"PermChecks.check_submit('addcategory_images', 'm_img_move_up');","");
- contextMenu.addMenuItem(lang_MoveDn,"PermChecks.check_submit('addcategory_images', 'm_img_move_down');","");
-
- window.triedToWriteMenus = false;
- window.contextMenu.writeMenus();
- return true;
-}
-
-
-
-function toggleTabA(tabId)
-{
- //alert('toggling '+tabId);
- toggleTab(tabId);
- var hl = document.getElementById("hidden_line");
- if (hl)
- hl.style.display = "none";
- tab_hdr = document.getElementById('tab_headers');
- if (!tab_hdr)
- {
- //alert('Cant find tab header container');
- return;
- }
- //alert('Tab header found..');
- for (var i = 0; i < tabIDs.length; i++)
- {
- var tabHeader;
- TDs = tab_hdr.getElementsByTagName("TD");
- for (var j = 0; j < TDs.length; j++)
- if (TDs[j].getAttribute("tabHeaderOf") == tabIDs[i])
- {
- tabHeader = TDs[j];
- break;
- }
- if (!tabHeader)
- {
- //alert('Couldnt find tab header');
- continue;
- }
- var tab = document.getElementById(tabIDs[i]);
- if (!tab)
- {
- //alert('Couldnt find tab!');
- continue;
- }
- tabHeader.setAttribute("background", "$imagesURL/itemtabs/" + ((tab.active) ? "tab_active" : "tab_inactive") + ".gif")
-
- var images = tabHeader.getElementsByTagName("IMG");
- if (images.length < 1) continue;
-
- images[0].src = "$imagesURL/itemtabs/" + ((tab.active) ? "divider_up" : "divider_empty") + ".gif";
- }
-}
-
-
-//-->
-</script>
-
-END;
-?>
Property changes on: trunk/in-bulletin/admin/include/toolbar/edittopic_images.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/include/toolbar/editcategory_relationselect.php
===================================================================
--- trunk/in-bulletin/admin/include/toolbar/editcategory_relationselect.php (revision 12824)
+++ trunk/in-bulletin/admin/include/toolbar/editcategory_relationselect.php (nonexistent)
@@ -1,200 +0,0 @@
-<?php
-
-global $objConfig,$objSession, $objTopicList,$objCatList, $SearchType, $ItemTabs,$TopicSearch;
-
-global $Bit_All,$Bit_Pending,$Bit_Disabled,$Bit_New,$Bit_Pop,$Bit_Hot,$Bit_Ed,$DefaultTab;
-
-if(strlen($DefaultTab))
-{
- $m_tab_Forum_hide = ($DefaultTab=='topics') ? 0 : 1;
-}
-
-$Topics_AllValue = 127;
-
-$TopicView = $objConfig->Get("Topic_View");
-
-if(!is_numeric($TopicView))
-{
- $TopicView = $Topics_AllValue;
-}
-
-$Topic_SortField = $objConfig->Get('Topic_SortField');
-if( !strlen($Topic_SortField) ) $Topic_SortField = 'Priority';
-
-$Topic_SortOrder = $objConfig->Get('Topic_SortOrder');
-if( !strlen($Topic_SortOrder) ) $Topic_SortOrder = 'desc';
-
-$Perpage_Topics = (int)$objConfig->Get("Perpage_Topics");
-if(!$Perpage_Topics)
- $Perpage_Topics="'all'";
-
-
-if($TopicView == $Topics_AllValue)
-{
- $Topic_ShowAll = 1;
-}
-else
- $Topic_ShowAll = 0;
-
-if($Topic_ShowAll)
-{
- $Topic_Filter = "";
- $Topic_View=$Topics_AllValue;
-}
-else
-{
- $Status = array();
- $Mod = array();
- if($TopicView & $Bit_Pending)
- $Status[] = STATUS_PENDING;
-
- if($TopicView & $Bit_Active)
- $Status[] = STATUS_ACTIVE;
-
-
- if($TopicView & $Bit_Disabled)
- $Status[] = STATUS_DISABLED;
-
- if(count($Status))
- {
- $TopicFilter .= " AND (Status IN (".implode(",",$Status).") ";
- }
- else
- $TopicFilter .= " AND ((Status=-1) ";
-
- if($TopicView & $Bit_Ed)
- {
- $TopicFilter .= " OR (EditorsPick=1) ";
- }
-
- if($TopicView & $Bit_New)
- {
- $cutoff = adodb_date("U") - ($objConfig->Get("Topic_NewDays") * 86400);
- $TopicFilter .= " OR (CreatedOn > ".$cutoff.") ";
- }
- if($TopicView & $Bit_Pop)
- {
- $cutoff = GetTopicPopValue();
- if($cutoff>0)
- $TopicFilter .= " OR (CachedRating >= ".$cutoff.") ";
- }
-
- if($TopicView & $Bit_Hot)
- {
- $cutoff = GetTopicHotValue();
- if($cutoff>0)
- $TopicFilter .= " OR (Posts >= ".$cutoff.") ";
- }
-
- $TopicFilter .= ")";
-}
-
-$list = $objSession->GetVariable("SearchWord");
-$TopicSearch = (strlen($list)>0 && $SearchType =="Topics" || $SearchType="all") || (strlen($list)==0);
-$objTopicList->Clear();
-if($TopicSearch)
-{
- $OrderBy = $objTopicList->QueryOrderByClause(TRUE,TRUE,TRUE);
- if(strlen($list)==0)
- {
- $objTopicList->LoadTopics("CategoryId=".$objCatList->CurrentCategoryID().$TopicFilter,$OrderBy);
- }
- else
- {
- $SearchQuery = $objTopicList->AdminSearchWhereClause($list);
- if(strlen($SearchQuery))
- {
- $SearchQuery = " (".$SearchQuery.")";
- if(strlen($CatScopeClause))
- $SearchQuery .= " AND". $CatScopeClause;
- $objTopicList->LoadTopics($SearchQuery.$TopicFilter,$OrderBy);
- }
- else
- $objTopicList->LoadTopics("CategoryId=".$objCatList->CurrentCategoryID().$TopicFilter,$OrderBy);
- }
- $CatTotal = TableCount($objTopicList->SourceTable," CategoryId=".$objCatList->CurrentCategoryID(),TRUE);
- $caption = language("la_ItemTab_Topics");
- $ItemTabs->AddTab(language("la_ItemTab_Topics"),"topics",$objTopicList->QueryItemCount, $m_tab_Forum_hide,$CatTotal);
-}
-
-$lang_Replies = language("la_Text_Replies");
-$lang_PostedBy = language("la_prompt_PostedBy");
-$lang_Topics = language("la_Text_Topics");
-
-print <<<END
-
-<script language="JavaScript">
-var Topic_SortField = '$Topic_SortField';
-var Topic_SortOrder = '$Topic_SortOrder';
-var Topics_Perpage = $Perpage_Topics;
-var TopicView = $TopicView;
-var TopicText = '$caption';
-var lang_Replies = "$lang_Replies";
-var lang_PostedBy = "$lang_PostedBy";
-var lang_Topics = "$lang_Topics";
-var Topics_Paste = false;
-
-function Topics_SortMenu()
-{
- sub_menu_sorting_sub = new Menu(TopicText);
- sub_menu_sorting_sub.addMenuItem(lang_Asc,"config_val('Topic_SortOrder','asc');",RadioIsSelected(Topic_SortOrder,'asc'));
- sub_menu_sorting_sub.addMenuItem(lang_Desc,"config_val('Topic_SortOrder','desc');",RadioIsSelected(Topic_SortOrder,'desc'));
- sub_menu_sorting_sub.addMenuSeparator();
-
- sub_menu_sorting_sub.addMenuItem(lang_Default,"config_val('Topic_SortField','Name');","");
- sub_menu_sorting_sub.addMenuItem(lang_Name,"config_val('Topic_SortField','TopicText');",RadioIsSelected(Topic_SortField,'TopicText'));
- sub_menu_sorting_sub.addMenuItem(lang_PostedBy,"config_val('Topic_SortField','PostedBy');",RadioIsSelected(Topic_SortField,'PostedBy'));
- sub_menu_sorting_sub.addMenuItem(lang_CreatedOn,"config_val('Topic_SortField','CreatedOn');",RadioIsSelected(Topic_SortField,'CreatedOn'));
-
- sub_menu_sorting_sub.addMenuItem(lang_Replies,"config_val('Topic_SortField','Posts');",RadioIsSelected(Topic_SortField,'Posts'));
- sub_menu_sorting_sub.addMenuItem(lang_Hits,"config_val('Topic_SortField','Views');",RadioIsSelected(Topic_SortField,'Views'));
-
- return sub_menu_sorting_sub;
-}
-
-function Topics_FilterMenu()
-{
- menu_filter = new Menu(TopicText);
- menu_filter.addMenuItem(lang_All,"config_val('Topic_View', $Topics_AllValue);",TopicView==$Topics_AllValue);
- menu_filter.addMenuItem(lang_None,"config_val('Topic_View', 0);",TopicView==0);
- menu_filter.addMenuSeparator();
- menu_filter.addMenuItem(lang_Active,"FlipBit('Topic_View',TopicView,6);",BitStatus(TopicView,6));
- menu_filter.addMenuItem(lang_Pending,"FlipBit('Topic_View',TopicView,5);", BitStatus(TopicView,5));
- menu_filter.addMenuItem(lang_Disabled,"FlipBit('Topic_View',TopicView,4);",BitStatus(TopicView,4));
-
- menu_filter.addMenuSeparator();
- menu_filter.addMenuItem(lang_New,"FlipBit('Topic_View',TopicView,3);",BitStatus(TopicView,3));
- menu_filter.addMenuItem(lang_Hot,"FlipBit('Topic_View',TopicView,2);",BitStatus(TopicView,2));
- menu_filter.addMenuItem(lang_Pop,"FlipBit('Topic_View',TopicView,1);",BitStatus(TopicView,1));
- menu_filter.addMenuItem(lang_EdPick,"FlipBit('Topic_View',TopicView,0);",BitStatus(TopicView,0));
- return menu_filter;
-}
-
-function Topics_SelectMenu()
-{
- menu_select = new Menu(TopicText);
- menu_select.addMenuItem(lang_All,"javascript:selectAll('"+activeTab.id+"');","");
- menu_select.addMenuItem(lang_Unselect,"javascript:unselectAll('"+activeTab.id+"');","");
- menu_select.addMenuItem(lang_Invert,"javascript:invert('"+activeTab.id+"');","");
-
- return menu_select;
-}
-
-function Topics_PerPageMenu()
-{
- caption = lang_Topics +" "+lang_PerPage;
-
- menu_results = new Menu(caption);
- menu_results.addMenuItem("10","config_val('Perpage_Topics', '10');",RadioIsSelected(Topics_Perpage,10));
- menu_results.addMenuItem("20","config_val('Perpage_Topics', '20');",RadioIsSelected(Topics_Perpage,20));
- menu_results.addMenuItem("50","config_val('Perpage_Topics', '50');",RadioIsSelected(Topics_Perpage,50));
- menu_results.addMenuItem("100","config_val('Perpage_Topics', '100');",RadioIsSelected(Topics_Perpage,100));
- menu_results.addMenuItem("500","config_val('Perpage_Topics', '500');",RadioIsSelected(Topics_Perpage,500));
- return menu_results;
-}
-
-
-</script>
-
-END;
-?>
Property changes on: trunk/in-bulletin/admin/include/toolbar/editcategory_relationselect.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/include/toolbar/item_select.php
===================================================================
--- trunk/in-bulletin/admin/include/toolbar/item_select.php (revision 12824)
+++ trunk/in-bulletin/admin/include/toolbar/item_select.php (nonexistent)
@@ -1,20 +0,0 @@
-<?php
-global $section, $pathtoroot, $envar, $g_bb_status, $bb_categories_articles, $n_cat_filter, $bb_pending_category, $bb_disabled_category, $bb_category_sort, $bb_category_sortby;
-global $imagesURL, $rootURL, $objSession, $m_tab_CatTab_hide;
-global $targetform,$targetfield,$formtitle,$formaction, $PHP_SELF;
-
-print <<<END
-
-<script language="Javascript">
-
-TopicChecks = new CheckArray();
-
-TopicChecks.formname='topiclistform';
-TopicChecks.envar='$envar';
-
-</script>
-
-END;
-
-?>
-
Property changes on: trunk/in-bulletin/admin/include/toolbar/item_select.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/include/toolbar/reviews.php
===================================================================
--- trunk/in-bulletin/admin/include/toolbar/reviews.php (revision 12824)
+++ trunk/in-bulletin/admin/include/toolbar/reviews.php (nonexistent)
@@ -1,131 +0,0 @@
-<?php
-
-global $objTopicReviewList,$objConfig,$objSession,$ItemTabs,$TotalItemCount,$Bit_All,$Bit_Pending,$Bit_Disabled,$DefaultTab;
-
-$m_tab_Topic_hide = isset($DefaultTab)&&($DefaultTab=='topic_reviews') ? 0 : 1;
-
-$TopicReview_View = $objConfig->Get('TopicReview_View');
-$TopicReview_AllValue = 112;
-
-if(!is_numeric($TopicReview_View)) $TopicReview_View=112;
-
-$Review_Perpage = (int)$objConfig->Get('Perpage_TopicReviews'); // TODO: add to config (in update script)
-if(!$Review_Perpage) $Review_Perpage="'all'";
-
-if($TopicReview_View==$TopicReview_AllValue)
-{
- $TopicReview_ShowAll = 1;
- $TopicReview_Filter = '';
-}
-else
-{
- // FILTERING CODE V. 1.2
- $where_clauses = Array(); $q = '';
-
- // Group #1: Link Statuses (active,pending,disabled)
- $Status = Array();
- if($TopicReview_View & $Bit_Pending) $Status[] = STATUS_PENDING;
- if($TopicReview_View & $Bit_Active) $Status[] = STATUS_ACTIVE;
- if($TopicReview_View & $Bit_Disabled) $Status[] = STATUS_DISABLED;
- $where_clauses[] = 'Status IN ('.($Status?implode(',', $Status):'-1').')';
-
- $TopicReview_Filter = count($where_clauses) ? '('.implode(') AND (', $where_clauses).')' : '';
-}
-
-
-$list = $objSession->GetVariable('bb_review_direct_search');
-
-$objTopicReviewList = new clsItemReviewList();
-$objTopicReviewList->EnablePaging=true;
-$objTopicReviewList->PerPageVar='Perpage_TopicReviews';
-$objTopicReviewList->PageEnvar='bb_var_list';
-$objTopicReviewList->PageEnvarIndex='rp';
-$objTopicReviewList->setPageFromENV();
-
-$sql = 'SELECT * FROM '.$objLinkReviewList->SourceTable.' ';
-
-$where = 'WHERE (Module=\'In-Bulletin\') AND ';
-
-if( $objSession->HasCatPermission("TOPIC.VIEW") )
-{
- if(!$list)
- {
- if($TopicReview_Filter) $where.=$TopicReview_Filter;
- $SearchQuery = '';
- }
- else
- {
- $SearchQuery = $objTopicReviewList->AdminSearchWhereClause($list);
- if($SearchQuery)
- {
- $SearchQuery = ' ('.$SearchQuery.')'.($TopicReview_Filter ? ' AND ('.$TopicReview_Filter.')' : '');
- $where.=$SearchQuery;
- }
- else
- {
- if($TopicReview_Filter) $where.=$TopicReview_Filter;
- }
- }
-
- $sql.=rtrim($where,' AND ').' ORDER BY Priority DESC';
-
- $objTopicReviewList->Query_Item($sql,false,'set_last');
-
- $tmp=rtrim(ltrim($where,'WHERE '),' AND ');
- $objTopicReviewList->QueryItemCount = TableCount($objTopicReviewList->SourceTable, $tmp, 0);
- $CatTotal = QueryCount('SELECT * FROM '.$objTopicReviewList->SourceTable.' WHERE Module=\'In-Bulletin\'');
-
- $caption = admin_language('la_ItemTab_Topics');
- $ItemTabs->AddTab(admin_language("la_ItemTab_Topics"),"topic_reviews",$objTopicReviewList->QueryItemCount, $m_tab_Topic_hide,$CatTotal);
-}
-
-
-$lang_Reviews = language("la_Text_Reviews");
-
-$TotalItemCount += $objTopicReviewList->QueryItemCount;
-
-print <<<END
-
-<script language="JavaScript">
-
-var Review_Perpage = $Review_Perpage;
-var TopicReview_View = $TopicReview_View;
-var TopicTitle = '$caption';
-var lang_Reviews = "$lang_Reviews";
-
- \$fw_menus['rev.topics_view_menu'] = function()
- {
- // filtring menu
- \$Menus['rev.topics_filtring_menu'] = new Menu(lang_View);
- \$Menus['rev.topics_filtring_menu'].addMenuItem(lang_All,"config_val('TopicReview_View', $TopicReview_AllValue);",TopicReview_View==$TopicReview_AllValue);
- \$Menus['rev.topics_filtring_menu'].addMenuItem(lang_None,"config_val('TopicReview_View', 0);",TopicReview_View==0);
- \$Menus['rev.topics_filtring_menu'].addMenuSeparator();
- \$Menus['rev.topics_filtring_menu'].addMenuItem(lang_Active,"FlipBit('TopicReview_View',TopicReview_View,6);",BitStatus(TopicReview_View,6));
- \$Menus['rev.topics_filtring_menu'].addMenuItem(lang_Pending,"FlipBit('TopicReview_View',TopicReview_View,5);", BitStatus(TopicReview_View,5));
- \$Menus['rev.topics_filtring_menu'].addMenuItem(lang_Disabled,"FlipBit('TopicReview_View',TopicReview_View,4);",BitStatus(TopicReview_View,4));
-
- // perpage menu
- \$Menus['rev.topics_perpage_menu'] = new Menu(lang_PerPage);
- \$Menus['rev.topics_perpage_menu'].addMenuItem("10","config_val('Perpage_TopicReviews', '10');",RadioIsSelected(Review_Perpage,10));
- \$Menus['rev.topics_perpage_menu'].addMenuItem("20","config_val('Perpage_TopicReviews', '20');",RadioIsSelected(Review_Perpage,20));
- \$Menus['rev.topics_perpage_menu'].addMenuItem("50","config_val('Perpage_TopicReviews', '50');",RadioIsSelected(Review_Perpage,50));
- \$Menus['rev.topics_perpage_menu'].addMenuItem("100","config_val('Perpage_TopicReviews', '100');",RadioIsSelected(Review_Perpage,100));
- \$Menus['rev.topics_perpage_menu'].addMenuItem("500","config_val('Perpage_TopicReviews', '500');",RadioIsSelected(Review_Perpage,500));
-
- // select menu
- \$Menus['rev.topics_select_menu'] = new Menu(lang_Select);
- \$Menus['rev.topics_select_menu'].addMenuItem(lang_All,"javascript:selectAllC('"+activeTab.id+"');","");
- \$Menus['rev.topics_select_menu'].addMenuItem(lang_Unselect,"javascript:unselectAll('"+activeTab.id+"');","");
- \$Menus['rev.topics_select_menu'].addMenuItem(lang_Invert,"javascript:invert('"+activeTab.id+"');","");
-
- // view menu
- \$Menus['rev.topics_view_menu'] = new Menu(TopicTitle);
- \$Menus['rev.topics_view_menu'].addMenuItem( \$Menus['rev.topics_filtring_menu'] );
- \$Menus['rev.topics_view_menu'].addMenuItem( \$Menus['rev.topics_perpage_menu'] );
- \$Menus['rev.topics_view_menu'].addMenuItem( \$Menus['rev.topics_select_menu'] );
- }
-
-</script>
-
-END;
-?>
Property changes on: trunk/in-bulletin/admin/include/toolbar/reviews.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/include/toolbar/edittopic_reviews.php
===================================================================
--- trunk/in-bulletin/admin/include/toolbar/edittopic_reviews.php (revision 12824)
+++ trunk/in-bulletin/admin/include/toolbar/edittopic_reviews.php (nonexistent)
@@ -1,219 +0,0 @@
-<?php
- global $envar,$rootURL,$imagesURL, $RevFilter, $objConfig, $adminURL,$admin;
-
-$Rev_AllValue = 7;
-
-$Bit_Disabled=1;
-$Bit_Enabled=2;
-$Bit_Pending = 4;
-
-$RevView = $objConfig->Get("TopicRev_View");
-
-if(!is_numeric($RevView))
-{
- $RevView = $Rev_AllValue;
-}
-else
-{
- $StatusList = array();
-
- if($RevView & $Bit_Disabled)
- $StatusList[] = 0;
-
- if($RevView & $Bit_Enabled)
- $StatusList[] = 1;
-
- if($RevView & $Bit_Pending)
- $StatusList[] = 2;
-
- if(count($StatusList))
- {
- $status = " r.Status IN (".implode(",",$StatusList).") ";
- }
- else
- $status = " r.Status = -1 ";
-
- $RevFilter = $status;
-}
-
-$Perpage_Reviews = (int)$objConfig->Get("Perpage_Reviews");
-if(!$Perpage_Reviews)
- $PerPage_Reviews = 20;
-
-$SortOrder = $objConfig->Get("TopicReview_LV_Sortorder");
-if(!strlen($SortOrder))
- $SortOrder = "desc";
-
-$SortField = $objConfig->Get("TopicReview_LV_Sortfield");
-if(!strlen($SortField))
- $SortField = "DatePosted";
-
-$lang_ReviewText = language("la_prompt_ReviewText");
-$lang_Reviewer = language("la_Prompt_ReviewedBy");
-$lang_Reviews = language("la_Text_Reviews");
-
-print<<<END
-
-<script language="JavaScript1.2" src="$adminURL/include/checkarray.js"></script>
-
-<script language="javascript1.2">
-<!--
-
-RevChecks = new CheckArray();
-
-RevChecks.formname='topic';
-RevChecks.envar='$envar';
-
-var RevView = $RevView;
-var Rev_Perpage = $Perpage_Reviews;
-var Rev_Sortfield = "$SortField";
-var Rev_Sortorder = "$SortOrder";
-var lang_ReviewText = "$lang_ReviewText";
-var lang_Reviewer = "$lang_Reviewer";
-var lang_Reviews = "$lang_Reviews";
-
-
-function ShowViewMenu()
-{
- button = document.getElementById('viewmenubutton');
-
- x = getRealLeft(button);
- y = getRealTop(button);
-
- fwLoadMenus();
- window.FW_showMenu(window.view_menu,x,y+32);
- return false;
-}
-
-
-function fwLoadMenus() {
-
- window.menu_filter = new Menu(lang_View);
-
- menu_filter.imagePath = "$imagesURL"+'/';
- menu_filter.addMenuItem(lang_All,"config_val('TopicRev_View',$Rev_AllValue);",RevView==$Rev_AllValue);
- menu_filter.addMenuSeparator();
-
- menu_filter.addMenuItem(lang_Enabled,"FlipBit('TopicRev_View',RevView,1);",BitStatus(RevView,1));
- menu_filter.addMenuItem(lang_Disabled,"FlipBit('TopicRev_View',RevView,0);",BitStatus(RevView,0));
- menu_filter.addMenuItem(lang_Pending,"FlipBit('TopicRev_View',RevView,2);",BitStatus(RevView,2));
-
- window.menu_sorting = new Menu(lang_Sort);
- menu_sorting.imagePath = "$imagesURL"+'/';
- menu_sorting.addMenuItem(lang_Asc,"config_val('TopicReview_LV_Sortorder','asc');",RadioIsSelected(Rev_Sortorder,'asc'));
- menu_sorting.addMenuItem(lang_Desc,"config_val('TopicReview_LV_Sortorder','desc');",RadioIsSelected(Rev_Sortorder,'desc'));
- menu_sorting.addMenuSeparator();
- menu_sorting.addMenuItem(lang_Default,"config_val('TopicReview_LV_Sortfield','DatePosted');","");
- menu_sorting.addMenuItem(lang_ReviewText,"config_val('TopicReview_LV_Sortfield','ReviewText');",RadioIsSelected(Rev_Sortfield,'ReviewText'));
- menu_sorting.addMenuItem(lang_Reviewer,"config_val('TopicReview_LV_Sortfield','Reviewer');",RadioIsSelected(Rev_Sortfield,'Reviewer'));
- menu_sorting.addMenuItem(lang_CreatedOn,"config_val('TopicReview_LV_Sortfield','CreatedOn');",RadioIsSelected(Rev_Sortfield,'CreatedOn'));
- menu_sorting.addMenuItem(lang_Status,"config_val('TopicReview_LV_Sortfield','ReviewStatus');",RadioIsSelected(Rev_Sortfield,'ReviewStatus'));
-
-
- window.menu_results = new Menu(lang_Reviews+' '+lang_PerPage);
- menu_results.imagePath = "$imagesURL"+'/';
- menu_results.addMenuItem("10","config_val('Perpage_Reviews', '10');",RadioIsSelected(Rev_Perpage,10));
- menu_results.addMenuItem("20","config_val('Perpage_Reviews', '20');",RadioIsSelected(Rev_Perpage,20));
- menu_results.addMenuItem("50","config_val('Perpage_Reviews', '50');",RadioIsSelected(Rev_Perpage,50));
- menu_results.addMenuItem("100","config_val('Perpage_Reviews', '100');",RadioIsSelected(Rev_Perpage,100));
- menu_results.addMenuItem("500","config_val('Perpage_Reviews', '500');",RadioIsSelected(Rev_Perpage,500));
-
- window.menu_select = new Menu(lang_Select);
- menu_select.addMenuItem(lang_All,"RevChecks.selectAll(true);","");
- menu_select.addMenuItem(lang_Unselect,"RevChecks.selectAll(false);","");
- menu_select.addMenuItem(lang_Invert,"RevChecks.invertItems();","");
-
- window.view_menu = new Menu("root");
- view_menu.imagePath = "$imagesURL"+'/';
- window.view_menu.addMenuItem(menu_filter);
- window.view_menu.addMenuItem(menu_sorting);
- window.view_menu.addMenuItem(menu_results);
- window.view_menu.addMenuItem(menu_select);
-
- window.triedToWriteMenus = false;
- window.view_menu.writeMenus();
-
-} // fwLoadMenus()
-
-//function called when a listview item is double clicked
-function handleDoubleClick()
-{
- RevChecks.check_submit('addreview', '');
-}
-
-//function called to create the right click popup menu
-function initContextMenu()
-{
- window.contextMenu = new Menu("Context");
- contextMenu.addMenuItem(lang_Edit,"RevChecks.check_submit('addreview', '');","");
- contextMenu.addMenuItem(lang_Delete,"RevChecks.check_submit('addtopic_reviews', 'm_review_delete');","");
- contextMenu.addMenuSeparator();
- contextMenu.addMenuItem(lang_MoveUp,"RevChecks.check_submit('addtopic_reviews', 'm_review_move_up');","");
- contextMenu.addMenuItem(lang_MoveDn,"RevChecks.check_submit('addtopic_reviews', 'm_review_move_down');","");
-
- window.triedToWriteMenus = false;
- window.contextMenu.writeMenus();
- return true;
-}
-
-//function used by the edit tabs to submit to temp tables
-function edit_submit(formname, targetURL)
-{
- var env_str = '$envar';
-
- document.location = '$rootURL' + targetURL + '?' + env_str;
-
-}
-
-function do_save_review(formname, targetURL,save_value)
-{
- var env_str = '$envar';
-
- f = document.getElementById(formname);
- if(f)
- {
- valid = DataIsValid(f);
- if(valid || save_value==-1)
- {
- if(save_value==-1)
- {
- edit_submit(formname,targetURL);
- }
- else
- {
- f.action = '$rootURL' + targetURL + '?' + env_str;
- f.TopicEditStatus.value = save_value; //0= stay in temp, 1=save to perm, 2 = purge no save
- f.submit();
- }
- }
- else
- if(!valid)
- alert(ErrorMsg);
-
- }
- else
- alert('Form '+formname+' was not found.');
-}
-
-
-function do_edit_save(formname, targetURL,save_value)
-{
- var env_str = '$envar';
-
- f = document.getElementById(formname);
- if(f)
- {
- f.action = '$rootURL' + targetURL + '?' + env_str;
-
- f.TopicEditStatus.value = save_value; //0= stay in temp, 1=save to perm, 2 = purge no save
- f.submit();
- }
- else
- alert('Form '+formname+' was not found.');
-}
-
-//-->
-</script>
-
-END;
-?>
Property changes on: trunk/in-bulletin/admin/include/toolbar/edittopic_reviews.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/include/toolbar/edittopic_custom.php
===================================================================
--- trunk/in-bulletin/admin/include/toolbar/edittopic_custom.php (revision 12824)
+++ trunk/in-bulletin/admin/include/toolbar/edittopic_custom.php (nonexistent)
@@ -1,123 +0,0 @@
-<?php
-
-global $rootURL,$envar, $objConfig,$adminURL,$imagesURL,$admin;
-
-$Perpage_Custom = (int)$objConfig->Get("Perpage_CustomData");
-if(!$Perpage_Custom)
- $PerPage_Custom = 20;
-
-$SortOrder = $objConfig->Get("CustomData_LV_Sortorder");
-if(!strlen($SortOrder))
- $SortOrder = "desc";
-
-$SortField = $objConfig->Get("CustomData_LV_Sortfield");
-if(!strlen($SortField))
- $SortField = "FieldName";
-
-$lang_FieldName = language("la_ColHeader_FieldName");
-$lang_FieldLabel = language("la_ColHeader_FieldLabel");
-$lang_Value = language("la_ColHeader_Value");
-$lang_Fields = language("la_Text_Fields");
-
-print<<<END
-<script language="javascript1.2">
-<!--
-var Custom_Perpage = $Perpage_Custom;
-var Custom_Sortfield = "$SortField";
-var Custom_Sortorder = "$SortOrder";
-var lang_FieldName = "$lang_FieldName";
-var lang_FieldLabel = "$lang_FieldLabel";
-var lang_Fields = "$lang_Fields";
-var lang_Value = "$lang_Value";
-
-function ShowViewMenu()
-{
- button = document.getElementById('viewmenubutton');
-
- x = getRealLeft(button);
- y = getRealTop(button);
-
- fwLoadMenus();
- window.FW_showMenu(window.view_menu,x,y+32);
- return false;
-}
-
-
-function fwLoadMenus()
-{
- window.menu_sorting = new Menu(lang_Sort);
- menu_sorting.imagePath = "$imagesURL"+'/';
- menu_sorting.addMenuItem(lang_Asc,"config_val('CustomData_LV_Sortorder','asc');",RadioIsSelected(Custom_Sortorder,'asc'));
- menu_sorting.addMenuItem(lang_Desc,"config_val('CustomData_LV_Sortorder','desc');",RadioIsSelected(Custom_Sortorder,'desc'));
- menu_sorting.addMenuSeparator();
- menu_sorting.addMenuItem(lang_Default,"config_val('CustomData_LV_Sortfield','FieldName');","");
- menu_sorting.addMenuItem(lang_FieldName,"config_val('CustomData_LV_Sortfield','FieldName');",RadioIsSelected(Custom_Sortfield,'FieldName'));
- menu_sorting.addMenuItem(lang_FieldLabel,"config_val('CustomData_LV_Sortfield','FieldLabel');",RadioIsSelected(Custom_Sortfield,'FieldLabel'));
- menu_sorting.addMenuItem(lang_Value,"config_val('CustomData_LV_Sortfield','Value');",RadioIsSelected(Custom_Sortfield,'Value'));
-
-
- window.menu_results = new Menu(lang_Fields+' '+lang_PerPage);
- menu_results.imagePath = "$imagesURL"+'/';
- menu_results.addMenuItem("10","config_val('Perpage_CustomData', '10');",RadioIsSelected(Custom_Perpage,10));
- menu_results.addMenuItem("20","config_val('Perpage_CustomData', '20');",RadioIsSelected(Custom_Perpage,20));
- menu_results.addMenuItem("50","config_val('Perpage_CustomData', '50');",RadioIsSelected(Custom_Perpage,50));
- menu_results.addMenuItem("100","config_val('Perpage_CustomData', '100');",RadioIsSelected(Custom_Perpage,100));
- menu_results.addMenuItem("500","config_val('Perpage_CustomData', '500');",RadioIsSelected(Custom_Perpage,500));
-
- window.view_menu = new Menu("root");
- view_menu.imagePath = "$imagesURL"+'/';
- window.view_menu.addMenuItem(menu_sorting);
- window.view_menu.addMenuItem(menu_results);
-
- window.triedToWriteMenus = false;
- window.view_menu.writeMenus();
-
-} // fwLoadMenus()
-
-function edit_submit(formname, targetURL,save_value,env)
-{
- var env_str = '$envar';
-
- if(env)
- {
- if(env.length>0)
- env_str = env;
- }
- f = document.getElementById(formname);
- if(f)
- {
- f.action = '$rootURL' + targetURL + '?' + env_str;
- f.TopicEditStatus.value = save_value; //0= stay in temp, 1=save to perm, 2 = purge no save
- //alert(f.name+ ' is submitting to '+ f.action + ' action is:' + f.Action.value);
- f.submit();
- }
- else
- alert('Form '+formname+' was not found.');
-}
-
-function page_submit(formname,targetURL,save_value,TargetPage,env)
-{
- var env_str = '$envar';
-
- if(env)
- {
- if(env.length>0)
- env_str = env;
- }
-
- f = document.getElementById(formname);
- if(f)
- {
- f.action = '$rootURL' + targetURL + '?' + env_str+'&lpn='+TargetPage;
- f.TopicEditStatus.value = save_value; //0= stay in temp, 1=save to perm, 2 = purge no save
- f.submit();
- }
- else
- alert('Form '+formname+' was not found.');
-}
-
-//-->
-</script>
-
-END;
-?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/include/toolbar/edittopic_custom.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/include/toolbar/edittopic_image.php
===================================================================
--- trunk/in-bulletin/admin/include/toolbar/edittopic_image.php (revision 12824)
+++ trunk/in-bulletin/admin/include/toolbar/edittopic_image.php (nonexistent)
@@ -1,259 +0,0 @@
-<?php
-global $envar,$rootURL,$imagesURL, $objConfig,$imgFilter, $admin, $adminURL;
-
-$group_select = $adminURL."/users/group_select.php";
-//$item_select = $rootURL."admin/relation_select.php";
-$item_select = $adminURL."/relations/item_type.php";
-$cat_select = $adminURL."/cat_select.php";
-
-$Img_AllValue = 3;
-
-$Bit_Enabled=1;
-$Bit_Disabled=2;
-
-$ImgView = $objConfig->Get("NewsImg_View");
-
-if(!is_numeric($ImgView))
-{
- $ImgView = $Img_AllValue;
-}
-else
-{
- if($ImgView & $Bit_Enabled)
- $Filters[] = "img.Enabled=1";
-
- if($ImgView & $Bit_Disabled)
- $Filters[] = "img.Enabled=0";
-
- if(count($Filters))
- {
- $imgFilter = implode(" OR ",$Filters);
- }
- else
- $imgFilter = "ImageId = -1";
-}
-
-$SortField = $objConfig->Get("NewsImage_LV_Sortfield");
-if(!strlen($SortField))
- $SortField = "Name";
-
-$SortOrder = $objConfig->Get("NewsImage_LV_Sortorder");
-if(!strlen($SortOrder))
- $SortOrder = "desc";
-
-$Perpage_Images = (int)$objConfig->Get("Perpage_Images");
-if(!$Perpage_Images)
- $Perpage_Images = 20;
-
-$lang_Alt = admin_language("la_prompt_AltName");
-$lang_Images = admin_language("la_Text_Images");
-$errormsg = admin_language("la_validation_AlertMsg");
-
-
-print<<<END
-
-<script language="JavaScript1.2" src="$adminURL/include/checkarray.js"></script>
-
-<script language="javascript1.2">
-<!--
-
-var ImgView = $ImgView;
-var Img_Perpage = $Perpage_Images;
-var Img_Sortfield = "$SortField";
-var Img_Sortorder = "$SortOrder";
-var lang_Alt = "$lang_Alt";
-var lang_Images = "$lang_Images";
-var doubleClickAction = "PermChecks.check_submit('addimage', '');";
-var ErrorMsg = '$errormsg';
-
-
-
-PermChecks = new CheckArray();
-
-PermChecks.formname='imagelistform';
-PermChecks.envar='$envar';
-
-function SetFieldEnable(el,TargetFieldId)
-{
- t = document.getElementById(TargetFieldId);
- if(el.checked)
- {
- t.disabled = true;
- }
- else
- t.disabled = false;
-}
-
-function enableFullImage(el)
-{
- SetFieldEnable(el,'imgFullFile');
- SetFieldEnable(el,'imgFullUrl');
- SetFieldEnable(el,'full1');
- SetFieldEnable(el,'full2');
-}
-
-//function used by the edit tabs to submit to temp tables
-function edit_submit(formname, targetURL)
-{
- var env_str = '$envar';
-
- document.location = '$rootURL' + targetURL + '?' + env_str;
-}
-
-function do_edit_save(formname, targetURL,save_value)
-{
- var env_str = '$envar';
-
- f = document.getElementById(formname);
- if(f)
- {
- f.action = '$rootURL' + targetURL + '?' + env_str;
- f.TopicEditStatus.value = save_value; //0= stay in temp, 1=save to perm, 2 = purge no save
- f.submit();
- }
- else
- alert('Form '+formname+' was not found.');
-}
-
-
-function DataIsValid(f)
-{
- var result=true;
-
- s = document.getElementById("prompt_imgName");
- if(f.imgName.value.length)
- {
- s.className = "text";
- }
- else
- {
- result = false;
- s.className = "validation_error";
- }
-
- s = document.getElementById("prompt_imgAlt");
- if(f.imgAlt.value.length)
- {
- s.className = "text";
- }
- else
- {
- result = false;
- s.className = "validation_error";
- }
-
- return result;
-}
-
-function do_image_save(formname, targetURL,save_value)
-{
- var env_str = '$envar';
-
- f = document.getElementById(formname);
- if(f)
- {
- valid = DataIsValid(f);
- if(valid || save_value==-1)
- {
- f.action = '$rootURL' + targetURL + '?' + env_str;
- f.TopicEditStatus.value = save_value; //0= stay in temp, 1=save to perm, 2 = purge no save
- f.submit();
- }
- else
- if(!valid)
- alert(ErrorMsg);
-
- }
- else
- alert('Form '+formname+' was not found.');
-}
-
-function ShowViewMenu()
-{
- button = document.getElementById('viewmenubutton');
-
- x = getRealLeft(button);
- y = getRealTop(button);
-
- fwLoadMenus();
-
- window.FW_showMenu(window.view_menu,x,y+32);
- return false;
-}
-
-
-function fwLoadMenus() {
-
- window.menu_filter = new Menu(lang_View);
-
- menu_filter.imagePath = "$imagesURL"+'/';
- menu_filter.addMenuItem(lang_All,"config_val('NewsImg_View',$Img_AllValue);",ImgView==$Img_AllValue);
- menu_filter.addMenuSeparator();
-
- menu_filter.addMenuItem(lang_Enabled,"FlipBit('NewsImg_View',ImgView,0);",BitStatus(ImgView,0));
- menu_filter.addMenuItem(lang_Disabled,"FlipBit('NewsImg_View',ImgView,1);",BitStatus(ImgView,1));
-
-
- window.menu_sorting = new Menu(lang_Sort);
- menu_sorting.imagePath = "$imagesURL"+'/';
- menu_sorting.addMenuItem(lang_Asc,"config_val('NewsImage_LV_Sortorder','asc');",RadioIsSelected(Img_Sortorder,'asc'));
- menu_sorting.addMenuItem(lang_Desc,"config_val('NewsImage_LV_Sortorder','desc');",RadioIsSelected(Img_Sortorder,'desc'));
- menu_sorting.addMenuSeparator();
- menu_sorting.addMenuItem(lang_Default,"config_val('NewsImage_LV_Sortfield','FullName');","");
- menu_sorting.addMenuItem(lang_Name,"config_val('NewsImage_LV_Sortfield','FullName');",RadioIsSelected(Img_Sortfield,'FullName'));
- menu_sorting.addMenuItem(lang_Alt,"config_val('NewsImage_LV_Sortfield','AltName');",RadioIsSelected(Img_Sortfield,'AltName'));
- menu_sorting.addMenuItem(lang_URL,"config_val('NewsImage_LV_Sortfield','ShowURL');",RadioIsSelected(Img_Sortfield,'ShowURL'));
- menu_sorting.addMenuItem(lang_Status,"config_val('NewsImage_LV_Sortfield','Status');",RadioIsSelected(Img_Sortfield,'Status'));
-
-
- window.menu_results = new Menu(lang_Images+' '+lang_PerPage);
- menu_results.imagePath = "$imagesURL"+'/';
- menu_results.addMenuItem("10","config_val('Perpage_Images', '10');",RadioIsSelected(Img_Perpage,10));
- menu_results.addMenuItem("20","config_val('Perpage_Images', '20');",RadioIsSelected(Img_Perpage,20));
- menu_results.addMenuItem("50","config_val('Perpage_Images', '50');",RadioIsSelected(Img_Perpage,50));
- menu_results.addMenuItem("100","config_val('Perpage_Images', '100');",RadioIsSelected(Img_Perpage,100));
- menu_results.addMenuItem("500","config_val('Perpage_Images', '500');",RadioIsSelected(Img_Perpage,500));
-
- window.menu_select = new Menu(lang_Select);
- menu_select.addMenuItem(lang_All,"PermChecks.selectAll(true);","");
- menu_select.addMenuItem(lang_Unselect,"PermChecks.selectAll(false);","");
- menu_select.addMenuItem(lang_Invert,"PermChecks.invertItems();","");
-
- window.view_menu = new Menu("root");
- view_menu.imagePath = "$imagesURL"+'/';
- window.view_menu.addMenuItem(menu_filter);
- window.view_menu.addMenuItem(menu_sorting);
- window.view_menu.addMenuItem(menu_results);
- window.view_menu.addMenuItem(menu_select);
-
- window.triedToWriteMenus = false;
- window.view_menu.writeMenus();
-
-} // fwLoadMenus()
-
-//function called when a listview item is double clicked
-function handleDoubleClick()
-{
- PermChecks.check_submit('addimage', '');
-}
-
-//function called to create the right click popup menu
-function initContextMenu()
-{
- window.contextMenu = new Menu("Context");
- contextMenu.addMenuItem(lang_Edit,"PermChecks.check_submit('addimage', '');","");
- contextMenu.addMenuItem(lang_Delete,"PermChecks.check_submit('addcategory_images', 'm_img_delete');","");
- contextMenu.addMenuSeparator();
- contextMenu.addMenuItem(lang_MoveUp,"PermChecks.check_submit('addcategory_images', 'm_img_move_up');","");
- contextMenu.addMenuItem(lang_MoveDn,"PermChecks.check_submit('addcategory_images', 'm_img_move_down');","");
-
- window.triedToWriteMenus = false;
- window.contextMenu.writeMenus();
- return true;
-}
-
-//-->
-</script>
-
-END;
-?>
Property changes on: trunk/in-bulletin/admin/include/toolbar/edittopic_image.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/include/toolbar/edittopic_relations.php
===================================================================
--- trunk/in-bulletin/admin/include/toolbar/edittopic_relations.php (revision 12824)
+++ trunk/in-bulletin/admin/include/toolbar/edittopic_relations.php (nonexistent)
@@ -1,251 +0,0 @@
-<?php
-global $envar,$rootURL,$imagesURL, $RelFilter, $adminURL;
-
-$group_select = $adminURL."/users/group_select.php";
-$item_select = $adminURL."/relation_select.php";
-
-$Rel_AllValue = 255;
-
-$Bit_Categories = 1;
-$Bit_Links = 2;
-$Bit_News = 4;
-$Bit_Topics = 8;
-
-$Bit_OneWay = 16;
-$Bit_Recip = 32;
-
-$Bit_Enabled=64;
-$Bit_Disabled=128;
-
-$RelView = $objConfig->Get("TopicRel_View");
-
-if(!is_numeric($RelView))
-{
- $RelView = $Rel_AllValue;
-}
-else
-{
- $RelTypes = array();
- if($RelView & $Bit_Categories)
- $RelTypes[] = 1;
- if($RelView & $Bit_Links)
- $RelTypes[] = 4;
- if($RelView & $Bit_News)
- $RelTypes[] = 2;
- if($RelView & $Bit_Topics)
- $RelTypes[] = 3;
-
- $RelFilters = array();
-
- if(count($RelTypes))
- {
- $TypeFilter = "rel.TargetType IN (".implode(",",$RelTypes).")";
- }
-
- $RelTypes = array();
- if($RelView & $Bit_OneWay)
- $RelTypes[] = 0;
-
- if($RelView & $Bit_Recip)
- $RelTypes[] = 1;
-
- if(count($RelTypes))
- $RelFilters[] = "rel.Type IN (".implode(",",$RelTypes).")";
-
- if($RelView & $Bit_Enabled)
- $RelFilters[] = "rel.Enabled=1";
-
- if($RelView & $Bit_Disabled)
- $RelFilters[] = "rel.Enabled=0";
-
- if(count($RelFilters))
- {
- $RelFilter = $TypeFilter." AND (". implode(" OR ",$RelFilters).")";
- }
- else
- $RelFilter = $TypeFilter;
-}
-
-$Perpage_Relations = (int)$objConfig->Get("Perpage_Relations");
-if(!$Perpage_Relations)
- $PerPage_Relations = 20;
-
-$SortOrder = $objConfig->Get("TopicRelation_LV_Sortorder");
-if(!strlen($SortOrder))
- $SortOrder = "desc";
-
-$SortField = $objConfig->Get("TopicRelation_LV_Sortfield");
-if(!strlen($SortField))
- $SortField = "ItemName";
-
-$lang_Links = language("la_Text_Links");
-$lang_Articles = language("la_Text_Articles");
-$lang_Topics = language("la_Text_Categories");
-$lang_OneWay = language("la_Text_OneWay");
-$lang_Recip = language("la_Text_Reciprocal");
-$lang_ItemName = language("la_ColHeader_Item");
-$lang_ItemType = language("la_ColHeader_ItemType");
-$lang_RelType = language("la_prompt_RelationType");
-$lang_Relations = language("la_Text_Relations");
-$lang_Categories = language("la_ItemTab_Categories");
-
-
-print<<<END
-
-<script language="JavaScript1.2" src="$adminURL/include/checkarray.js"></script>
-
-<script language="javascript1.2">
-<!--
-
-PermChecks = new CheckArray();
-
-PermChecks.formname='permlistform';
-PermChecks.envar='$envar';
-
-var RelView = $RelView;
-var Rel_Perpage = $Perpage_Relations;
-var Rel_Sortfield = "$SortField";
-var Rel_Sortorder = "$SortOrder";
-
-var lang_Links = "$lang_Links";
-var lang_Articles = "$lang_Articles";
-var lang_Topics = "$lang_Topics";
-var lang_OneWay = "$lang_OneWay";
-var lang_Recip = "$lang_Recip";
-
-var lang_ItemName = "$lang_ItemName";
-var lang_ItemType = "$lang_ItemType";
-var lang_RelType = "$lang_RelType";
-var lang_Relations = "$lang_Relations";
-var lang_Categories = "$lang_Categories";
-
-function fwLoadMenus() {
-
- window.menu_filter = new Menu(lang_View);
-
- menu_filter.imagePath = "$imagesURL"+'/';
- menu_filter.addMenuItem(lang_All,"config_val('TopicRel_View',$Rel_AllValue);",RelView==$Rel_AllValue);
- menu_filter.addMenuSeparator();
-
- menu_filter.addMenuItem(lang_Categories,"FlipBit('TopicRel_View',RelView,0);",BitStatus(RelView,0));
- menu_filter.addMenuItem(lang_Links,"FlipBit('TopicRel_View',RelView,1);",BitStatus(RelView,1));
- menu_filter.addMenuItem(lang_Articles,"FlipBit('TopicRel_View',RelView,2);",BitStatus(RelView,2));
- menu_filter.addMenuItem(lang_Topics,"FlipBit('TopicRel_View',RelView,3);",BitStatus(RelView,3));
- menu_filter.addMenuSeparator();
-
- menu_filter.addMenuItem(lang_OneWay,"FlipBit('TopicRel_View',RelView,4);",BitStatus(RelView,4));
- menu_filter.addMenuItem(lang_Recip,"FlipBit('TopicRel_View',RelView,5);",BitStatus(RelView,5));
- menu_filter.addMenuSeparator();
- menu_filter.addMenuItem(lang_Enabled,"FlipBit('TopicRel_View',RelView,6);",BitStatus(RelView,6));
- menu_filter.addMenuItem(lang_Disabled,"FlipBit('TopicRel_View',RelView,7);",BitStatus(RelView,7));
-
-
- window.menu_sorting = new Menu(lang_Sort);
- menu_sorting.imagePath = "$imagesURL"+'/';
- menu_sorting.addMenuItem(lang_Asc,"config_val('TopicRelation_LV_Sortorder','asc');",RadioIsSelected(Rel_Sortorder,'asc'));
- menu_sorting.addMenuItem(lang_Desc,"config_val('TopicRelation_LV_Sortorder','desc');",RadioIsSelected(Rel_Sortorder,'desc'));
- menu_sorting.addMenuSeparator();
- menu_sorting.addMenuItem(lang_Default,"config_val('TopicRelation_LV_Sortfield','ItemName');","");
- menu_sorting.addMenuItem(lang_ItemName,"config_val('TopicRelation_LV_Sortfield','ItemName');",RadioIsSelected(Rel_Sortfield,'ItemName'));
- menu_sorting.addMenuItem(lang_ItemType,"config_val('TopicRelation_LV_Sortfield','ItemType');",RadioIsSelected(Rel_Sortfield,'ItemType'));
- menu_sorting.addMenuItem(lang_RelType,"config_val('TopicRelation_LV_Sortfield','RelationType');",RadioIsSelected(Rel_Sortfield,'RelationType'));
-
-
- window.menu_results = new Menu(lang_Relations+' '+lang_PerPage);
- menu_results.imagePath = "$imagesURL"+'/';
- menu_results.addMenuItem("10","config_val('Perpage_Relations', '10');",RadioIsSelected(Rel_Perpage,10));
- menu_results.addMenuItem("20","config_val('Perpage_Relations', '20');",RadioIsSelected(Rel_Perpage,20));
- menu_results.addMenuItem("50","config_val('Perpage_Relations', '50');",RadioIsSelected(Rel_Perpage,50));
- menu_results.addMenuItem("100","config_val('Perpage_Relations', '100');",RadioIsSelected(Rel_Perpage,100));
- menu_results.addMenuItem("500","config_val('Perpage_Relations', '500');",RadioIsSelected(Rel_Perpage,500));
-
- window.menu_select = new Menu(lang_Select);
- menu_select.addMenuItem(lang_All,"PermChecks.selectAll(true);","");
- menu_select.addMenuItem(lang_Unselect,"PermChecks.selectAll(false);","");
- menu_select.addMenuItem(lang_Invert,"PermChecks.invertItems();","");
-
- window.view_menu = new Menu("root");
- view_menu.imagePath = "$imagesURL"+'/';
- window.view_menu.addMenuItem(menu_filter);
- window.view_menu.addMenuItem(menu_sorting);
- window.view_menu.addMenuItem(menu_results);
- window.view_menu.addMenuItem(menu_select);
-
- window.triedToWriteMenus = false;
- window.view_menu.writeMenus();
-
-} // fwLoadMenus()
-
-//function called when a listview item is double clicked
-function handleDoubleClick()
-{
- PermChecks.check_submit('addrelation', '');
-}
-
-//function called to create the right click popup menu
-function initContextMenu()
-{
- window.contextMenu = new Menu("Context");
- contextMenu.addMenuItem(lang_Edit,"PermChecks.check_submit('addrelation', '');","");
- contextMenu.addMenuItem(lang_Delete,"PermChecks.check_submit('addcategory_relations', 'm_rel_delete');","");
- contextMenu.addMenuSeparator();
- contextMenu.addMenuItem(lang_MoveUp,"PermChecks.check_submit('addcategory_relations', 'm_rel_move_up');","");
- contextMenu.addMenuItem(lang_MoveDn,"PermChecks.check_submit('addcategory_relations', 'm_rel_move_down');","");
-
- window.triedToWriteMenus = false;
- window.contextMenu.writeMenus();
- return true;
-}
-
-
-
-function toggleTabA(tabId)
-{
- //alert('toggling '+tabId);
- toggleTab(tabId);
- var hl = document.getElementById("hidden_line");
- if (hl)
- hl.style.display = "none";
- tab_hdr = document.getElementById('tab_headers');
- if (!tab_hdr)
- {
- //alert('Cant find tab header container');
- return;
- }
- //alert('Tab header found..');
- for (var i = 0; i < tabIDs.length; i++)
- {
- var tabHeader;
- TDs = tab_hdr.getElementsByTagName("TD");
- for (var j = 0; j < TDs.length; j++)
- if (TDs[j].getAttribute("tabHeaderOf") == tabIDs[i])
- {
- tabHeader = TDs[j];
- break;
- }
- if (!tabHeader)
- {
- //alert('Couldnt find tab header');
- continue;
- }
- var tab = document.getElementById(tabIDs[i]);
- if (!tab)
- {
- //alert('Couldnt find tab!');
- continue;
- }
- tabHeader.setAttribute("background", "$imagesURL/itemtabs/" + ((tab.active) ? "tab_active" : "tab_inactive") + ".gif")
-
- var images = tabHeader.getElementsByTagName("IMG");
- if (images.length < 1) continue;
-
- images[0].src = "$imagesURL/itemtabs/" + ((tab.active) ? "divider_up" : "divider_empty") + ".gif";
- }
-}
-
-
-//-->
-</script>
-
-END;
-?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/include/toolbar/edittopic_relations.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/include/toolbar/browse.php
===================================================================
--- trunk/in-bulletin/admin/include/toolbar/browse.php (revision 12824)
+++ trunk/in-bulletin/admin/include/toolbar/browse.php (nonexistent)
@@ -1,212 +0,0 @@
-<?php
-
-global $objConfig,$objSession, $objTopicList,$objCatList, $SearchType,
- $ItemTabs,$TopicSearch, $TotalItemCount;
-
-global $Bit_All,$Bit_Pending,$Bit_Disabled,$Bit_New,$Bit_Pop,$Bit_Hot,$Bit_Ed,$DefaultTab;
-
-$m_tab_Forum_hide = 0;
-if(strlen($DefaultTab))
-{
- $m_tab_Forum_hide = ($DefaultTab=="topics") ? 0 : 1;
-}
-
-$Topics_AllValue = 127;
-
-$TopicView = $objConfig->Get("Topic_View");
-
-if(!is_numeric($TopicView))
-{
- $TopicView = $Topics_AllValue;
-}
-
-// default sorting params
-$Topic_SortField = $objConfig->Get('Topic_SortField');
-if( !strlen($Topic_SortField) ) $Topic_SortField = 'Priority';
-
-$Topic_SortOrder = $objConfig->Get('Topic_SortOrder');
-if( !strlen($Topic_SortOrder) ) $Topic_SortOrder = 'desc';
-
-$Perpage_Topics = (int)$objConfig->Get("Perpage_Topics");
-if(!$Perpage_Topics)
- $Perpage_Topics="'all'";
-
-
-if($TopicView == $Topics_AllValue)
-{
- $Topic_ShowAll = 1;
-}
-else
- $Topic_ShowAll = 0;
-
-if($Topic_ShowAll)
-{
- $TopicFilter = "";
- $Topic_View=$Topics_AllValue;
-}
-else
-{
- $Status = array();
- $Mod = array();
- if($TopicView & $Bit_Pending)
- $Status[] = STATUS_PENDING;
-
- if($TopicView & $Bit_Active)
- $Status[] = STATUS_ACTIVE;
-
-
- if($TopicView & $Bit_Disabled)
- $Status[] = STATUS_DISABLED;
-
- if(count($Status))
- {
- $TopicFilter .= " AND (Status IN (".implode(",",$Status).") ";
- }
- else
- $TopicFilter .= " AND ((Status=-1) ";
-
- if($TopicView & $Bit_Ed)
- {
- $TopicFilter .= " OR (EditorsPick=1) ";
- }
-
- if($TopicView & $Bit_New)
- {
- $cutoff = adodb_date("U") - ($objConfig->Get("Topic_NewDays") * 86400);
- $TopicFilter .= " OR (CreatedOn > ".$cutoff.") ";
- }
- if($TopicView & $Bit_Pop)
- {
- $cutoff = $objTopicList->GetPopValue();
- if($cutoff>0)
- $TopicFilter .= " OR (CachedRating >= ".$cutoff.") ";
- }
-
- if($TopicView & $Bit_Hot)
- {
- $cutoff = $objTopicList->GetHotValue();
- if($cutoff>0)
- $TopicFilter .= " OR (Posts >= ".$cutoff.") ";
- }
-
- $TopicFilter .= ")";
-}
-
-$list = $objSession->GetVariable("SearchWord");
-$TopicSearch = (strlen($list)>0 && $SearchType =="Topics" || $SearchType="all") || (strlen($list)==0);
-
-$TopicSearch = $TopicSearch && ($objSession->HasCatPermission("TOPIC.VIEW"));
-$objTopicList->Clear();
-
-$objTopicList->EnablePaging = TRUE;
-
-if($TopicSearch)
-{
- $OrderBy = $objTopicList->QueryOrderByClause(TRUE,TRUE,TRUE);
- if(strlen($list)==0)
- {
- $objTopicList->LoadTopics("CategoryId=".$objCatList->CurrentCategoryID().$TopicFilter,$OrderBy);
- }
- else
- {
- $SearchQuery = $objTopicList->AdminSearchWhereClause($list);
- if(strlen($SearchQuery))
- {
- $SearchQuery = " (".$SearchQuery.")";
- if(strlen($CatScopeClause))
- $SearchQuery .= " AND ". $CatScopeClause;
- $objTopicList->LoadTopics($SearchQuery.$TopicFilter,$OrderBy);
- }
- else
- $objTopicList->LoadTopics("CategoryId=".$objCatList->CurrentCategoryID().$TopicFilter,$OrderBy);
- }
-
- $CatTotal = TableCount($objTopicList->SourceTable," CategoryId=".$objCatList->CurrentCategoryID(),TRUE);
-
- $ItemTabs->AddTab(admin_language("la_ItemTab_Topics"),"topics",$objTopicList->QueryItemCount, $m_tab_Forum_hide,$CatTotal);
-
- $TotalItemCount += $objTopicList->QueryItemCount;
- $Topics_Paste = "false";
-
- if($objTopicList->ItemsOnClipboard()>0)
- $Topics_Paste = "true";
-}
- else
- $Topics_Paste = "false";
-
-$caption = admin_language("la_ItemTab_Topics");
-
-$lang_Replies = admin_language("la_Text_Replies");
-$lang_PostedBy = admin_language("la_prompt_PostedBy");
-$lang_Topics = admin_language("la_Text_Topics");
-
-
-
-print <<<END
-
-<script language="JavaScript">
-var Topic_SortField = '$Topic_SortField';
-var Topic_SortOrder = '$Topic_SortOrder';
-var Topics_Perpage = $Perpage_Topics;
-var TopicView = $TopicView;
-var TopicText = '$caption';
-var lang_Replies = "$lang_Replies";
-var lang_PostedBy = "$lang_PostedBy";
-var lang_Topics = "$lang_Topics";
-var Topics_Paste = $Topics_Paste;
-
-PasteButton = PasteButton || Topics_Paste;
-
- \$fw_menus['t_view_menu'] = function()
- {
- // filtring menu
- \$Menus['t_filtring_menu'] = new Menu(lang_View);
- \$Menus['t_filtring_menu'].addMenuItem(lang_All,"config_val('Topic_View', $Topics_AllValue);",TopicView==$Topics_AllValue);
- \$Menus['t_filtring_menu'].addMenuItem(lang_None,"config_val('Topic_View', 0);",TopicView==0);
- \$Menus['t_filtring_menu'].addMenuSeparator();
- \$Menus['t_filtring_menu'].addMenuItem(lang_Active,"FlipBit('Topic_View',TopicView,6);",BitStatus(TopicView,6));
- \$Menus['t_filtring_menu'].addMenuItem(lang_Pending,"FlipBit('Topic_View',TopicView,5);", BitStatus(TopicView,5));
- \$Menus['t_filtring_menu'].addMenuItem(lang_Disabled,"FlipBit('Topic_View',TopicView,4);",BitStatus(TopicView,4));
- \$Menus['t_filtring_menu'].addMenuSeparator();
- \$Menus['t_filtring_menu'].addMenuItem(lang_New,"FlipBit('Topic_View',TopicView,3);",BitStatus(TopicView,3));
- \$Menus['t_filtring_menu'].addMenuItem(lang_Hot,"FlipBit('Topic_View',TopicView,2);",BitStatus(TopicView,2));
- \$Menus['t_filtring_menu'].addMenuItem(lang_Pop,"FlipBit('Topic_View',TopicView,1);",BitStatus(TopicView,1));
- \$Menus['t_filtring_menu'].addMenuItem(lang_EdPick,"FlipBit('Topic_View',TopicView,0);",BitStatus(TopicView,0));
-
- // sorting menu
- \$Menus['t_sorting_menu'] = new Menu(lang_Sort);
- \$Menus['t_sorting_menu'].addMenuItem(lang_Asc,"config_val('Topic_SortOrder','asc');",RadioIsSelected(Topic_SortOrder,'asc'));
- \$Menus['t_sorting_menu'].addMenuItem(lang_Desc,"config_val('Topic_SortOrder','desc');",RadioIsSelected(Topic_SortOrder,'desc'));
- \$Menus['t_sorting_menu'].addMenuSeparator();
- \$Menus['t_sorting_menu'].addMenuItem(lang_Default,"config_val('Topic_SortField','Name');","");
- \$Menus['t_sorting_menu'].addMenuItem(lang_Name,"config_val('Topic_SortField','TopicText');",RadioIsSelected(Topic_SortField,'TopicText'));
- \$Menus['t_sorting_menu'].addMenuItem(lang_PostedBy,"config_val('Topic_SortField','PostedBy');",RadioIsSelected(Topic_SortField,'PostedBy'));
- \$Menus['t_sorting_menu'].addMenuItem(lang_CreatedOn,"config_val('Topic_SortField','CreatedOn');",RadioIsSelected(Topic_SortField,'CreatedOn'));
- \$Menus['t_sorting_menu'].addMenuItem(lang_Replies,"config_val('Topic_SortField','Posts');",RadioIsSelected(Topic_SortField,'Posts'));
- \$Menus['t_sorting_menu'].addMenuItem(lang_Hits,"config_val('Topic_SortField','Views');",RadioIsSelected(Topic_SortField,'Views'));
-
- // perpage menu
- \$Menus['t_perpage_menu'] = new Menu(lang_PerPage);
- \$Menus['t_perpage_menu'].addMenuItem("10","config_val('Perpage_Topics', '10');",RadioIsSelected(Topics_Perpage,10));
- \$Menus['t_perpage_menu'].addMenuItem("20","config_val('Perpage_Topics', '20');",RadioIsSelected(Topics_Perpage,20));
- \$Menus['t_perpage_menu'].addMenuItem("50","config_val('Perpage_Topics', '50');",RadioIsSelected(Topics_Perpage,50));
- \$Menus['t_perpage_menu'].addMenuItem("100","config_val('Perpage_Topics', '100');",RadioIsSelected(Topics_Perpage,100));
- \$Menus['t_perpage_menu'].addMenuItem("500","config_val('Perpage_Topics', '500');",RadioIsSelected(Topics_Perpage,500));
-
- // select menu
- \$Menus['t_select_menu'] = new Menu(lang_Select);
- \$Menus['t_select_menu'].addMenuItem(lang_All,"javascript:selectAllC('"+activeTab.id+"');","");
- \$Menus['t_select_menu'].addMenuItem(lang_Unselect,"javascript:unselectAll('"+activeTab.id+"');","");
- \$Menus['t_select_menu'].addMenuItem(lang_Invert,"javascript:invert('"+activeTab.id+"');","");
-
- // view menu
- \$Menus['t_view_menu'] = new Menu(lang_Topics);
- \$Menus['t_view_menu'].addMenuItem( \$Menus['t_filtring_menu'] );
- \$Menus['t_view_menu'].addMenuItem( \$Menus['t_sorting_menu'] );
- \$Menus['t_view_menu'].addMenuItem( \$Menus['t_perpage_menu'] );
- \$Menus['t_view_menu'].addMenuItem( \$Menus['t_select_menu'] );
- }
-</script>
-
-END;
-?>
Property changes on: trunk/in-bulletin/admin/include/toolbar/browse.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.6
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/include/toolbar/edittopic_review.php
===================================================================
--- trunk/in-bulletin/admin/include/toolbar/edittopic_review.php (revision 12824)
+++ trunk/in-bulletin/admin/include/toolbar/edittopic_review.php (nonexistent)
@@ -1,114 +0,0 @@
-<?php
- global $envar,$rootURL;
-
-print<<<END
-
-<script language="javascript1.2">
-<!--
-
-//function used by the edit tabs to submit to temp tables
-function edit_submit(formname, targetURL)
-{
- var env_str = '$envar';
-
- document.location = '$rootURL' + targetURL + '?' + env_str;
-
-}
-
-function DataIsValid(f)
-{
- var result=true;
-
- s = document.getElementById("prompt_review_body");
- if(f.review_body.value.length==0)
- {
- result = false;
- s.className = "validation_error";
- }
- else
- s.className = "text";
-
- s = document.getElementById("prompt_review_date");
-
- if(!ValidDate(f.review_date.value))
- {
- result = false;
- s.className = "validation_error";
- }
- else
- s.className = "text";
-
- s = document.getElementById("prompt_review_time");
- if(!ValidTime(f.review_time.value))
- {
- result = false;
- s.className = "validation_error";
- }
- else
- s.className = "text";
-
- return result;
-}
-
-function InitValidation()
-{
- var ValContainers = document.body.getElementsByTagName("SPAN");
-
- for (var i = 0; i < ValContainers.length; i++)
- if (ValContainers[i].className=="validation_error")
- ValContainers[i].style.display="none";
-
-}
-
-function do_save_review(formname, targetURL,save_value)
-{
- var env_str = '$envar';
-
- f = document.getElementById(formname);
- if(f)
- {
- valid = DataIsValid(f);
- if(valid || save_value==-1)
- {
- if(save_value==-1)
- {
- edit_submit(formname,targetURL);
- }
- else
- {
- f.action = '$rootURL' + targetURL + '?' + env_str;
- f.TopicEditStatus.value = save_value; //0= stay in temp, 1=save to perm, 2 = purge no save
- f.submit();
- }
- }
- else
- if(!valid)
- alert(ErrorMsg);
-
- }
- else
- alert('Form '+formname+' was not found.');
-}
-
-
-function do_edit_save(formname, targetURL,save_value)
-{
- var env_str = '$envar';
-
- f = document.getElementById(formname);
- if(f)
- {
- f.action = '$rootURL' + targetURL + '?' + env_str;
-
- f.TopicEditStatus.value = save_value; //0= stay in temp, 1=save to perm, 2 = purge no save
- f.submit();
- }
- else
- alert('Form '+formname+' was not found.');
-}
-
-//-->
-</script>
-
-END;
-?>
Property changes on: trunk/in-bulletin/admin/include/toolbar/edittopic_review.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/include/toolbar/advanced_view.php
===================================================================
--- trunk/in-bulletin/admin/include/toolbar/advanced_view.php (revision 12824)
+++ trunk/in-bulletin/admin/include/toolbar/advanced_view.php (nonexistent)
@@ -1,207 +0,0 @@
-<?php
-
-global $objConfig,$objSession, $objTopicList,$objCatList, $SearchType,
- $ItemTabs,$TopicSearch, $TotalItemCount;
-
-global $Bit_All,$Bit_Pending,$Bit_Disabled,$Bit_New,$Bit_Pop,$Bit_Hot,$Bit_Ed,$DefaultTab;
-
-if(strlen($DefaultTab))
-{
- if($DefaultTab=="topics")
- {
- $m_tab_Forum_hide = 0;
- }
- else
- $m_tab_Forum_hide = 1;
-}
-
-$Topics_AllValue = 127;
-
-$TopicView = $objConfig->Get("Topic_View");
-
-if(!is_numeric($TopicView))
-{
- $TopicView = $Topics_AllValue;
-}
-
-$Topic_SortField = $objConfig->Get('Topic_SortField');
-if( !strlen($Topic_SortField) ) $Topic_SortField = 'Priority';
-
-$Topic_SortOrder = $objConfig->Get('Topic_SortOrder');
-if( !strlen($Topic_SortOrder) ) $Topic_SortOrder = 'desc';
-
-$Perpage_Topics = (int)$objConfig->Get("Perpage_Topics");
-if(!$Perpage_Topics)
- $Perpage_Topics="'all'";
-
-
-if($TopicView == $Topics_AllValue)
-{
- $Topic_ShowAll = 1;
-}
-else
- $Topic_ShowAll = 0;
-
-if($Topic_ShowAll)
-{
- $Topic_Filter = "";
- $Topic_View=$Topics_AllValue;
-}
-else
-{
- // FILTERING CODE V. 1.2
- $where_clauses = Array(); $q = '';
- //Group #1: Topic statuses (active,pending,disabled)
- $Status = array(-1);
- if($TopicView & $Bit_Pending) $Status[] = STATUS_PENDING;
- if($TopicView & $Bit_Active) $Status[] = STATUS_ACTIVE;
- if($TopicView & $Bit_Disabled) $Status[] = STATUS_DISABLED;
- if( count($Status) ) $where_clauses[] = 'Status IN ('.implode(',', $Status).')';
-
-
- //Group #2: Topic statistics (pick,pop,hot)
- $Status = array();
- if(!($TopicView & $Bit_New))
- {
- $cutoff = adodb_date("U") - ($objConfig->Get("Topic_NewDays") * 86400);
- if($cutoff > 0) $q = 'CreatedOn > '.$cutoff;
- $q .= (!empty($q) ? ' OR ' : '').'NewItem = 1';
- $Status[] = "NOT ($q)";
- }
-
- if(!($TopicView & $Bit_Pop))
- {
- $cutoff = $objTopicList->GetPopValue();
- if($cutoff > 0) $q = 'Posts >= '.$cutoff;
- $q .= (!empty($q) ? ' OR ' : '').'PopItem = 1';
- $Status[] = "NOT ($q)";
- }
-
- if(!($TopicView & $Bit_Hot))
- {
- $cutoff = $objTopicList->GetHotValue();
- if($cutoff > 0) $q = 'Posts >= '.$cutoff;
- $q .= (!empty($q) ? ' OR ' : '').'HotItem = 1';
- $Status[] = "NOT ($q)";
- }
-
- if(!($TopicView & $Bit_Ed)) $Status[] = 'NOT (EditorsPick = 1)';
-
- if( count($Status) )
- {
- $where_clauses[] = '('.implode(') AND (', $Status).')';
- }
- $TopicFilter = count($where_clauses) ? '('.implode(') AND (', $where_clauses).')' : '';
-}
-
-$list = $objSession->GetVariable("bb_adv_view_search");
-
-$objTopicList->Clear();
-
-$objTopicList->EnablePaging = TRUE;
-
-
- $OrderBy = $objTopicList->QueryOrderByClause(TRUE,TRUE,TRUE);
- if(strlen($list)==0)
- {
- $objTopicList->LoadTopics($TopicFilter,$OrderBy,false,false,'set_last');
- $SearchQuery = '';
- }
- else
- {
- $SearchQuery = $objTopicList->AdminSearchWhereClause($list);
- if(strlen($SearchQuery))
- {
- $SearchQuery = " (".$SearchQuery.")".($TopicFilter ? 'AND ('.$TopicFilter.')' : '');
- $objTopicList->LoadTopics($SearchQuery,$OrderBy,false,false,'set_last');
- }
- else
- $objTopicList->LoadTopics($TopicFilter,$OrderBy,false,false,'set_last');
- }
-
- $CatTotal = TableCount($objTopicList->SourceTable,null,TRUE);
-
- $caption = admin_language("la_ItemTab_Topics");
- $ItemTabs->AddTab(admin_language("la_ItemTab_Topics"),"topics",$objTopicList->QueryItemCount, $m_tab_Forum_hide,$CatTotal);
-
- $TotalItemCount += $objTopicList->QueryItemCount;
- $Topics_Paste = "false";
-
- if($objTopicList->ItemsOnClipboard()>0)
- $Topics_Paste = "true";
-
-$lang_Replies = admin_language("la_Text_Replies");
-$lang_PostedBy = admin_language("la_prompt_PostedBy");
-$lang_Topics = admin_language("la_Text_Topics");
-
-
-
-print <<<END
-
-<script language="JavaScript">
-var Topic_SortField = '$Topic_SortField';
-var Topic_SortOrder = '$Topic_SortOrder';
-var Topics_Perpage = $Perpage_Topics;
-var TopicView = $TopicView;
-var TopicText = '$caption';
-var lang_Replies = "$lang_Replies";
-var lang_PostedBy = "$lang_PostedBy";
-var lang_Topics = "$lang_Topics";
-var Topics_Paste = $Topics_Paste;
-
-PasteButton = PasteButton || Topics_Paste;
-
- \$fw_menus['t_view_menu'] = function()
- {
- // filtring menu
- \$Menus['t_filtring_menu'] = new Menu(lang_View);
- \$Menus['t_filtring_menu'].addMenuItem(lang_All,"config_val('Topic_View', $Topics_AllValue);",TopicView==$Topics_AllValue);
- \$Menus['t_filtring_menu'].addMenuItem(lang_None,"config_val('Topic_View', 0);",TopicView==0);
- \$Menus['t_filtring_menu'].addMenuSeparator();
- \$Menus['t_filtring_menu'].addMenuItem(lang_Active,"FlipBit('Topic_View',TopicView,6);",BitStatus(TopicView,6));
- \$Menus['t_filtring_menu'].addMenuItem(lang_Pending,"FlipBit('Topic_View',TopicView,5);", BitStatus(TopicView,5));
- \$Menus['t_filtring_menu'].addMenuItem(lang_Disabled,"FlipBit('Topic_View',TopicView,4);",BitStatus(TopicView,4));
- \$Menus['t_filtring_menu'].addMenuSeparator();
- \$Menus['t_filtring_menu'].addMenuItem(lang_New,"FlipBit('Topic_View',TopicView,3);",BitStatus(TopicView,3));
- \$Menus['t_filtring_menu'].addMenuItem(lang_Hot,"FlipBit('Topic_View',TopicView,1);",BitStatus(TopicView,1));
- \$Menus['t_filtring_menu'].addMenuItem(lang_Pop,"FlipBit('Topic_View',TopicView,2);",BitStatus(TopicView,2));
- \$Menus['t_filtring_menu'].addMenuItem(lang_EdPick,"FlipBit('Topic_View',TopicView,0);",BitStatus(TopicView,0));
-
- // sorting menu
- \$Menus['t_sorting_menu'] = new Menu(lang_Sort);
- \$Menus['t_sorting_menu'].addMenuItem(lang_Asc,"config_val('Topic_SortOrder','asc');",RadioIsSelected(Topic_SortOrder,'asc'));
- \$Menus['t_sorting_menu'].addMenuItem(lang_Desc,"config_val('Topic_SortOrder','desc');",RadioIsSelected(Topic_SortOrder,'desc'));
- \$Menus['t_sorting_menu'].addMenuSeparator();
- \$Menus['t_sorting_menu'].addMenuItem(lang_Default,"config_val('Topic_SortField','Name');","");
- \$Menus['t_sorting_menu'].addMenuItem(lang_Name,"config_val('Topic_SortField','TopicText');",RadioIsSelected(Topic_SortField,'TopicText'));
- \$Menus['t_sorting_menu'].addMenuItem(lang_PostedBy,"config_val('Topic_SortField','PostedBy');",RadioIsSelected(Topic_SortField,'PostedBy'));
- \$Menus['t_sorting_menu'].addMenuItem(lang_CreatedOn,"config_val('Topic_SortField','CreatedOn');",RadioIsSelected(Topic_SortField,'CreatedOn'));
- \$Menus['t_sorting_menu'].addMenuItem(lang_Replies,"config_val('Topic_SortField','Posts');",RadioIsSelected(Topic_SortField,'Posts'));
- \$Menus['t_sorting_menu'].addMenuItem(lang_Hits,"config_val('Topic_SortField','Views');",RadioIsSelected(Topic_SortField,'Views'));
-
- // perpage menu
- \$Menus['t_perpage_menu'] = new Menu(lang_PerPage);
- \$Menus['t_perpage_menu'].addMenuItem("10","config_val('Perpage_Topics', '10');",RadioIsSelected(Topics_Perpage,10));
- \$Menus['t_perpage_menu'].addMenuItem("20","config_val('Perpage_Topics', '20');",RadioIsSelected(Topics_Perpage,20));
- \$Menus['t_perpage_menu'].addMenuItem("50","config_val('Perpage_Topics', '50');",RadioIsSelected(Topics_Perpage,50));
- \$Menus['t_perpage_menu'].addMenuItem("100","config_val('Perpage_Topics', '100');",RadioIsSelected(Topics_Perpage,100));
- \$Menus['t_perpage_menu'].addMenuItem("500","config_val('Perpage_Topics', '500');",RadioIsSelected(Topics_Perpage,500));
-
- // select menu
- \$Menus['t_select_menu'] = new Menu(lang_Select);
- \$Menus['t_select_menu'].addMenuItem(lang_All,"javascript:selectAllC('"+activeTab.id+"');","");
- \$Menus['t_select_menu'].addMenuItem(lang_Unselect,"javascript:unselectAll('"+activeTab.id+"');","");
- \$Menus['t_select_menu'].addMenuItem(lang_Invert,"javascript:invert('"+activeTab.id+"');","");
-
- // view menu
- \$Menus['t_view_menu'] = new Menu(lang_Topics);
- \$Menus['t_view_menu'].addMenuItem( \$Menus['t_filtring_menu'] );
- \$Menus['t_view_menu'].addMenuItem( \$Menus['t_sorting_menu'] );
- \$Menus['t_view_menu'].addMenuItem( \$Menus['t_perpage_menu'] );
- \$Menus['t_view_menu'].addMenuItem( \$Menus['t_select_menu'] );
- }
-
-</script>
-
-END;
-?>
Property changes on: trunk/in-bulletin/admin/include/toolbar/advanced_view.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.7
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/include/summary/site.php
===================================================================
--- trunk/in-bulletin/admin/include/summary/site.php (revision 12824)
+++ trunk/in-bulletin/admin/include/summary/site.php (nonexistent)
@@ -1,117 +0,0 @@
-<?php
-$lang_Search = admin_language("la_prompt_Search");
-$lang_Users = admin_language("la_Text_Users");
-$lang_Active = admin_language("la_Text_Active");
-$lang_Disabled = admin_language("la_Text_Disabled");
-$lang_Pending = admin_language("la_Text_Pending");
-$lang_Denied = admin_language("la_Text_Denied");
-$lang_PendingItems = admin_language("la_prompt_PendingItems");
-$lang_Topics = admin_language("la_Text_Topics");
-
-$lang_New = admin_language("la_Text_New");
-$lang_Hot = admin_language("la_Text_Hot");
-$lang_EdPick = admin_language("la_prompt_EditorsPick");
-$lang_Pop = admin_language("la_Text_Pop");
-$lang_Locked = admin_language("la_Text_Locked");
-
-global $admin, $adminURL,$rootURL, $objTopicList;
-
-$UserURL = $adminURL."/users/user_list.php?env=".BuildEnv();
-$browseURL = $adminURL."/browse.php?env=".BuildEnv();
-
-$topicURL = $rootURL."in-bulletin";
-$newsURL = $rootURL."in-news";
-$linkURL = $rootURL."in-link";
-
-$table = $objTopicList->SourceTable;
-$Total = TableCount($table,"",0);
-$Active = TableCount($table,"Status=1",0);
-$Pending = TableCount($table,"Status=2",0);
-$Disabled = TableCount($table,"Status=0",0);
-$Pick = TableCount($table,"EditorsPick=1",0);
-$Locked = TableCount($table,"Status=3",0);
-
-$PopVal = $objTopicList->GetPopValue();
-$Pop = TableCount($table,"CachedVotesQty >=".$PopVal.' OR PopItem = 1',0);
-
-$HotVal = $objTopicList->GetHotValue();
-$Hot = TableCount($table,"Views >=".$HotVal.' OR HotItem = 1',0);
-
-$NewVal = adodb_date("U") - ($objConfig->Get("Topic_NewDays") * 86400);
-$where = "(CreatedOn > ".$NewVal." AND NewItem=".AUTO.") OR NewItem=".ALWAYS;
-$New = TableCount($table,$where ,0);
-
-$ConfigVar = "Topic_View";
-$CurrentVal = $objConfig->Get($ConfigVar);
-$TabName = "topics";
-$iconURL = $rootURL."in-bulletin/admin/images";
-
-print <<<END
-
- <div isBox="true" id="topics" SortValue="5" isOpen="true">
- <div class="usersbox_header" func="header" STYLE="background:url($imagesURL/summary/usersbox_header.gif);">
- <img src="$imagesURL/spacer.gif" width="1" height="4"><br />
- <table cellspacing="0" cellpadding="0">
- <tr>
- <td><img isEI="true" src="$imagesURL/summary/usersbox_cl.gif" width="8" height="8" align="absMiddle" hSpace="4"><b>$lang_Topics</b></td>
- <td class="info" valign="top">&nbsp;($Total)</td>
- </tr>
- </table>
- </div>
- <div class="usersbox_body" func="body" STYLE="background:url($imagesURL/summary/usersbox_bg.gif);">
- <div style="padding:8px; width:100%">
- <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="4">
- <tr>
- <td class="lTDi" width="50%">
- <a href="javascript:FilterLink('$TabName','$ConfigVar',79);" class="userslink">
- <img src="$iconURL/icon16_topic.gif" border="0" align="absMiddle"> $lang_Active <span class="info">($Active)</span></a>
- </td>
- <td class="rTDi">
- <a href="javascript:FilterLink('$TabName','$ConfigVar',120);" class="userslink">
- <img src="$iconURL//icon16_topic_new.gif" border="0" align="absMiddle"> $lang_New <span class="info">($New)</span></a>
- </td>
- </tr>
- <tr>
- <td class="lTDi" width="50%">
- <a href="javascript:FilterLink('$TabName','$ConfigVar',47);" class="userslink">
- <img src="$iconURL/icon16_topic_pending.gif" border="0" align="absMiddle"> $lang_Pending <span class="info">($Pending)</span></a>
- </td>
- <td class="rTDi" >
- <a href="javascript:FilterLink('$TabName','$ConfigVar',114);" class="userslink">
- <img src="$iconURL/icon16_topic_hot.gif" border="0" align="absMiddle"> $lang_Hot <span class="info">($Hot)</span></a>
- </td>
- </tr>
- <tr>
- <td class="lTDi" width="50%">
- <a href="javascript:FilterLink('$TabName','$ConfigVar',31);" class="userslink">
- <img src="$iconURL//icon16_topic_disabled.gif" border="0" align="absMiddle"> $lang_Disabled <span class="info">($Disabled)</span></a>
- </td>
- <td class="rTDi">
- <a href="javascript:FilterLink('$TabName','$ConfigVar',116);" class="userslink">
- <img src="$iconURL/icon16_topic_top.gif" border="0" align="absMiddle"> $lang_Pop <span class="info">($Pop)</span></a>
- </td>
- </tr>
- <tr>
- <td class="lTD" width="50%">&nbsp;</td>
- <td>
- <a href="javascript:FilterLink('$TabName','$ConfigVar',113);" class="userslink">
- <img src="$iconURL/icon16_topic_pick.gif" border="0" align="absMiddle"> $lang_EdPick <span class="info">($Pick)</span></a>
- </td>
- </tr>
- <!--
- <tr>
- <td class="lTD" width="50%">&nbsp;</td>
- <td>
- <a href="javascript:FilterLink('$TabName','$ConfigVar',1);" class="userslink">
- <img src="$iconURL/icon16_topic_locked.gif" border="0" align="absMiddle"> $lang_Locked <span class="info">($Locked)</span></a>
- </td>
- </tr>
- -->
- </table>
- </div>
- <img src="images/spacer.gif" height="21" width="1">
- </div>
- </DIV>
-END;
-?>
-
Property changes on: trunk/in-bulletin/admin/include/summary/site.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/include/backup.php
===================================================================
--- trunk/in-bulletin/admin/include/backup.php (revision 12824)
+++ trunk/in-bulletin/admin/include/backup.php (nonexistent)
@@ -1,10 +0,0 @@
-<?php
- global $tables;
-
-//List of tables to include
-//$tables["NAME OF THE TABLE"],[!!!THIS CELL ALWAYS EMPTY]="WHERE CLAUSE";
-
-$tables["Topic"][]="";
-
-
-?>
Property changes on: trunk/in-bulletin/admin/include/backup.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/include/style.css
===================================================================
--- trunk/in-bulletin/admin/include/style.css (revision 12824)
+++ trunk/in-bulletin/admin/include/style.css (nonexistent)
@@ -1,31 +0,0 @@
-
-.topic_rate {
- FONT-SIZE: 12px; COLOR: #006600; FONT-FAMILY: arial, helvetica, sans-serif; TEXT-DECORATION: none
-}
-.topic_review {
- FONT-SIZE: 12px; COLOR: #a27900; FONT-FAMILY: arial, helvetica, sans-serif; TEXT-DECORATION: none
-}
-.topic_modify {
- FONT-SIZE: 12px; COLOR: #800000; FONT-FAMILY: arial, helvetica, sans-serif; TEXT-DECORATION: none
-}
-.topic_div {
- FONT-SIZE: 12px; COLOR: #000000; FONT-FAMILY: arial, helvetica, sans-serif; TEXT-DECORATION: none
-}
-.topic_desc {
- FONT-SIZE: 9pt; COLOR: black; FONT-FAMILY: arial,verdana,sans-serif
-}
-.topic_detail {
- FONT-SIZE: 11px; COLOR: #707070; FONT-FAMILY: arial,verdana,sans-serif
-}
-.topic_new {
- FONT-SIZE: 12px; VERTICAL-ALIGN: super; COLOR: blue; FONT-FAMILY: arial, verdana, sans-serif
-}
-.topic_hot {
- FONT-SIZE: 12px; VERTICAL-ALIGN: super; COLOR: red; FONT-FAMILY: arial, verdana, sans-serif
-}
-.topic_pop {
- FONT-SIZE: 12px; VERTICAL-ALIGN: super; COLOR: orange; FONT-FAMILY: arial, verdana, sans-serif
-}
-.topic_pick {
- FONT-SIZE: 12px; VERTICAL-ALIGN: super; COLOR: #009900; FONT-FAMILY: arial, helvetica, sans-serif
-}
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/include/style.css
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/include/parser.php
===================================================================
--- trunk/in-bulletin/admin/include/parser.php (revision 12824)
+++ trunk/in-bulletin/admin/include/parser.php (nonexistent)
@@ -1,61 +0,0 @@
-<?php
- function adListTopics($template)
- {
- global $objTopicList;
-
- $topic_count = $objTopicList->NumItems();
- if($topic_count == 0) return '';
- $o = '';
- foreach($objTopicList->Items as $t)
- $o.= $t->AdminParseTemplate($template);
-
- return $o;
- }
-
- function bb_GetModuleInfo($info_type)
- {
- // get information for building sql in
- switch($info_type)
- {
- case 'module_name':
- return 'in-bulletin';
- break;
-
- case 'review_section':
- return 'in-bulletin:edittopic_review';
- break;
-
- case 'rel_list': // Edit Category -> Relations List
- return Array( 'MainTable' => 'Topic', 'ItemNameField' => 'TopicText',
- 'ItemNamePhrase' => 'la_Text_Topic', 'TargetType' => 3,
- 'EditFile'=>'addtopic.php','EnvIDField'=>'top');
- break;
-
- case 'summary_pending':
- global $rootURL;
- $imagesURL = $rootURL.bb_GetModuleInfo('module_name').'/admin/images'; // don't globalize
- $ret = Array();
- $ret[] = Array( 'link' => "PendingLink('topics','Topic_View',47)",
- 'icon_image' => $imagesURL.'/icon16_topic_pending.gif',
- 'phrase' => 'la_Text_Topics', 'list_var_name' => 'objTopicList');
- return $ret;
- break;
-
- case 'all_bitmask': // return bitmask value equals to "all" for module filter
- return Array('VarName' => 'Topic_View', 'Bits' => 127);
- break;
-
- case 'dupe_resourceids':
- $ret=Array();
- $ret[]=Array('Table'=>'Topic','IDField'=>'TopicId');
- return $ret;
- break;
-
- case 'filenames':
- return Array('prefix' => 'bb', 'table' => 'Topic', 'id_field' => 'TopicId', 'title_field' => 'TopicText');
- break;
- }
- return false;
- }
-
-?>
Property changes on: trunk/in-bulletin/admin/include/parser.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.8
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/include/help/configuration_censorship.txt
===================================================================
--- trunk/in-bulletin/admin/include/help/configuration_censorship.txt (revision 12824)
+++ trunk/in-bulletin/admin/include/help/configuration_censorship.txt (nonexistent)
@@ -1,6 +0,0 @@
-This section allows the administrator to configure the censorship options. It lists all defined censorship rules, and allows the administrator to manage them. A censorship rule consists of:
-<ul>
-<li> Censorship Id – this is the read-only, unique system ID of a censorship rule. It is empty for new rules.
-<li> Censorship Word – this field contains the “bad” word – text to be replaced. It can be any combination of letters in any language, numbers or special characters.
-<li> Replacement Word – this field contains the replacement text. It can be any combination of letters in any language, numbers or special characters.
-</ul>
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/include/help/configuration_censorship.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/include/help/configuration_emoticon.txt
===================================================================
--- trunk/in-bulletin/admin/include/help/configuration_emoticon.txt (revision 12824)
+++ trunk/in-bulletin/admin/include/help/configuration_emoticon.txt (nonexistent)
@@ -1,9 +0,0 @@
-This section allows the administrators to manage the emoticons, or smileys, available for users to use in posts. By default, Intechnic ships In-bulletin with a predefined set of smileys.
-A smiley has the following attributes:
-<ul>
-<li> Emotion Id – this is the read-only, unique system ID of a smiley. It is empty for new smileys.
-<li> Name – this field contains the smiley name, which should be descriptive and designate the nature of the smiley. It appears in the alt tag on the post form, explaining to the users its purpose.
-<li> Key Stroke – this field contains the shortcut keystroke that corresponds to the smiley. When used in a post text, this keystroke will be automatically replaces with the image of the smiley. Familiar keystroke example is ‘: )', signifying the smiling face.
-<li> Enabled – this field is the enabled flag of the smiley.
-<li> Location – this field can contain either a remote URL of the smiley's image, or it can be used to upload an image from your workstation.
-</ul>
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/include/help/configuration_emoticon.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/include/help/phpbb.txt
===================================================================
--- trunk/in-bulletin/admin/include/help/phpbb.txt (revision 12824)
+++ trunk/in-bulletin/admin/include/help/phpbb.txt (nonexistent)
@@ -1,12 +0,0 @@
-<b>phpBB 2.x Import</b>
-<p>This import tool is designed to copy the data from your existing phpBB 2.x installation into In-portal Platform and In-bulletin. It will not work without In-bulletin module installed. </p>
-The current version transfers the users, forums, topics and posts. It also copies the basic permission structure for the forums and creates user custom fields to hold the additional information available in phpBB. The import will only copy phpBB information that is compatible with the current version of In-bulletin. For this reason, for example, the private messages are not copied over.
-<br><br>
-
-<b>Step 4 </b>
-<p>In this step, the administrator will need to designate the options of the import – how the phpBB data is supposed to be integrated into In-portal and In-bulletin. </p>
-<ul>
-<li> Regular User Group - this field designates the In-portal group (by default, ‘Members'), into which the all phpBB users should be imported. It is recommended to import then into a group that will give them access to the front-end, and to own their topics. However, you can choose a different group for the import, and then manage the users later. Clicking on the group button will pop up a list of In-portal groups. All other security groups that exist in phpBB installation will be automatically created during the import.
-<li> Initial Import Category – this field designates the In-portal category, which will serve as a root for the phpBB import. This category will be the equivalent of the index page in phpBB, and all of the categories and forums will be created underneath. Clicking on the category button (folder icon) will pop up a catalog navigator, where you can select the category.
-<li>Table Name Prefix – this field designates the table prefix for the phpBB tables.
-</ul>
Property changes on: trunk/in-bulletin/admin/include/help/phpbb.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/addtopic_relations.php
===================================================================
--- trunk/in-bulletin/admin/addtopic_relations.php (revision 12824)
+++ trunk/in-bulletin/admin/addtopic_relations.php (nonexistent)
@@ -1,335 +0,0 @@
-<?php
-##############################################################
-##In-portal ##
-##############################################################
-## In-portal ##
-## Intechnic Corporation ##
-## All Rights Reserved, 1998-2002 ##
-## ##
-## No portion of this code may be copied, reproduced or ##
-## otherwise redistributed without proper written ##
-## consent of Intechnic Corporation. Violation will ##
-## result in revocation of the license and support ##
-## privileges along maximum prosecution allowed by law. ##
-##############################################################
-
-// new startup: begin
-define('REL_PATH', 'in-bulletin/admin');
-$relation_level = count( explode('/', REL_PATH) );
-define('FULL_PATH', realpath(dirname(__FILE__) . str_repeat('/..', $relation_level) ) );
-require_once FULL_PATH.'/kernel/startup.php';
-// new startup: end
-
-$pathtolocal = $pathtoroot."in-bulletin/";
-require_once ($pathtoroot.$admin."/include/elements.php");
-require_once ($pathtoroot."kernel/admin/include/navmenu.php");
-require_once ($pathtolocal."admin/include/navmenu.php");
-require_once($pathtoroot.$admin."/toolbar.php");
-require_once($pathtoroot.$admin."/listview/listview.php");
-
-$m = GetModuleArray();
-foreach($m as $key => $value)
-{
- $path = $pathtoroot.$value."admin/include/parser.php";
- if( file_exists($path) ) include_once($path);
-}
-
-unset($objEditItems);
-
-$objEditItems = new clsTopicList();
-$objEditItems->SourceTable = $objSession->GetEditTable("Topic");
-$objEditItems->EnablePaging = FALSE;
-
-//Multiedit init
-$en = (int)$_GET["en"];
-$objEditItems->Query_Item("SELECT * FROM ".$objEditItems->SourceTable);
-$itemcount=$objEditItems->NumItems();
-$c = $objEditItems->GetItemByIndex($en);
-
-if($itemcount>1)
-{
- if ($en+1 == $itemcount)
- $en_next = -1;
- else
- $en_next = $en+1;
-
- if ($en == 0)
- $en_prev = -1;
- else
- $en_prev = $en-1;
-}
-
-$action = "bb_edit_topic";
-$envar = "env=" . BuildEnv() . "&en=$en";
-
-//Set Section
-$section = 'in-bulletin:edittopic_relations';
-//Set Environment Variable
-$saveURL = $admin."/".$objSession->GetVariable('ReturnScript');
-//Display header
-$sec = $objSections->GetSection($section);
-
-$objListToolBar = new clsToolBar();
-$objListToolBar->Add("img_save", "la_Save","","swap('img_save','toolbar/tool_select_f2.gif');", "swap('img_save', 'toolbar/tool_select.gif');","do_edit_save('save_edit_buttons','TopicEditStatus','".$saveURL."',1);","tool_select.gif");
-$objListToolBar->Add("img_cancel", "la_Cancel","","swap('img_cancel','toolbar/tool_cancel_f2.gif');", "swap('img_cancel', 'toolbar/tool_cancel.gif');","do_edit_save('save_edit_buttons','TopicEditStatus','".$saveURL."',2);","tool_cancel.gif");
-if($itemcount == 1) $objListToolBar->Add("divider");
-
-
-$objListToolBar->Set("section",$section);
-$objListToolBar->Set("load_menu_func","");
-$objListToolBar->Set("CheckClass","PermChecks");
-$objListToolBar->Set("CheckForm","permlistform");
-
-//Display header
-$sec = $objSections->GetSection($section);
-
-if ( isset($en_prev) || isset($en_next) )
-{
- $url = $RootUrl."in-bulletin/admin/addtopic_relations.php";
- $StatusField = "TopicEditStatus";
- $form = "topic";
- MultiEditButtons($objListToolBar,$en_next,$en_prev,$form,$StatusField,$url,$sec->Get("OnClick"));
- $objListToolBar->Add("divider");
-}
-
-$listImages = array();
- //$img, $alt, $link, $onMouseOver, $onMouseOut, $onClick
-
-$objListToolBar->Add("new_rel", "la_ToolTip_New_Relation","#".$envar,"swap('new_rel','toolbar/tool_new_relation_f2.gif');",
- "swap('new_rel', 'toolbar/tool_new_relation.gif');",
- "OpenItemSelector('$envar&source=addcategory_relations&CatId=".$c->Get("CategoryId")."&destform=popup&destfield=itemlist&Selector=radio');",
- "tool_new_relation.gif");
-
-$objListToolBar->Add("rel_edit","la_ToolTip_Edit","#", "if (PermChecks.itemChecked()) swap('rel_edit','toolbar/tool_edit_f2.gif');",
- "if (PermChecks.itemChecked()) swap('rel_edit', 'toolbar/tool_edit.gif');","if (PermChecks.itemChecked()) PermChecks.check_submit('addrelation', '');",
- "tool_edit.gif");
-$listImages[] = "PermChecks.addImage('rel_edit','$imagesURL/toolbar/tool_edit.gif','$imagesURL/toolbar/tool_edit_f3.gif',1); ";
-
-$objListToolBar->Add("rel_del","la_ToolTip_Delete","#", "if (PermChecks.itemChecked()) swap('rel_del','toolbar/tool_delete_f2.gif');",
- "if (PermChecks.itemChecked()) swap('rel_del', 'toolbar/tool_delete.gif');","if (PermChecks.itemChecked()) PermChecks.check_submit('addtopic_relations', 'm_rel_delete');",
- "tool_delete.gif");
-$listImages[] = "PermChecks.addImage('rel_del','$imagesURL/toolbar/tool_delete.gif','$imagesURL/toolbar/tool_delete_f3.gif',1); ";
-
-$objListToolBar->Add("divider");
-
-$objListToolBar->Add("rel_move_up","la_ToolTip_Move_Up","#", "if (PermChecks.itemChecked()) swap('rel_move_up','toolbar/tool_move_up_f2.gif');",
- "if (PermChecks.itemChecked()) swap('rel_move_up', 'toolbar/tool_move_up.gif');","if (PermChecks.itemChecked()) PermChecks.check_submit('addtopic_relations', 'm_rel_move_up');",
- "tool_move_up.gif");
-$listImages[] = "PermChecks.addImage('rel_move_up','$imagesURL/toolbar/tool_move_up.gif','$imagesURL/toolbar/tool_move_up_f3.gif',1); ";
-
-
-$objListToolBar->Add("rel_move_down","la_ToolTip_Move_Down","#", "if (PermChecks.itemChecked()) swap('rel_move_down','toolbar/tool_move_down_f2.gif');",
- "if (PermChecks.itemChecked()) swap('rel_move_down', 'toolbar/tool_move_down.gif');","if (PermChecks.itemChecked()) PermChecks.check_submit('addtopic_relations', 'm_rel_move_down');",
- "tool_move_down.gif");
-$listImages[] = "PermChecks.addImage('rel_move_down','$imagesURL/toolbar/tool_move_down.gif','$imagesURL/toolbar/tool_move_down_f3.gif',1); ";
-
-
-
-$objListToolBar->Add("divider");
-
-$objListToolBar->Add("viewmenubutton", "la_ToolTip_View","#","swap('viewmenubutton','toolbar/tool_view_f2.gif'); ",
- "swap('viewmenubutton', 'toolbar/tool_view.gif');",
- "ShowViewMenu();","tool_view.gif");
-
-/* ----------------------------------------- Set the View Filter ---------------------------------------- */
-$Rel_AllValue = 255;
-
-$Bit_Categories = 1;
-$Bit_Links = 2;
-$Bit_News = 4;
-$Bit_Topics = 8;
-
-$Bit_OneWay = 16;
-$Bit_Recip = 32;
-
-$Bit_Enabled=64;
-$Bit_Disabled=128;
-
-$FilterLabels[0] = admin_language("la_Text_Category");
-$FilterLabels[1] = admin_language("la_Text_Links");
-$FilterLabels[2] = admin_language("la_Text_Articles");
-$FilterLabels[3] = admin_language("la_Text_Topics");
-$FilterLabels[4] = admin_language("la_Text_OneWay");
-$FilterLabels[5] = admin_language("la_Text_Reciprocal");
-$FilterLabels[6] = admin_language("la_Text_Enabled");
-$FilterLabels[7] = admin_language("la_Text_Disabled");
-
-$RelView = $objConfig->Get("TopicRel_View");
-
-if(!is_numeric($RelView))
-{
- $RelView = $Rel_AllValue;
-}
-else
-{
- $RelTypes = array();
- if($RelView & $Bit_Categories) $RelTypes[] = 1;
- if($RelView & $Bit_Links) $RelTypes[] = 4;
- if($RelView & $Bit_News) $RelTypes[] = 2;
- if($RelView & $Bit_Topics) $RelTypes[] = 3;
-
- $RelFilters = array();
- $RelFilters[]='rel.TargetType IN ('.($RelTypes?implode(',',$RelTypes):'-1').')';
-
- $RelTypes = array();
- if($RelView & $Bit_OneWay) $RelTypes[] = 0;
- if($RelView & $Bit_Recip) $RelTypes[] = 1;
- $RelFilters[] = 'rel.Type IN ('.($RelTypes?implode(',',$RelTypes):'-1').')';
-
- $EnabledFilter = Array();
- if($RelView & $Bit_Enabled) $EnabledFilter[] = 'rel.Enabled=1';
- if($RelView & $Bit_Disabled) $EnabledFilter[] = 'rel.Enabled=0';
- $RelFilters[] = '('.($EnabledFilter?implode(' OR ',$EnabledFilter):'rel.Enabled=-1').')';
-
- $RelFilter = implode(' AND ',$RelFilters);
-}
-
-$objListToolBar->AddToInitScript("fwLoadMenus(); \n");
-
-
-$objListToolBar->AddToInitScript($listImages);
-
-
-
-//$r =& $c->RelationObject();
-$objRelList = new clsRelationshipList();
-$objRelList->SourceTable = $objSession->GetEditTable("Relationship");
-
-$reltable = $objRelList->SourceTable;
-
-// ==== build sql depending on modules installed: begin ====
-$prefix = GetTablePrefix();
-$modules = $objModules->GetModuleList();
-$sql_source = $objModules->ExecuteFunction('GetModuleInfo', 'rel_list');
-
-$sql_templates['ItemName'] = 'IFNULL('.$prefix."%s.%s,' ')";
-$sql_templates['TableJoin'] = 'LEFT JOIN '.$prefix."%1\$s ON ".$prefix."%1\$s.ResourceId = rel.TargetId";
-$sql_templates['TargetName'] = "IF(rel.TargetType = %s, '%s', %s)";
-
-$sql = "SELECT TRIM(CONCAT(%s)) AS ItemName, %s AS ItemType,".
- GetELT('rel.Type+1', Array('la_Text_OneWay','la_Text_Reciprocal')).' AS RelationType,'.
- "RelationshipId, rel.Priority AS Priority, rel.Type as Type, rel.Enabled as Enabled,".
- GetELT('rel.Enabled+1', Array('la_Text_Disabled','la_Text_Enabled')).' AS Status '.
- 'FROM '.$reltable.' AS rel %s WHERE rel.SourceId = '.$c->Get('ResourceId');
-
-$sql_parts = Array();
-$sql_parts['TargetName'] = "''";
-foreach($modules as $module)
-{
- $sql_parts['ItemName'][] = sprintf($sql_templates['ItemName'], $sql_source[$module]['MainTable'], $sql_source[$module]['ItemNameField']);
- $sql_parts['TableJoin'][] = sprintf($sql_templates['TableJoin'], $sql_source[$module]['MainTable']);
-
- $sql_parts['TargetName'] = sprintf( $sql_templates['TargetName'],
- $sql_source[$module]['TargetType'],
- admin_language($sql_source[$module]['ItemNamePhrase']),
- $sql_parts['TargetName']);
-}
-$sql = sprintf($sql, implode(', ',$sql_parts['ItemName']), $sql_parts['TargetName'], implode(' ',$sql_parts['TableJoin']));
-// ==== build sql depending on modules installed: end ====
-
-if(strlen($RelFilter))
-{
- $sql .= " AND (".$RelFilter.")";
-}
-
-if(strlen(trim($objConfig->Get("TopicRelation_LV_Sortfield"))))
-{
- $order = " ORDER BY rel.Priority, ".$objConfig->Get("TopicRelation_LV_Sortfield")." ".$objConfig->Get("TopicRelation_LV_Sortorder");
-}
-else
- $order = " ORDER BY rel.Priority";
-
-$total_records = QueryCount($sql);
-$objRelList->RefreshPage('Page_Relations', $total_records);
-
-if($objConfig->Get("Perpage_Relations")>0)
-{
- $objListView->PerPage = $objConfig->Get("Perpage_Relations");
-}
-
-$sql .= $order." ".$objRelList->GetLimitSQL();
-if($objSession->HasSystemPermission("DEBUG.LIST"))
- echo htmlentities($sql,ENT_NOQUOTES)."<br>\n";
-
-$objRelList->Query_Item($sql);
-
-
-$objListView = new clsListView($objListToolBar,$objRelList);
-$objListView->IdField = "RelationshipId";
-$objListView->PageLinkTemplate = $pathtoroot.$admin."/templates/user_page_link.tpl";
-
-for($i=0;$i<count($objRelList->Items);$i++)
-{
- $rel =& $objRelList->GetItemRefByIndex($i);
-
- $objListView->RowIcons[] = $rel->Admin_Icon();
-}
-
-$objListView->ColumnHeaders->Add("ItemName",admin_language("la_ColHeader_Item"),1,0,$order,"width=\"30%\"","TopicRelation_LV_Sortfield","TopicRelation_LV_Sortorder","ItemName");
-$objListView->ColumnHeaders->Add("ItemType",admin_language("la_ColHeader_ItemType"),1,0,$order,"width=\"20%\"","TopicRelation_LV_Sortfield","TopicRelation_LV_Sortorder","ItemType");
-$objListView->ColumnHeaders->Add("RelationType",admin_language("la_prompt_RelationType"),1,0,$order,"width=\"10%\"","TopicRelation_LV_Sortfield","TopicRelation_LV_Sortorder","RelationType");
-$objListView->ColumnHeaders->Add("Status",admin_language("la_prompt_Status"),1,0,$order,"width=\"10%\"","TopicRelation_LV_Sortfield","TopicRelation_LV_Sortorder","Status");
-$objListView->ColumnHeaders->SetSort($objConfig->Get("TopicRelation_LV_Sortfield"), $objConfig->Get("TopicRelation_LV_Sortorder"));
-
-$objListView->PrintToolBar = FALSE;
-$objListView->CurrentPageVar = "Page_Relations";
-$objListView->PerPageVar = "Perpage_Relations";
-$objListView->CheckboxName = "itemlist[]";
-$objListView->TotalItemCount = $total_records;
-
-$filter = false; // always initialize variables before use
-if ($RelView != $Rel_AllValue) {
- $filter = true;
-}
-
-$title = prompt_language("la_Text_Editing")." ".prompt_language("la_Text_Topic")." '".$c->Get("TopicText")."' - ".prompt_language("la_tab_Relations");
-int_header($objListToolBar,NULL,$title);
-if ($objSession->GetVariable("HasChanges") == 1) {
-?>
-<table width="100%" border="0" cellspacing="0" cellpadding="0" class="toolbar">
- <tr>
- <td valign="top">
- <?php int_hint_red(admin_language("la_Warning_Save_Item")); ?>
- </td>
- </tr>
-</table>
-<?php } ?>
-<?php if ($filter) { ?>
-<table width="100%" border="0" cellspacing="0" cellpadding="0" class="toolbar">
- <tr>
- <td valign="top">
- <?php int_hint_red(admin_language("la_Warning_Filter")); ?>
- </td>
- </tr>
-</table>
-<?php } ?>
-<FORM method="POST" ACTION="" NAME="permlistform" ID="permlistform">
-<?php
- print $objListView->PrintList();
-?>
-<input type="hidden" name="Action" value="">
-<INPUT TYPE="hidden" NAME="CategoryId" VALUE="<?php echo $c->Get("CategoryId"); ?>">
-<INPUT TYPE="hidden" NAME="SourceId" VALUE = "<?php echo $c->Get("ResourceId"); ?>">
-</FORM>
-<FORM NAME="popup" ID="popup" METHOD="POST" ACTION="addrelation.php?<?php echo $envar; ?>">
- <INPUT TYPE="hidden" NAME="TargetId"><INPUT TYPE="hidden" NAME="TargetType">
- <INPUT TYPE="hidden" NAME="Action" value="m_add_relation_form">
-</FORM>
-<!-- CODE FOR VIEW MENU -->
-<form ID="viewmenu" method="post" action="<?php echo $_SERVER["PHP_SELF"]."?".$envar; ?>" name="viewmenu">
-<input type="hidden" name="fieldname" value="">
-<input type="hidden" name="varvalue" value="">
-<input type="hidden" name="varvalue2" value="">
-<input type="hidden" name="Action" value="">
-</form>
-<FORM NAME="save_edit_buttons" ID="save_edit_buttons" method="POST" ACTION="">
- <input type=hidden NAME="Action" VALUE="save_topic_edit">
- <input type="hidden" name="TopicEditStatus" VALUE="0">
-</FORM>
-<script src="<?php echo $adminURL; ?>/listview/listview.js"></script>
-<script>
-initSelectiorContainers();
-<?php echo $objListToolBar->Get("CheckClass").".setImages();"; ?>
-</script>
-<!-- END CODE-->
-<?php int_footer(); ?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/addtopic_relations.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.10
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/browse.php
===================================================================
--- trunk/in-bulletin/admin/browse.php (revision 12824)
+++ trunk/in-bulletin/admin/browse.php (nonexistent)
@@ -1,92 +0,0 @@
-<?php
-##############################################################
-##In-portal ##
-##############################################################
-## In-portal ##
-## Intechnic Corporation ##
-## All Rights Reserved, 1998-2002 ##
-## ##
-## No portion of this code may be copied, reproduced or ##
-## otherwise redistributed without proper written ##
-## consent of Intechnic Corporation. Violation will ##
-## result in revocation of the license and support ##
-## privileges along maximum prosecution allowed by law. ##
-##############################################################
-global $rootURL, $imagesURL, $adminURL,$admin;
-
-if(!$pathtoroot) die('error: no base path defined');
-
-//$rootURL="http://".ThisDomain().$objConfig->Get("Site_Path");
-$localURL=$rootURL."in-bulletin/";
-
-//$imagesURL = $rootURL."admin/images";
-
-//admin only util
-
-$pathtolocal = $pathtoroot."in-bulletin/";
-
-//require_once ($pathtoroot."admin/include/elements.php");
-//require_once ($pathtoroot."kernel/admin/include/navmenu.php");
-require_once ($pathtolocal."admin/include/navmenu.php");
-require_once($pathtoroot.$admin."/listview/columnheader.php");
-
-//Set Section
-$section = 'in-bulletin:browse';
-//Set Environment Variable
-//$envar = "env=" . BuildEnv();
-
-$localImageURL = $localURL."admin/images";
-$list = $objSession->GetVariable("SearchWord");
-
-//$TopicSearch = (strlen($list)>0 && $SearchType =="Topics" || $SearchType=="all" || $SearchType="") || (strlen($list)==0);
-
-if($TopicSearch)
-{
-?>
-<!-- TOPICS-->
-<div id="topics" class="ini_tab" isTab="true" tabTitle="Topics" PrefixSpecial="bb" ActionPrefix="bb_topic_" EditURL="in-bulletin/admin/addtopic">
-<form name="topics_form" id="topics_form" action="" method=post>
- <input type="hidden" name="Action">
- <input type="hidden" name="return_script" value="<?php echo basename($_SERVER['PHP_SELF']); ?>">
-<table cellSpacing=0 cellPadding=2 width="100%" class="tabTable">
- <tbody>
- <tr>
- <td>
- <img height=15 src="<?php echo $imagesURL; ?>/arrow.gif" width=15 align=absMiddle border=0>
- <b class=text><?php echo prompt_language("la_Page"); ?></b> <?php print $objTopicList->GetAdminPageLinkList($_SERVER["PHP_SELF"]); ?>
- </td>
- </tr>
- </tbody>
-</table>
-<table cellSpacing=0 cellPadding=2 width="100%" border=0>
-<tbody>
-<?php
- $cols = new clsColumnHeaderList();
- $order = $objConfig->Get("Topic_SortField");
- $SortOrder=0;
- if($objConfig->Get("Topic_SortOrder")=="asc")
- $SortOrder=1;
-
- $cols->Add("TopicText",admin_language("la_ColHeader_Topic"),1,0,$order,"width=\"40%\"","Topic_SortField","Topic_SortOrder","TopicText");
- $cols->Add("PostedBy",admin_language("la_ColHeader_Poster"),1,0,$order,"width=\"39%\"","Topic_SortField","Topic_SortOrder","PostedBy");
- $cols->Add("ModifiedDate",admin_language("la_ColHeader_Date"),1,0,$order,"width=\"10%\"","Topic_SortField","Topic_SortOrder","Modified");
- $cols->Add("Posts",admin_language("la_ColHeader_Reply"),1,0,$order,"width=\"10%\"","Topic_SortField","Topic_SortOrder","Posts");
- $cols->Add("Views",admin_language("la_ColHeader_Views"),1,0,$order,"width=\"10%\"","Topic_SortField","Topic_SortOrder","Views");
- $cols->SetSort($objConfig->Get("Topic_SortField"),$objConfig->Get("Topic_SortOrder"));
-
- print $cols ->PrintColumns();
- print adListTopics($pathtoroot."in-bulletin/admin/templates/topic_element.tpl");
-?>
- </tbody>
-</table>
-</form>
-</div>
-<SCRIPT LANGUAGE="JavaScript">
- //AddButtonAction('new_topic',"get_to_server('<?php echo $rootURL;?>in-bulletin/admin/addtopic.php','new=1');"); //new cat
- registerTab('topics');
-</SCRIPT>
-<!-- END TOPICS-->
-<?php
-}
-?>
-
Property changes on: trunk/in-bulletin/admin/browse.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.6
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/prerequisit.php
===================================================================
--- trunk/in-bulletin/admin/install/prerequisit.php (revision 12824)
+++ trunk/in-bulletin/admin/install/prerequisit.php (nonexistent)
@@ -1,48 +0,0 @@
-<?php
-$PreRequisitErrors = Array();
-$path = $pathtoroot."in-bulletin";
-
-$result = true;
-
-if (!is_writable($path.$pathchar."images".$pathchar."emoticons")) {
- $result = false;
- $PreRequisitErrors[] = "In-bulletins's Emoticons directory must be writable (".$pathtoroot."in-bulletin/images/emoticons).";
-}
-
-if( !function_exists('ConvertVersion') )
-{
- function ConvertVersion($version)
- {
- $parts = explode('.', $version);
-
- $bin = '';
- foreach ($parts as $part) {
- $bin .= str_pad(decbin($part), 8, '0', STR_PAD_LEFT);
- }
-
- $dec = bindec($bin);
-
- return $dec;
- }
-}
-
-$min_version = Array('module' => 'In-Portal', 'version' => '1.1.0');
-
-$db =& GetADODBConnection();
-
-$query = 'SELECT Version FROM '.GetTablePrefix().'Modules WHERE Name = '.$db->qstr( $min_version['module'] );
-$inp_version = $db->GetOne($query);
-
-if( ConvertVersion($inp_version) < ConvertVersion($min_version['version']) )
-{
- $PreRequisitErrors[] = 'Please upgrade '.$min_version['module'].' to version '.$min_version['version'].' or above';
- $result = false;
-}
-
-if (isset($show_errors) && $show_errors)
-{
- foreach ($PreRequisitErrors as $error) {
- echo '<b><font color="#FF0000">'.$error.'</font></b><br />';
- }
-}
-?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/prerequisit.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/langpacks/english.lang
===================================================================
--- trunk/in-bulletin/admin/install/langpacks/english.lang (revision 12824)
+++ trunk/in-bulletin/admin/install/langpacks/english.lang (nonexistent)
@@ -1,33 +0,0 @@
-<LANGUAGES>
- <LANGUAGE PackName="English" Encoding="base64"><DATEFORMAT>m/d/Y</DATEFORMAT><TIMEFORMAT>g:i:s A</TIMEFORMAT><INPUTDATEFORMAT>m/d/Y</INPUTDATEFORMAT><INPUTTIMEFORMAT>g:i:s A</INPUTTIMEFORMAT><DECIMAL>.</DECIMAL><THOUSANDS>,</THOUSANDS><CHARSET>iso-8859-1</CHARSET><UNITSYSTEM>2</UNITSYSTEM>
- <PHRASES>
- <PHRASE Label="la_col_ModifiedDate" Module="In-Bulletin" Type="1">RGF0ZS9UaW1l</PHRASE>
- <PHRASE Label="la_col_PostedBy" Module="In-Bulletin" Type="1">UG9zdGVy</PHRASE>
- <PHRASE Label="la_col_Posts" Module="In-Bulletin" Type="1">UmVwbGllcw==</PHRASE>
- <PHRASE Label="la_col_TopicText" Module="In-Bulletin" Type="1">VG9waWM=</PHRASE>
- <PHRASE Label="la_col_Views" Module="In-Bulletin" Type="1">Vmlld3M=</PHRASE>
- <PHRASE Label="la_fld_cust_bb_ItemTemplate" Module="In-Bulletin" Type="1">VG9waWNzIEl0ZW0gVGVtcGxhdGU=</PHRASE>
- <PHRASE Label="la_fld_PostedBy" Module="In-Bulletin" Type="1">UG9zdGVkIEJ5</PHRASE>
- <PHRASE Label="la_fld_TopicType" Module="In-Bulletin" Type="1">VG9waWMgTG9ja2Vk</PHRASE>
- <PHRASE Label="la_fld_Topic_MaxHotNumber" Module="In-Bulletin" Type="1">TWF4aW11bSBudW1iZXIgb2YgSE9UIHRvcGljcw==</PHRASE>
- <PHRASE Label="la_fld_Topic_MinPopRating" Module="In-Bulletin" Type="1">TWluaW11bSByYXRpbmcgdG8gY29uc2lkZXIgdG9waWMgUE9Q</PHRASE>
- <PHRASE Label="la_fld_Topic_MinPopVotes" Module="In-Bulletin" Type="1">TWluaW11bSBudW1iZXIgb2YgcG9zdHMgdG8gY29uc2lkZXIgdG9waWMgUE9Q</PHRASE>
- <PHRASE Label="la_fld_Views" Module="In-Bulletin" Type="1">Vmlld3M=</PHRASE>
- <PHRASE Label="la_In-bulletin" Module="In-Bulletin" Type="1">SW4tYnVsbGV0aW4=</PHRASE>
- <PHRASE Label="la_Poster" Module="In-Bulletin" Type="1">UG9zdGVy</PHRASE>
- <PHRASE Label="la_section_Topic" Module="In-Bulletin" Type="1">VG9waWM=</PHRASE>
- <PHRASE Label="la_title_AddingTopic" Module="In-Bulletin" Type="1">QWRkaW5nIFRvcGlj</PHRASE>
- <PHRASE Label="la_title_EditingTopic" Module="In-Bulletin" Type="1">RWRpdGluZyBUb3BpYw==</PHRASE>
- <PHRASE Label="la_title_NewTopic" Module="In-Bulletin" Type="1">TmV3IFRvcGlj</PHRASE>
- <PHRASE Label="la_title_Topics" Module="In-Bulletin" Type="1">VG9waWNz</PHRASE>
- <PHRASE Label="la_ToolTip_NewTopic" Module="In-Bulletin" Type="1">TmV3IFRvcGlj</PHRASE>
- </PHRASES>
- <EVENTS>
- <EVENT MessageType="text" Event="PM.ADD" Type="0">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogTmV3IFByaXZhdGUgTWVzc2FnZQoKQSBuZXcgcHJpdmF0ZSBtZXNzYWdlIGhhcyBhcnJpdmVkLiA=</EVENT>
- <EVENT MessageType="text" Event="POST.ADD" Type="0">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IE5ldyByZXBseSBoYXMgYmVlbiBhZGRlZAoKTmV3IHJlcGx5IGhhcyBiZWVuIGFkZGVkIHRvIG9uZSBvZiB5b3VyIHBvc3RzOg0KDQo8aW5wOnRvcGljIF9maWVsZD0idGV4dCIgLz4gLSA8aW5wOnRvcGljIF9maWVsZD0ibGluayIgX1RlbXBsYXRlPSJpbmJ1bGxldGluL3Bvc3RfbGlzdCIgLz4=</EVENT>
- <EVENT MessageType="text" Event="POST.ADD" Type="1">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IE5ldyByZXBseSBoYXMgYmVlbiBhZGRlZAoKTmV3IHJlcGx5IGhhcyBiZWVuIGFkZGVkIHRvIG9uZSBvZiB5b3VyIHBvc3RzOg0KDQo8aW5wOnRvcGljIF9maWVsZD0idGV4dCIgLz4gLSA8aW5wOnRvcGljIF9maWVsZD0ibGluayIgX1RlbXBsYXRlPSJpbmJ1bGxldGluL3Bvc3RfbGlzdCIgLz4=</EVENT>
- <EVENT MessageType="text" Event="POST.MODIFY" Type="1">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogUG9zIG1vZGlmaWVkCgpBIHBvc3QgaGFzIGJlZW4gbW9kaWZpZWQu</EVENT>
- <EVENT MessageType="text" Event="TOPIC.ADD" Type="1">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogVG9waWMgYWRkZGUKCkEgdG9waWMgaGFzIGJlZW4gYWRkZWQu</EVENT>
- </EVENTS>
- </LANGUAGE>
-</LANGUAGES>
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/langpacks/english.lang
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.9
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/inportal_data.sql
===================================================================
--- trunk/in-bulletin/admin/install/inportal_data.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/inportal_data.sql (nonexistent)
@@ -1,266 +0,0 @@
-INSERT INTO ConfigurationAdmin VALUES ('Topic_SortOrder', 'la_Text_Topics', 'la_topic_sortfield_prompt', 'select', '', 'asc=la_common_ascending,desc=la_common_descending', 10.01, 2, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Topic_SortField', 'la_Text_Topics', 'la_topic_sortfield_prompt', 'select', '', 'TopicText=la_Topic_Text,Posts=la_Number_of_Posts,CreatedOn=la_CreatedOn,LastPostDate=la_LastUpdate,Views=la_Topic_Views,CachedRating=la_Rating,LastPoser=la_Poster,<SQL>SELECT Prompt AS OptionName, CONCAT("cust_", FieldName) AS OptionValue FROM <PREFIX>CustomField WHERE (Type = 3) AND (IsSystem = 0)</SQL>', 10.01, 1, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Topic_SortField2', 'la_Text_Topics', 'la_topic_sortfield2_prompt', 'select', '', 'TopicText=la_Topic_Text,Posts=la_Number_of_Posts,CreatedOn=la_CreatedOn,LastPostDate=la_LastUpdate,Views=la_Topic_Views,CachedRating=la_Rating,LastPoser=la_Poster,<SQL>SELECT Prompt AS OptionName, CONCAT("cust_", FieldName) AS OptionValue FROM <PREFIX>CustomField WHERE (Type = 3) AND (IsSystem = 0)</SQL>', 10.02, 1, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Topic_NewDays', 'la_Text_Topics', 'la_topic_newdays_prompt', 'text', '', 'asc=la_common_ascending,desc=la_common_descending', 10.05, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Topic_SortOrder2', 'la_Text_Topics', 'la_topic_sortfield2_prompt', 'select', '', 'asc=la_common_ascending,desc=la_common_descending', 10.02, 2, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Perpage_Topics', 'la_Text_Topics', 'la_topic_perpage_prompt', 'text', '', '', 10.03, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Topic_MinPopRating', 'la_Text_Topics', 'la_fld_Topic_MinPopRating', 'text', '', '', 10.06, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Topic_MaxHotNumber', 'la_Text_Topics', 'la_fld_Topic_MaxHotNumber', 'text', '', '', 10.08, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Topic_EditorPicksAbove', 'la_Text_Topics', 'la_topic_editorpicksabove_prompt', 'checkbox', '', '', 10.09, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Perpage_Postings', 'la_posts_subheading', 'la_posts_perpage_prompt', 'text', '', '', 20.01, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Posts_NewDays', 'la_posts_subheading', 'la_posts_newdays_prompt', 'text', '', '', 20.02, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Topic_MinPopVotes', 'la_Text_Topics', 'la_fld_Topic_MinPopVotes', 'text', '', '', 10.07, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Perpage_Topics_Short', 'la_Text_Topics', 'la_topic_perpage_short_prompt', 'text', '', '', 10.04, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('topic_ReviewDelay_Value', 'la_Text_Topics', 'la_prompt_DupReviews', 'text', '', '', 10.1, 1, 1);
-INSERT INTO ConfigurationAdmin VALUES ('topic_ReviewDelay_Interval', 'la_Text_Topics', 'la_prompt_DupReviews', 'select', '', '1=la_Text_Second,60=la_Text_Minute,3600=la_Text_Hour,86400=la_Text_Day,604800=la_Text_Week,2419200=la_Text_Month,29030400=la_text_Year', 10.1, 2, 1);
-INSERT INTO ConfigurationAdmin VALUES ('topic_RatingDelay_Value', 'la_Text_Topics', 'la_prompt_DupRating', 'text', '', '', 10.11, 1, 1);
-INSERT INTO ConfigurationAdmin VALUES ('topic_RatingDelay_Interval', 'la_Text_Topics', 'la_prompt_DupRating', 'select', '', '1=la_Text_Second,60=la_Text_Minute,3600=la_Text_Hour,86400=la_Text_Day,604800=la_Text_Week,2419200=la_Text_Month,29030400=la_text_Year', 10.11, 2, 1);
-INSERT INTO ConfigurationAdmin VALUES ('AutoTopicLockPosts', 'la_Text_Topics', 'la_prompt_PostsToLock', 'text', NULL, NULL, 10.12, 0, 0);
-INSERT INTO ConfigurationAdmin VALUES ('Perpage_TopicReviews', 'la_Text_Reviews', 'la_review_perpage_prompt', 'text', NULL, NULL, 30.01, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('bb_CategoryTemplate', 'la_section_Templates', 'la_fld_CategoryTemplate', 'text', '', '', 40.01, 0, 0);
-INSERT INTO ConfigurationAdmin VALUES ('bb_ItemTemplate', 'la_section_Templates', 'la_fld_ItemTemplate', 'text', '', '', 40.02, 0, 0);
-INSERT INTO ConfigurationAdmin VALUES ('bb_MaxImageCount', 'la_section_ImageSettings', 'la_config_MaxImageCount', 'text', '', '', 50.01, 0, 0);
-INSERT INTO ConfigurationAdmin VALUES ('bb_ThumbnailImageWidth', 'la_section_ImageSettings', 'la_config_ThumbnailImageWidth', 'text', '', '', 50.02, 0, 0);
-INSERT INTO ConfigurationAdmin VALUES ('bb_ThumbnailImageHeight', 'la_section_ImageSettings', 'la_config_ThumbnailImageHeight', 'text', '', '', 50.03, 0, 0);
-INSERT INTO ConfigurationAdmin VALUES ('bb_FullImageWidth', 'la_section_ImageSettings', 'la_config_FullImageWidth', 'text', '', '', 50.04, 0, 0);
-INSERT INTO ConfigurationAdmin VALUES ('bb_FullImageHeight', 'la_section_ImageSettings', 'la_config_FullImageHeight', 'text', '', '', 50.05, 0, 0);
-
-INSERT INTO ConfigurationAdmin VALUES ('SearchRel_Keyword_topics', 'la_config_SearchRel_DefaultKeyword', 'la_text_keyword', 'text', NULL, NULL, 0, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('SearchRel_Pop_topics', 'la_config_DefaultPop', 'la_text_popularity', 'text', NULL, NULL, 0, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('SearchRel_Rating_topics', 'la_config_DefaultRating', 'la_prompt_Rating', 'text', NULL, NULL, 0, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('SearchRel_Increase_topics', 'la_config_DefaultIncreaseImportance', 'la_text_increase_importance', 'text', NULL, NULL, 0, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Search_ShowMultiple_topics', 'la_config_ShowMultiple', 'la_Text_MultipleShow', 'text', NULL, NULL, 0, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Perpage_PrivateMessages', 'la_text_PrivateMessages', 'la_text_PrivateMessages_PerPage', 'text', NULL, NULL, 0, 0, 1);
-
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Perpage_Postings', '25', 'In-Bulletin', 'in-bulletin:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Perpage_Topics', '5', 'In-Bulletin', 'in-bulletin:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Posting_SortOrder', 'CreatedOn asc, PostingText', 'inportal', '')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Posts_NewDays', '5', 'In-Bulletin', 'in-bulletin:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Bulletin_TopCount', '2', 'inportal', '')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Bulletin_CatNewDays', '10', 'inportal', '')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Bulletin_Pick_First', '1', 'inportal', '')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Topic_SortOrder', 'desc', 'In-Bulletin', 'in-bulletin:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Topic_SortField', 'LastPostDate', 'In-Bulletin', 'in-bulletin:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Topic_SortOrder2', 'desc', 'In-Bulletin', 'in-bulletin:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Topic_SortField2', 'Posts', 'In-Bulletin', 'in-bulletin:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Topic_NewDays', '6', 'In-Bulletin', 'in-bulletin:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Topic_MinPopRating', '3', 'In-Bulletin', 'in-bulletin:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Topic_MaxHotNumber', '3', 'In-Bulletin', 'in-bulletin:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Topic_EditorPicksAbove', '1', 'In-Bulletin', 'in-bulletin:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Topic_MinPopVotes', '8', 'In-Bulletin', 'in-bulletin:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Topic_Root', '{TopicCatId}', 'In-Portal', '')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Post_Sortfield', DEFAULT, 'In-Bulletin', '')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Post_SortOrder', DEFAULT, 'In-Bulletin', '')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'BBTags', 'b:;i:;u:;ul:type|align;font:color|face|size;url:href;img:src|border', 'In-Portal', '')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Post_Background1', '#cccccc', 'In-Portal', 'in-bulletin:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Post_Background2', '#bbbbbb', 'In-Portal', 'in-bulletin:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Topic_Background1', '#FAEBD7', 'In-Portal', '')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Topic_Background2', '#F5F5DC', 'In-Portal', '')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'AutoTopicLockPosts', '0', 'In-Bulletin', 'in-bulletin:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'bb_CategoryTemplate', 'inbulletin/index', 'In-Bulletin', 'in-bulletin:configuration_output');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'bb_ItemTemplate', 'inbulletin/post_list', 'In-Bulletin', 'in-bulletin:configuration_output');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Topic_Highlight_OpenTag', '<span class="match">', 'In-Bulletin', 'in-bulletin:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Topic_Highlight_CloseTag', '</span>', 'In-Bulletin', 'in-bulletin:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Perpage_Topics_Short', '3', 'In-Bulletin', 'in-bulletin:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'topic_RatingDelay_Interval', '3600', 'In-Bulletin', 'in-bulletin:configuration_output');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'topic_RatingDelay_Value', '1', 'In-Bulletin', 'in-bulletin:configuration_output');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'topic_ReviewDelay_Interval', '60', 'In-Bulletin', 'in-bulletin:configuration_output');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'topic_ReviewDelay_Value', '10', 'In-Bulletin', 'in-bulletin:configuration_output');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'SearchRel_Increase_topics', '30', 'In-Bulletin', 'in-bulletin:configuration_search');
-
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'bb_MaxImageCount', 5, 'In-Bulletin', 'in-bulletin:configuration_output');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'bb_ThumbnailImageWidth', 120, 'In-Bulletin', 'in-bulletin:configuration_output');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'bb_ThumbnailImageHeight', 120, 'In-Bulletin', 'in-bulletin:configuration_output');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'bb_FullImageWidth', 450, 'In-Bulletin', 'in-bulletin:configuration_output');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'bb_FullImageHeight', 450, 'In-Bulletin', 'in-bulletin:configuration_output');
-
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'SearchRel_Keyword_topics', '90', 'In-Bulletin', 'in-bulletin:configuration_search');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'SearchRel_Pop_topics', '5', 'In-Bulletin', 'in-bulletin:configuration_search');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'SearchRel_Rating_topics', '5', 'In-Bulletin', 'in-bulletin:configuration_search');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'SearchRel_Increase_posts', '30', 'In-Bulletin', 'in-bulletin:configuration_search');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'SearchRel_Keyword_posts', '90', 'In-Bulletin', 'in-bulletin:configuration_search');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'SearchRel_Pop_posts', '5', 'In-Bulletin', 'in-bulletin:configuration_search');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'SearchRel_Rating_posts', '5', 'In-Bulletin', 'in-bulletin:configuration_search');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Search_ShowMultiple_topics', '0', 'In-Bulletin', 'in-bulletin:configuration_search');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Perpage_PrivateMessages', '20', 'In-Bulletin', '');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Perpage_TopicReviews', '10', 'In-Bulletin', 'in-bulletin:configuration_output');
-
-INSERT INTO Emoticon VALUES (1, 'Happy Smile', 0, ':)', 1);
-INSERT INTO Emoticon VALUES (2, 'Big Grin', 0, ':grin:', 1);
-INSERT INTO Emoticon VALUES (3, 'Wink', 0, ';)', 1);
-INSERT INTO Emoticon VALUES (4, 'Scared', 0, ':scared:', 1);
-INSERT INTO Emoticon VALUES (5, 'Teasing', 0, ':eek:', 1);
-INSERT INTO Emoticon VALUES (6, 'Cool', 0, ':cool:', 1);
-INSERT INTO Emoticon VALUES (7, 'Angry', 0, ':@', 1);
-INSERT INTO Emoticon VALUES (8, 'Squint', 0, ':squint:', 1);
-INSERT INTO Emoticon VALUES (9, 'Oops', 0, ':o', 1);
-INSERT INTO Emoticon VALUES (10, 'Sad', 0, ':(', 1);
-INSERT INTO Emoticon VALUES (11, 'Cry', 0, ':cry:', 1);
-INSERT INTO Emoticon VALUES (12, 'Smirk', 0, ';]', 1);
-INSERT INTO Emoticon VALUES (13, 'Happy sleep', 0, ':sleep:', 1);
-INSERT INTO Emoticon VALUES (14, 'Very angry', 0, ':x', 1);
-INSERT INTO Emoticon VALUES (15, 'Geek', 0, ':geek:', 1);
-INSERT INTO Emoticon VALUES (16, 'Upset', 0, ';(', 1);
-INSERT INTO Emoticon VALUES (17, 'LOL', 0, ':lol:', 1);
-INSERT INTO Emoticon VALUES (18, 'Yawn', 0, ':O', 1);
-INSERT INTO Emoticon VALUES (19, 'Thinking', 0, ':hm:', 1);
-INSERT INTO Emoticon VALUES (20, 'Secret', 0, ':|', 1);
-
-INSERT INTO Events VALUES (DEFAULT, 'TOPIC.ADD', NULL, 2, 0, 'In-Bulletin', 'la_event_topic.add', 1);
-INSERT INTO Events VALUES (DEFAULT, 'POST.ADD', NULL, 2, 0, 'In-Bulletin', 'la_event_post.add', 1);
-INSERT INTO Events VALUES (DEFAULT, 'POST.MODIFY', NULL, 2, 0, 'In-Bulletin', 'la_event_post.modify', 1);
-INSERT INTO Events VALUES (DEFAULT, 'POST.ADD', NULL, 1, 0, 'In-Bulletin', 'la_event_post.add', 0);
-INSERT INTO Events VALUES (DEFAULT, 'PM.ADD', NULL, 1, 0, 'In-Bulletin', 'la_event_pm.add', 0);
-
-INSERT INTO ItemTypes VALUES (3, 'In-Bulletin', 'bb', 'Topic', 'TopicText', 'OwnerId', 'Views', 'CachedRating', 'la_ItemTab_Topics', 1, '', 'clsTopic', 'Topic');
-INSERT INTO ItemTypes VALUES (30, 'In-Bulletin', 'posting', 'Posting', 'Subject', 'CreatedById', NULL, NULL, 'la_ItemTab_Posts', 0, '', '', 'Post');
-
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'TOPIC.VIEW', 'lu_PermName_Topic.View_desc', 'lu_PermName_Topic.View_error', 'In-Bulletin');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'TOPIC.ADD', 'lu_PermName_Topic.Add_desc', 'lu_PermName_Topic.Add_error', 'In-Bulletin');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'TOPIC.ADD.PENDING', 'lu_PermName_Topic.Add.Pending_desc', 'lu_PermName_Topic.Add.Pending_error', 'In-Bulletin');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'TOPIC.DELETE', 'lu_PermName_Topic.Delete_desc', 'lu_PermName_Topic.Delete_error', 'In-Bulletin');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'TOPIC.MODIFY', 'lu_PermName_Topic.Modify_desc', 'lu_PermName_Topic.Modify_error', 'In-Bulletin');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'TOPIC.REPLY.DELETE', 'lu_PermName_Topic.Reply.Delete_desc', 'lu_PermName_Topic.Reply.Delete_desc', 'In-Bulletin');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'TOPIC.REPLY.VIEW', 'lu_PermName_Topic.Reply.View_desc', 'lu_PermName_Topic.Reply.View_error', 'In-Bulletin');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'TOPIC.REPLY.ADD', 'lu_PermName_Topic.Reply.Add_desc', 'lu_PermName_Topic.Reply.Add_error', 'In-Bulletin');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'TOPIC.REPLY.MODIFY', 'lu_PermName_Topic.Reply.Modify_desc', 'lu_PermName_Topic.Reply.Modify_error', 'In-Bulletin');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'TOPIC.RATE', 'lu_PermName_Topic.Rate_desc', 'lu_PermName_Topic.Rate_desc', 'In-Bulletin');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'TOPIC.REVIEW', 'lu_PermName_Topic.Review_desc', 'lu_PermName_Topic.Review_desc', 'In-Bulletin');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'TOPIC.REPLY.OWNER.MODIFY', 'lu_PermName_Topic.Reply.Owner.Modify_desc', 'lu_PermName_Topic.Reply.Owner.Modify_error', 'In-Bulletin');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'TOPIC.REPLY.OWNER.DELETE', 'lu_PermName_Topic.Reply.Owner.Delete_desc', 'lu_PermName_Topic.Reply.Owner.Delete_error', 'In-Bulletin');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'TOPIC.OWNER.DELETE', 'lu_PermName_Topic.Owner.Delete_desc', 'lu_PermName_Topic.Owner.Delete_error', 'In-Bulletin');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'TOPIC.MODIFY.PENDING', 'lu_PermName_Topic.Modify.Pending_desc', 'lu_PermName_Topic.Modify.Pending_error', 'In-Bulletin');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'TOPIC.OWNER.MODIFY.PENDING', 'lu_PermName_Topic.Owner.Modify.Pending_desc', 'lu_PermName_Topic.Owner.Modify.Pending_error', 'In-Bulletin');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'TOPIC.OWNER.MODIFY', 'lu_PermName_Topic.Owner.Modify_desc', 'lu_PermName_Topic.Owner.Modify_error', 'In-Bulletin');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'TOPIC.LOCK', 'lu_PermName_Topic.Lock_desc', 'lu_PermName_Topic.Lock_error', 'In-Bulletin');
-
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Bulletin', 'SELECT count(*) FROM <%prefix%>Topic WHERE Status=1', NULL, 'la_prompt_ActiveTopics', 0, 1);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Bulletin', 'SELECT COUNT(*) AS TotalTopics FROM <%prefix%>Topic', NULL, 'la_prompt_TopicsTotal', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Bulletin', 'SELECT COUNT(*) AS ActiveTopics FROM <%prefix%>Topic WHERE Status = 1', NULL, 'la_prompt_TopicsActive', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Bulletin', 'SELECT COUNT(*) AS PendingTopics FROM <%prefix%>Topic WHERE Status = 2', NULL, 'la_prompt_TopicsPending', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Bulletin', 'SELECT COUNT(*) AS DisabledTopics FROM <%prefix%>Topic WHERE Status = 0', NULL, 'la_prompt_TopicsDisabled', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Bulletin', 'SELECT COUNT(*) AS NewTopics FROM <%prefix%>Topic WHERE (NewItem = 1) OR ( (UNIX_TIMESTAMP() - CreatedOn) <= <%m:config name="Topic_NewDays"%>*86400 AND (NewItem = 2) )', NULL, 'la_prompt_NewTopics', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Bulletin', 'SELECT COUNT(*) FROM <%prefix%>Topic WHERE EditorsPick = 1', NULL, 'la_prompt_EditorsPickTopics', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Bulletin', 'SELECT COUNT(*) AS HotTopics FROM <%prefix%>Topic WHERE (HotItem = 1) OR (Posts >= <%m:config name="Topic_MaxHotNumber"%> AND (HotItem = 2) )', NULL, 'la_prompt_HotTopics', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Bulletin', 'SELECT COUNT(*) AS PopularTopics FROM <%prefix%>Topic WHERE (PopItem = 1) OR ( (CachedRating >= <%topic:hit_count type="top"%>) AND <%topic:hit_count type="top"%> AND (PopItem = 2) )', NULL, '(*) la_prompt_PopularTopics', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Bulletin', 'SELECT <%m:post_format field="AVG(CachedRating)" type="currency" precision="2"%> FROM <%prefix%>Topic WHERE CachedRating > 0', NULL, 'la_prompt_TopicAverageRating', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Bulletin', 'SELECT MAX(Views) AS MaxTopicHits FROM <%prefix%>Topic', NULL, 'la_prompt_MaxTopicHits', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Bulletin', 'SELECT MAX(CachedVotesQty) AS MaxTopicVotes FROM <%prefix%>Topic', NULL, 'la_prompt_MaxTopicVotes', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Bulletin', 'SELECT <%m:post_format field="MAX(CreatedOn)" type="date"%> FROM <%prefix%>Topic', NULL, 'la_prompt_NewestTopicDate', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Bulletin', 'SELECT <%m:post_format field="MAX(CreatedOn)" type="time"%> FROM <%prefix%>Topic', NULL, 'la_prompt_NewestTopicTime', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Bulletin', 'SELECT <%m:post_format field="MAX(Modified)" type="date"%> FROM <%prefix%>Topic', NULL, 'la_prompt_LastUpdatedTopicDate', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Bulletin', 'SELECT <%m:post_format field="MAX(Modified)" type="time"%> FROM <%prefix%>Topic', NULL, 'la_prompt_LastUpdatedTopicTime', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Bulletin', 'SELECT COUNT(*) FROM <%prefix%>ItemReview WHERE Module = \'<%modules:get_current%>\'', NULL, 'la_prompt_TopicReviews', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Bulletin', 'SELECT COUNT(*) AS TotalPosts FROM <%prefix%>Posting', NULL, 'la_prompt_PostsTotal', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Bulletin', 'SELECT <%m:post_format field="MAX(CreatedOn)" type="date"%> FROM <%prefix%>Posting', NULL, 'la_prompt_NewestPostDate', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Bulletin', 'SELECT <%m:post_format field="MAX(CreatedOn)" type="time"%> FROM <%prefix%>Posting', NULL, 'la_prompt_NewestPostTime', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Bulletin', 'SELECT <%m:post_format field="MAX(Modified)" type="date"%> FROM <%prefix%>Posting', NULL, 'la_prompt_LastUpdatedPostDate', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Bulletin', 'SELECT <%m:post_format field="MAX(Modified)" type="time"%> FROM <%prefix%>Posting', NULL, 'la_prompt_LastUpdatedPostTime', 0, 2);
-
-INSERT INTO SearchConfig VALUES ('Topic', 'NotifyOwnerOnChanges', 0, 1, 'lu_fielddesc_topic_notifyowneronchanges', 'lu_field_notifyowneronchanges', 'In-Bulletin', 'la_text_topic', 1, DEFAULT, 0, 'boolean', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Topic', 'TopicId', 0, 1, 'lu_fielddesc_topic_topicid', 'lu_field_topicid', 'In-Bulletin', 'la_text_topic', 0, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Topic', 'Priority', 0, 1, 'lu_fielddesc_topic_priority', 'lu_field_priority', 'In-Bulletin', 'la_text_topic', 8, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Topic', 'OwnerId', 0, 1, 'lu_fielddesc_topic_ownerid', 'lu_field_ownerid', 'In-Bulletin', 'la_text_topic', 9, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Topic', 'Modified', 0, 1, 'lu_fielddesc_topic_modified', 'lu_field_modified', 'In-Bulletin', 'la_text_topic', 2, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Topic', 'TopicText', 1, 1, 'lu_fielddesc_topic_topictext', 'lu_field_topictext', 'In-Bulletin', 'la_text_topic', 3, DEFAULT, 1, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Topic', 'Posts', 0, 1, 'lu_fielddesc_topic_posts', 'lu_field_posts', 'In-Bulletin', 'la_text_topic', 4, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Topic', 'Views', 0, 1, 'lu_fielddesc_topic_views', 'lu_field_views', 'In-Bulletin', 'la_text_topic', 5, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Topic', 'EditorsPick', 0, 1, 'lu_fielddesc_topic_editorspick', 'lu_field_editorspick', 'In-Bulletin', 'la_text_topic', 6, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Topic', 'Status', 0, 1, 'lu_fielddesc_topic_status', 'lu_field_status', 'In-Bulletin', 'la_text_topic', 7, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Topic', 'ModifiedById', 0, 1, 'lu_fielddesc_topic_modifiedbyid', 'lu_field_modifiedbyid', 'In-Bulletin', 'la_text_topic', 10, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Topic', 'ResourceId', 0, 1, 'lu_fielddesc_topic_resourceid', 'lu_field_resourceid', 'In-Bulletin', 'la_text_topic', 11, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Topic', 'TopicType', 0, 1, 'lu_fielddesc_topic_topictype', 'lu_field_topictype', 'In-Bulletin', 'la_text_topic', 12, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Topic', 'CreatedOn', 0, 1, 'lu_fielddesc_topic_createdon', 'lu_field_createdon', 'In-Bulletin', 'la_text_topic', 13, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Topic', 'CachedReviewsQty', 0, 1, 'lu_fielddesc_topic_cachedreviewsqty', 'lu_field_cachedreviewsqty', 'In-Bulletin', 'la_text_topic', 14, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Topic', 'CachedRating', 0, 1, 'lu_fielddesc_topic_cachedrating', 'lu_field_cachedrating', 'In-Bulletin', 'la_text_topic', 15, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Topic', 'CachedVotesQty', 0, 1, 'lu_fielddesc_topic_cachedvotesqty', 'lu_field_cachedvotesqty', 'In-Bulletin', 'la_text_topic', 16, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Topic', 'NewItem', 0, 1, 'lu_fielddesc_topic_newitem', 'lu_field_newitem', 'In-Bulletin', 'la_text_topic', 17, DEFAULT, 0, 'boolean', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Topic', 'PopItem', 0, 1, 'lu_fielddesc_topic_popitem', 'lu_field_popitem', 'In-Bulletin', 'la_text_topic', 18, DEFAULT, 0, 'boolean', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Topic', 'HotItem', 0, 1, 'lu_fielddesc_topic_hotitem', 'lu_field_hotitem', 'In-Bulletin', 'la_text_topic', 19, DEFAULT, 0, 'boolean', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Topic', 'PostedBy', 0, 1, 'lu_fielddesc_topic_postedby', 'lu_field_postedby', 'In-Bulletin', 'la_text_topic', 20, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Topic', 'OrgId', 0, 1, 'lu_fielddesc_topic_orgid', 'lu_field_orgid', 'In-Bulletin', 'la_text_topic', 21, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Topic', 'LastPostId', 0, 1, 'lu_fielddesc_topic_lastpostid', 'lu_field_lastpostid', 'In-Bulletin', 'la_text_topic', 22, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-
-INSERT INTO Permissions VALUES (DEFAULT, 'CATEGORY.VIEW', 14, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.VIEW', 14, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.REPLY.VIEW', 14, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'CATEGORY.VIEW', 12, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'FAVORITES', 12, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.VIEW', 12, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.REPLY.VIEW', 12, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.REPLY.ADD', 12, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.REPLY.OWNER.MODIFY', 12, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.REPLY.OWNER.DELETE', 12, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.OWNER.DELETE', 12, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.OWNER.MODIFY.PENDING', 12, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.OWNER.MODIFY', 12, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'CATEGORY.VIEW', 13, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'CATEGORY.ADD.PENDING', 13, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'FAVORITES', 13, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.VIEW', 13, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.ADD', 13, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.REPLY.VIEW', 13, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.REPLY.ADD', 13, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.RATE', 13, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.REVIEW', 13, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.REPLY.OWNER.MODIFY', 13, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.REPLY.OWNER.DELETE', 13, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.OWNER.MODIFY', 13, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'CATEGORY.VIEW', 11, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'CATEGORY.ADD', 11, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'CATEGORY.DELETE', 11, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'CATEGORY.MODIFY', 11, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'FAVORITES', 11, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.VIEW', 11, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.ADD', 11, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.DELETE', 11, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.MODIFY', 11, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.REPLY.DELETE', 11, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.REPLY.VIEW', 11, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.REPLY.ADD', 11, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.REPLY.MODIFY', 11, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.RATE', 11, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.REVIEW', 11, 1, 0, {TopicCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.VIEW', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.ADD', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.ADD.PENDING', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.DELETE', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.MODIFY', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.REPLY.DELETE', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.REPLY.VIEW', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.REPLY.ADD', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.REPLY.MODIFY', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.RATE', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.REVIEW', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.REPLY.OWNER.MODIFY', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.REPLY.OWNER.DELETE', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.OWNER.DELETE', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.MODIFY.PENDING', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.OWNER.MODIFY.PENDING', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.OWNER.MODIFY', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'TOPIC.LOCK', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin.view', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin:inbulletin_general.view', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin:inbulletin_general.edit', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin:configuration_output.view', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin:configuration_output.edit', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin:configuration_search.view', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin:configuration_search.edit', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin:configuration_censorship.view', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin:configuration_censorship.add', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin:configuration_censorship.edit', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin:configuration_emoticon.view', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin:configuration_emoticon.add', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin:configuration_emoticon.edit', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin:configuration_email.view', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin:configuration_email.edit', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin:configuration_custom.view', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin:configuration_custom.add', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin:configuration_custom.edit', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-bulletin:configuration_custom.delete', 11, 1, 1, 0);
-
-INSERT INTO ImportScripts VALUES (DEFAULT, 'In-Bulletin', 'phpbb', 'phpbb_import', 'phpBB 2.x', 'phpBB', 'user_regular,init_cat', 1, 'db');
-
-INSERT INTO CustomField VALUES (DEFAULT, 1, 'bb_ItemTemplate', 'bb_ItemTemplate', 0, 'la_title_SystemCF', 'bb_ItemTemplate', 'text', NULL, 0, 0, 1);
-
-INSERT INTO Modules VALUES ('In-Bulletin', 'in-bulletin/', 'bb', '4.2.0', 1, 3, 'inbulletin/', {TopicCatId}, '1054738405');
Property changes on: trunk/in-bulletin/admin/install/inportal_data.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.56
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/inportal_schema.sql
===================================================================
--- trunk/in-bulletin/admin/install/inportal_schema.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/inportal_schema.sql (nonexistent)
@@ -1,108 +0,0 @@
-
-CREATE TABLE Posting (
- PostingId int(11) NOT NULL auto_increment,
- IPAddress varchar(255) NOT NULL default '',
- PosterAlias varchar(255) NOT NULL default '',
- Pending tinyint(4) NOT NULL default '0',
- Subject varchar(255) default NULL,
- PostingText text,
- GraphicsUrl varchar(255) default NULL,
- CreatedOn int(11) NOT NULL default '0',
- Modified int(11) NOT NULL default '0',
- ModifiedById int(11) default NULL,
- CreatedById int(11) default NULL,
- TopicId int(11) NOT NULL default '0',
- ResourceId int(11) NOT NULL default '0',
- ReplyTo int(11) NOT NULL default '0',
- Options int(11) NOT NULL default '0',
- PRIMARY KEY (PostingId),
- KEY TopicId (TopicId),
- KEY Pending (Pending),
- KEY CreatedById (CreatedById),
- KEY CreatedOn (CreatedOn),
- KEY ModifiedOn (Modified),
- KEY ModifiedById (ModifiedById)
-)
-# --------------------------------------------------------
-CREATE TABLE Topic (
- TopicId int(11) NOT NULL auto_increment,
- NotifyOwnerOnChanges tinyint(4) NOT NULL default '0',
- Modified int(11) NOT NULL default '0',
- TopicText varchar(255) NOT NULL default '',
- AutomaticFilename tinyint(3) unsigned NOT NULL default '1',
- Posts int(11) NOT NULL default '0',
- Views double(20,6) NOT NULL default '0',
- EditorsPick tinyint(4) NOT NULL default '0',
- Status tinyint(4) unsigned NOT NULL default '2',
- Priority int(11) NOT NULL default '0',
- OwnerId int(11) NOT NULL default '-1',
- ModifiedById int(11) NOT NULL default '0',
- ResourceId int(11) default NULL,
- TopicType int(11) NOT NULL default '1',
- CreatedOn int(11) NOT NULL default '0',
- CachedReviewsQty int(11) NOT NULL default '0',
- CachedRating VARCHAR(10) NOT NULL DEFAULT '0',
- CachedVotesQty int(11) NOT NULL default '0',
- NewItem tinyint(4) NOT NULL default '2',
- PopItem tinyint(4) NOT NULL default '2',
- HotItem tinyint(4) NOT NULL default '2',
- PostedBy varchar(255) NOT NULL default '',
- OrgId INT(11) NULL DEFAULT NULL,
- LastPostId int(11) NOT NULL default '0',
- LastPostDate INT(11) NULL DEFAULT NULL,
- TodayDate DATE NULL DEFAULT NULL,
- TodayPosts int(11) NOT NULL default '0',
- PRIMARY KEY (TopicId),
- KEY OwnerId (OwnerId),
- UNIQUE KEY ResourceId (ResourceId),
- KEY ModifiedById (ModifiedById),
- KEY Posts (Posts),
- KEY Modified (Modified)
-)
-# --------------------------------------------------------
-CREATE TABLE Censorship (
- CensorshipId int(11) NOT NULL auto_increment,
- BadWord varchar(80) NOT NULL default '',
- Replacement varchar(80) NOT NULL default '',
- PRIMARY KEY (CensorshipId)
-)
-# --------------------------------------------------------
-CREATE TABLE Emoticon (
- EmoticonId int(11) NOT NULL auto_increment,
- Name varchar(20) NOT NULL default '',
- ImageId int(11) NOT NULL default '0',
- KeyStroke varchar(20) NOT NULL default '',
- Enabled int(11) NOT NULL default '1',
- PRIMARY KEY (EmoticonId)
-)
-# --------------------------------------------------------
-CREATE TABLE PrivateMessageBody (
- PMBodyId int(11) unsigned NOT NULL auto_increment,
- Subject varchar(255) NOT NULL default '',
- Body text NOT NULL,
- Options tinyint(3) unsigned NOT NULL default '0',
- ReferenceCount smallint(5) unsigned NOT NULL default '0',
- PRIMARY KEY (PMBodyId)
-)
-# --------------------------------------------------------
-CREATE TABLE PrivateMessages (
- PmId int(11) unsigned NOT NULL auto_increment,
- FromId int(11) unsigned NOT NULL default '0',
- ToId int(11) unsigned NOT NULL default '0',
- FolderId TINYINT(3) NOT NULL DEFAULT '-1',
- Status tinyint(1) unsigned NOT NULL default '0',
- PMBodyId int(11) unsigned NOT NULL default '0',
- CreatedOn int(11) unsigned NOT NULL default '0',
- PRIMARY KEY (PmId),
- KEY FromId (FromId),
- KEY CreatedOn (CreatedOn),
- KEY ToId (ToId)
-)
-# --------------------------------------------------------
-CREATE TABLE TopicCustomData (
- CustomDataId int(11) NOT NULL auto_increment,
- ResourceId int(10) unsigned NOT NULL default '0',
- KEY ResourceId (ResourceId),
- PRIMARY KEY (CustomDataId)
-)
-# --------------------------------------------------------
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/inportal_schema.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.24
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/readme_1_0_11.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/readme_1_0_11.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/readme_1_0_11.txt (nonexistent)
@@ -1,13 +0,0 @@
-Readme for In-bulletin 1.0.11
-Intechnic Corporation, June 11th, 2005
-
-New Features:
-- Front end site map
- New tag implemented in the default theme, which renders all categories, up to a given depth, as a "map" of the site. This feature is very useful for spiders, which need to crawl your entire site. It's slighly different from the convential concept of site map, in that it does not show content and auxiliary pages (register, about us, etc), only In-portal categories.
-
-- Off-site Rating
- This feature displays the HTML code that is necessary to rate an In-portal item on another site. For example, it is useful for link owner who want to promote their links. They can copy/paste that HTML code onto their sites, and ask their visitors to rate the items. Same rating rules as on the In-portal site will apply to the off-site rating.
-
-Bug Fixes:
-- Wrong signature displayed in certain circumstances
-- Misc. template fixes in the Default theme
Property changes on: trunk/in-bulletin/admin/install/upgrades/readme_1_0_11.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.5.sql
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.5.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.5.sql (nonexistent)
@@ -1,43 +0,0 @@
-DELETE FROM Emoticon WHERE EmoticonId = '1';
-DELETE FROM Emoticon WHERE EmoticonId = '2';
-DELETE FROM Emoticon WHERE EmoticonId = '3';
-DELETE FROM Emoticon WHERE EmoticonId = '4';
-DELETE FROM Emoticon WHERE EmoticonId = '5';
-DELETE FROM Emoticon WHERE EmoticonId = '6';
-DELETE FROM Emoticon WHERE EmoticonId = '7';
-DELETE FROM Emoticon WHERE EmoticonId = '8';
-DELETE FROM Emoticon WHERE EmoticonId = '9';
-DELETE FROM Emoticon WHERE EmoticonId = '10';
-DELETE FROM Emoticon WHERE EmoticonId = '11';
-DELETE FROM Emoticon WHERE EmoticonId = '12';
-DELETE FROM Emoticon WHERE EmoticonId = '13';
-DELETE FROM Emoticon WHERE EmoticonId = '14';
-DELETE FROM Emoticon WHERE EmoticonId = '15';
-DELETE FROM Emoticon WHERE EmoticonId = '16';
-DELETE FROM Emoticon WHERE EmoticonId = '17';
-DELETE FROM Emoticon WHERE EmoticonId = '18';
-DELETE FROM Emoticon WHERE EmoticonId = '19';
-DELETE FROM Emoticon WHERE EmoticonId = '20';
-
-INSERT INTO Emoticon (EmoticonId, Name, ImageId, KeyStroke, Enabled) VALUES (1, 'Happy Smile', 1, ':)', 1);
-INSERT INTO Emoticon (EmoticonId, Name, ImageId, KeyStroke, Enabled) VALUES (2, 'Big Grin', 2, ':grin:', 1);
-INSERT INTO Emoticon (EmoticonId, Name, ImageId, KeyStroke, Enabled) VALUES (3, 'Wink', 3, ';)', 1);
-INSERT INTO Emoticon (EmoticonId, Name, ImageId, KeyStroke, Enabled) VALUES (4, 'Scared', 4, ':scared:', 1);
-INSERT INTO Emoticon (EmoticonId, Name, ImageId, KeyStroke, Enabled) VALUES (5, 'Teasing', 5, ':eek:', 1);
-INSERT INTO Emoticon (EmoticonId, Name, ImageId, KeyStroke, Enabled) VALUES (6, 'Cool', 6, ':cool:', 1);
-INSERT INTO Emoticon (EmoticonId, Name, ImageId, KeyStroke, Enabled) VALUES (7, 'Angry', 7, ':@', 1);
-INSERT INTO Emoticon (EmoticonId, Name, ImageId, KeyStroke, Enabled) VALUES (8, 'Squint', 8, ':squint:', 1);
-INSERT INTO Emoticon (EmoticonId, Name, ImageId, KeyStroke, Enabled) VALUES (9, 'Oops', 9, ':o', 1);
-INSERT INTO Emoticon (EmoticonId, Name, ImageId, KeyStroke, Enabled) VALUES (10, 'Sad', 10, ':(', 1);
-INSERT INTO Emoticon (EmoticonId, Name, ImageId, KeyStroke, Enabled) VALUES (11, 'Cry', 11, ':cry:', 1);
-INSERT INTO Emoticon (EmoticonId, Name, ImageId, KeyStroke, Enabled) VALUES (12, 'Smirk', 12, ';]', 1);
-INSERT INTO Emoticon (EmoticonId, Name, ImageId, KeyStroke, Enabled) VALUES (13, 'Happy sleep', 13, ':sleep:', 1);
-INSERT INTO Emoticon (EmoticonId, Name, ImageId, KeyStroke, Enabled) VALUES (14, 'Very angry', 14, ':x', 1);
-INSERT INTO Emoticon (EmoticonId, Name, ImageId, KeyStroke, Enabled) VALUES (15, 'Geek', 15, ':geek:', 1);
-INSERT INTO Emoticon (EmoticonId, Name, ImageId, KeyStroke, Enabled) VALUES (16, 'Upset', 16, ';(', 1);
-INSERT INTO Emoticon (EmoticonId, Name, ImageId, KeyStroke, Enabled) VALUES (17, 'LOL', 17, ':lol:', 1);
-INSERT INTO Emoticon (EmoticonId, Name, ImageId, KeyStroke, Enabled) VALUES (18, 'Yawn', 18, ':O', 1);
-INSERT INTO Emoticon (EmoticonId, Name, ImageId, KeyStroke, Enabled) VALUES (19, 'Thinking', 19, ':hm:', 1);
-INSERT INTO Emoticon (EmoticonId, Name, ImageId, KeyStroke, Enabled) VALUES (20, 'Secret', 20, ':|', 1);
-
-UPDATE Modules SET Version = '1.0.5' WHERE Name = 'In-Bulletin';
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.5.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.4.sql
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.4.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.4.sql (nonexistent)
@@ -1 +0,0 @@
-UPDATE Modules SET Version = '1.0.4' WHERE Name = 'In-Bulletin';
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.4.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.2.sql
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.2.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.2.sql (nonexistent)
@@ -1,9 +0,0 @@
-ALTER TABLE Topic ADD Filename varchar(255) NOT NULL AFTER TopicText;
-ALTER TABLE Topic ADD AutomaticFilename TINYINT UNSIGNED NOT NULL AFTER Filename;
-
-UPDATE ConfigurationValues SET VariableName = 'Topic_SortOrder' WHERE VariableName = 'Topics_SortOrder';
-UPDATE ConfigurationValues SET VariableName = 'Topic_SortField' WHERE VariableName = 'Topics_Sortfield';
-UPDATE ConfigurationValues SET VariableName = 'Topic_SortOrder2' WHERE VariableName = 'Topics_SortOrder2';
-UPDATE ConfigurationValues SET VariableName = 'Topic_SortField2' WHERE VariableName = 'Topics_Sortfield2';
-
-UPDATE Modules SET Version = '1.1.2' WHERE Name = 'In-Bulletin';
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.2.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.3.sql
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.3.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.3.sql (nonexistent)
@@ -1 +0,0 @@
-UPDATE Modules SET Version = '1.1.3' WHERE Name = 'In-Bulletin';
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.3.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.2.0.sql
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.2.0.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.2.0.sql (nonexistent)
@@ -1,26 +0,0 @@
-ALTER TABLE TopicCustomData ADD INDEX (ResourceId);
-UPDATE ItemTypes SET ClassName = '' WHERE ItemType = 30;
-
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-bulletin.view', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-bulletin:inbulletin_general.view', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-bulletin:inbulletin_general.edit', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-bulletin:configuration_output.view', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-bulletin:configuration_output.edit', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-bulletin:configuration_search.view', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-bulletin:configuration_search.edit', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-bulletin:configuration_censorship.view', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-bulletin:configuration_censorship.add', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-bulletin:configuration_censorship.edit', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-bulletin:configuration_emoticon.view', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-bulletin:configuration_emoticon.add', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-bulletin:configuration_emoticon.edit', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-bulletin:configuration_email.view', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-bulletin:configuration_email.edit', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-bulletin:configuration_custom.view', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-bulletin:configuration_custom.add', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-bulletin:configuration_custom.edit', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-bulletin:configuration_custom.delete', 11, 1, 1, 0);
-
-UPDATE ConfigurationAdmin SET ValueList = 'TopicText=la_Topic_Text,Posts=la_Number_of_Posts,CreatedOn=la_CreatedOn,LastPostDate=la_LastUpdate,Views=la_Topic_Views,CachedRating=la_Rating,LastPoser=la_Poster,<SQL>SELECT Prompt AS OptionName, CONCAT("cust_", FieldName) AS OptionValue FROM <PREFIX>CustomField WHERE (Type = 3) AND (IsSystem = 0)</SQL>' WHERE VariableName IN ('Topic_SortField', 'Topic_SortField2');
-
-UPDATE Modules SET Version = '1.2.0' WHERE Name = 'In-Bulletin';
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.2.0.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.2.1.sql
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.2.1.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.2.1.sql (nonexistent)
@@ -1,35 +0,0 @@
-UPDATE ConfigurationAdmin SET VariableName = 'Topic_MinPopVotes', prompt = 'la_fld_Topic_MinPopVotes' WHERE VariableName = 'Topic_MinVotes';
-UPDATE ConfigurationAdmin SET VariableName = 'Topic_MinPopRating', prompt = 'la_fld_Topic_MinPopRating' WHERE VariableName = 'Topic_PostsToPop';
-UPDATE ConfigurationAdmin SET VariableName = 'Topic_MaxHotNumber', prompt = 'la_fld_Topic_MaxHotNumber' WHERE VariableName = 'Topic_VotesToHot';
-
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.01', GroupDisplayOrder = 1 WHERE VariableName = 'Topic_SortField';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.01', GroupDisplayOrder = 2 WHERE VariableName = 'Topic_SortOrder';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.02', GroupDisplayOrder = 1 WHERE VariableName = 'Topic_SortField2';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.02', GroupDisplayOrder = 2 WHERE VariableName = 'Topic_SortOrder2';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.03' WHERE VariableName = 'Perpage_Topics';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.04' WHERE VariableName = 'Perpage_Topics_Short';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.05' WHERE VariableName = 'Topic_NewDays';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.06' WHERE VariableName = 'Topic_MinPopRating';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.07' WHERE VariableName = 'Topic_MinPopVotes';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.08' WHERE VariableName = 'Topic_MaxHotNumber';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.09' WHERE VariableName = 'Topic_EditorPicksAbove';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.10', GroupDisplayOrder = 1 WHERE VariableName = 'topic_ReviewDelay_Value';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.10', GroupDisplayOrder = 2 WHERE VariableName = 'topic_ReviewDelay_Interval';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.11', GroupDisplayOrder = 1 WHERE VariableName = 'topic_RatingDelay_Value';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.11', GroupDisplayOrder = 2 WHERE VariableName = 'topic_RatingDelay_Interval';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.12' WHERE VariableName = 'AutoTopicLockPosts';
-UPDATE ConfigurationAdmin SET DisplayOrder = '20.01' WHERE VariableName = 'Perpage_Postings';
-UPDATE ConfigurationAdmin SET DisplayOrder = '20.02' WHERE VariableName = 'Posts_NewDays';
-UPDATE ConfigurationAdmin SET DisplayOrder = '30.01' WHERE VariableName = 'Perpage_TopicReviews';
-UPDATE ConfigurationAdmin SET DisplayOrder = '40.01' WHERE VariableName = 'bb_CategoryTemplate';
-UPDATE ConfigurationAdmin SET DisplayOrder = '40.02' WHERE VariableName = 'bb_ItemTemplate';
-
-UPDATE ConfigurationValues SET VariableName = 'Topic_MinPopVotes' WHERE VariableName = 'Topic_MinVotes';
-UPDATE ConfigurationValues SET VariableName = 'Topic_MinPopRating' WHERE VariableName = 'Topic_PostsToPop';
-UPDATE ConfigurationValues SET VariableName = 'Topic_MaxHotNumber' WHERE VariableName = 'Topic_VotesToHot';
-
-ALTER TABLE Topic CHANGE Status Status TINYINT(4) UNSIGNED NOT NULL DEFAULT '2';
-
-INSERT INTO CustomField (Type, FieldName, FieldLabel, Heading, Prompt, ElementType, ValueList, DisplayOrder, OnGeneralTab, IsSystem) VALUES (1, 'bb_ItemTemplate', 'bb_ItemTemplate', 'la_title_SystemCF', 'bb_ItemTemplate', 'text', NULL, 0, 0, 1);
-
-UPDATE Modules SET Version = '1.2.1' WHERE Name = 'In-Bulletin';
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.2.1.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v4.0.1.sql
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v4.0.1.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v4.0.1.sql (nonexistent)
@@ -1 +0,0 @@
-UPDATE Modules SET Version = '4.0.1' WHERE Name = 'In-Bulletin';
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v4.0.1.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/changelog_4_1_0.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/changelog_4_1_0.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/changelog_4_1_0.txt (nonexistent)
@@ -1,12 +0,0 @@
-File in-bulletin/in-bulletin/frontaction.php changed
-File in-bulletin/in-bulletin/privatemessage.php changed
-File in-bulletin/in-bulletin/topic.php changed
-File in-bulletin/in-bulletin/admin/install/inportal_data.sql changed
-File in-bulletin/in-bulletin/admin/install/inportal_schema.sql changed
-File in-bulletin/in-bulletin/admin/install/upgrades/changelog_4_0_1.txt changed
-File in-bulletin/in-bulletin/admin/install/upgrades/changelog_4_1_0.txt is new; release_4_1_0 revision 1.1.2.6
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v4.1.0.sql is new; release_4_1_0 revision 1.1.2.1
-File in-bulletin/in-bulletin/admin/install/upgrades/readme_4_1_0.txt is new; release_4_1_0 revision 1.1.2.4
-File in-bulletin/in-bulletin/admin/templates/post_element.tpl changed
-File in-bulletin/in-bulletin/units/topics/topics_config.php changed
-File in-bulletin/in-bulletin/units/topics/topics_event_handler.php changed
Property changes on: trunk/in-bulletin/admin/install/upgrades/changelog_4_1_0.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/changelog_1_3_0.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/changelog_1_3_0.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/changelog_1_3_0.txt (nonexistent)
@@ -1,10 +0,0 @@
-File in-bulletin/in-bulletin/admin/install/inportal_data.sql changed
-File in-bulletin/in-bulletin/admin/install/upgrades/changelog_1_3_0.txt is new; release_1_3_0 revision 1.1.2.12
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.3.0.sql is new; release_1_3_0 revision 1.1.2.1
-File in-bulletin/in-bulletin/admin_templates/catalog_tab.tpl changed
-File in-bulletin/in-bulletin/admin_templates/topics/images_edit.tpl changed
-File in-bulletin/in-bulletin/admin_templates/topics/relations_edit.tpl changed
-File in-bulletin/in-bulletin/admin_templates/topics/topics_custom.tpl changed
-File in-bulletin/in-bulletin/admin_templates/topics/topics_edit.tpl changed
-File in-bulletin/in-bulletin/admin_templates/topics/topics_images.tpl changed
-File in-bulletin/in-bulletin/units/topics/topics_config.php changed
Property changes on: trunk/in-bulletin/admin/install/upgrades/changelog_1_3_0.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/changelog_1_2_2.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/changelog_1_2_2.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/changelog_1_2_2.txt (nonexistent)
@@ -1,7 +0,0 @@
-File in-bulletin/in-bulletin/admin/install/inportal_data.sql changed
-File in-bulletin/in-bulletin/admin/install/upgrades/changelog_1_2_2.txt is new; release_1_2_2 revision 1.1.2.4
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.2.2.sql is new; release_1_2_2 revision 1.1.2.1
-File in-bulletin/in-bulletin/admin/install/upgrades/readme_1_2_2.txt is new; release_1_2_2 revision 1.1.2.1
-File in-bulletin/in-bulletin/admin_templates/catalog_tab.tpl changed
-File in-bulletin/in-bulletin/units/topics/topics_config.php changed
-File in-bulletin/in-bulletin/units/topics/topics_tag_processor.php changed
Property changes on: trunk/in-bulletin/admin/install/upgrades/changelog_1_2_2.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/changelog_1_0_6.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/changelog_1_0_6.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/changelog_1_0_6.txt (nonexistent)
@@ -1,33 +0,0 @@
-File in-bulletin/in-bulletin/action.php changed
-File in-bulletin/in-bulletin/frontaction.php changed
-File in-bulletin/in-bulletin/parser.php changed
-File in-bulletin/in-bulletin/posting.php changed
-File in-bulletin/in-bulletin/topic.php changed
-File in-bulletin/in-bulletin/admin/addcensor_word.php changed
-File in-bulletin/in-bulletin/admin/addemoticon.php changed
-File in-bulletin/in-bulletin/admin/addimage.php changed
-File in-bulletin/in-bulletin/admin/addrelation.php changed
-File in-bulletin/in-bulletin/admin/addreview.php changed
-File in-bulletin/in-bulletin/admin/addtopic.php changed
-File in-bulletin/in-bulletin/admin/addtopic_category.php changed
-File in-bulletin/in-bulletin/admin/addtopic_custom.php changed
-File in-bulletin/in-bulletin/admin/addtopic_images.php changed
-File in-bulletin/in-bulletin/admin/addtopic_relations.php changed
-File in-bulletin/in-bulletin/admin/addtopic_reviews.php changed
-File in-bulletin/in-bulletin/admin/censor_config.php changed
-File in-bulletin/in-bulletin/admin/config_general.php changed
-File in-bulletin/in-bulletin/admin/emoticon_config.php changed
-File in-bulletin/in-bulletin/admin/install.php changed
-File in-bulletin/in-bulletin/admin/item_select.php changed
-File in-bulletin/in-bulletin/admin/images/icon46_phpbb.gif is new
-File in-bulletin/in-bulletin/admin/import/phpbb_import.php is new
-File in-bulletin/in-bulletin/admin/include/navmenu.php changed
-File in-bulletin/in-bulletin/admin/include/parser.php changed
-File in-bulletin/in-bulletin/admin/include/help/phpbb.txt is new
-File in-bulletin/in-bulletin/admin/include/toolbar/browse.php changed
-File in-bulletin/in-bulletin/admin/install/inportal_data.sql changed
-File in-bulletin/in-bulletin/admin/install/inportal_schema.sql changed
-File in-bulletin/in-bulletin/admin/install/upgrades/changelog_1_0_6.txt is new
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.6.sql is new
-File in-bulletin/in-bulletin/admin/install/upgrades/readme_1_0_6.txt is new
-File in-bulletin/themes/default/inbulletin/post_list.tpl changed
Property changes on: trunk/in-bulletin/admin/install/upgrades/changelog_1_0_6.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/changelog_1_0_7.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/changelog_1_0_7.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/changelog_1_0_7.txt (nonexistent)
@@ -1,57 +0,0 @@
-File in-bulletin/in-bulletin/action.php changed
-File in-bulletin/in-bulletin/bbcat.php is new
-File in-bulletin/in-bulletin/emoticon.php changed
-File in-bulletin/in-bulletin/frontaction.php changed
-File in-bulletin/in-bulletin/module_init.php changed
-File in-bulletin/in-bulletin/parser.php changed
-File in-bulletin/in-bulletin/posting.php changed
-File in-bulletin/in-bulletin/privatemessage.php changed
-File in-bulletin/in-bulletin/topic.php changed
-File in-bulletin/in-bulletin/admin/addcensor_word.php changed
-File in-bulletin/in-bulletin/admin/addemoticon.php changed
-File in-bulletin/in-bulletin/admin/addimage.php changed
-File in-bulletin/in-bulletin/admin/addrelation.php changed
-File in-bulletin/in-bulletin/admin/addreview.php changed
-File in-bulletin/in-bulletin/admin/addtopic.php changed
-File in-bulletin/in-bulletin/admin/addtopic_custom.php changed
-File in-bulletin/in-bulletin/admin/addtopic_reviews.php changed
-File in-bulletin/in-bulletin/admin/advanced_view.php changed
-File in-bulletin/in-bulletin/admin/install.php changed
-File in-bulletin/in-bulletin/admin/import/phpbb_import.php changed
-File in-bulletin/in-bulletin/admin/include/toolbar/browse.php changed
-File in-bulletin/in-bulletin/admin/install/inportal_data.sql changed
-File in-bulletin/in-bulletin/admin/install/inportal_schema.sql changed
-File in-bulletin/in-bulletin/admin/install/upgrades/changelog_1_0_7.txt is new
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.7.sql is new
-File in-bulletin/in-bulletin/admin/install/upgrades/readme_1_0_7.txt is new
-File in-bulletin/themes/default/inbulletin/main.tpl changed
-File in-bulletin/themes/default/inbulletin/pick.tpl is new
-File in-bulletin/themes/default/inbulletin/pm_list.tpl is new
-File in-bulletin/themes/default/inbulletin/post_list.tpl changed
-File in-bulletin/themes/default/inbulletin/img/ic_pm_list.gif is new
-File in-bulletin/themes/default/inbulletin/img/ic_pm_list46.gif is new
-File in-bulletin/themes/default/inbulletin/index/catview.tpl changed
-File in-bulletin/themes/default/inbulletin/index/catview/cat_tree_element.tpl changed
-File in-bulletin/themes/default/inbulletin/index/catview/cat_tree_element_first.tpl changed
-File in-bulletin/themes/default/inbulletin/index/catview/cat_tree_subcat.tpl changed
-File in-bulletin/themes/default/inbulletin/index/right/actionbox.tpl changed
-File in-bulletin/themes/default/inbulletin/main/main_element.tpl changed
-File in-bulletin/themes/default/inbulletin/main/main_element_last.tpl changed
-File in-bulletin/themes/default/inbulletin/my_preferences/preferences_form.tpl changed
-File in-bulletin/themes/default/inbulletin/pick/topic_element.tpl is new
-File in-bulletin/themes/default/inbulletin/pick/topics.tpl is new
-File in-bulletin/themes/default/inbulletin/pm_list/new_pm.tpl is new
-File in-bulletin/themes/default/inbulletin/pm_list/new_pm_confirm.tpl is new
-File in-bulletin/themes/default/inbulletin/pm_list/new_pm_form.tpl is new
-File in-bulletin/themes/default/inbulletin/pm_list/no_pms.tpl is new
-File in-bulletin/themes/default/inbulletin/pm_list/pm_element.tpl is new
-File in-bulletin/themes/default/inbulletin/pm_list/pm_element_last.tpl is new
-File in-bulletin/themes/default/inbulletin/pm_list/pm_view.tpl is new
-File in-bulletin/themes/default/inbulletin/pm_list/pms.tpl is new
-File in-bulletin/themes/default/inbulletin/post_list/post_element_first.tpl is new
-File in-bulletin/themes/default/inbulletin/post_list/post_element_quote.tpl changed
-File in-bulletin/themes/default/inbulletin/search_results/item_results.tpl changed
-File in-bulletin/themes/default/inbulletin/topic_list/no_topics.tpl changed
-File in-bulletin/themes/default/inbulletin/topic_list/topics.tpl changed
-File in-bulletin/themes/default/inbulletin/topic_list/topics/element.tpl changed
-File in-bulletin/themes/default/inbulletin/topic_list/topics/element_last.tpl changed
Property changes on: trunk/in-bulletin/admin/install/upgrades/changelog_1_0_7.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/changelog_1_1_4.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/changelog_1_1_4.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/changelog_1_1_4.txt (nonexistent)
@@ -1,34 +0,0 @@
-File in-bulletin/in-bulletin/frontaction.php changed
-File in-bulletin/in-bulletin/parser.php changed
-File in-bulletin/in-bulletin/posting.php changed
-File in-bulletin/in-bulletin/topic.php changed
-File in-bulletin/in-bulletin/admin/addtopic_reviews.php changed
-File in-bulletin/in-bulletin/admin/browse.php changed
-File in-bulletin/in-bulletin/admin/import/phpbb_import.php changed
-File in-bulletin/in-bulletin/admin/install/inportal_data.sql changed
-File in-bulletin/in-bulletin/admin/install/inportal_schema.sql changed
-File in-bulletin/in-bulletin/admin/install/langpacks/english.lang changed
-File in-bulletin/in-bulletin/admin/install/upgrades/changelog_1_1_4.txt is new; release_1_1_4 revision 1.11
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.4.sql is new; release_1_1_4 revision 1.2
-File in-bulletin/in-bulletin/admin/install/upgrades/readme_1_1_4.txt is new; release_1_1_4 revision 1.1
-File in-bulletin/in-bulletin/units/topics/topics_config.php changed
-File in-bulletin/themes/default/inbulletin/favorites_element.tpl changed
-File in-bulletin/themes/default/inbulletin/myitems_element.tpl changed
-File in-bulletin/themes/default/inbulletin/main/favorites_element.tpl changed
-File in-bulletin/themes/default/inbulletin/main/main_element.tpl changed
-File in-bulletin/themes/default/inbulletin/main/main_element_last.tpl changed
-File in-bulletin/themes/default/inbulletin/my_items/myitems_element.tpl changed
-File in-bulletin/themes/default/inbulletin/pick/topic_element.tpl changed
-File in-bulletin/themes/default/inbulletin/pm_list/pm_view.tpl changed
-File in-bulletin/themes/default/inbulletin/post_list/post_element.tpl changed
-File in-bulletin/themes/default/inbulletin/post_list/post_element_alt.tpl changed
-File in-bulletin/themes/default/inbulletin/post_list/post_element_first.tpl changed
-File in-bulletin/themes/default/inbulletin/post_list/post_element_last.tpl changed
-File in-bulletin/themes/default/inbulletin/post_list/post_element_last_alt.tpl changed
-File in-bulletin/themes/default/inbulletin/post_list/post_element_quote.tpl changed
-File in-bulletin/themes/default/inbulletin/post_list_threaded/post_thread.tpl changed
-File in-bulletin/themes/default/inbulletin/post_list_threaded/post_thread_alt.tpl changed
-File in-bulletin/themes/default/inbulletin/post_list_threaded/post_thread_current.tpl changed
-File in-bulletin/themes/default/inbulletin/search_results/search_results_element.tpl changed
-File in-bulletin/themes/default/inbulletin/topic_list/topics/element.tpl changed
-File in-bulletin/themes/default/inbulletin/topic_list/topics/element_last.tpl changed
Property changes on: trunk/in-bulletin/admin/install/upgrades/changelog_1_1_4.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.12
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/changelog_1_1_5.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/changelog_1_1_5.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/changelog_1_1_5.txt (nonexistent)
@@ -1,16 +0,0 @@
-File in-bulletin/in-bulletin/action.php changed
-File in-bulletin/in-bulletin/frontaction.php changed
-File in-bulletin/in-bulletin/module_init.php changed
-File in-bulletin/in-bulletin/parser.php changed
-File in-bulletin/in-bulletin/posting.php changed
-File in-bulletin/in-bulletin/topic.php changed
-File in-bulletin/in-bulletin/admin/addreview.php changed
-File in-bulletin/in-bulletin/admin/include/toolbar/edittopic_reviews.php changed
-File in-bulletin/in-bulletin/admin/install/inportal_data.sql changed
-File in-bulletin/in-bulletin/admin/install/langpacks/english.lang changed
-File in-bulletin/in-bulletin/admin/install/upgrades/changelog_1_1_5.txt is new; release_1_1_5 revision 1.1.2.9
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.5.sql is new; release_1_1_5 revision 1.1
-File in-bulletin/in-bulletin/admin/install/upgrades/readme_1_1_5.txt is new; release_1_1_5 revision 1.1.2.1
-File in-bulletin/in-bulletin/units/topics/topics_config.php changed
-File in-bulletin/in-bulletin/units/topics/topics_event_handler.php changed
-File in-bulletin/in-bulletin/units/topics/topics_tag_processor.php is new; release_1_1_5 revision 1.2
Property changes on: trunk/in-bulletin/admin/install/upgrades/changelog_1_1_5.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.10.sql
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.10.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.10.sql (nonexistent)
@@ -1 +0,0 @@
-UPDATE Modules SET Version = '1.0.10' WHERE Name = 'In-Bulletin';
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.10.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.11.sql
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.11.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.11.sql (nonexistent)
@@ -1,9 +0,0 @@
-ALTER TABLE Topic DROP INDEX ResourceId, ADD UNIQUE ResourceId (ResourceId);
-
-UPDATE ConfigurationValues SET VariableName = 'Topic_SortField' WHERE VariableName = 'Topics_Sortfield' LIMIT 1;
-UPDATE ConfigurationValues SET VariableName = 'Topic_SortField2' WHERE VariableName = 'Topics_Sortfield2' LIMIT 1;
-
-UPDATE ConfigurationValues SET VariableName = 'Topic_SortOrder' WHERE VariableName = 'Topics_SortOrder' LIMIT 1;
-UPDATE ConfigurationValues SET VariableName = 'Topic_SortOrder2' WHERE VariableName = 'Topics_SortOrder2' LIMIT 1;
-
-UPDATE Modules SET Version = '1.0.11' WHERE Name = 'In-Bulletin';
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.11.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.2.1.php
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.2.1.php (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.2.1.php (nonexistent)
@@ -1,20 +0,0 @@
-<?php
- linkCustomFields('In-Bulletin', 'bb', 2);
-
- linkCustomFields('KERNEL', 'c', 1);
-
- $query = 'REPLACE INTO '.TABLE_PREFIX.'CategoryItems (CategoryId, ItemResourceid, Primarycat, ItemPrefix, Filename)
- SELECT
- ci.CategoryId,
- ci.ItemResourceId,
- ci.PrimaryCat,
- \'bb\' AS ItemPrefix,
- i.Filename as Filename
- FROM `'.TABLE_PREFIX.'Topic` as i
- LEFT JOIN '.TABLE_PREFIX.'CategoryItems as ci
- ON ci.ItemResourceId = i.ResourceId;';
-
- $application->Conn->Query($query);
-
- moveItemTemplatesToCustom('In-Bulletin', 'bb');
-?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.2.1.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.2.php
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.2.php (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.2.php (nonexistent)
@@ -1,25 +0,0 @@
-<?php
-
- $module_prefix = 'bb';
- $table_prefix = GetTablePrefix();
- $inst_ado =& inst_GetADODBConnection();
-
- $modules_list = GetModuleArray();
- $path = $pathtoroot.$modules_list[$module_prefix].'admin/include/parser.php';
- if ( file_exists($path) ) include_once($path);
-
- $module_info = bb_GetModuleInfo('filenames');
- $sql = 'SELECT '.$module_info['title_field'].', '.$module_info['id_field'].' FROM '.$table_prefix.$module_info['table'];
- $items_rs = $inst_ado->Execute($sql);
- while(!$items_rs->EOF)
- {
- $module_info['item_id'] = $items_rs->fields[ $module_info['id_field'] ];
- $filename = StripDisallowed($items_rs->fields[ $module_info['title_field'] ], $module_info);
- $sql = 'UPDATE '.$table_prefix.$module_info['table'].'
- SET AutomaticFilename = 1, Filename = '.$inst_ado->qstr($filename).'
- WHERE '.$module_info['id_field'].' = '.$module_info['item_id'];
- $inst_ado->Execute($sql);
- $items_rs->MoveNext();
- }
-
-?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.2.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.1.sql
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.1.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.1.sql (nonexistent)
@@ -1,20 +0,0 @@
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('TOPIC.VIEW', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('TOPIC.ADD', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('TOPIC.ADD.PENDING', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('TOPIC.DELETE', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('TOPIC.MODIFY', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('TOPIC.REPLY.DELETE', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('TOPIC.REPLY.VIEW', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('TOPIC.REPLY.ADD', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('TOPIC.REPLY.MODIFY', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('TOPIC.RATE', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('TOPIC.REVIEW', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('TOPIC.REPLY.OWNER.MODIFY', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('TOPIC.REPLY.OWNER.DELETE', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('TOPIC.OWNER.DELETE', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('TOPIC.MODIFY.PENDING', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('TOPIC.OWNER.MODIFY.PENDING', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('TOPIC.OWNER.MODIFY', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('TOPIC.LOCK', -1, 0, 0, 0);
-
-UPDATE Modules SET Version = '1.1.1' WHERE Name = 'In-Bulletin';
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.1.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.2.sql
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.2.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.2.sql (nonexistent)
@@ -1 +0,0 @@
-UPDATE Modules SET Version = '1.0.2' WHERE Name = 'In-Bulletin';
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.2.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.3.sql
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.3.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.3.sql (nonexistent)
@@ -1,3 +0,0 @@
-ALTER TABLE Topic ADD LastPostDate INT(11);
-
-UPDATE Modules SET Version = '1.0.3' WHERE Name = 'In-Bulletin';
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.3.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.0.sql
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.0.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.0.sql (nonexistent)
@@ -1 +0,0 @@
-UPDATE Modules SET Version = '1.1.0' WHERE Name = 'In-Bulletin';
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.0.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/readme_4_2_0.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/readme_4_2_0.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/readme_4_2_0.txt (nonexistent)
@@ -1,8 +0,0 @@
-Readme notes for In-bulletin 4.2.0
-Intechnic Corporation, July 26, 2007
-
-Fixes:
-
-
-
-Please refer to the release notes for In-portal Platform 4.2.0 for more information.
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/readme_4_2_0.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/readme_4_1_0.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/readme_4_1_0.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/readme_4_1_0.txt (nonexistent)
@@ -1,11 +0,0 @@
-Readme notes for In-bulletin 4.1.0
-Intechnic Corporation, May 23, 2007
-
-Fixes:
-
-- Listing of Private Messages
-
-
-****** MySQL 5 database server is fully supported starting with this release ******
-
-Please refer to the release notes for In-portal Platform 4.1.0 for more information.
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/readme_4_1_0.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/readme_4_0_1.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/readme_4_0_1.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/readme_4_0_1.txt (nonexistent)
@@ -1,6 +0,0 @@
-Readme notes for In-bulletin 4.0.1
-Intechnic Corporation, Apr 5, 2007
-
-
-This is a maintenance release of In-bulletin.
-Please refer to the release notes for In-portal Platform 4.0.1 for more information.
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/readme_4_0_1.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/readme_1_3_0.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/readme_1_3_0.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/readme_1_3_0.txt (nonexistent)
@@ -1,5 +0,0 @@
-Readme notes for In-bulletin 1.3.0
-Intechnic Corporation, Feb 23, 2007
-
-
-This release is a maintenance release. Please refer to the release notes for In-portal Platform 1.4.0 for more information.
Property changes on: trunk/in-bulletin/admin/install/upgrades/readme_1_3_0.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/readme_1_0_5.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/readme_1_0_5.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/readme_1_0_5.txt (nonexistent)
@@ -1,2 +0,0 @@
-In-bulletin fixes:
-Smiley shortcuts
Property changes on: trunk/in-bulletin/admin/install/upgrades/readme_1_0_5.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/readme_1_0_6.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/readme_1_0_6.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/readme_1_0_6.txt (nonexistent)
@@ -1,12 +0,0 @@
-Readme for In-bulletin 1.0.6
-
-New features:
-- phpBB 2.x import
-
-Bug fixes:
-- Topic listings (sorting, locking)
-- View counter
-- Permissions
-
-
-
Property changes on: trunk/in-bulletin/admin/install/upgrades/readme_1_0_6.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/readme_1_0_7.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/readme_1_0_7.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/readme_1_0_7.txt (nonexistent)
@@ -1,12 +0,0 @@
-Readme for In-bulletin 1.0.7
-Intechnic Corporation, January 06, 2005
-
-New features:
-- Private Message mechanism
-
-Bug fixes:
-- Post counters
-- BBcode within posts
-- Forum flags (locked, contains new posts)
-
-
Property changes on: trunk/in-bulletin/admin/install/upgrades/readme_1_0_7.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/readme_1_0_9.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/readme_1_0_9.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/readme_1_0_9.txt (nonexistent)
@@ -1,14 +0,0 @@
-Readme for In-bulletin 1.0.9
-Intechnic Corporation, April 14, 2005
-
-New features:
-- Hot & Top topics (tags)
- Added tags that could display hot and top topics
-- New since last visit
- Added a section showing the topics that have been added since a user logged in last time
-- Editor's pick separate template
- A separate template for Editor's Pick topics (sticky topics) that allows for a different design.
-
-Bug fixes:
-- Post edit (missing subject)
-
Property changes on: trunk/in-bulletin/admin/install/upgrades/readme_1_0_9.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/readme_1_1_0.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/readme_1_1_0.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/readme_1_1_0.txt (nonexistent)
@@ -1,16 +0,0 @@
-Readme notes for In-portal Platform 1.1.0
-Intechnic Corporation, August 25, 2005
-
-New Features:
-
-Intechnic Corporation is pleased to announce the release of the next
-generation of In-portal Platform – version 1.1.0. The new Platform
-supports a more robust and easier to modify system of templates,
-combined with a new style sheet manager in the Administrative Console.
-The new Platform also features improved performance and enhanced ability of
-interaction between the modules.
-
-Please BACK UP all of your files and databases before upgrading.
-Refer to our the upgrade instructions on our support forum
-for more details:
-http://support.intechnic.com/forum/index.php?env=-inbulletin/post_list:m38-1-1-1:bb3620-0-1-1-1-0-1
Property changes on: trunk/in-bulletin/admin/install/upgrades/readme_1_1_0.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/readme_1_2_2.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/readme_1_2_2.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/readme_1_2_2.txt (nonexistent)
@@ -1,5 +0,0 @@
-Readme notes for In-bulletin 1.2.2
-Intechnic Corporation, Nov 10, 2006
-
-
-This release is a maintenance release. Please refer to the release notes for In-portal Platform 1.3.1 for more information.
Property changes on: trunk/in-bulletin/admin/install/upgrades/readme_1_2_2.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/readme_1_2_1.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/readme_1_2_1.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/readme_1_2_1.txt (nonexistent)
@@ -1,5 +0,0 @@
-Readme notes for In-bulletin 1.2.1
-Intechnic Corporation, July 25, 2006
-
-This release is necessary to support the new features introduced in In-portal Platform 1.2.1 (such as Section Permissions in the Administrative Console).
-Please refer to the release notes for In-portal Platform 1.2.1 for more information.
Property changes on: trunk/in-bulletin/admin/install/upgrades/readme_1_2_1.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/readme_1_2_0.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/readme_1_2_0.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/readme_1_2_0.txt (nonexistent)
@@ -1,8 +0,0 @@
-Readme notes for In-bulletin 1.2.0
-Intechnic Corporation, July 4, 2006
-
-This release is necessary to support the new features introduced in In-portal Platform 1.2.0 (such as Section Permissions in the Administrative Console).
-Please refer to the release notes for In-portal Platform 1.2.0 for more information.
-
-Bug fixes:
- - The ability to send private messages has been disabled for Guest users
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/readme_1_2_0.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/readme_1_1_6.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/readme_1_1_6.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/readme_1_1_6.txt (nonexistent)
@@ -1,5 +0,0 @@
-Readme notes for In-bulletin 1.1.6
-Intechnic Corporation, May 4, 2006
-
-This is a maintenance release to support new features introduced in In-portal Platform 1.1.8 such as Category and Item Templates and custom field mechanism refactoring.
-Please refer to the release notes for In-portal Platform 1.1.8
Property changes on: trunk/in-bulletin/admin/install/upgrades/readme_1_1_6.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/readme_1_1_5.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/readme_1_1_5.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/readme_1_1_5.txt (nonexistent)
@@ -1,4 +0,0 @@
-Readme notes for In-bulletin 1.1.5
-Intechnic Corporation, April 4, 2006
-
-Please refer to release notes for In-portal Platform 1.1.7.
Property changes on: trunk/in-bulletin/admin/install/upgrades/readme_1_1_5.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/readme_1_1_4.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/readme_1_1_4.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/readme_1_1_4.txt (nonexistent)
@@ -1,7 +0,0 @@
-Readme notes for In-bulletin 1.1.4
-Intechnic Corporation, February 28, 2006
-
-Bug fixes:
- - Minor performance improvment when using mod_rewrite
- - phpBB import fixed
-
Property changes on: trunk/in-bulletin/admin/install/upgrades/readme_1_1_4.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/readme_1_1_3.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/readme_1_1_3.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/readme_1_1_3.txt (nonexistent)
@@ -1,5 +0,0 @@
-Readme notes for In-bulletin 1.1.3
-Intechnic Corporation, January 10, 2006
-
-Bug fixes:
- - Various pagionation fixes for categories, relations, images and reviews
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/readme_1_1_3.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/readme_1_1_2.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/readme_1_1_2.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/readme_1_1_2.txt (nonexistent)
@@ -1,17 +0,0 @@
-Readme notes for In-bulletin 1.1.2
-Intechnic Corporation, December 23, 2005
-
-This release has been solely focused on integrating In-portal with mod_rewrite.
-The integration allows In-portal to generate and parse meaningful,
-friendly URLs with no query string. Please consult the product manual
-section 4.2.12. "URLs Structure & Mod_Rewrite" for more information.
-A number of bug-fixes have also been included in this release.
-
-IMPORTANT:
-Upgrade Notes
-
-After upgrading to this version, please open Administrative Console,
-Structure & Data -> Catalog section and click
-the 'Rebuild Category Cache' button (an icon with a folder and blue arrows between Approve and Cut icons).
-Then go to Configuration -> Themes and click 'Rescan Themes' button (the last one in the toolbar).
-These operations are critical before enabling mod_rewrite functionality.
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/readme_1_1_2.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/readme_1_1_1.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/readme_1_1_1.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/readme_1_1_1.txt (nonexistent)
@@ -1,7 +0,0 @@
-Readme notes for In-bulletin 1.1.1
-Intechnic Corporation, November 1, 2005
-
-Bug Fixes:
-
-- Fixed private messages template
-- Fixed Add Friend functionality
Property changes on: trunk/in-bulletin/admin/install/upgrades/readme_1_1_1.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/changelog_4_0_1.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/changelog_4_0_1.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/changelog_4_0_1.txt (nonexistent)
@@ -1,4 +0,0 @@
-File in-bulletin/in-bulletin/admin/install/inportal_data.sql changed
-File in-bulletin/in-bulletin/admin/install/upgrades/changelog_1_3_0.txt changed
-File in-bulletin/in-bulletin/admin/install/upgrades/changelog_4_0_1.txt is new; release_4_0_1 revision 1.1.2.4
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v4.0.1.sql is new; release_4_0_1 revision 1.1.2.1
Property changes on: trunk/in-bulletin/admin/install/upgrades/changelog_4_0_1.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/changelog_1_0_5.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/changelog_1_0_5.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/changelog_1_0_5.txt (nonexistent)
@@ -1,41 +0,0 @@
-File in-bulletin/in-bulletin/action.php changed
-File in-bulletin/in-bulletin/searchaction.php changed
-File in-bulletin/in-bulletin/topic.php changed
-File in-bulletin/in-bulletin/admin/addtopic.php changed
-File in-bulletin/in-bulletin/admin/addtopic_category.php changed
-File in-bulletin/in-bulletin/admin/addtopic_custom.php changed
-File in-bulletin/in-bulletin/admin/addtopic_images.php changed
-File in-bulletin/in-bulletin/admin/addtopic_relations.php changed
-File in-bulletin/in-bulletin/admin/addtopic_reviews.php changed
-File in-bulletin/in-bulletin/admin/advanced_view.php is new
-File in-bulletin/in-bulletin/admin/browse.php changed
-File in-bulletin/in-bulletin/admin/install.php changed
-File in-bulletin/in-bulletin/admin/include/parser.php changed
-File in-bulletin/in-bulletin/admin/include/help/edittopic_category.txt changed
-File in-bulletin/in-bulletin/admin/include/summary/site.php changed
-File in-bulletin/in-bulletin/admin/include/toolbar/advanced_view.php is new
-File in-bulletin/in-bulletin/admin/install/inportal_data.sql changed
-File in-bulletin/in-bulletin/admin/install/upgrades/changelog_1_0_5.txt is new
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.5.sql is new
-File in-bulletin/in-bulletin/admin/install/upgrades/readme_1_0_5.txt is new
-File in-bulletin/in-bulletin/images/emoticons/0_1.gif changed
-File in-bulletin/in-bulletin/images/emoticons/0_10.gif changed
-File in-bulletin/in-bulletin/images/emoticons/0_11.gif changed
-File in-bulletin/in-bulletin/images/emoticons/0_12.gif changed
-File in-bulletin/in-bulletin/images/emoticons/0_13.gif changed
-File in-bulletin/in-bulletin/images/emoticons/0_14.gif changed
-File in-bulletin/in-bulletin/images/emoticons/0_15.gif changed
-File in-bulletin/in-bulletin/images/emoticons/0_16.gif changed
-File in-bulletin/in-bulletin/images/emoticons/0_17.gif changed
-File in-bulletin/in-bulletin/images/emoticons/0_18.gif changed
-File in-bulletin/in-bulletin/images/emoticons/0_19.gif changed
-File in-bulletin/in-bulletin/images/emoticons/0_2.gif changed
-File in-bulletin/in-bulletin/images/emoticons/0_20.gif changed
-File in-bulletin/in-bulletin/images/emoticons/0_21.gif changed
-File in-bulletin/in-bulletin/images/emoticons/0_3.gif changed
-File in-bulletin/in-bulletin/images/emoticons/0_4.gif changed
-File in-bulletin/in-bulletin/images/emoticons/0_5.gif changed
-File in-bulletin/in-bulletin/images/emoticons/0_6.gif changed
-File in-bulletin/in-bulletin/images/emoticons/0_7.gif changed
-File in-bulletin/in-bulletin/images/emoticons/0_8.gif changed
-File in-bulletin/in-bulletin/images/emoticons/0_9.gif changed
Property changes on: trunk/in-bulletin/admin/install/upgrades/changelog_1_0_5.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/changelog_1_1_2.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/changelog_1_1_2.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/changelog_1_1_2.txt (nonexistent)
@@ -1,30 +0,0 @@
-File in-bulletin/in-bulletin/action.php changed
-File in-bulletin/in-bulletin/bbcat.php changed
-File in-bulletin/in-bulletin/frontaction.php changed
-File in-bulletin/in-bulletin/in-bulletin_config.php changed
-File in-bulletin/in-bulletin/parser.php changed
-File in-bulletin/in-bulletin/posting.php changed
-File in-bulletin/in-bulletin/privatemessage.php changed
-File in-bulletin/in-bulletin/topic.php changed
-File in-bulletin/in-bulletin/admin/addtopic.php changed
-File in-bulletin/in-bulletin/admin/addtopic_category.php changed
-File in-bulletin/in-bulletin/admin/addtopic_images.php changed
-File in-bulletin/in-bulletin/admin/install.php changed
-File in-bulletin/in-bulletin/admin/images/tool_forum_new_censor.gif changed
-File in-bulletin/in-bulletin/admin/import/phpbb_import.php changed
-File in-bulletin/in-bulletin/admin/include/parser.php changed
-File in-bulletin/in-bulletin/admin/install/inportal_data.sql changed
-File in-bulletin/in-bulletin/admin/install/inportal_schema.sql changed
-File in-bulletin/in-bulletin/admin/install/prerequisit.php changed
-File in-bulletin/in-bulletin/admin/install/langpacks/english.lang is new
-File in-bulletin/in-bulletin/admin/install/upgrades/changelog_1_1_2.txt is new
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.2.php is new
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.2.sql is new
-File in-bulletin/in-bulletin/admin/install/upgrades/readme_1_1_2.txt is new
-File in-bulletin/in-bulletin/units/topics/topics_config.php is new
-File in-bulletin/in-bulletin/units/topics/topics_event_handler.php is new
-File in-bulletin/themes/default/inbulletin/post_list_threaded.tpl changed
-File in-bulletin/themes/default/inbulletin/index/sitemap_cat_element.tpl changed
-File in-bulletin/themes/default/inbulletin/index/sitemap_subcat_element.tpl changed
-File in-bulletin/themes/default/inbulletin/main/edpick/topics.tpl changed
-File in-bulletin/themes/default/inbulletin/post_reply/post_reply_form.tpl changed
Property changes on: trunk/in-bulletin/admin/install/upgrades/changelog_1_1_2.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.8
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/changelog_1_1_3.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/changelog_1_1_3.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/changelog_1_1_3.txt (nonexistent)
@@ -1,9 +0,0 @@
-File in-bulletin/in-bulletin/admin/addtopic_category.php changed
-File in-bulletin/in-bulletin/admin/addtopic_images.php changed
-File in-bulletin/in-bulletin/admin/addtopic_relations.php changed
-File in-bulletin/in-bulletin/admin/addtopic_reviews.php changed
-File in-bulletin/in-bulletin/admin/include/toolbar/edittopic_relations.php changed
-File in-bulletin/in-bulletin/admin/install/inportal_data.sql changed
-File in-bulletin/in-bulletin/admin/install/upgrades/changelog_1_1_3.txt is new
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.3.sql is new
-File in-bulletin/in-bulletin/admin/install/upgrades/readme_1_1_3.txt is new
Property changes on: trunk/in-bulletin/admin/install/upgrades/changelog_1_1_3.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/changelog_1_2_0.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/changelog_1_2_0.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/changelog_1_2_0.txt (nonexistent)
@@ -1,45 +0,0 @@
-File in-bulletin/in-bulletin/action.php changed
-File in-bulletin/in-bulletin/frontaction.php changed
-File in-bulletin/in-bulletin/parser.php changed
-File in-bulletin/in-bulletin/admin/addcensor_word.php changed
-File in-bulletin/in-bulletin/admin/addemoticon.php changed
-File in-bulletin/in-bulletin/admin/addimage.php changed
-File in-bulletin/in-bulletin/admin/addreview.php changed
-File in-bulletin/in-bulletin/admin/advanced_view.php changed
-File in-bulletin/in-bulletin/admin/censor_config.php changed
-File in-bulletin/in-bulletin/admin/config_general.php is removed; release_1_1_6 revision 1.6
-File in-bulletin/in-bulletin/admin/emoticon_config.php changed
-File in-bulletin/in-bulletin/admin/install.php changed
-File in-bulletin/in-bulletin/admin/images/icon24_settings_in-bulletin.gif is removed; release_1_1_6 revision 1.1
-File in-bulletin/in-bulletin/admin/images/icon46_list_settings_censor.gif is removed; release_1_1_6 revision 1.1
-File in-bulletin/in-bulletin/admin/images/icon46_list_settings_in-bulletin.gif is removed; release_1_1_6 revision 1.1
-File in-bulletin/in-bulletin/admin/images/icon46_list_settings_smiley.gif is removed; release_1_1_6 revision 1.1
-File in-bulletin/in-bulletin/admin/images/icon46_settings_in-bulletin.gif is removed; release_1_1_6 revision 1.1
-File in-bulletin/in-bulletin/admin/include/toolbar/advanced_view.php changed
-File in-bulletin/in-bulletin/admin/install/inportal_data.sql changed
-File in-bulletin/in-bulletin/admin/install/inportal_schema.sql changed
-File in-bulletin/in-bulletin/admin/install/langpacks/english.lang changed
-File in-bulletin/in-bulletin/admin/install/upgrades/changelog_1_2_0.txt is new; release_1_2_0 revision 1.1.2.9
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.2.0.sql is new; release_1_2_0 revision 1.2.2.2
-File in-bulletin/in-bulletin/admin/install/upgrades/readme_1_2_0.txt is new; release_1_2_0 revision 1.1.2.3
-File in-bulletin/in-bulletin/admin_templates/img/icons/icon24_settings_censor.gif is new; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin_templates/img/icons/icon24_settings_custom.gif is new; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin_templates/img/icons/icon24_settings_email.gif is new; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin_templates/img/icons/icon24_settings_general.gif is new; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin_templates/img/icons/icon24_settings_in-bulletin.gif is new; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin_templates/img/icons/icon24_settings_output.gif is new; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin_templates/img/icons/icon24_settings_search.gif is new; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin_templates/img/icons/icon24_settings_smiley.gif is new; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin_templates/img/icons/icon46_list_settings_censor.gif is new; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin_templates/img/icons/icon46_list_settings_custom.gif is new; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin_templates/img/icons/icon46_list_settings_email.gif is new; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin_templates/img/icons/icon46_list_settings_general.gif is new; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin_templates/img/icons/icon46_list_settings_in-bulletin.gif is new; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin_templates/img/icons/icon46_list_settings_output.gif is new; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin_templates/img/icons/icon46_list_settings_search.gif is new; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin_templates/img/icons/icon46_list_settings_smiley.gif is new; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin_templates/img/icons/icon46_settings_in-bulletin.gif is new; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin_templates/img/itemicons/icon16_topic_pending.gif is new; release_1_2_0 revision 1.2
-File in-bulletin/in-bulletin/units/topics/topics_config.php changed
-File in-bulletin/in-bulletin/units/topics/topics_event_handler.php changed
-File in-bulletin/themes/default/inbulletin/pm_list/new_pm.tpl changed
Property changes on: trunk/in-bulletin/admin/install/upgrades/changelog_1_2_0.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/changelog_1_2_1.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/changelog_1_2_1.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/changelog_1_2_1.txt (nonexistent)
@@ -1,61 +0,0 @@
-File in-bulletin/in-bulletin/parser.php changed
-File in-bulletin/in-bulletin/topic.php changed
-File in-bulletin/in-bulletin/admin/install.php changed
-File in-bulletin/in-bulletin/admin/images/tool_new_topic.gif is removed; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin/images/tool_new_topic_f2.gif is removed; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin/images/tool_new_topic_f3.gif is removed; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin/include/help/configuration_custom.txt is removed; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin/include/help/configuration_email.txt is removed; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin/include/help/edittopic_category.txt is removed; release_1_2_0 revision 1.2
-File in-bulletin/in-bulletin/admin/include/help/edittopic_custom.txt is removed; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin/include/help/edittopic_general.txt is removed; release_1_2_0 revision 1.2
-File in-bulletin/in-bulletin/admin/include/help/edittopic_image.txt is removed; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin/include/help/edittopic_images.txt is removed; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin/include/help/edittopic_relations.txt is removed; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin/include/help/edittopic_review.txt is removed; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin/include/help/edittopic_reviews.txt is removed; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin/include/help/inbulletin_general.txt is removed; release_1_2_0 revision 1.1
-File in-bulletin/in-bulletin/admin/install/inportal_data.sql changed
-File in-bulletin/in-bulletin/admin/install/inportal_schema.sql changed
-File in-bulletin/in-bulletin/admin/install/langpacks/english.lang changed
-File in-bulletin/in-bulletin/admin/install/upgrades/changelog_1_2_1.txt is new; release_1_2_1 revision 1.1.2.6
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.2.1.php is new; release_1_2_1 revision 1.1.2.1
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.2.1.sql is new; release_1_2_1 revision 1.2.2.1
-File in-bulletin/in-bulletin/admin/install/upgrades/readme_1_2_1.txt is new; release_1_2_1 revision 1.1.2.1
-File in-bulletin/in-bulletin/admin_templates/catalog_tab.tpl is new; release_1_2_1 revision 1.4.2.5
-File in-bulletin/in-bulletin/admin_templates/category_properties.tpl is new; release_1_2_1 revision 1.1.2.1
-File in-bulletin/in-bulletin/admin_templates/img/icons/icon46_topics.gif is new; release_1_2_1 revision 1.1.2.1
-File in-bulletin/in-bulletin/admin_templates/img/itemicons/icon16_topic.gif is new; release_1_2_1 revision 1.2
-File in-bulletin/in-bulletin/admin_templates/img/itemicons/icon16_topic_disabled.gif is new; release_1_2_1 revision 1.2
-File in-bulletin/in-bulletin/admin_templates/img/itemicons/icon16_topic_hot.gif is new; release_1_2_1 revision 1.2
-File in-bulletin/in-bulletin/admin_templates/img/itemicons/icon16_topic_new.gif is new; release_1_2_1 revision 1.2
-File in-bulletin/in-bulletin/admin_templates/img/itemicons/icon16_topic_pick.gif is new; release_1_2_1 revision 1.2
-File in-bulletin/in-bulletin/admin_templates/img/itemicons/icon16_topic_pop.gif is new; release_1_2_1 revision 1.1
-File in-bulletin/in-bulletin/admin_templates/img/toolbar/tool_new_topic.gif is new; release_1_2_1 revision 1.1
-File in-bulletin/in-bulletin/admin_templates/img/toolbar/tool_new_topic_f2.gif is new; release_1_2_1 revision 1.1
-File in-bulletin/in-bulletin/admin_templates/img/toolbar/tool_new_topic_f3.gif is new; release_1_2_1 revision 1.1
-File in-bulletin/in-bulletin/admin_templates/topics/images_edit.tpl is new; release_1_2_1 revision 1.1.2.3
-File in-bulletin/in-bulletin/admin_templates/topics/relations_edit.tpl is new; release_1_2_1 revision 1.1.2.4
-File in-bulletin/in-bulletin/admin_templates/topics/review_edit.tpl is new; release_1_2_1 revision 1.1.2.3
-File in-bulletin/in-bulletin/admin_templates/topics/topics_categories.tpl is new; release_1_2_1 revision 1.1.2.6
-File in-bulletin/in-bulletin/admin_templates/topics/topics_custom.tpl is new; release_1_2_1 revision 1.1.2.4
-File in-bulletin/in-bulletin/admin_templates/topics/topics_edit.tpl is new; release_1_2_1 revision 1.1.2.4
-File in-bulletin/in-bulletin/admin_templates/topics/topics_images.tpl is new; release_1_2_1 revision 1.1.2.3
-File in-bulletin/in-bulletin/admin_templates/topics/topics_relations.tpl is new; release_1_2_1 revision 1.1.2.6
-File in-bulletin/in-bulletin/admin_templates/topics/topics_reviews.tpl is new; release_1_2_1 revision 1.1.2.3
-File in-bulletin/in-bulletin/admin_templates/topics/topics_tabs.tpl is new; release_1_2_1 revision 1.1.2.1
-File in-bulletin/in-bulletin/module_help/config_list_general.txt is new; release_1_2_1 revision 1.1.2.1
-File in-bulletin/in-bulletin/module_help/custom_fields_list.txt is new; release_1_2_1 revision 1.1.2.1
-File in-bulletin/in-bulletin/module_help/email_settings_list.txt is new; release_1_2_1 revision 1.1.2.1
-File in-bulletin/in-bulletin/module_help/images_edit.txt is new; release_1_2_1 revision 1.1.2.1
-File in-bulletin/in-bulletin/module_help/relations_edit.txt is new; release_1_2_1 revision 1.1.2.1
-File in-bulletin/in-bulletin/module_help/reviews_edit.txt is new; release_1_2_1 revision 1.1.2.1
-File in-bulletin/in-bulletin/module_help/topics_categories.txt is new; release_1_2_1 revision 1.1.2.1
-File in-bulletin/in-bulletin/module_help/topics_custom.txt is new; release_1_2_1 revision 1.1.2.1
-File in-bulletin/in-bulletin/module_help/topics_edit.txt is new; release_1_2_1 revision 1.1.2.1
-File in-bulletin/in-bulletin/module_help/topics_images.txt is new; release_1_2_1 revision 1.1.2.1
-File in-bulletin/in-bulletin/module_help/topics_relations.txt is new; release_1_2_1 revision 1.1.2.1
-File in-bulletin/in-bulletin/module_help/topics_reviews.txt is new; release_1_2_1 revision 1.1.2.1
-File in-bulletin/in-bulletin/units/topics/topics_config.php changed
-File in-bulletin/in-bulletin/units/topics/topics_event_handler.php changed
-File in-bulletin/themes/default/inbulletin/post_list/post_element.tpl changed
Property changes on: trunk/in-bulletin/admin/install/upgrades/changelog_1_2_1.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.1.php
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.1.php (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.1.php (nonexistent)
@@ -1,9 +0,0 @@
-<?php
- $inst_ado =& inst_GetADODBConnection();
-
- $sql = 'SELECT GroupId FROM '.GetTablePrefix().'PortalGroup WHERE Name = '.$inst_ado->qstr('Everyone');
- $group_id = $inst_ado->GetOne($sql);
-
- $sql = 'UPDATE '.GetTablePrefix().'Permissions SET GroupId = %s WHERE GroupId = -1';
- $inst_ado->Execute( sprintf($sql, $group_id) );
-?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.1.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.9.sql
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.9.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.9.sql (nonexistent)
@@ -1,10 +0,0 @@
-ALTER TABLE Topic DROP INDEX ResourceId, ADD UNIQUE ResourceId (ResourceId);
-
-INSERT INTO ConfigurationAdmin VALUES ('Perpage_TopicReviews', 'la_Text_Reviews', 'la_review_perpage_prompt', 'text', NULL , NULL , '5', '1')
-INSERT INTO ConfigurationValues VALUES ('Perpage_TopicReviews', '10', 'In-Bulletin', 'in-bulletin:configuration_output');
-
-ALTER TABLE Topic CHANGE Views Views DOUBLE( 20, 6 ) DEFAULT '0' NOT NULL;
-
-UPDATE ConfigurationValues SET VariableValue = 3 WHERE VariableName = 'Topic_VotesToHot';
-
-UPDATE Modules SET Version = '1.0.9' WHERE Name = 'In-Bulletin';
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.9.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.7
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.8.sql
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.8.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.8.sql (nonexistent)
@@ -1,3 +0,0 @@
-INSERT INTO ConfigurationValues VALUES ('Search_ShowMultiple_topic', '0', 'In-Portal', '');
-
-UPDATE Modules SET Version = '1.0.8' WHERE Name = 'In-Bulletin';
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.8.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.6.sql
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.6.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.6.sql (nonexistent)
@@ -1,19 +0,0 @@
-UPDATE ConfigurationValues SET ModuleOwner = 'In-Bulletin', Section = 'in-bulletin:configuration_search' WHERE VariableName LIKE 'SearchRel_%_topics' OR VariableName = 'Search_ShowMultiple_topic';
-UPDATE ConfigurationValues SET ModuleOwner = 'In-Bulletin', Section = 'in-bulletin:configuration_search' WHERE VariableName LIKE 'SearchRel_%_posts';
-UPDATE ConfigurationValues SET VariableName = 'Search_ShowMultiple_topics' WHERE VariableName = 'Search_ShowMultiple_topic';
-
-INSERT INTO ConfigurationAdmin VALUES ('SearchRel_Keyword_topics', 'la_config_SearchRel_DefaultKeyword', 'la_text_keyword', 'text', NULL, NULL, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('SearchRel_Pop_topics', 'la_config_DefaultPop', 'la_text_popularity', 'text', NULL, NULL, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('SearchRel_Rating_topics', 'la_config_DefaultRating', 'la_prompt_Rating', 'text', NULL, NULL, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Search_ShowMultiple_topics', 'la_config_ShowMultiple', 'la_Text_MultipleShow', 'text', NULL, NULL, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('SearchRel_Increase_topics', 'la_config_DefaultIncreaseImportance', 'la_text_increase_importance', 'text', NULL, NULL, 0, 1);
-
-CREATE TABLE TopicCustomData (CustomDataId int(11) NOT NULL auto_increment, ResourceId int(10) unsigned NOT NULL default '0', PRIMARY KEY (CustomDataId));
-
-INSERT INTO ConfigurationAdmin VALUES ('bb_CategoryTemplate', 'la_section_Templates', 'la_fld_CategoryTemplate', 'text', '', '', 1, 0);
-INSERT INTO ConfigurationAdmin VALUES ('bb_ItemTemplate', 'la_section_Templates', 'la_fld_ItemTemplate', 'text', '', '', 1, 0);
-
-INSERT INTO ConfigurationValues VALUES ('bb_CategoryTemplate', 'inbulletin/index', 'In-Bulletin', 'in-bulletin:configuration_output');
-INSERT INTO ConfigurationValues VALUES ('bb_ItemTemplate', 'inbulletin/post_list', 'In-Bulletin', 'in-bulletin:configuration_output');
-
-UPDATE Modules SET Version = '1.1.6' WHERE Name = 'In-Bulletin';
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.6.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v4.2.0.sql
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v4.2.0.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v4.2.0.sql (nonexistent)
@@ -1,15 +0,0 @@
-INSERT INTO ConfigurationAdmin VALUES ('bb_MaxImageCount', 'la_section_ImageSettings', 'la_config_MaxImageCount', 'text', '', '', 50.01, 0, 0);
-INSERT INTO ConfigurationAdmin VALUES ('bb_ThumbnailImageWidth', 'la_section_ImageSettings', 'la_config_ThumbnailImageWidth', 'text', '', '', 50.02, 0, 0);
-INSERT INTO ConfigurationAdmin VALUES ('bb_ThumbnailImageHeight', 'la_section_ImageSettings', 'la_config_ThumbnailImageHeight', 'text', '', '', 50.03, 0, 0);
-INSERT INTO ConfigurationAdmin VALUES ('bb_FullImageWidth', 'la_section_ImageSettings', 'la_config_FullImageWidth', 'text', '', '', 50.04, 0, 0);
-INSERT INTO ConfigurationAdmin VALUES ('bb_FullImageHeight', 'la_section_ImageSettings', 'la_config_FullImageHeight', 'text', '', '', 50.05, 0, 0);
-
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'bb_MaxImageCount', 5, 'In-Bulletin', 'in-bulletin:configuration_output');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'bb_ThumbnailImageWidth', 120, 'In-Bulletin', 'in-bulletin:configuration_output');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'bb_ThumbnailImageHeight', 120, 'In-Bulletin', 'in-bulletin:configuration_output');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'bb_FullImageWidth', 450, 'In-Bulletin', 'in-bulletin:configuration_output');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'bb_FullImageHeight', 450, 'In-Bulletin', 'in-bulletin:configuration_output');
-
-ALTER TABLE PrivateMessages CHANGE FolderId FolderId TINYINT(3) NOT NULL DEFAULT '-1';
-
-UPDATE Modules SET Version = '4.2.0' WHERE Name = 'In-Bulletin';
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v4.2.0.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/changelog_1_1_0.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/changelog_1_1_0.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/changelog_1_1_0.txt (nonexistent)
@@ -1,18 +0,0 @@
-File in-bulletin/in-bulletin/in-bulletin_config.php is new
-File in-bulletin/in-bulletin/parser.php changed
-File in-bulletin/in-bulletin/admin/install/inportal_data.sql changed
-File in-bulletin/in-bulletin/admin/install/upgrades/changelog_1_1_0.txt is new
-File in-bulletin/in-bulletin/admin/install/upgrades/changelog_3_0_8.txt is removed
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.0.sql is new
-File in-bulletin/in-bulletin/admin/install/upgrades/readme_1_1_0.txt is new
-File in-bulletin/themes/default/inbulletin/my_preferences/preferences_form1.tpl is removed
-File in-bulletin/themes/default/inbulletin/my_preferences/preferences_form2.tpl is removed
-File in-bulletin/themes/default/inbulletin/my_preferences/preferences_form3.tpl is removed
-File in-bulletin/themes/default/inbulletin/my_preferences/preferences_form4.tpl is removed
-File in-bulletin/themes/default/inbulletin/my_preferences/state1.tpl is removed
-File in-bulletin/themes/default/inbulletin/my_preferences/state2.tpl is removed
-File in-bulletin/themes/default/inbulletin/my_preferences/state3.tpl is removed
-File in-bulletin/themes/default/inbulletin/my_preferences/state4.tpl is removed
-File in-bulletin/themes/default/inbulletin/my_preferences/state5.tpl is removed
-File in-bulletin/themes/default/inbulletin/rate/rate_access_denied.tpl changed
-File in-bulletin/themes/default/inbulletin/topic_reply/topic_reply_form.tpl changed
Property changes on: trunk/in-bulletin/admin/install/upgrades/changelog_1_1_0.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/changelog_1_1_1.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/changelog_1_1_1.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/changelog_1_1_1.txt (nonexistent)
@@ -1,28 +0,0 @@
-File in-bulletin/in-bulletin/action.php changed
-File in-bulletin/in-bulletin/parser.php changed
-File in-bulletin/in-bulletin/admin/addcensor_word.php changed
-File in-bulletin/in-bulletin/admin/addemoticon.php changed
-File in-bulletin/in-bulletin/admin/addimage.php changed
-File in-bulletin/in-bulletin/admin/addrelation.php changed
-File in-bulletin/in-bulletin/admin/addreview.php changed
-File in-bulletin/in-bulletin/admin/addtopic.php changed
-File in-bulletin/in-bulletin/admin/addtopic_category.php changed
-File in-bulletin/in-bulletin/admin/addtopic_custom.php changed
-File in-bulletin/in-bulletin/admin/addtopic_images.php changed
-File in-bulletin/in-bulletin/admin/addtopic_relations.php changed
-File in-bulletin/in-bulletin/admin/addtopic_reviews.php changed
-File in-bulletin/in-bulletin/admin/advanced_view.php changed
-File in-bulletin/in-bulletin/admin/browse.php changed
-File in-bulletin/in-bulletin/admin/censor_config.php changed
-File in-bulletin/in-bulletin/admin/config_general.php changed
-File in-bulletin/in-bulletin/admin/emoticon_config.php changed
-File in-bulletin/in-bulletin/admin/install.php changed
-File in-bulletin/in-bulletin/admin/item_select.php changed
-File in-bulletin/in-bulletin/admin/relation_select.php changed
-File in-bulletin/in-bulletin/admin/reviews.php changed
-File in-bulletin/in-bulletin/admin/install/inportal_data.sql changed
-File in-bulletin/in-bulletin/admin/install/prerequisit.php changed
-File in-bulletin/in-bulletin/admin/install/upgrades/changelog_1_1_1.txt is new
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.1.php is new
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.1.sql is new
-File in-bulletin/in-bulletin/admin/install/upgrades/readme_1_1_1.txt is new
Property changes on: trunk/in-bulletin/admin/install/upgrades/changelog_1_1_1.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/changelog_1_0_10.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/changelog_1_0_10.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/changelog_1_0_10.txt (nonexistent)
@@ -1,12 +0,0 @@
-File in-bulletin/in-bulletin/parser.php changed
-File in-bulletin/in-bulletin/privatemessage.php changed
-File in-bulletin/in-bulletin/admin/install/inportal_data.sql changed
-File in-bulletin/in-bulletin/admin/install/upgrades/changelog_1_0_10.txt is new
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_check_v1.0.8.php is removed
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.10.sql is new
-File in-bulletin/in-bulletin/admin/install/upgrades/readme_1_0_10.txt is new
-File in-bulletin/themes/default/inbulletin/pick.tpl changed
-File in-bulletin/themes/default/inbulletin/my_account/new_topics.tpl changed
-File in-bulletin/themes/default/inbulletin/pick/right.tpl is new
-File in-bulletin/themes/default/inbulletin/quicklinks/new.tpl changed
-File in-bulletin/themes/default/inbulletin/quicklinks/new/links.tpl changed
Property changes on: trunk/in-bulletin/admin/install/upgrades/changelog_1_0_10.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/changelog_1_0_11.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/changelog_1_0_11.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/changelog_1_0_11.txt (nonexistent)
@@ -1,39 +0,0 @@
-File in-bulletin/in-bulletin/action.php changed
-File in-bulletin/in-bulletin/frontaction.php changed
-File in-bulletin/in-bulletin/parser.php changed
-File in-bulletin/in-bulletin/posting.php changed
-File in-bulletin/in-bulletin/topic.php changed
-File in-bulletin/in-bulletin/admin/addtopic.php changed
-File in-bulletin/in-bulletin/admin/advanced_view.php changed
-File in-bulletin/in-bulletin/admin/browse.php changed
-File in-bulletin/in-bulletin/admin/config_general.php changed
-File in-bulletin/in-bulletin/admin/relation_select.php changed
-File in-bulletin/in-bulletin/admin/reviews.php changed
-File in-bulletin/in-bulletin/admin/include/help/configuration_output.txt changed
-File in-bulletin/in-bulletin/admin/include/help/edittopic_general.txt changed
-File in-bulletin/in-bulletin/admin/include/toolbar/advanced_view.php changed
-File in-bulletin/in-bulletin/admin/include/toolbar/browse.php changed
-File in-bulletin/in-bulletin/admin/include/toolbar/editcategory_relationselect.php changed
-File in-bulletin/in-bulletin/admin/include/toolbar/reviews.php changed
-File in-bulletin/in-bulletin/admin/install/inportal_data.sql changed
-File in-bulletin/in-bulletin/admin/install/upgrades/changelog_1_0_11.txt is new
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.11.sql is new
-File in-bulletin/in-bulletin/admin/install/upgrades/readme_1_0_11.txt is new
-File in-bulletin/themes/default/inbulletin/get_rated.tpl is new
-File in-bulletin/themes/default/inbulletin/index/sitemap_cat_element.tpl is new
-File in-bulletin/themes/default/inbulletin/index/sitemap_subcat_element.tpl is new
-File in-bulletin/themes/default/inbulletin/my_preferences/pref_menubar_element.tpl changed
-File in-bulletin/themes/default/inbulletin/my_preferences/pref_menubar_element1.tpl changed
-File in-bulletin/themes/default/inbulletin/my_preferences/preferences.tpl changed
-File in-bulletin/themes/default/inbulletin/my_preferences/preferences_form.tpl changed
-File in-bulletin/themes/default/inbulletin/my_preferences/preferences_form1.tpl is new
-File in-bulletin/themes/default/inbulletin/my_preferences/preferences_form2.tpl is new
-File in-bulletin/themes/default/inbulletin/my_preferences/preferences_form3.tpl is new
-File in-bulletin/themes/default/inbulletin/my_preferences/preferences_form4.tpl is new
-File in-bulletin/themes/default/inbulletin/my_preferences/state1.tpl is new
-File in-bulletin/themes/default/inbulletin/my_preferences/state2.tpl is new
-File in-bulletin/themes/default/inbulletin/my_preferences/state3.tpl is new
-File in-bulletin/themes/default/inbulletin/my_preferences/state4.tpl is new
-File in-bulletin/themes/default/inbulletin/my_preferences/state5.tpl is new
-File in-bulletin/themes/default/inbulletin/rate/getting_rated.tpl is new
-File in-bulletin/themes/default/inbulletin/rate/rate_form.tpl changed
Property changes on: trunk/in-bulletin/admin/install/upgrades/changelog_1_0_11.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.6.php
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.6.php (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.6.php (nonexistent)
@@ -1,5 +0,0 @@
-<?php
- updateItemCategoryTemplate('In-Bulletin', 'inbulletin/index', 'inbulletin/post_list');
-
- convertCustomFields('bb');
-?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.6.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/readme_1_0_10.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/readme_1_0_10.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/readme_1_0_10.txt (nonexistent)
@@ -1,8 +0,0 @@
-Readme for In-bulletin 1.0.10
-Intechnic Corporation, May 18, 2005
-
-This is a maintenance release.
-
-Bug fixes:
-- Editor's pick templates modified
-
Property changes on: trunk/in-bulletin/admin/install/upgrades/readme_1_0_10.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.6.sql
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.6.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.6.sql (nonexistent)
@@ -1,11 +0,0 @@
-INSERT INTO ImportScripts(is_string_id,is_Module,is_script,is_label,is_field_prefix,is_requred_fields,is_enabled) VALUES ('phpbb', 'In-Bulletin', 'phpbb_import', 'phpBB 2.x', 'phpBB', 'user_regular,init_cat', 1);
-
-UPDATE ConfigurationValues SET VariableValue = 'desc' WHERE VariableName = 'Topics_SortOrder' AND ModuleOwner = 'In-Bulletin'
-UPDATE ConfigurationValues SET VariableValue = 'CreatedOn' WHERE VariableName = 'Topics_Sortfield' AND ModuleOwner = 'In-Bulletin'
-UPDATE ConfigurationValues SET VariableValue = 'desc' WHERE VariableName = 'Topics_SortOrder2' AND ModuleOwner = 'In-Bulletin'
-UPDATE ConfigurationValues SET VariableValue = 'Posts' WHERE VariableName = 'Topics_Sortfield2' AND ModuleOwner = 'In-Bulletin'
-
-INSERT INTO ConfigurationValues VALUES ('Topic_Highlight_OpenTag', '<span class="match">', 'In-Bulletin', 'in-bulletin:configuration_output');
-INSERT INTO ConfigurationValues VALUES ('Topc_Highlight_CloseTag', '</span>', 'In-Bulletin', 'in-bulletin:configuration_output');
-
-UPDATE Modules SET Version = '1.0.6' WHERE Name = 'In-Bulletin';
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.6.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.7
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.4.sql
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.4.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.4.sql (nonexistent)
@@ -1,6 +0,0 @@
-ALTER TABLE Topic ADD INDEX (Filename ( 5 ));
-
-UPDATE ItemTypes SET Prefix = 'bb' WHERE SourceTable = 'Topic';
-UPDATE ItemTypes SET Prefix = 'posting' WHERE SourceTable = 'Posting';
-
-UPDATE Modules SET Version = '1.1.4' WHERE Name = 'In-Bulletin';
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.4.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.5.sql
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.5.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.5.sql (nonexistent)
@@ -1,2 +0,0 @@
-
-UPDATE Modules SET Version = '1.1.5' WHERE Name = 'In-Bulletin';
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.5.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.2.2.sql
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.2.2.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.2.2.sql (nonexistent)
@@ -1 +0,0 @@
-UPDATE Modules SET Version = '1.2.2' WHERE Name = 'In-Bulletin';
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.2.2.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.3.0.sql
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.3.0.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.3.0.sql (nonexistent)
@@ -1,3 +0,0 @@
-UPDATE ItemReview SET Module = 'In-Bulletin' WHERE ItemId IN (SELECT ResourceId FROM Topic);
-
-UPDATE Modules SET Version = '1.3.0' WHERE Name = 'In-Bulletin';
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.3.0.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v4.1.0.sql
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v4.1.0.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v4.1.0.sql (nonexistent)
@@ -1,6 +0,0 @@
-ALTER TABLE Topic CHANGE TodayDate TodayDate DATE NULL DEFAULT NULL, CHANGE AutomaticFilename AutomaticFilename TINYINT(3) UNSIGNED NOT NULL DEFAULT '1', CHANGE OwnerId OwnerId INT(11) NOT NULL DEFAULT '-1', CHANGE TopicType TopicType INT(11) NOT NULL DEFAULT '1', CHANGE LastPostDate LastPostDate INT(11) NULL DEFAULT NULL, CHANGE CachedRating CachedRating VARCHAR(10) NOT NULL DEFAULT '0', CHANGE OrgId OrgId INT(11) NULL DEFAULT NULL;
-ALTER TABLE Topic DROP Filename;
-
-UPDATE Topic SET TodayDate = NULL WHERE TodayDate = '0000-00-00';
-
-UPDATE Modules SET Version = '4.1.0' WHERE Name = 'In-Bulletin';
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v4.1.0.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.7.sql
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.7.sql (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.7.sql (nonexistent)
@@ -1,18 +0,0 @@
-INSERT INTO ConfigurationAdmin VALUES ('Perpage_PrivateMessages', 'la_text_PrivateMessages', 'la_text_PrivateMessages_PerPage', 'text', NULL , NULL , '0', '1');
-INSERT INTO ConfigurationValues VALUES ('Perpage_PrivateMessages', '20', 'In-Bulletin', '');
-INSERT INTO Events VALUES (66, 'PM.ADD', 1, 0, 'In-Bulletin', 'la_event_pm.add', 0);
-
-CREATE TABLE PrivateMessageBody (PMBodyId int(11) unsigned NOT NULL auto_increment, Subject varchar(255) NOT NULL default '', Body text NOT NULL, Options tinyint(3) unsigned NOT NULL default '0', ReferenceCount smallint(5) unsigned NOT NULL default '0', PRIMARY KEY (PMBodyId) );
-CREATE TABLE PrivateMessages (PmId int(11) unsigned NOT NULL auto_increment, FromId int(11) unsigned NOT NULL default '0', ToId int(11) unsigned NOT NULL default '0', FolderId tinyint(3) NOT NULL default '0', Status tinyint(1) unsigned NOT NULL default '0', PMBodyId int(11) unsigned NOT NULL default '0', CreatedOn int(11) unsigned NOT NULL default '0', PRIMARY KEY (PmId), KEY FromId (FromId), KEY CreatedOn (CreatedOn), KEY ToId (ToId) );
-ALTER TABLE Topic ADD TodayDate DATE NOT NULL, ADD TodayPosts INT(11) NOT NULL;
-
-UPDATE SearchConfig SET Priority = 1 WHERE FieldName = 'TopicText' AND TableName = 'Topic';
-UPDATE ConfigurationAdmin SET ValueList = 'TopicText=la_Topic_Text,Posts=la_Number_of_Posts,CreatedOn=la_CreatedOn,LastPostDate=la_LastUpdate,Views=la_Topic_Views,<SQL>SELECT FieldLabel as OptionName, FieldName as OptionValue FROM <PREFIX>CustomField WHERE Type=3</SQL>' WHERE VariableName = 'Topics_Sortfield';
-UPDATE ConfigurationValues SET VariableValue = 'LastPostDate' WHERE VariableName = 'Topics_Sortfield' AND ModuleOwner = 'In-Bulletin'
-UPDATE ConfigurationValues SET VariableValue = 'b:;i:;u:;ul:type|align;font:color|face|size;url:href;img:src|border' WHERE VariableName = 'BBTags';
-
-ALTER TABLE Topic CHANGE EditorsPick EditorsPick TINYINT( 4 ) DEFAULT '0' NOT NULL;
-ALTER TABLE Topic CHANGE Priority Priority INT( 11 ) DEFAULT '0' NOT NULL;
-ALTER TABLE Topic CHANGE LastPostDate LastPostDate INT( 11 ) DEFAULT '0' NOT NULL;
-
-UPDATE Modules SET Version = '1.0.7' WHERE Name = 'In-Bulletin';
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.7.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.13
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/changelog_1_1_6.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/changelog_1_1_6.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/changelog_1_1_6.txt (nonexistent)
@@ -1,61 +0,0 @@
-File in-bulletin/in-bulletin/action.php changed
-File in-bulletin/in-bulletin/frontaction.php changed
-File in-bulletin/in-bulletin/parser.php changed
-File in-bulletin/in-bulletin/topic.php changed
-File in-bulletin/in-bulletin/admin/addtopic.php changed
-File in-bulletin/in-bulletin/admin/addtopic_custom.php changed
-File in-bulletin/in-bulletin/admin/install.php changed
-File in-bulletin/in-bulletin/admin/import/phpbb_import.php changed
-File in-bulletin/in-bulletin/admin/include/navmenu.php changed
-File in-bulletin/in-bulletin/admin/include/help/configuration_output.txt is removed; release_1_1_5 revision 1.2
-File in-bulletin/in-bulletin/admin/include/help/configuration_search.txt is removed; release_1_1_5 revision 1.1
-File in-bulletin/in-bulletin/admin/install/inportal_data.sql changed
-File in-bulletin/in-bulletin/admin/install/inportal_schema.sql changed
-File in-bulletin/in-bulletin/admin/install/upgrades/changelog_1_1_6.txt is new; release_1_1_6 revision 1.1.2.8
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.6.php is new; release_1_1_6 revision 1.2
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.1.6.sql is new; release_1_1_6 revision 1.2.2.2
-File in-bulletin/in-bulletin/admin/install/upgrades/readme_1_1_6.txt is new; release_1_1_6 revision 1.1.2.2
-File in-bulletin/in-bulletin/admin_templates/img/logo_bg.gif is new; release_1_1_6 revision 1.1.2.1
-File in-bulletin/in-bulletin/module_help/config_list_output.txt is new; release_1_1_6 revision 1.1.2.1
-File in-bulletin/in-bulletin/module_help/config_list_search.txt is new; release_1_1_6 revision 1.1
-File in-bulletin/in-bulletin/units/topics/topics_config.php changed
-File in-bulletin/in-bulletin/units/topics/topics_event_handler.php changed
-File in-bulletin/themes/default/inbulletin/edit_topic.tpl changed
-File in-bulletin/themes/default/inbulletin/favorites_element.tpl changed
-File in-bulletin/themes/default/inbulletin/get_rated.tpl changed
-File in-bulletin/themes/default/inbulletin/index.tpl changed
-File in-bulletin/themes/default/inbulletin/main.tpl changed
-File in-bulletin/themes/default/inbulletin/myitems_element.tpl changed
-File in-bulletin/themes/default/inbulletin/new_topic.tpl changed
-File in-bulletin/themes/default/inbulletin/post_edit.tpl changed
-File in-bulletin/themes/default/inbulletin/post_list.tpl changed
-File in-bulletin/themes/default/inbulletin/post_list_threaded.tpl changed
-File in-bulletin/themes/default/inbulletin/post_reply_quote.tpl changed
-File in-bulletin/themes/default/inbulletin/rate.tpl changed
-File in-bulletin/themes/default/inbulletin/topic_list.tpl changed
-File in-bulletin/themes/default/inbulletin/topic_reply.tpl changed
-File in-bulletin/themes/default/inbulletin/browse/catbrowse_element.tpl changed
-File in-bulletin/themes/default/inbulletin/edit_topic/edit_topic_confirm_pending.tpl changed
-File in-bulletin/themes/default/inbulletin/edit_topic/edit_topic_form.tpl changed
-File in-bulletin/themes/default/inbulletin/index/sitemap_cat_element.tpl changed
-File in-bulletin/themes/default/inbulletin/index/sitemap_subcat_element.tpl changed
-File in-bulletin/themes/default/inbulletin/index/catview/cat_tree_element.tpl changed
-File in-bulletin/themes/default/inbulletin/index/catview/cat_tree_element_first.tpl changed
-File in-bulletin/themes/default/inbulletin/main/favorites_element.tpl changed
-File in-bulletin/themes/default/inbulletin/main/main_element.tpl changed
-File in-bulletin/themes/default/inbulletin/main/main_element_last.tpl changed
-File in-bulletin/themes/default/inbulletin/main/edpick/topic_element.tpl changed
-File in-bulletin/themes/default/inbulletin/my_items/myitems_element.tpl changed
-File in-bulletin/themes/default/inbulletin/new_topic/new_topic_confirm.tpl changed
-File in-bulletin/themes/default/inbulletin/new_topic/new_topic_confirm_pending.tpl changed
-File in-bulletin/themes/default/inbulletin/pick/topic_element.tpl changed
-File in-bulletin/themes/default/inbulletin/post_edit/post_edit_form.tpl changed
-File in-bulletin/themes/default/inbulletin/post_reply/post_reply_form.tpl changed
-File in-bulletin/themes/default/inbulletin/quicklinks/edpick/topic_element.tpl changed
-File in-bulletin/themes/default/inbulletin/quicklinks/new/links_element.tpl changed
-File in-bulletin/themes/default/inbulletin/rate/getting_rated.tpl changed
-File in-bulletin/themes/default/inbulletin/rate/rate_form.tpl changed
-File in-bulletin/themes/default/inbulletin/search_results/search_results_element.tpl changed
-File in-bulletin/themes/default/inbulletin/topic_list/topics/element.tpl changed
-File in-bulletin/themes/default/inbulletin/topic_list/topics/element_last.tpl changed
-File in-bulletin/themes/default/inbulletin/topic_reply/topic_reply_form.tpl changed
Property changes on: trunk/in-bulletin/admin/install/upgrades/changelog_1_1_6.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/changelog_1_0_9.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/changelog_1_0_9.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/changelog_1_0_9.txt (nonexistent)
@@ -1,60 +0,0 @@
-File in-bulletin/in-bulletin/action.php changed
-File in-bulletin/in-bulletin/bbcat.php changed
-File in-bulletin/in-bulletin/frontaction.php changed
-File in-bulletin/in-bulletin/module_init.php changed
-File in-bulletin/in-bulletin/parser.php changed
-File in-bulletin/in-bulletin/posting.php changed
-File in-bulletin/in-bulletin/privatemessage.php changed
-File in-bulletin/in-bulletin/searchaction.php changed
-File in-bulletin/in-bulletin/topic.php changed
-File in-bulletin/in-bulletin/admin/addcensor_word.php changed
-File in-bulletin/in-bulletin/admin/addemoticon.php changed
-File in-bulletin/in-bulletin/admin/addimage.php changed
-File in-bulletin/in-bulletin/admin/addrelation.php changed
-File in-bulletin/in-bulletin/admin/addreview.php changed
-File in-bulletin/in-bulletin/admin/addtopic.php changed
-File in-bulletin/in-bulletin/admin/addtopic_custom.php changed
-File in-bulletin/in-bulletin/admin/addtopic_images.php changed
-File in-bulletin/in-bulletin/admin/addtopic_relations.php changed
-File in-bulletin/in-bulletin/admin/addtopic_reviews.php changed
-File in-bulletin/in-bulletin/admin/advanced_view.php changed
-File in-bulletin/in-bulletin/admin/censor_config.php changed
-File in-bulletin/in-bulletin/admin/emoticon_config.php changed
-File in-bulletin/in-bulletin/admin/reviews.php is new
-File in-bulletin/in-bulletin/admin/import/phpbb_import.php changed
-File in-bulletin/in-bulletin/admin/include/parser.php changed
-File in-bulletin/in-bulletin/admin/include/toolbar/advanced_view.php changed
-File in-bulletin/in-bulletin/admin/include/toolbar/edittopic_reviews.php changed
-File in-bulletin/in-bulletin/admin/include/toolbar/reviews.php is new
-File in-bulletin/in-bulletin/admin/install/inportal_data.sql changed
-File in-bulletin/in-bulletin/admin/install/inportal_schema.sql changed
-File in-bulletin/in-bulletin/admin/install/prerequisit.php is new
-File in-bulletin/in-bulletin/admin/install/upgrades/changelog_1_0_8.txt is new
-File in-bulletin/in-bulletin/admin/install/upgrades/changelog_1_0_9.txt is new
-File in-bulletin/in-bulletin/admin/install/upgrades/changelog_3_0_8.txt is new
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_check_v1.0.8.php is new
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.8.sql is new
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.9.sql is new
-File in-bulletin/in-bulletin/admin/install/upgrades/readme_1_0_9.txt is new
-File in-bulletin/in-bulletin/admin/templates/topic_element_av.tpl is new
-File in-bulletin/in-bulletin/admin/templates/topic_review_element.tpl is new
-File in-bulletin/themes/default/inbulletin/favorites_element.tpl changed
-File in-bulletin/themes/default/inbulletin/item_favorites.tpl changed
-File in-bulletin/themes/default/inbulletin/main.tpl changed
-File in-bulletin/themes/default/inbulletin/my_items.tpl changed
-File in-bulletin/themes/default/inbulletin/pick.tpl changed
-File in-bulletin/themes/default/inbulletin/post_list.tpl changed
-File in-bulletin/themes/default/inbulletin/index/catview/cat_tree_subcat.tpl changed
-File in-bulletin/themes/default/inbulletin/my_account/new_items.tpl is new
-File in-bulletin/themes/default/inbulletin/my_account/new_topics.tpl is new
-File in-bulletin/themes/default/inbulletin/my_preferences/preferences_form.tpl changed
-File in-bulletin/themes/default/inbulletin/pick/topic_element.tpl changed
-File in-bulletin/themes/default/inbulletin/pick/topics.tpl changed
-File in-bulletin/themes/default/inbulletin/post_edit/post_edit_form.tpl changed
-File in-bulletin/themes/default/inbulletin/post_list/post_element.tpl changed
-File in-bulletin/themes/default/inbulletin/post_list/post_element_alt.tpl changed
-File in-bulletin/themes/default/inbulletin/post_list/post_element_first.tpl changed
-File in-bulletin/themes/default/inbulletin/post_list/post_element_last.tpl changed
-File in-bulletin/themes/default/inbulletin/post_list/post_element_last_alt.tpl changed
-File in-bulletin/themes/default/inbulletin/search_results/item_results.tpl changed
-File in-bulletin/themes/default/inbulletin/topic_list/topics.tpl changed
Property changes on: trunk/in-bulletin/admin/install/upgrades/changelog_1_0_9.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/install/upgrades/changelog_1_0_8.txt
===================================================================
--- trunk/in-bulletin/admin/install/upgrades/changelog_1_0_8.txt (revision 12824)
+++ trunk/in-bulletin/admin/install/upgrades/changelog_1_0_8.txt (nonexistent)
@@ -1,54 +0,0 @@
-File in-bulletin/in-bulletin/action.php changed
-File in-bulletin/in-bulletin/bbcat.php changed
-File in-bulletin/in-bulletin/frontaction.php changed
-File in-bulletin/in-bulletin/module_init.php changed
-File in-bulletin/in-bulletin/parser.php changed
-File in-bulletin/in-bulletin/posting.php changed
-File in-bulletin/in-bulletin/privatemessage.php changed
-File in-bulletin/in-bulletin/searchaction.php changed
-File in-bulletin/in-bulletin/topic.php changed
-File in-bulletin/in-bulletin/admin/addcensor_word.php changed
-File in-bulletin/in-bulletin/admin/addemoticon.php changed
-File in-bulletin/in-bulletin/admin/addimage.php changed
-File in-bulletin/in-bulletin/admin/addrelation.php changed
-File in-bulletin/in-bulletin/admin/addreview.php changed
-File in-bulletin/in-bulletin/admin/addtopic.php changed
-File in-bulletin/in-bulletin/admin/addtopic_custom.php changed
-File in-bulletin/in-bulletin/admin/addtopic_images.php changed
-File in-bulletin/in-bulletin/admin/addtopic_relations.php changed
-File in-bulletin/in-bulletin/admin/addtopic_reviews.php changed
-File in-bulletin/in-bulletin/admin/advanced_view.php changed
-File in-bulletin/in-bulletin/admin/censor_config.php changed
-File in-bulletin/in-bulletin/admin/emoticon_config.php changed
-File in-bulletin/in-bulletin/admin/reviews.php is new
-File in-bulletin/in-bulletin/admin/import/phpbb_import.php changed
-File in-bulletin/in-bulletin/admin/include/parser.php changed
-File in-bulletin/in-bulletin/admin/include/toolbar/edittopic_reviews.php changed
-File in-bulletin/in-bulletin/admin/include/toolbar/reviews.php is new
-File in-bulletin/in-bulletin/admin/install/inportal_data.sql changed
-File in-bulletin/in-bulletin/admin/install/inportal_schema.sql changed
-File in-bulletin/in-bulletin/admin/install/prerequisit.php is new
-File in-bulletin/in-bulletin/admin/install/upgrades/changelog_1_0_8.txt is new
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_check_v1.0.8.php is new
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.8.sql is new
-File in-bulletin/in-bulletin/admin/install/upgrades/inportal_upgrade_v1.0.9.sql is new
-File in-bulletin/in-bulletin/admin/templates/topic_element_av.tpl is new
-File in-bulletin/in-bulletin/admin/templates/topic_review_element.tpl is new
-File in-bulletin/themes/default/inbulletin/favorites_element.tpl changed
-File in-bulletin/themes/default/inbulletin/item_favorites.tpl changed
-File in-bulletin/themes/default/inbulletin/main.tpl changed
-File in-bulletin/themes/default/inbulletin/my_items.tpl changed
-File in-bulletin/themes/default/inbulletin/pick.tpl changed
-File in-bulletin/themes/default/inbulletin/post_list.tpl changed
-File in-bulletin/themes/default/inbulletin/index/catview/cat_tree_subcat.tpl changed
-File in-bulletin/themes/default/inbulletin/my_account/new_items.tpl is new
-File in-bulletin/themes/default/inbulletin/my_account/new_topics.tpl is new
-File in-bulletin/themes/default/inbulletin/my_preferences/preferences_form.tpl changed
-File in-bulletin/themes/default/inbulletin/pick/topics.tpl changed
-File in-bulletin/themes/default/inbulletin/post_list/post_element.tpl changed
-File in-bulletin/themes/default/inbulletin/post_list/post_element_alt.tpl changed
-File in-bulletin/themes/default/inbulletin/post_list/post_element_first.tpl changed
-File in-bulletin/themes/default/inbulletin/post_list/post_element_last.tpl changed
-File in-bulletin/themes/default/inbulletin/post_list/post_element_last_alt.tpl changed
-File in-bulletin/themes/default/inbulletin/search_results/item_results.tpl changed
-File in-bulletin/themes/default/inbulletin/topic_list/topics.tpl changed
Property changes on: trunk/in-bulletin/admin/install/upgrades/changelog_1_0_8.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/addemoticon.php
===================================================================
--- trunk/in-bulletin/admin/addemoticon.php (revision 12824)
+++ trunk/in-bulletin/admin/addemoticon.php (nonexistent)
@@ -1,153 +0,0 @@
-<?php
-
-##############################################################
-##In-portal ##
-##############################################################
-## In-portal ##
-## Intechnic Corporation ##
-## All Rights Reserved, 1998-2002 ##
-## ##
-## No portion of this code may be copied, reproduced or ##
-## otherwise redistributed without proper written ##
-## consent of Intechnic Corporation. Violation will ##
-## result in revocation of the license and support ##
-## privileges along maximum prosecution allowed by law. ##
-##############################################################
-
-// new startup: begin
-define('REL_PATH', 'in-bulletin/admin');
-$relation_level = count( explode('/', REL_PATH) );
-define('FULL_PATH', realpath(dirname(__FILE__) . str_repeat('/..', $relation_level) ) );
-require_once FULL_PATH.'/kernel/startup.php';
-// new startup: end
-checkViewPermission('in-bulletin:configuration_emoticon');
-
-/* set the destination of the image upload, relative to the root path */
-$DestDir = 'in-bulletin/images/';
-
-$pathtolocal = $pathtoroot."kernel/";
-require_once ($pathtoroot.$admin."/include/elements.php");
-require_once ($pathtoroot."kernel/admin/include/navmenu.php");
-require_once ($pathtolocal."admin/include/navmenu.php");
-require_once($pathtoroot.$admin."/browse/toolbar.php");
-require_once($pathtoroot.$admin."/listview/listview.php");
-
-unset($objEditCat);
-
-unset($objEditItems);
-
-$objEditItems = new clsEmoticonList();
-$objEditItems->EnablePaging = FALSE;
-
-if(isset($_POST["itemlist"]))
-{
- if(is_array($_POST["itemlist"]))
- {
- $EmoticonId = $_POST["itemlist"][0];
- }
- else
- {
- $EmoticonId = $_POST["itemlist"];
- }
- $img = $objEditItems->GetItem($EmoticonId);
- $action = "bb_emoticon_edit";
- $name = $img->Get("Name");
-}
-else
-{
- $img = new clsEmoticon();
- $action = "bb_emoticon_add";
- $name = "'New Emoticon'";
-
-}
-
-$envar = "env=" . BuildEnv() . "&en=$en";
-$section = "in-bulletin:configuration_emoticon";
-
-$ado = &GetADODBConnection();
-
-/* page header */
-$charset = GetRegionalOption('Charset');
-print <<<END
-<html>
-<head>
- <title>In-portal</title>
- <meta http-equiv="content-type" content="text/html;charset=$charset">
- <meta http-equiv="Pragma" content="no-cache">
- <script language="JavaScript">
- imagesPath='$imagesURL'+'/';
- </script>
- <script src="$browseURL/common.js"></script>
- <script src="$browseURL/toolbar.js"></script>
- <script src="$browseURL/utility.js"></script>
- <script src="$browseURL/checkboxes.js"></script>
- <script language="JavaScript1.2" src="$browseURL/fw_menu.js"></script>
- <link rel="stylesheet" type="text/css" href="$browseURL/checkboxes.css">
- <link rel="stylesheet" type="text/css" href="$cssURL/style.css">
- <link rel="stylesheet" type="text/css" href="$browseURL/toolbar.css">
-END;
-
-
-$title = GetTitle("la_Text_Smiley", "", $EmoticonId, $name);//prompt_language("la_Text_Editing")." ".prompt_language("la_Text_Smiley");
-//$title .= " '".$name."'";
-$sec = $objSections->GetSection($section);
- $objCatToolBar = new clsToolBar();
- $objCatToolBar->Add("img_save", "la_Save","#","swap('img_save','toolbar/tool_select_f2.gif');", "swap('img_save', 'toolbar/tool_select.gif');","do_edit_save('config','','in-bulletin/admin/emoticon_config.php',0);",$imagesURL."/toolbar/tool_select.gif");
- $objCatToolBar->Add("img_cancel", "la_Cancel","#","swap('img_cancel','toolbar/tool_cancel_f2.gif');", "swap('img_cancel', 'toolbar/tool_cancel.gif');","jump_to_url('in-bulletin/admin/emoticon_config.php');",$imagesURL."/toolbar/tool_cancel.gif");
-
-int_header($objCatToolBar,NULL,$title);
-?>
-<FORM enctype="multipart/form-data" ID="config" NAME="config" method="POST" ACTION="">
-<TABLE cellSpacing="0" cellPadding="0" width="100%" class="tableborder">
-<?php int_subsection_title(prompt_language("la_tab_General")); ?>
-<TR <?php int_table_color(); ?> >
- <TD><?php echo prompt_language("la_prompt_EmoticonId"); ?></TD>
- <TD><?php echo $img->Get("EmoticonId"); ?></TD>
- <TD></TD>
-</TR>
-<TR <?php int_table_color(); ?> >
- <TD><SPAN ID="prompt_Name" class="text"><?php echo prompt_language("la_prompt_Name"); ?></SPAN></TD>
- <TD><input type="text" tabindex="1" NAME="Name" VALUE="<?php echo inp_htmlize($img->Get("Name")); ?>"></TD>
- <TD></TD>
-</TR>
-
-<TR <?php int_table_color(); ?> >
- <TD><SPAN id="prompt_KeyStroke" CLASS="text"><?php echo prompt_language("la_prompt_KeyStroke"); ?></SPAN></TD>
- <TD><input type="text" tabindex="2" NAME="KeyStroke" VALUE="<?php echo inp_htmlize($img->Get("KeyStroke")); ?>"></TD>
- <TD></TD>
-</TR>
-
-<TR <?php int_table_color(); ?> >
- <TD><?php echo prompt_language("la_prompt_Enabled"); ?></TD>
- <TD><input type="checkbox" tabindex="3" NAME="Enabled" <?php if($img->Get("Enabled")==1) echo "CHECKED"; ?> VALUE="1"></TD><BR>
- <TD></TD>
-</TR>
-
-<?php int_subsection_title(prompt_language("la_Text_Upload")." ".prompt_language("la_Text_Image")); ?>
-
-<TR <?php int_table_color(); ?> >
- <TD><SPAN id="prompt_EmoticonFile" CLASS="text"><?php echo prompt_language("la_prompt_Location"); ?></SPAN></TD>
- <TD>
- <input type="FILE" tabindex="4" NAME="EmoticonFile" VALUE="">
- </TD>
- <TD ALIGN="RIGHT"><IMG SRC="<?php echo $img->GetURL(); ?>"></TD>
-</TR>
-
-<TR <?php int_table_color(); ?> >
- <td colspan="3">
- <input type=hidden NAME="Action" VALUE="<?php echo $action; ?>">
- <INPUT TYPE="hidden" NAME="EmoticonId" VALUE="<?php echo $img->Get("EmoticonId"); ?>">
- </td>
-</tr>
-</FORM>
-</TABLE>
-
-<!-- CODE FOR VIEW MENU -->
-<form method="post" action="<?php echo $_SERVER["PHP_SELF"]."?".$envar; ?>" name="viewmenu">
-<input type="hidden" name="fieldname" value="">
-<input type="hidden" name="varvalue" value="">
-<input type="hidden" name="varvalue2" value="">
-<input type="hidden" name="Action" value="">
-</form>
-<!-- END CODE-->
-<?php int_footer(); ?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin/addemoticon.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.12
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin/addcensor_word.php
===================================================================
--- trunk/in-bulletin/admin/addcensor_word.php (revision 12824)
+++ trunk/in-bulletin/admin/addcensor_word.php (nonexistent)
@@ -1,134 +0,0 @@
-<?php
-##############################################################
-##In-portal ##
-##############################################################
-## In-portal ##
-## Intechnic Corporation ##
-## All Rights Reserved, 1998-2002 ##
-## ##
-## No portion of this code may be copied, reproduced or ##
-## otherwise redistributed without proper written ##
-## consent of Intechnic Corporation. Violation will ##
-## result in revocation of the license and support ##
-## privileges along maximum prosecution allowed by law. ##
-##############################################################
-
-// new startup: begin
-define('REL_PATH', 'in-bulletin/admin');
-$relation_level = count( explode('/', REL_PATH) );
-define('FULL_PATH', realpath(dirname(__FILE__) . str_repeat('/..', $relation_level) ) );
-require_once FULL_PATH.'/kernel/startup.php';
-// new startup: end
-checkViewPermission('in-bulletin:configuration_censorship');
-
-$pathtolocal = $pathtoroot."in-bulletin/";
-require_once ($pathtoroot.$admin."/include/elements.php");
-require_once ($pathtoroot."kernel/admin/include/navmenu.php");
-require_once ($pathtolocal."admin/include/navmenu.php");
-require_once($pathtoroot.$admin."/toolbar.php");
-require_once($pathtoroot.$admin."/listview/listview.php");
-
-$section = "in-bulletin:configuration_censorship";
-
-unset($objEditItems);
-
-$envar = "env=".BuildEnv();
-
-$formaction = $_SERVER["PHP_SELF"]."?".$envar;
-
-if(isset($_POST["itemlist"]))
-{
- if(is_array($_POST["itemlist"]))
- {
- $FieldId = $_POST["itemlist"][0];
- }
- else
- {
- $FieldId = $_POST["itemlist"];
- }
-
- $c = new clsCensorWord($FieldId);
- $action = "bb_censorword_edit";
- $name = $c->Get("BadWord");
-}
-else
-{
- $c = new clsCensorWord();
- $c->Set("Language",$objSession->Get("Language"));
- $action = "bb_censorword_add";
- $name = prompt_language("la_Text_NewCensorWord");
-
-}
-
-$title = GetTitle("la_Text_Censorship", '',$c->Get('CensorshipId'), $name);//prompt_language("la_Text_Editing")." ".prompt_language("la_Text_Censorship")." -'$name'";
-/* page header */
-$charset = GetRegionalOption('Charset');
-print <<<END
-<html>
-<head>
- <title>In-portal</title>
- <meta http-equiv="content-type" content="text/html;charset=$charset">
- <meta http-equiv="Pragma" content="no-cache">
- <script language="JavaScript">
- imagesPath='$imagesURL'+'/';
- </script>
- <script src="$browseURL/common.js"></script>
- <script src="$browseURL/toolbar.js"></script>
- <script src="$browseURL/utility.js"></script>
- <script src="$browseURL/checkboxes.js"></script>
- <script language="JavaScript1.2" src="$browseURL/fw_menu.js"></script>
- <link rel="stylesheet" type="text/css" href="$browseURL/checkboxes.css">
- <link rel="stylesheet" type="text/css" href="$cssURL/style.css">
- <link rel="stylesheet" type="text/css" href="$browseURL/toolbar.css">
-END;
-
-$sec = $objSections->GetSection($section);
-
-$objCatToolBar = new clsToolBar();
-$objCatToolBar->Add("img_save", "la_Save","#","swap('img_save','toolbar/tool_select_f2.gif');", "swap('img_save', 'toolbar/tool_select.gif');","do_edit_save('customfield','CensorEditStatus','in-bulletin/admin/censor_config.php',1,'')","tool_select.gif");
-$objCatToolBar->Add("img_cancel", "la_Cancel","#","swap('img_cancel','toolbar/tool_cancel_f2.gif');", "swap('img_cancel', 'toolbar/tool_cancel.gif');","jump_to_url('in-bulletin/admin/censor_config.php','');","tool_cancel.gif");
-
-int_header($objCatToolBar,NULL,$title);
-?>
-<FORM enctype="multipart/form-data" ID="customfield" NAME="customfield" method="POST" ACTION="">
-<input type="hidden" name="CensorEditStatus" VALUE="0">
-<TABLE cellSpacing="0" cellPadding="2" width="100%" class="tableborder">
-<?php int_subsection_title(prompt_language("la_tab_Censorship")); ?>
-
-<TR <?php int_table_color(); ?> >
- <TD><?php echo prompt_language("la_prompt_CensorhipId"); ?></TD>
- <TD><?php echo $c->Get("CensorshipId"); ?></TD>
- <TD></TD>
-</TR>
-
-<TR <?php int_table_color(); ?> >
- <TD><SPAN id="prompt_badword" CLASS="text"><?php echo prompt_language("la_prompt_CensorWord"); ?></SPAN></TD>
- <TD><input type=text NAME="badword" tabindex="1" VALUE="<?php echo inp_htmlize($c->Get("BadWord")); ?>"></TD>
- <TD></TD>
-</TR>
-
-<TR <?php int_table_color(); ?> >
- <TD><?php echo prompt_language("la_prompt_ReplacementWord"); ?></TD>
- <TD><input type=text NAME="replacement" tabindex="2" VALUE="<?php echo inp_htmlize($c->Get("Replacement")); ?>"></TD>
- <TD></TD>
-</TR>
-
-<TR <?php int_table_color(); ?> >
- <td colspan="3">
- <input type=hidden NAME="Action" VALUE="<?php echo $action; ?>">
- <INPUT TYPE="hidden" NAME="CensorshipId" VALUE="<?php echo $c->Get("CensorshipId"); ?>">
- </td>
-</tr>
-</FORM>
-</TABLE>
-
-<!-- CODE FOR VIEW MENU -->
-<form method="post" action="user_groups.php?<?php echo $envar; ?>" name="viewmenu">
-<input type="hidden" name="fieldname" value="">
-<input type="hidden" name="varvalue" value="">
-<input type="hidden" name="varvalue2" value="">
-<input type="hidden" name="Action" value="">
-</form>
-<!-- END CODE-->
-<?php int_footer(); ?>
-
Property changes on: trunk/in-bulletin/admin/addcensor_word.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.9
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/in-bulletin_config.php
===================================================================
--- trunk/in-bulletin/in-bulletin_config.php (revision 12824)
+++ trunk/in-bulletin/in-bulletin_config.php (nonexistent)
@@ -1 +0,0 @@
-<?php $config = Array(); ?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/in-bulletin_config.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/frontaction.php
===================================================================
--- trunk/in-bulletin/frontaction.php (revision 12824)
+++ trunk/in-bulletin/frontaction.php (nonexistent)
@@ -1,745 +0,0 @@
-<?php
-
- switch($Action)
- {
- case "bb_add_favorite":
- $id = $bb_var_list["top"];
- $userid = $objSession->Get("PortalUserId");
- $Topic =& $objTopicList->GetItem($id);
- $Topic->AddFavorite($userid);
- $cat_id = $Topic->GetPrimaryCategory();
- UpdateCategoryCount("Topic", $cat_id, $objTopicList->CacheListType("favorites"));
- break;
-
- case "bb_del_favorite":
- $id = $bb_var_list["top"];
- $userid = $objSession->Get("PortalUserId");
- $Topic =& $objTopicList->GetItem($id);
- $Topic->DeleteFavorite($userid);
- $cat_id = $Topic->GetPrimaryCategory();
- UpdateCategoryCount("Topic", $cat_id, $objTopicList->CacheListType("favorites"));
- break;
-
- case "bb_lock_topic":
- $id = $bb_var_list["top"];
- $Topic =& $objTopicList->GetItem($id);
- $Topic->Set("TopicType",0);
- $Topic->Update();
- break;
- case "bb_unlock_topic":
- $id = $bb_var_list["top"];
- $Topic =& $objTopicList->GetItem($id);
- $Topic->Set("TopicType",1);
- $Topic->Update();
- break;
- case "bb_new_topic":
- //phpinfo(INFO_VARIABLES);
- $AddPerm = $objSession->HasCatPermission("TOPIC.ADD");
- $PendingPerm = $objSession->HasCatPermission("TOPIC.ADD.PENDING");
- //echo "Add: $AddPerm <br>\n";
- if($AddPerm || $PendingPerm)
- {
- //echo "Adding Topic..<br>\n";
- $cat =& $objCatList->GetCategory($objCatList->CurrentCategoryID());
- if(trim($_POST["topic_subject"])!="")
- {
- $Status = ($AddPerm!=0) ? 1 : 2;
-
- $Pick = (int)$_POST["topic_pick"];
- $Notify = (int)$_POST["owner_notify"];
- $CreatedOn = adodb_date("U");
-
- $t =& $objTopicList->Add_Topic(inp_striptags($_POST["topic_subject"]),
-
- $objCatList->CurrentCategoryID(), $Status, $Pick, $Notify, $CreatedOn);
- /* @var $t clsTopic */
-
- $TopicId = $t->Get("TopicId");
-
- saveCustomFields('bb', $t->Get('ResourceId'), 3);
-
- if(is_object($t))
- {
- $u =& $objSession->CurrentUser;
- $PAlias= $t->Get("PostedBy");
- //$body = inp_escape($_POST["bb_post_reply_body"],0);
- $body = str_replace('<br />','',$_POST['bb_post_reply_body']);
- $body = htmlspecialchars($body);
- $p =& $t->AddPost($PAlias,$Status, $body);
- /* @var $p clsPosting */
-
- $p->SetPostOption("show_sig",(int)$_POST["topic_sig"]);
- $p->SetPostOption("disable_smileys",(int)$_POST["topic_smile"]);
- $p->SetPostOption("disable_bbcode",(int)$_POST["topic_bbcode"]);
- $p->Set("ReplyTo",0);
- $p->Update();
-
- $bb_var_list_update["top"]=$t->Get("TopicId");
- $env=BuildEnv();
- unset($bb_var_list_update["top"]);
- UpdateCategoryCount("Topic",$t->GetPrimaryCategory(),'_');
- UpdateCategoryCount("Topic",$t->GetPrimaryCategory(),$objTopicList->CacheListType("myitems"));
- }
- if(strlen($_GET["Confirm"]))
- {
- $var_list["t"] = $_GET["Confirm"];
- }
- else
- $var_list["t"] = $_GET["DestTemplate"];
-
- $cat->SetLastUpdate( adodb_mktime() );
- $objTopicList->ResetCache( $objCatList->CurrentCategoryID() );
- $objPostingList->ResetCache( $objCatList->CurrentCategoryID() );
- $t->SetTodayPosts(+1);
- }
-
- }
- break;
-
- case "bb_edit_topic":
- $perm = 0;
- $CategoryId=$objCatList->CurrentCategoryID();
- $OrgTopic = $objTopicList->GetCurrentTopic();
- $PermCat = $OrgTopic->GetPrimaryCategory();
-
- if ($objSession->HasCatPermission("TOPIC.MODIFY.PENDING",$PermCat))
- $perm = 2;
- if ($objSession->HasCatPermission("TOPIC.MODIFY",$PermCat))
- $perm = 1;
-
- if($objSession->Get("PortalUserId")==$OrgTopic->Get("OwnerId") && $perm != 1)
- {
- if ($objSession->HasCatPermission("TOPIC.OWNER.MODIFY.PENDING",$PermCat))
- $perm = 2;
- if ($objSession->HasCatPermission("TOPIC.OWNER.MODIFY",$PermCat))
- $perm = 1;
- }
- $topic = $OrgTopic;
- if($perm==2)
- {
- $topic->CreatePendingCopy();
- }
- if ($perm == 0)
- {
- $MissingCount++;
- $FormError["editlink"]["topic_subject"] = language("lu_ferror_no_access");
- }
- else
- {
- $subject = inp_striptags($_POST["topic_subject"]);
- $Notify = (int)$_POST["owner_notify"];
- $MissingCount = SetMissingDataErrors("edit_topic");
- if(is_array($_FILES))
- {
- foreach($_FILES as $field => $file)
- {
- $allowed = TRUE;
- if(strlen($_POST["imagetypes"][$field]))
- {
- $types = explode(",",strtolower($_POST["imagetypes"][$field]));
- if(is_array($types))
- {
- if(count($types)>0)
- {
- $path_parts = pathinfo($file["name"]);
- $ext = $path_parts["extension"];
- $allowed = in_array($ext,$types);
- if(!$allowed)
- {
- $MissingCount++;
- $FormError["edit_topic"][$field] = language("lu_ferror_wrongtype");
- }
- }
- }
- }
- $maxsize = (int)$_POST["maxsize"][$field];
- if($maxsize>0 && $allowed && $file["size"]>$maxsize)
- {
- $allowed = FALSE;
- $MissingCount++;
- $FormError["edit_topic"][$field] = language("lu_ferror_toolarge");
- }
- }
- }
- if($MissingCount==0)
- {
- $topic->Set("TopicText",$subject);
- $topic->Set("NotifyOwnerOnChanges",$Notify);
- $topic->Update();
- if($perm==1)
- {
- $topic->SendUserEventMail("TOPIC.MODIFY",$topic->Get("ModifiedById"));
- $topic->SendAdminEventMail("TOPIC.MODIFY");
- }
- else
- {
- $topic->SendUserEventMail("TOPIC.MODIFY.PENDING",$topic->Get("ModifiedById"));
- $topic->SendAdminEventMail("TOPIC.MODIFY.PENDING");
- }
-
- saveCustomFields('bb', $topic->Get('ResourceId'), 3);
- $ResourceId = $topic->Get("ResourceId");
- if($perm==2)
- $topic->AddToCategory($CategoryId);
- /* handle any image uploads */
- if(is_array($_FILES))
- {
- foreach($_FILES as $field => $file)
- {
- if($file["size"]>0)
- {
- $imgname = $_POST["imagename"][$field];
- $thumb = $_POST["isthumb"][$field];
- $IsDefault = (int)$_POST["imgdefault"][$field];
- if($thumb)
- {
- $LocalThumb=1;
- }
- else
- $LocalImage=1;
- $img = $objImageList->GetImageByName($ResourceId,$imgname);
- if(!is_object($img))
- {
- $img =& $objImageList->Add($imgname, "", $ResourceId,
- $LocalImage, $LocalThumb,
- "", "", 1, 0, $IsDefault, 0,0);
- }
- if($thumb)
- {
- $img->Set("LocalThumb",1);
- $url = $img->StoreUploadedImage($file, 1,"kernel/images/",$thumb);
- $img->Set("ThumbPath",$url);
- }
- else
- {
- $img->Set("LocalImage",1);
- $url = $img->StoreUploadedImage($file, 1,"kernel/images/",$thumb);
- $img->Set("LocalPath",$url);
- }
- $img->Update();
- }
- }
- }
-
- if(strlen($_GET["Confirm"]))
- {
- $var_list["t"] = $_GET["Confirm"];
- }
- else
- $var_list["t"] = $_GET["DestTemplate"];
- }
- $thiscat = $objCatList->GetCategory( $objCatList->CurrentCategoryID() );
- $thiscat->SetLastUpdate( adodb_mktime() );
- }
- break;
-
- case "bb_topic_reply": /* add post to topic */
- $thiscat =& $objCatList->GetCategory( $objCatList->CurrentCategoryID() );
- $ReplyPerm = $objSession->HasCatPermission("TOPIC.REPLY.ADD");
- if($ReplyPerm)
- {
- $t = $objTopicList->GetCurrentTopic();
- $u =& $objSession->CurrentUser;
- $body = str_replace('<br />','',$_POST['bb_post_reply_body']);
- $body = htmlspecialchars($body);
- if (is_object($u)) {
- $PAlias = $u->Get("Login");
- }
-
- $post =& $t->AddPost($PAlias,0, $body, $_POST["subject"]);
- $post->SetPostOption("show_sig",(int)$_POST["topic_sig"]);
- $post->SetPostOption("disable_smileys",(int)$_POST["topic_smile"]);
- $post->SetPostOption("disable_bbcode",(int)$_POST["topic_bbcode"]);
- $post->Set("ReplyTo",(int)$_POST["replyto"]);
- $post->Update();
-
- $ado = &GetADODBConnection();
-
- $sql = "SELECT count(*) AS count FROM ".GetTablePrefix()."Posting WHERE TopicId = ".$t->Data['TopicId'];
- $rs = $ado->Execute($sql);
-
- if ($rs->fields['count'] == $objConfig->Get("AutoTopicLockPosts") && ($objConfig->Get("AutoTopicLockPosts") > 0 || $objConfig->Get("AutoTopicLockPosts") != ''))
- {
- $objTopicList->LockTopic($t->Data['TopicId']);
- }
- $thiscat->SetLastUpdate( adodb_mktime() );
- $objPostingList->ResetCache( $objCatList->CurrentCategoryID() );
- $t->SetTodayPosts(+1);
- $t->Set('Modified', adodb_mktime() ); // topic modification date IS affected by this action
- $t->Update();
- }
- else
- {
- Permission_Error("You do not have access to post to this topic.");
- }
- break;
- case "bb_post_edit":
- $CatPerms= $objSession->HasCatPermission("TOPIC.REPLY.MODIFY");
- $OwnerPerms = $objSession->HasCatPermission("TOPIC.REPLY.OWNER.MODIFY");
- $p =& $objPostingList->GetCurrentPost();
- if(is_object($p))
- {
- $pid = $p->Get("PostingId");
- $UserId = $objSession->Get("PortalUserId");
- $u =& $objSession->CurrentUser;
- if (($UserId==$p->Get("CreatedById") && $OwnerPerms) || $CatPerms==1)
- {
- $body = str_replace("<br />","",$_POST["bb_post_reply_body"]);
- $body = htmlspecialchars($body);
- $body .= "\n\n[".language("lu_editedby")." ".$u->Get("Login")." ".language("lu_on")." ";
- $body .= LangDate(adodb_mktime())." ".LangTime(adodb_mktime())."]";
- $p->Set("PostingText",$body);
- $p->SetPostOption("show_sig",(int)$_POST["topic_sig"]);
- $p->SetPostOption("disable_smileys",(int)$_POST["topic_smile"]);
- $p->SetPostOption("disable_bbcode",(int)$_POST["topic_bbcode"]);
- $p->Set("Subject",$_POST["subject"]);
- $p->Update();
- $p->SendUserEventMail("POST.MODIFY",$p->Get("ModifiedById"));
- $p->SendAdminEventMail("POST.MODIFY");
-
- $t = $objTopicList->GetCurrentTopic();
- $t->Set('Modified', adodb_mktime() ); // topic modification date IS affected by this action
- $t->Update();
- }
- $objPostingList->Clear();
- $thiscat = $objCatList->GetCategory( $objCatList->CurrentCategoryID() );
- $thiscat->SetLastUpdate( adodb_mktime() );
- }
- else
- {
- $poster=$pid;
- Permission_Error("You do not have permission to edit this post.");
- }
- break;
-
- case "bb_post_delete":
- $CatPerms= $objSession->HasCatPermission("TOPIC.REPLY.DELETE");
- $p =& $objPostingList->GetCurrentPost();
- if(is_object($p))
- {
- $pid = $p->Get("CreatedById");
- $UserId = $objSession->Get("PortalUserId");
-
- if ($UserId==$pid || $CatPerms==1)
- {
- $Topic = $objTopicList->GetItem($p->Get("TopicId"));
- $PostCreated = $p->Get('CreatedOn');
- $p->Delete();
-
- $Topic->Decrement("Posts");
- $Topic->Set('ModifiedById', $objSession->Get("PortalUserId"));
-
- // get last post modification date and set it as topic modification date
- $db =& GetADODBConnection();
- $prefix = GetTablePrefix();
-
- $sql = 'SELECT MAX(IF(Modified=0,CreatedOn,Modified)) FROM '.$prefix.'Posting WHERE TopicId = '.$Topic->UniqueId();
- $last_update = $db->GetOne($sql);
- $Topic->Set('LastPostId',$Topic->GetLastPostId());
- $Topic->Set('LastPostDate', $last_update);
- $Topic->Update(null,$last_update);
-
- $Topic->refreshLastUpdate();
-
- $thiscat = $objCatList->GetCategory( $objCatList->CurrentCategoryID() );
- $thiscat->SetLastUpdate( adodb_mktime() );
-
- $u = $objUsers->GetUser($UserId);
- $posts = (int)$u->GetPersistantVariable("bb_posts");
- $posts--;
- if($posts<0)
- $posts=0;
- $u->SetPersistantVariable("bb_posts",$posts);
-
- $objTopicList->ResetCache( $objCatList->CurrentCategoryID() );
- $objPostingList->ResetCache( $objCatList->CurrentCategoryID() );
-
- // affect only today created posts during deleting
- if( adodb_date('Y-m-d',$PostCreated) == adodb_date('Y-m-d', adodb_mktime() ) )
- {
- $Topic->SetTodayPosts(-1);
- }
- }
- }
- $objPostingList->Clear();
-
- break;
- case "bb_topic_delete":
- $thiscat =& $objCatList->GetItem($objCatList->CurrentCategoryID());
- $perm = $objSession->HasCatPermission("TOPIC.DELETE");
- $OwnerPerm = $objSession->HasCatPermission("TOPIC.OWNER.DELETE");
- if(is_array($_POST["topiclist"]))
- {
- foreach($_POST["topiclist"] as $topicid)
- {
- $t =& $objTopicList->GetItem($topicid);
- if (($objSession->Get("PortalUserId") == $t->Get("OwnerId") && $OwnerPerm) || ($perm==1))
- {
- $objTopicList->Delete_Item($topicid);
- }
- }
- }
- else
- {
- $t = $objTopicList->GetCurrentTopic();
- if(is_object($t))
- {
- if (($objSession->Get("PortalUserId") == $t->Get("OwnerId") && $OwnerPerm) || ($perm==1))
- {
- $objTopicList->Delete_Item($t->Get("TopicId"));
-
- unset($t);
- }
- }
- }
- UpdateCategoryCount('Topic', $objCatList->CurrentCategoryID(), $objTopicList->GetListTypes());
-// UpdateCategoryCount('Posting', $objCatList->CurrentCategoryID(), $objPostingList->GetListTypes());
- $objTopicList->Clear();
- break;
-
- case "bb_rate_topic":
- //phpinfo(INFO_VARIABLES);
- if ($objSession->HasCatPermission("TOPIC.RATE"))
- $perm = 1;
- if ($perm == 0)
- {
- $MissingCount++;
- $FormError["bb_rate"]["review"] = language("lu_ferror_no_access");
- }
- else
- {
- $MissingCount = SetMissingDataErrors("bb_rate");
- $topic =& $objTopicList->GetCurrentTopic();
-
- $value = $objSession->InSpamControl($topic->Get("ResourceId"),"Rating");
-
- if($value)
- {
- $MissingCount++;
- $FormError["bb_rate"]["review"] = language("lu_rating_alreadyvoted");
- if(strlen($_GET["Duplicate"]))
- {
- $var_list["t"] = $_GET["Duplicate"];
- }
- else
- $var_list["t"] = $_GET["DestTemplate"];
-
- }
- if($MissingCount==0)
- {
- $ValName = "topic_RatingDelay_Value";
- $IntName = "topic_RatingDelay_Interval";
-
- $exp_secs = $objConfig->Get($ValName) * $objConfig->Get($IntName);
- $objSession->AddToSpamControl($topic->Get("ResourceId"),$exp_secs,"Rating");
- $vote = $_POST["rating"];
- $topic->SubmitVote($vote,"");
- if(strlen($_GET["Confirm"]))
- {
- $var_list["t"] = $_GET["Confirm"];
- }
- else
- $var_list["t"] = $_GET["DestTemplate"];
- }
- }
- break;
- case "m_simple_search":
- $type = $objItemTypes->GetTypeByName("Topic");
- $keywords = trim($_POST["keywords"]);
- $length = $objConfig->Get('Search_MinKeyword_Length');
-
- $isExact = (substr($keywords, 0, 2) == '\"' && substr($keywords, strlen($keywords) - 2, 2) == '\"');
-
- if ($isExact) {
- $performSearch = (strlen(trim(str_replace('\"', '', $keywords))) >= $length);
- }
- else {
- $key_arr = explode(' ', $keywords);
-
- /*foreach($key_arr as $value) {
- if (strlen($value) < $length) {
- $keywords = str_replace(' '.$value, '', $keywords);
- $keywords = str_replace($value.' ', '', $keywords);
- }
- }
-
- $keywords = str_replace(' ', ' ', $keywords);*/
-
- $performSearch = (strlen($keywords) >= $length);
- }
-
- if ($performSearch) {
- $objTopicSearch = new clsSearchResults("Topic",$objTopicList->classname);
- $objTopicSearch->SetKeywords($keywords);
- $objTopicSearch->AddSimpleFields('bb');
- if (is_numeric($objConfig->Get("SearchRel_Pop_topics"))) {
- $objTopicSearch->PctPop = ($objConfig->Get("SearchRel_Pop_topics")/100);
- }
- if(is_numeric($objConfig->Get("SearchRel_Keyword_topics"))) {
- $objTopicSearch->PctRelevance = ($objConfig->Get("SearchRel_Keyword_topics")/100);
- }
- if (is_numeric($objConfig->Get("SearchRel_Rating_topics"))) {
- $objTopicSearch->PctRating = ($objConfig->Get("SearchRel_Rating_topics")/100);
- }
- $objTopicSearch->PerformSearch($type->Get("ItemType"),$SortOrder,FALSE);
- //$objTopicSearch->SetRelevence($type->Get("ItemType"), "TopicId");
- }
- break;
- case "m_adv_search":
- switch($_GET["type"])
- {
- case 3: /* link */
- $objAdvSearch = new clsAdvancedSearchResults("Topic",$objTopicList->classname, $_GET["type"]);
- foreach($objSearchConfig->Items as $field)
- {
- $fld = $field->Get("FieldName");
-
- $Verb = $_POST["verb"][$field->Get("FieldName")];
- if(!strlen($Verb) && $field->Get("FieldType")=="boolean")
- {
- if($_POST["value"][$field->Get("FieldName")]!=-1)
- {
- $Value = $_POST["value"][$field->Get("FieldName")];
- $Verb = "is";
- }
- }
- else
- {
- $Value = $_POST["value"][$field->Get("FieldName")];
- }
- switch( $_POST["andor"][$field->Get("FieldName")])
- {
- case 1:
- $Conjuction = "AND";
- break;
- case 2:
- $Conjuction = "OR";
- break;
- default:
- $Conjuction = "";
- break;
- }
-
- if (strlen($Value) && $Verb=="any")
- {
- $Verb = 'contains';
- }
-
- if(strlen($Value) && strlen($Verb)>0 && $Verb!="any") {
- $objAdvSearch->AddAdvancedField($field->Get("TableName"),$field->Get("FieldName"),$Verb,$Value,$Conjuction, 'bb');
- }
- }
- $objAdvSearch->PerformSearch(3,NULL,TRUE);
- }
- break;
- case "m_simple_subsearch":
- $keywords = $_POST["keywords"];
- $type = $objItemTypes->GetTypeByName("Topic");
-
- if(strlen($keywords))
- {
- $objTopicSearch = new clsSearchResults("Topic",$objTopicList->classname);
- $objTopicSearch->SetKeywords($keywords);
- $objTopicSearch->AddSimpleFields('bb');
-
- if (is_numeric($objConfig->Get("SearchRel_Pop_topics"))) {
- $objTopicSearch->PctPop = ($objConfig->Get("SearchRel_Pop_topics")/100);
- }
- if (is_numeric($objConfig->Get("SearchRel_Keyword_topics"))) {
- $objTopicSearch->PctRelevance = ($objConfig->Get("SearchRel_Keyword_topics")/100);
- }
- if (is_numeric($objConfig->Get("SearchRel_Rating_topics"))) {
- $objTopicSearch->PctRating = ($objConfig->Get("SearchRel_Rating_topics")/100);
- }
-
-
- //$SearchResultIdList = $objLinkSearch->Result_IdList();
- if(count($SearchResultIdList)>0)
- {
- $objTopicSearch->PerformSearch($type->Get("ItemType"),$SortOrder,FALSE,$SearchResultIdList);
- //$objTopicSearch->SetRelevence($type->Get("ItemType"), "TopicId");
- }
- }
- break;
- case "bb_pref":
- //phpinfo(INFO_VARIABLES);
- $u = $objUsers->GetItem($objSession->Get("PortalUserId"));
-
- $objSession->SetPersistantVariable("Perpage_Topics",trim($_POST["perpage_topics"]));
- $objSession->SetPersistantVariable("Perpage_Postings",trim($_POST["perpage_posts"]));
-
- $objSession->SetPersistantVariable("owner_notify",trim( GetVar('owner_notify') ));
- $objSession->SetPersistantVariable("bb_pm_notify", $_POST["pm_notify"]); // notify me by email about new private messages
-
- $objSession->SetPersistantVariable("bbcode",trim($_POST["bbcode"])); // allow bbcodes
- $objSession->SetPersistantVariable("smileys",trim($_POST["smileys"])); // allow smilies
-
- $objSession->SetPersistantVariable("show_sig", trim(GetVar('show_sig')) ); // show signature
-
- $objSession->SetPersistantVariable("bb_signatures",trim($_POST["user_signatures"])); // show other signarures
-
- $signature = trim(GetVar('my_signature'));
- $signature = preg_replace('/(.*)<script(.*)>(.*)<\/script>(.*)/is','$1$4',$signature);
- $objSession->SetPersistantVariable("my_signature", $signature); // signature data
- SetVar('my_signature',$signature);
-
- saveCustomFields('u', $u->Get('ResourceId'), $u->type);
-
- if(is_array($_FILES))
- {
- foreach($_FILES as $field => $file)
- {
- if($file["size"]>0)
- {
- $imgname = $_POST["imagename"][$field];
-// $thumb = $_POST["isthumb"][$field];
-// $thumb = true;
- $IsDefault = (int)$_POST["imgdefault"][$field];
- /* if($thumb)
- {
- $LocalThumb=1;
- }
- else
- {
- $LocalImage=1;
- }*/
- $img = $objImageList->GetImageByName($u->Get("ResourceId"),$imgname);
-
- if(!is_object($img))
- {
- $img =& $objImageList->Add($imgname, $imgname, $u->Get("ResourceId"),
- 1, 1, "", "", 1, 0, $IsDefault, 0, 0);
- }
-
- if ($img->Get('Enabled'))
- {
- $img->DeleteLocalImage();
-
- $img->Set("LocalThumb",1);
- $url = $img->StoreUploadedImage($file, 1, "kernel/images/", 1);
- $img->Set("ThumbPath",$url);
-
- $img->Set("LocalImage",1);
- $file['tmp_name'] = $url;
- $url = $img->StoreUploadedImage($file, 1, "kernel/images/", 0, false);
- $img->Set("LocalPath",$url);
-
- if($url)
- $img->Update();
- else
- $img->Delete();
- }
- else
- {
- $FormError['bb_profile'][$imgname] = 'lu_avatar_disabled';
- }
- }
- }
- }
- break;
- case "bb_delete_avatar":
- $u = $objUsers->GetItem($objSession->Get("PortalUserId"));
- if(is_object($u))
- {
- if (!is_object($objImageList))
- {
- $objImageList = new clsImageList();
- }
- $img = $objImageList->GetImageByName($u->Get('ResourceId'), 'avatar', 1);
- if(is_object($img))
- {
- $img->Delete();
- }
- }
- break;
- case "bb_sort":
- $current_field = $objSession->GetPersistantVariable('Topic_SortField');
- $order = strtolower( $objSession->GetPersistantVariable('Topic_SortOrder') );
- $field = $_GET["col"];
-
-// echo "CUR FIELD: $current_field; NEW: ".$field."<BR>";
-
- if($current_field != $field)
- {
- $objSession->SetPersistantVariable("Topic_SortField", $field);
- $objSession->SetPersistantVariable("Topic_SortOrder","desc");
- }
- else
- {
- if($order=="asc" || !strlen($order))
- {
- $objSession->SetPersistantVariable("Topic_SortOrder","desc");
- }
- else
- $objSession->SetPersistantVariable("Topic_SortOrder","asc");
- }
- break;
-
-
- case "bb_pm_sort":
- $current_field = $objSession->GetPersistantVariable("PMs_Sortfield");
- $order = strtolower($objSession->GetPersistantVariable("PMs_SortOrder"));
- $field = $_GET["col"];
-
-// echo "CUR FIELD: $current_field; NEW: ".$field."<BR>";
-
- if($current_field != $field)
- {
- $objSession->SetPersistantVariable("PMs_Sortfield", $field);
- $objSession->SetPersistantVariable("PMs_SortOrder","desc");
- }
- else
- {
- if($order=="asc" || !strlen($order))
- {
- $objSession->SetPersistantVariable("PMs_SortOrder","desc");
- }
- else
- $objSession->SetPersistantVariable("PMs_SortOrder","asc");
- }
- break;
-
- case 'bb_new_pm':
- $MissingCount = 0;
-
- if ($objSession->Get('PortalUserId') <= 0) {
- $application->Redirect('index');
- }
-
- $PmTo = GetVar('pm_to');
- if (!$PmTo) {
- $FormError['new_pm']['pm_to'] = language('lu_recipent_required');
- $MissingCount++;
-
- }
- else {
- $ToUser =& $objUsers->GetItemByField('Login', $PmTo);
- if (!is_object($ToUser)) {
- $FormError['new_pm']['pm_to'] = language('lu_recipient_doesnt_exit');
- $MissingCount++;
- }
- else {
- $ToId = $ToUser->UniqueId();
- }
- }
-
- if ($MissingCount == 0) {
- $body = str_replace('<br />','',$_POST['bb_pm_body']);
- $body = htmlspecialchars($body);
- $pm =& $objPMList->Add_PrivateMessage($ToId, inp_striptags($_POST['pm_subject']),$body);
-
- $pm->SetOption('show_sig',(int)$_POST['pm_sig']);
- $pm->SetOption('disable_smileys',(int)$_POST['pm_smile']);
- $pm->SetOption('disable_bbcode',(int)$_POST['pm_bbcode']);
- $pm->UpdateOptions();
-
- $var_list['t'] = GetVar('Confirm') ? GetVar('Confirm') : GetVar('DestTemplate');
- }
-
- break;
- case 'bb_delete_pm':
- $pm =& $objPMList->GetCurrentItem();
- $pm->Delete();
- break;
-}
-?>
Property changes on: trunk/in-bulletin/frontaction.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.50
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/module_init.php
===================================================================
--- trunk/in-bulletin/module_init.php (revision 12824)
+++ trunk/in-bulletin/module_init.php (nonexistent)
@@ -1,65 +0,0 @@
-<?php
-global $ItemTypes, $ParserFiles;
-
-$ItemTypes["topic"]=3;
-$ItemTypes["post"]=30;
-$ItemTables[3] = "Topic";
-$ParserFiles[] = "in-bulletin/parser.php";
-
-include_once("topic.php");
-include_once("censorship.php");
-include_once("emoticon.php");
-include_once("posting.php");
-include_once("bbcat.php");
-include_once("privatemessage.php");
-
-class clsTopicList extends _clsTopicList
-{
- function clsTopicList($CatID=NULL)
- {
- $this->_clsTopicList($CatID);
- $this->classname = "clsTopic";
- }
-}
-
-class clsPostingList extends _clsPostingList
-{
- function clsPostingList()
- {
- $this->_clsPostingList();
- $this->classname="clsPosting";
- }
-}
-
-/* Returns Main Item Collection */
-function &bb_ItemCollection()
-{
- global $objTopicList;
- return $objTopicList;
-}
-
-$objTopicList = new clsTopicList();
-$objPostingList = new clsPostingList();
-$objPMList = new clsPrivateMessageList();
-
-
-$objTopicList->Page=$bb_var_list["tp"];
-$objTopicList->SetCurrentItem($bb_var_list["top"]);
-$objPostingList->Page=$bb_var_list["pp"];
-$objPostingList->TopicID=$bb_var_list["top"];
-$objTopicList->Clear();
-$objTopicList->CategoryID = 0;
-
-if($bb_var_list['pm_id']) $objPMList->SetCurrentItem($bb_var_list['pm_id']);
-
-$objSmileys = new clsEmoticonList();
-
-$objCensorList = new clsCensorship();
-
-/*if there are customized tags for this module, include them below: */
-$tag_override = $pathtoroot."in-bulletin/customtags.php";
-if(file_exists($tag_override))
-{
- require_once($tag_override);
-}
-?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/module_init.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/privatemessage.php
===================================================================
--- trunk/in-bulletin/privatemessage.php (revision 12824)
+++ trunk/in-bulletin/privatemessage.php (nonexistent)
@@ -1,369 +0,0 @@
-<?php
-
-define('TYPE_MESSAGE', 31);
-RegisterPrefix("clsPrivateMessage","pm","in-bulletin/privatemessage.php");
-
-class clsPrivateMessage extends clsParsedItem
-{
- function clsPrivateMessage($id = null)
- {
- parent::clsParsedItem($id);
- $this->tablename = GetTablePrefix().'PrivateMessages';
- $this->type = TYPE_MESSAGE;
- $this->NoResourceId = 1;
- //$this->BasePermission = 'PM';
- $this->id_field = 'PmId';
- $this->TagPrefix = 'pm';
- $prefix = GetTablePrefix();
- $this->SelectSQL = 'SELECT pm.*, pmb.Subject, pmb.Body, pmb.Options, pu.Login
- FROM %s AS pm
- LEFT JOIN '.$prefix.'PrivateMessageBody AS pmb ON pm.PMBodyId = pmb.PMBodyId
- LEFT JOIN '.$prefix.'PortalUser AS pu ON pu.PortalUserId = pm.FromId
- WHERE %s';
- }
-
- function ParseObject($element)
- {
- global $objSession, $objUsers, $var_list_update, $bb_var_list_update;
-
- $extra_attribs = ExtraAttributes($element->attributes);
- if(strtolower($element->name) == $this->TagPrefix)
- {
- $field = strtolower( $element->attributes['_field'] );
- switch($field)
- {
- case 'id':
- $ret = $this->UniqueId();
- break;
-
- case 'body':
- global $objCensorList, $objSmileys;
- $ret = $this->Get('Body');
- $ret = str_replace( "[/code]\r\n",'[/code]', $ret);
- $ret = str_replace('&quot;', '"', $ret);
- $ret = $objCensorList->CensorText($ret);
- if(!$this->GetOption("disable_smileys"))
- {
- $ret = $objSmileys->ParseText($ret);
- }
-
- if(!$this->GetOption("disable_bbcode"))
- {
- $ret = ReplaceBBCode($ret);
- }
- $ret = nl2br($ret);
-
- if( $this->GetOption("show_sig") && $element->GetAttributeByName('_signature') > 0 )
- {
- $Sender =& $objUsers->GetItem($this->Get('FromId'));
-
- $showsig = $this->GetOption("show_sig"); // show post creator signature in this post
- $UserSig = (int)$objSession->GetPersistantVariable("bb_signatures"); // viewing user wishes to see other signatures
- if($showsig == 1 && $UserSig == 1)
- {
- $sig = $Sender->GetPersistantVariable("my_signature");
-
- if( !$this->GetOption("disable_smileys") ) $sig = $objSmileys->ParseText($sig);
- if( !$this->GetOption("disable_bbcode") ) $sig = ReplaceBBCode($sig);
- $ret .= "<br /><br />".nl2br($sig);
- }
- }
- break;
-
- case 'reply_link':
- $var_list_update['t'] = $element->GetAttributeByName('_PMTemplate');
- $bb_var_list_update['pm_id'] = $this->UniqueId();
-
- $ToUser =& $objUsers->GetItem($this->Get('FromId'));
- if( is_object($ToUser) )
- {
- $ret = HREF_Wrapper('', Array('ToUser' => $ToUser->Get('Login'), 'IsReply' => 1) );
- }
- else
- {
- $ret = '';
- }
- break;
-
- case 'delete_link':
- $var_list_update['t'] = 'inbulletin/pm_list';
- $bb_var_list_update['pm_id'] = $this->UniqueId();
- $ret = HREF_Wrapper('', Array('Action' => 'bb_delete_pm', 'FolderId' => (int)GetVar('FolderId') ) );
- break;
-
- case 'fromlogin':
- $Me = $objUsers->GetItem( $objSession->Get('PortalUserId') );
- if( is_object($Me) )
- {
- $ret = $Me->Get('Login');
- }
- break;
-
- case 'fromuser':
- $ret = $this->Get('SenderUser');
- break;
-
- case 'senderuser':
- $UserID = $this->Get('FromId') != $objSession->Get('PortalUserId') ? $this->Get('FromId') : $this->Get('ToId');
- $FromUser = $objUsers->GetItem($UserID);
- if( is_object($FromUser) )
- {
- $ret = $FromUser->Get('Login');
- }
- else
- {
- $ret = '';
- }
-
- break;
-
- case 'link':
- $var_list_update['t'] = $element->GetAttributeByName('_PMTemplate');
- $bb_var_list_update['pm_id'] = $this->UniqueId();
- $ret = HREF_Wrapper('', Array('FolderId' => (int)GetVar('FolderId') ) );
- break;
-
- case 'datecreated':
- $ret = adodb_date($element->GetAttributeByName('_Format'), $this->Get('CreatedOn') );
- break;
-
- case 'subject':
- // PM Statuses = {0 - Unread, 1 - Viewed, 2 - Read, 3 - Replyed, 4 - Sent}
- $subject = $this->Get('Subject') ? $this->Get('Subject') : '['.language('no_subject').']';
- $ret = $this->Get('Status') < 2 ? '<b>'.$subject.'</b>' : $subject;
- $ret = get_magic_quotes_gpc() ? $ret : stripslashes($ret);
- break;
-
- default:
- $ret = parent::ParseObject($element);
- break;
- }
- }
- return $ret;
- }
-
- function GetOption($name)
- {
- $opt = decbin($this->Get('Options'));
- $opt = str_pad($opt, 8, '0');
-
- if($opt == 0) return false;
- switch($name)
- {
- case "show_sig":
- $option = $opt[0];
- break;
- case "disable_bbcode":
- $option = $opt[1];
- break;
- case "disable_smileys":
- $option = $opt[2];
- break;
- }
- return $option;
- }
-
- function Delete()
- {
- // if all references to pm body were deleted -> also delete message body
- $db =& GetADODBConnection();
- $BodyID = $this->Get('PMBodyId');
- $BodyTable = GetTablePrefix().'PrivateMessageBody';
-
- $ret = parent::Delete();
- if($ret)
- {
- $db->Execute('UPDATE '.$BodyTable.' SET ReferenceCount = ReferenceCount - 1 WHERE PMBodyId = '.$BodyID);
- }
- $db->Execute('DELETE FROM '.$BodyTable.' WHERE PMBodyId = '.$BodyID.' AND ReferenceCount = 0');
- }
-
- function SetOption($name,$value)
- {
- $opt = str_pad(decbin($this->Get('Options')),8,"0");
-
- switch($name)
- {
- case "show_sig":
- $option = 0;
- break;
- case "disable_bbcode":
- $option = 1;
- break;
- case "disable_smileys":
- $option = 2;
- break;
- }
- if(is_numeric($option))
- {
- if($value)
- {
- $opt[$option] =1;
- }
- else
- $opt[$option]=0;
- }
- $this->Set('Options', bindec($opt) );
- return $option;
- }
-
- function UpdateOptions()
- {
- $db =& GetADODBConnection();
- $sql = 'UPDATE '.GetTablePrefix().'PrivateMessageBody SET Options = '.$this->get('Options').' WHERE PMBodyId = '.$this->Get('PMBodyId');
- $db->Execute($sql);
- }
-
-}
-
-class clsPrivateMessageList extends clsItemList
-{
- var $FolderId = 0; // folder id to get private messages from
-
- function clsPrivateMessageList()
- {
- global $bb_var_list;
- parent::clsItemList();
- $this->classname = 'clsPrivateMessage';
- $this->SetTable('live', GetTablePrefix().'PrivateMessages');
- $this->Page = $bb_var_list['pmp'];
- $this->PerPageVar = 'Perpage_PrivateMessages';
- $this->PageEnvar = 'bb_var_list_update';
- $this->PageEnvarIndex = 'pmp';
- $this->EnablePaging = true;
- //$this->AddSortField('PMs_Sortfield','PMs_SortOrder');
- $this->ItemType = TYPE_MESSAGE;
- }
-
- /**
- * @return void
- * @param int $ToId
- * @param string $Subject
- * @param string $Text
- * @desc Create new private mesage
- */
- function &Add_PrivateMessage($ToId, $Subject, $Text)
- {
- global $objSession, $objUsers;
-
- // PM Statuses = {0 - Unread, 1 - Viewed, 2 - Read, 3 - Replyed, 4 - Sent}
- // PM Folders = {0 - Inbox, -1 - Sent}
-
- $db =& GetADODBConnection();
- $sql = 'INSERT INTO '.GetTablePrefix().'PrivateMessageBody(Subject,Body,ReferenceCount) VALUES (%s,%s,2)';
- $db->Execute( sprintf($sql, $db->qstr($Subject, get_magic_quotes_gpc() ), $db->qstr($Text, get_magic_quotes_gpc() ) ) );
- if( $db->ErrorNo() == 0 )
- {
- // pm body was inserted
- $pm =& $this->GetDummy();
- $FromId = $objSession->Get('PortalUserId');
- $BodyId = $db->Insert_ID();
- $CreatedOn = adodb_date("U");
- // create message in sender "Sent" folder
- $pm->Set( Array('FromId', 'ToId', 'CreatedOn','FolderId','Status','PMBodyId','PmId'),
- Array($FromId, $ToId, $CreatedOn, -1, 2, $BodyId,0) );
- $pm->Create();
-
- // create message in recipient "Inbox" folder
- $pm->Set( Array('FromId', 'ToId', 'CreatedOn','FolderId','Status','PMBodyId','PmId'),
- Array($FromId, $ToId, $CreatedOn, 0, 0, $BodyId,0) );
- $pm->Create();
-
- $Recipient =& $objUsers->GetItem($ToId);
- if( is_object($Recipient) )
- {
- // send email to recipient that pm were created (if he allowed this)
- if($Recipient->GetPersistantVariable('bb_pm_notify') == 1)
- {
- $pm->Set('SenderUser', $Recipient->Get('Login') );
- $objSession->SetVariable('ToUser', $pm->Get('SenderUser') );
- $pm->SendUserEventMail('PM.ADD', $ToId);
- }
- }
- }
- return $pm;
- }
-
- function LoadUserPMs($attribs=array())
- {
- global $objSession, $objConfig;
-
- $this->SetFolderId( GetVar('FolderId') );
- $OrderBy ='';
-
- //$this->Clear();
-
- $limit = $this->GetPageLimitSQL();
-
- // apply sorting
- $sort_field = trim($objSession->GetPersistantVariable('PMs_Sortfield'));
- if( !strlen($sort_field) )
- {
- $sort_field = trim( $objConfig->Get('PMs_Sortfield') );
- }
- if($sort_field)
- {
- $OrderBy = 'ORDER BY '.$sort_field.' '.$objSession->GetPersistantVariable('PMs_SortOrder');
- }
- else
- {
- $OrderBy = 'ORDER BY CreatedOn DESC';
- }
-
- $where = 'pm.FolderId = '.$this->FolderId;
- $ThisUserId = $objSession->Get('PortalUserId');
- switch($this->FolderId)
- {
- case 0: // inbox
- $where .= ' AND pm.ToId = '.$ThisUserId;
- break;
-
- case -1: // sent
- $where .= ' AND pm.FromId = '.$ThisUserId;
- break;
- }
- $prefix = GetTablePrefix();
- if($this->FolderId == -1)
- {
- $field_list = 'pm.ToId AS FromId, pm.FromId AS ToId';
- $join_clause = 'pu.PortalUserId = pm.ToId';
- }
- else
- {
- $field_list = 'pm.ToId AS ToId, pm.FromId AS FromId';
- $join_clause = 'pu.PortalUserId = pm.FromId';
- }
-
- $sql = 'SELECT pm.PmId, pm.FolderId, pm.Status, pm.PMBodyId, pm.CreatedOn, pmb.Subject, pmb.Body, pu.Login AS SenderUser, '.$field_list.'
- FROM '.$this->SourceTable.' AS pm LEFT JOIN '.$prefix.'PrivateMessageBody AS pmb ON pm.PMBodyId = pmb.PMBodyId LEFT JOIN '.$prefix.'PortalUser AS pu ON '.$join_clause.'
- WHERE '.$where;
-
- $this->QueryItemCount = QueryCount($sql);
-
- $sql .= " ".$OrderBy;
-
- return $this->Query_Item($sql, $limit);
- }
-
- function Query_Item($sql,$limit = null, $fix_method = 'set_first')
- {
- if($sql !== $this->LastQuerySQL && $limit !== $this->LastLimitClause)
- {
- $ret = parent::Query_Item($sql,$limit,$fix_method);
- $this->LastQuerySQL = $sql;
- $this->LastLimitClause = $limit;
- return $ret;
- }
- else
- {
- return $this->Items;
- }
- }
-
- function SetFolderId($NewId)
- {
- $this->FolderId = (int)$NewId;
- }
-}
-
-?>
Property changes on: trunk/in-bulletin/privatemessage.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.15
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/posting.php
===================================================================
--- trunk/in-bulletin/posting.php (revision 12824)
+++ trunk/in-bulletin/posting.php (nonexistent)
@@ -1,996 +0,0 @@
-<?php
-
-RegisterPrefix("clsPosting","posting","in-bulletin/posting.php");
-
-class clsPosting extends clsItem
-{
- var $Poster;
- var $Locked;
- var $Children;
-
- function clsPosting($PostingId=NULL)
- {
- $this->clsItem();
- $this->adodbConnection = &GetADODBConnection();
- $this->tablename=GetTablePrefix()."Posting";
- $this->type=30;
- $this->BasePermission="TOPIC.REPLY";
- $this->TagPrefix="posting";
- $this->id_field = "PostingId";
- $this->Locked = FALSE;
- if(isset($PostingId))
- $this->LoadFromDatabase($PostingId);
- }
-
- function Delete()
- {
- $oldparent = $this->Get("PostingId");
- $newparent = $this->Get("ReplyTo");
- $sql="UPDATE ".$this->tablename." SET ReplyTo=$newparent WHERE ReplyTo=$oldparent";
- $this->adodbConnection->Execute($sql);
- parent::Delete();
- }
-
- function GetUserPosts($UserId)
- {
- global $Errors, $objUsers;
- $sql = "SELECT COUNT(PostingId) as pcount FROM ".$this->tablename." WHERE CreatedById=$UserId";
- $result = $this->adodbConnection->Execute($sql);
- if ($result === false)
- {
- $Errors->AddError("error.DatabaseError",NULL,$this->adodbConnection->ErrorMsg(),"","clsPosting","GetUserPosts");
- return false;
- }
- $posts = $result->fields["pcount"];
-
- return $posts;
- }
-
- function PostOption($name)
- {
- $OptionsMap = Array('show_sig'=>128,'disable_bbcode'=>64,'disable_smileys'=>32);
- if(!isset($OptionsMap[$name]))return false;
- $opt = $this->Get("Options");
- return (($opt & $OptionsMap[$name]) == $OptionsMap[$name]) ? 1 : 0;
- }
-
- function SetPostOption($name,$value)
- {
- $OptionsMap = Array('show_sig'=>128,'disable_bbcode'=>64,'disable_smileys'=>32);
- if(!isset($OptionsMap[$name]))return false;
-
- $opt=(int)$this->Get("Options");
- if($value)
- {
- $opt|=$OptionsMap[$name];
- }
- else
- {
- $opt=$opt&~$OptionsMap[$name];
- }
- $this->Set("Options",$opt);
- }
-
- function LoadFromDatabase($Id)
- {
- global $Errors;
-
- if(!isset($Id))
- {
- $Errors->AddError("error.AppError",NULL,'Internal error: LoadFromDatabase id',"",get_class($this),"GetUserPosts");
- return false;
- }
-
- $sql = sprintf("SELECT * FROM ".$this->tablename." WHERE PostingId = '%s'",$Id);
- $result = $this->adodbConnection->Execute($sql);
- if ($result === false)
- {
- $Errors->AddError("error.DatabaseError",NULL,$this->adodbConnection->ErrorMsg(),"",get_class($this),"LoadFromDatabase");
- return false;
- }
- $this->SetFromArray($result->fields);
- $this->Clean();
- return true;
- }
-
- function GetTotalPosts()
- {
- global $Errors,$objSession;
-
- $sql = "SELECT count(*) as PostCount FROM ".$this->tablename;
- $result = $this->adodbConnection->Execute($sql);
- if ($result === false || !$result)
- {
- $Errors->AddError("error.DatabaseError",NULL,$objSession->adodbConnection->ErrorMsg(),"","clsPosting","GetTotalPosts");
- return false;
- }
- return $result->fields["PostCount"];
- }
-
- function RenderText($text,$QouteTemplate)
- {
- global $objSmileys;
-
- $ret = $this->ReplaceQuote($ret,$QuoteTemplate);
-
- if(!$this->PostOption("disable_smileys"))
- $ret = $objSmileys->ParseText($ret);
- if(!$this->PostOption("disable_bbcode"))
- $ret = ReplaceBBCode($ret);
- return $ret;
- }
-
- function ReplaceQuote($text,$QuoteTemplate)
- {
- global $objPostingList;
-
- //$template = new clsItemTemplate();
- if(strstr($text,"[quote"))
- {
- $text .= " ";
- $pos = strpos($text,"[quote");
- $endopen = strpos($text,"]",$urlpos);
- $closepos = getLastStr($text,"[/quote]"); // strrpos($text,"[/quote]");
-
- if($endopen && $closepos)
- {
- $tagText = substr($text,$pos, $closepos + strlen("[/quote]") - $pos);
- $innerText = substr($text,$endopen+1,$closepos - $endopen-1);
- $tagText = substr($text,$pos+1,$endopen - $pos-1);
- $attr = substr($tagText,6);
- $attribs = explode("=",$attr);
-// echo "Tag: $tagText Inner: $innerText<br>\n";
-// echo $attribs[0]."=".$attribs[1];
- if($attribs[0]=="id")
- {
- $QuoteId = $attribs[1];
- $p = new clsPosting($QuoteId);// $objPostingList->GetItem($QuoteId);
- if(is_object($p))
- {
- // echo "Parsing $QuoteTemplate..";
- $p->Set("PostingText",$innerText);
- $text = substr($text,0,$pos).$p->ParseTemplate($QuoteTemplate).substr($text,$closepos+8)." ";
- // echo $text;
- }
- }
- }
- }
- return $text;
- }
-
- function Link($template="")
- {
- global $var_list_update, $bb_var_list_update, $var_list;
-
- if(strlen($template))
- {
- $var_list_update["t"] = $template;
- }
- else
- $var_list_update["t"] = $var_list["t"];
-
- $bb_var_list_update["top"] = $this->Get("TopicId");
- $bb_var_list_update["post"] = $this->Get("PostingId");
- $ret = HREF_Wrapper();
- unset($bb_var_list_update["top"],$bb_var_list_update["post"], $var_list_update["t"]);
- return $ret;
- }
-
- function ParseObject($element)
- {
- global $objConfig, $objSmileys, $objSession, $objUsers, $objCatList,
- $var_list_update, $var_list, $bb_var_list_update, $objCensorList;
-
- $extra_attribs = ExtraAttributes($element->attributes);
- if(strtolower($element->name)==$this->TagPrefix)
- {
- $field = strtolower($element->attributes["_field"]);
- switch($field)
- {
- case "id":
- case "postingid":
- /*
- @field:posting.postingid
- @description: Returns the ID field for the post
- */
- $ret = $this->Get("PostingId");
- break;
- case "subject":
- /*
- @field:posting.subject
- @description: Returns the post subject, if set
- */
- $ret = $objCensorList->CensorText($this->Get("Subject"));
- break;
- /*
- @field:posting.image
- @description:Return an image associated with the topic
- @attrib:_default:bool:If true, will return the default image if the requested image does not exist
- @attrib:_name::Return the image with this name
- @attrib:_thumbnail:bool:If true, return the thumbnail version of the image
- @attrib:_imagetag:bool:If true, returns a complete image tag. exta html attributes are passed to the image tag
- */
- case "modifiedby":
- /*
- @field:posting.modifiedby
- @description:parse a user field of the user that last modified the topic
- @attrib:_usertag::User field to return (defaults to login ID)
- */
- $field = $element->attributes["_usertag"];
- if(!strlen($field))
- {
- $field = "user_login";
- }
- $u = $objUsers->GetItem($this->Get("ModifiedById"));
- $ret = $u->parsetag($field);
- break;
- case "depth":
- /*
- @field:posting.depth
- @description: For threaded post lists, this field returns the depth of the post (how many replies deep this post is)
- @attrib:_multiplier:int:value to multiply the dept by
- */
- $ret = (int)$this->Get("Depth");
- if(is_numeric($element->attributes["_multiplier"]))
- $ret = $ret * $element->attributes["_multiplier"];
- break;
- case "createdby":
- /*
- @field:posting.createdby
- @description:parse a user field of the user that created this post
- @attrib:_usertag::User field to return (defaults to login ID)
- */
- $userfield = $element->attributes["_usertag"];
- if(!strlen($userfield))
- {
- $userfield = "login";
- }
- if(!is_object($this->Poster))
- {
- $user_id = $this->Get('CreatedById');
- if (!$user_id) { // we have registred user, not guest
- // user_id == 0 - "View Threaded" issued just after deleting reply.
- global $bb_var_list;
- $topic_id = $bb_var_list['top'];
- $sql = 'SELECT PostingId FROM '.GetTablePrefix().'Posting
- WHERE TopicId = '.$topic_id.'
- ORDER BY CreatedOn ASC';
- $db =& GetADODBConnection();
- $bb_var_list['post'] = $db->GetOne($sql);
- $this->LoadFromDatabase($bb_var_list['post']);
- }
-
- $this->Poster =& $objUsers->GetItem( $this->Get('CreatedById') );
- }
-
- $condition = is_object($this->Poster);
- if ($element->attributes['_isactive'])
- {
- $condition = $condition && ($this->Poster->Get('Status')==1);
- }
-
- if ($element->attributes["_name"]=='avatar')
- {
- if (!is_object($objImageList)) $objImageList =& new clsImageList();
- if ($this->Poster->Get('Status')==1)
- {
- $objAvatar = $objImageList->GetImageByName($this->Poster->Get('ResourceId'), 'avatar', 1);
- }
- $condition = $condition && is_object($objAvatar);
- //$condition = $condition && $this->Poster->;
- }
-
- if($condition)
- {
- $e = new clsHtmlTag();
- $e->name = $this->Poster->TagPrefix;
- $e->attributes = $element->attributes;
- $e->attributes["_field"] = $userfield;
- $ret = $this->Poster->ParseObject($e);
- }
- else
- {
- $ret = '';
- }
- break;
- case "user_posts":
- /*
- @field:posting.user_posts
- @description:Number of posts made by the creator of this post
- */
- if(!is_object($this->Poster))
- {
- $this->Poster =& $objUsers->GetItem($this->Get("CreatedById"));
- }
- $ret = $this->Poster->GetPersistantVariable("bb_posts");
- if(!strlen($ret))
- {
- (int)$ret = $this->GetUserPosts($this->Get("CreatedById"));
- $this->Poster->SetPersistantVariable("bb_posts",$ret);
- }
- break;
-
- case "posteralias":
- /*
- @field:posting.posteralias
- @description: Alias used by the poster, or the login name if not set
- */
- $ret = $this->Get("PosterAlias");
- if(!strlen($ret))
- {
- if(!is_object($this->Poster)) {
- $this->Poster =& $objUsers->GetItem($this->Get("CreatedById"));
- }
-
- $ret = $this->Poster->parsetag("user_login");
-
- if ($ret == '') {
- $ret = admin_language("lu_Guest");
- }
- }
- break;
- case "custom":
- /*
- @field:posting.custom
- @description:Returns a custom field
- @attrib:_customfield::field name to return
- @attrib:_default::default value
- */
- $field = $element->attributes["_customfield"];
- $default = $element->attributes["_default"];
- $ret = $this->GetCustomFieldValue($field,$default);
- break;
- case "date":
- /*
- @field:posting.date
- @description:Returns the date/time the post was created
- @attrib:_tz:bool:Convert the date to the user's local time
- @attrib:_part::Returns part of the date. The following options are available: month,day,year,time_24hr,time_12hr
- */
- $d = $this->Get('CreatedOn');
- if (!$element->GetAttributeByName('_tz')) {
- $element->SetAttributeByName('_tz', 'auto');
- }
- $ret = $this->ParseTimeStamp($d,$element->attributes);
- break;
- case "modifieddate":
- /*
- @field:posting.modifieddate
- @description:Returns the date/time the topic was last modified
- @attrib:_tz:bool:Convert the date to the user's local time
- @attrib:_part::Returns part of the date. The following options are available: month,day,year,time_24hr,time_12hr
- */
- $d = $this->Get('Modified');
- if (!$element->GetAttributeByName('_tz')) {
- $element->SetAttributeByName('_tz', 'auto');
- }
- $ret = $this->ParseTimeStamp($d,$element->attributes);
- break;
-
- case "link":
- /*
- @field:posting.link
- @description: Returns a link to the post
- @attrib:_perm::Comma-separated permission list to check, any one permission granted to the user will create the link
- @attrib:_template:tpl:Tempalte to link to if access is granted
- @attrib:_text:lang:Language tag to display as the link text
- @attrib:_plaintext:: Plain text to use instead of language tag
- @attrib:image::Image URL to display in the anchor tag
- */
- $p = $element->attributes["_perm"];
- if(strlen($p))
- {
- $hasperm = $objSession->HasCatPermission($p);
- }
- else
- $hasperm = TRUE;
- if($hasperm)
- {
- $t = $element->attributes["_template"];
- $url = $this->Link($t);
- if($element->attributes["_fulltag"])
- {
- $ret = "<A $extra_attribs HREF=\"$url\">";
- $text = $element->attributes["_text"];
- if(!strlen($text))
- {
- $text = $element->attributes["_plaintext"];
- if(!strlen($text))
- {
- if(strlen($element->attributes["_image"]))
- {
- $text = "<IMG SRC=\"".$element->attributes["_image"]."\" BORDER=\"0\">";
- }
- }
- $ret .= $text."</A>";
- }
- }
- else
- $ret = $url;
- }
- else
- $ret = "";
- break;
- case "link_edit":
- /*
- @field:posting.link_edit
- @description: Returns a link to edit the post. A complete anchor tag is returned, and the tag class is set to 'topic_reply'
- @attrib:_template:tpl:Template link should point to
- @attrib:_text:lang:Language tag to display as the link text
- @attrib:_plaintext:: Plain text to use instead of language tag
- @attrib:image::Image URL to display in the anchor tag
- */
- //echo $this->Get("CreatedById")." User: ".$objSession->Get("PortalUserId");
- $hasperm = (($this->Get("CreatedById")==$objSession->Get("PortalUserId") &&
- $objSession->HasCatPermission("TOPIC.REPLY.OWNER.MODIFY")) ||
- $objSession->HasCatPermission("TOPIC.REPLY.MODIFY"));
- if($hasperm && !$this->Locked)
- {
- $t = $element->attributes["_template"];
- $url = $this->Link($t);
- if($element->attributes["_fulltag"])
- {
- $ret = "<A $extra_attribs HREF=\"$url\">";
- $text = $element->attributes["_text"];
- if(!strlen($text))
- {
- $text = $element->attributes["_plaintext"];
- if(!strlen($text))
- {
- if(strlen($element->attributes["_image"]))
- {
- $text = "<IMG SRC=\"".$element->attributes["_image"]."\" BORDER=\"0\">";
- }
- }
- $ret .= $text."</A>";
- }
- else
- $ret .= language($text)."</A>";
- }
- else
- $ret = $url;
- }
- else
- $ret = "";
- break;
- case "link_delete":
- /*
- @field:topic.link_delete
- @description: Returns a link to delete the post. A complete anchor tag is returned, and the tag class is set to 'topic_reply'
- @attrib:_template:tpl:Template link should point to
- @attrib:_text:lang:Language tag to display as the link text
- @attrib:_plaintext:: Plain text to use instead of language tag
- @attrib:image::Image URL to display in the anchor tag
- */
- $OwnerPerm = ($objSession->HasCatPermission("TOPIC.REPLY.OWNER.DELETE") &&
- $this->Get("CreatedById")==$objSession->Get("PortalUserId"));
- if(($objSession->HasCatPermission("TOPIC.REPLY.DELETE") || $OwnerPerm)
- && !$this->Locked)
- {
- $t = $element->attributes["_template"];
- if(strlen($t))
- {
- $var_list_update["t"] = $t;
- }
- else
- $var_list_update["t"] = $var_list["t"];
- $text = $element->attributes["_text"];
- $plaintext = $element->attributes["_plaintext"];
- $bb_var_list_update["top"] = $this->Get("TopicId");
- $bb_var_list_update["post"] = $this->Get("PostingId");
- $ret = "<A $extra_attribs HREF=\"".HREF_Wrapper('', Array('Action' => 'bb_post_delete') ) ."\">";
- $text = $element->attributes["_text"];
- if(!strlen($text))
- {
- $text = $element->attributes["_plaintext"];
- if(!strlen($text))
- {
- if(strlen($element->attributes["_image"]))
- {
- $text = "<IMG SRC=\"".$element->attributes["_image"]."\" BORDER=\"0\">";
- }
- }
- $ret .= $text."</A>";
- }
- else
- $ret .= language($text)."</A>";
- }
- else
- $ret = "";
- unset($bb_var_list_update["top"]);
- break;
- case "link_quote":
- /*
- @field:posting.link_quote
- @description: Returns a link to reply to the post, with the post quoted in the reply
- @attrib:_template:tpl:Template link should point to
- @attrib:_text:lang:Language tag to display as the link text
- @attrib:_plaintext:: Plain text to use instead of language tag
- @attrib:image::Image URL to display in the anchor tag
- @attrib:_fulltag:bool:If set true, returns a complete anchor tag, otherwise returns just the URL
- */
- $hasperm = $objSession->HasCatPermission("TOPIC.REPLY.ADD");
- if($hasperm && !$this->Locked)
- {
- $t = $element->attributes["_template"];
-
- $url = $this->Link($t);
- if($element->attributes["_fulltag"])
- {
- $ret = "<A $extra_attribs HREF=\"$url\">";
- $text = $element->attributes["_text"];
- if(!strlen($text))
- {
- $text = $element->attributes["_plaintext"];
- if(!strlen($text))
- {
- if(strlen($element->attributes["_image"]))
- {
- $text = "<IMG SRC=\"".$element->attributes["_image"]."\" BORDER=\"0\">";
- }
- }
- $ret .= $text."</A>";
- }
- else
- $ret .= language($text)."</A>";
- }
- else
- $ret = $url;
- }
- else
- {
- $ret = "";
- }
- break;
- case "admin_icon":
- if($element->attributes["fulltag"])
- {
- $ret = "<IMG $extra_attribs SRC=\"".$this->StatusIcon()."\">";
- }
- else
- $ret = $this->StatusIcon();
- break;
- case "body":
- /*
- @field:posting.body
- @description:Returns the post body
- @attrib:_parsed:bool:If true, quoted text, smileys, bbcode, and signatures are expanded out
- */
- if( $element->GetAttributeByName('_parsed') )
- {
- $ret = $this->Get('PostingText');
-
- $ret = str_replace( Array("[/code]\r\n","[/quote]\r\n"),Array('[/code]','[/quote]'), $ret);
- $ret = str_replace('&quot;', '"', $ret);
- $ret = $this->ReplaceQuote($ret,$element->attributes["_quotetemplate"]);
- $ret = $objCensorList->CensorText($ret);
- if(!$this->PostOption("disable_smileys"))
- {
- $ret = $objSmileys->ParseText($ret);
- }
-
- if(!$this->PostOption("disable_bbcode"))
- {
- $ret = ReplaceBBCode($ret);
- }
- //$ret = str_replace("\n", '<br />', $ret);
- $ret = nl2br($ret);
- while ( strpos($ret, '<br /><br />') !== false )
- {
- $ret = str_replace('<br /><br />', '<br />', $ret);
- }
-
-
- if( $this->PostOption("show_sig") && $element->GetAttributeByName('_signature') > 0 )
- {
- if(!is_object($this->Poster))
- {
- $this->Poster =& $objUsers->GetUser($this->Get("CreatedById"));
- }
- $showsig = $this->PostOption("show_sig"); // show post creator signature in this post
- $UserSig = (int)$objSession->GetPersistantVariable("bb_signatures"); // viewing user wishes to see other signatures
- if($showsig == 1 && $UserSig == 1)
- {
- $sig = $this->Poster->GetPersistantVariable("my_signature");
- $sig = htmlspecialchars($sig,ENT_NOQUOTES);
- if( !$this->PostOption("disable_smileys") ) $sig = $objSmileys->ParseText($sig);
- if( !$this->PostOption("disable_bbcode") ) $sig = ReplaceBBCode($sig);
- $ret .= "<br /><br />".nl2br($sig);
- }
- }
- }
- else
- {
- $ret = $this->Get("PostingText");
- }
- break;
-
-// default:
-// $tag = $this->TagPrefix."_".$field;
-// $ret = $this->parsetag($tag);
-// break;
-
- /*
- @field:posting.relevance
- @description:Displays the post relevance in search results
- @attrib:_displaymode:: How the relevance should be displayed<br>
- <UL>
- <LI>"Numerical": Show the decimal value
- <LI>"Bar": Show the HTML representing the relevance. Returns two HTML cells &lg;td&lt; with specified background colors
- <LI>"Graphical":Show image representing the relevance
- </UL>
- @attrib:_onimage::Zero relevance image shown in graphical display mode. Also used as prefix to build other images (i.e. prefix+"_"+percentage+".file_extension"
- @attrib:_OffBackGroundColor::Off background color of HTML cell in bar display mode
- @attrib:_OnBackGroundColor::On background color of HTML cell in bar display mode
- */
-
- }
- if(!strlen($ret))
- {
- $ret = parent::ParseObject($element);
- }
- }
- else
- {
- $fcall = $element->Execute();
- if(substr($fcall,0,8)=="{Unknown")
- {
- $ret = $this->parsetag($element->name);
- }
- else
- $ret = $fcall;
- }
- return $ret;
- }
-
-/*
- function parsetag($tag)
- {
- global $objConfig, $objUsers, $m_var_list_update, $bb_var_list_update, $var_list_update, $objSession, $bb_var_list, $bbperm;
- if(is_object($tag))
- {
- $tagname = $tag->name;
- }
- else
- $tagname = $tag;
- switch($tagname)
- {
- case "posting_id":
- return $this->Get("PostingId");
- break;
- case "posting_resource_id":
- return $this->Get("ResourceId");
- break;
- case "posting_ip":
- return $this->Get("IPAddress");
- break;
- case "posting_alias":
- return $this->Get("PosterAlias");
- break;
- case "posting_text":
- return inp_unescape($this->Get("PostingText"));
- break;
- case "posting_date":
- if($this->Get("CreatedOn")<=0)
- return "";
- return LangDate($this->Get("CreatedOn"), 0, true);
- break;
- case "posting_modified":
- if($this->Get("ModifiedOn")<=0)
- return "";
- return LangDate($this->Get("ModifiedOn"), 0, true);
- break;
- case "posting_topicid":
- return $this->Get("TopicId");
- break;
- case "posting_reply_quote_link":
- $bb_var_list_update["post"]=$this->Get("PostingId");
- $var_list_update["t"]="inbulletin/bb_post_edit_reply_form";
- $ret = HREF_Wrapper();
- unset($bb_var_list_update["post"],$var_list_update["t"]);
- return $ret;
- break;
- case "posting_edit_link":
- $bb_var_list_update["post"]=$this->Get("PostingId");
- $var_list_update["t"]="inbulletin/bb_post_edit_reply_form";
- $ret = HREF_Wrapper('', Array('edit' => 'yes') );
- unset($bb_var_list_update["post"],$var_list_update["t"]);
- return $ret;
- break;
- case "cell_back":
- if ($bb_var_list_update["post_cell"]==$objConfig->Get("Post_Background1"))
- {
- $bb_var_list_update["post_cell"]=$objConfig->Get("Post_Background2");
- return $objConfig->Get("Post_Background2");
- }
- else
- {
- $bb_var_list_update["post_cell"]=$objConfig->Get("Post_Background1");
- return $objConfig->Get("Post_Background1");
- }
- break;
-
- default:
- return $tag;
- break;
- }
- }
-*/
-}
-
-class _clsPostingList extends clsItemCollection
-{
- var $TopicID;
- var $Page;
-
- function _clsPostingList()
- {
- global $bb_var_list;
-
- $this->clsItemCollection();
- $this->TopicID=-1;
- $this->classname = "clsPosting";
- $this->SourceTable = GetTablePrefix()."Posting";
- $this->BasePermission="TOPIC";
- $this->Page = $bb_var_list["pp"];
- }
-
- function CurrentPostID()
- {
- global $bb_var_list;
- $p = (int)$bb_var_list["post"];
- if($p==0)
- {
- $sql = "SELECT PostingId FROM ".$this->SourceTable." WHERE TopicId=".$this->TopicID;
- $sql .=" AND ReplyTo=0 ORDER BY CreatedOn ASC LIMIT 1";
- $rs = $this->adodbConnection->Execute($sql);
- if($rs && !$rs->EOF)
- $bb_var_list["post"] = $rs->fields["PostingId"];
- }
- return (int)$bb_var_list["post"];
- }
-
- function &GetCurrentPost()
- {
- $id = $this->CurrentPostID();
- $p = $this->GetItem($id);
- return $p;
- }
-
- function Query_Posting($whereClause,$orderByClause="", $limit=NULL)
- {
- global $Errors, $objSession;
-
- $resultSet = array();
-
- $sql = "SELECT * FROM ".$this->SourceTable." ";
-
- if(isset($whereClause))
- $sql = sprintf('%s WHERE %s',$sql,$whereClause);
-
- if(isset($orderByClause))
- $sql = sprintf('%s ORDER BY %s',$sql,$orderByClause);
- if(strlen(trim($limit))>0)
- $sql .= " ".$limit;
-
- if($objSession->HasSystemPermission("DEBUG.LIST"))
- echo htmlentities($sql,ENT_NOQUOTES)."<br>\n";
-
- $this->Query_Item($sql);
-
- return $this->Items;
- }
-
- function DeleteTopicPosts($TopicId)
- {
- global $objTopicList;
- $this->Clear();
- $topic = $objTopicList->GetItem($TopicId);
- $sql = "SELECT * FROM ".$this->SourceTable." WHERE TopicId=".$TopicId;
- $this->Query_Item($sql);
- $count = $this->NumItems();
-
- if( is_object($topic) ) $topic->ClearCacheData();
- DeleteTagCache("m_itemcount","Post%");
-
- if($this->NumItems()>0)
- {
- foreach($this->Items as $p)
- {
- $p->Delete();
- }
- }
- $this->Clear();
- }
-
-
- function DoGlobalCount($attribs)
- {
- global $objCountCache, $objTopicList;
-
- $cc = $objCountCache->GetValue(0,30,$objTopicList->CacheListExtraId("_"),(int)getArrayValue($attribs,'_today'), 3600);
- $cc = null;
- if(!is_numeric($cc))
- {
- $sql = $objTopicList->SqlGlobalCount($attribs);
- $rs = $this->adodbConnection->Execute($sql);
- $ret = ($rs && !$rs->EOF) ? $rs->fields['CachedVal'] : '0';
- $objCountCache->SetValue(0,30,$objTopicList->CacheListExtraId("_"),(int)getArrayValue($attribs,'_today'),$ret);
- }
- else
- $ret = $cc;
-
- //echo "DoGlobalCount Posting: $ret<br>";
- return $ret;
- }
-
- function CategoryCount($attribs)
- {
- global $objCatList, $objCountCache;
-
- $cat = $attribs["_catid"];
- if(!is_numeric($cat))
- {
- $cat = $objCatList->CurrentCategoryID();
- }
- if((int)$cat>0)
- $c = $objCatList->GetCategory($cat);
-
- $cc = $objCountCache->GetValue(1,30,$cat,0,3600);
- //print_pre($attribs);
- if(is_numeric($cc) && $attribs["_forceupdate"] != 1)
- {
- return $cc;
- }
-
- $CatTable = GetTablePrefix()."CategoryItems";
- //$t = $this->SourceTable;
- $t = GetTablePrefix()."Topic";
- $p = $this->SourceTable;
-
- $sql = "SELECT (SUM(Posts)-COUNT(TopicId)) as MyCount FROM $t ";
- $sql .=" INNER JOIN $CatTable ON ($CatTable.ItemResourceId=$t.ResourceId) ";
- if($attribs["_subcats"])
- {
- $ctable = $objCatList->SourceTable;
- $sql .= "INNER JOIN $ctable ON ($CatTable.CategoryId=$ctable.CategoryId) ";
- $sql .= "WHERE (ParentPath LIKE '".$c->Get("ParentPath")."%' ";
- if(!$attribs["_countcurrent"])
- {
- $sql .=" AND $ctable.CategoryId != $cat) ";
- }
- else
- $sql .=") ";
- }
- else
- $sql .="WHERE ($CatTable.CategoryId=".$cat." AND $t.Status=1) ";
-
- if($attribs["_today"])
- {
- $today = adodb_mktime(0,0,0,adodb_date("m"),adodb_date("d"),adodb_date("Y"));
- $sql .= "AND ($t.CreatedOn>=$today) ";
- }
- //echo "Cat:".$sql."<br>\n";
- $rs = $this->adodbConnection->Execute($sql);
- $ret = "";
- if($rs && !$rs->EOF)
- {
- $ret = (int)$rs->fields["MyCount"];
-
- }
- if(is_numeric($ret))
- $objCountCache->SetValue(1,30,$cat,0,$ret);
- return $ret;
- }
-
- function LoadTopicPosts()
- {
- global $objConfig, $objTopicList;
-
- $o=""; //prepare output
-
- $this->Clear();
- if($this->Page<1)
- $this->Page=1;
- if(is_numeric($objConfig->Get("Perpage_Postings")))
- {
- $Start = ($this->Page-1)*$objConfig->Get("Perpage_Postings");
- $limit = "LIMIT ".$Start.",".$objConfig->Get("Perpage_Postings");
- }
- else
- $limit = NULL;
-
- $where = "TopicId=".$this->TopicID;
- $this->QueryItemCount=TableCount(GetTablePrefix()."Posting",$where,0);
- $this->Query_Posting($where,"CreatedOn ASC",$limit);
- $t = $objTopicList->GetItem($this->TopicID);
- if($t->Get("TopicType")==0)
- {
- for($x=0;$x<$this->NumItems();$x++)
- $this->Items[$x]->Locked=TRUE;
- }
- return $this->Items;
- }
-
- function GetPageLinkList($dest_template = null, $page = '', $PagesToList = 10, $HideEmpty = true, $extra_attributes = '')
- {
- global $objConfig, $bb_var_list_update, $var_list_update, $bb_var_list, $var_list;
-
- $PerPage = $objConfig->Get("Perpage_Postings");
- if ($PerPage < 1) $PerPage = 20;
-
- $NumPages = ceil( $this->GetNumPages($PerPage) );
- $var_list_update['t'] = isset($dest_template) && $dest_template ? $dest_template : $var_list['t'];
-
- $o = '';
- if ($this->Page > $NumPages) $this->Page = $NumPages;
-
- if ($NumPages == 1 && $HideEmpty) return '';
-
- $StartPage = (int)$this->Page - ($PagesToList / 2);
- if ($StartPage < 1) $StartPage = 1;
-
- $EndPage = $StartPage + ($PagesToList - 1);
- if ($EndPage > $NumPages)
- {
- $EndPage = $NumPages;
- $StartPage = $EndPage-($PagesToList-1);
- if ($StartPage < 1) $StartPage = 1;
- }
-
- $o = '';
- if ($StartPage > 1)
- {
- $bb_var_list_update['pp'] = $this->Page - $PagesToList;
- $bb_var_list_update['top'] = $this->TopicID;
- $prev_url = HREF_Wrapper();
- $o .= '<a '.$extra_attributes.' href="'.$prev_url.'">&lt;&lt;</a>';
- }
-
- for ($p = $StartPage; $p <= $EndPage; $p++)
- {
- if ($p != $this->Page)
- {
- $bb_var_list_update['pp'] = $p;
- $bb_var_list_update['top'] = $this->TopicID;
- $href = HREF_Wrapper();
- $o .= ' <a '.$extra_attributes.' href="'.$href.'">'.$p.'</a> ';
- }
- else
- {
- $o .= $p;
- }
- }
- if ($EndPage < $NumPages && $EndPage > 0)
- {
- $bb_var_list_update['pp'] = $this->Page + $PagesToList;
- $bb_var_list_update['top'] = $this->TopicID;
- $next_url = HREF_Wrapper();
- $o .= '<a '.$extra_attributes.' href="'.$next_url.'"> &gt;&gt;</a>';
- }
-
- unset($bb_var_list_update["pp"],$bb_var_list_update["top"],$var_list_update["t"] );
- return $o;
- }
-
- function ResetCache($CategoryId)
- {
- global $objCountCache;
- if( $objCountCache->NumItems() == 0 )
- {
- $objCountCache->Query_Item('SELECT * FROM '.$objCountCache->SourceTable);
- }
-
- $db =& GetADODBConnection();
- $sql = 'SELECT ParentPath FROM '.GetTablePrefix().'Category WHERE CategoryId = '.$CategoryId;
- $parents = $db->GetOne($sql);
- $parents = substr($parents,1,strlen($parents)-2);
- $parents = explode('|',$parents);
- foreach($parents as $ParentCategoryId)
- {
- $objCountCache->DeleteValue(0, 30, $ParentCategoryId, 0); // total topic count
- $objCountCache->DeleteValue(0, 30, $ParentCategoryId, 1); // total
- }
- }
-}/*clsPostingList*/
-?>
Property changes on: trunk/in-bulletin/posting.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.30
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/category_properties.tpl
===================================================================
--- trunk/in-bulletin/admin_templates/category_properties.tpl (revision 12824)
+++ trunk/in-bulletin/admin_templates/category_properties.tpl (nonexistent)
@@ -1,2 +0,0 @@
-<inp2:m_RenderElement name="subsection" title="!la_In-bulletin!"/>
-<inp2:m_RenderElement name="inp_edit_box" prefix="c" field="cust_bb_ItemTemplate" type_field="cust_bb_ItemTemplate" title="!la_fld_cust_bb_ItemTemplate!" size="50"/>
Property changes on: trunk/in-bulletin/admin_templates/category_properties.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/catalog_tab.tpl
===================================================================
--- trunk/in-bulletin/admin_templates/catalog_tab.tpl (revision 12824)
+++ trunk/in-bulletin/admin_templates/catalog_tab.tpl (nonexistent)
@@ -1,50 +0,0 @@
-<inp2:m_DefineElement name="catalog_tab">
- <inp2:m_if check="m_ParamEquals" name="tab_init" value="" inverse="inverse">
- <inp2:m_if check="m_ParamEquals" name="tab_init" value="1">
- a_toolbar.AddButton( new ToolBarButton('in-bulletin:new_topic', '<inp2:m_phrase label="la_ToolTip_NewTopic" escape="1"/>', function() {
- std_precreate_item('<inp2:m_param name="prefix"/>', 'in-bulletin/topics/topics_edit');
- }, true
- ) );
- </inp2:m_if>
-
- <inp2:m_if check="m_ParamEquals" name="tab_init" value="2">
- <div id="topics_div" prefix="<inp2:m_param name="prefix"/>" view_template="in-bulletin/catalog_tab" edit_template="in-bulletin/topics/topics_edit" category_id="-1" dep_buttons="new_topic" class="catalog-tab"></div>
- <script type="text/javascript">$Catalog.registerTab('topics');</script>
- </inp2:m_if>
- <inp2:m_else/>
- <inp2:lang.current_Field name="Charset" result_to_var="charset"/>
- <inp2:m_Header data="Content-type: text/plain; charset=$charset"/>
- <inp2:m_include t="incs/blocks"/>
- <inp2:m_include t="incs/grid_blocks"/>
- <inp2:m_include t="in-portal/categories/ci_blocks"/>
- $Catalog.setItemCount('<inp2:m_param name="prefix"/>', '<inp2:{$prefix}_CatalogItemCount/>');
- $Catalog.setCurrentCategory('<inp2:m_param name="prefix"/>', <inp2:m_get name="m_cat_id"/>);
-
- <inp2:m_RenderElement name="grid_js" selected_class="selected_div" tag_name="tr" PrefixSpecial="$prefix" IdField="TopicId" grid="Default" menu_filters="yes"/>
- <inp2:m_RenderElement name="grid_search_buttons" PrefixSpecial="$prefix" grid="Default" ajax="1"/>
- <inp2:m_if check="m_ParamEquals" name="tab_dependant" value="yes">
- Grids['<inp2:m_param name="prefix"/>'].AddAlternativeGrid('<inp2:m_param name="cat_prefix"/>', true);
- </inp2:m_if>
- Grids['<inp2:m_param name="prefix"/>'].SetDependantToolbarButtons( new Array('edit','delete','approve','decline','sep3','cut','copy','move_up','move_down','sep6'));
- $Catalog.reflectPasteButton(<inp2:c_HasClipboard/>);
- $Catalog.setViewMenu('<inp2:m_param name="prefix"/>');
- <inp2:m_if check="m_ParamEquals" name="tab_mode" value="single">
- Grids['<inp2:m_param name="prefix"/>'].EnableRadioMode();
- Grids['<inp2:m_param name="prefix"/>'].DblClick = function() {return false};
- </inp2:m_if>
- #separator#
- <!-- topics tab: begin -->
- <inp2:m_RenderElement name="kernel_form" form_name="topics_form"/>
-
- <inp2:m_if check="m_ParamEquals" name="tab_mode" value="multi">
- <inp2:m_RenderElement name="grid" ajax="1" PrefixSpecial="$prefix" IdField="TopicId" grid="Default" no_toolbar="no_toolbar" menu_filters="yes"/>
- <inp2:m_else/>
- <inp2:m_RenderElement name="grid" ajax="1" PrefixSpecial="$prefix" IdField="TopicId" grid="Radio" no_toolbar="no_toolbar" menu_filters="yes"/>
- </inp2:m_if>
-
- <inp2:m_RenderElement name="kernel_form_end"/>
- <!-- topics tab: end -->
- </inp2:m_if>
-</inp2:m_DefineElement>
-
-<inp2:bb_InitCatalogTab render_as="catalog_tab"/>
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin_templates/catalog_tab.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.9
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/topics/topics_custom.tpl
===================================================================
--- trunk/in-bulletin/admin_templates/topics/topics_custom.tpl (revision 12824)
+++ trunk/in-bulletin/admin_templates/topics/topics_custom.tpl (nonexistent)
@@ -1,63 +0,0 @@
-<inp2:m_RequireLogin permissions="TOPIC.VIEW" perm_prefix="bb"/>
-<inp2:m_include t="incs/header" nobody="yes"/>
-
-<body topmargin="0" leftmargin="8" marginheight="0" marginwidth="8" bgcolor="#FFFFFF">
-<inp2:m_RenderElement name="section_header" prefix="bb" icon="icon46_topics" module="in-bulletin" title="!la_title_Topics!"/>
-
-<inp2:m_include t="in-bulletin/topics/topics_tabs"/>
-
-<inp2:m_RenderElement name="blue_bar" prefix="bb" title_preset="topics_custom" module="in-bulletin" icon="icon46_topics"/>
-
-<!-- ToolBar --->
-<table class="toolbar" height="30" cellspacing="0" cellpadding="0" width="100%" border="0">
-<tbody>
- <tr>
- <td>
- <script type="text/javascript">
- a_toolbar = new ToolBar();
- a_toolbar.AddButton( new ToolBarButton('select', '<inp2:m_phrase label="la_ToolTip_Save" escape="1"/>', function() {
- submit_event('bb','<inp2:bb_SaveEvent/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('cancel', '<inp2:m_phrase label="la_ToolTip_Cancel" escape="1"/>', function() {
- submit_event('bb','OnCancelEdit');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarSeparator('sep1') );
-
- a_toolbar.AddButton( new ToolBarButton('prev', '<inp2:m_phrase label="la_ToolTip_Prev" escape="1"/>', function() {
- go_to_id('bb', '<inp2:bb_PrevId/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('next', '<inp2:m_phrase label="la_ToolTip_Next" escape="1"/>', function() {
- go_to_id('bb', '<inp2:bb_NextId/>');
- }
- ) );
-
- function edit(){ }
-
- a_toolbar.Render();
-
- <inp2:m_if check="bb_IsSingle">
- a_toolbar.HideButton('prev');
- a_toolbar.HideButton('next');
- a_toolbar.HideButton('sep1');
- <inp2:m_else/>
- <inp2:m_if check="bb_IsLast" >
- a_toolbar.DisableButton('next');
- </inp2:m_if>
- <inp2:m_if check="bb_IsFirst" >
- a_toolbar.DisableButton('prev');
- </inp2:m_if>
- </inp2:m_if>
- </script>
- </td>
- </tr>
-</tbody>
-</table>
-
-<inp2:m_include t="in-portal/incs/custom_blocks"/>
-<inp2:m_RenderElement name="grid" PrefixSpecial="cf" IdField="CustomFieldId" SourcePrefix="bb" value_field="Value" per_page="-1" grid="SeparateTab" header_block="grid_column_title_no_sorting" no_init="no_init"/>
-
-<inp2:m_include t="incs/footer"/>
Property changes on: trunk/in-bulletin/admin_templates/topics/topics_custom.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/topics/topics_reviews.tpl
===================================================================
--- trunk/in-bulletin/admin_templates/topics/topics_reviews.tpl (revision 12824)
+++ trunk/in-bulletin/admin_templates/topics/topics_reviews.tpl (nonexistent)
@@ -1,121 +0,0 @@
-<inp2:m_RequireLogin permissions="TOPIC.VIEW" perm_prefix="bb"/>
-<inp2:m_include t="incs/header" nobody="yes"/>
-
-<body topmargin="0" leftmargin="8" marginheight="0" marginwidth="8" bgcolor="#FFFFFF">
-<inp2:m_RenderElement name="section_header" prefix="bb" icon="icon46_topics" module="in-bulletin" title="!la_title_topics!"/>
-
-<inp2:m_include t="in-bulletin/topics/topics_tabs"/>
-
-<inp2:m_RenderElement name="blue_bar" prefix="bb" title_preset="topics_reviews" module="in-bulletin" icon="icon46_topics"/>
-
-<!-- ToolBar --->
-<table class="toolbar" height="30" cellspacing="0" cellpadding="0" width="100%" border="0">
-<tbody>
- <tr>
- <td>
- <script type="text/javascript">
- a_toolbar = new ToolBar();
- a_toolbar.AddButton( new ToolBarButton('select', '<inp2:m_phrase label="la_ToolTip_Save" escape="1"/>', function() {
- submit_event('bb','<inp2:bb_SaveEvent/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('cancel', '<inp2:m_phrase label="la_ToolTip_Cancel" escape="1"/>', function() {
- submit_event('bb','OnCancelEdit');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarSeparator('sep1') );
-
- a_toolbar.AddButton( new ToolBarButton('prev', '<inp2:m_phrase label="la_ToolTip_Prev" escape="1"/>', function() {
- go_to_id('bb', '<inp2:bb_PrevId/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('next', '<inp2:m_phrase label="la_ToolTip_Next" escape="1"/>', function() {
- go_to_id('bb', '<inp2:bb_NextId/>');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarSeparator('sep2') );
-
- //Pricing related:
- a_toolbar.AddButton( new ToolBarButton('new_review', '<inp2:m_phrase label="la_ToolTip_NewReview" escape="1"/>',
- function() {
- std_new_item('bb-rev', 'in-bulletin/topics/review_edit')
- } ) );
-
- function edit()
- {
- std_edit_temp_item('bb-rev', 'in-bulletin/topics/review_edit');
- }
-
- a_toolbar.AddButton( new ToolBarButton('edit', '<inp2:m_phrase label="la_ToolTip_Edit" escape="1"/>', edit) );
- a_toolbar.AddButton( new ToolBarButton('delete', '<inp2:m_phrase label="la_ToolTip_Delete" escape="1"/>',
- function() {
- std_delete_items('bb-rev')
- } ) );
-
- a_toolbar.AddButton( new ToolBarSeparator('sep3') );
-
- a_toolbar.AddButton( new ToolBarButton('approve', '<inp2:m_phrase label="la_ToolTip_Approve" escape="1"/>', function() {
- submit_event('bb-rev','OnMassApprove');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarButton('decline', '<inp2:m_phrase label="la_ToolTip_Decline" escape="1"/>', function() {
- submit_event('bb-rev','OnMassDecline');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarSeparator('sep4') );
-
- a_toolbar.AddButton( new ToolBarButton('move_up', '<inp2:m_phrase label="la_ToolTip_MoveUp" escape="1"/>', function() {
- submit_event('bb-rev','OnMassMoveUp');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarButton('move_down', '<inp2:m_phrase label="la_ToolTip_MoveDown" escape="1"/>', function() {
- submit_event('bb-rev','OnMassMoveDown');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarSeparator('sep5') );
-
- a_toolbar.AddButton( new ToolBarButton('view', '<inp2:m_phrase label="la_ToolTip_View" escape="1"/>', function() {
- show_viewmenu(a_toolbar,'view');
- }
- ) );
-
- a_toolbar.Render();
-
- <inp2:m_if check="bb_IsSingle" >
- a_toolbar.HideButton('prev');
- a_toolbar.HideButton('next');
- a_toolbar.HideButton('sep1');
- <inp2:m_else/>
- <inp2:m_if check="bb_IsLast" >
- a_toolbar.DisableButton('next');
- </inp2:m_if>
- <inp2:m_if check="bb_IsFirst" >
- a_toolbar.DisableButton('prev');
- </inp2:m_if>
- </inp2:m_if>
- </script>
- </td>
- </tr>
-</tbody>
-</table>
-
-<inp2:m_DefineElement name="reviewtext_checkbox_td">
- <td valign="top" class="text">
- <input type="checkbox" name="<inp2:InputName field="$IdField" IdField="$IdField"/>" id="<inp2:InputName field="$IdField" IdField="$IdField"/>">
- <img src="<inp2:ModulePath module="In-Portal"/>img/itemicons/<inp2:ItemIcon grid="$grid"/>">&nbsp;
- <inp2:Field field="$field" no_special="no_special" cut_first="100"/>
- </td>
-</inp2:m_DefineElement>
-
-<inp2:m_RenderElement name="grid" PrefixSpecial="bb-rev" IdField="ReviewId" grid="Default" menu_filters="yes"/>
-<script type="text/javascript">
- Grids['bb-rev'].SetDependantToolbarButtons( new Array('edit','delete','approve','decline','move_up','move_down') );
-</script>
-
-<inp2:m_include t="incs/footer"/>
Property changes on: trunk/in-bulletin/admin_templates/topics/topics_reviews.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/topics/relations_edit.tpl
===================================================================
--- trunk/in-bulletin/admin_templates/topics/relations_edit.tpl (revision 12824)
+++ trunk/in-bulletin/admin_templates/topics/relations_edit.tpl (nonexistent)
@@ -1,47 +0,0 @@
-<inp2:m_RequireLogin permissions="TOPIC.VIEW" perm_prefix="bb"/>
-<inp2:m_include t="incs/header" nobody="yes"/>
-
-<body topmargin="0" leftmargin="8" marginheight="0" marginwidth="8" bgcolor="#FFFFFF">
-<inp2:m_RenderElement name="section_header" prefix="bb" icon="icon46_topics" module="in-bulletin" title="!la_title_Topics!"/>
-
-<inp2:m_RenderElement name="blue_bar" prefix="bb" title_preset="relations_edit" module="in-bulletin" icon="icon46_topics"/>
-
-<!-- ToolBar --->
-<table class="toolbar" height="30" cellspacing="0" cellpadding="0" width="100%" border="0">
-<tbody>
- <tr>
- <td>
- <script type="text/javascript">
- a_toolbar = new ToolBar();
- a_toolbar.AddButton( new ToolBarButton('select', '<inp2:m_phrase label="la_ToolTip_Save" escape="1"/>', function() {
- submit_event('bb-rel','<inp2:bb-rel_SaveEvent/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('cancel', '<inp2:m_phrase label="la_ToolTip_Cancel" escape="1"/>', function() {
- submit_event('bb-rel','OnCancel');
- }
- ) );
-
- a_toolbar.Render();
- </script>
- </td>
- </tr>
-</tbody>
-</table>
-
-<inp2:m_include t="in-portal/categories/ci_blocks"/>
-
-<table width="100%" border="0" cellspacing="0" cellpadding="4" class="tableborder">
- <inp2:m_RenderElement name="subsection" title="!la_section_Relation!"/>
- <inp2:m_RenderElement name="inp_edit_hidden" prefix="bb-rel" field="SourceId"/>
- <inp2:m_RenderElement name="inp_edit_hidden" prefix="bb-rel" field="SourceType"/>
- <inp2:m_RenderElement name="inp_edit_hidden" prefix="bb-rel" field="TargetId"/>
- <inp2:m_RenderElement name="inp_edit_hidden" prefix="bb-rel" field="TargetType"/>
-
- <inp2:m_RenderElement name="inp_id_label" prefix="bb-rel" field="RelationshipId" title="!la_fld_RelationshipId!"/>
- <inp2:m_RenderElement name="inp_edit_relation" prefix="bb-rel" field="TargetId" title="!la_fld_TargetId!"/>
- <inp2:m_RenderElement name="inp_edit_radio" prefix="bb-rel" field="Type" title="!la_fld_RelationshipType!"/>
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="bb-rel" field="Enabled" title="!la_fld_Enabled!"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="bb-rel" field="Priority" title="!la_fld_Priority!" size="4"/>
-</table>
-<inp2:m_include t="incs/footer"/>
Property changes on: trunk/in-bulletin/admin_templates/topics/relations_edit.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/topics/topics_images.tpl
===================================================================
--- trunk/in-bulletin/admin_templates/topics/topics_images.tpl (revision 12824)
+++ trunk/in-bulletin/admin_templates/topics/topics_images.tpl (nonexistent)
@@ -1,110 +0,0 @@
-<inp2:m_RequireLogin permissions="TOPIC.VIEW" perm_prefix="bb"/>
-<inp2:m_include t="incs/header" nobody="yes"/>
-
-<inp2:m_include t="in-portal/incs/image_blocks"/>
-
-<body topmargin="0" leftmargin="8" marginheight="0" marginwidth="8" bgcolor="#FFFFFF">
-<inp2:m_RenderElement name="section_header" prefix="bb" icon="icon46_topics" module="in-bulletin" title="!la_title_Topics!"/>
-
-<inp2:m_include t="in-bulletin/topics/topics_tabs"/>
-
-<inp2:m_RenderElement name="blue_bar" prefix="bb" title_preset="topics_images" module="in-bulletin" icon="icon46_topics"/>
-
-<!-- ToolBar --->
-<table class="toolbar" height="30" cellspacing="0" cellpadding="0" width="100%" border="0">
-<tbody>
- <tr>
- <td>
- <script type="text/javascript">
-
- function edit()
- {
- std_edit_temp_item('bb-img', 'in-bulletin/topics/images_edit');
- }
-
- a_toolbar = new ToolBar();
- a_toolbar.AddButton( new ToolBarButton('select', '<inp2:m_phrase label="la_ToolTip_Save" escape="1"/>', function() {
- submit_event('bb','<inp2:n_SaveEvent/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('cancel', '<inp2:m_phrase label="la_ToolTip_Cancel" escape="1"/>', function() {
- submit_event('bb','OnCancelEdit');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarSeparator('sep1') );
-
- a_toolbar.AddButton( new ToolBarButton('prev', '<inp2:m_phrase label="la_ToolTip_Prev" escape="1"/>', function() {
- go_to_id('bb', '<inp2:bb_PrevId/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('next', '<inp2:m_phrase label="la_ToolTip_Next" escape="1"/>', function() {
- go_to_id('bb', '<inp2:bb_NextId/>');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarSeparator('sep2') );
-
-
-
- a_toolbar.AddButton( new ToolBarButton('new_image', '<inp2:m_phrase label="la_ToolTip_New_Images" escape="1"/>',
- function() {
- std_new_item('bb-img', 'in-bulletin/topics/images_edit')
- } ) );
-
- a_toolbar.AddButton( new ToolBarButton('edit', '<inp2:m_phrase label="la_ToolTip_Edit" escape="1"/>', edit) );
- a_toolbar.AddButton( new ToolBarButton('delete', '<inp2:m_phrase label="la_ToolTip_Delete" escape="1"/>',
- function() {
- std_delete_items('bb-img')
- } ) );
-
- a_toolbar.AddButton( new ToolBarSeparator('sep3') );
-
- a_toolbar.AddButton( new ToolBarButton('move_up', '<inp2:m_phrase label="la_ToolTip_MoveUp" escape="1"/>', function() {
- submit_event('bb-img','OnMassMoveUp');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarButton('move_down', '<inp2:m_phrase label="la_ToolTip_MoveDown" escape="1"/>', function() {
- submit_event('bb-img','OnMassMoveDown');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarButton('primary_image', '<inp2:m_phrase label="la_ToolTip_SetPrimary" escape="1"/>', function() {
- submit_event('bb-img','OnSetPrimary');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarSeparator('sep4') );
-
- a_toolbar.AddButton( new ToolBarButton('view', '<inp2:m_phrase label="la_ToolTip_View" escape="1"/>', function() {
- show_viewmenu(a_toolbar,'view');
- }
- ) );
-
- a_toolbar.Render();
-
- <inp2:m_if check="bb_IsSingle" >
- a_toolbar.HideButton('prev');
- a_toolbar.HideButton('next');
- a_toolbar.HideButton('sep1');
- <inp2:m_else/>
- <inp2:m_if check="bb_IsLast" >
- a_toolbar.DisableButton('next');
- </inp2:m_if>
- <inp2:m_if check="bb_IsFirst" >
- a_toolbar.DisableButton('prev');
- </inp2:m_if>
- </inp2:m_if>
- </script>
- </td>
- </tr>
-</tbody>
-</table>
-
-<inp2:m_RenderElement name="grid" PrefixSpecial="bb-img" IdField="ImageId" grid="Default" menu_filters="yes"/>
-<script type="text/javascript">
- Grids['bb-img'].SetDependantToolbarButtons( new Array('edit','delete','move_up','move_down','primary_image') );
-</script>
-
-<inp2:m_include t="incs/footer"/>
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin_templates/topics/topics_images.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/topics/topics_tabs.tpl
===================================================================
--- trunk/in-bulletin/admin_templates/topics/topics_tabs.tpl (revision 12824)
+++ trunk/in-bulletin/admin_templates/topics/topics_tabs.tpl (nonexistent)
@@ -1,17 +0,0 @@
-<table cellpadding="0" cellspacing="0" border="0" width="100%">
-<tr>
- <td align="right" width="100%">
- <table cellpadding="0" cellspacing="0" border="0" height="23">
- <tr>
- <inp2:m_RenderElement name="tab" title="la_tab_General" t="in-bulletin/topics/topics_edit" main_prefix="bb"/>
- <inp2:m_RenderElement name="tab" title="la_tab_Categories" t="in-bulletin/topics/topics_categories" main_prefix="bb"/>
- <inp2:m_RenderElement name="tab" title="la_tab_Relations" t="in-bulletin/topics/topics_relations" main_prefix="bb"/>
-
- <inp2:m_RenderElement name="tab" title="la_tab_Images" t="in-bulletin/topics/topics_images" main_prefix="bb"/>
- <inp2:m_RenderElement name="tab" title="la_tab_Reviews" t="in-bulletin/topics/topics_reviews" main_prefix="bb"/>
- <inp2:m_RenderElement name="tab" title="la_tab_Custom" t="in-bulletin/topics/topics_custom" main_prefix="bb"/>
- </tr>
- </table>
- </td>
-</tr>
-</table>
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin_templates/topics/topics_tabs.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/topics/topics_relations.tpl
===================================================================
--- trunk/in-bulletin/admin_templates/topics/topics_relations.tpl (revision 12824)
+++ trunk/in-bulletin/admin_templates/topics/topics_relations.tpl (nonexistent)
@@ -1,108 +0,0 @@
-<inp2:m_RequireLogin permissions="TOPIC.VIEW" perm_prefix="bb"/>
-<inp2:m_include t="incs/header" nobody="yes"/>
-
-<body topmargin="0" leftmargin="8" marginheight="0" marginwidth="8" bgcolor="#FFFFFF">
-<inp2:m_RenderElement name="section_header" prefix="bb" icon="icon46_topics" module="in-bulletin" title="!la_title_topics!"/>
-
-<inp2:m_include t="in-bulletin/topics/topics_tabs"/>
-
-<inp2:m_RenderElement name="blue_bar" prefix="bb" title_preset="topics_relations" module="in-bulletin" icon="icon46_topics"/>
-
-<!-- ToolBar --->
-<table class="toolbar" height="30" cellspacing="0" cellpadding="0" width="100%" border="0">
-<tbody>
- <tr>
- <td>
- <script type="text/javascript">
- a_toolbar = new ToolBar();
- a_toolbar.AddButton( new ToolBarButton('select', '<inp2:m_phrase label="la_ToolTip_Save" escape="1"/>', function() {
- submit_event('bb','<inp2:bb_SaveEvent/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('cancel', '<inp2:m_phrase label="la_ToolTip_Cancel" escape="1"/>', function() {
- submit_event('bb','OnCancelEdit');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarSeparator('sep1') );
-
- a_toolbar.AddButton( new ToolBarButton('prev', '<inp2:m_phrase label="la_ToolTip_Prev" escape="1"/>', function() {
- go_to_id('bb', '<inp2:bb_PrevId/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('next', '<inp2:m_phrase label="la_ToolTip_Next" escape="1"/>', function() {
- go_to_id('bb', '<inp2:bb_NextId/>');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarSeparator('sep2') );
-
- //Relations related:
- a_toolbar.AddButton( new ToolBarButton('new_relation', '<inp2:m_phrase label="la_ToolTip_New_Relation" escape="1"/>',
- function() {
- openSelector('bb-rel', '<inp2:adm_SelectorLink prefix="bb-rel" selection_mode="single" tab_prefixes="all"/>', 'TargetId', '950x600');
- } ) );
-
- function edit()
- {
- std_edit_temp_item('bb-rel', 'in-bulletin/topics/relations_edit');
- }
-
- a_toolbar.AddButton( new ToolBarButton('edit', '<inp2:m_phrase label="la_ToolTip_Edit" escape="1"/>', edit) );
- a_toolbar.AddButton( new ToolBarButton('delete', '<inp2:m_phrase label="la_ToolTip_Delete" escape="1"/>',
- function() {
- std_delete_items('bb-rel')
- } ) );
-
-
- a_toolbar.AddButton( new ToolBarSeparator('sep3') );
-
- a_toolbar.AddButton( new ToolBarButton('approve', '<inp2:m_phrase label="la_ToolTip_Approve" escape="1"/>', function() {
- submit_event('bb-rel','OnMassApprove');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarButton('decline', '<inp2:m_phrase label="la_ToolTip_Decline" escape="1"/>', function() {
- submit_event('bb-rel','OnMassDecline');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarSeparator('sep4') );
-
- a_toolbar.AddButton( new ToolBarButton('view', '<inp2:m_phrase label="la_ToolTip_View" escape="1"/>', function() {
- show_viewmenu(a_toolbar,'view');
- }
- ) );
-
- a_toolbar.Render();
-
- <inp2:m_if check="bb_IsSingle" >
- a_toolbar.HideButton('prev');
- a_toolbar.HideButton('next');
- a_toolbar.HideButton('sep1');
- //a_toolbar.HideButton('sep2');
- <inp2:m_else/>
- <inp2:m_if check="bb_IsLast" >
- a_toolbar.DisableButton('next');
- </inp2:m_if>
- <inp2:m_if check="bb_IsFirst" >
- a_toolbar.DisableButton('prev');
- </inp2:m_if>
- </inp2:m_if>
- </script>
- </td>
- </tr>
-</tbody>
-</table>
-
-<inp2:m_RenderElement name="grid" PrefixSpecial="bb-rel" IdField="RelationshipId" grid="Default" menu_filters="yes"/>
-<script type="text/javascript">
- Grids['bb-rel'].SetDependantToolbarButtons( new Array('edit','delete','approve','decline') );
-</script>
-<input type="hidden" name="TargetId" id="TargetId" value="<inp2:m_get name="TargetId"/>">
-<input type="hidden" name="TargetType" id="TargetType" value="<inp2:m_get name="TargetType"/>">
-<inp2:m_include t="incs/footer"/>
-
-<script type="text/javascript">
- var $env = document.getElementById('sid').value+'-:m<inp2:m_get name="m_cat_id"/>-1-1-1-s';
-</script>
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin_templates/topics/topics_relations.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/topics/images_edit.tpl
===================================================================
--- trunk/in-bulletin/admin_templates/topics/images_edit.tpl (revision 12824)
+++ trunk/in-bulletin/admin_templates/topics/images_edit.tpl (nonexistent)
@@ -1,60 +0,0 @@
-<inp2:m_RequireLogin permissions="TOPIC.VIEW" perm_prefix="bb"/>
-<inp2:m_include t="incs/header" nobody="yes"/>
-
-<inp2:m_include t="in-portal/incs/image_blocks"/>
-
-<body topmargin="0" leftmargin="8" marginheight="0" marginwidth="8" bgcolor="#FFFFFF">
-<inp2:m_RenderElement name="section_header" prefix="bb" icon="icon46_topics" module="in-bulletin" title="!la_Text_Topics!"/>
-
-<inp2:m_RenderElement name="blue_bar" prefix="bb" title_preset="images_edit" module="in-bulletin" icon="icon46_topics"/>
-
-<!-- ToolBar --->
-<table class="toolbar" height="30" cellspacing="0" cellpadding="0" width="100%" border="0">
-<tbody>
- <tr>
- <td>
- <script type="text/javascript">
- a_toolbar = new ToolBar();
- a_toolbar.AddButton( new ToolBarButton('select', '<inp2:m_phrase label="la_ToolTip_Save" escape="1"/>', function() {
- submit_event('bb-img','<inp2:bb-img_SaveEvent/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('cancel', '<inp2:m_phrase label="la_ToolTip_Cancel" escape="1"/>', function() {
- submit_event('bb-img','OnCancel');
- }
- ) );
-
- a_toolbar.Render();
- </script>
- </td>
- </tr>
-</tbody>
-</table>
-
-<table width="100%" border="0" cellspacing="0" cellpadding="4" class="tableborder">
- <inp2:m_RenderElement name="subsection" title="!la_section_Image!"/>
- <inp2:m_RenderElement name="inp_edit_hidden" prefix="bb-img" field="ResourceId"/>
- <inp2:m_RenderElement name="inp_label" prefix="bb-img" field="ImageId" title="!la_fld_ImageId!"/>
-
- <inp2:m_RenderElement name="inp_edit_box" prefix="bb-img" field="Name" title="!la_fld_Name!" size="40"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="bb-img" field="AltName" title="!la_fld_AltValue!" size="40"/>
-
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="bb-img" field="Enabled" title="!la_fld_Enabled!" onchange="check_primary()" />
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="bb-img" field="DefaultImg" title="!la_fld_Primary!" onchange="check_status()" />
- <inp2:m_RenderElement name="inp_edit_box" prefix="bb-img" field="Priority" title="!la_fld_Priority!" size="5"/>
-
- <inp2:m_RenderElement name="subsection" title="!la_section_ThumbnailImage!"/>
- <inp2:m_RenderElement name="thumbnail_section" prefix="bb-img"/>
-
- <inp2:m_RenderElement name="subsection" title="!la_section_FullSizeImage!"/>
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="bb-img" field="SameImages" title="!la_fld_SameAsThumb!" onchange="toggle_fullsize()"/>
- <inp2:m_RenderElement name="fullsize_section" prefix="bb-img"/>
-
-</table>
-
-<script type="text/javascript">
- <inp2:m_RenderElement name="images_edit_js" prefix="bb-img"/>
- toggle_fullsize();
-</script>
-
-<inp2:m_include t="incs/footer"/>
\ No newline at end of file
Property changes on: trunk/in-bulletin/admin_templates/topics/images_edit.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/topics/topics_edit.tpl
===================================================================
--- trunk/in-bulletin/admin_templates/topics/topics_edit.tpl (revision 12824)
+++ trunk/in-bulletin/admin_templates/topics/topics_edit.tpl (nonexistent)
@@ -1,96 +0,0 @@
-<inp2:m_RequireLogin permissions="TOPIC.VIEW" perm_prefix="bb"/>
-<inp2:m_include t="incs/header" nobody="yes"/>
-
-<body topmargin="0" leftmargin="8" marginheight="0" marginwidth="8" bgcolor="#FFFFFF">
-<inp2:m_RenderElement name="section_header" prefix="bb" icon="icon46_topics" module="in-bulletin" title="!la_title_Topics!"/>
-
-<inp2:m_include t="in-bulletin/topics/topics_tabs"/>
-
-<inp2:m_RenderElement name="blue_bar" prefix="bb" title_preset="topics_edit" module="in-bulletin" icon="icon46_topics"/>
-
-<!-- ToolBar --->
-<table class="toolbar" height="30" cellspacing="0" cellpadding="0" width="100%" border="0">
-<tbody>
- <tr>
- <td>
- <script type="text/javascript">
- a_toolbar = new ToolBar();
- a_toolbar.AddButton( new ToolBarButton('select', '<inp2:m_phrase label="la_ToolTip_Save" escape="1"/>', function() {
- submit_event('bb','<inp2:bb_SaveEvent/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('cancel', '<inp2:m_phrase label="la_ToolTip_Cancel" escape="1"/>', function() {
- submit_event('bb','OnCancelEdit');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarSeparator('sep1') );
-
- a_toolbar.AddButton( new ToolBarButton('prev', '<inp2:m_phrase label="la_ToolTip_Prev" escape="1"/>', function() {
- go_to_id('bb', '<inp2:bb_PrevId/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('next', '<inp2:m_phrase label="la_ToolTip_Next" escape="1"/>', function() {
- go_to_id('bb', '<inp2:bb_NextId/>');
- }
- ) );
-
- //a_toolbar.AddButton( new ToolBarSeparator('sep2') );
-
- a_toolbar.Render();
-
- <inp2:m_if check="bb_IsSingle" >
- a_toolbar.HideButton('prev');
- a_toolbar.HideButton('next');
- a_toolbar.HideButton('sep1');
- //a_toolbar.HideButton('sep2');
- <inp2:m_else/>
- <inp2:m_if check="bb_IsLast" >
- a_toolbar.DisableButton('next');
- </inp2:m_if>
- <inp2:m_if check="bb_IsFirst" >
- a_toolbar.DisableButton('prev');
- </inp2:m_if>
- </inp2:m_if>
- </script>
- </td>
- </tr>
-</tbody>
-</table>
-
-<inp2:bb_SaveWarning name="grid_save_warning"/>
-<table width="100%" border="0" cellspacing="0" cellpadding="4" class="tableborder">
- <inp2:m_RenderElement name="subsection" title="!la_section_Topic!"/>
- <inp2:m_RenderElement name="inp_id_label" prefix="bb" field="TopicId" title="!la_fld_Id!"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="bb" field="TopicText" title="la_fld_Subject" size="40"/>
-
- <inp2:m_if check="bb_FieldEquals" name="Posts" value="0">
- <inp2:m_RenderElement name="inp_edit_textarea" prefix="bb" field="PostingText" title="la_fld_MessageBody" cols="40" rows="8"/>
- </inp2:m_if>
-
- <inp2:m_RenderElement name="inp_edit_user" prefix="bb" field="OwnerId" title="!la_fld_PostedBy!" size="40"/>
-
- <inp2:m_RenderElement name="subsection" title="!la_section_Properties!"/>
- <inp2:m_RenderElement name="inp_edit_radio" prefix="bb" field="TopicType" title="!la_fld_TopicType!"/>
- <inp2:m_RenderElement name="inp_edit_radio" prefix="bb" field="Status" title="!la_fld_Status!"/>
- <inp2:m_RenderElement name="inp_edit_radio" prefix="bb" field="NewItem" title="!la_fld_New!"/>
- <inp2:m_RenderElement name="inp_edit_radio" prefix="bb" field="HotItem" title="!la_fld_Hot!"/>
- <inp2:m_RenderElement name="inp_edit_radio" prefix="bb" field="PopItem" title="!la_fld_Pop!"/>
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="bb" field="EditorsPick" title="!la_fld_EditorsPick!"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="bb" field="Priority" title="!la_fld_Priority!" size="4"/>
- <inp2:m_RenderElement name="inp_edit_date_time" prefix="bb" field="CreatedOn" title="!la_fld_CreatedOn!"/>
- <inp2:m_RenderElement name="inp_edit_date_time" prefix="bb" field="Modified" title="!la_fld_Modified!"/>
-
- <inp2:m_RenderElement name="subsection" title="!la_section_Counters!"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="bb" field="CachedRating" title="!la_fld_Rating!" hint_label="la_prompt_RatingLimits" size="4"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="bb" field="CachedVotesQty" title="!la_fld_Votes!" hint_label="la_prompt_VoteLimits" size="4"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="bb" field="Views" title="!la_fld_Views!" hint_label="la_prompt_HitLimits" size="4"/>
- <input type="hidden" name="Views_original" id="Views_original" value="<inp2:bb_Field name="Views" db="db" />" />
-
- <!-- custom fields: begin -->
- <inp2:m_include t="in-portal/incs/custom_blocks"/>
- <inp2:cf.general_PrintList render_as="cv_row_block" SourcePrefix="bb" value_field="Value" per_page="-1" grid="Default" />
- <!-- custom fields: end -->
-</table>
-
-<inp2:m_include t="incs/footer"/>
Property changes on: trunk/in-bulletin/admin_templates/topics/topics_edit.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/topics/topics_categories.tpl
===================================================================
--- trunk/in-bulletin/admin_templates/topics/topics_categories.tpl (revision 12824)
+++ trunk/in-bulletin/admin_templates/topics/topics_categories.tpl (nonexistent)
@@ -1,91 +0,0 @@
-<inp2:m_RequireLogin permissions="TOPIC.VIEW" perm_prefix="bb"/>
-<inp2:m_include t="incs/header" nobody="yes"/>
-
-<body topmargin="0" leftmargin="8" marginheight="0" marginwidth="8" bgcolor="#FFFFFF">
-<inp2:m_RenderElement name="section_header" prefix="bb" icon="icon46_topics" module="in-bulletin" title="!la_title_Topics!"/>
-
-<inp2:m_include t="in-bulletin/topics/topics_tabs"/>
-
-<inp2:m_RenderElement name="blue_bar" prefix="bb" title_preset="topics_categories" module="in-bulletin" icon="icon46_topics"/>
-
-<!-- ToolBar --->
-<table class="toolbar" height="30" cellspacing="0" cellpadding="0" width="100%" border="0">
-<tbody>
- <tr>
- <td>
- <script type="text/javascript">
- function edit(){ }
-
- a_toolbar = new ToolBar();
- a_toolbar.AddButton( new ToolBarButton('select', '<inp2:m_phrase label="la_ToolTip_Save" escape="1"/>', function() {
- submit_event('bb','<inp2:bb_SaveEvent/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('cancel', '<inp2:m_phrase label="la_ToolTip_Cancel" escape="1"/>', function() {
- submit_event('bb','OnCancelEdit');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarSeparator('sep1') );
-
- a_toolbar.AddButton( new ToolBarButton('prev', '<inp2:m_phrase label="la_ToolTip_Prev" escape="1"/>', function() {
- go_to_id('bb', '<inp2:bb_PrevId/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('next', '<inp2:m_phrase label="la_ToolTip_Next" escape="1"/>', function() {
- go_to_id('bb', '<inp2:bb_NextId/>');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarSeparator('sep2') );
-
- //Category related:
- a_toolbar.AddButton( new ToolBarButton('new_cat', '<inp2:m_phrase label="la_ToolTip_New_Category" escape="1"/>',
- function() {
- openSelector('bb', '<inp2:adm_SelectorLink prefix="bb" selection_mode="multi" tab_prefixes="none"/>', 'ItemCategory');
- } ) );
-
- a_toolbar.AddButton( new ToolBarButton('delete', '<inp2:m_phrase label="la_ToolTip_Delete" escape="1"/>',
- function() {
- std_delete_items('bb-ci')
- } ) );
-
- a_toolbar.AddButton( new ToolBarButton('primary_cat', '<inp2:m_phrase label="la_ToolTip_SetPrimaryCategory" escape="1"/>', function() {
- submit_event('bb-ci','OnSetPrimary');
- }
- ) );
-
- a_toolbar.Render();
-
- <inp2:m_if check="bb_IsSingle" >
- a_toolbar.HideButton('prev');
- a_toolbar.HideButton('next');
- a_toolbar.HideButton('sep1');
- <inp2:m_else/>
- <inp2:m_if check="bb_IsLast" >
- a_toolbar.DisableButton('next');
- </inp2:m_if>
- <inp2:m_if check="bb_IsFirst" >
- a_toolbar.DisableButton('prev');
- </inp2:m_if>
- </inp2:m_if>
- </script>
- </td>
- </tr>
-</tbody>
-</table>
-
-<inp2:m_DefineElement name="grid_checkbox_category_td" >
- <td valign="top" class="text">
- <input type="checkbox" name="<inp2:InputName field="$IdField"/>" id="<inp2:InputName field="$IdField"/>">
- <img src="<inp2:ModulePath />img/itemicons/<inp2:ItemIcon grid="$grid"/>">&nbsp;
- <inp2:CategoryName field="$field" primary_title="!la_PrimaryCategory!" no_special="1"/>
- </td>
-</inp2:m_DefineElement>
-
-<inp2:m_RenderElement name="grid" PrefixSpecial="bb-ci" IdField="CategoryId" grid="Default" header_block="grid_column_title" data_block="grid_data_td" search="on"/>
-<script type="text/javascript">
- Grids['bb-ci'].SetDependantToolbarButtons( new Array('delete','primary_cat') );
-</script>
-
-<inp2:m_include t="incs/footer"/>
Property changes on: trunk/in-bulletin/admin_templates/topics/topics_categories.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/topics/review_edit.tpl
===================================================================
--- trunk/in-bulletin/admin_templates/topics/review_edit.tpl (revision 12824)
+++ trunk/in-bulletin/admin_templates/topics/review_edit.tpl (nonexistent)
@@ -1,58 +0,0 @@
-<inp2:m_RequireLogin permissions="TOPIC.VIEW" perm_prefix="bb"/>
-<inp2:m_include t="incs/header" nobody="yes"/>
-
-<body topmargin="0" leftmargin="8" marginheight="0" marginwidth="8" bgcolor="#FFFFFF">
-<inp2:m_RenderElement name="section_header" prefix="bb" icon="icon46_topics" module="in-bulletin" title="!la_Text_Reviews!"/>
-
-<inp2:m_RenderElement name="blue_bar" prefix="bb" title_preset="reviews_edit" module="in-bulletin" icon="icon46_topics"/>
-
-<!-- ToolBar --->
-<table class="toolbar" height="30" cellspacing="0" cellpadding="0" width="100%" border="0">
-<tbody>
- <tr>
- <td>
- <script type="text/javascript">
- a_toolbar = new ToolBar();
- a_toolbar.AddButton( new ToolBarButton('select', '<inp2:m_phrase label="la_ToolTip_Save" escape="1"/>', function() {
- submit_event('bb-rev','<inp2:bb-rev_SaveEvent/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('cancel', '<inp2:m_phrase label="la_ToolTip_Cancel" escape="1"/>', function() {
- submit_event('bb-rev','OnCancel');
- }
- ) );
-
- a_toolbar.Render();
-
- <inp2:m_if check="bb-rev_IsSingle" >
- a_toolbar.HideButton('prev');
- a_toolbar.HideButton('next');
- a_toolbar.HideButton('sep1');
- <inp2:m_else/>
- <inp2:m_if check="bb-rev_IsLast" >
- a_toolbar.DisableButton('next');
- </inp2:m_if>
- <inp2:m_if check="bb-rev_IsFirst" >
- a_toolbar.DisableButton('prev');
- </inp2:m_if>
- </inp2:m_if>
- </script>
- </td>
- </tr>
-</tbody>
-</table>
-
-<table width="100%" border="0" cellspacing="0" cellpadding="4" class="tableborder">
- <inp2:m_RenderElement name="subsection" title="!la_Text_Review!"/>
- <inp2:m_RenderElement name="inp_edit_hidden" prefix="bb-rev" field="ItemId"/>
- <inp2:m_RenderElement name="inp_edit_checkbox_allow_html" prefix="bb-rev" field="TextFormat"/>
- <inp2:m_RenderElement name="inp_label" prefix="bb-rev" field="ReviewId" title="!la_fld_ReviewId!"/>
- <inp2:m_RenderElement name="inp_edit_user" prefix="bb-rev" field="CreatedById" title="!la_fld_CreatedById!" class="text"/>
- <inp2:m_RenderElement name="inp_edit_textarea" prefix="bb-rev" field="ReviewText" title="!la_fld_ReviewText!" cols="70" rows="8"/>
-
- <inp2:m_RenderElement name="subsection" title="!la_Text_General!"/>
- <inp2:m_RenderElement name="inp_edit_radio" prefix="bb-rev" field="Status" title="!la_fld_Status!"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="bb-rev" field="Priority" title="!la_fld_Priority!" size="3" class="text"/>
- <inp2:m_RenderElement name="inp_edit_date_time" prefix="bb-rev" field="CreatedOn" title="!la_fld_CreatedOn!" size="20" class="text"/>
-</table>
-<inp2:m_include t="incs/footer"/>
Property changes on: trunk/in-bulletin/admin_templates/topics/review_edit.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/toolbar/tool_new_topic.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/toolbar/tool_new_topic.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/toolbar/tool_new_topic_f2.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/toolbar/tool_new_topic_f2.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/toolbar/tool_new_topic_f3.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/toolbar/tool_new_topic_f3.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/icons/icon24_settings_email.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/icons/icon24_settings_email.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/icons/icon46_list_settings_censor.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/icons/icon46_list_settings_censor.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/icons/icon46_list_settings_smiley.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/icons/icon46_list_settings_smiley.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/icons/icon24_settings_general.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/icons/icon24_settings_general.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/icons/icon46_list_settings_custom.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/icons/icon46_list_settings_custom.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/icons/icon46_list_settings_output.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/icons/icon46_list_settings_output.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/icons/icon24_settings_output.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/icons/icon24_settings_output.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/icons/icon46_topics.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/icons/icon46_topics.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/icons/icon24_settings_in-bulletin.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/icons/icon24_settings_in-bulletin.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/icons/icon24_settings_search.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/icons/icon24_settings_search.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/icons/icon46_list_settings_email.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/icons/icon46_list_settings_email.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/icons/icon46_settings_in-bulletin.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/icons/icon46_settings_in-bulletin.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/icons/icon24_settings_censor.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/icons/icon24_settings_censor.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/icons/icon46_list_settings_general.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/icons/icon46_list_settings_general.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/icons/icon24_settings_custom.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/icons/icon24_settings_custom.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/icons/icon46_list_settings_in-bulletin.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/icons/icon46_list_settings_in-bulletin.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/icons/icon24_settings_smiley.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/icons/icon24_settings_smiley.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/icons/icon46_list_settings_search.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/icons/icon46_list_settings_search.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/logo_bg.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/logo_bg.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/itemicons/icon16_topic_pending.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/itemicons/icon16_topic_pending.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/itemicons/icon16_topic.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/itemicons/icon16_topic.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/itemicons/icon16_topic_new.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/itemicons/icon16_topic_new.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/itemicons/icon16_topic_disabled.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/itemicons/icon16_topic_disabled.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/itemicons/icon16_topic_pick.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/itemicons/icon16_topic_pick.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/itemicons/icon16_topic_hot.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/itemicons/icon16_topic_hot.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/admin_templates/img/itemicons/icon16_topic_pop.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/admin_templates/img/itemicons/icon16_topic_pop.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/bbcat.php
===================================================================
--- trunk/in-bulletin/bbcat.php (revision 12824)
+++ trunk/in-bulletin/bbcat.php (nonexistent)
@@ -1,87 +0,0 @@
-<?php
-
- class clsBBCategory extends clsCategory
- {
-
- function clsBBCategory($CategoryId=NULL)
- {
- parent::clsCategory($CategoryId);
- $this->TagPrefix = 'bbcat';
- }
-
-
- function ParseObject($element)
- {
- //echo "field: ".$element->attributes["_field"]."<br>";
- if(strtolower($element->name)==$this->TagPrefix)
- {
- $field = strtolower($element->attributes["_field"]);
-
- switch($field)
- {
- case "subcats":
- $attr = array();
- $attr["_catid"] = $this->Get("CategoryId");
- $attr["_itemtemplate"] = $element->GetAttributeByName('_subcattemplate');
- if( $element->GetAttributeByName('_notable') )
- $attr["_notable"]=1;
- $ret = bbcat_list_cats($attr);
- break;
-
- case 'cat_icon':
- global $objSession;
- //$attribs = ExtraAttributes($element->attributes);
-
- $post_icon = $element->GetAttributeByName('_posts_icon');
- $no_post_icon = $element->GetAttributeByName('_no_post_icon');
- $locked_post_icon = $element->GetAttributeByName('_locked_post_icon');
-
- $ado = GetADODBConnection();
-
- $current_cat = $this->UniqueId();
- $prefix = GetTablePrefix();
-
- //|| $objSession->HasCatPermission('TOPIC.ADD.PENDING', $current_cat)
- if( !($objSession->HasCatPermission('TOPIC.ADD', $current_cat) ) )
- {
- $ret = "<img src=\"$locked_post_icon\" border=\"0\" alt=\"\">";
- break;
- }
-
- $CatModified = $this->Get('Modified');
- if(!$CatModified) $CatModified = $this->Get('CreatedOn');
-
- $Last = $objSession->GetPersistantVariable('LastLogin');
-
- if ($Last < $CatModified)
- {
- $ret = "<img src=\"$post_icon\" border=\"0\" alt=\"\">";
- }
- else
- {
- $ret = "<img src=\"$no_post_icon\" border=\"0\" alt=\"\">";
- }
- break;
- default:
- //echo "<b>This comes from BBCAT</b>";
- $ret = parent::ParseObject($element);
- //echo "bbcat Return: $ret<br>";
- break;
- }
- }
- return $ret;
- }
-
- }
-
- class clsBBCatList extends clsCatList
- {
- function clsBBCatList()
- {
- parent::clsCatList();
- $this->classname = 'clsBBCategory';
- }
-
- }
-
-?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/bbcat.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/images/th_999_2.jpg
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/images/th_999_2.jpg
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/images/999_2.jpg
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/images/999_2.jpg
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/images/180.jpg
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/images/180.jpg
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/images/179.jpg
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/images/179.jpg
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/images/emoticons/0_5.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/images/emoticons/0_5.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/images/emoticons/0_4.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/images/emoticons/0_4.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/images/emoticons/0_7.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/images/emoticons/0_7.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/images/emoticons/0_6.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/images/emoticons/0_6.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/images/emoticons/0_9.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/images/emoticons/0_9.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/images/emoticons/0_8.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/images/emoticons/0_8.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/images/emoticons/0_10.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/images/emoticons/0_10.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/images/emoticons/0_11.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/images/emoticons/0_11.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/images/emoticons/0_12.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/images/emoticons/0_12.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/images/emoticons/0_13.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/images/emoticons/0_13.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/images/emoticons/0_14.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/images/emoticons/0_14.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/images/emoticons/0_15.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/images/emoticons/0_15.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/images/emoticons/0_16.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/images/emoticons/0_16.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/images/emoticons/0_17.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/images/emoticons/0_17.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/images/emoticons/0_18.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/images/emoticons/0_18.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/images/emoticons/0_19.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/images/emoticons/0_19.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/images/emoticons/0_21.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/images/emoticons/0_21.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/images/emoticons/0_20.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/images/emoticons/0_20.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/images/emoticons/0_1.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/images/emoticons/0_1.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/images/emoticons/0_3.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/images/emoticons/0_3.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/images/emoticons/0_2.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-bulletin/images/emoticons/0_2.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/in-bulletin/topic.php
===================================================================
--- trunk/in-bulletin/topic.php (revision 12824)
+++ trunk/in-bulletin/topic.php (nonexistent)
@@ -1,1825 +0,0 @@
-<?php
-
-define('TYPE_TOPIC', 3);
-define('Locked', 3);
-
-RegisterPrefix("clsTopic","topic","in-bulletin/topic.php");
-
-class clsTopic extends clsCatItem
-{
- function clsTopic($TopicId=NULL)
- {
- global $objSession;
-
- $this->clsCatItem(TRUE);
- $this->tablename=GetTablePrefix()."Topic";
- $this->type=TYPE_TOPIC;
- $this->BasePermission="TOPIC";
- $this->Prefix = 'bb';
- $this->id_field = "TopicId";
- $this->TagPrefix = "topic";
- $this->TitleField = 'TopicText';
- if(isset($TopicId))
- $this->LoadFromDatabase($TopicId);
- if($objSession->HasSystemPermission("DEBUG.ITEM"))
- {
- $this->SetDebugLevel(1);
- }
-
- $this->OpenTagVar = "Topic_Highlight_OpenTag";
- $this->CloseTagVar = "Topic_Highlight_CloseTag";
- }
-
- function ClearCacheData()
- {
- DeleteModuleTagCache('inbulletin');
- /* $cats = explode(",",$this->CategoryMemberList());
- if(is_array($cats))
- {
- foreach($cats as $c)
- {
- if(is_numeric($c))
- {
- $evar = "'%:m".$c."%'";
- DeleteTagCache("bb_topic_list","",$evar);
- DeleteTagCache("bb_topic_more","",$evar);
- }
- }
- }
- DeleteTagCache("bb_topic_modified%","");
- DeleteTagCache("TopicPopValue","","");
- DeleteTagCache("TopicHotValue","","");
- DeleteTagCache("TopicNewValue","","");*/
- }
-
- function Validate()
- {
- global $Errors;
-
- $dataValid = true;
-
-
- if(!strlen($this->Get("TopicText")))
- {
- $objSession->AddError("error.fieldIsRequired",'TopicText',"","",get_class($this),"Validate");
- $dataValid = false;
- }
-
- if(!(int)($this->Get("OwnerId")))
- {
- $Errors->AddError("error.fieldIsRequired",'Owner',"","",get_class($this),"Validate");
- $dataValid = false;
- }
- return $dataValid;
- }
-
-
- function Update($UpdatedBy=NULL,$modificationDate=null)
- {
- parent::Update($UpdatedBy,$modificationDate);
- if($this->tablename==GetTablePrefix()."Topic")
- {
- $this->ClearCacheData();
- }
- }
-
- function Create()
- {
- parent::Create();
- if($this->tablename==GetTablePrefix()."Topic")
- {
- $this->ClearCacheData();
- DeleteTagCache("m_itemcount","Topic%");
- }
- }
-
- function Delete()
- {
- global $objPostingList, $objCatList;
-
- $PostCount = $this->Get("Posts");
- $objPostingList->DeleteTopicPosts($this->Get("TopicId"));
- $CategoryId = $this->Get("CategoryId");
- if(!is_numeric($CategoryId))
- $CategoryId = $objCatList->CurrentCategoryID();
-
- if($this->tablename==GetTablePrefix()."Topic")
- {
- $this->ClearCacheData();
- DeleteTagCache("m_itemcount","Topic%");
-
- if($this->Get("NotifyOwnerOnChanges"))
- {
- $this->SendUserEventMail("TOPIC.DELETE",$this->Get('OwnerId') );
- }
- $this->SendAdminEventMail("TOPIC.DELETE");
- }
- parent::Delete();
-
- $this->refreshLastUpdate($CategoryId);
-
- $this->UpdateCategoryPostCount();
- }
-
- function UpdateModified($UserId)
- {
- $this->Set(array("Modified", "ModifiedById"), array(adodb_mktime(), $UserId));
- $this->Update();
- }
-
- function UpdateNumPosts()
- {
- global $objSession;
-
- $sql = "SELECT COUNT(PostingId) as PostCount FROM ".GetTablePrefix()."Posting WHERE TopicId=" . $this->Get("TopicId");
- $result = $this->adodbConnection->Execute($sql);
-
- if($result && !$result->EOF)
- {
- $sql = "UPDATE ".$this->tablename." SET Posts=".$result->fields["PostCount"]." WHERE TopicId=" . $this->Get("TopicId");
- $result = $this->adodbConnection->Execute($sql);
- if ($result === false)
- {
- $Errors->AddError("error.DatabaseError",NULL,$this->adodbConnection->ErrorMsg(),"",get_class($this),"UpdateNumPosts");
- return false;
- }
- }
- }
-
- function SetNewItem()
- {
- global $objConfig;
-
- $value = $this->Get("CreatedOn");
-
- $cutoff = adodb_date("U") - ($objConfig->Get("Topic_NewDays") * 86400);
- $this->IsNew = FALSE;
- if($value>$cutoff)
- $this->IsNew = TRUE;
- return $this->IsNew;
- }
-
- function SetPopItem()
- {
- global $objConfig, $objTopicList;
-
- $cutoff = $objTopicList->GetPopValue();
- if($cutoff > 0)
- {
- $this->IsPop = FALSE;
- if($this->Get('Posts') >= $cutoff)
- {
- $this->IsPop = TRUE;
- }
- }
- else
- $this->IsPop = FALSE;
- return $this->IsPop;
- }
-
- function SetHotItem()
- {
- global $objConfig, $objTopicList;
-
- $this->IsHot = FALSE;
- $cutoff = $objTopicList->GetHotValue();
- if($cutoff>0)
- {
- if($this->Get("Views") >= $cutoff)
- $this->IsHot = TRUE;
- }
- return $this->IsHot;
- }
-
- function Approve()
- {
- $this->Set("Status", 1);
- $this->Update();
- $this->SendUserEventMail("TOPIC.APPROVE",$this->Get("OwnerId"));
- $this->SendAdminEventMail("TOPIC.APPROVE");
- }
-
- function Deny()
- {
- $this->Set("Status", 0);
- $this->Update();
- $this->SendUserEventMail("TOPIC.DENY",$this->Get("OwnerId"));
- $this->SendAdminEventMail("TOPIC.DENY");
- }
-
- function LoadFromDatabase($Id)
- {
- global $Errors;
-
- if(!isset($Id))
- {
- $Errors->AddError("error.AppError",NULL,'Internal error: LoadFromDatabase id',"",get_class($this),"LoadFromDatabase");
- return false;
- }
- if($Id>0)
- {
- $sql = sprintf("SELECT * FROM ".$this->tablename." WHERE ".$this->IdField()." = '%s'",$Id);
- $result = $this->adodbConnection->Execute($sql);
- if ($result === FALSE)
- {
- $Errors->AddError("error.DatabaseError",NULL,$this->adodbConnection->ErrorMsg(),"",get_class($this),"LoadFromDatabase");
- return FALSE;
- }
-
- $data = $result->fields;
-
- $this->SetFromArray($data);
- return TRUE;
- }
- else
- return FALSE;
- }
- function LoadFromResourceId($Id)
- {
- global $objSession, $Errors;
- if(!isset($Id))
- {
- $Errors->AddError("error.AppError",NULL,'Internal error: LoadFromDatabase id',"",get_class($this),"LoadFromResourceId");
- return false;
- }
- $sql = sprintf("SELECT * FROM ".$this->tablename." WHERE ResourceId = '%s'",$Id);
- $result = $this->adodbConnection->Execute($sql);
- if ($result === false)
- {
- $Errors->AddError("error.DatabaseError",NULL,$adodbConnection->ErrorMsg(),"",get_class($this),"LoadFromResourceId");
- return false;
- }
- $data = $result->fields;
- if(is_array($data))
- $this->SetFromArray($data);
- }
-
-
- function GetPostsSince($time_stamp)
- {
- global $Errors;
-
- $Id = $this->Get("TopicId"); //get cur cat id
- settype($time_stamp,"integer");
- $sql = "SELECT count(PostingId) as pcount FROM ".GetTablePrefix()."Posting WHERE TopicId = $Id AND Posting.ModifiedOn >= $time_stamp ";
- $result = $this->adodbConnection->Execute($sql);
- if($result && !$result->EOF)
- return $result->fields["pcount"];
- else
- {
- $Errors->AddError("error.DatabaseError",NULL,$this->adodbConnection->ErrorMsg(),"",get_class($this),"GetPostsSince");
- return false;
- }
-
- }
-
- function GetPosts()
- {
- global $Errors;
-
-/* if(!is_numeric($this->Get("Posts"))<1)
- {
- $Id = $this->Get("TopicId"); //get cur cat id
-
- $sql = "SELECT count(PostingId) FROM ".GetTablePrefix()."Posting WHERE TopicId = $Id";
- $result = $this->adodbConnection->Execute($sql);
- if($result && !$result->EOF)
- $this->Set("Posts",$result->fields[0]);
- else
- {
- $Errors->AddError("error.DatabaseError",NULL,$this->adodbConnection->ErrorMsg(),"","clsTopic","GetPosts");
- return false;
- }
- }*/
- return $this->Get("Posts");
- }
-
- function StatusIcon()
- {
- global $rootURL;
-
- $ret = $rootURL."/in-bulletin/admin/images/";
-
- switch($this->Get("Status"))
- {
- case STATUS_DISABLED:
- $ret .= "icon16_topic_disabled.gif";
- break;
- case STATUS_PENDING:
- $ret .= "icon16_topic_pending.gif";
- break;
- case STATUS_ACTIVE:
- $img = "icon16_topic.gif";
- if($this->IsPopItem())
- $img = "icon16_topic_top.gif";
- if($this->IsHotItem())
- $img = "icon16_topic_hot.gif";
- if($this->IsNewItem())
- $img = "icon16_topic_new.gif";
- if($this->Is("EditorsPick"))
- $img = "icon16_topic_pick.gif";
- $ret .= $img;
- break;
- }
- return $ret;
- }
-
- function ItemURL($Template=NULL,$SetCat=FALSE,$Action=NULL)
- {
- global $var_list_update,$var_list,$bb_var_list_update,$m_var_list_update;
-
- $url_params = Array();
- $var_list_update["t"] = $Template ? $Template : $var_list["t"];
-
-// if($SetCat || (int)$this->Get("CategoryId")>0)
-// {
- $cat = $this->Get("CategoryId");
- if(!is_numeric($cat))
- $cat = $this->GetPrimaryCategory();
- $m_var_list_update["cat"] = $cat;
-// }
-
- $bb_var_list_update["top"] = $this->Get("TopicId");
- $bb_var_list_update["pp"] = 1;
-
- if( isset($Action) && $Action ) $url_params['Action'] = $Action;
- $ret = HREF_Wrapper('', $url_params);
-
- unset($m_var_list_update["cat"],$bb_var_list_update["top"],$bb_var_list_update["tp"],$bb_var_list_update["pp"], $var_list_update["t"]);
- return $ret;
- }
-
- function ParseObject($element)
- {
- global $objConfig, $objSession, $objUsers, $objCatList, $var_list_update, $var_list,
- $bb_var_list_update, $m_var_list_update,$objCensorList;
-
- //print_pre($element);
-
- $extra_attribs = ExtraAttributes($element->attributes);
- if(strtolower($element->name)==$this->TagPrefix)
- {
- $field = strtolower($element->attributes["_field"]);
- switch($field)
- {
-
- /*
- @field:topic.text
- @description: Returns the topic title (or subject)
- */
- case "text":
- $topic_text = inp_unescape($objCensorList->CensorText($this->Get("TopicText")));
- $num_chars = $element->GetAttributeByName('_numchars');
- if ($num_chars && strlen($topic_text) > $num_chars) {
- $ret = substr($topic_text, 0, $num_chars)."...";
- }
- else {
- $ret = $topic_text;
- }
- $ret = $this->HighlightText($ret);
- break;
- /*
- @field:topic.replies
- @description: Returns the number of posts for the topic (The first post is not counted)
- */
- case "replies":
- $ret = $this->GetPosts() - 1;
- break;
- /*
- @field:topic.views
- @description: Returns the number of times the topic has been viewed
- */
- case "views":
- return round($this->Get("Views"));
- break;
- /*
- @field:topic.category
- @description:Return a category field from the link's category
- @attrib:_cattag::Category field to parse
- */
-
- case "lastposter":
- /*
- @field:topic.lastposter
- @description:Returns the login name of the last poster in this topic
- */
- if(strlen($this->Get("LastPoster")))
- {
- $ret = $this->Get("LastPoster");
- }
- else
- {
- $id = $this->Get("LastPostId");
- if (!is_numeric($id)) {
- $id = $this->GetLastPostId();
- }
-
- if ($id) {
- $post = new clsPosting($id);
- if (is_object($post)) {
- $ret = $post->Get('PosterAlias');
- if (!$ret && ($post->Get('CreatedById') < 0)) {
- $ret = language('lu_Guest');
- }
- }
- }
- }
- break;
- case "lastpostdate":
- /*
- @field:topic.lastpostdate
- @description:Returns the date/time a post was made to this topic
- @attrib:_tz:bool:Convert the date to the user's local time
- @attrib:_part::Returns part of the date. The following options are available: month,day,year,time_24hr,time_12hr
- */
- $d = $this->Get("LastPostDate");
- if (!$element->GetAttributeByName('_tz')) {
- $element->SetAttributeByName('_tz', 'auto');
- }
- $ret = $this->ParseTimeStamp($d, $element->attributes);
- break;
- /*
- @field:topic.image
- @description:Return an image associated with the topic
- @attrib:_primary:bool:If true, will return the default image if the requested image does not exist
- @attrib:_name::Return the image with this name
- @attrib:_thumbnail:bool:If true, return the thumbnail version of the image
- @attrib:_imagetag:bool:If true, returns a complete image tag. exta html attributes are passed to the image tag
- */
- case "modifiedby":
- /*
- @field:topic.modifiedby
- @description:parse a user field of the user that last modified the topic
- @attrib:_usertag::User field to return (defaults to login ID)
- */
- $field = $element->attributes["_usertag"];
- if(!strlen($field))
- {
- $field = "user_login";
- }
- $u =& $objUsers->GetItem($this->Get("ModifiedById"));
- $ret = $u->parsetag($field);
- break;
- case "owner":
- /*
- @field:topic.owner
- @description:parse a user field of the user that is the topic owner
- @attrib:_usertag::User field to return (defaults to login ID)
- */
- $field = $element->attributes["_usertag"];
- if(!strlen($field))
- {
- $field = "user_login";
- }
- $u =& $objUsers->GetItem($this->Get("OwnerId"));
- $ret = $u->parsetag($field);
- break;
-
- /*
- @field:topic.custom
- @description:Returns a custom field
- @attrib:_customfield::field name to return
- @attrib:_default::default value
- */
- case "date":
- /*
- @field:topic.date
- @description:Returns the date/time the topic was created
- @attrib:_tz:bool:Convert the date to the user's local time
- @attrib:_part::Returns part of the date. The following options are available: month,day,year,time_24hr,time_12hr
- */
- $d = $this->Get('CreatedOn');
- if (!$element->GetAttributeByName('_tz')) {
- $element->SetAttributeByName('_tz', 'auto');
- }
- $ret = $this->ParseTimeStamp($d,$element->attributes);
- break;
- case "modifieddate":
- /*
- @field:link.modifieddate
- @description:Returns the date/time the topic was last modified
- @attrib:_tz:bool:Convert the date to the user's local time
- @attrib:_part::Returns part of the date. The following options are available: month,day,year,time_24hr,time_12hr
- */
- $d = $this->Get('Modified');
- if (!$element->GetAttributeByName('_tz')) {
- $element->SetAttributeByName('_tz', 'auto');
- }
- $ret = $this->ParseTimeStamp($d,$element->attributes);
- break;
- /*
- @field:topic.fullpath
- @description:The full category path of the item
- */
- //break;
- case "locked":
- /*
- @field:topic.locked
- @description: Returns a value if the topic is locked
- @attrib:_text:lang:Language tag to display as the link text
- @attrib:_plaintext:: Plain text to use instead of language tag
- @attrib:image::Image URL to display
- */
-
- if($this->Get("TopicType")==0)
- {
- $text = $element->attributes["_text"];
- if(!strlen($text))
- {
- $text = $element->attributes["_plaintext"];
- if(!strlen($text))
- {
- if(strlen($element->attributes["_image"]))
- {
- $text = "<IMG SRC=\"".$element->attributes["_image"]."\" BORDER=\"0\" alt=\"\">";
- }
- }
- $ret .= $text."</A>";
- }
- else
- $ret .= language($text)."</A>";
- if(!strlen($ret)) $ret = "locked";
- }
- else {
- $ret = '';
- }
-
- break;
- /*
- @field:topic.cat_link
- @description:Returns a URL setting the topic to the current topic and the topic's category to the current category
- @attrib:_template:tpl:Template URL should point to
- */
- /*
- @field:topic.link
- @description:Returns a URL setting the topic to the current topic
- @attrib:_template:tpl:Template URL should point to
- */
- case "perm_link":
- /*
- @field:topic.perm_link
- @description: Returns a link to the current topic if permissions are set for the user
- @attrib:_permission::Comma-separated permission list to check, any one permission granted to the user will create the link
- @attrib:_system:bool:Set this to true if any one permission in the list is a system permission
- @attrib:_noaccess:tpl:Template to link to if access is denied
- @attrib:_template:tpl:Tempalte to link to if access is granted
- @attrib:_text:lang:Language tag to display as the link text
- @attrib:_plaintext:: Plain text to use instead of language tag
- @attrib:image::Image URL to display in the anchor tag
- */
- $p = $element->attributes["_permission"];
- $sys = $element->attributes["_system"];
- $cat = $this->Get("CategoryId");
- if(!is_numeric($cat))
- $cat = $this->GetPrimaryCategory();
-
- $HasPerm = $objSession->HasCatPermInList($p,$cat, $sys);
- if(!$HasPerm && strlen($element->attributes["_noaccess"])>0)
- {
- $t = $element->attributes["_noaccess"];
- $ret = $this->ItemURL($t,FALSE,"");
- }
- if($HasPerm)
- {
- $t = $element->attributes["_template"];
- $ret = "<A HREF=\"".$this->ItemURL($t)."\">";
- $text = $element->attributes["_text"];
- if(!strlen($text))
- {
- $text = $element->attributes["_plaintext"];
- if(!strlen($text))
- {
- if(strlen($element->attributes["_image"]))
- {
- $text = "<IMG SRC=\"".$element->attributes["_image"]."\" BORDER=\"0\" alt=\"\">";
- }
- }
- $ret .= $text."</A>";
- }
- else
- $ret .= language($text)."</A>";
- }
- else
- $ret = '';
- break;
- case "link_lock":
- /*
- @field:topic.link_lock
- @description: Returns a link to lock or unlock the topic. A complete anchor tag is returned, and the tag class is set to 'topic_reply'
- @attrib:_template:tpl:Template link should point to
- @attrib:_text:lang:Language tag to display as the link text
- @attrib:_plaintext:: Plain text to use instead of language tag
- @attrib:image::Image URL to display in the anchor tag
- */
- $cat = $this->Get("CategoryId");
- if(!is_numeric($cat))
- $cat = $this->GetPrimaryCategory();
-
- if($objSession->HasCatPermission("TOPIC.LOCK",$cat))
- {
- $t = $element->attributes["_template"];
- if(strlen($t))
- {
- $var_list_update["t"] = $t;
- }
- else
- $var_list_update["t"] = $var_list["t"];
-
- $bb_var_list_update["top"] = $this->Get("TopicId");
- if($this->Get("TopicType")==1)
- {
- $ret = "<A HREF=\"".HREF_Wrapper('', Array('Action' => 'bb_lock_topic') )."\">";
- }
- else
- $ret = "<A HREF=\"".HREF_Wrapper('', Array('Action' => 'bb_unlock_topic') )."\">";
- $text = $element->attributes["_text"];
- if(!strlen($text))
- {
- $text = $element->attributes["_plaintext"];
- if(!strlen($text))
- {
- if(strlen($element->attributes["_image"]))
- {
- $text = "<IMG SRC=\"".$element->attributes["_image"]."\" BORDER=\"0\" alt=\"\">";
- }
- }
- $ret .= $text."</A>";
- }
- else
- $ret .= language($text)."</A>";
- }
- else
- $ret = "";
- unset($bb_var_list_update["top"], $m_var_list_update["cat"],$var_list_update["t"]);
- break;
-
- case "link_delete":
- /*
- @field:topic.link_delete
- @description: Returns a link to delete the topic.
- @attrib:_template:tpl:Template link should point to
- @attrib:_text:lang:Language tag to display as the link text
- @attrib:_plaintext:: Plain text to use instead of language tag
- @attrib:image::Image URL to display in the anchor tag
- */
- $cat = $this->Get("CategoryId");
- if(!is_numeric($cat))
- $cat = $this->GetPrimaryCategory();
-
- $OwnerPerm = ($objSession->HasCatPermission("TOPIC.OWNER.DELETE", $cat) &&
- $objSession->Get("PortalUserId")==$this->Get("OwnerId"));
-
- if($objSession->HasCatPermission("TOPIC.DELETE",$cat) || $OwnerPerm)
- {
- $bb_var_list_update["top"] = $this->Get("TopicId");
- $m_var_list_update["cat"] = $cat;
- $ret = "<A CLASS=\"topic_delete\" HREF=\"".HREF_Wrapper('', Array('Action' => 'bb_topic_delete') ) ."\">";
- $text = $element->attributes["_text"];
- if(!strlen($text))
- {
- $text = $element->attributes["_plaintext"];
- if(!strlen($text))
- {
- if(strlen($element->attributes["_image"]))
- {
- $text = "<IMG SRC=\"".$element->attributes["_image"]."\" BORDER=\"0\" alt=\"\">";
- }
- }
- $ret .= $text."</A>";
- }
- else
- $ret .= language($text)."</A>";
- }
- else
- $ret = "";
-
- unset($bb_var_list_update["top"], $m_var_list_update["cat"]);
- break;
-
- case "link_edit":
- /*
- @field:topic.link_edit
- @description: Rturns a link edit the topic. A complete anchor tag is returned, and the tag class is set to 'topic_reply'
- @attrib:_template:tpl:Template link should point to
- @attrib:_text:lang:Language tag to display as the link text
- @attrib:_plaintext:: Plain text to use instead of language tag
- @attrib:image::Image URL to display in the anchor tag
- */
- $cat = $this->Get("CategoryId");
- if (!is_numeric($cat)) {
- $cat = $this->GetPrimaryCategory();
- }
-
- $perms[1] = $objSession->HasCatPermission('TOPIC.MODIFY', $cat) || $objSession->HasCatPermission("TOPIC.MODIFY.PENDING", $cat);
- $perms[2] = $objSession->Get("PortalUserId") == $this->Get("OwnerId") && $objSession->HasCatPermission("TOPIC.OWNER.MODIFY", $cat);
- $perms[3] = $objSession->Get("PortalUserId") == $this->Get("OwnerId") && $objSession->HasCatPermission("TOPIC.OWNER.MODIFY.PENDING", $cat);
-
- if ( ($perms[1] || $perms[2] || $perms[3]) && ($this->Get("TopicType") == 1) ) {
-
- $bb_var_list_update["top"] = $this->Get("TopicId");
- $m_var_list_update["cat"] = $cat;
- $var_list_update["t"] = $element->attributes["_template"];
- if(strlen($element->attributes["_template"]))
- {
- $ret = "<A CLASS=\"topic_edit\" HREF=\"".HREF_Wrapper()."\">";
- $text = $element->attributes["_text"];
- if(!strlen($text))
- {
- $text = $element->attributes["_plaintext"];
- if(!strlen($text))
- {
- if(strlen($element->attributes["_image"]))
- {
- $text = "<IMG SRC=\"".$element->attributes["_image"]."\" BORDER=\"0\" alt=\"\">";
- }
- }
- $ret .= $text."</A>";
- }
- else
- $ret .= language($text)."</A>";
- }
- else
- $ret = "[no template]";
- }
- else
- $ret = "";
- unset($bb_var_list_update["top"], $var_list_update["t"],$m_var_list_update["cat"]);
- break;
-
- case "link_reply":
- /*
- @field:topic.link_reply
- @description: Rturns a link to post a reply to the topic. A complete anchor tag is returned, and the tag class is set to 'topic_reply'
- @attrib:_template:tpl:Template link should point to
- @attrib:_text:lang:Language tag to display as the link text
- @attrib:_plaintext:: Plain text to use instead of language tag
- @attrib:image::Image URL to display in the anchor tag
- */
- if(($objSession->HasCatPermission("TOPIC.REPLY.ADD") ||
- $objSession->Get("PortalUserId")==$this->Get("OwnerId"))
- && $this->Get("TopicType")==1)
- {
- $bb_var_list_update["top"] = $this->Get("TopicId");
- $var_list_update["t"] = $element->attributes["_template"];
- if(strlen($element->attributes["_template"]))
- {
- $ret = "<A CLASS=\"topic_reply\" HREF=\"".HREF_Wrapper()."\">";
- $text = $element->attributes["_text"];
- if(!strlen($text))
- {
- $text = $element->attributes["_plaintext"];
- if(!strlen($text))
- {
- if(strlen($element->attributes["_image"]))
- {
- $text = "<IMG SRC=\"".$element->attributes["_image"]."\" BORDER=\"0\" alt=\"\">";
- }
- }
- $ret .= $text."</A>";
- }
- else
- $ret .= language($text)."</A>";
- }
- else
- $ret = "";
- }
- else
- $ret = "";
- unset($bb_var_list_update["top"],$var_list_update["t"]);
- break;
-
- case "add_favorite_link":
- /*
- @field:topic.add_favorite_link
- @description:Returns a URL to add this topic to the user's favorites
- @attrib:_template:tpl:Template URL should point to
- */
- $t = $element->attributes["_template"];
- if(!strlen($t))
- $t = $var_list["t"];
- $ret = $this->ItemURL($t,FALSE,"bb_add_favorite");
- break;
- case "del_favorite_link":
- /*
- @field:topic.del_favorite_link
- @description:Returns a URL to remove this link from the user's favorites
- @attrib:_template:tpl:Template URL should point to
- */
- $t = $element->attributes["_template"];
- if(!strlen($t))
- $t = $var_list["t"];
- $ret = $this->ItemURL($t,FALSE,"bb_del_favorite");
- break;
- /*
- @field:topic.favorite_toggle
- @description: Returns a link to set or reset the favorite flag for the current user
- @attrib: _template:tpl:Template to link to if user has the FAVORITES permission (defaults to current template)
- @attrib: _denytemplate:tpl: Template to link to if user does not have favorites permission (ie Guest) Defaults to current template
- @attrib: _addlabel:lang:Language tag to display if link is to add favorite
- @attrib: _addimage::Image url to include in link if adding favorite
- @attrib: _dellabel:lang:Language tag to display if item is already a favorite
- @attrib: _delimage::Image url to include in link if removing the favorite
- */
- case "favorite_toggle":
-
- $t = $element->attributes["_template"];
- if(!strlen($t))
- $t = $var_list["t"];
-
- if(!$this->IsFavorite())
- {
- $action = "bb_add_favorite";
- if (!strlen($element->attributes["_addlabel"])) {
- $text = "<IMG SRC=\"".$element->attributes["_addimage"]."\" BORDER=\"0\" alt=\"\">";
- }
- else {
- $label = $element->attributes["_addlabel"];
- }
- }
- else
- {
- $action = "bb_del_favorite";
- if (!strlen($element->attributes["_dellabel"])) {
- $text = "<IMG SRC=\"".$element->attributes["_delimage"]."\" BORDER=\"0\" alt=\"\">";
- }
- else {
- $label = $element->attributes["_dellabel"];
- }
- }
- if (strlen($label)) {
- $text = language($label);
- }
- $ret = "<A ".$extra_attribs." HREF=\"".$this->ItemURL($t,FALSE,$action)."\">".$text."</A>";
- break;
- case "admin_icon":
- if( $element->GetAttributeByName('_fulltag') )
- {
- $ret = "<IMG $extra_attribs SRC=\"".$this->StatusIcon()."\" alt=\"\">";
- }
- else
- $ret = $this->StatusIcon();
- break;
- case "admin_modified":
- if($this->Get("Modified")<=0)
- return "-";
- return LangDate($this->Get("Modified"))."<br>".LangTime($this->Get("Modified"));
- break;
- case "post_pagelist":
- /*
- @field:topic.post_pagelist
- @description: Returns a page navigation link set for this topic, assuming the current page of the post list is page 1. If less that one page full of posts exists, nothing is returned
- @attrib:_DestTemplate:tpl: Template the links should point to
- @attrib:_PagesToList:int: Number of pages listed in the bar
- */
- $plist = new clsPostingList();
- $plist->TopicID = $this->Get('TopicId'); //$this->TopicID;
- $where = 'TopicId = '.$this->Get('TopicId');
- $plist->QueryItemCount = $this->GetPosts();
- $plist->Page = 0;
- $t = $element->attributes['_desttemplate'];
- $PagesToList = $element->attributes['_pagestolist'];
- if (!is_numeric($PagesToList)) $PagesToList = 10;
- if ($plist->QueryItemCount > $objConfig->Get('Perpage_Postings'))
- {
- $ret = $plist->GetPageLinkList($t,'',$PagesToList, $extra_attribs);
- }
- else
- {
- $ret = '';
- }
- break;
- case "postedby":
- /*
- @field:topic.postedby
- @description:Returns the login name of the last poster in this topic
- */
- $ret = $this->Get("PostedBy");
-
- if ($ret == '') {
- $ret = admin_language("lu_Guest");
- }
- break;
- case "admin_cell_back":
- $ret = int_table_color_ret();
- break;
- /*
- @field:topic.rating
- @description:Displays the topic rating
- @attrib:_displaymode:: How the rating should be displayed<br>
- <UL>
- <LI>"Numerical": Show the decimal value
- <LI>"Text": Show the text version
- <LI>"Graphical":Show images representing the rating
- </UL>
- @attrib:_onimage::on image tick shown in graphical display mode
- @attrib:_offimage::off image tick shown in graphical display mode
- @attrib:_separator::In graphical display mode, this html is placed between each tick image
- */
- /*
- @field:topic.reviews
- @description:Return the number of reviews for think link
- @attrib:_today:bool:Count reviews added today only
- */
- case "votes":
- /*
- @field:topic.votes
- @description:Return the number of rating votes for this topic
- */
- $ret = $this->Get("CachedVotesQty");
- break;
-
-
- case 'icon':
- $icons = Array();
- $icons['new'] = $element->GetAttributeByName('_new_icon');
- $icons['no_new'] = $element->GetAttributeByName('_no_new_icon');
- $icons['locked'] = $element->GetAttributeByName('_locked_icon');
-
-
- if ($this->Get('TopicType') == 0 || $objSession->Get('PortalUserId') <= 0) {
- $ret = $icons['locked'];
- break;
- }
-
- $topic_modified = $this->Get('Modified');
- if (!$topic_modified) {
- $topic_modified = $this->Get('CreatedOn');
- }
-
- $last_login = $objSession->GetPersistantVariable('LastLogin');
-
- if ($last_login < $topic_modified) {
- $ret = $icons['new'];
- }
- else {
- $ret = $icons['no_new'];
- }
- break;
-
- /*
- @field:topic.new
- @description:returns text if topic's status is "new"
- @attrib:_label:lang: Text to return if status is new
- */
- /*
- @field:topic.pop
- @description:returns text if topic's status is "popular"
- @attrib:_label:lang: Text to return if status is popular
- */
- /*
- @field:topic.hot
- @description:returns text if topic's status is "hot"
- @attrib:_label:lang: Text to return if status is "hot"
- */
- /*
- @field:topic.pick
- @description:returns text if topic's status is "hot"
- @attrib:_label:lang: Text to return if status is "hot"
- */
- }
- if(!isset($ret))
- $ret = parent::ParseObject($element);
- }
- else
- {
- $ret = $this->parsetag($element->name);
- }
- return $ret;
- }
-
- function parsetag($tagname)
- {
- global $objConfig, $objSession, $objUsers, $var_list_update, $bb_var_list_update, $bb_var_list;
-
- switch($tagname)
- {
- case "topic_admin_icon":
- return $this->StatusIcon();
- break;
- case "topic_id":
- return $this->Get("TopicId");
- break;
- case "topic_resourceid":
- return $this->Get("ResourceId");
- break;
- case "topic_modified":
- if ($this->Get('Modified') <= 0) {
- return '';
- }
- return LangDate($this->Get('Modified'), 0, true);
- break;
-
- case "topic_modified_time":
- if ($this->Get('Modified') <= 0) {
- return '';
- }
- return LangTime($this->Get('Modified'), 0, true);
- break;
-
- case "topic_admin_modified":
- if($this->Get("Modified")<=0)
- return "-";
- return LangDate($this->Get("Modified"))."<br>".LangTime($this->Get("Modified"));
- break;
- case "topic_created":
- if ($this->Get('CreatedOn') <= 0) {
- return '';
- }
- return LangDate($this->Get('CreatedOn'), 0, true);
- break;
-
- case "topic_created_time":
- if ($this->Get('CreatedOn') <= 0) {
- return '';
- }
- return LangTime($this->Get('CreatedOn'), 0, true);
- break;
-
- case "topic_text":
- return inp_unescape($this->Get("TopicText"));
- break;
- case "topic_delete":
- if($this->CheckPermission("DELETE"))
- {
- $bb_var_list_update["top"] = $this->Get("TopicId");
- return "<A CLASS=\"topic_delete\" HREF=\"".HREF_Wrapper('', Array('Action' => 'bb_topic_delete') ) ."\">".language("delete")."</A>";
- }
- else
- return "";
- break;
- case "topic_name":
- return inp_unescape($this->Get("TopicText"));
- break;
- case "topic_views":
- return $this->Get("Views");
- break;
- case "topic_posts":
- return $this->GetPosts();
- break;
- case "topic_replies":
- return $this->GetPosts() - 1;
- break;
- case "topic_priority":
- if($this->Get("Priority")>0)
- {
- return (int)$this->Get("Priority");
- }
- else
- return "";
- break;
- case "topic_pick":
- if ($this->Is("EditorsPick"))
- return "pick";
- break;
- case "topic_new":
- if ($this->IsNewItem())
- return "new";
- break;
- case "topic_pop":
- if ($this->IsPopItem())
- return "pop";
- break;
- case "topic_hot":
- if ($this->IsHotItem())
- return "hot";
- break;
- case "topic_poster":
- return $this->Get("PostedBy");
- break;
- case "topic_category":
- return $this->Get("CategoryId");
- break;
- case "topic_last_post":
- return LangDate($this->Get("Modified"));
- break;
- case "topic_link":
- $var_list_update["t"] = "inbulletin/bb_post_list";
- $bb_var_list_update["top"] = $this->Get("TopicId");
- $bb_var_list_update["cat"] = $this->Get("CategoryId");
- $bb_var_list_update["pp"]=1;
- $ret = HREF_Wrapper();
- unset($var_list_update["t"], $bb_var_list_update["top"]);
-
- return $ret;
- break;
- case "topic_review_link":
- $var_list_update["t"] = "inbulletin/bb_reviews";
- $bb_var_list_update["top"] = $this->Get("TopicId");
- $bb_var_list_update["cat"] = $this->Get("CategoryId");
- $bb_var_list_update["pp"]=1;
- $ret = HREF_Wrapper();
- unset($var_list_update["t"], $bb_var_list_update["top"]);
-
- return $ret;
- break;
-
- case "topic_rate_link":
- $var_list_update["t"] = "inbulletin/bb_rate";
- $bb_var_list_update["top"] = $this->Get("TopicId");
- $bb_var_list_update["cat"] = $this->Get("CategoryId");
- $bb_var_list_update["pp"]=1;
- $ret = HREF_Wrapper();
- unset($var_list_update["t"], $bb_var_list_update["top"]);
-
- return $ret;
- break;
- case "topic_num_reviews":
- $ret = $this->ReviewCount();
- return $ret;
- break;
- case "topic_votes":
- return $this->Get("CachedVotesQty");
- break;
- case "topic_rating":
- return round($this->Get("CachedRating"),1);
- break;
- case "topic_rating_txt":
- return RatingText($this->Get("CachedRating"));
- break;
- case "topic_type_img":
- $last_login = $objSession->GetPersistantVariable("LastLogin");
-
- if ($objSession->Get("PortalUserId") == -2)
- {
- $n = $this->GetPosts();
- if ($n > 25)
- return "inbulletin/images/hot_folder.gif";
- else
- return "inbulletin/images/folder.gif";
-
- }
-
- $n = $this->GetPostsSince($last_login);
- if ($n > 25)
- return "inbulletin/images/hot_red_folder.gif";
- elseif ($n > 0)
- return "inbulletin/images/red_folder.gif";
- else
- {
- $n2 = $this->GetPosts();
- if ($n2 > 25)
- return "inbulletin/images/hot_folder.gif";
- else
- return "inbulletin/images/folder.gif";
- }
- break;
-
- case "topic_admin_cell_back":
- return int_table_color_ret();
- default:
- return "Undefined:$tagname";
- break;
- }
- }
-
- function UpdateCategoryPostCount($CatId=NULL)
- {
- global $objCatList,$objCountCache;
-
- if(!is_numeric($CatId))
- $CatId = $objCatList->CurrentCategoryID();
-
- $PostCount = 0;
- $sql = "SELECT SUM(Posts) as PostCount,count(TopicId) as TopicCount FROM ".$this->tablename." INNER JOIN ".GetTablePrefix()."CategoryItems ON ";
- $sql .= "(".$this->tablename.".ResourceId=".GetTablePrefix()."CategoryItems.ItemResourceId) WHERE CategoryId=$CatId AND Status=1";
- $rs = $this->adodbConnection->Execute($sql);
- if($rs && !$rs->EOF)
- $PostCount = $rs->fields["PostCount"];
-
- if($PostCount>0)
- $PostCount = $PostCount - (int)$rs->fields["TopicCount"];
- $sql = "UPDATE ".$objCountCache->SourceTable." SET Value=".(int)$PostCount.",LastUpdate=".adodb_date("U")." WHERE ItemType=30 AND ListType=30 AND ExtraId=$CatId";
- $this->adodbConnection->Execute($sql);
- }
-
- function &AddPost($PosterAlias,$Pending, $PostingText, $Subject="")
- {
- global $objUsers,$objSession, $objCatList;
-
- $u =& $objSession->CurrentUser;
-
- if (is_object($u)) {
- $posts = (int)$u->GetPersistantVariable("bb_posts");
- $posts++;
- $u->SetPersistantVariable("bb_posts",$posts);
- }
-
- $p = New clsPosting(NULL);
- $p->Set(array("PosterAlias", "Pending", "PostingText", "TopicId"),
- array($PosterAlias, $Pending, str_replace("env=".$objSession->GetSessionKey(), "env=",$PostingText), $this->Get("TopicId")));
- $p->Set("IPAddress",$_SERVER["REMOTE_ADDR"]);
- $p->Set("CreatedOn",adodb_date("U"));
- if (is_object($u)) {
- $p->Set("CreatedById",$u->Get("PortalUserId"));
- }
- if(strlen($Subject))
- {
- $p->Set("Subject",$Subject);
- }
- $p->Create();
-
-
- $this->Increment("Posts");
- $this->Set(array("Modified", "ModifiedById"), array(adodb_mktime(), $objSession->Get("PortalUserId")));
- $this->Set("LastPostId",$p->Get("PostingId"));
- $this->Set("LastPostDate",$p->Get("CreatedOn"));
- $this->Update();
-
- $this->UpdateCategoryPostCount();
- if($this->Get("NotifyOwnerOnChanges"))
- {
- $this->SendUserEventMail("POST.ADD",$this->Get("OwnerId"));
- }
-
- if (is_object($u)) {
- $this->SendUserEventMail("POST.ADD",$u->Get("PortalUserId"));
- }
- $this->SendAdminEventMail("POST.ADD");
-
- $CategoryId = $this->Get("CategoryId");
- if(!is_numeric($CategoryId))
- $CategoryId = $objCatList->CurrentCategoryID();
-
- return $p;
- }
-
- function GetLastPostId()
- {
-
- $sql = "SELECT PostingId FROM ".GetTablePrefix()."Posting WHERE TopicId=".$this->Get("TopicId");
- $sql .= " ORDER BY CreatedOn DESC LIMIT 1";
- $rs = $this->adodbConnection->Execute($sql);
- if($rs && !$rs->EOF)
- {
- $ret = $rs->fields["PostingId"];
- }
- else
- $ret = 0;
- return $ret;
- }
-
- function CopyToNewResource($TargetCat = NULL,$NameField="")
- {
- $OldTopicId = $this->Get("TopicId");
-
- parent::CopyToNewResource($TargetCat,$NameField);
- $p = new clsPostingList();
- $p->TopicID = $OldTopicId;
- $sql = "SELECT * FROM ".$p->SourceTable." WHERE TopicId=$OldTopicId ";
- $p->Query_Item($sql,-1,-1);
- if($p->NumItems()>0)
- {
- foreach($p->Items as $post)
- {
- $post->Set("TopicId",$this->Get("TopicId"));
- $post->UnsetIdField();
- $post->Create();
- }
- $this->Set("Posts",$p->NumItems());
- }
- }
-
- function SetTodayPosts($IncrementBy)
- {
- $DateNow = adodb_date('Y-m-d', adodb_mktime() );
- $LastTodayDate = $this->Get('TodayDate');
- $TodayPosts = ($DateNow == $LastTodayDate) ? $this->Get('TodayPosts') : 0;
- $TodayPosts += $IncrementBy;
- $this->Set('TodayDate', $DateNow);
- $this->Set('TodayPosts', $TodayPosts);
- $this->Update();
- }
-
-}
-
-class _clsTopicList extends clsCatItemList {
- //var $Page;
- var $CategoryID;
- var $Permissions;
- // var $PerPageVar;
-
- function _clsTopicList($CatID=NULL)
- {
- global $objSession,$bb_var_list;
-
- $this->clsCatItemList();
-
- $this->Prefix = 'bb';
- $this->classname="clsTopic";
- $this->SourceTable = GetTablePrefix()."Topic";
- $this->Page = $bb_var_list["tp"];
- $this->BasePermission="TOPIC";
- $this->PerPageVar = "Perpage_Topics";
- $this->PageEnvar="bb_var_list_update";
- $this->PageEnvarIndex = "tp";
-
- $this->PerPageVarLong = "Perpage_Topics";
- $this->PerPageShortVar = "Perpage_Topics_Short";
-
- $this->AddSortField('Topic_SortField','Topic_SortOrder');
- $this->AddSortField('Topic_SortField2','Topic_SortOrder2');
-
- $this->ItemType = TYPE_TOPIC;
-
- if( isset($CatID) ) $this->CategoryID = $CatID;
- $this->AdminSearchFields = array('TopicText','PostedBy');
- }
-
- function SaveNewPage()
- {
- global $bb_var_list;
- $bb_var_list["tp"] = $this->Page;
- }
-
- function GetHotValue()
- {
- global $objConfig;
-
- $ado = &GetADODBConnection();
- $sql = "SELECT Views FROM ".GetTablePrefix()."Topic ORDER BY Views DESC LIMIT 0,".$objConfig->Get("Topic_MaxHotNumber");
- $rs = $ado->Execute($sql);
-
- $hot_val = 0;
- while ($rs && !$rs->EOF) {
- if ($rs->fields['Views'] > 0) {
- $hot_val = $rs->fields['Views'];
- }
- $rs->MoveNext();
- }
-
- return $hot_val;
- }
-
- function GetPopValue()
- {
- global $PopValues,$objConfig, $objSystemCache;
-
- if( isset($PopValues['topic']) && is_numeric($PopValues['topic']) )
- {
- return $PopValues['topic'];
- }
- else
- {
- $PopValues['topic'] = $objConfig->Get('Topic_MinPopRating');
- /*$CachedValue = $objSystemCache->GetValue("TopicPopValue","inbulletin","");
- if(strlen($CachedValue))
- {
- $PopValues["topic"] = $CachedValue;
- return $CachedValue;
- }
- $ado = &GetADODBConnection();
- $sql = "SELECT CachedRating FROM ".GetTablePrefix()."Topic WHERE CachedVotesQty > ".(int)$objConfig->Get("Topic_MinPopVotes")." ORDER BY CachedRating DESC,CachedVotesQty DESC LIMIT 0,".(int)$objConfig->Get("Topic_MinPopRating");
-
- $rs = $ado->Execute($sql);
- $PopValues["topic"] = 0;
- while($rs && !$rs->EOF)
- {
- $PopValues["topic"] = $rs->fields["Views"];
- $rs->MoveNext();
- }*/
- $objSystemCache->EditCacheItem('TopicPopValue',$PopValues['topic'],'inbulletin',adodb_mktime()+3600,'');
- return $PopValues['topic'];
- }
- }
-
-
- function HasPermission($PermissionName)
- {
- global $objSession,$objCatList;
-
- if($this->CategoryID==0)
- {
- $this->CategoryID=$objCatList->CurrentCategoryID();
- }
- $cat =& $objCatList->GetCategory($this->CategoryID);
- if(is_object($cat))
- {
- return ($cat->HasPermission($PermissionName,$objSession->Get("GroupId")));
- }
- else
- return FALSE;
- }
-
- function &Add_Topic($TopicText, $CategoryId, $Status, $Pick, $OwnerNotify,$CreatedOn, $UserID = null, $add_fields = null, $auto_filename = 1, $filename = '')
- {
- // $add_fields - additional fields
- global $objSession,$objUsers;
-
- $t = new clsTopic(NULL);
-// $filename = $t->StripDisallowed($filename);
-
- $t->tablename = $this->SourceTable;
- $u = $objUsers->GetItem( isset($UserID) ? $UserID : $objSession->Get("PortalUserId") );
- $t->Set(array("TopicText", "OwnerId", "TopicType","Status","PostedBy","EditorsPick",
- "NotifyOwnerOnChanges","CreatedOn", 'AutomaticFilename'),
- array(str_replace("env=".$objSession->GetSessionKey(), "env=",$TopicText), $u->Get("PortalUserId"), 1,$Status,$u->Get("Login"),$Pick,
- $OwnerNotify, $CreatedOn, $auto_filename));
-
- if( isset($add_fields) )
- foreach($add_fields as $field => $value)
- $t->Set($field, $value);
-
- $t->Create();
- $t->AddToCategory($CategoryId);
- $t->SendUserEventMail("TOPIC.ADD",$u->Get("PortalUserId"));
- $t->SendAdminEventMail("TOPIC.ADD");
- return $t;
- }
-
- function LockTopic($TopicId)
- {
- $p = $this->GetItem($TopicId);
- $p->Set("TopicType", 0);
- $p->Update();
-
- return $p;
- }
-
- function &Edit_Topic($TopicId,$TopicSubject,$User,$Status,$Pick, $New,$Hot,$Pop,
- $OwnerNotify,$CreatedOn,$ModifiedOn, $Rating, $Votes, $Views, $Priority=0,$PostedBy="",
- $IsLocked = 0, $auto_filename = 1, $filename = '')
- {
- global $objUsers, $objSession;
- $p = $this->GetItem($TopicId);
-// $filename = $p->StripDisallowed($filename);
-
- if(!strlen($PostedBy))
- {
- $PostedByUser = $objUsers->GetUser($User);
- if(is_object($PostedByUser))
- {
- $PostedBy = $PostedByUser->Get("Login");
- }
- else
- {
- if($User==-1)
- {
- $PostedBy="Admin";
- }
- else
- $PostedBy="";
- }
- }
- if ($IsLocked == 1) {
- $TopicType = 0;
- }
- else {
- $TopicType = 1;
- }
-
- $p->Set(array("TopicText","ModifiedById","Status", "EditorsPick","NewItem","HotItem","PopItem",
- "NotifyOwnerOnChanges","CreatedOn","Modified", "CachedRating","CachedVotesQty",
- "Views","Priority","PostedBy", "TopicType", 'AutomaticFilename'),
- array(str_replace("env=".$objSession->GetSessionKey(), "env=", $TopicSubject),$User,$Status,$Pick,$New,$Hot,$Pop,
- $OwnerNotify,$CreatedOn,$ModifiedOn,$Rating,$Votes,$Views, $Priority,$PostedBy, $TopicType, $auto_filename));
- $p->Update();
- if($p->Get("NotifyOwnerOnChanges"))
- {
- $p->SendUserEventMail("TOPIC.MODIFY",$p->Get("OwnerId"));
- }
- $p->SendAdminEventMail("TOPIC.MODIFY");
- return $p;
- }
-
-
- function PasteFromClipboard($TargetCat)
- {
- global $objSession,$objCatList, $objPostingList;
-
- $clip = $objSession->GetVariable("ClipBoard");
- if(strlen($clip))
- {
- $ClipBoard = ParseClipboard($clip);
- $IsCopy = (substr($ClipBoard["command"],0,4)=="COPY") || ($ClipBoard["source"] == $TargetCat);
-
- $item_ids = explode(",",$ClipBoard["ids"]);
- for($i=0;$i<count($item_ids);$i++)
- {
- $item = $this->GetItem($item_ids[$i]);
- if(!$IsCopy)
- {
- $item->MoveToCategory($ClipBoard["source"],$TargetCat);
- $clip = str_replace("CUT","COPY",$clip);
- $objSession->SetVariable("ClipBoard",$clip);
- }
- else
- {
- if($ClipBoard["source"]==$TargetCat)
- {
- $item->CopyToNewResource($TargetCat,"TopicText");
- $item->AddToCategory($TargetCat);
-
- }
- else
- {
- $CatCount = $item->CategoryMemberCount();
- if($CatCount==0)
- {
- $item->AddToCategory($TargetCat);
- }
- else
- {
- $item->CopyToNewResource($TargetCat,"TopicText");
- $item->AddToCategory($TargetCat);
- }
- }
- }
- }
- }
- }
-
- function CountPending()
- {
- return TableCount($this->SourceTable,"Status=".STATUS_PENDING,0);
- }
-
- function LoadTopics($where="",$orderBy = "", $JoinCats=TRUE,$SkipClear=FALSE,$fix_method = 'set_first')
- {
- global $objConfig;
-
- if(!$SkipClear)
- $this->Clear();
-
- $limit = $this->GetPageLimitSQL();
-
- $this->QueryItemCount=TableCount($this->SourceTable,$where,$JoinCats);
-
- return $this->Query_Topic($where,$orderBy,$limit, $JoinCats, $fix_method);
- }
-
- function Query_Topic($whereClause,$orderByClause=NULL,$limit=NULL, $JoinCats=TRUE, $fix_method = 'set_first')
- {
- global $objSession, $Errors;
-
- if($JoinCats)
- {
- $sql = "SELECT * FROM ".$this->SourceTable." INNER JOIN ".GetTablePrefix()."CategoryItems ON ".GetTablePrefix()."CategoryItems.ItemResourceId=".
- $this->SourceTable.".ResourceId";
- }
- else
- {
- $sql = "SELECT * FROM ".$this->SourceTable;
- }
-
- if(isset($whereClause))
- $sql = sprintf('%s WHERE %s',$sql,$whereClause);
- if(isset($orderByClause) && strlen(trim($orderByClause))>0)
- {
- $sql .= " ".$orderByClause;
- }
-
- if($objSession->HasSystemPermission("DEBUG.LIST"))
- echo htmlentities($sql,ENT_NOQUOTES)."<br>\n";
-
- return $this->Query_Item($sql,null, $fix_method);
- }
-
- function &GetCurrentTopic()
- {
- global $bb_var_list;
-
- $t =& $this->GetItem($bb_var_list["top"]);
- return $t;
- }
-
- function CurrentTopicID()
- {
- global $bb_var_list;
-
- return $bb_var_list["top"];
- }
-
- function LoadTopicsCategory($attribs)
- {
- global $objCatList, $objSession, $objConfig, $objPermissions;
-
- $OrderBy ='';
- $CatId = $attribs['_catid'];
- if(!is_numeric($CatId))
- $CatId = $objCatList->CurrentCategoryID();
-
- if(!$CatId && (int)$attribs['_useroot'])
- $CatId = (int)$objConfig->Get('Topic_Root');
-
- $this->CategoryID=$CatId;
- $this->Clear();
-
- $limit = $this->GetPageLimitSQL();
-
- if($objSession->HasCatPermission('TOPIC.VIEW',$CatId))
- {
- $sort_field = trim( $objSession->GetPersistantVariable('Topic_SortField') );
- if( !strlen($sort_field) ) $sort_field = trim($objConfig->Get('Topic_SortField'));
-
- if($sort_field)
- {
- $OrderBy = 'Priority DESC, '.$sort_field.' '.
- $objSession->GetPersistantVariable('Topic_SortOrder');
- }
- else
- $OrderBy = 'Priority DESC';
-
- $pre = GetTablePrefix();
- $s = $this->SourceTable;
- $sql = 'SELECT '.$s.'.*,lp.PosterAlias as LastPoster,lp.CreatedOn as PLastPostDate FROM '.$s.' INNER JOIN '.$pre.'CategoryItems ON ('.$pre.'CategoryItems.ItemResourceId='.$s.'.ResourceId) ';
- $sql .= ' LEFT JOIN '.$pre.'Posting as lp ON (lp.PostingId='.$s.'.LastPostId) WHERE ';
-
- $where = 'CategoryId = '.$CatId.' AND '.$s.'.Status = 1 ';
-
- $sql .= $where;
- $this->QueryItemCount=QueryCount($sql);
-
- if (($sort_field != 'LastPoster') && ($sort_field != 'LastPostDate')) {
- $use_table = TRUE;
- }
- else {
- $use_table = FALSE;
- }
- //echo "$sort_field: $use_table<br>";
- $OrderBy = $this->QueryOrderByClause(TRUE, TRUE, $use_table);
- $sql .= " ".$OrderBy;
- //echo '<b>TopicList SQL</b>: '.$sql.'<br>';
-
- return $this->Query_Item($sql);
- }
- }
-
- function CategoryCount($attribs=array())
- {
- global $objItemTypes;
-
- if(is_numeric($attribs["_itemtype"]))
- {
- $item = $objItemTypes->GetItem($attribs["_itemtype"]);
- }
- else
- $item = $objItemTypes->GetTypeByName($attribs["_itemtype"]);
-
- if($item->Get("ItemType") != 30)
- {
- return parent::CategoryCount($attribs);
- }
- else
- {
- global $objPostingList;
-
- return $objPostingList->CategoryCount($attribs);
- }
- }
-
- function SqlGlobalCount($attribs=array())
- {
- global $objSession, $objItemTypes,$objPermissions, $objCatList;
-
- //$old_cat=$objCatList->CurrentCategoryID()
-
- if(is_numeric($attribs['_itemtype']))
- {
- $item = $objItemTypes->GetItem($attribs['_itemtype']);
- }
- else
- {
- $item = $objItemTypes->GetTypeByName($attribs['_itemtype']);
- }
-
- $t = $this->SourceTable;
- $acl = $objSession->GetACLClause();
- $cattable = GetTablePrefix().'CategoryItems';
- $CategoryTable = GetTablePrefix().'Category';
- $ptable = GetTablePrefix().'PermCache';
- $VIEW = $objPermissions->GetPermId('TOPIC.VIEW');
-
- $where = '';
- $today = adodb_mktime(0,0,0,adodb_date('m'),adodb_date('d'),adodb_date('Y'));
-
- if($item->Get('ItemType') == $this->ItemType)
- {
- // count topics in current category & it's subcategories
-
- if($attribs['_today'])
- {
- $where = 'AND ('.$t.'.CreatedOn >= '.$today.')';
- }
- $sql = "SELECT count(*) as CacheVal FROM $t
- INNER JOIN $cattable ON ($cattable.ItemResourceId=$t.ResourceId)
- INNER JOIN $CategoryTable ON ($CategoryTable.CategoryId=$cattable.CategoryId)
- INNER JOIN $ptable ON ($cattable.CategoryId=$ptable.CategoryId)
- WHERE ($acl AND PermId=$VIEW AND $cattable.PrimaryCat=1 AND $CategoryTable.Status=1) AND
- FIND_IN_SET(".$objCatList->CurrentCategoryID().", REPlACE(ParentPath,'|',',')) $where";
- return $sql;
-
- }
- elseif($item->Get('ItemType') == 30)
- {
- // counting post here
- if (getArrayValue($attribs, '_today'))
- {
- $where = 'AND ('.$t.'. TodayDate = \''.adodb_date('Y-m-d', $today).'\')';
- $CountField = 'TodayPosts';
- }
- else
- {
- $CountField = 'Posts';
- }
-
- $sql = "SELECT SUM($CountField) as CachedVal FROM $t ";
- $sql .="INNER JOIN $cattable ON ($cattable.ItemResourceId=$t.ResourceId) ";
- $sql .="INNER JOIN $CategoryTable ON ($CategoryTable.CategoryId=$cattable.CategoryId) ";
- $sql .="INNER JOIN $ptable ON ($cattable.CategoryId=$ptable.CategoryId) ";
- $sql .="WHERE ($acl AND PermId=$VIEW AND $cattable.PrimaryCat=1 AND $CategoryTable.Status=1) ";
- $sql .=" AND ($t.Status=1) AND FIND_IN_SET(".$objCatList->CurrentCategoryID().", REPlACE(ParentPath,'|',',')) $where";
- //echo "Posts count sql: $sql<br>";
- return $sql;
- }
- }
-
- function DoGlobalCount($attribs)
- {
- global $objItemTypes;
-
- if(is_numeric($attribs["_itemtype"]))
- {
- $item = $objItemTypes->GetItem($attribs["_itemtype"]);
- }
- else
- $item = $objItemTypes->GetTypeByName($attribs["_itemtype"]);
-
- // ItemType: 30 - Posts, 3 - Topics
-
- if($item->Get("ItemType") != 30)
- {
- return parent::DoGlobalCount($attribs);
- }
- else
- {
- global $objPostingList;
- //echo "PostsCount: ".$objPostingList->DoGlobalCount($attribs)."<br>";
- return $objPostingList->DoGlobalCount($attribs);
- }
- }
-
- function CacheListExtraId($ListType)
- {
- if( !strlen($ListType) ) $ListType = '_';
- switch($ListType)
- {
- case '_':
- global $objCatList;
- return $objCatList->CurrentCategoryID();
- break;
-
- default:
- return parent::CacheListExtraId($ListType);
- break;
- }
- return $ExtraId;
- }
-
- function SqlMyItems($attribs=array())
- {
- global $objSession;
-
- if(getArrayValue($attribs,'_shortlist'))
- {
- $this->PerPageVar = $this->PerPageShortVar;
- }
- else
- $this->PerPageVar = $this->PerPageVarLong;
-
- $TableName = $this->SourceTable;
- $where = " ".$TableName.".Status>0 AND ".$TableName.".OwnerId=".$objSession->Get("PortalUserId");
- if(getArrayValue($attribs,'_today'))
- {
- $today = adodb_mktime(0,0,0,adodb_date("m"),adodb_date("d"),adodb_date("Y"));
- $where .= " AND ($TableName.CreatedOn>=$today)";
- }
- $CategoryTable = GetTablePrefix()."Category";
- $sql = "SELECT $TableName.*,$CategoryTable.CategoryId,$CategoryTable.CachedNavBar FROM $TableName ";
- $p = $this->BasePermission.".VIEW";
- $sql .= $this->GetJoinedSQL($p,null,$where); // maybe null will be CategoryId someday
-
- $OrderBy = $this->QueryOrderByClause(TRUE,TRUE,TRUE);
- $sql .= " ".$OrderBy;
-
- return $sql;
- }
-
- function ResetCache($CategoryId)
- {
- global $objCountCache;
- $db =& GetADODBConnection();
- $sql = 'SELECT ParentPath FROM '.GetTablePrefix().'Category WHERE CategoryId = '.$CategoryId;
- $parents = $db->GetOne($sql);
- $parents = substr($parents,1,strlen($parents)-2);
- $parents = explode('|',$parents);
- foreach($parents as $ParentCategoryId)
- {
- $objCountCache->DeleteValue('_', TYPE_TOPIC, $ParentCategoryId, 0); // total topic count
- $objCountCache->DeleteValue('_', TYPE_TOPIC, $ParentCategoryId, 1); // total
- }
- }
-
-} /*clsTopicList*/
-
-
-?>
Property changes on: trunk/in-bulletin/topic.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.55
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/action.php
===================================================================
--- trunk/in-bulletin/action.php (revision 12824)
+++ trunk/in-bulletin/action.php (nonexistent)
@@ -1,508 +0,0 @@
-<?php
- $ro_perm = $objSession->HasSystemPermission("SYSTEM_ACCESS.READONLY");
- require_login( !admin_login() && $Action, 'expired=1', true );
-
- // permission checking: begin
- $action_mapping = Array(
- 'bb_censorword_edit' => 'in-bulletin:configuration_censorship.edit',
- 'bb_censorword_add' => 'in-bulletin:configuration_censorship.add',
- 'bb_censorship_delete' => 'in-bulletin:configuration_censorship.delete',
-
- 'bb_emoticon_add' => 'in-bulletin:configuration_emoticon.add',
- 'bb_emoticon_edit' => 'in-bulletin:configuration_emoticon.edit',
- 'bb_emoticon_delete' => 'in-bulletin:configuration_emoticon.delete',
-
- 'bb_admin_edit_topic' => 'TOPIC.MODIFY|TOPIC.OWNER.MODIFY',
- 'bb_topic_delete' => 'TOPIC.OWNER.DELETE|TOPIC.DELETE',
- 'bb_topic_move_up' => 'TOPIC.ADD|TOPIC.MODIFY|TOPIC.OWNER.MODIFY',
- 'bb_topic_move_down' => 'TOPIC.ADD|TOPIC.MODIFY|TOPIC.OWNER.MODIFY',
- 'bb_topic_approve' => 'TOPIC.ADD|TOPIC.MODIFY|TOPIC.OWNER.MODIFY',
- 'bb_topic_decline' => 'TOPIC.ADD|TOPIC.MODIFY|TOPIC.OWNER.MODIFY',
-
-
- );
- checkActionPermission($action_mapping, $Action);
- // permission checking: end
-
- switch($Action)
- {
- case "m_cat_delete":
- if($ro_perm) break;
- if(isset($_POST["catlist"]))
- {
-
- $CatList = $_POST["catlist"];
- if(is_array($CatList))
- {
- for($i=0;$i<count($CatList);$i++)
- {
- $c = $CatList[$i];
-
- $objTopicList->ClearCategoryItems($c,"CategoryItems");
- }
- }
- else
- if(is_numeric($CatList))
- $objTopicList->ClearCategoryItems($CatList,"CategoryItems");
- }
- break;
-
- case "m_paste": /* category paste */
- if($ro_perm) break;
- if($PastedCatIds)
- {
- foreach($PastedCatIds as $SourceCat => $DestCat)
- {
- $objTopicList->Clear();
- $objTopicList->Query_Topic("CategoryId=$SourceCat");
- if($objTopicList->NumItems()>0)
- {
- foreach($objTopicList->Items as $item)
- {
- /* fields from categoryitems table */
- $item->UnsetField("CategoryId");
- $item->UnsetField("ItemResourceId");
- $item->UnsetField("PrimaryCat");
- $item->UnsetField("CachedNavBar");
- $item->CopyToNewResource($DestCat);
- $item->AddToCategory($DestCat);
- }
- }
- }
- }
- break;
-
- /* censorship admin action handlers */
- case "bb_censorword_edit":
- if($ro_perm) break;
- $WordId = $_POST["CensorshipId"];
- $objCensor = new clsCensorship();
- if(strlen($_POST["badword"]))
- $objCensor->EditWord($WordId,$_POST["badword"],$_POST["replacement"]);
- break;
- case "bb_censorword_add":
- if($ro_perm) break;
- $objCensor = new clsCensorship();
- if(strlen($_POST["badword"]))
- $objCensor->AddWord($_POST["badword"],$_POST["replacement"]);
- break;
- case "bb_censorship_delete":
- if($ro_perm) break;
- $objCensor = new clsCensorship();
- foreach($_POST["itemlist"] as $wordid)
- {
- $objCensor->DeleteWord($wordid);
- }
- break;
-
- /* emoticon action handlers */
- case "bb_emoticon_add":
- if($ro_perm) break;
- //$objSmileys = new clsEmoticonList();
- $file = $_FILES["EmoticonFile"];
- if(is_array($file))
- {
- if($file["size"]>0)
- {
- $objSmileys->UploadEmoticon($file,$_POST["Name"],$_POST["KeyStroke"],(int)$_POST["Enabled"]);
- }
- }
- break;
- case "bb_emoticon_edit":
- if($ro_perm) break;
- //$objEmoticons = new clsEmoticonList();
- $file = $_FILES["EmoticonFile"];
-
- $e = $objSmileys->EditEmoticon($_POST["EmoticonId"],$_POST["Name"],$_POST["KeyStroke"],-1,$_POST["Enabled"]);
- $img = $e->GetImageObject();
- if(is_array($file))
- {
- if($file["size"]>0)
- {
- $localpath = $img->StoreUploadedImage($file,1, "in-bulletin/images/emoticons/",0);
- $img->Set("LocalPath",$localpath);
- $img->Set("ThumbPath",$localpath);
- $img->Update();
- }
- }
- $e->Update();
- break;
- case "bb_emoticon_delete":
- if($ro_perm) break;
- //$objEmoticons = new clsEmoticonList();
- foreach($_POST["itemlist"] as $id)
- {
- $objSmileys->DeleteEmoticon($id);
- }
- break;
-
- case "bb_topic_delete":
- if($ro_perm) break;
- $thiscat =& $objCatList->GetItem($objCatList->CurrentCategoryID());
- $perm = $objSession->HasCatPermission("TOPIC.DELETE");
- if(is_array($_POST["topiclist"]))
- {
- $cat_ids = Array();
- foreach($_POST["topiclist"] as $topicid)
- {
- $t =& $objTopicList->GetItem($topicid);
- $cat_ids[$t->GetPrimaryCategory()] = $t->GetPrimaryCategory();
- if (($objSession->Get("PortalUserId") == $t->Get("OwnerId")) || ($perm==1))
- {
- if(is_object($t))
- {
- $objTopicList->Delete_Item($topicid);
- }
- }
- }
- }
- else
- {
- $t = $objTopicList->GetCurrentTopic();
- $cat_ids = $t->GetPrimaryCategory();
- if(is_object($t))
- {
- $objTopicList->Delete_Item($t->Get("TopicId"));
- unset($t);
- }
- }
-
- /*foreach($cat_ids as $cat_id)
- {
- $t->refreshLastUpdate($cat_id);
- }*/
-
- UpdateCategoryCount('topic', $cat_ids, $objTopicList->GetListTypes());
-// UpdateCategoryCount('posting', $cat_ids, $objPostingList->GetListTypes());
-// $objTopicList->ResetCache( $objCatList->CurrentCategoryID() );
- $objPostingList->ResetCache( $objCatList->CurrentCategoryID() );
- break;
-
- case "bb_topic_move_up":
- if($ro_perm) break;
- if (isset($_POST["topiclist"]))
- foreach($_POST["topiclist"] as $id)
- {
- $a = $objTopicList->GetItem($id);
- $a->MoveUp();
- }
- break;
-
- case "bb_topic_move_down":
- if($ro_perm) break;
- if (isset($_POST["topiclist"]))
- {
- $topiclist=array_reverse($_POST["topiclist"]);
- foreach($topiclist as $id)
- {
- $a = $objTopicList->GetItem($id);
- $a->MoveDown();
- }
- }
- break;
-
- case "bb_topic_approve":
- if($ro_perm) break;
- if (isset($_POST["topiclist"]))
- {
- foreach($_POST["topiclist"] as $id)
- {
- $a = $objTopicList->GetItem($id);
- $a->Approve();
- }
- }
- break;
- case "bb_topic_decline":
- if($ro_perm) break;
- if (isset($_POST["topiclist"]))
- {
- foreach($_POST["topiclist"] as $id)
- {
- $a = $objTopicList->GetItem($id);
- $a->Deny();
- }
- }
- break;
-
- case "bb_topic_cut":
- if($ro_perm) break;
- if(isset($_POST["topiclist"]))
- {
- $objTopicList->CopyToClipboard("CUT","ResourceId",$_POST["topiclist"]);
- }
- break;
-
- case "bb_topic_copy":
- if($ro_perm) break;
- if(isset($_POST["topiclist"]))
- {
- $objTopicList->CopyToClipboard("COPY","ResourceId",$_POST["topiclist"]);
- }
- break;
-
- // Used from JS
- case "topic_paste":
- if($ro_perm) break;
- if($objTopicList->ItemsOnClipboard()>0)
- {
- $objTopicList->PasteFromClipboard($objCatList->CurrentCategoryID(),"TopicText");
- UpdateCategoryCount("Topic",0);
- }
- break;
-
- case "bb_admin_edit_topic":
- $application =& kApplication::Instance();
- $application->SetVar('bb_mode', 't');
- $objEditItems = new clsTopicList($_POST["CategoryId"]);
- $objEditItems->SourceTable = $objSession->GetEditTable("Topic");
- $html = (int)$_POST["html_enable"];
-
- $Status = (int)$_POST["status"];
- $Hot=(int)$_POST["itemhot"];
- $Pop = (int)$_POST["itempop"];
- $New = (int)$_POST["itemnew"];
- $Pick = (int)$_POST["topic_pick"];
-
- $Notify = (int)$_POST["topic_notify_owner"];
- $CreatedOn = DateTimestamp($_POST["topic_created"],GetDateFormat(0, true));
- $CreatedOn += SecondsSinceMidnight($_POST["topic_created_time"]);
-
- $ModifiedOn = DateTimestamp($_POST["topic_modified"],GetDateFormat(0, true));
- $ModifiedOn += SecondsSinceMidnight($_POST["topic_modified_time"]);
- $Priority = (int)$_POST["Priority"];
-
- $posted_hits = $_POST['topic_views_show'];
-
- $posted_hits_arr = explode('.', $_POST['topic_views']);
-
-
- $save_hits = $_POST['topic_views'];
- if ($posted_hits_arr[0] != $posted_hits) {
- $save_hits = $posted_hits;
- }
-
- //$TopicId,$TopicSubject,$User,$CategoryId,$Pending,$Visible,$Pick,$OwnerNotify,$CreatedOn,$ModifedOn
- $l = $objEditItems->Edit_Topic($_POST["TopicId"],inp_escape($_POST["bb_topic_subject"],$html),
- $objSession->Get("PortalUserId"),$Status,$Pick, $New, $Hot,
- $Pop, $Notify,$CreatedOn,$ModifiedOn,$_POST["topic_rating"],
- (int)$_POST["topic_votes"],$save_hits, $Priority,$_POST["topic_poster"], $_POST['lock_topic'],
- GetVar('auto_filename'), GetVar('filename') );
-
- saveCustomFields('bb', $l->Get('ResourceId'), 3);
-
- if($_POST["EditStatus"]==1)
- {
- $objTopicList->CopyFromEditTable("TopicId");
- $objTopicList->Clear();
- }
- /* user hit the cancel button */
- if($_POST["EditStatus"]==2)
- {
- $objTopicList->PurgeEditTable("TopicId");
- $objTopicList->Clear();
- }
- break;
- case "bb_add_category":
- $objEditItems = new clsTopicList();
- $objEditItems->SourceTable = $objSession->GetEditTable("Topic");
- $r = $_POST["ResourceId"];
- $i = $objEditItems->GetItemByField("ResourceId",$_POST["ResourceId"]);
- $Primary = $i->GetPrimaryCategory($objSession->GetEditTable("CategoryItems"));
- $objSession->SetVariable("HasChanges", 1);
- if(is_object($i))
- {
- $table = $objSession->GetEditTable("CategoryItems");
- $CatList = explode(",",$_POST["CatList"]);
-
- // Get List of currect categories article is in
- $link_cats = $i->CategoryMemberList($table);
- $link_cats_arr = explode(",", $link_cats);
-
- if (count($CatList))
- {
- for($j=0; $j < count($CatList);$j++)
- {
- if($CatList[$j])
- {
- $c = $objCatList->GetByResource($CatList[$j]);
- $cat = $c->Get("CategoryId");
-
- if(($cat>0) && !in_array($cat, $link_cats_arr))
- {
- $i->AddToCategory($cat,$table);
- }
- }
- }
- }
- }
- break;
- case "bb_cat_delete":
- $objSession->SetVariable("HasChanges", 1);
- $objEditItems = new clsTopicList();
- $objEditItems->SourceTable = $objSession->GetEditTable("Topic");
- $table = $objSession->GetEditTable("CategoryItems");
- $r = $_POST["ResourceId"];
- $i = $objEditItems->GetItemByField("ResourceId",$_POST["ResourceId"]);
- if(is_object($i))
- {
- $CatCount = $i->CategoryMemberCount($table);
- $Primary = $i->GetPrimaryCategory();
- if($CatCount==count($CatList))
- {
- $sql = "DELETE FROM $table WHERE CategoryId=$cat AND ItemResourceId=$r AND PrimaryCat=0";
- $ado->Execute($sql);
- }
- else
- {
- $CatList = $_POST["itemlist"];
- $ado = &GetADODBConnection();
- for($x=0;$x<count($CatList);$x++)
- {
- $cat = $CatList[$x];
- if(is_numeric($cat))
- {
- if($cat!=$Primary)
- {
- $sql = "DELETE FROM $table WHERE CategoryId=$cat AND ItemResourceId=$r";
- if((int)$_GLOBALS["debuglevel"])
- echo $sql;
- $ado->Execute($sql);
- $CatCount--;
- }
- }
- }
-
- for($x=0;$x<count($CatList);$x++)
- {
- $cat = $CatList[$x];
- if(is_numeric($cat>0))
- {
- if($cat==$Primary && $CatCount>1)
- {
- $sql = "DELETE FROM $table WHERE CategoryId=$cat AND ItemResourceId=$r";
- if((int)$_GLOBALS["debuglevel"])
- echo $sql;
- $ado->Execute($sql);
- $CatCount--;
- }
- }
- }
- }
- }
- break;
-
- case 'bb_primary_cat':
- // change primary category of the link
- $objEditItems = new clsTopicList();
- $objEditItems->SourceTable = $objSession->GetEditTable("Topic");
- $topic = $objEditItems->GetItemByField('ResourceId', $_REQUEST['ResourceId']);
- if( is_object($topic) )
- {
- $new_cat = array_shift($_REQUEST['itemlist']);
- $ci_table = $objSession->GetEditTable('CategoryItems');
- $topic->SetPrimaryCategory($new_cat, $ci_table);
- }
- break;
-
- case "pm_new":
- if($ro_perm) break;
- $ToId = $objUsers->GetUserId($_POST["pm_to"]);
- if ($ToId != "" || $ToId != 0)
- {
- if($sig)
- {
- //$u = new $objUsers->GetUser(PortalUser($currentUserSession->Get("UserId"));
- $sig_text = $objCurrentUser->GetCustom("Signature");
- $pm_text.="\n\n".$sig_text;
- }
-
- Add_PrivateMessage(inp_escape($_POST["pm_subject"]), inp_escape($_POST["pm_text"]), $ToId, $_POST["sendbody"]);
- }
- else
- Permission_Error("The User Name you specified cannot be found. Please hit back and correct the name.");
-
- break;
- case "pm_reply":
- if($ro_perm) break;
- $TopicId = $bb_var_list["top"];
- $pmtext = $_POST["pm_text"];
- if ($TopicId)
- {
- if($_POST["sig"])
- {
- //$u = new PortalUser($currentUserSession->Get("UserId"));
- $sig_text = $objCurrentUser->GetCustom("Signature");
- $pmtext.="\n\n".$sig_text;
- }
-
- Reply_PrivateMessage(inp_escape($pmtext), GetMessageId($TopicId), GetToId($TopicId), $_POST["sendbody"]);
- }
- else
- Permission_Error("Error:");
- break;
-
- case "pm_delete":
- if($ro_perm) break;
- Delete_PrivateMessage($bb_var_list["post"]);
- break;
-
- case "bb_jump_forum":
- $m_var_list["cat"]=$forum;
- $m_var_list_update["cat"]=$forum;
- $env=BuildEnv();
- break;
-
- case "bb_viewsetting":
- $objSession->SetPersistantVariable($fieldname, $varvalue);
- break;
- case "bb_search_simple_topics":
- m_category_SimpleSearch($_POST["keywords"],$_POST["cat_scope"],$_POST["sortorder"]);
- bb_Search_SimpleQuery($_POST["keywords"],$_POST["cat_scope"],$_POST["sortorder"]);
- break;
- case "bb_add_review":
- if($ro_perm) break;
- $CreatedOn = adodb_mktime(0,0,0,adodb_date("m"),adodb_date("d"),adodb_date("Y"));
- $Pending = 0;
- $ReviewText = inl_escape($_POST["reviewtext"]);
- $id = $bb_var_list["top"];
- $userid = $objSession->Get("PortalUserId");
-
- $n = $objTopicList->GetItem($id);
- $n->Reviews->Add(0,$CreatedOn,$ReviewText,$Pending,$REMOTE_ADDR,$id,3,$userid);
- break;
-
- case "bb_rate_topic":
- if($ro_perm) break;
- $id = $bb_var_list["top"];
- $vote = $_POST["form_rate_vote"];
- $n = $objTopicList->GetItem($id);
- $notes = $_POST["form_rate_notes"];
- $n->SubmitVote($vote,$notes);
- break;
- }
-
-if( ! $objSession->HasSystemPermission("SYSTEM_ACCESS.READONLY") )
-{
- if( GetVar('TopicEditStatus') == 1 )
- {
- $topic_ids = $objTopicList->CopyFromEditTable("TopicId");
- if ($topic_ids) {
- $objCustomDataList->CopyFromEditTable('bb');
- }
- $objTopicList->Clear();
- $objImages = new clsImageList();
- $objImages->CopyFromEditTable("ImageId");
- UpdateCategoryCount("Topic",0);
- }
- /* user hit the cancel button */
- if( GetVar('TopicEditStatus') == 2 )
- {
- $objTopicList->PurgeEditTable("TopicId");
- $objTopicList->PurgeCatListEditTable();
- $objCustomDataList->PurgeEditTable('bb');
- $objTopicList->Clear();
- $objImages = new clsImageList();
- $objImages->PurgeEditTable("ImageId");
- }
-}
-?>
Property changes on: trunk/in-bulletin/action.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.30
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/censorship.php
===================================================================
--- trunk/in-bulletin/censorship.php (revision 12824)
+++ trunk/in-bulletin/censorship.php (nonexistent)
@@ -1,106 +0,0 @@
-<?php
-class clsCensorWord extends clsItemDB
-{
-
- function clsCensorWord($id=NULL)
- {
- $this->clsItemDB();
- $this->tablename=GetTablePrefix()."Censorship";
- $this->id_field = "CensorshipId";
- $this->NoResourceId=1;
- if($id)
- $this->LoadFromDatabase($id);
- }
-
- function LoadFromDatabase($Id)
- {
- global $Errors;
-
- if(!isset($Id))
- {
- $Errors->AddError("error.AppError",NULL,'Internal error: LoadFromDatabase id',"",get_class($this),"LoadFromDatabase");
- return false;
- }
- $sql = sprintf("SELECT * FROM ".$this->tablename." WHERE ".$this->IdField()." = '%s'",$Id);
- $result = $this->adodbConnection->Execute($sql);
- if ($result === false)
- {
- $Errors->AddError("error.DatabaseError",NULL,$this->adodbConnection->ErrorMsg(),"",get_class($this),"LoadFromDatabase");
- return false;
- }
- $data = $result->fields;
- $this->SetFromArray($data);
- $this->Clean();
- return true;
- }
-}
-
-class clsCensorship extends clsItemCollection
-{
- var $Page;
- var $PerPageVar;
- var $Loaded = 0;
-
- function clsCensorship()
- {
- global $objSession;
-
- $this->clsItemCollection();
- $this->classname = "clsCensorWord";
- $this->SourceTable = GetTablePrefix()."Censorship";
- $this->Page = 1;
- $this->PerPageVar = "Perpage_Censorship";
- $this->AdminSearchFields = array("BadWord","Replacement");
- }
-
- function LoadCensorship($where=NULL,$orderBy=NULL)
- {
- if($this->Loaded)
- return $this->Items;
- $this->Clear();
- $sql = "SELECT * FROM ".$this->SourceTable;
- if(strlen(trim($where))>0)
- $sql .= " WHERE $where";
- if(strlen(trim($orderBy))>0)
- $sql .= " ORDER BY $orderBy";
- $this->Loaded = 1;
- return $this->Query_Item($sql);
- }
-
- function AddWord($BadWord,$Replacement)
- {
- $c = new clsCensorWord();
- $c->Set("BadWord",$BadWord);
- $c->Set("Replacement",$Replacement);
- $c->Create();
- return $c;
- }
-
- function EditWord($WordId,$BadWord,$Replacement)
- {
- $c = $this->GetItem($WordId);
- $c->Set("BadWord",$BadWord);
- $c->Set("Replacement",$Replacement);
- $c->Update();
- return $c;
- }
-
- function DeleteWord($WordId)
- {
- $c = $this->GetItem($WordId);
- $c->Delete();
- }
-
- function CensorText($text)
- {
- $this->LoadCensorship();
- foreach($this->Items as $w)
- {
- $b = $w->Get("BadWord");
- $r = $w->Get("Replacement");
- $text = str_ireplace($b,$r,$text);
- }
- return $text;
- }
-}
-?>
Property changes on: trunk/in-bulletin/censorship.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/module_help/topics_reviews.txt
===================================================================
--- trunk/in-bulletin/module_help/topics_reviews.txt (revision 12824)
+++ trunk/in-bulletin/module_help/topics_reviews.txt (nonexistent)
@@ -1,12 +0,0 @@
-This tab lists all reviews of the topic, and allows the administrator to manage them. Reviews are user responses to the topic, they are similar to posts and in some instances they are redundant. However, they can be used to collect feedback from the front-end users, to provide details of the ratings, and for a few other purposes.
-Reviews have their own status, independent from the topic. They can be active, pending or disabled. The idea is very similar to the topic status – only active reviews are displayed on the post listing page, or wherever specified in the theme design. The category permissions specify the status of a new review created on the front-end.
-<ul>
-<li> Enable HTML? – this check box enables or disables HTML code in the review body. When checked, it will render the HTML (for example, a &lt;B&gt; tag will actually make the text bold). When unchecked, it will display the HTML as regular text (the &lt;B&gt; tag will appear exactly as ‘&lt;B&gt;'). This is a very important setting, since some HTML tags can break the page layout, and in some instances can be a security concern (the Java Script, for example).
-<li> Review ID -this field is a read-only unique system ID of the review.
-<li> Created by* - this field contains the name of the user who submitted the review. This information will be displayed, along with the text of the review and the date, on the front-end, unless specified otherwise in the active theme. The administrator may change the review author by entering a different user name in this field, or by selecting it through a user picker (shortcut to a user icon will pop up the picker in a new window).
-<li> Review Text* - this field contains the main body of the review. To use the online HTML editor, click on the ‘Editor' button next to this field.
-<li> Status - this is the status field of the review.
-<li> Priority – this field contains the numerical priority of the review.
-<li> Created on – this field contains the creation date of the review. It is automatically set by the system when the review is submitted, however it can be changed by the administrator. The date can be entered directly into the field, or by using the visual calendar tool.
-<li> Created at - this field contains the creation time of the review. It is automatically set by the system when the review is submitted, however it can be changed by the administrator.
-</ul>
Property changes on: trunk/in-bulletin/module_help/topics_reviews.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/module_help/relations_edit.txt
===================================================================
--- trunk/in-bulletin/module_help/relations_edit.txt (revision 12824)
+++ trunk/in-bulletin/module_help/relations_edit.txt (nonexistent)
@@ -1,7 +0,0 @@
-<ul>
- <li> Relation ID &ndash; this is a read-only field, the internal system ID of the relation, guaranteed to be unique throughout the system. It is blank when a new relation is created. </li>
- <li> Item &ndash; this is a read-only field, displaying the name of the item that you are creating a relation to, and its type. In the current version, topics can be related to categories, links (if In-link is installed) and articles (if In-newz is installed). </li>
- <li> Type &ndash; this field designated the type of the relation. A &lsquo;reciprocal' type denotes a two-way relation, and &lsquo;one way' &ndash; a one directional relation, from the topic to the item. </li>
- <li> Enabled &ndash; this field is the status flag of the relation. </li>
- <li> Priority &ndash; this field is the numerical priority of the relation. </li>
-</ul>
\ No newline at end of file
Property changes on: trunk/in-bulletin/module_help/relations_edit.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/module_help/topics_categories.txt
===================================================================
--- trunk/in-bulletin/module_help/topics_categories.txt (revision 12824)
+++ trunk/in-bulletin/module_help/topics_categories.txt (nonexistent)
@@ -1,3 +0,0 @@
-
-<p>This tab manages the categories of the topic. The list shows all categories to which this topic belongs. The administrator can add and remove additional categories on this list. At least one category must be listed, and exactly one category must be designated as the primary. The primary category determines the permissions for the topic. To designate the primary category of the topic, select the category and click on the Primary Category icon in the toolbar. The ‘primary' marker will move from the previous Primary Category to the one you have selected. </p>
-<p>The topic will appear in all of the categories it belongs to, in the Administrative Console as well as on the front-end. </p>
Property changes on: trunk/in-bulletin/module_help/topics_categories.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/module_help/config_list_output.txt
===================================================================
--- trunk/in-bulletin/module_help/config_list_output.txt (revision 12824)
+++ trunk/in-bulletin/module_help/config_list_output.txt (nonexistent)
@@ -1,17 +0,0 @@
-This section allows the administrator to specify the default values for various topic and post settings in In-bulletin.
-<ul>
-<li> Sort topics by – this setting specifies the default primary sort order for the topic listings. It applies both on the front-end, and in the Administrative Console – in the catalog. The first dropdown allows to select the field (an attribute of the topic), and the second dropdown – the direction of the sort.
-<li> And then by – this setting specifies the default secondary sort order. It is set in the same way as the primary, and used when the primary order values are ambiguous. For example, when the primary sort value is ‘Topic Name', the secondary order will be used to sort among topics with the same name (subject).
-<li> Number of topics per page – specifies the default number of topics shown per page. This value applies both to the front-end and to the Administrative Console. In the latter, this value can be changed for each session through the View menu.
-<li> Topics Per Page (Shortlist) – this setting is similar to the ‘ Number of topics per page', but it applies to the front-end short topic lists only. It can be overridden by setting the tag attributes in the appropriate templates.
-<li> New Topics (Days) – this setting specifies the number of days, from the date of creation, during which the topic will be automatically marked ‘New' by the system. This setting will only apply to the topics with the ‘New' flag set to ‘Automatic'.
-<li> Minimum rating for a topic to be POP– this setting specifies the minimum rating of a topic for it to be automatically marked ‘Popular’ by the system. This setting will only apply to the topics with the ‘Popularity’ flag set to ‘Automatic’. Note, that for an article to be “popular” it will need to meet the “minimum votes” requirement set below.
-<li> Maximum number of HOT topics – this setting specifies the maximum number “hot” topics in the database. A “hot” topic is the one that has more views than the other topics. For example, if this option is set to “2”, the In-portal system will pick the two topics with the most views and mark them as hot. (Of course, this will change real-time as the topics’ view counters are updated, or as this setting changes). Please note, if more than one topic has the maximum number of views, the system will still enforce the maximum number requirement; therefore, there may be situations when a topic with the most views is not marked as “hot”.
-<li> Minimum number of votes to consider a topic to be popular – this setting specifies the minimum number of votes required for the topic rating to be effective. Usually, when only a small number of users have voted on a topic, its rating will not be statistically accurate - it is likely, that only biased users have voted. When a larger number of users vote, the rating becomes more accurate. This setting affects the “popularity” property of a topic – topics with less than required number of votes will not be considered “popular”, even if their rating is high enough.
-<li> Display editor picks above regular topics – this setting will force all topics, marked as ‘Editor's pick' to be displayed above the other topics, regardless of their priority or sort order. This is very similar to the ‘sticky' feature of other bulletin boards. Among themselves, ‘Editor's pick' articles will be sorted according to the regular rules.
-<li> Allow Duplicate Reviews – this setting specifies the period during which the same user cannot submit another review on the same topic. The time can be entered in seconds, minutes, hours, days, months or years. If it is set to zero, the users can submit reviews without this limitation. Please note, that regardless of this setting, the same user will be able to submit a review on another topic immediately after the first review.
-<li> Allow Duplicate Rating Votes - this setting specifies the period during which the same user cannot rate the same topic again. The time can be entered in seconds, minutes, hours, days, months or years. If it is set to zero, the users can rate topics without this limitation. Please note, that regardless of this setting, the same user will be able to rate another topic immediately after the first rating.
-<li> Posts to lock – this setting specifies how many posts in a single topic will it take to automatically lock that topic. If it is set to zero, the topics will never be locked automatically.
-<li> Number of posts per page - specifies the number of posts shown per page inside a topic. This value applies only to the front-end.
-<li> New posts (days) - this setting specifies the number of days, from the date of posting, during which the topic will be automatically marked as having new posts in it.
-</ul>
Property changes on: trunk/in-bulletin/module_help/config_list_output.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/module_help/custom_fields_list.txt
===================================================================
--- trunk/in-bulletin/module_help/custom_fields_list.txt (revision 12824)
+++ trunk/in-bulletin/module_help/custom_fields_list.txt (nonexistent)
@@ -1,12 +0,0 @@
-
-This section allows the administrator to manage the topic custom fields. The topic custom fields are useful when you need to store additional information about the topics. For example, the topics may have such custom fields, as the language of the topic, the safe audience rating, etc. All custom fields will be automatically used in the Administrative Console, in the Topic Management section. You will need to edit the theme templates for them to appear on the front-end.
-<ul>
-<li> Field Id – this is a read-only field displaying the unique system ID of the custom field.
-<li> Field Name – sets the internal name of the custom field. This is the name you would use to refer to the custom field in the In-tags when designing templates.
-<li> Field Label – this is a read-only field, which displays the language variable name associated with the label of that field, and the value of the variable in the current language (after the colon). The label is used on the front end, and in the Administrative Console, to describe the field to the user who is entering information into it.
-<li> Show on the general tab – this setting controls whether the custom field will be also displayed on the General tab in the Administrative Console, when editing the topics. It is a short cut for frequently used custom fields. All settings below apply only when this is checked.
-<li> Heading – this field contains the language variable of the section heading, under which the field appear on the general tab.
-<li> Field Prompt – this field contains the language variable, which text will appear as the hint bind the field.
-<li> Input Type – this drop down allows the administrator to designate the type of the information stored in the custom field, by specifying the HTML control to be used on the General form.
-<li> List of Values – this field contains all choices for the above HTML controls of type ‘radio button' or ‘drop down'. The choices must be in the format: “value1 = language variabe1, value2=language variable2”. For example, to create a drop down with three choices (One, Two, Three) and their respective numerical values, this field would contain the following: “1=la_one,2=la_two,3=la_three).
-</ul>
Property changes on: trunk/in-bulletin/module_help/custom_fields_list.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/module_help/topics_custom.txt
===================================================================
--- trunk/in-bulletin/module_help/topics_custom.txt (revision 12824)
+++ trunk/in-bulletin/module_help/topics_custom.txt (nonexistent)
@@ -1 +0,0 @@
-This tab displays all custom fields configured in In-bulletin, and allows the administrator to edit their information for this topic.
\ No newline at end of file
Property changes on: trunk/in-bulletin/module_help/topics_custom.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/module_help/config_list_general.txt
===================================================================
--- trunk/in-bulletin/module_help/config_list_general.txt (revision 12824)
+++ trunk/in-bulletin/module_help/config_list_general.txt (nonexistent)
@@ -1,2 +0,0 @@
-This section contains general In-bulletin settings, which are not related to the topics. In the current version, it has only one setting. ‘Select Module Root Category' allows the administrator to specify the module root category of In-bulletin. Clicking on the folder shortcut button will pop up a category picker.
-The module root category is used in several ways. On the front-end, in the Default theme, the top menu links each module to its module root category. Therefore, the ‘Forums' menu item will open this category and its contents. In the Administrative Console, this setting provides a faster way to navigate in the module, as it presets the category for module-specific actions.
\ No newline at end of file
Property changes on: trunk/in-bulletin/module_help/config_list_general.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/module_help/email_settings_list.txt
===================================================================
--- trunk/in-bulletin/module_help/email_settings_list.txt (revision 12824)
+++ trunk/in-bulletin/module_help/email_settings_list.txt (nonexistent)
@@ -1,2 +0,0 @@
-
-This section lists all possible In-bulletin events. Each event has a description, a type – ‘User' or ‘Admin', a status – ‘Enabled', ‘Front-end Only', and a ‘From/To User'. The description hints about when the event occurs. The type indicates whether the email notification will be sent to the front-end user, or the administrator. The status ‘Enabled' signifies that the email notifications for this event are enabled for both the front-end and the Administrative Console. The Front-end Only' status means that the notifications will be sent only when the event occurs on the front end. The ‘Disabled' status means no notifications will be sent when this event occurs. The ‘From/To User' field specifies the ‘From' email for front-end user notifications, and the ‘To' email for the administrative notifications. The other, matching pair of addresses (‘To' for the front, and ‘From' for the admin) is automatically determined by the system based on who initiated the event. The event notification status can be changed by clicking on the toolbar buttons – ‘Enable' to enable the notification, ‘Disable' to disable it, and ‘Front Only' (icon with a monitor) to set to ‘Front-end Only' status.
Property changes on: trunk/in-bulletin/module_help/email_settings_list.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/module_help/images_edit.txt
===================================================================
--- trunk/in-bulletin/module_help/images_edit.txt (revision 12824)
+++ trunk/in-bulletin/module_help/images_edit.txt (nonexistent)
@@ -1,14 +0,0 @@
-This tab contains all images associated with the topic. To create a new image, click on the ‘New' button (the icon like the Windows GIF icon with a little sun). This will open a new page where you specify the image details.
-<ul>
-<li> Image ID – a read-only field, the internal system ID of the image, guaranteed to be unique throughout the system. It is blank when a new image is created.
-<li> Name – this field contains the image name, used on the front-end, in side the In-tags to refer to this image.
-<li> Alt Value – this field contains the text value, which will be displayed in the ‘alt' tag of the image on the front end, in side the page HTML code, and when a mouse pointer hovers over the image (in Internet Explorer).
-<li> Status – this field contains the status of the image, enabled or disabled.
-<li> Primary – this flag designates the primary image. There can be only one primary image per list (for one topic). When you check this box on an image, the previous primary image is unset (if there is more than one image in the list).
-<li> Priority – this field contains the numerical priority of the image.
-<li> Thumbnail location (upload from PC) – Using this control, you can upload an image from the workstation you are at to the In-portal server. The image will be stored in the ‘in-portal/kernel/images' directory.
-<li> Thumbnail location (remote URL) – Here you can enter a remote URL address of an image. It will be linked from the remote server.
-<li> Same As Thumbnail – This check box sets the full-size image to be the same as the thumbnail image. When this option is checked, you cannot upload a full-size image.
-<li> Thumbnail location (upload from PC) - Using this control, you can upload an image from the workstation you are at to the In-portal server. The image will be stored in the ‘in-portal/kernel/images' directory.
-<li> Thumbnail location (remote URL) - Here you can enter a remote URL address of an image. It will be linked to from the remote server.
-</ul>
\ No newline at end of file
Property changes on: trunk/in-bulletin/module_help/images_edit.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/module_help/topics_edit.txt
===================================================================
--- trunk/in-bulletin/module_help/topics_edit.txt (revision 12824)
+++ trunk/in-bulletin/module_help/topics_edit.txt (nonexistent)
@@ -1,21 +0,0 @@
-This tab contains the main attributes of the topic.
-<ul>
-<li> Enable HTML? - this check box enables or disables HTML code in the topic name. It does not affect the posts in this topic. When checked, it will render the HTML (for example, a &lt;B&gt; tag will actually make the text bold). When unchecked, it will display the HTML as regular text (the &lt;B&gt; tag will appear exactly as ‘&lt;B&gt;'). This is a very important setting, since some HTML tags can break the page layout, and in some instances can be a security concern (the Java Script, for example).
-<li> Topic ID – this read-only field displays the unique internal system ID of the topic.
-<li> Name * - this field contains the topic name, or subject.
-<li> Posted by* - this field contains the name of the user who started the topic by posting the first message in it. This information will be displayed on the first post of the topic on the front-end, unless specified otherwise in the active theme. The administrator may change the topic author, by entering a different user name or by selecting it through a user pop up (shortcut to a user icon).
-<li> Topic Locked – this field toggles the topic lock attribute. When a topic is locked, it is not possible to make new posts in it.
-<li> Status – this field contains the topic status.
-<li> New – this field controls how the topic ‘new' status is calculated by In-bulletin.
-<li> Hot – this field controls how the topic’s ‘hot’ status is calculated by In-bulletin. In automatic mode, In-bulletin will consider as ‘hot’ the X number of topics with the most views. X is defined under the In-bulletin Output options.
-<li> Popularity – this field controls how the topic’s ‘pop’ status is calculated by In-bulletin. In automatic mode, In-bulletin will consider those topics as “popular”, which have at least X number of votes and have a rating above the predefined threshold. The number of votes and rating threshold are defined in the Output options section.
-<li> Editor's Pick – this flags sets the Editor's Pick attribute of the topic. This is very similar to the ‘sticky' feature of other bulletin boards.
-<li> Priority - this field contains the numeric topic priority.
-<li> Created on * - this field contains the creation date of the topic. It is automatically set by the system when the topic is created, however it can be changed by the administrator. The date can be entered directly into the field, or by using the visual calendar tool.
-<li> Created at - this field contains the creation time of the topic. It is automatically set by the system when the first post is submitted, however it can be changed by the administrator.
-<li> Modified on * - this field contains the modification date of the topic. It is automatically set by the system when the topic is changed, or any posts in it have changed, however it can be changed by the administrator. The date can be entered directly into the field, or by using the visual calendar tool.
-<li> Modified at - this field contains the modification time of the topic. It is automatically set by the system when the topic is changed, or any posts in it have changed, however it can be changed by the administrator.
-<li> Rating – this field contains the numeric rating of the topic. The rating is calculated as the average value of all ratings selected by users for this topic. The range of the value is predefined, and displayed to the right as a hint. The administrator can manually change the rating if necessary.
-<li> Votes – this field contains the number of votes for the topic. Each time a user votes (selects rating) for the topic on the front-end, this value is incremented by one. This value is important for the rating calculating, it is used in the formula to calculate the average. The administrator can manually change the number of votes if necessary.
-<li> Views – this field contains the number of topic's views. This value is incremented each time a user views the topic. The administrator can manually change the number of views if necessary.
-</ul>
\ No newline at end of file
Property changes on: trunk/in-bulletin/module_help/topics_edit.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/module_help/topics_relations.txt
===================================================================
--- trunk/in-bulletin/module_help/topics_relations.txt (revision 12824)
+++ trunk/in-bulletin/module_help/topics_relations.txt (nonexistent)
@@ -1,9 +0,0 @@
-
-This tab contains a list of all relations of this topic. To create a new relation, click the ‘New' button (two opposite green arrows with a little sun). This will pop up an item picker, where you can choose one category or item of any module that supports relations.
-<ul>
-<li> Relation ID – this is a read-only field, the internal system ID of the relation, guaranteed to be unique throughout the system. It is blank when a new relation is created.
-<li> Item – this is a read-only field, displaying the name of the item that you are creating a relation to, and its type. In the current version, topics can be related to categories, links (if In-link is installed) and articles (if In-newz is installed).
-<li> Type – this field designated the type of the relation. A ‘reciprocal' type denotes a two-way relation, and ‘one way' – a one directional relation, from the topic to the item.
-<li> Enabled – this field is the status flag of the relation.
-<li> Priority – this field is the numerical priority of the relation.
-</ul>
\ No newline at end of file
Property changes on: trunk/in-bulletin/module_help/topics_relations.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/module_help/config_list_search.txt
===================================================================
--- trunk/in-bulletin/module_help/config_list_search.txt (revision 12824)
+++ trunk/in-bulletin/module_help/config_list_search.txt (nonexistent)
@@ -1,9 +0,0 @@
-This section allows the administrator to configure the front-end search options, and the advanced search options.
-This section lists all fields representing topic attributes. Next to each field, there is a ‘Simple Search' checkbox, which includes this field in the simple search query. By default, only the ‘Topic Text' field is included. In general, it makes sense to include only the fields, which may contain text in them, otherwise when a visitor searches for a text keyword, the non-textual fields will be not searchable. Next, there is a ‘Weight' text box, in which the administrator can designate the importance of each field during a search. The fields with a larger weight will be more important then the fields with the lower weight. This is used when calculating the topic's relevance to the search keyword, for sorting of the results. The last column is the ‘Advanced Search' check. It designates whether a particular field should be displayed on the ‘Advanced Search' page and be searchable by the visitors. By default, all fields are included.
-Below the list of fields are the Topic Relevance settings.
-<ul>
-<li> Increase importance if field contains a required keyword by – this specifies the percentage by which the weight of a field will increase, when a required keyword is found in that field. A required keyword is one that is preceded with a ‘+' in the search key phrase.
-<li> Search Relevance depends on _ % keyword – the percentage of relevance that comes from the keyword being found in that topic.
-<li> Search Relevance depends on _ % popularity - the percentage of relevance that is based on the topic's popularity.
-<li> Search Relevance depends on _ % rating - the percentage of relevance that is based on the topic's rating.
-</ul>
\ No newline at end of file
Property changes on: trunk/in-bulletin/module_help/config_list_search.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/module_help/reviews_edit.txt
===================================================================
--- trunk/in-bulletin/module_help/reviews_edit.txt (revision 12824)
+++ trunk/in-bulletin/module_help/reviews_edit.txt (nonexistent)
@@ -1,12 +0,0 @@
-This tab lists all reviews of the topic, and allows the administrator to manage them. Reviews are user responses to the topic, they are similar to posts and in some instances they are redundant. However, they can be used to collect feedback from the front-end users, to provide details of the ratings, and for a few other purposes.
-Reviews have their own status, independent from the topic. They can be active, pending or disabled. The idea is very similar to the topic status – only active reviews are displayed on the post listing page, or wherever specified in the theme design. The category permissions specify the status of a new review created on the front-end.
-<ul>
-<li> Enable HTML? – this check box enables or disables HTML code in the review body. When checked, it will render the HTML (for example, a &lt;B&gt; tag will actually make the text bold). When unchecked, it will display the HTML as regular text (the &lt;B&gt; tag will appear exactly as ‘&lt;B&gt;'). This is a very important setting, since some HTML tags can break the page layout, and in some instances can be a security concern (the Java Script, for example).
-<li> Review ID -this field is a read-only unique system ID of the review.
-<li> Created by* - this field contains the name of the user who submitted the review. This information will be displayed, along with the text of the review and the date, on the front-end, unless specified otherwise in the active theme. The administrator may change the review author by entering a different user name in this field, or by selecting it through a user picker (shortcut to a user icon will pop up the picker in a new window).
-<li> Review Text* - this field contains the main body of the review. To use the online HTML editor, click on the ‘Editor' button next to this field.
-<li> Status - this is the status field of the review.
-<li> Priority – this field contains the numerical priority of the review.
-<li> Created on – this field contains the creation date of the review. It is automatically set by the system when the review is submitted, however it can be changed by the administrator. The date can be entered directly into the field, or by using the visual calendar tool.
-<li> Created at - this field contains the creation time of the review. It is automatically set by the system when the review is submitted, however it can be changed by the administrator.
-</ul>
Property changes on: trunk/in-bulletin/module_help/reviews_edit.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/module_help/topics_images.txt
===================================================================
--- trunk/in-bulletin/module_help/topics_images.txt (revision 12824)
+++ trunk/in-bulletin/module_help/topics_images.txt (nonexistent)
@@ -1,14 +0,0 @@
-This tab contains all images associated with the topic. To create a new image, click on the ‘New' button (the icon like the Windows GIF icon with a little sun). This will open a new page where you specify the image details.
-<ul>
-<li> Image ID – a read-only field, the internal system ID of the image, guaranteed to be unique throughout the system. It is blank when a new image is created.
-<li> Name – this field contains the image name, used on the front-end, in side the In-tags to refer to this image.
-<li> Alt Value – this field contains the text value, which will be displayed in the ‘alt' tag of the image on the front end, in side the page HTML code, and when a mouse pointer hovers over the image (in Internet Explorer).
-<li> Status – this field contains the status of the image, enabled or disabled.
-<li> Primary – this flag designates the primary image. There can be only one primary image per list (for one topic). When you check this box on an image, the previous primary image is unset (if there is more than one image in the list).
-<li> Priority – this field contains the numerical priority of the image.
-<li> Thumbnail location (upload from PC) – Using this control, you can upload an image from the workstation you are at to the In-portal server. The image will be stored in the ‘in-portal/kernel/images' directory.
-<li> Thumbnail location (remote URL) – Here you can enter a remote URL address of an image. It will be linked from the remote server.
-<li> Same As Thumbnail – This check box sets the full-size image to be the same as the thumbnail image. When this option is checked, you cannot upload a full-size image.
-<li> Thumbnail location (upload from PC) - Using this control, you can upload an image from the workstation you are at to the In-portal server. The image will be stored in the ‘in-portal/kernel/images' directory.
-<li> Thumbnail location (remote URL) - Here you can enter a remote URL address of an image. It will be linked to from the remote server.
-</ul>
\ No newline at end of file
Property changes on: trunk/in-bulletin/module_help/topics_images.txt
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/units/private_messages/private_message_tp.php
===================================================================
--- trunk/in-bulletin/units/private_messages/private_message_tp.php (revision 12824)
+++ trunk/in-bulletin/units/private_messages/private_message_tp.php (nonexistent)
@@ -1,122 +0,0 @@
-<?php
-
- class PrivateMessageTagProcessor extends kDBTagProcessor {
-
- /**
- * Checks if private message is unread
- *
- * @param Array $params
- * @return bool
- */
- function IsNew($params)
- {
- $object =& $this->getObject();
- /* @var $object kDBItem */
-
- return $object->GetDBField('Status') < PM_STATUS_READ;
- }
-
- /**
- * Allows to check what folder is currently active
- *
- * @param Array $params
- * @return bool
- */
- function FolderSelected($params)
- {
- $folder_mapping = Array ('inbox' => PM_FOLDER_INBOX, 'sent' => PM_FOLDER_SENT);
-
- return (int)$this->Application->GetVar('folder_id') == $folder_mapping[ strtolower($params['folder']) ];
- }
-
- /**
- * Creates link to specific private message folder
- *
- * @param Array $params
- * @return string
- */
- function FolderLink($params)
- {
- $folder_mapping = Array ('inbox' => PM_FOLDER_INBOX, 'sent' => PM_FOLDER_SENT);
- $params['folder_id'] = $folder_mapping[ strtolower($params['folder']) ];
- unset($params['folder']);
-
- return $this->Application->ProcessParsedTag('m', 'Link', $params);
- }
-
- function MessageSubject($params)
- {
- $object =& $this->getObject();
- /* @var $object kDBItem */
-
- $params['field'] = 'Subject';
- $value = $this->Field($params);
-
- if (!$value && isset($params['empty_title'])) {
- return '['.$this->Application->Phrase($params['empty_title']).']';
- }
-
- return $value;
- }
-
- function MessageBody($params)
- {
- $object =& $this->getObject($params);
-
- $post_helper =& $this->Application->recallObject('PostHelper');
- /* @var $post_helper PostHelper */
-
- // 2. parse post body
- $sub_blocks = Array (
- 'smileys' => $params['smiley_render_as'],
- 'bbcode' => $params['bbcode_render_as'],
- );
-
- return $post_helper->parsePostBody($object->GetDBField('Body'), $object->GetDBField('Options'), $sub_blocks);
- }
-
- function DeleteLink($params)
- {
- $params['pass'] = 'm,'.$this->getPrefixSpecial();
- $params[$this->getPrefixSpecial().'_event'] = 'OnDelete';
- return $this->Application->ProcessParsedTag('m', 'Link', $params);
- }
-
- function ReplyLink($params)
- {
- $params['reply_to'] = $this->Application->GetVar($this->getPrefixSpecial().'_id');
- return $this->Application->ProcessParsedTag('m', 'Link', $params);
- }
-
- /**
- * User can reply message only in case, when it is not it's own message
- *
- * @param Array $params
- * @return bool
- */
- function CanReplyMessage($params)
- {
- $object =& $this->getObject();
- /* @var $object kDBItem */
-
- return $object->GetDBField('FromId') != $this->Application->RecallVar('user_id');
- }
-
- /**
- * Marks private message as read
- *
- * @param Array $params
- */
- function MarkAsRead($params)
- {
- $object =& $this->getObject();
- /* @var $object kDBItem */
-
- if ($object->GetDBField('Status') < PM_STATUS_READ) {
- $object->SetDBField('Status', PM_STATUS_READ);
- $object->Update();
- }
- }
- }
-
-?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/units/private_messages/private_message_tp.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/units/private_messages/private_message_eh.php
===================================================================
--- trunk/in-bulletin/units/private_messages/private_message_eh.php (revision 12824)
+++ trunk/in-bulletin/units/private_messages/private_message_eh.php (nonexistent)
@@ -1,230 +0,0 @@
-<?php
-
- class PrivateMessageEventHandler extends kDBEventHandler {
-
- function mapPermissions()
- {
- parent::mapPermissions();
- $permissions = Array(
- 'OnItemBuild' => Array('self' => true),
- 'OnCreate' => Array('self' => true),
- 'OnDelete' => Array('self' => true),
- );
-
- $this->permMapping = array_merge($this->permMapping, $permissions);
- }
-
- /**
- * Applies folder & message owner filter to message list
- *
- * @param kEvent $event
- */
- function SetCustomQuery(&$event)
- {
- $folder_id = $this->Application->GetVar('folder_id');
- if ($folder_id === false) {
- $folder_id = PM_FOLDER_INBOX;
- $this->Application->SetVar('folder_id', $folder_id);
- }
-
- $object =& $event->getObject();
- /* @var $object kDBList */
-
- $user_id = $this->Application->RecallVar('user_id');
- if ($folder_id == PM_FOLDER_INBOX) {
- $object->addFilter('owner_filter', '%1$s.ToId = '.$user_id);
- }
- else {
- $object->addFilter('owner_filter', '%1$s.FromId = '.$user_id);
- }
- $object->addFilter('folder_filter', '%1$s.FolderId = '.$folder_id);
- }
-
- /**
- * Puts message to Sent folder
- *
- * @param kEvent $event
- */
- function OnBeforeItemCreate(&$event)
- {
- $object =& $event->getObject();
- /* @var $object kDBItem */
-
- if ($object->GetDBField('FolderId') != PM_FOLDER_SENT) {
- // when creating "Inbox" message (from "Sent" message) don't reset folder & status
- return ;
- }
-
- $user_id = $this->Application->RecallVar('user_id');
- $object->SetDBField('FromId', $user_id);
- $object->SetDBField('FolderId', PM_FOLDER_SENT);
- $object->SetDBField('Status', PM_STATUS_READ);
- }
-
- /**
- * Creates 1st post when topic is created
- *
- * @param kEvent $event
- */
- function OnAfterItemCreate(&$event)
- {
- parent::OnAfterItemCreate($event);
-
- $object =& $event->getObject();
- /* @var $object kDBItem */
-
- if ($object->GetDBField('FolderId') != PM_FOLDER_SENT) {
- // 1. create message in sender's "Sent" folder (this method only for this step)
- // 2. create message body (shared)
- // 3. create message copy in recipient's "Inbox" folder
- return ;
- }
-
- $message_body =& $this->Application->recallObject($event->Prefix.'-body', null, Array ('skip_autoload' => true));
- /* @var $message_body kDBItem */
-
- // 1. create message body (for sender & recipient)
- $copy_fields = Array ('Subject', 'Body', 'ShowSignatures', 'DisableSmileys', 'DisableBBCodes');
- $message_body->SetDBFieldsFromHash($object->GetFieldValues(), $copy_fields);
-
- $body_created = $message_body->Create();
- if ($body_created) {
- // 2. link body with message
- $object->SetDBField('PMBodyId', $message_body->GetID());
- $object->Update();
-
- // 3. create message in recipient's Inbox folder
- $object->SetDBField('FolderId', PM_FOLDER_INBOX);
- $object->SetDBField('Status', PM_STATUS_UNREAD);
- $object->Create();
- }
- }
-
- /**
- * Sets post options to virtual fields
- *
- * @param kEvent $event
- */
- function OnAfterItemLoad(&$event)
- {
- $object =& $event->getObject();
- /* @var $object kDBItem */
-
- $post_helper =& $this->Application->recallObject('PostHelper');
- /* @var $post_helper PostHelper */
-
- $options_map = $post_helper->getOptionsMap();
- $post_options = $object->GetDBField('Options');
- foreach ($options_map as $option_name => $field_name) {
- $option_value = $post_helper->GetPostOption($option_name, $post_options);
- $object->SetDBField($field_name, (int)$option_value);
- }
- }
-
- /**
- * Goes to next_template after post creation
- *
- * @param kEvent $event
- */
- function OnCreate(&$event)
- {
- parent::OnCreate($event);
-
- if ($event->status == erSUCCESS && !$this->Application->IsAdmin()) {
- $event->SetRedirectParam('opener', 's');
- $event->redirect = $this->Application->GetVar('next_template');
- }
- }
-
- /**
- * Prevents user from deleting other user private messages
- *
- * @param kEvent $event
- */
- function OnBeforeItemDelete(&$event)
- {
- $object =& $event->getObject();
- /* @var $object kDBItem */
-
- $user_id = $this->Application->RecallVar('user_id');
- $owner_field = ($object->GetDBField('FolderId') == PM_FOLDER_INBOX) ? 'ToId' : 'FromId';
- if ($object->GetDBField($owner_field) != $user_id) {
- $event->status = erFAIL;
- }
- }
-
- /**
- * Updates reference counter in message body record
- *
- * @param kEvent $event
- */
- function OnAfterItemDelete(&$event)
- {
- $object =& $event->getObject();
- /* @var $object kDBItem */
-
- $body_idfield = $this->Application->getUnitOption($event->Prefix.'-body', 'IDField');
- $body_table = $this->Application->getUnitOption($event->Prefix.'-body', 'TableName');
- $sql = 'UPDATE '.$body_table.'
- SET ReferenceCount = ReferenceCount - 1
- WHERE '.$body_idfield.' = '.$object->GetDBField('PMBodyId');
- $this->Conn->Query($sql);
- }
-
- /**
- * Sets default values to posting options based on persistent session
- *
- * @param kEvent $event
- */
- function OnAfterConfigRead(&$event)
- {
- $virtual_fields = $this->Application->getUnitOption($event->Prefix, 'VirtualFields');
- $virtual_fields['DisableBBCodes']['default'] = (int)!$this->Application->RecallPersistentVar('bbcode');
- $virtual_fields['DisableSmileys']['default'] = (int)!$this->Application->RecallPersistentVar('smileys');
- $virtual_fields['ShowSignatures']['default'] = (int)$this->Application->RecallPersistentVar('show_sig');
- $this->Application->setUnitOption($event->Prefix, 'VirtualFields', $virtual_fields);
- }
-
- /**
- * Checks, that current user is recipient or sender of viewed message
- *
- * @param kEvent $event
- * @return bool
- */
- function checkItemStatus(&$event)
- {
- $object =& $event->getObject();
- if (!$object->isLoaded()) {
- return true;
- }
-
- $user_id = $this->Application->RecallVar('user_id');
- return ($object->GetDBField('FromId') == $user_id) || ($object->GetDBField('ToId') == $user_id);
- }
-
- /**
- * Prepares new reply & new message form
- *
- * @param kEvent $event
- */
- function OnNew(&$event)
- {
- parent::OnNew($event);
-
- $reply_to = $this->Application->GetVar('reply_to');
- if ($reply_to > 0) {
- $object =& $event->getObject();
- /* @var $object kDBItem */
-
- $source_msg =& $this->Application->recallObject($event->Prefix.'.-item', null, Array ('skip_autoload' => true));
- /* @var $source_msg kDBItem */
-
- $source_msg->Load($reply_to);
-
- $object->SetDBField('ToId', $source_msg->GetDBField('FromId'));
- $object->SetDBField('Subject', 'Re: '.$source_msg->GetDBField('Subject'));
- }
- }
- }
-
-?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/units/private_messages/private_message_eh.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/units/private_messages/private_messages_config.php
===================================================================
--- trunk/in-bulletin/units/private_messages/private_messages_config.php (revision 12824)
+++ trunk/in-bulletin/units/private_messages/private_messages_config.php (nonexistent)
@@ -1,93 +0,0 @@
-<?php
-
- $config = Array (
- 'Prefix' => 'private-message',
- 'ItemClass' => Array('class' => 'kDBItem', 'file' => '', 'build_event' => 'OnItemBuild'),
- 'ListClass' => Array('class' => 'kDBList', 'file' => '', 'build_event' => 'OnListBuild'),
- 'EventHandlerClass' => Array('class' => 'PrivateMessageEventHandler', 'file' => 'private_message_eh.php', 'build_event' => 'OnBuild'),
- 'TagProcessorClass' => Array('class' => 'PrivateMessageTagProcessor', 'file' => 'private_message_tp.php', 'build_event' => 'OnBuild'),
-
- 'AutoLoad' => true,
-
- 'QueryString' => Array (
- 1 => 'id',
- 2 => 'Page',
- 3 => 'event',
- 4 => 'mode',
- ),
-
- 'IDField' => 'PmId',
- 'StatusField' => Array ('Status'),
- 'TitleField' => 'Subject',
-
- 'PermSection' => Array('main' => 'in-bulletin:private_messages',),
-
- 'TableName' => TABLE_PREFIX.'PrivateMessages',
-
- 'CalculatedFields' => Array (
- '' => Array (
- 'Subject' => 'pmb.Subject',
- 'Body' => 'pmb.Body',
- ),
- ),
-
- 'ListSQLs' => Array (
- '' => ' SELECT %1$s.* %2$s
- FROM %1$s
- LEFT JOIN '.TABLE_PREFIX.'%3$sPrivateMessageBody pmb ON pmb.PMBodyId = %1$s.PMBodyId
- LEFT JOIN '.TABLE_PREFIX.'PortalUser from_user ON from_user.PortalUserId = %1$s.FromId
- LEFT JOIN '.TABLE_PREFIX.'PortalUser to_user ON to_user.PortalUserId = %1$s.ToId',
- ),
-
- 'ListSortings' => Array (
- '' => Array(
- 'ForcedSorting' => Array('CreatedOn' => 'desc'),
- ),
- ),
-
- 'ItemSQLs' => Array (
- '' => ' SELECT %1$s.* %2$s
- FROM %1$s
- LEFT JOIN '.TABLE_PREFIX.'%3$sPrivateMessageBody pmb ON pmb.PMBodyId = %1$s.PMBodyId
- LEFT JOIN '.TABLE_PREFIX.'PortalUser from_user ON from_user.PortalUserId = %1$s.FromId
- LEFT JOIN '.TABLE_PREFIX.'PortalUser to_user ON to_user.PortalUserId = %1$s.ToId',
- ),
-
- 'SubItems' => Array('private-message-body'),
-
- 'CalculatedFields' => Array (
- '' => Array (
- 'Subject' => 'pmb.Subject',
- 'Body' => 'pmb.Body',
- 'Options' => 'pmb.Options',
-
- 'FromName' => 'IF (ISNULL(from_user.Login), IF (%1$s.FromId = -1, "root", IF (%1$s.FromId = -2, "Guest", "n/a")), from_user.Login)',
- 'ToName' => 'IF (ISNULL(to_user.Login), IF (%1$s.ToId = -1, "root", IF (%1$s.ToId = -2, "Guest", "n/a")), to_user.Login)',
- ),
- ),
-
- 'Fields' => Array (
- 'PmId' => Array ('type' => 'int', 'not_null' => 1, 'default' => 0),
- 'FromId' => Array('type' => 'int', 'formatter' => 'kLEFTFormatter', 'error_msgs' => Array ('invalid_option' => '!lu_error_UserNotFound!'), 'left_sql' => 'SELECT %s FROM '.TABLE_PREFIX.'PortalUser WHERE `%s` = \'%s\'', 'left_key_field' => 'PortalUserId', 'left_title_field' => 'Login', 'not_null' => 1, 'required' => 1, 'default' => null),
- 'ToId' => Array('type' => 'int', 'formatter' => 'kLEFTFormatter', 'error_msgs' => Array ('invalid_option' => '!lu_error_UserNotFound!'), 'left_sql' => 'SELECT %s FROM '.TABLE_PREFIX.'PortalUser WHERE `%s` = \'%s\'', 'left_key_field' => 'PortalUserId', 'left_title_field' => 'Login', 'not_null' => 1, 'required' => 1, 'default' => null),
- 'FolderId' => Array ('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array (0 => 'lu_Inbox', 1 => 'lu_Sent'), 'use_phrases' => 1, 'not_null' => 1, 'default' => PM_FOLDER_SENT),
- 'Status' => Array ('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array (0 => 'lu_message_Unread', 1 => 'lu_message_Viewed', 2 => 'lu_message_Read', 3 => 'lu_message_Replyed', 4 => 'lu_message_Sent'), 'use_phrases' => 1, 'not_null' => 1, 'default' => 0),
- 'PMBodyId' => Array ('type' => 'int', 'not_null' => 1, 'default' => 0),
- 'CreatedOn' => Array ('type' => 'int', 'formatter' => 'kDateFormatter', 'not_null' => 1, 'default' => '#NOW#'),
- ),
-
- 'VirtualFields' => Array (
- 'FromName' => Array ('type' => 'string', 'default' => ''),
- 'ToName' => Array ('type' => 'string', 'default' => ''),
- 'Subject' => Array ('type' => 'string', 'default' => ''),
- 'Body' => Array ('type' => 'string', 'required' => 1, 'default' => ''),
- 'Options' => Array ('type' => 'string', 'default' => 0),
-
- 'DisableBBCodes' => Array ('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array (1 => 'la_Yes', 0 => 'la_No'), 'use_phrases' => 1, 'default' => 0),
- 'DisableSmileys' => Array ('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array (1 => 'la_Yes', 0 => 'la_No'), 'use_phrases' => 1, 'default' => 0),
- 'ShowSignatures' => Array ('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array (0 => 'la_No', 1 => 'la_Yes'), 'use_phrases' => 1, 'default' => 1),
- ),
-
-
- );
-?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/units/private_messages/private_messages_config.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/units/topics/topics_event_handler.php
===================================================================
--- trunk/in-bulletin/units/topics/topics_event_handler.php (revision 12824)
+++ trunk/in-bulletin/units/topics/topics_event_handler.php (nonexistent)
@@ -1,381 +0,0 @@
-<?php
-
- class TopicsEventHandler extends kCatDBEventHandler {
-
-
- /**
- * Checks topic lock permission
- *
- * @param kEvent $event
- */
- function CheckPermission(&$event)
- {
- if ($event->Name == 'OnTopicLockToggle') {
- $object =& $event->getObject();
- /* @var $object kCatDBItem */
-
- if (!$object->isLoaded()) {
- $event->status = erPERM_FAIL;
- return false;
- }
-
- $category_id = $object->GetDBField('CategoryId');
- $perm_status = $this->Application->CheckPermission('TOPIC.LOCK', 0, $category_id);
-
- if (!$perm_status) {
- $event->status = erPERM_FAIL;
- }
-
- return $perm_status;
- }
-
- return parent::CheckPermission($event);
- }
-
- /**
- * Created url part for this module
- *
- * @param kEvent $event
- */
- function BuildEnv(&$event)
- {
- $prefix_special = $event->getPrefixSpecial();
- $url_params = $event->getEventParam('url_params');
- $pass_events = $event->getEventParam('pass_events');
-
- $query_vars = $this->Application->getUnitOption($event->Prefix, 'QueryString');
-
- $event_key = array_search('event', $query_vars);
- if ($event_key) {
- // pass through event of this prefix
- unset($query_vars[$event_key]);
- }
-
- if (!getArrayValue($url_params, $prefix_special.'_event')) {
- // if empty event, then remove it from url
- unset( $url_params[$prefix_special.'_event'] );
- }
-
- //if pass events is off and event is not implicity passed
- if ( !$pass_events && !isset($url_params[$prefix_special.'_event']) )
- {
- unset($url_params[$prefix_special.'_event']); // remove event from url if requested
- //otherwise it will use value from get_var
- }
-
- if(!$query_vars) return true;
-
- $processed_params = Array();
- foreach($query_vars as $index => $var_name)
- {
- //if value passed in params use it, otherwise use current from application
- $var_name = $prefix_special.'_'.$var_name;
- $processed_params[$var_name] = isset( $url_params[$var_name] ) ? $url_params[$var_name] : $this->Application->GetVar($var_name);
- if ( isset($url_params[$var_name]) ) unset( $url_params[$var_name] );
- }
-
- $ret = '';
-
- // topic
- if($processed_params[$prefix_special.'_id'])
- {
- // this allows to fill 3 cache records with one query (see this method for details)
- $category_id = isset($url_params['m_cat_id']) ? $url_params['m_cat_id'] : $this->Application->GetVar('m_cat_id');
- $category_filename = $this->Application->getFilename('c', $category_id);
-
- // if template is also item template of category, then remove template
- $template = getArrayValue($url_params, 't');
- $item_template = $this->Application->getCache('item_templates', $category_id);
- if ($template == $item_template || strtolower($template) == '__default__') {
- unset($url_params['t']);
- }
-
- $ret .= $processed_params[$prefix_special.'_id'].'/';
- }
-
- if($processed_params[$prefix_special.'_Page'] > 1)
- {
- if ($processed_params[$prefix_special.'_Page']) $ret = rtrim($ret, '/');
- $ret .= '_'.$processed_params[$prefix_special.'_Page'].'/';
- }
-
- // post
- if($processed_params[$prefix_special.'_post_id'])
- {
- $ret .= $processed_params[$prefix_special.'_post_id'].'/';
- }
-
- if($processed_params[$prefix_special.'_Post_Page'] > 1)
- {
- if ($processed_params[$prefix_special.'_post_id']) $ret = rtrim($ret, '/');
- $ret .= '_'.$processed_params[$prefix_special.'_Post_Page'].'/';
- }
-
- // private message
- if($processed_params[$prefix_special.'_pm_id'])
- {
- $ret .= 'pm_'.$processed_params[$prefix_special.'_pm_id'].'/';
- }
-
- if($processed_params[$prefix_special.'_pm_Page'] > 1)
- {
- if ($processed_params[$prefix_special.'_pm_id']) $ret = rtrim($ret, '/');
- $ret .= '_'.$processed_params[$prefix_special.'_pm_Page'].'/';
- }
-
- if ($ret) {
- $ret = 'bb_'.$ret;
- }
-
- $event->setEventParam('url_params', $url_params);
- $event->setEventParam('env_string', strtolower($ret) );
- }
-
- /**
- * Process mod_rewrite url part left after previous parser
- *
- * @param kEvent $event
- */
- function ParseEnv(&$event)
- {
- // <topic_id>_<topic_page>/<post_id>_<post_page>/<pm_id>_<pm_page>
-
- $url_parts = $event->getEventParam('url_parts');
- $url_parts[0] = substr($url_parts[0], 3);
-
-
- $vars = $event->getEventParam('vars');
-
- $defaults = Array('id' => 0, 'Page' => 1, 'Reviews_Page' => 1, 'post_id' => 0, 'Post_Page' => 1, 'pm_id' => 0, 'pm_Page' => 1);
- foreach ($defaults as $var_name => $var_value)
- {
- $this->Application->SetVar($event->getPrefixSpecial().'_'.$var_name, $var_value);
- $vars[$event->getPrefixSpecial().'_'.$var_name] = $var_value;
- }
- if (!$url_parts) {
- return false;
- }
-
- $ret = '';
- $url_part = array_shift($url_parts);
-
- if($url_part && substr($url_part,0,3) != 'pm_')
- {
- // match topic page
- if( preg_match('/(.*)_([\d]+)$/', $url_part, $rets) )
- {
- $url_part = $rets[1];
- $this->Application->SetVar( $event->getPrefixSpecial().'_Page', $rets[2]);
- $vars[$event->getPrefixSpecial().'_Page'] = $rets[2];
- }
-
- if (is_numeric($url_part)) {
- // match topic id (we don't use names here)
- $this->Application->SetVar($event->getPrefixSpecial().'_id', $url_part);
- $vars[$event->getPrefixSpecial().'_id'] = $url_part;
- $url_part = $url_parts ? array_shift($url_parts) : '';
- }
- }
-
- if($url_part && substr($url_part,0,3) != 'pm_')
- {
- // match post page
- if( preg_match('/(.*)_([\d]+)$/', $url_part, $rets) )
- {
- $url_part = $rets[1];
- $this->Application->SetVar( $event->getPrefixSpecial().'_Post_Page', $rets[2]);
- $vars[$event->getPrefixSpecial().'_Post_Page'] = $rets[2];
- }
-
- if (is_numeric($url_part)) {
- // match post id
- $this->Application->SetVar($event->getPrefixSpecial().'_post_id', $url_part);
- $vars[$event->getPrefixSpecial().'_post_id'] = $url_part;
- $url_part = $url_parts ? array_shift($url_parts) : '';
- }
- }
-
- if($url_part && substr($url_part,0,3) == 'pm_')
- {
- $url_part = substr($url_part, 3, strlen($url_part) );
- // match private message page
- if( preg_match('/(.*)_([\d]+)$/', $url_part, $rets) )
- {
- $url_part = $rets[1];
- $this->Application->SetVar( $event->getPrefixSpecial().'_pm_Page', $rets[2]);
- $vars[$event->getPrefixSpecial().'_pm_Page'] = $rets[2];
- }
-
- if (is_numeric($url_part)) {
- // match private message id
- $this->Application->SetVar($event->getPrefixSpecial().'_pm_id', $url_part);
- $vars[$event->getPrefixSpecial().'_pm_id'] = $url_part;
- $url_part = $url_parts ? array_shift($url_parts) : '';
- }
- }
-
- if ($url_part) {
- array_unshift($url_parts, $url_part);
- }
-
- $event->setEventParam('url_parts', $url_parts);
- $event->setEventParam('vars', $vars);
- }
-
- /**
- * Lock or unlock topic
- *
- * @param kEvent $event
- */
- function OnToggleLock(&$event)
- {
- $object =& $event->getObject();
-
- $new_type = $object->GetDBField('TopicType') ? 0 : 1;
- $object->SetDBField('TopicType', $new_type);
- $object->Update();
- }
-
- /**
- * Cache topic owner
- *
- * @param kEvent $event
- */
- function OnBeforeItemUpdate(&$event)
- {
- parent::OnBeforeItemUpdate($event);
-
- $this->cacheItemOwner($event, 'OwnerId', 'PostedBy');
- }
-
- /**
- * Cache topic owner
- *
- * @param kEvent $event
- */
- function OnBeforeItemCreate(&$event)
- {
- parent::OnBeforeItemCreate($event);
-
- $this->cacheItemOwner($event, 'OwnerId', 'PostedBy');
-
- $object =& $event->getObject();
- /* @var $object kCatDBItem */
-
- if (!$object->GetDBField('TodayDate')) {
- $object->SetDBField('TodayDate', adodb_date('Y-m-d'));
- }
- }
-
- /**
- * Creates 1st post when topic is created
- *
- * @param kEvent $event
- */
- function OnAfterItemCreate(&$event)
- {
- parent::OnAfterItemCreate($event);
-
- if ($event->Special == '-item') {
- // don't create first post when cloning
- return ;
- }
-
- $object =& $event->getObject();
- /* @var $object kDBItem */
-
- $post =& $this->Application->recallObject($event->Prefix.'-post', null, Array ('skip_autoload' => true));
- /* @var $post kDBItem */
-
- $post->SetDBField('Pending', $object->GetDBField('Status') == STATUS_ACTIVE ? 0 : 1);
- $post->SetDBField('Subject', '');
- $post->SetDBField('PostingText', $object->GetDBField('PostingText'));
-
- $post->SetDBField('ShowSignatures', $object->GetDBField('ShowSignatures'));
- $post->SetDBField('DisableSmileys', $object->GetDBField('DisableSmileys'));
- $post->SetDBField('DisableBBCodes', $object->GetDBField('DisableBBCodes'));
-
- $post->Create();
-
- // need to update category topic count here
- }
-
- /**
- * Approves 1st post when topic got approved
- *
- * @param kEvent $event
- */
- function OnAfterItemUpdate(&$event)
- {
- if (!$this->Application->IsAdmin()) {
- return ;
- }
-
- $object =& $event->getObject();
- /* @var $object kCatDBItem */
-
- if ($object->GetDBField('Posts') == 1) {
- $post =& $this->Application->recallObject($event->Prefix.'-post', null, Array('skip_autoload' => true));
- /* @var $post kDBItem */
-
- $main_status = $object->GetDBField('Status');
- $post->Load($object->GetDBField('LastPostId'));
- if ($post->isLoaded()) {
- $post->SetDBField('Pending', $main_status == STATUS_ACTIVE ? 0 : 1);
- $post->Update();
- }
- }
- }
-
- /**
- * Makes first post body field non-requered when topic has posts already
- *
- * @param kEvent $event
- */
- function OnAfterItemLoad(&$event)
- {
- parent::OnAfterItemLoad($event);
-
- $object =& $event->getObject();
- /* @var $object kCatDBItem */
-
- if ($object->GetDBField('Posts') > 0) {
- $object->setRequired('PostingText', false);
- }
- }
-
- /**
- * Locks or unlocks topic
- *
- * @param kEvent $event
- */
- function OnTopicLockToggle(&$event)
- {
- $object =& $event->getObject();
- /* @var $object kCatDBItem */
-
- $topic_type = $object->GetDBField('TopicType');
- $object->SetDBField('TopicType', $topic_type == 1 ? 0 : 1);
- $object->Update();
- }
-
- /**
- * Sets default values to posting options based on persistent session
- *
- * @param kEvent $event
- */
- function OnAfterConfigRead(&$event)
- {
- $fields = $this->Application->getUnitOption($event->Prefix, 'Fields');
- $fields['NotifyOwnerOnChanges']['default'] = (int)$this->Application->RecallPersistentVar('owner_notify');
- $this->Application->setUnitOption($event->Prefix, 'Fields', $fields);
-
- $virtual_fields = $this->Application->getUnitOption($event->Prefix, 'VirtualFields');
- $virtual_fields['DisableBBCodes']['default'] = (int)!$this->Application->RecallPersistentVar('bbcode');
- $virtual_fields['DisableSmileys']['default'] = (int)!$this->Application->RecallPersistentVar('smileys');
- $virtual_fields['ShowSignatures']['default'] = (int)$this->Application->RecallPersistentVar('show_sig');
- $this->Application->setUnitOption($event->Prefix, 'VirtualFields', $virtual_fields);
- }
- }
-
-?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/units/topics/topics_event_handler.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.15
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/units/topics/topics_tag_processor.php
===================================================================
--- trunk/in-bulletin/units/topics/topics_tag_processor.php (revision 12824)
+++ trunk/in-bulletin/units/topics/topics_tag_processor.php (nonexistent)
@@ -1,66 +0,0 @@
-<?php
-
- class TopicsTagProcessor extends kCatDBTagProcessor {
-
- function TopicLink($params)
- {
- return $this->ItemLink($params, 'topic');
- }
-
- function ListTopics($params)
- {
- return $this->PrintList2($params);
- }
-
- function PostingLink($params)
- {
- $item_id = getArrayValue($params, 'posting_id');
- if (!$item_id) {
- $item_id = $this->Application->GetVar($this->Prefix.'_post_id');
- }
- $params[$this->Prefix.'_post_id'] = $item_id;
- return $this->TopicLink($params);
- }
-
- function PostingDeleteLink($params)
- {
- $params['Action'] = 'bb_post_delete';
- return $this->PostingLink($params);
- }
-
- /**
- * Returns topic replies count
- *
- * @param Array $params
- * @return int
- */
- function TopicReplies($params)
- {
- $object =& $this->getObject($params);
-
- return $object->GetDBField('Posts') ? $object->GetDBField('Posts') - 1 : 0;
- }
-
- /**
- * Returns topic lock statis
- *
- * @param Array $params
- * @return bool
- */
- function IsLocked($params)
- {
- $object =& $this->getObject($params);
-
- return $object->GetDBField('TopicType') == 0;
- }
-
- function LockToggleLink($params)
- {
- $params[$this->Prefix.'_event'] = 'OnTopicLockToggle';
- $params['pass'] = 'm,'.$this->Prefix;
-
- return $this->Application->ProcessParsedTag('m', 'Link', $params);
- }
- }
-
-?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/units/topics/topics_tag_processor.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/units/topics/topics_config.php
===================================================================
--- trunk/in-bulletin/units/topics/topics_config.php (revision 12824)
+++ trunk/in-bulletin/units/topics/topics_config.php (nonexistent)
@@ -1,357 +0,0 @@
-<?php
-
-$config = Array(
- 'Prefix' => 'bb',
- 'ItemClass' => Array('class' => 'kCatDBItem', 'file' => '', 'build_event' => 'OnItemBuild'),
- 'ListClass' => Array('class' => 'kCatDBList', 'file' => '', 'build_event' => 'OnListBuild'),
- 'EventHandlerClass' => Array('class' => 'TopicsEventHandler', 'file' => 'topics_event_handler.php', 'require_classes' => Array('kCatDBEventHandler'), 'build_event' => 'OnBuild'),
- 'TagProcessorClass' => Array('class' => 'TopicsTagProcessor', 'file' => 'topics_tag_processor.php', 'require_classes' => Array('kCatDBTagProcessor'), 'build_event' => 'OnBuild'),
- 'AutoLoad' => true,
- 'QueryString' => Array(
- 1 => 'id', // topic id
- 2 => 'post_id', // post id
- 3 => 'Page', // topic page
- 4 => 'Post_Page', // posts page
- 5 => 'pm_Page', // private message page
- 6 => 'pm_id', // private message id
- 7 => 'Reviews_Page',
- 8 => 'event',
- 9 => 'mode',
- ),
-
- 'ConfigPriority' => 0,
- 'Hooks' => Array (
- Array (
- 'Mode' => hBEFORE,
- 'Conditional' => false,
- 'HookToPrefix' => '',
- 'HookToSpecial' => '*',
- 'HookToEvent' => Array('OnAfterConfigRead'),
- 'DoPrefix' => 'cdata',
- 'DoSpecial' => '*',
- 'DoEvent' => 'OnDefineCustomFields',
- ),
- ),
-
- 'CatalogItem' => true,
- 'AdminTemplatePath' => 'topics',
- 'AdminTemplatePrefix' => 'topics_',
- 'SearchConfigPostfix' => 'topics',
-
- 'IDField' => 'TopicId',
- 'StatusField' => Array('Status'), // field, that is affected by Approve/Decline events
-
- 'TitleField' => 'TopicText', // field, used in bluebar when editing existing item
- 'TitlePhrase' => 'la_Text_Topic', // phrase used to specify item type in relationship list
- 'OwnerField' => 'OwnerId', // usually it is CreatedById
-
- 'TitlePresets' => Array(
- 'default' => Array( 'new_status_labels' => Array('bb' => '!la_title_AddingTopic!'),
- 'edit_status_labels' => Array('bb' => '!la_title_EditingTopic!'),
- 'new_titlefield' => Array('bb' => '!la_title_NewTopic!'),
- ),
-
- 'topics_edit' => Array('prefixes' => Array('bb'), 'format' => "#bb_status# '#bb_titlefield#' - !la_title_General!"),
- 'topics_categories' => Array('prefixes' => Array('bb','bb-ci_List'), 'format' => "#bb_status# '#bb_titlefield#' - !la_title_Categories!"),
- 'topics_relations' => Array('prefixes' => Array('bb'), 'format' => "#bb_status# '#bb_titlefield#' - !la_title_Relations!"),
- 'topics_images' => Array('prefixes' => Array('bb'), 'format' => "#bb_status# '#bb_titlefield#' - !la_title_Images!"),
- 'topics_reviews' => Array('prefixes' => Array('bb'), 'format' => "#bb_status# '#bb_titlefield#' - !la_title_Reviews!"),
- 'topics_custom' => Array('prefixes' => Array('bb'), 'format' => "#bb_status# '#bb_titlefield#' - !la_title_Custom!"),
-
- 'images_edit' => Array( 'prefixes' => Array('bb', 'bb-img'),
- 'new_status_labels' => Array('bb-img'=>'!la_title_Adding_Image!'),
- 'edit_status_labels' => Array('bb-img'=>'!la_title_Editing_Image!'),
- 'new_titlefield' => Array('bb-img'=>'!la_title_New_Image!'),
- 'format' => "#bb_status# '#bb_titlefield#' - #bb-img_status# '#bb-img_titlefield#'",
- ),
-
- 'reviews_edit' => Array( 'prefixes' => Array('bb', 'bb-rev'),
- 'new_status_labels' => Array('bb-rev'=>"!la_title_Adding_Review! '!la_title_New_Review!'"),
- 'edit_status_labels' => Array('bb-rev'=>'!la_title_Editing_Review!'),
- 'format' => "#bb_status# '#bb_titlefield#' - #bb-rev_status#",
- ),
-
- 'relations_edit' => Array( 'prefixes' => Array('bb', 'bb-rel'),
- 'new_status_labels' => Array('bb-rel'=>"!la_title_Adding_Relationship! '!la_title_New_Relationship!'"),
- 'edit_status_labels' => Array('bb-rel'=>'!la_title_Editing_Relationship!'),
- 'format' => "#bb_status# '#bb_titlefield#' - #bb-rel_status#",
- ),
-
- 'tree_in-bulletin' => Array('format' => '!la_Text_Version! '.$this->Application->findModule('Name', 'In-Bulletin', 'Version')),
- ),
-
- 'PermItemPrefix' => 'TOPIC',
-
- 'PermTabText' => 'In-Bulletin',
- 'PermSection' => Array('main' => 'CATEGORY:in-bulletin:topics_list', 'search' => 'in-bulletin:configuration_search', 'email' => 'in-bulletin:configuration_email', 'custom' => 'in-bulletin:configuration_custom'),
-
- 'Sections' => Array(
- 'in-bulletin' => Array(
- 'parent' => 'in-portal:root',
- 'icon' => 'settings_in-bulletin',
- 'label' => 'la_title_In-Bulletin',
- 'url' => Array('t' => 'sections_list', 'pass_section' => true, 'pass' => 'm'),
- 'permissions' => Array('view'),
- 'priority' => 3.3,
- 'type' => stTREE,
- ),
-
- 'in-bulletin:inbulletin_general' => Array(
- 'parent' => 'in-bulletin',
- 'icon' => 'settings_general',
- 'label' => 'la_tab_GeneralSettings',
- 'url' => Array('t' => 'config/config_general', 'pass_section' => true, 'pass' => 'm'),
- 'permissions' => Array('view', 'edit'),
- 'priority' => 1,
- 'type' => stTREE,
- ),
-
- 'in-bulletin:configuration_output' => Array(
- 'parent' => 'in-bulletin',
- 'icon' => 'settings_output',
- 'label' => 'la_tab_ConfigOutput',
- 'url' => Array('t' => 'config/config_universal', 'pass_section' => true, 'pass' => 'm'),
- 'permissions' => Array('view', 'edit'),
- 'priority' => 2,
- 'type' => stTREE,
- ),
-
- 'in-bulletin:configuration_search' => Array(
- 'parent' => 'in-bulletin',
- 'icon' => 'settings_search',
- 'label' => 'la_tab_ConfigSearch',
- 'url' => Array('t' => 'config/config_search', 'module_key' => 'topics', 'pass_section' => true, 'pass' => 'm'),
- 'permissions' => Array('view', 'edit'),
- 'priority' => 3,
- 'type' => stTREE,
- ),
-
- 'in-bulletin:configuration_censorship' => Array(
- 'parent' => 'in-bulletin',
- 'icon' => 'settings_censor',
- 'label' => 'la_tab_ConfigCensorship',
- 'url' => Array('index_file' => '../in-bulletin/admin/censor_config.php', 'pass' => 'm'),
- 'permissions' => Array('view', 'add', 'edit'),
- 'priority' => 4,
- 'type' => stTREE,
- ),
-
- 'in-bulletin:configuration_emoticon' => Array(
- 'parent' => 'in-bulletin',
- 'icon' => 'settings_smiley',
- 'label' => 'la_tab_ConfigSmileys',
- 'url' => Array('index_file' => '../in-bulletin/admin/emoticon_config.php', 'pass' => 'm'),
- 'permissions' => Array('view', 'add', 'edit'),
- 'priority' => 5,
- 'type' => stTREE,
- ),
-
- 'in-bulletin:configuration_email' => Array(
- 'parent' => 'in-bulletin',
- 'icon' => 'settings_email',
- 'label' => 'la_tab_ConfigE-mail',
- 'url' => Array('t' => 'config/config_email', 'pass_section' => true, 'pass' => 'm'),
- 'permissions' => Array('view', 'edit'),
- 'priority' => 6,
- 'type' => stTREE,
- ),
-
- 'in-bulletin:configuration_custom' => Array(
- 'parent' => 'in-bulletin',
- 'icon' => 'settings_custom',
- 'label' => 'la_tab_ConfigCustom',
- 'url' => Array('t' => 'custom_fields/custom_fields_list', 'cf_type' => 3, 'pass_section' => true, 'pass' => 'm,cf'),
- 'permissions' => Array('view', 'add', 'edit', 'delete'),
- 'priority' => 7,
- 'type' => stTREE,
- ),
-
- ),
-
- 'FilterMenu' => Array(
- 'Groups' => Array(
- Array('mode' => 'AND', 'filters' => Array('show_active','show_pending','show_disabled'), 'type' => WHERE_FILTER),
- Array('mode' => 'AND', 'filters' => Array('show_new'), 'type' => HAVING_FILTER),
- Array('mode' => 'AND', 'filters' => Array('show_hot'), 'type' => HAVING_FILTER),
- Array('mode' => 'AND', 'filters' => Array('show_pop'), 'type' => HAVING_FILTER),
- Array('mode' => 'AND', 'filters' => Array('show_pick'), 'type' => WHERE_FILTER),
- ),
- 'Filters' => Array(
- 'show_active' => Array('label' =>'la_Active', 'on_sql' => '', 'off_sql' => '%1$s.Status != 1' ),
- 'show_pending' => Array('label' => 'la_Pending', 'on_sql' => '', 'off_sql' => '%1$s.Status != 2' ),
- 'show_disabled' => Array('label' => 'la_Disabled', 'on_sql' => '', 'off_sql' => '%1$s.Status != 0' ),
- 's1' => Array(),
- 'show_new' => Array('label' => 'la_Text_New', 'on_sql' => '', 'off_sql' => '`IsNew` != 1' ),
- 'show_hot' => Array('label' => 'la_Text_Hot', 'on_sql' => '', 'off_sql' => '`IsHot` != 1' ),
- 'show_pop' => Array('label' => 'la_Text_Pop', 'on_sql' => '', 'off_sql' => '`IsPop` != 1' ),
- 'show_pick' => Array('label' => 'la_prompt_EditorsPick', 'on_sql' => '', 'off_sql' => '%1$s.`EditorsPick` != 1' ),
- )
- ),
-
- 'CatalogSelectorName' => 'topiclist',
-
- 'ItemPropertyMappings' => Array(
- 'NewDays' => 'Topic_NewDays', // number of days item to be NEW
- 'MinPopVotes' => 'Topic_MinPopVotes', // minimum number of votes for an item to be POP
- 'MinPopRating' => 'Topic_MinPopRating', // minimum rating for an item to be POP
- 'MaxHotNumber' => 'Topic_MaxHotNumber', // maximum number of HOT items
-
- 'HotLimit' => 'Topic_HotLimit', // variable name in inp_Cache table
- 'ClickField' => 'Views', // item click count is stored here (in item table)
- ),
-
- 'ItemType' => 3, // this is used when relation to product is added from in-portal and via-versa
-
- 'ViewMenuPhrase' => 'la_title_Topics',
- 'UsePendingEditing' => true, // item editing is controlled by TOPIC.ADD/EDIT, TOPIC.ADD/EDIT.PENDING permissions
-
- 'StatisticsInfo' => Array(
- 'pending' => Array(
- 'icon' => 'icon16_topic_pending.gif',
- 'label' => 'la_Text_Topics',
- 'js_url' => '#url#',
- 'url' => Array('t' => 'in-portal/advanced_view', 'SetTab' => 'bb', 'pass' => 'm,bb.showall', 'bb.showall_event' => 'OnSetFilterPattern', 'bb.showall_filters' => 'show_active=0,show_pending=1,show_disabled=0,show_new=1,show_hot=1,show_pop=1,show_pick=1'),
- 'status' => STATUS_PENDING,
- ),
- ),
-
- 'TableName' => TABLE_PREFIX.'Topic',
-
- 'CalculatedFields' => Array (
- '' => Array (
- 'UserName' => 'IF (ISNULL(u.Login), IF (%1$s.OwnerId = -1, "root", IF (%1$s.OwnerId = -2, "Guest", "n/a")), u.Login)',
- 'CategoryId' => TABLE_PREFIX.'%3$sCategoryItems.CategoryId',
- 'Filename' => TABLE_PREFIX.'%3$sCategoryItems.Filename',
- 'PrimaryCat' => TABLE_PREFIX.'%3$sCategoryItems.PrimaryCat',
- 'ParentPath' => TABLE_PREFIX.'Category.ParentPath',
-
- 'SameImages' => 'img.SameImages',
- 'LocalThumb' => 'img.LocalThumb',
- 'ThumbPath' => 'img.ThumbPath',
- 'ThumbUrl' => 'img.ThumbUrl',
- 'LocalImage' => 'img.LocalImage',
- 'LocalPath' => 'img.LocalPath',
- 'FullUrl' => 'img.Url',
-
- 'LastPoster' => 'IF (ISNULL(last_post.PosterAlias), "Guest", last_post.PosterAlias)',
- ),
- ),
-
- 'ListSQLs' => Array( ''=>' SELECT %1$s.* %2$s
- FROM %1$s
- LEFT JOIN '.TABLE_PREFIX.'%3$sCategoryItems ON '.TABLE_PREFIX.'%3$sCategoryItems.ItemResourceId = %1$s.ResourceId
- LEFT JOIN '.TABLE_PREFIX.'Category ON '.TABLE_PREFIX.'Category.CategoryId = '.TABLE_PREFIX.'%3$sCategoryItems.CategoryId
- LEFT JOIN '.TABLE_PREFIX.'Images img ON img.ResourceId = %1$s.ResourceId AND img.DefaultImg = 1
- LEFT JOIN '.TABLE_PREFIX.'PermCache perm ON perm.CategoryId = '.TABLE_PREFIX.'%3$sCategoryItems.CategoryId
- LEFT JOIN '.TABLE_PREFIX.'PortalUser u ON %1$s.OwnerId = u.PortalUserId
- LEFT JOIN '.TABLE_PREFIX.'Posting last_post ON last_post.PostingId = %1$s.LastPostId
- LEFT JOIN '.TABLE_PREFIX.'%3$sTopicCustomData cust ON %1$s.ResourceId = cust.ResourceId',
- ), // key - special, value - list select sql
-
- 'ListSortings' => Array(
- '' => Array(
- 'ForcedSorting' => Array('EditorsPick' => 'desc', 'Priority' => 'desc'),
- 'Sorting' => Array('TopicText' => 'asc'),
- )
- ),
- 'ItemSQLs' => Array( ''=>' SELECT %1$s.* %2$s
- FROM %1$s
- LEFT JOIN '.TABLE_PREFIX.'%3$sCategoryItems ON '.TABLE_PREFIX.'%3$sCategoryItems.ItemResourceId = %1$s.ResourceId
- LEFT JOIN '.TABLE_PREFIX.'Category ON '.TABLE_PREFIX.'Category.CategoryId = '.TABLE_PREFIX.'%3$sCategoryItems.CategoryId
- LEFT JOIN '.TABLE_PREFIX.'Images img ON img.ResourceId = %1$s.ResourceId AND img.DefaultImg = 1
- LEFT JOIN '.TABLE_PREFIX.'PortalUser u ON %1$s.OwnerId = u.PortalUserId
- LEFT JOIN '.TABLE_PREFIX.'Posting last_post ON last_post.PostingId = %1$s.LastPostId
- LEFT JOIN '.TABLE_PREFIX.'%3$sTopicCustomData cust ON %1$s.ResourceId = cust.ResourceId'),
-
- 'SubItems' => Array('bb-rev', 'bb-ci', 'bb-rel', 'bb-img', 'bb-cdata', 'bb-fav', 'bb-post'),
-
- 'Fields' => Array (
- 'TopicId' => Array('type' => 'int', 'not_null' => 1, 'default' => 0,),
- 'NotifyOwnerOnChanges' => Array('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array (0 => 'lu_No', 1 => 'lu_Yes'), 'use_phrases' => 1, 'not_null' => 1, 'default' => 0),
- 'Modified' => Array('type' => 'int', 'formatter' => 'kDateFormatter', 'required' => 1, 'not_null' => 1, 'default' => '#NOW#'),
- 'TopicText' => Array('type' => 'string', 'not_null' => 1, 'required' => 1, 'default' => ''),
- 'AutomaticFilename' => Array('type' => 'int', 'not_null' => 1, 'default' => 1),
- 'Posts' => Array('type' => 'int', 'not_null' => 1, 'default' => 0),
- 'Views' => Array('type' => 'double', 'formatter' => 'kFormatter', 'format' => '%d', 'not_null' => 1, 'default' => 0),
- 'EditorsPick' => Array('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array(1 => 'la_Yes', 0 => 'la_No'), 'use_phrases' => 1, 'not_null' => 1, 'default' => 0),
- 'Status' => Array('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array (1 => 'la_Active', 2 => 'la_Pending', 0 => 'la_Disabled'), 'use_phrases' => 1, 'not_null' => 1, 'default' => 2),
- 'Priority' => Array('type' => 'int', 'not_null' => 1, 'default' => 0),
- 'OwnerId' => Array('type' => 'int', 'formatter' => 'kLEFTFormatter', 'error_msgs' => Array ('invalid_option' => '!la_error_UserNotFound!'), 'options' => Array(-1 => 'root', -2 => 'Guest'),'left_sql'=>'SELECT %s FROM '.TABLE_PREFIX.'PortalUser WHERE `%s` = \'%s\'', 'left_key_field' => 'PortalUserId', 'left_title_field' => 'Login', 'not_null' => 1, 'required' => 1, 'default' => -1),
- 'ModifiedById' => Array('type' => 'int', 'formatter' => 'kLEFTFormatter', 'error_msgs' => Array ('invalid_option' => '!la_error_UserNotFound!'), 'options' => Array(-1 => 'root', -2 => 'Guest'),'left_sql'=>'SELECT %s FROM '.TABLE_PREFIX.'PortalUser WHERE `%s` = \'%s\'', 'left_key_field' => 'PortalUserId', 'left_title_field' => 'Login', 'not_null' => 1, 'default' => 0),
- 'ResourceId' => Array('type' => 'int', 'default' => null),
- 'TopicType' => Array('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array(0 => 'la_Yes', 1 => 'la_No'), 'use_phrases' => 1, 'not_null' => 1, 'default' => 1),
- 'CreatedOn' => Array('type' => 'double', 'formatter' => 'kDateFormatter', 'required' => 1, 'default' => '#NOW#', 'not_null' => 1),
- 'CachedReviewsQty' => Array('type' => 'int' ,'not_null' => 1, 'default' => 0),
- 'CachedRating' => Array('type' => 'string', 'not_null' => 1, 'default' => 0),
- 'CachedVotesQty' => Array('type' => 'int', 'not_null' => 1, 'default' => 0),
- 'NewItem' => Array('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array (2 => 'la_Auto', 1 => 'la_Always', 0 => 'la_Never'), 'use_phrases' => 1, 'not_null' => 1,'default' => 2),
- 'PopItem' => Array('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array (2 => 'la_Auto', 1 => 'la_Always', 0 => 'la_Never'), 'use_phrases' => 1, 'not_null' => 1,'default' => 2),
- 'HotItem' => Array('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array (2 => 'la_Auto', 1 => 'la_Always', 0 => 'la_Never'), 'use_phrases' => 1, 'not_null' => 1,'default' => 2),
- 'PostedBy' => Array('type' => 'string', 'not_null' => 1, 'default' => ''),
- 'OrgId' => Array('type' => 'int', 'default' => null),
- 'LastPostId' => Array('type' => 'int', 'not_null' => 1, 'default' => 0),
- 'LastPostDate' => Array('type' => 'int', 'formatter' => 'kDateFormatter', 'default' => null),
- 'TodayDate' => Array('type' => 'string', 'default' => null),
- 'TodayPosts' => Array('type' => 'int', 'not_null' => 1, 'default' => 0),
- ),
-
- 'VirtualFields' => Array (
- 'UserName' => Array ('type'=>'string', 'default' => ''),
- 'CategoryId' => Array ('type' => 'int', 'default' => 0),
- 'Filename' => Array ('type' => 'string', 'not_null' => 1, 'default' => ''),
- 'CachedNavbar' => Array ('type' => 'string', 'default' => ''),
-
- 'LastPoster' => Array ('type' => 'string', 'default' => ''),
- 'PostingText' => Array ('type' => 'string', 'required' => 1, 'default' => ''),
- 'DisableBBCodes' => Array ('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array (1 => 'la_Yes', 0 => 'la_No'), 'use_phrases' => 1, 'default' => 0),
- 'DisableSmileys' => Array ('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array (1 => 'la_Yes', 0 => 'la_No'), 'use_phrases' => 1, 'default' => 0),
- 'ShowSignatures' => Array ('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array (0 => 'la_No', 1 => 'la_Yes'), 'use_phrases' => 1, 'default' => 1),
-
- // for primary image
- 'SameImages' => Array('type' => 'string', 'default' => ''),
- 'LocalThumb' => Array('type' => 'string', 'default' => ''),
- 'ThumbPath' => Array('type' => 'string', 'default' => ''),
- 'ThumbUrl' => Array('type' => 'string', 'default' => ''),
- 'LocalImage' => Array('type' => 'string', 'default' => ''),
- 'LocalPath' => Array('type' => 'string', 'default' => ''),
- 'FullUrl' => Array('type' => 'string', 'default' => ''),
- ),
-
- 'Grids' => Array(
- 'Default' => Array(
- 'Icons' => Array(1 => 'icon16_topic.gif', 2 => 'icon16_topic_pending.gif', 0 => 'icon16_topic_disabled.gif', 'HOT' => 'icon16_topic_hot.gif', 'POP' => 'icon16_topic_pop.gif', 'NEW' => 'icon16_topic_new.gif', 'PICK' => 'icon16_topic_pick.gif'),
- 'Fields' => Array(
- 'TopicId' => Array('title' => 'la_col_Id', 'data_block' => 'grid_checkbox_td'),
- 'TopicText' => Array('title' => 'la_col_TopicText', 'data_block' => 'grid_catitem_td'),
- 'UserName' => Array('title' => 'la_col_PostedBy'),
- 'Modified_formatted' => Array('title' => 'la_col_ModifiedDate', 'sort_field' => 'Modified'),
- 'Posts' => Array('title' => 'la_col_Posts'),
- 'Views' => Array('title' => 'la_col_Views'),
- ),
- ),
-
- 'Radio' => Array(
- 'Icons' => Array(1 => 'icon16_topic.gif', 2 => 'icon16_topic_pending.gif', 0 => 'icon16_topic_disabled.gif', 'HOT' => 'icon16_topic_hot.gif', 'POP' => 'icon16_topic_pop.gif', 'NEW' => 'icon16_topic_new.gif', 'PICK' => 'icon16_topic_pick.gif'),
- 'Fields' => Array(
- 'TopicId' => Array('title' => 'la_col_Id', 'data_block' => 'grid_radio_td'),
- 'TopicText' => Array('title' => 'la_col_TopicText', 'data_block' => 'grid_catitem_td'),
- 'UserName' => Array('title' => 'la_col_PostedBy'),
- 'Modified_formatted' => Array('title' => 'la_col_ModifiedDate', 'sort_field' => 'Modified'),
- 'Posts' => Array('title' => 'la_col_Posts'),
- 'Views' => Array('title' => 'la_col_Views'),
- ),
- ),
- ),
-
- 'ConfigMapping' => Array(
- 'PerPage' => 'Perpage_Topics',
- 'ShortListPerPage' => 'Perpage_Topics_Short',
- 'DefaultSorting1Field' => 'Topic_SortField',
- 'DefaultSorting2Field' => 'Topic_SortField2',
- 'DefaultSorting1Dir' => 'Topic_SortOrder',
- 'DefaultSorting2Dir' => 'Topic_SortOrder2',
- ),
- );
-
-
-?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/units/topics/topics_config.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.46
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/units/private_message_body/private_message_body_config.php
===================================================================
--- trunk/in-bulletin/units/private_message_body/private_message_body_config.php (revision 12824)
+++ trunk/in-bulletin/units/private_message_body/private_message_body_config.php (nonexistent)
@@ -1,47 +0,0 @@
-<?php
-
- $config = Array (
- 'Prefix' => 'private-message-body',
- 'ItemClass' => Array('class' => 'kDBItem', 'file' => '', 'build_event' => 'OnItemBuild'),
- 'ListClass' => Array('class' => 'kDBList', 'file' => '', 'build_event' => 'OnListBuild'),
- 'EventHandlerClass' => Array('class' => 'PrivateMessageBodyEventHandler', 'file' => 'private_message_body_eh.php', 'build_event' => 'OnBuild'),
- 'TagProcessorClass' => Array('class' => '', 'file' => '', 'build_event' => 'OnBuild'),
- 'AutoLoad' => true,
-
- 'QueryString' => Array (
- 1 => 'id',
- 2 => 'Page',
- 3 => 'event',
- ),
-
- 'IDField' => 'PMBodyId',
-
- 'TitleField' => 'Subject',
-
- 'TableName' => TABLE_PREFIX.'PrivateMessageBody',
-
- 'ForeignKey' => 'PMBodyId',
- 'ParentTableKey' => 'PMBodyId',
- 'ParentPrefix' => 'private-message',
- 'AutoDelete' => true,
- 'AutoClone' => true,
-
- 'ListSQLs' => Array ('' => ' SELECT %1$s.* %2$s FROM %1$s',),
- 'ItemSQLs' => Array ('' => ' SELECT %1$s.* %2$s FROM %1$s',),
-
- 'Fields' => Array (
- 'PMBodyId' => Array ('type' => 'int', 'not_null' => 1, 'default' => 0),
- 'Subject' => Array ('type' => 'string', 'max_len' => 255, 'not_null' => 1, 'default' => ''),
- 'Body' => Array ('type' => 'string', 'not_null' => 1, 'default' => ''),
- 'Options' => Array ('type' => 'int', 'not_null' => 1, 'default' => 0),
- 'ReferenceCount' => Array ('type' => 'int', 'not_null' => 1, 'default' => 2),
- ),
-
- 'VirtualFields' => Array (
- 'DisableBBCodes' => Array ('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array (1 => 'la_Yes', 0 => 'la_No'), 'use_phrases' => 1, 'default' => 0),
- 'DisableSmileys' => Array ('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array (1 => 'la_Yes', 0 => 'la_No'), 'use_phrases' => 1, 'default' => 0),
- 'ShowSignatures' => Array ('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array (0 => 'la_No', 1 => 'la_Yes'), 'use_phrases' => 1, 'default' => 1),
- ),
- );
-
-?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/units/private_message_body/private_message_body_config.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/units/private_message_body/private_message_body_eh.php
===================================================================
--- trunk/in-bulletin/units/private_message_body/private_message_body_eh.php (revision 12824)
+++ trunk/in-bulletin/units/private_message_body/private_message_body_eh.php (nonexistent)
@@ -1,43 +0,0 @@
-<?php
-
- class PrivateMessageBodyEventHandler extends kDBEventHandler {
-
- /**
- * Sets default values
- *
- * @param kEvent $event
- */
- function OnBeforeItemCreate(&$event)
- {
- $object =& $event->getObject();
- /* @var $object kDBItem */
-
- // set post options
- $post_helper =& $this->Application->recallObject('PostHelper');
- /* @var $post_helper PostHelper */
-
- $options_map = $post_helper->getOptionsMap();
- $post_options = $object->GetDBField('Options');
- foreach ($options_map as $option_name => $field_name) {
- $option_value = $object->GetDBField($field_name);
- $post_helper->SetPostOption($option_name, $option_value, $post_options);
- }
- $object->SetDBField('Options', $post_options);
- }
-
- /**
- * Deletes message body only when no message is using it
- *
- * @param kEvent $event
- */
- function OnBeforeItemDelete(&$event)
- {
- $object =& $event->getObject();
- /* @var $object kDBItem */
-
- if ($object->GetDBField('ReferenceCount') > 0) {
- $event->status = erFAIL;
- }
- }
- }
-?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/units/private_message_body/private_message_body_eh.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/units/helpers/post_helper.php
===================================================================
--- trunk/in-bulletin/units/helpers/post_helper.php (revision 12824)
+++ trunk/in-bulletin/units/helpers/post_helper.php (nonexistent)
@@ -1,348 +0,0 @@
-<?php
-
- class PostHelper extends kHelper {
-
- var $postOptionBits = Array (
- 'show_sig' => 128,
- 'disable_bbcode' => 64,
- 'disable_smileys' => 32,
- );
-
- /**
- * Checks if specific option is set for post
- *
- * @param string $option_name
- * @param Array $options
- * @return bool
- */
- function GetPostOption($option_name, $options)
- {
- if (!isset($this->postOptionBits[$option_name])) {
- return false;
- }
-
- $option_bit = $this->postOptionBits[$option_name];
- return ($options & $option_bit) == $option_bit;
- }
-
- /**
- * Sets given option bit (by name) to post options
- *
- * @param string $option_name
- * @param int $option_value
- * @param Array $options
- * @return bool
- */
- function SetPostOption($option_name, $option_value, &$options)
- {
- if (!isset($this->postOptionBits[$option_name])) {
- return false;
- }
-
- $option_bit = $this->postOptionBits[$option_name];
- if ($option_value) {
- $options |= $option_bit;
- }
- else {
- $options = $options &~ $option_bit;
- }
-
- return true;
- }
-
- /**
- * Returns post options map to virtual field names
- *
- * @return Array
- */
- function getOptionsMap()
- {
- $options_map = Array (
- 'show_sig' => 'ShowSignatures',
- 'disable_smileys' => 'DisableSmileys',
- 'disable_bbcode' => 'DisableBBCodes',
- );
-
- return $options_map;
- }
-
- /**
- * @return void
- * @param int $date
- * @desc Set any field to category & all it's parent categories
- */
- function PropagateCategoryField($category_id, $field_name, $field_value)
- {
- $id_field = $this->Application->getUnitOption('c', 'IDField');
- $table_name = $this->Application->getUnitOption('c', 'TableName');
-
- $sql = 'SELECT ParentPath
- FROM '.$table_name.'
- WHERE '.$id_field.' = '.$category_id;
- $parent_path = $this->Conn->GetOne($sql);
-
- $parent_categories = explode('|', substr($parent_path, 1, -1));
- if (!$parent_categories) {
- return false;
- }
-
- $fields_hash = Array (
- $field_name => $field_value,
- );
-
- $this->Conn->doUpdate($fields_hash, $table_name, $id_field.' IN ('.implode(',', $parent_categories).')');
- }
-
- /**
- * Sets today posts count & today date for topic
- *
- * @param kCatDBItem $object
- * @param int $increment_by
- */
- function updateTodayPostsCount(&$object, $post_date, $increment_by = 1)
- {
- $date_now = adodb_date('Y-m-d');
-
- if (adodb_date('Y-m-d', $post_date) != $date_now) {
- return ;
- }
-
- // last post update date was today or not
- $today_posts = ($date_now == $object->GetDBField('TodayDate')) ? $object->GetDBField('TodayPosts') : 0;
-
- $object->SetDBField('TodayDate', $date_now);
- $object->SetDBField('TodayPosts', $today_posts + $increment_by);
-
- return $object->Update();
- }
-
- /**
- * Replaces all special formatting in post before displaing it to user
- *
- * @param string $post_body
- * @param int $post_options bit array of post options
- * @param Array $sub_blocks block names for rendering smileys & bbcodes
- * @return string
- */
- function parsePostBody($post_body, $post_options, $sub_blocks)
- {
- // 1. escape all html sequences
- $post_body = htmlspecialchars($post_body, ENT_NOQUOTES); // don't touch quotes in bbcode attribute values
-
- // 2. replace censored words
- $post_body = $this->CensorText($post_body);
-
- // 3. replace bb codes
- if (!$this->GetPostOption('disable_bbcode', $post_options)) {
- $post_body = $this->replaceBBCodes($post_body, $sub_blocks['bbcode']);
- }
-
- // 4. replace smileys
- if (!$this->GetPostOption('disable_smileys', $post_options)) {
- $post_body = $this->replaceSmileys($post_body, $sub_blocks['smileys']);
- }
-
- // 5. add enters (because we don't use HTML in post body)
- return nl2br($post_body);
- }
-
- /**
- * Replaces bad words with good words (censorship process)
- *
- * @param string $text
- * @return string
- */
- function CensorText($text)
- {
- static $censor_words = null;
-
- if (!isset($censor_words)) {
- $sql = 'SELECT Replacement, BadWord
- FROM '.TABLE_PREFIX.'Censorship';
- $censor_words = $this->Conn->GetCol($sql, 'BadWord');
- }
-
- foreach ($censor_words as $replace_from => $replace_to) {
- $text = str_replace($replace_from, $replace_to, $text);
- }
-
- return $text;
- }
-
- function replaceSmileys($text, $smiley_element)
- {
- static $smileys = null;
-
- if (!isset($smileys)) {
- $sql = 'SELECT img.LocalPath, em.KeyStroke
- FROM '.TABLE_PREFIX.'Emoticon em
- LEFT JOIN '.TABLE_PREFIX.'Images img ON em.ImageId = img.ImageId
- WHERE em.Enabled = 1
- ORDER BY CHAR_LENGTH(em.KeyStroke) DESC';
- $smileys = $this->Conn->GetCol($sql, 'KeyStroke');
- }
-
- $block_params = Array ('name' => $smiley_element, 'smiley_url' => '#SMILEY_URL#');
- $smiley_mask = trim($this->Application->ParseBlock($block_params));
-
- $base_url = $this->Application->BaseURL();
- foreach ($smileys as $key_stoke => $image_url) {
- if (strpos($text, $key_stoke) === false) {
- continue;
- }
-
- $smiley_html = str_replace('#SMILEY_URL#', $base_url.$image_url, $smiley_mask);
- $text = str_replace($key_stoke, $smiley_html, $text);
- }
-
- return $text;
- }
-
- function replaceBBCodes($text, $bbcode_element)
- {
- // convert phpbb bbcodes to in-bulletin bbcodes
- $text = $this->preformatBBCodes($text);
-
- $tags_defs = explode(';', $this->Application->ConfigValue('BBTags')); // 'b:;i:;u:;ul:type|align;font:color|face|size;url:href;img:src|border';
- foreach($tags_defs as $tag) {
- list ($tag_name, $tag_params) = explode(':', $tag);
- $tag_params = $tag_params ? array_flip(explode('|', $tag_params)) : 0;
-
- $text = preg_replace('/\['.$tag_name.'(.*)\](.*)\[\/'.$tag_name.' *\]/Uise','$this->checkBBCodeAttribs("'.$tag_name.'",\'$1\',\'$2\',$tag_params);', $text);
- }
-
- // additional processing for [url], [*], [img] bbcode
- $text = preg_replace('/<url>(.*)<\/url>/Usi','<url href="$1">$1</url>',$text);
- $text = preg_replace('/<font>(.*)<\/font>/Usi','$1',$text); // skip empty fonts
- $text = str_replace( Array('<url','</url>','[*]'),
- Array('<a target="_blank"','</a>','<li>'),
- $text);
-
- // bbcode [code]xxx[/code] processing
- $text = preg_replace('/\[code\](.*)\[\/code\]/Uise', "\$this->replaceCodeBBCode('$1', '".$bbcode_element."')", $text);
- return $text;
- }
-
- /**
- * Convert phpbb url bbcode to valid in-bulletin's format
- *
- * @param string $text
- * @return string
- */
- function preformatBBCodes($text)
- {
- // 1. urls
- $text = preg_replace('/\[url=(.*)\](.*)\[\/url\]/Ui','[url href="$1"]$2[/url]',$text);
- $text = preg_replace('/\[url\](.*)\[\/url\]/Ui','[url href="$1"]$1[/url]',$text);
-
- // 2. images
- $text = preg_replace('/\[img\](.*)\[\/img\]/Ui','[img src="$1" border="0"][/img]',$text);
-
- // 3. color
- $text = preg_replace('/\[color=(.*)\](.*)\[\/color\]/Ui','[font color="$1"]$2[/font]',$text);
-
- // 4. size
- $text = preg_replace('/\[size=(.*)\](.*)\[\/size\]/Ui','[font size="$1"]$2[/font]',$text);
-
- // 5. lists
- $text = preg_replace('/\[list(.*)\](.*)\[\/list\]/Uis','[ul]$2[/ul]',$text);
-
- // 6. email to link
- $text = preg_replace('/\[email\](.*)\[\/email\]/Ui','[url href="mailto:$1"]$1[/url]',$text);
-
- //7. b tag
- $text = preg_replace('/\[(b|i|u):(.*)\](.*)\[\/(b|i|u):(.*)\]/Ui','[$1]$3[/$4]',$text);
-
- //8. code tag
- $text = preg_replace('/\[code:(.*)\](.*)\[\/code:(.*)\]/Uis','[code]$2[/code]',$text);
-
- return $text;
- }
-
- /**
- * Removes not allowed params from tag and returns result
- *
- * @param string $BBCode bbcode to check
- * @param string $TagParams params string entered by user
- * @param string $TextInside text between opening and closing bbcode tag
- * @param string $ParamsAllowed list of allowed parameter names ("|" separated)
- * @return string
- */
- function checkBBCodeAttribs($BBCode, $TagParams, $TextInside, $ParamsAllowed)
- {
- // unescape escaped quotes in tag
- $TagParams = str_replace('\"', '"', $TagParams);
- $TextInside = str_replace('\"', '"', $TextInside);
-
- $params_extracted = preg_match_all('/ +([^=]*)=["\']?([^ "\']*)["\']?/is', $TagParams, $extracted_params, PREG_SET_ORDER);
-
- if ($ParamsAllowed && $params_extracted) {
- $ret = Array();
- foreach ($extracted_params as $param) {
- $param_name = strtolower(trim( $param[1] ));
- $param_value = trim($param[2]);
-
- // 1. prevent hacking
- if ($BBCode == 'url' && $param_name == 'href') {
- if (strpos(strtolower($param_value), 'script:') !== false) {
- // script tag found in "href" parameter of "url" bbcode (equals to hacking) -> remove bbcode
- return $TextInside;
- }
- }
-
- // 2. leave only allowed params & remove all not allowed
- if (isset($ParamsAllowed[$param_name])) {
- $ret[] = $param_name.'="'.$param_value.'"';
- }
- }
-
- $ret = count($ret) ? ' '.implode(' ', $ret) : '';
- return '<'.$BBCode.$ret.'>'.$TextInside.'</'.$BBCode.'>';
- }
-
- return '<'.$BBCode.'>'.$TextInside.'</'.$BBCode.'>';
- }
-
- function highlightCode($code, $strip_tabs = 0)
- {
- if ($strip_tabs) {
- $code = preg_replace('/(\t){'.$strip_tabs.'}(.*)/', '\\2', $code);
- }
-
- $code = str_replace( Array('\\', '/') , Array('_no_match_string_', '_n_m_s_'), $code);
- $code = highlight_string('<?php'.$code.'?>', true);
- $code = str_replace( Array('_no_match_string_', '_n_m_s_'), Array('\\', '/'), $code);
- $code = preg_replace('/&lt;\?(.*)php(.*)\?&gt;/Us', '\\2', $code);
-
- $code = preg_replace('/<code><font color="(.*)">([\r\n]+)/si', '<code><font color="\\1">', $code);
- $code = preg_replace('/([\r\n]+)<\/font>([\r\n]+)<\/code>/si', '</font></code>', $code);
-
- return $code;
- }
-
- /**
- * Replaces [code]php code[/code] bbcode in post
- *
- * @param string $input_string code line to highlight
- * @param string $bbcode_element block name used for bbcode descoration
- * @return string
- */
- function replaceCodeBBCode($input_string, $bbcode_element)
- {
- static $bbcode_mask = null;
-
- if (!isset($bbcode_mask)) {
- $block_params = Array ('name' => $bbcode_element, 'bb_code' => '#BB_CODE#');
- $bbcode_mask = trim($this->Application->ParseBlock($block_params));
- }
-
- $input_string = trim( str_replace('\"','"', $input_string) );
- $input_string = $this->highlightCode($input_string);
- $input_string = preg_replace("/\r<br \/>/s", "\r", $input_string); // undo nl2br added in highlighting
- $input_string = str_replace('#BB_CODE#', $input_string, $bbcode_mask);
-
- return $input_string;
- }
- }
-
-?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/units/helpers/post_helper.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/units/helpers/helpers_config.php
===================================================================
--- trunk/in-bulletin/units/helpers/helpers_config.php (revision 12824)
+++ trunk/in-bulletin/units/helpers/helpers_config.php (nonexistent)
@@ -1,12 +0,0 @@
-<?php
-
- $config = Array (
- 'Prefix' => 'in-custom-helpers',
- 'EventHandlerClass' => Array('class' => 'kEventHandler', 'file' => '', 'build_event' => 'OnBuild'),
-
- 'RegisterClasses' => Array (
- Array('pseudo' => 'PostHelper', 'class' => 'PostHelper','file' => 'post_helper.php', 'build_event' => '', 'require_classes' => Array('kHelper')),
- ),
- );
-
-?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/units/helpers/helpers_config.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/units/posts/posts_config.php
===================================================================
--- trunk/in-bulletin/units/posts/posts_config.php (revision 12824)
+++ trunk/in-bulletin/units/posts/posts_config.php (nonexistent)
@@ -1,92 +0,0 @@
-<?php
-
- $config = Array (
- 'Prefix' => 'bb-post',
- 'ItemClass' => Array('class' => 'kDBItem', 'file' => '', 'build_event' => 'OnItemBuild'),
- 'ListClass' => Array('class' => 'kDBList', 'file' => '', 'build_event' => 'OnListBuild'),
- 'EventHandlerClass' => Array('class' => 'PostEventHandler', 'file' => 'post_eh.php', 'build_event' => 'OnBuild'),
- 'TagProcessorClass' => Array('class' => 'PostTagProcessor', 'file' => 'post_tp.php', 'build_event' => 'OnBuild'),
- 'AutoLoad' => true,
-
- 'QueryString' => Array (
- 1 => 'id',
- 2 => 'Page',
- 3 => 'event',
- ),
-
- 'IDField' => 'PostingId',
- 'StatusField' => Array('Pending'),
-
- 'TitleField' => 'Subject',
-
- 'TableName' => TABLE_PREFIX.'Posting',
-
- 'ForeignKey' => 'TopicId',
- 'ParentTableKey' => 'TopicId',
- 'ParentPrefix' => 'bb',
- 'AutoDelete' => true,
- 'AutoClone' => true,
-
- 'ListSQLs' => Array (
- '' => ' SELECT %1$s.* %2$s
- FROM %1$s
- LEFT JOIN '.TABLE_PREFIX.'PortalUser u ON %1$s.CreatedById = u.PortalUserId
- LEFT JOIN '.TABLE_PREFIX.'Images img ON (img.ResourceId = u.ResourceId) AND (img.DefaultImg = 1 OR img.Name = "avatar")',
- ),
-
- 'ItemSQLs' => Array (
- '' => ' SELECT %1$s.* %2$s
- FROM %1$s
- LEFT JOIN '.TABLE_PREFIX.'PortalUser u ON %1$s.CreatedById = u.PortalUserId
- LEFT JOIN '.TABLE_PREFIX.'Images img ON (img.ResourceId = u.ResourceId) AND (img.DefaultImg = 1 OR img.Name = "avatar")',
- ),
-
- 'CalculatedFields' => Array (
- '' => Array (
- 'UserName' => 'IF (ISNULL(u.Login), IF (%1$s.CreatedById = -1, "root", IF (%1$s.CreatedById = -2, "Guest", "n/a")), u.Login)',
-
- 'SameImages' => 'img.SameImages',
- 'LocalThumb' => 'img.LocalThumb',
- 'ThumbPath' => 'img.ThumbPath',
- 'ThumbUrl' => 'img.ThumbUrl',
- 'LocalImage' => 'img.LocalImage',
- 'LocalPath' => 'img.LocalPath',
- 'FullUrl' => 'img.Url',
- ),
- ),
-
- 'Fields' => Array (
- 'PostingId' => Array ('type' => 'int', 'not_null' => 1, 'default' => 0),
- 'IPAddress' => Array ('type' => 'string', 'max_len' => 255, 'not_null' => 1, 'default' => ''),
- 'PosterAlias' => Array ('type' => 'string', 'max_len' => 255, 'not_null' => 1, 'default' => ''),
- 'Pending' => Array ('type' => 'int', 'not_null' => 1, 'default' => 0),
- 'Subject' => Array ('type' => 'string', 'max_len' => 255, 'default' => NULL),
- 'PostingText' => Array ('type' => 'string', 'default' => NULL),
- 'GraphicsUrl' => Array ('type' => 'string', 'max_len' => 255, 'default' => NULL),
- 'CreatedOn' => Array ('type' => 'int', 'formatter' => 'kDateFormatter', 'not_null' => 1, 'default' => 0),
- 'Modified' => Array ('type' => 'int', 'formatter' => 'kDateFormatter', 'not_null' => 1, 'default' => 0),
- 'ModifiedById' => Array ('type' => 'int', 'formatter' => 'kLEFTFormatter', 'error_msgs' => Array ('invalid_option' => '!la_error_UserNotFound!'), 'options' => Array(-1 => 'root', -2 => 'Guest'), 'left_sql' => 'SELECT %s FROM '.TABLE_PREFIX.'PortalUser WHERE `%s` = \'%s\'', 'left_key_field' => 'PortalUserId', 'left_title_field' => 'Login', 'default' => NULL),
- 'CreatedById' => Array ('type' => 'int', 'formatter' => 'kLEFTFormatter', 'error_msgs' => Array ('invalid_option' => '!la_error_UserNotFound!'), 'options' => Array(-1 => 'root', -2 => 'Guest'), 'left_sql' => 'SELECT %s FROM '.TABLE_PREFIX.'PortalUser WHERE `%s` = \'%s\'', 'left_key_field' => 'PortalUserId', 'left_title_field' => 'Login', 'default' => NULL),
- 'TopicId' => Array ('type' => 'int', 'not_null' => 1, 'default' => 0),
- 'ResourceId' => Array ('type' => 'int', 'not_null' => 1, 'default' => 0),
- 'ReplyTo' => Array ('type' => 'int', 'not_null' => 1, 'default' => 0),
- 'Options' => Array ('type' => 'int', 'not_null' => 1, 'default' => 0),
- ),
-
- 'VirtualFields' => Array (
- 'DisableBBCodes' => Array ('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array (1 => 'la_Yes', 0 => 'la_No'), 'use_phrases' => 1, 'default' => 0),
- 'DisableSmileys' => Array ('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array (1 => 'la_Yes', 0 => 'la_No'), 'use_phrases' => 1, 'default' => 0),
- 'ShowSignatures' => Array ('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array (0 => 'la_No', 1 => 'la_Yes'), 'use_phrases' => 1, 'default' => 1),
-
- // for avatar image
- 'SameImages' => Array('type' => 'string', 'default' => ''),
- 'LocalThumb' => Array('type' => 'string', 'default' => ''),
- 'ThumbPath' => Array('type' => 'string', 'default' => ''),
- 'ThumbUrl' => Array('type' => 'string', 'default' => ''),
- 'LocalImage' => Array('type' => 'string', 'default' => ''),
- 'LocalPath' => Array('type' => 'string', 'default' => ''),
- 'FullUrl' => Array('type' => 'string', 'default' => ''),
- ),
- );
-
-?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/units/posts/posts_config.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.6
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/units/posts/post_eh.php
===================================================================
--- trunk/in-bulletin/units/posts/post_eh.php (revision 12824)
+++ trunk/in-bulletin/units/posts/post_eh.php (nonexistent)
@@ -1,351 +0,0 @@
-<?php
-
- class PostEventHandler extends kDBEventHandler {
-
- /**
- * Sets default values
- *
- * @param kEvent $event
- */
- function OnBeforeItemCreate(&$event)
- {
- $object =& $event->getObject();
- /* @var $object kDBItem */
-
- $user_id = $this->Application->RecallVar('user_id');
-
- $now = adodb_mktime();
-
- $object->SetDBField('CreatedById', $user_id);
- $object->SetDBField('CreatedOn_date', $now);
- $object->SetDBField('CreatedOn_time', $now);
-
- $object->SetDBField('ModifiedById', $user_id);
- $object->SetDBField('Modified_date', $now);
- $object->SetDBField('Modified_time', $now);
-
- $object->SetDBField('IPAddress', $_SERVER['REMOTE_ADDR']);
-
- $sql = 'SELECT Login
- FROM '.TABLE_PREFIX.'PortalUser
- WHERE PortalUserId = '.$user_id;
- $object->SetDBField('PosterAlias', $this->Conn->GetOne($sql));
-
- // set post options
- $post_helper =& $this->Application->recallObject('PostHelper');
- /* @var $post_helper PostHelper */
-
- $options_map = $post_helper->getOptionsMap();
- $post_options = $object->GetDBField('Options');
- foreach ($options_map as $option_name => $field_name) {
- $option_value = $object->GetDBField($field_name);
- $post_helper->SetPostOption($option_name, $option_value, $post_options);
- }
- $object->SetDBField('Options', $post_options);
-
- $table_info = $object->getLinkedInfo();
- $object->SetDBField($table_info['ForeignKey'], $table_info['ParentId']);
- }
-
- /**
- * Checks if user has permission on post
- *
- * @param kEvent $event
- * @param string $permissions
- */
- function checkPostPermission(&$event, $permissions)
- {
- $object =& $event->getObject();
- /* @var $object kDBItem */
-
- $sql = 'SELECT ci.CategoryId, p.CreatedById
- FROM '.$object->TableName.' p
- LEFT JOIN '.TABLE_PREFIX.'Topic t ON t.TopicId = p.TopicId
- LEFT JOIN '.TABLE_PREFIX.'CategoryItems ci ON ci.ItemResourceId = t.ResourceId AND ci.PrimaryCat = 1
- WHERE p.'.$object->IDField.' = '.$object->GetID();
- $post_info = $this->Conn->GetRow($sql);
-
- $perm_helper =& $this->Application->recallObject('PermissionsHelper');
- /* @var $perm_helper kPermissionsHelper */
-
- $is_owner = $post_info['CreatedById'] == $this->Application->RecallVar('user_id');
- $params['permissions'] = 'TOPIC.REPLY.MODIFY|TOPIC.REPLY.OWNER.MODIFY';
- $params['cat_id'] = $post_info['CategoryId'];
- return $perm_helper->TagPermissionCheck($params, $is_owner);
- }
-
- /**
- * Sets post options before post update
- * Ensures, that only user with permission will update topic
- *
- * @param kEvent $event
- */
- function OnBeforeItemUpdate(&$event)
- {
- $object =& $event->getObject();
- /* @var $object kDBItem */
-
- $perm_status = $this->checkPostPermission($event, 'TOPIC.REPLY.MODIFY|TOPIC.REPLY.OWNER.MODIFY');
- if (!$perm_status) {
- $event->status = erFAIL;
- return ;
- }
-
- $post_helper =& $this->Application->recallObject('PostHelper');
- /* @var $post_helper PostHelper */
-
- $options_map = $post_helper->getOptionsMap();
- $post_options = $object->GetDBField('Options');
- foreach ($options_map as $option_name => $field_name) {
- $option_value = $object->GetDBField($field_name);
- $post_helper->SetPostOption($option_name, $option_value, $post_options);
- }
- $object->SetDBField('Options', $post_options);
- }
-
- /**
- * Checks, that user can delete post
- *
- * @param kEvent $event
- */
- function OnBeforeItemDelete(&$event)
- {
- $object =& $event->getObject();
- /* @var $object kDBItem */
-
- $perm_status = $this->checkPostPermission($event, 'TOPIC.REPLY.OWNER.DELETE|TOPIC.REPLY.DELETE');
- if (!$perm_status) {
- $event->status = erFAIL;
- }
- }
-
- /**
- * Sets post options to virtual fields
- *
- * @param kEvent $event
- */
- function OnAfterItemLoad(&$event)
- {
- $object =& $event->getObject();
- /* @var $object kDBItem */
-
- $post_helper =& $this->Application->recallObject('PostHelper');
- /* @var $post_helper PostHelper */
-
- $options_map = $post_helper->getOptionsMap();
- $post_options = $object->GetDBField('Options');
- foreach ($options_map as $option_name => $field_name) {
- $option_value = $post_helper->GetPostOption($option_name, $post_options);
- $object->SetDBField($field_name, (int)$option_value);
- }
- }
-
- /**
- * Updates cached post counter in topic
- *
- * @param kEvent $event
- */
- function OnAfterItemCreate(&$event)
- {
- $object =& $event->getObject();
- /* @var $object kDBItem */
-
- $parent_prefix = $this->Application->getUnitOption($event->Prefix, 'ParentPrefix');
- $main_object =& $this->Application->recallObject($parent_prefix.'.-item', null, Array ('skip_autoload' => 1));
- /* @var $main_object kCatDBItem */
-
- $topic_id = $object->GetDBField('TopicId');
- $main_object->Load($topic_id);
-
- // update user posts counter
- $user_posts = $this->Application->RecallPersistentVar('bb_posts');
- $this->Application->StorePersistentVar('bb_posts', $user_posts + 1);
-
- $post_helper =& $this->Application->recallObject('PostHelper');
- /* @var $post_helper PostHelper */
-
- $category_id = $this->Application->GetVar('m_cat_id');
- $post_helper->PropagateCategoryField($category_id, 'Modified', $object->GetDBField('CreatedOn'));
-
- if (!$this->Application->IsAdmin()) {
- // don't send any email events when in admin
-
- $user_notified = false; // don't send POST.ADD event twice to same user (in case if owner adds new post)
- if ($main_object->GetDBField('NotifyOwnerOnChanges')) {
- $user_notified = $main_object->GetDBField('OwnerId');
- $this->Application->EmailEventUser('POST.ADD', $user_notified);
- }
-
- $post_owner_id = $object->GetDBField('CreatedById');
- if (($post_owner_id > 0) && ($user_notified != $post_owner_id)) {
- $this->Application->EmailEventUser('POST.ADD', $post_owner_id);
- }
-
- $this->Application->EmailEventAdmin('POST.ADD');
- }
-
- // need to update category post count here
-
- $post_helper->updateTodayPostsCount($main_object, $object->GetDBField('CreatedOn'), +1);
- $this->updateTopicInfo($event);
-
- // set Topic modification date to post creation date
- $sql = 'UPDATE '.$main_object->TableName.'
- SET Posts = Posts + 1
- WHERE '.$main_object->IDField.' = '.$topic_id;
- $this->Conn->Query($sql);
-
- // autolock topic after N number of posts (if option enabled)
- $auto_lock = $this->Application->ConfigValue('AutoTopicLockPosts');
- if ((int)$auto_lock > 0) {
- $sql = 'SELECT Posts
- FROM '.$main_object->TableName.'
- WHERE '.$main_object->IDField.' = '.$topic_id;
- $topic_posts = $this->Conn->GetOne($sql);
-
- if ($topic_posts >= $auto_lock) {
- // user has unlocked topic after $auto_lock and posts again -> ensure that topic will be locked again
- $this->Application->HandleEvent($parent_prefix.':OnTopicLockToggle');
- }
- }
- }
-
- /**
- * Update last post info in topic
- *
- * @param kEvent $event
- */
- function updateTopicInfo(&$event)
- {
- $object =& $event->getObject();
- /* @var $object kDBItem */
-
- $parent_prefix = $this->Application->getUnitOption($event->Prefix, 'ParentPrefix');
- $parent_id_field = $this->Application->getUnitOption($parent_prefix, 'IDField');
- $parent_table_name = $this->Application->getUnitOption($parent_prefix, 'TableName');
-
- // when post is added topic last modification date is set to post creation time
- $fields_hash = Array (
- 'Modified' => $object->GetDBField('Modified'),
- 'LastPostId' => $object->GetID(),
- 'LastPostDate' => $object->GetDBField('CreatedOn'),
- );
-
- $this->Conn->doUpdate($fields_hash, $parent_table_name, $parent_id_field.' = '.$object->GetDBField('TopicId'));
- }
-
- /**
- * Goes to next_template after post creation
- *
- * @param kEvent $event
- */
- function OnCreate(&$event)
- {
- parent::OnCreate($event);
-
- if ($event->status == erSUCCESS && !$this->Application->IsAdmin()) {
- $event->SetRedirectParam('opener', 's');
- $event->redirect = $this->Application->GetVar('next_template');
- }
- }
-
- /**
- * Goes to next_template after post editing
- *
- * @param kEvent $event
- */
- function OnUpdate(&$event)
- {
- parent::OnUpdate($event);
-
- if ($event->status == erSUCCESS && !$this->Application->IsAdmin()) {
- $event->SetRedirectParam('opener', 's');
- $event->redirect = $this->Application->GetVar('next_template');
- $event->SetRedirectParam('pass', 'm,bb');
- }
- }
-
- /**
- * Moves reference to last post in topic, when it is deleted
- *
- * @param kEvent $event
- */
- function OnAfterItemDelete(&$event)
- {
- $object =& $event->getObject();
- /* @var $object kDBItem */
-
- $topic_id = $object->GetDBField('TopicId');
- if (!$topic_id) {
- // deleting non-existing post
- return ;
- }
-
- $main_object =& $this->Application->recallObject('bb.-item', null, Array('skip_autoload' => true));
- /* @var $main_object kCatDBItem */
-
- // update posts count in topic
- $sql = 'UPDATE '.$main_object->TableName.'
- SET Posts = Posts - 1
- WHERE '.$main_object->IDField.' = '.$topic_id;
- $this->Conn->Query($sql);
-
- // update post owner posts counter
- $sql = 'UPDATE '.TABLE_PREFIX.'PersistantSessionData
- SET VariableValue = IF (VariableValue > 0, VariableValue - 1, 0)
- WHERE (PortalUserId = '.$object->GetDBField('CreatedById').') AND (VariableName = "bb_posts")';
- $this->Conn->Query($sql);
-
- $main_object->Load($topic_id);
-
- $post_helper =& $this->Application->recallObject('PostHelper');
- /* @var $post_helper PostHelper */
-
- $post_helper->updateTodayPostsCount($main_object, $object->GetDBField('CreatedOn'), -1);
-
- if ($main_object->GetDBField('LastPostId') == $object->GetID()) {
- $sql = 'SELECT PostingId, CreatedOn
- FROM '.$object->TableName.'
- WHERE TopicId = '.$topic_id.'
- ORDER BY PostingId DESC';
- $last_post = $this->Conn->GetRow($sql);
-
- $fields_hash = Array (
- 'LastPostId' => $last_post['PostingId'],
- 'LastPostDate' => $last_post['CreatedOn'],
- );
- $this->Conn->doUpdate($fields_hash, $main_object->TableName, $main_object->IDField.' = '.$topic_id);
- }
- }
-
- /**
- * Sets default values to posting options based on persistent session
- *
- * @param kEvent $event
- */
- function OnAfterConfigRead(&$event)
- {
- $virtual_fields = $this->Application->getUnitOption($event->Prefix, 'VirtualFields');
- $virtual_fields['DisableBBCodes']['default'] = (int)!$this->Application->RecallPersistentVar('bbcode');
- $virtual_fields['DisableSmileys']['default'] = (int)!$this->Application->RecallPersistentVar('smileys');
- $virtual_fields['ShowSignatures']['default'] = (int)$this->Application->RecallPersistentVar('show_sig');
- $this->Application->setUnitOption($event->Prefix, 'VirtualFields', $virtual_fields);
- }
-
- /**
- * Deletes items & preserves clean env
- *
- * @param kEvent $event
- */
- function OnDelete(&$event)
- {
- parent::OnDelete($event);
-
- if ($event->status == erSUCCESS && !$this->Application->IsAdmin()) {
- $parent_prefix = $this->Application->getUnitOption($event->Prefix, 'ParentPrefix');
- $event->SetRedirectParam('pass', 'm,'.$parent_prefix);
- }
- }
- }
-
-?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/units/posts/post_eh.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/units/posts/post_tp.php
===================================================================
--- trunk/in-bulletin/units/posts/post_tp.php (revision 12824)
+++ trunk/in-bulletin/units/posts/post_tp.php (nonexistent)
@@ -1,261 +0,0 @@
-<?php
-
- class PostTagProcessor extends kDBTagProcessor {
-
- function ListPosts($params)
- {
- $parent_prefix = $this->Application->getUnitOption($this->Prefix, 'ParentPrefix');
- $main_object =& $this->Application->recallObject($parent_prefix);
- /* @var $main_object kCatDBItem */
-
- if ($main_object->isLoaded()) {
- $main_object->RegisterHit();
- }
-
- return $this->PrintList2($params);
- }
-
- /**
- * Returns link to post author public profile
- *
- * @param Array $params
- * @return string
- */
- function ProfileLink($params)
- {
- $object =& $this->getObject($params);
- $params['user_id'] = $object->GetDBField('CreatedById');
-
- return $this->Application->ProcessParsedTag('m', 'Link', $params);
- }
-
- function PosterField($params)
- {
- static $posters = null;
-
- $object =& $this->getObject($params);
-
- if (!isset($posters)) {
- $poster_ids = array_unique($object->GetCol('CreatedById'));
-
- $user_idfield = $this->Application->getUnitOption('u', 'IDField');
- $user_table = $this->Application->getUnitOption('u', 'TableName');
-
- $sql = 'SELECT u.*, g.Name AS PrimaryGroup
- FROM '.$user_table.' u
- LEFT JOIN '.TABLE_PREFIX.'UserGroup ug ON ug.PortalUserId = u.PortalUserId AND ug.PrimaryGroup = 1
- LEFT JOIN '.TABLE_PREFIX.'PortalGroup g ON g.GroupId = ug.GroupId
- WHERE u.'.$user_idfield.' IN ('.implode(',', $poster_ids).')';
- $posters = $this->Conn->Query($sql, $user_idfield);
- }
-
- $poster =& $this->Application->recallObject('u.poster', null, Array('skip_autoload' => true));
- /* @var $poster UsersItem */
-
- $poster_id = $object->GetDBField('CreatedById');
- if ($poster > 0) {
- // not Guest & root
- if ($poster->GetID() != $poster_id) {
- // previous poster differs from requested
- $poster->SetDBFieldsFromHash($posters[$poster_id]);
- $poster->setID($poster_id);
- }
- return $this->Application->ProcessParsedTag('u.poster', 'Field', $params);
- }
-
- return '';
- }
-
- /**
- * Checks if post is made by real user (not Guest or root)
- *
- * @param Array $params
- * @return bool
- */
- function PosterFound($params)
- {
- $object =& $this->getObject($params);
-
- return $object->GetDBField('CreatedById') > 0;
- }
-
- /**
- * Posts count created by current poster
- *
- * @param Array $params
- * @return int
- */
- function PosterPostsCount($params)
- {
- static $posts_count = null;
-
- $object =& $this->getObject($params);
-
- if (!isset($posts_count)) {
- $poster_ids = array_unique($object->GetCol('CreatedById'));
-
- $sql = 'SELECT VariableValue, PortalUserId
- FROM '.TABLE_PREFIX.'PersistantSessionData
- WHERE PortalUserId IN ('.implode(',', $poster_ids).') AND VariableName = "bb_posts"';
- $posts_count = $this->Conn->GetCol($sql, 'PortalUserId');
- }
-
- return $posts_count[$object->GetDBField('CreatedById')];
- }
-
- function PostSubject($params)
- {
- $object =& $this->getObject($params);
-
- $post_helper =& $this->Application->recallObject('PostHelper');
- /* @var $post_helper PostHelper */
-
- return $post_helper->CensorText( $object->GetDBField('Subject') );
- }
-
- function PostBody($params)
- {
- $object =& $this->getObject($params);
-
- $post_helper =& $this->Application->recallObject('PostHelper');
- /* @var $post_helper PostHelper */
-
- $body = $object->GetDBField('PostingText');
-
- // 1. replace quoted post
-
-
- // 2. parse post body
- $sub_blocks = Array (
- 'smileys' => $params['smiley_render_as'],
- 'bbcode' => $params['bbcode_render_as'],
- );
- $body = $post_helper->parsePostBody($body, $object->GetDBField('Options'), $sub_blocks);
-
- return $body;
- }
-
- /**
- * Checks if poster signature needs to be shown together with post
- *
- * @param Array $params
- * @return bool
- */
- function ShowPostSignature($params)
- {
- $object =& $this->getObject($params);
- $post_options = $object->GetDBField('Options');
-
- $post_helper =& $this->Application->recallObject('PostHelper');
- /* @var $post_helper PostHelper */
-
- // show poster signature in this post
- if ($post_helper->GetPostOption('show_sig', $post_options)) {
- // logged-in user wishes to view signatures in posts
- $show_other_signatures = $this->Application->RecallPersistentVar('bb_signatures');
- if ($show_other_signatures) {
- // don't show signature when it is empty
- $signature = $this->getUserSignature($object->GetDBField('CreatedById'));
- return strlen(trim($signature)) ? true : false;
- }
- }
-
- return false;
- }
-
- /**
- * Returns parsed poster (from current post) signature
- *
- * @param Array $params
- * @return string
- */
- function PostSignature($params)
- {
- $object =& $this->getObject($params);
-
- $post_helper =& $this->Application->recallObject('PostHelper');
- /* @var $post_helper PostHelper */
-
- $sub_blocks = Array (
- 'smileys' => $params['smiley_render_as'],
- 'bbcode' => $params['bbcode_render_as'],
- );
-
- $signature = $this->getUserSignature($object->GetDBField('CreatedById'));
- return $post_helper->parsePostBody($signature, $object->GetDBField('Options'), $sub_blocks);
- }
-
- /**
- * Returns user signature (cached for all viewed posts on page)
- *
- * @param int $user_id
- * @return string
- */
- function getUserSignature($user_id)
- {
- static $user_signatures = null;
-
- $object =& $this->getObject();
-
- if (!isset($user_signatures)) {
- $poster_ids = array_unique($object->GetCol('CreatedById'));
-
- $sql = 'SELECT VariableValue, PortalUserId
- FROM '.TABLE_PREFIX.'PersistantSessionData
- WHERE PortalUserId IN ('.implode(',', $poster_ids).') AND VariableName = "my_signature"';
- $user_signatures = $this->Conn->GetCol($sql, 'PortalUserId');
- }
-
- $poster_id = $object->GetDBField('CreatedById');
- return isset($user_signatures[$poster_id]) ? $user_signatures[$poster_id] : '';
- }
-
- /**
- * Creates link to individual post in topic
- *
- * @param Array $params
- * @return string
- */
- function PostLink($params)
- {
- $params['pass'] = 'm,bb,bb-post';
-
- return $this->Application->ProcessParsedTag('m', 'Link', $params);
- }
-
- /**
- * Checks if user have one of required permissions
- *
- * @param Array $params
- * @return bool
- */
- function HasPermission($params)
- {
- static $category_path = null;
-
- if (!isset($category_path)) {
- // get topic category
- $parent_prefix = $this->Application->getUnitOption($this->Prefix, 'ParentPrefix');
- $parent_item =& $this->Application->recallObject($parent_prefix, null, Array ('raise_warnings' => 0));
- $category_path = $parent_item->isLoaded() ? $parent_item->GetDBField('ParentPath') : $this->Application->GetVar('m_cat_id');
- }
-
- $perm_helper =& $this->Application->recallObject('PermissionsHelper');
- /* @var $perm_helper kPermissionsHelper */
-
- $params['raise_warnings'] = 0;
- $object =& $this->getObject($params);
- /* @var $object kDBItem */
-
- // 1. category restriction
- $params['cat_id'] = $category_path;
-
- // 2. owner restriction
- $is_owner = $object->GetDBField('CreatedById') == $this->Application->RecallVar('user_id');
-
- return $perm_helper->TagPermissionCheck($params, $is_owner);
- }
-
- }
-
-?>
\ No newline at end of file
Property changes on: trunk/in-bulletin/units/posts/post_tp.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/parser.php
===================================================================
--- trunk/in-bulletin/parser.php (revision 12824)
+++ trunk/in-bulletin/parser.php (nonexistent)
@@ -1,1808 +0,0 @@
-<?php
-
-$mod_prefix['bbcat'] = 'in-bulletin/';
-
-function bbcat_list_cats($attribs)
-{
- global $var_list, $objConfig, $objSession, $var_list_update, $content_set, $objSystemCache;
- $objCatList = new clsBBCatList();
-
- $CachedList = GetTagCache("kernel","m_list_cats",$attribs,m_BuildEnv());
- if(strlen($CachedList))
- {
- return $CachedList;
- }
- $cols = $attribs["_columns"];
- if($cols<1)
- $cols =1;
- $CategoryId = getArrayValue($attribs,'_catid');
- if(!is_numeric($CategoryId))
- $CategoryId = $objCatList->CurrentCategoryID();
-
- $cat_count = (int)getArrayValue($attribs,'_maxlistcount');
- /* validation */
- if(strlen($attribs["_itemtemplate"])==0)
- {
- if($attribs["dataexists"])
- $content_set = 0;
- return "";
- }
-
- $GroupList = $objSession->Get("GroupList");
- if(strlen($GroupList))
- {
- $Groups = explode(",",$GroupList);
- }
- $acl_where = "";
- if(@count($Groups)>0 && is_array($Groups))
- {
- $acl_where = array();
- for($i=0;$i<count($Groups);$i++)
- {
- $g = $Groups[$i];
- $acl_where[] = "FIND_IN_SET($g,acl) ";
- }
- if(count($acl_where))
- {
- $acl_where = "(".implode(" OR ",$acl_where).")";
- }
- else {
- $acl_where = "FIND_IN_SET(0,acl)";
- }
- }
- else {
- $acl_where = "FIND_IN_SET(0,acl)";
- }
- $objCatList->Clear();
- $OrderBy = $objCatList->QueryOrderByClause(TRUE,TRUE,TRUE);
- $objCatList->LoadCategories("ParentId=$CategoryId AND Status=1",$OrderBy);
- if ($objCatList->NumItems() == 0)
- {
- if($attribs["_dataexists"])
- $content_set = 0;
- return "";
- }
-
- $html_attr = ExtraAttributes($attribs);
-
- $o="";
- $notable = $attribs["_notable"];
-
- $count=0;
- $row=0;
- $var_list_update["t"] = $var_list["t"];
-
- if(!$notable)
- {
- $per_row = ceil($objCatList->NumItems()/$cols);
- $o = "<TABLE $html_attr><TR CLASS=\"m_list_cats\">";
- $o .= "<TD valign=\"top\">";
- $CatCount = $objCatList->NumItems();
- foreach($objCatList->Items as $cat)
- {
- $parsed=0;
- if($count==$per_row)
- {
- $o .= "</TD><TD valign=\"top\">";
- $count=0;
- }
- if($row==0 && strlen($attribs["_firstitemtemplate"]))
- {
- $o.= $cat->ParseTemplate($attribs["_firstitemtemplate"]);
- $parsed=1;
- }
- if($row==$CatCount-1 && !$parsed && strlen($attribs["_lastitemtemplate"])>0)
- {
- $o .= $cat->ParseTemplate($attribs["_lastitemtemplate"]);
- $parsed=1;
- }
- if(!$parsed)
- $o.= $cat->ParseTemplate($attribs["_itemtemplate"]);
- $count++;
- $row++;
- }
- if($count != $per_row)
- $o .= "</TD>";
- $o .= "\n</tr></table>\n";
- }
- else
- {
- $CatCount = $objCatList->NumItems();
- foreach($objCatList->Items as $cat)
- {
- if($cat->Get("ParentId")==$CategoryId)
- {
-
- if($row==0 && strlen($attribs["_firstitemtemplate"]))
- {
- //echo 'Saving <b>ID</b> in <b>m_sub_cats</b>[ first ] '.$cat->UniqueId().'<br>';
- //$GLOBALS['cat_ID'] = $cat->UniqueId();
- $o.= $cat->ParseTemplate($attribs["_firstitemtemplate"]);
- $parsed=1;
- }
- if($row==$CatCount-1 && !$parsed && strlen($attribs["_lastitemtemplate"])>0)
- {
- //echo 'Saving <b>ID</b> in <b>m_sub_cats</b>[ last ] '.$cat->UniqueId().'<br>';
- //$GLOBALS['cat_ID'] = $cat->UniqueId();
- $o .= $cat->ParseTemplate($attribs["_lastitemtemplate"]);
- $parsed=1;
- }
- if(!$parsed)
- {
- //echo 'Saving <b>ID</b> in <b>m_sub_cats</b>[ each ] '.$cat->UniqueId().'<br>';
- //$GLOBALS['cat_ID'] = $cat->UniqueId();
- $o .= $cat->ParseTemplate($attribs["_itemtemplate"]);
- }
- $row++;
- $i++;
- $count++;
- if($count>=$cat_count && $cat_count>0)
- break;
- }
- }
- }
- unset($var_list_update["t"]);
- SaveTagCache("kernel","m_list_cats",$attribs,m_BuildEnv(),$o);
- return $o;
-
-}
-
-function bb_ParseEnv($str = "")
-{
- global $bb_var_list, $objTopicList, $objConfig, $objCatList, $objPostingList;
-
- if ($str != "")
- {
- if( substr($str,0,3) == 'bb-' )
- {
- $str = preg_replace('/^([a-zA-Z]+)-([0-9]+)-(.*)/','\\1\\2-\\3', $str);
- }
-
- $str = substr($str,2);
- $pieces = explode("-", $str);
-
- $bb_var_list["top"] = $pieces[0]; // topic id
- $bb_var_list["post"] = $pieces[1]; // post id
- $bb_var_list["tp"] = $pieces[2]; // topic page
- $bb_var_list["pp"] = $pieces[3]; // posts page
- $bb_var_list["pmp"] = $pieces[4]; // private message page
- $bb_var_list["pm_id"] = $pieces[5]; // private message id
- $bb_var_list['rp'] = $pieces[6]; // reviews page
- ResetPage('bb','tp');
- }
- else
- {
- $bb_var_list["top"] = 0;
- $bb_var_list["post"] = 0;
- $bb_var_list["tp"] = 1;
- $bb_var_list["pp"] = 1;
- $bb_var_list["pmp"] = 1;
- $bb_var_list["pm_id"] = 0;
- $bb_var_list['rp'] = 1;
- }
- //echo "<PRE>"; print_r($bb_var_list); echo "</PRE>";
-if ($bb_var_list["tp"] == "") $bb_var_list["tp"] = 1;
-if ($bb_var_list["pp"] == "") $bb_var_list["pp"] = 1;
-if ($bb_var_list["pmp"] == "") $bb_var_list["pmp"] = 1;
-}
-
-function bb_LoadEnv()
-{
- global $objSession;
-
- $str = $objSession->GetVariable("Env_Bulletin");
- bb_ParseEnv($str);
-}
-
-function bb_SaveEnv($str="")
-{
- global $objSession;
-
- $str = $objSession->SetVariable("Env_Bulletin",$str);
-}
-
-function bb_BuildEnv()
-{
- // rp - reviews page
- $module_vars = Array( 'top','post','tp','pp','pmp','pm_id','rp');
- return GenerateModuleEnv('bb', $module_vars);
-}
-
-function bb_BuildEnv_NEW()
-{
- // rp - reviews page
- $module_vars = Array( 'top' => 'bb_id', 'post' => 'bb_post_id', 'tp' => 'bb_Page',
- 'pp' => 'bb_Post_Page', 'pmp' => 'bb_pm_Page', 'pm_id' => 'bb_pm_id',
- 'rp' => 'bb_Reviews_Page');
- return GenerateModuleEnv_NEW('bb', $module_vars);
-}
-
-function LoadTopics($attribs = array())
-{
- global $objTopicList, $objSession, $objCatList, $bb_var_list, $bb_var_list_update;
-
- static $PagingList;
-
- $ListType = strtolower(getArrayValue($attribs,'_listtype'));
- $force_paging = getArrayValue($attribs,'_forcepaging');
- if( !$ListType ) $ListType = 'category';
- $LastList = $objSession->GetVariable('TopicListType');
- $LastShortType = $objSession->GetVariable('TopicShortList');
- $LastCat = $objSession->GetVariable('TopicLastCategory');
- $NoPaging = ( getArrayValue($attribs,'_paging')=='0' || getArrayValue($attribs,'_paging')=='false');
- if(!$NoPaging && !strlen($PagingList))
- {
- $PagingList=$ListType;
- }
- //echo "Last: $LastList, Short: $LastShortType Current: $ListType, Short:".$attribs["_shortlist"]." PageList: $PagingList<br>\n";
-
- if($ListType == $PagingList)
- {
- $objTopicList->EnablePaging = TRUE;
- if($LastList != $ListType || $LastShortType != $attribs['_shortlist'] || $LastCat != $objCatList->CurrentCategoryID())
- {
- //echo 'Resetting Page..<br>\n';
- $bb_var_list_update['tp'] = 1;
- $bb_var_list_update['pp'] = 1;
- $bb_var_list['tp'] = 1;
- $bb_var_list['pp'] = 1;
- $objTopicList->Page=1;
- $objPostingList->Page=1;
- $objSession->SetVariable('TopicListType',$ListType);
- $objSession->SetVariable('TopicShortList',$attribs['_shortlist']);
- $objSession->SetVariable('TopicLastCategory',$objCatList->CurrentCategoryID());
- }
- else
- {
- $objTopicList->Page = $bb_var_list['tp'];
- }
- }
- else
- {
- if(is_numeric( getArrayValue($attribs,'_maxcount') ))
- {
- $objTopicList->MaxListCount = $attribs['_maxcount'];
- }
- else
- $objTopicList->MaxListCount = 10;
-
- $objTopicList->EnablePaging = FALSE;
- }
- //echo "ForcePaging = $force_paging<br>";
- if ($force_paging == 1)
- {
- $objTopicList->EnablePaging = TRUE;
- $objTopicList->Page = $bb_var_list["tp"];
- $objSession->SetVariable('TopicListType',$ListType);
- $objSession->SetVariable('TopicShortList',$attribs['_shortlist']);
- }
-
- $objTopicList->ListType=$ListType;
- switch($ListType)
- {
- case 'category':
- $objTopicList->LoadTopicsCategory($attribs);
- break;
- case 'new':
- $objTopicList->LoadNewItems($attribs);
- break;
- case "my_new":
- $scope = $objSession->CurrentUser->Vars["LastLogin"];
- $attribs["_scope"] = $scope;
- $attribs["_show_since_last"] = 1;
- //echo "Scope: $scope<br>";
- //print_pre($objSession->CurrentUser);
- if (is_numeric($scope) && $scope > 0) {
- $objTopicList->LoadNewItems($attribs);
- }
- break;
- case 'hot':
- $objTopicList->LoadHotItems($attribs);
- break;
- case 'pick':
- $objTopicList->LoadPickItems($attribs);
- break;
- case 'myitems':
- $objTopicList->LoadMyItems($attribs);
- break;
- case 'favorites':
- $objTopicList->LoadFavorites($attribs);
- break;
- case 'search':
- $attribs['multiple'] = 'topics';
- $objTopicList->LoadSearchItems($attribs);
- break;
-
- }
-}
-
-/*
- @description: Return post icon
- @attrib: _posts_icon:: icon source
- @attrib: _no_post_icon:: no post icon source
- @attrib: _locked_post_icon:: locked post icon
-*/
-
-function bb_post_icon($attribs)
-{
- global $objConfig, $objCatList, $objSession;
-
- $post_icon = $attribs['_posts_icon'];
- $no_post_icon = $attribs['_no_post_icon'];
- $locked_post_icon = $attribs['_locked_post_icon'];
-
- $ado = &GetADODBConnection();
- //echo 'Retrieving CatID in <b>bb_post_icon</b> '.$GLOBALS['cat_ID'].'<br>';
- $current_cat = $GLOBALS['cat_ID'];
- $prefix = GetTablePrefix();
-
-
- /*if( !$objSession->HasCatPermission('TOPIC.ADD', $current_cat) || !$objSession->HasCatPermission('TOPIC.ADD.PENDING', $current_cat) )
- {
- return "<img src=\"$locked_post_icon\" border=\"0\">";
- }*/
-
-
- if($attribs["_local"] && $objCatList->CurrentCategoryID() != 0)
- {
- $c = $objCatList->GetItem($objCatList->CurrentCategoryID());
- $catlist = $c->GetSubCatIds();
-
- $catwhere = "CategoryId IN (".explode(",",$catlist).")";
- $sql = "SELECT MAX(Modified) as ModDate, ".$prefix."Topic.Status AS tStatus FROM ".$prefix."Topic ";
- $sql .= "INNER JOIN ".$prefix."CategoryItems ON (".$prefix."Topic.ResourceId=".$prefix."CategoryItems.ItemResourceId) ";
- $sql .= "WHERE Status=1 AND $catwhere LIMIT 1";
- }
- else {
- $sql = "SELECT MAX(Modified) as Modified FROM ".$prefix."Topic WHERE Status = 1 LIMIT 1";
- }
- $rs = $ado->Execute($sql);
-
- $Last = $objSession->GetPersistantVariable('LastLogin');
-
- if ($Last < $rs->fields['Modified'])
- {
- return "<img src=\"$post_icon\" border=\"0\" alt=\"\">";
- }
- else
- {
- return "<img src=\"$no_post_icon\" border=\"0\" alt=\"\">";
- }
-}
-
-/*
- @description: returns the date of the last modification to a topic
- @attrib: _Part:: part of the date to display
- @example: <inp:bb_topic_modified />
-*/
-function bb_topic_modified($attribs)
-{
- global $objConfig, $objCatList;
- $ret='';
- $CachedValue = GetTagCache("inbulletin","bb_topic_modified",$attribs,"");
- if(strlen($CachedValue)) return $CachedValue;
-
- $ado = &GetADODBConnection();
- if( getArrayValue($attribs,'_local') && $objCatList->CurrentCategoryID() != 0)
- {
- $c = $objCatList->GetItem($objCatList->CurrentCategoryID());
- $catlist = $c->GetSubCatIds();
-
- $catwhere = "CategoryId IN (".explode(",",$catlist).")";
- $sql = "SELECT MAX(Modified) as ModDate FROM ".GetTablePrefix()."Topic ";
- $sql .= "INNER JOIN ".GetTablePrefix()."CategoryItems ON (".GetTablePrefix()."Topic.ResourceId=".GetTablePrefix()."CategoryItems.ItemResourceId) ";
- $sql .= "WHERE Status=1 AND $catwhere LIMIT 1";
- }
- else
- {
- $sql = "SELECT MAX(Modified) as ModDate FROM ".GetTablePrefix()."Topic WHERE Status=1 LIMIT 1";
- }
- $rs = $ado->Execute($sql);
- if($rs && ! $rs->EOF)
- {
- $mod = $rs->fields["ModDate"];
- if($mod)
- {
- $part = strtolower($attribs["_part"]);
- $ret = $part?ExtractDatePart($part,$mod):LangDate($mod);
- }
- }
- if($ret) SaveTagCache("inbulletin","bb_topic_modified",$attribs,"",$ret);
- return $ret;
-}
-
-/*
- @description: returns a link to the forum root category
- @attrib: _Category:int: Override the forum root category
- @attrib: _Template:tpl: The template to link to
- @example: <inp:bb_root_link _Template="inbulletin/index" />
-*/
-function bb_root_link($attribs = array())
-{
- global $objTopicList, $objConfig, $var_list_update, $bb_var_list_update, $var_list, $objModules;
-
- //$RootCat = (int)$objConfig->Get("Topic_Root");
- $RootCat = $objModules->GetModuleRoot("In-Bulletin");
- if($RootCat != -1)
- $attribs["_category"] = $RootCat;
-
- $bb_var_list_update["top"] = 0;
- $bb_var_list_update["post"] = 0;
- $bb_var_list_update["tp"] = 0;
- $bb_var_list_update["pp"] = 0;
-
- unset($bb_var_list_update["top"],$bb_var_list_update["post"],$bb_var_list_update["tp"],$bb_var_list_update["pp"]);
- $o =m_template_link($attribs);
- unset($bb_var_list_update["top"],$bb_var_list_update["post"],$bb_var_list_update["tp"],$bb_var_list_update["pp"]);
-
- return $o;
-}
-
-/*
- @description: returns a list of topics
- @attrib: _CatId:int: Override the current category
- @attrib: _useroot:bool: If set, the current category is changed to In-Bulletin's root category
- @attrib: _ShortList:bool: If set, the Perpage_Topics_Short setting is used instead of Perpage_topics
- @attrib: _Paging:bool: If set to 0 or false, paging will not be allowed for this list (only one paging list is allowed per item type per page load)
- @attrib: _maxcount:int: If paging is not used on this list, this value determines how many items to load
- @attrib: _ListType::Determines the type of list to generate<br>
- Possible values:<UL>
- <LI>Category: List topics from the current category
- <LI>New: List new topics
- <LI>Hot: List topics with the most replies
- <LI>myitems: List topics created by the current user
- <LI>favorites: List topics marked as favorites by the current user
- <LI>search: List search results
- </UL>
- @attrib: _FirstItemTemplate:tpl: Template used for the first topic listed
- @attrib: _LastItemTemplate:tpl: Template used for the last topic listed
- @attrib: _EdItemTemplate:tpl: Editors Pick template used for topic list items
- @attrib: _ItemTemplate:tpl: default template used for topic list items
- @example: <inp:bb_topic_list _ItemTemplate="inbulletin/topic_list_element" _ShortList="1" />
-*/
-function bb_topic_list($attribs = array())
-{
- global $objSession, $objConfig, $objCatList, $bb_var_list, $CatId, $objTopicList, $content_set;
-
- $CatId = getArrayValue($attribs,'_catid');
- if(!is_numeric($CatId))
- $CatId = $objCatList->CurrentCategoryID();
-
- if((int)getArrayValue($attribs,'_useroot')) $CatId = (int)$objConfig->Get("Topic_Root");
-
- $attribs["_catid"] = $CatId;
-
- $t = getArrayValue($attribs,'_itemtemplate');
-
- if(!strlen($t))
- {
- $content_set=0;
- return "";
- }
-
- $ListType=getArrayValue($attribs,'_listtype');
-
- if(!strlen($ListType)) $ListType="category";
-
- if ( getArrayValue($attribs,'_shortlist') && $objConfig->Get('Perpage_Topics_Short') ) {
- $objTopicList->PerPageVar = 'Perpage_Topics_Short';
- }
- else {
- $objTopicList->PerPageVar = 'Perpage_Topics';
- }
-
- if($objTopicList->ListType != $ListType) LoadTopics($attribs);
-
- //if($objTopicList->NumItems()==0)
- //{
- // LoadTopics($attribs);
- //}
-
- if ($objTopicList->NumItems()==0)
- {
- $content_set=0;
- return ""; //language("la_no_topics");
- }
-
- $total_topics = min($objTopicList->NumItems(), $objConfig->Get($objTopicList->PerPageVar));
-
- $html_attribs = ExtraAttributes($attribs);
- $row = 0;
- $o = '';
- for($x=0; $x<$total_topics; $x++)
- {
- $topic =& $objTopicList->Items[$x];
- $parsed=0;
- if($row==0 && strlen($attribs["_firstitemtemplate"]))
- {
- $o .= $topic->ParseTemplate($attribs["_firstitemtemplate"]);
- $parsed=1;
- }
- if($row==$objTopicList->NumItems()-1 && !$parsed && strlen($attribs["_lastitemtemplate"])>0)
- {
- $o .= $topic->ParseTemplate($attribs["_lastitemtemplate"]);
- $parsed=1;
- }
- if(!$parsed)
- {
- if (getArrayValue($attribs, '_editemtemplate') && (int)$topic->Get('EditorsPick'))
- {
- $o .= $topic->ParseTemplate($attribs["_editemtemplate"]);
- }
- else
- {
- $o .= $topic->ParseTemplate($attribs['_itemtemplate']);
- }
- }
- $row++;
- }
-
- return $o;
-}
-
-/*
- @description: returns a counter of topics
- @attrib: _CatId:int: Override the current category
- @attrib: _useroot:bool: If set, the current category is changed to In-Bulletin's root category
- @attrib: _ShortList:bool: If set, the Perpage_Topics_Short setting is used instead of Perpage_topics
-
- @attrib: _ListType::Determines the type of list to generate<br>
- Possible values:<UL>
- <LI>Category: List topics from the current category
- <LI>New: List new topics
- <LI>Hot: List topics with the most replies
- <LI>myitems: List topics created by the current user
- <LI>favorites: List topics marked as favorites by the current user
- <LI>search: List search results
- </UL>
-
- @example: <inp:bb_list_count _ListType="Search" _ShortList="1" />
-*/
-function bb_list_count($attribs = array())
-{
- global $objConfig, $objCatList, $CatId, $objTopicList;
-
- $CatId = getArrayValue($attribs,'_catid');
- if(!is_numeric($CatId))
- $CatId = $objCatList->CurrentCategoryID();
-
- if((int)getArrayValue($attribs,'_useroot')) $CatId = (int)$objConfig->Get("Topic_Root");
-
- $attribs["_catid"] = $CatId;
-
- $ListType=getArrayValue($attribs,'_listtype');
- if(!strlen($ListType)) $ListType="category";
-
- if ( getArrayValue($attribs,'_shortlist') && $objConfig->Get('Perpage_Topics_Short') ) {
- $objTopicList->PerPageVar = 'Perpage_Topics_Short';
- }
- else {
- $objTopicList->PerPageVar = 'Perpage_Topics';
- }
-
- if(!getArrayValue($attribs,'_today'))
- {
- if($objTopicList->ListType != $ListType)
- LoadTopics($attribs);
-
- $o = $objTopicList->QueryItemCount;
- }
- else
- {
- $o = $objTopicList->PerformItemCount($attribs);
- }
-
- if ($o == '') {
- $o = 0;
- }
-
- return $o;
-}
-
-
-/*
- @description: Used in conjuction with bb_topic_list. This function generates the page navigation
- for the list. If this tag is called before the list tag, this function will load
- the topic list. For that reason, the _ListType attribute is required if the pagnav
- tag preceeds the bb_topic_list tag in the template. Generally, it is good practice to
- duplicate all attributes set for bb_topic_list.
- @attrib: _PagesToList:int: Number of pages to list (default is 10)
- @attrib: _label:lang: language tag to include in the output if there are pages to list. If there are no pages
- listed, this text will not be included (resulting in an empty output)
-*/
-function bb_topic_pagenav($attribs = array())
-{
- global $objTopicList, $objCatList, $objSession, $objConfig;
-
- $DestTemplate = getArrayValue($attribs,'_template');
- $PagesToList = getArrayValue($attribs,'_pagestolist');
- $image = getArrayValue($attribs,'_PageIcon');
- if(!is_numeric($PagesToList))
- $PagesToList = 10;
-
- $CatId = getArrayValue($attribs,'_catid');
- if(!is_numeric($CatId))
- $CatId = $objCatList->CurrentCategoryID();
-
- if ( getArrayValue($attribs,'_shortlist') && $objConfig->Get('Perpage_Topics_Short') ) {
- $objTopicList->PerPageVar = 'Perpage_Topics_Short';
- }
- else {
- $objTopicList->PerPageVar = 'Perpage_Topics';
- }
-
- $ListType=getArrayValue($attribs,'_listtype');
- if(!strlen($ListType)) $ListType="category";
-
- if($objTopicList->ListType != $ListType)
- LoadTopics($attribs);
-
- $o = $objTopicList->GetPageLinkList($DestTemplate, '', 10, true, '', ExtraAttributes($attribs));
- if (strlen($image)) {
- $o_i = '<img src="'.$image.'" width="9" height="12" title="" alt="">&nbsp;';
- }
- if(strlen($o) && strlen($attribs["_label"]))
- $o = $o_i.language($attribs["_label"]).' '.$o;
- return $o;
-}
-
-/*
- @description: Used in conjuction with bb_topic_list. This function generates a navigation link which is
- used to switch from a short list to a longer list. The page number is not changed.
- If this tag is called before the list tag, this function will load the topic list.
- For that reason, the _ListType attribute is required if the pagnav
- tag preceeds the bb_topic_list tag in the template. Generally, it is good practice to
- duplicate all attributes set for bb_topic_list.
- @attrib: _root:bool: If set, the current category is set to In-Bulletin's root category
- @attrib: _text:lang: language tag to include as text for the anchor tag
- @attrib: _plaintext:: plain text to include as text for the anchor tag. The _text attribute takes presedence
- if both are included.
- @attrib: _image:: URL to an image to include inside the anchor tag.
-*/
-function bb_topic_more($attribs = array())
-{
- global $objTopicList, $objConfig, $bb_var_list_update;
-
- $bb_var_list_update['top_id'] = 0;
-
- $html_attribs = ExtraAttributes($attribs);
- $DestTemplate = $attribs["_template"];
-
- if ( getArrayValue($attribs,'_shortlist') && $objConfig->Get('Perpage_Topics_Short') ) {
- $objTopicList->PerPageVar = 'Perpage_Topics_Short';
- }
- else {
- $objTopicList->PerPageVar = 'Perpage_Topics';
- }
-
- $ListType=$attribs["_listtype"];
- if(!strlen($ListType))
- $ListType="category";
-
- if($objTopicList->ListType != $ListType)
- LoadTopics($attribs);
-
- if($objTopicList->QueryItemCount > $objConfig->Get($objTopicList->PerPageVar))
- {
- if($attribs["_root"])
- {
- $url = bb_root_link($attribs);
- }
- else
- {
- $bb_var_list_update["tp"]=1;
- $bb_var_list_update["pp"]=1;
- $url = m_template_link($attribs);
- unset($bb_var_list_update["tp"],$bb_var_list_update["pp"]);
- }
- $o = "<A $html_attribs HREF=\"$url\">";
- $text = $attribs["_text"];
- if(!strlen($text))
- {
- $text = $attribs["_plaintext"];
- if(!strlen($text))
- {
- }
- $o .= $text."</A>";
- }
- else
- $o .= language($text);
- if(strlen($attribs["_image"]))
- {
- $o .= "<IMG SRC=\"".$attribs["_image"]."\" BORDER=\"0\" alt=\"\"/>";
- }
- $o .= "</A>";
- }
- return $o;
-}
-
-/*
- @description: Generates a link to set a topic column to the sort column for the user
- @attrib: _column:: column name to set
- @example: <a href="<inp:bb_topic_list_sortlink _Column="TopicText" />"><inp:m_language _Phrase="lu_topics" /></a>
-*/
-function bb_topic_list_sortlink($attribs)
-{
- return HREF_Wrapper('', Array('Action' => 'bb_sort', 'col' => $attribs['_column']) );
-}
-
-/*
- @description: Creates a URL to an image used to indicate the sorting status of a topic column.
- Extra HTML attributes are passed to the image tag.
- @attrib: _column:: column name to check
- @attrib: _selected_asc:: if the column is the current sort column, and the order is ascending, this url is used
- @attrib: _selected_desc:: if the column is the current sort column, and the order is descending, this url is used
- @attrib: _selected:: if the column is the current sort column, and no other _selected URL is set, this URL is used
- @attrib: _unselected:: if the column is not the current sort column, this URL is used
- @attrib: _default:: if no other URL is returned, this URL is used
- @example: <IMG src="<inp:bb_topic_list_sorticon _Column="TopicText" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="7" height="7" title="" border="0" />
-*/
-function bb_topic_list_sorticon($attribs)
-{
- global $objSession, $objConfig;
-
- $fields[] = $objSession->GetPersistantVariable('Topic_SortField');
- $orders[] = $objSession->GetPersistantVariable('Topic_SortOrder');
- if( !$orders[0] ) $orders[0] = 'asc';
- // if user haven't specified sorting
-
- /*// first sorting
- $fields[] = $objConfig->Get('Topic_SortField');
- $orders[] = $objConfig->Get('Topic_SortOrder');
- // second sorting
- $fields[] = $objConfig->Get('Topic_SortField2');
- $orders[] = $objConfig->Get('Topic_SortOrder2');*/
-
- $url = '';
-
- $i = 0;
- $f_count = count($fields);
- $match_index = -1;
- while($i < $f_count)
- {
- if($fields[$i] == $attribs['_column'])
- {
- $match_index = $i;
- break;
- }
- $i++;
- }
-
- if($match_index > -1)
- {
- $key = '_selected'.strtolower($orders[$match_index]);
- $url = $attribs[$key];
- if( !strlen($url) ) $url = $attribs['_selected'];
- }
- else
- {
- $url = $attribs['_unselected'];
- }
-
- if(!strlen($url))
- {
- $url = $attribs['_default'];
- }
- return $url;
-}
-
-/*
- @description: Generates a url containing the action to delete a user's avatar image
- @example: <A HREF="<inp:bb_delete_avatar />"><inp:m_language _Phrase="lu_delete" /></A>
-*/
-function bb_delete_avatar($attribs = array())
-{
- return HREF_Wrapper('', Array('Action' => 'bb_delete_avatar') );
-}
-
-function bb_form_load_values($FormName,$IdValue)
-{
- global $FormValues, $objTopicList, $objPostingList, $objUsers, $objSession;
-
- switch($FormName)
- {
- case 'post_edit':
- $p =& $objPostingList->GetItem($IdValue);
- $body = _unhtmlentities( $p->Get('PostingText') );
- $body = str_replace('<br />','',$body);
- $FormValues[$FormName]["bb_post_reply_body"] = $body;
- $FormValues[$FormName]["subject"] = $p->Get("Subject");
- $FormValues[$FormName]["topic_bbcode"] = (int)$p->PostOption("disable_bbcode"); // (int)$objSession->GetPersistantVariable("bbcode");
- $FormValues[$FormName]["topic_smile"] = (int)$p->PostOption("disable_smileys");
- $FormValues[$FormName]["topic_sig"] = (int)$p->PostOption("show_sig");
- break;
- case "topic_reply":
- $FormValues[$FormName]["owner_notify"] = (int)$objSession->GetPersistantVariable("owner_notify");
- $FormValues[$FormName]["topic_bbcode"] = !(int)$objSession->GetPersistantVariable("bbcode");
- $FormValues[$FormName]["topic_smile"] = !(int)$objSession->GetPersistantVariable("smileys");
- $FormValues[$FormName]["topic_sig"] = (int)$objSession->GetPersistantVariable("show_sig");
-
- if($FormName=="topic_reply")
- $FormValues[$FormName]["replyto"] = $objPostingList->CurrentPostID();
-
- $p = $objPostingList->GetItem($objPostingList->CurrentPostID());
- if(strlen($p->Get("Subject")))
- {
- $FormValues[$FormName]["subject"] = "Re: ".$p->Get("Subject");
- }
- break;
- case "new_topic":
- $FormValues[$FormName]["owner_notify"] = (int)$objSession->GetPersistantVariable("owner_notify");
- $FormValues[$FormName]["topic_bbcode"] = !(int)$objSession->GetPersistantVariable("bbcode");
- $FormValues[$FormName]["topic_smile"] = !(int)$objSession->GetPersistantVariable("smileys");
- $FormValues[$FormName]["topic_sig"] = (int)$objSession->GetPersistantVariable("show_sig");
- if($FormName=="topic_reply")
- $FormValues[$FormName]["replyto"] = $objPostingList->CurrentPostID();
- break;
-
- case "new_pm":
- $FormValues[$FormName]["pm_to"] = GetVar('ToUser');
- $FormValues[$FormName]["pm_bbcode"] = !(int)$objSession->GetPersistantVariable("bbcode");
- $FormValues[$FormName]["pm_smile"] = !(int)$objSession->GetPersistantVariable("smileys");
- $FormValues[$FormName]["pm_sig"] = (int)$objSession->GetPersistantVariable("show_sig");
-
- if( GetVar('IsReply') == 1 )
- {
- global $objPMList;
- $pm = $objPMList->GetCurrentItem();
- if( is_object($pm) )
- {
- $FormValues[$FormName]['pm_subject'] = 'Re: '.$pm->Get('Subject');
- }
- }
-
- break;
-
- case "edit_topic":
- $t =& $objTopicList->GetItem($IdValue);
- if(is_object($t))
- {
- $FormValues[$FormName]["topic_subject"] = $t->Get("TopicText");
- $FormValues[$FormName]["owner_notify"] = $t->Get("NotifyOwnerOnChanges");
- $t->LoadCustomFields();
- if(is_array($t->CustomFields))
- {
- foreach($t->CustomFields as $f=>$v)
- {
- $FormValues[$FormName][$f] = $v;
- }
- }
- }
- break;
- case "bb_profile":
- $u = $objUsers->GetItem($IdValue);
- if(is_object($u))
- {
- $FormValues[$FormName]["perpage_topics"] = $objSession->GetPersistantVariable("Perpage_Topics");
- $FormValues[$FormName]["perpage_posts"] = $objSession->GetPersistantVariable("Perpage_Postings");
- $FormValues[$FormName]["owner_notify"] = (int)$objSession->GetPersistantVariable("owner_notify");
- $FormValues[$FormName]["bbcode"] = (int)$objSession->GetPersistantVariable("bbcode");
- $FormValues[$FormName]["show_sig"] = (int)$objSession->GetPersistantVariable("show_sig");
- $FormValues[$FormName]["smileys"] = $objSession->GetPersistantVariable("smileys");
- $FormValues[$FormName]["user_signatures"] = $objSession->GetPersistantVariable("bb_signatures");
- $FormValues[$FormName]["my_signature"] = $objSession->GetPersistantVariable("my_signature");
- $FormValues[$FormName]["pm_notify"] = $objSession->GetPersistantVariable("bb_pm_notify");
- $u->LoadCustomFields();
- if(is_array($u->CustomFields))
- {
- foreach($u->CustomFields as $f=>$v)
- {
- $FormValues[$FormName][$f] = $v;
- }
- }
-
- }
- break;
- }
-}
-
-/*
- @description: Generates the ACTTION property for a FORM tag used by In-Bulletin
- @attrib: _Template:tpl: If set, this is the template the form submits to (default is the current template)
- @attrib: _Form:: The form name<br>Possible Values:
- <UL>
- <LI>bb_profile: In-Bulletin section of User Profile Edit
- <LI>new_topic: Add a topic to a category
- <LI>new_topic_confirm: Simple form displayed when a new_topic confirmation page is displayed
- <LI>topic_reply: Add a post to a topic
- <LI>post_edit: Modify an existing post
- <LI>edit_topic: Modify an existing topic
- <LI>edit_topic_confirm: Simple form displayed when a topic modification confirmation is shown
- <LI>getting_rated: Form for remote rating
- </UL>
- @example: <FORM enctype="multipart/form-data" method="POST" NAME="bb_profile" ACTION="<inp:bb_form_action _Form="bb_profile" />">
-*/
-function bb_form_action($attribs = array())
-{
- global $var_list_update, $var_list, $objSession, $objTopicList, $objPostingList, $bb_var_list, $bb_var_list_update;
-
- $var_list_update['t'] = getArrayValue($attribs, '_template') ? $attribs['_template'] : $var_list['t'];
-
- if( is_object($objTopicList) && $bb_var_list['top'] ) $bb_var_list_update['top'] = $bb_var_list['top'];
-
- $ret = '';
- $form = strtolower( $attribs['_form'] );
- $url_params = Array();
-
- switch($form)
- {
- case 'bb_rate':
- if( !$objSession->SessionEnabled() )
- {
- $var_list_update['t'] = 'error_session';
- }
- else
- {
- $url_params = Array( 'Action' => 'bb_rate_topic', 'DestTemplate' => $attribs['_finishtemplate'] );
- if ( $objSession->HasCatPermission('TOPIC.RATE') && getArrayValue($attribs, '_confirm') ) $url_params['Confirm'] = $attribs['_confirm'];
-
-// $bb_var_list_update['top'] = $objTopicList->CurrentItem;
- if( getArrayValue($attribs, '_duplicate') ) $url_params['Duplicate'] = $attribs['_duplicate'];
- }
- break;
-
- case 'bb_getting_rated':
- if( !$objSession->SessionEnabled() )
- {
- $var_list_update['t'] = 'error_session';
- }
- else
- {
- $var_list_update['t'] = 'inbulletin/rate';
- $url_params = Array( 'Action' => 'bb_rate_topic', 'DestTemplate' => $attribs['_finishtemplate'] );
-
- if ( $objSession->HasCatPermission('TOPIC.RATE') && getArrayValue($attribs, '_confirm') ) $url_params['Confirm'] = $attribs['_confirm'];
-// $bb_var_list_update['top'] = $objTopicList->CurrentItem;
- if( getArrayValue($attribs, '_duplicate') ) $url_params['Duplicate'] = $attribs['_duplicate'];
- }
- break;
-
- case 'bb_rate_confirm':
- $var_list_update['t'] = getArrayValue($_GET, 'DestTemplate') ? $_GET['DestTemplate'] : $var_list['t'];
-// $bb_var_list_update['top'] = $objTopicList->CurrentItem;
- break;
-
- /*case 'addreview':
- break;*/
-
- case 'bb_profile':
- $url_params = Array('Action' => 'bb_pref');
- bb_form_load_values('bb_profile', $objSession->Get('PortalUserId') );
- break;
-
- case 'new_topic':
- $url_params = Array( 'Action' => 'bb_new_topic', 'DestTemplate' => $attribs['_finishtemplate'] );
-
- if ( $objSession->HasCatPermission('TOPIC.ADD.PENDING') )
- {
- $url_params['Confirm'] = $attribs[ getArrayValue($attribs, '_confirmpending') ? '_confirmpending' : '_confirm' ];
- }
-
- if ($objSession->HasCatPermission('TOPIC.ADD'))
- {
- $url_params['Confirm'] = $attribs['_confirm'];
- }
- if( !$url_params['Confirm'] ) unset($url_params['Confirm']);
-
- bb_form_load_values('new_topic', $objSession->Get('PortalUserId') );
- break;
-
- case 'new_pm':
- $url_params = Array( 'Action' => 'bb_new_pm', 'DestTemplate' => $attribs['_finishtemplate'] );
- if( getArrayValue($attribs, '_confirm') ) $url_params['Confirm'] = $attribs['_confirm'];
- bb_form_load_values('new_pm', $objSession->Get('PortalUserId') );
- break;
-
- case 'new_pm_confirm':
- $var_list_update['t'] = getArrayValue($_GET, 'DestTemplate') ? $_GET['DestTemplate'] : $var_list['t'];
- $url_params = Array('ResetPage' => '1');
- break;
-
- case 'new_topic_confirm':
- $var_list_update['t'] = getArrayValue($_GET, 'DestTemplate') ? $_GET['DestTemplate'] : $var_list['t'];
- break;
-
- case 'topic_reply':
- $url_params = Array('Action' => 'bb_topic_reply', 'next_template' => $attribs['_template']);
- bb_form_load_values('topic_reply', $objSession->Get('PortalUserId') );
- break;
-
- case 'post_edit':
- $url_params = Array('Action' => 'bb_post_edit');
- bb_form_load_values('post_edit', $objPostingList->CurrentPostID() );
- break;
-
- case 'edit_topic':
- $url_params = Array( 'Action' => 'bb_edit_topic', 'DestTemplate' => $attribs['_finishtemplate'] );
-
- $t =& $objTopicList->GetCurrentTopic();
- $IsOwner = ( $t->Get('OwnerId') == $objSession->Get('PortalUserId') );
-
- if ( $objSession->HasCatPermission('TOPIC.MODIFY.PENDING') || ($IsOwner && $objSession->HasCatPermission('TOPIC.OWNER.MODIFY.PENDING')) )
- {
- $url_params['Confirm'] = $attribs[ getArrayValue($attribs, '_confirmpending') ? '_confirmpending' : '_confirm' ];
- }
-
- if ( $objSession->HasCatPermission('TOPIC.MODIFY') || ($IsOwner && $objSession->HasCatPermission('TOPIC.OWNER.MODIFY')) )
- {
- $url_params['Confirm'] = $attribs['_confirm'];
- }
-
- if( !$url_params['Confirm'] ) unset($url_params['Confirm']);
- bb_form_load_values('edit_topic', $t->Get('TopicId') );
- break;
-
- case 'edit_topic_confirm':
- $var_list_update['t'] = getArrayValue($_GET, 'DestTemplate') ? $_GET['DestTemplate'] : $var_list['t'];
- break;
- }
-
- return HREF_Wrapper('', $url_params);
-}
-
-/*
- @description: Parse a topic item template
- @attrib: _ItemTemplate:tpl: Topic template to parse
- @attrib: _TopicId:int: Topic ID to parse (uses current topic if not set)
-*/
-function bb_topic_detail($attribs = array())
-{
- global $objTopicList;
-
- $t = $attribs["_itemtemplate"];
- if(strlen($t))
- {
- $TopicId = (int)$attribs["_topicid"];
- if($TopicId)
- {
- $topic = $objTopicList->GetItem($TopicId);
- }
- else
- $topic =& $objTopicList->GetCurrentTopic();
- if(is_object($topic))
- {
- $o = $topic->ParseTemplate($t);
- }
- }
- return $o;
-}
-
-/*
- @description: Parse a topic field and return the value
- @attrib: _Field:: Topic field to parse
- @attrib: _TopicId:int: Topic ID to parse (uses current topic if not set)
-*/
-function bb_topic_field($attribs = array())
-{
- global $objTopicList, $bb_var_list;
-
- $TopicId = $attribs["_topicid"];
- if ( is_numeric($TopicId) )
- {
- $topic =& $objTopicList->GetItem($TopicId);
- }
- else
- {
- if(!$objTopicList->CurrentItem && $bb_var_list['id'] > 0)
- {
- $objTopicList->SetCurrentItem($bb_var_list['id']);
- }
- $topic =& $objTopicList->GetCurrentTopic();
- }
-
- if(is_object($topic))
- {
- $element = new clsHtmlTag();
- $element->name = $topic->TagPrefix;
- $element->attributes = $attribs;
- $o = $topic->ParseObject($element);
- }
- else
- $o = "";
- return $o;
-}
-
-/*
- @description: Returns the number of items related to the current topic
- @attrib: _ItemId:int: the article to use (If not set, the current topic is used)
- @attrib: _ItemType:: Name of item to count (ie: _ItemType="Category,Topic")
- @example: <inp:bb_related_count _ItemType="Category" />
-*/
-function bb_related_count($attribs)
-{
- global $objItemTypes, $objTopicList, $content_set;
- global $TopicRelations;
-
- $id = $attribs["_itemid"];
- $item_type = strtolower($attribs["_itemtype"]);
- $count = 0;
- if(!is_numeric($id))
- {
- $c =& $objTopicList->GetCurrentItem();
- }
- else
- $c =& $objTopicList->GetItem($id);
-
- if(is_object($c))
- {
- $ResourceId = $c->Get("ResourceId");
- if(!is_object($TopicRelations))
- {
- $TopicRelations = new clsMultiTypeList();
- LoadRelatedItems($Related, $TopicRelations,$c->Get("ResourceId"));
- }
-
- if(strlen($attribs["_itemtype"]))
- {
- $objType = $objItemTypes->GetTypeByName($item_type);
- if(is_object($objType))
- {
- $TargetType = $objType->Get("ItemType");
- }
- else
- $TargetType="";
- }
-
- if($TopicRelations->NumItems()>0)
- {
- for($x=0;$x<$TopicRelations->NumItems();$x++)
- {
- $a = $TopicRelations->GetItemByIndex($x);
- if($a->type == $TargetType || !strlen($TargetType))
- {
- $count++;
- }
- }
- }
- }
- return $count;
-}
-
-
-
-/*
- @description: List items related to the current topic
- @attrib: _ItemId:int: the topic to use (If not set, the current topic is used)
- @attrib: _ListItems:: List of item types to include (ie: _ListItems="Category,Link")
- @attrib: _*Template:none: For each item type lsted in _ListItems, an item type template must be included
- (ie: _CategoryTemplate=".." _LinkTemplate="..")
- @example: <inp:bb_related_items _ListItems="Category,Link" _CategoryTemplate="cat_related" _LinkTemplate="inlink/link_related" />
-*/
-function bb_related_items($attribs)
-{
- global $objItemTypes, $objTopicList, $objCatList, $content_set;
-
- $id = $attribs["_itemid"];
- if(!is_numeric($id))
- {
- $c =& $objTopicList->GetCurrentTopic();
- }
- else
- $c =& $objTopicList->GetItem($id);
-
- $data_sent=0;
-
- $tpath = GetModuleArray("template");
-
- if(is_object($c))
- {
- $ResourceId = $c->Get("ResourceId");
- $IncludeList = explode(",",trim(strtolower($attribs["_listitems"])));
- $o = "";
- if(!is_object($TopicRelations))
- {
- $TopicRelations = new clsMultiTypeList();
- LoadRelatedItems($Related, $TopicRelations,$c->Get("ResourceId"));
- }
-
- if($TopicRelations->NumItems()>0)
- {
- for($inc=0;$inc<count($IncludeList);$inc++)
- {
- $t_attr = "_".$IncludeList[$inc]."template";
- $t = $attribs[$t_attr];
- $item_type = $IncludeList[$inc];
-
- if(strlen($item_type))
- {
- $objType = $objItemTypes->GetTypeByName($item_type);
- if(is_object($objType))
- {
- foreach($TopicRelations->Items as $item)
- {
- if(is_object($item))
- {
- if(strtolower($objType->Get("ItemName")) == strtolower($item_type) && $item->type==$objType->Get("ItemType"))
- {
- if(strlen($item->BasePermissionName))
- {
- $perm = $item->BasePermissionName.".VIEW";
- $haspem = $objSession->HasCatPermission($perm,$item->Get("CategoryId"));
- }
- else
- $hasperm = 1;
-
- if($hasperm)
- {
- $data_sent =1;
- $classname = $objType->Get("ClassName");
- if(strlen($classname))
- {
- $l = new $classname;
- $l->Data = $item->Data;
- $o .= $l->ParseTemplate($t);
- }
- }
- }
- }
- $item = NULL;
- }
- }
- else
- echo $item_type." not found <br>\n";
- }
- }
- if($data_sent)
- {
- return $o;
- }
- else
- {
- $content_set=0;
- return "";
- }
- }
- else
- {
- $content_set = 0;
- return "";
- }
- }
- else
- {
- $content_set = 0;
- return "";
- }
-}
-
-/* loads post lists */
-function LoadPosts($attribs=array())
-{
- global $objTopicList, $objPostingList, $objSession, $objCatList;
-
- $ListType = strtolower($attribs["_listtype"]);
- if(!strlen($ListType))
- $ListType="category";
- $objPostingList->ListType=$ListType;
- switch($ListType)
- {
- case "category":
- $objPostingList->LoadTopicPosts($attribs);
- break;
- }
-}
-
-
-/*
- @description: Outputs a list of topic posts
- @attrib: _TopicId:int: Override the current topic
- @attrib: _ListType::Determines the type of list to generate<br>
- Possible values:<UL>
- <LI>Category: List topics from the current category (default)
- </UL>
-
- @attrib: _ItemTemplate:tpl: default template used for topic list items
- @attrib: _AltItemTemplate:tpl: used on every other post in the list (optional)
- @attrib: _FirstItemTemplate:tpl: Template used for the first topic listed (optional)
- @attrib: _LastItemTemplate:tpl: Template used for the last topic listed (optional)
- @attrib: _AltLastItemTemplate:tpl: Template used for the last topic listed if it ends on an alternate row (optional)
- @example: <inp:bb_list_posts _ItemTemplate="inbulletin/post_list_element" />
-*/
-function bb_list_posts($attribs=array())
-{
- global $var_list, $bb_var_list,$objCatList, $objTopicList, $objPostingList, $objSession;
-
- $o=""; //prepare output
- if($objSession->HasCatPermission("TOPIC.REPLY.VIEW"))
- {
- $objSession->SetVariable("topic_viewmode","0");
- $objSession->SetVariable("topic_list",$var_list["t"]);
- $TopicId=$attribs["_topicid"];
- if(is_numeric($TopicId))
- {
- $topic =& $objTopicList->GetItem($TopicId);
- }
- else
- $topic =& $objTopicList->GetCurrentTopic();
- $t = $attribs["_itemtemplate"];
- if(is_object($topic) && strlen($t))
- {
- $topic->Increment("Views", true);
- if($objPostingList->TopicID != $topic->Get("TopicId") || $objPostingList->NumItems()==0)
- {
- LoadPosts($attribs);
- //$objPostingList->Clear();
- //$objPostingList->TopicID=$topic->Get("TopicId");
- //$objPostingList->LoadTopicPosts();
- }
-
- $application =& kApplication::Instance();
-
- if($objPostingList->NumItems()>0)
- {
- $row = 0;
- for($x=0;$x<$objPostingList->NumItems();$x++)
- {
- $post =& $objPostingList->Items[$x];
- $application->SetVar('bb_post_id', $post->UniqueId());
-
- $even = (($row+1) % 2 == 0);
- $parsed=0;
- if($row==0 && strlen($attribs["_firstitemtemplate"]))
- {
- $o .= $post->ParseTemplate($attribs["_firstitemtemplate"]);
- $parsed=1;
- }
- if($row==$objPostingList->NumItems()-1 && $even && !$parsed && strlen($attribs["_altlastitemtemplate"])>0)
- {
- $o .= $post->ParseTemplate($attribs["_altlastitemtemplate"]);
- $parsed=1;
- }
- if($row==$objPostingList->NumItems()-1 && !$parsed && strlen($attribs["_lastitemtemplate"])>0)
- {
- $o .= $post->ParseTemplate($attribs["_lastitemtemplate"]);
- $parsed=1;
- }
- if(!$parsed)
- {
- if($even && strlen($attribs["_altitemtemplate"])>0)
- {
- $o .= $post->ParseTemplate($attribs["_altitemtemplate"]);
- }
- else
- $o .= $post->ParseTemplate($attribs["_itemtemplate"]);
- }
- $row++;
- }
- $o.="\n";
- }
- else
- {
- $content_set = 0;
- $o = "no posts";
- }
- }
- else
- {
- $content_set = 0;
- $o = "bot a topic";
- }
- }
- return $o;
-}
-
-/*
- @description: Outputs a list of topic posts in a threaded (tree) format
- @attrib: _TopicId:int: Override the current topic
- @attrib: _ListType::Determines the type of list to generate<br>
- Possible values:<UL>
- <LI>Category: List topics from the current category (default)
- </UL>
-
- @attrib: _ItemTemplate:tpl: default template used for topic list items
- @attrib: _AltItemTemplate:tpl: used on every other post in the list (optional)
- @attrib: _FirstItemTemplate:tpl: Template used for the first topic listed (optional)
- @attrib: _LastItemTemplate:tpl: Template used for the last topic listed (optional)
- @attrib: _AltLastItemTemplate:tpl: Template used for the last topic listed if it ends on an alternate row (optional)
- @example: <inp:bb_list_posts_threaded _ItemTemplate="inbulletin/post_list_element" />
-*/
-function bb_list_posts_threaded($attribs = array(), $parent=0, $depth=0)
-{
- global $objSession,$bb_var_list, $objPostingList,$ThreadRow;
- $o=""; //prepare output
- if($objSession->HasCatPermission("TOPIC.REPLY.VIEW"))
- {
- $objSession->SetVariable("topic_viewmode","1");
- $objSession->SetVariable("topic_list",$var_list["t"]);
- $plist = new clsPostingList();
- $TopicId=$attribs["_topicid"];
- if(!is_numeric($TopicId))
- {
- $TopicId = $bb_var_list["top"];
- }
- $depth++;
- $t = $attribs["_itemtemplate"];
- $CurrentPost = $objPostingList->CurrentPostID();
- if(!is_numeric($ThreadRow))
- $ThreadRow=0;
- if(strlen($t))
- {
- $plist->TopicID = $TopicId;
- $sql = "SELECT * FROM ".GetTablePrefix()."Posting WHERE TopicId=".$TopicId." AND ReplyTo=$parent ORDER BY CreatedOn ASC";
- //echo $sql."<br>\n";
- $plist->Query_Item($sql);
- for($x=0;$x<$plist->NumItems();$x++)
- {
- $plist->Items[$x]->Set("Depth",$depth);
- $post =& $plist->Items[$x];
- $even = (($ThreadRow+1) % 2 == 0);
- $parsed=0;
- if($post->Get("PostingId")==$CurrentPost && strlen($attribs["_currentitemtemplate"]))
- {
- $o .= $post->ParseTemplate($attribs["_currentitemtemplate"]);
- $parsed=1;
- }
- if($ThreadRow==0 && strlen($attribs["_firstitemtemplate"]))
- {
- $o .= $post->ParseTemplate($attribs["_firstitemtemplate"]);
- $parsed=1;
- }
- if($ThreadRow==$plist->NumItems()-1 && $even && !$parsed && strlen($attribs["_altlastitemtemplate"])>0)
- {
- $o .= $post->ParseTemplate($attribs["_altlastitemtemplate"]);
- $parsed=1;
- }
- if($ThreadRow==$plist->NumItems()-1 && !$parsed && strlen($attribs["_lastitemtemplate"])>0)
- {
- $o .= $post->ParseTemplate($attribs["_lastitemtemplate"]);
- $parsed=1;
- }
- if(!$parsed)
- {
- if($even && strlen($attribs["_altitemtemplate"])>0)
- {
- $o .= $post->ParseTemplate($attribs["_altitemtemplate"]);
- }
- else
- $o .= $post->ParseTemplate($attribs["_itemtemplate"]);
- }
- $ThreadRow++;
- $o .= bb_list_posts_threaded($attribs, $plist->Items[$x]->Get("PostingId"),$depth);
- }
- }
- unset($plist);
- }
- return $o;
-}
-/*
- @description: Used in conjuction with bb_list_posts. This function generates the page navigation
- for the list. If this tag is called before the list tag, this function will load
- the post list. For that reason, the _ListType attribute is required if the pagnav
- tag preceeds the bb_topic_list tag in the template. Generally, it is good practice to
- duplicate all attributes set for bb_post_list (other than templates).
- @attrib: _PagesToList:int: Number of pages to list (default is 10)
- @attrib: _Tempalte:tpl: Template to be used in the page links. Defaults to current template if not set
- @attrib: _label:lang: language tag to include in the output if there are pages to list. If there are no pages
- listed, this text will not be included (resulting in an empty output)
-*/
-function bb_post_pagenav($attribs = array())
-{
- global $objPostingList, $objTopicList, $objSession, $content_set;
-
- $DestTemplate = $attribs["_template"];
- $PagesToList = $attribs["_pagestolist"];
- $image = $attribs["_PageIcon"];
-
- if(!is_numeric($PagesToList))
- $PagesToList = 10;
-
- $TopicId = $attribs["_topicid"];
- if(!is_numeric($TopicId))
- $TopicId = $objTopicList->CurrentTopicID();
-
- if($objPostingList->TopicID != $TopicId || ($objPostingList->NumItems()==0))
- {
- LoadPosts($attribs);
- }
- $extra = ExtraAttributes($attribs);
-
- if($objPostingList->NumItems()>0)
- {
- $o = $objPostingList->GetPageLinkList($DestTemplate,'',$PagesToList, true, $extra);
- }
-// echo "<pre>TEST: "; print_r($o); echo "</pre>";
- if (strlen($image)) {
- $o_i = '<img src="'.$image.'" width="9" height="12" alt="">&nbsp;';
- }
- if(strlen($o) && strlen($attribs["_label"]))
- $o = $o_i.language($attribs["_label"]).' '.$o;
- elseif (!strlen($o))
- {
- $content_set = 0;
- return "";
- }
-
- return $o;
-}
-/*
- @description: Parse a post field and return the value.
- @attrib: _Field:: Post Field to parse
- @attrib: _TopicId:int: Topic ID (if not set, the current topic is used)
- @attrib: _PostId:int: Post ID to parse (uses current topic if not set)
-*/
-function bb_post_field($attribs = array())
-{
- global $objPostingList;
-
- $PostId=$attribs["_postid"];
- $TopicId=$attribs["_topicid"];
- if(!is_numeric($TopicId))
- {
- $TopicId=$bb_var_list["top"];
- }
- $objPostingList->TopicId = $TopicId;
-
- if(!is_numeric($PostId))
- {
- $PostId = $objPostingList->CurrentPostID();
- }
- $p = $objPostingList->GetItem($PostId);
- if(is_object($p))
- {
-
- $element = new clsHtmlTag();
- $element->name = $p->TagPrefix;
- $element->attributes = $attribs;
- $o = $p->ParseObject($element);
- }
- else
- $o = "";
- unset($PostList);
- return $o;
-}
-
-/*
- @description: Parse a post item template
- @attrib: _ItemTemplate:tpl: Post template to parse
- @attrib: _TopicId:int: Topic ID (if not set, the current topic is used)
- @attrib: _PostId:int: Post ID to parse (uses current topic if not set)
-*/
-function bb_post_detail($attribs = array())
-{
- global $objTopicList, $objPostingList;
-
- $o = "";
- $t = $attribs["_itemtemplate"];
- if(strlen($t))
- {
- $PostId=$attribs["_postid"];
- $TopicId=$attribs["_topicid"];
- if(!is_numeric($TopicId))
- {
- $TopicId=$bb_var_list["top"];
- }
- $objPostingList->TopicId = $TopicId;
-
- if(!is_numeric($PostId))
- {
- $PostId = $objPostingList->CurrentPostID();
- }
- $p =& $objPostingList->GetItem($PostId);
- if(is_object($p))
- {
- $o = $p->ParseTemplate($t);
- }
- }
- return $o;
-}
-
-/*
- @description: List all active smileys
- @attrib: _ItemTemplate: Smiley template to parse
-*/
-function bb_list_emoticons($attribs=array())
-{
- global $objSmileys, $content_set;
-
- if($objSmileys->NumItems()==0)
- {
- $objSmileys->LoadActiveEmoticons();
- }
-
- if($objSmileys->NumItems()==0)
- {
- $content_set=0;
- return "";
- }
-
- $t = $attribs["_itemtemplate"];
- if(!strlen($t))
- {
- $content_set=0;
- return "";
- }
- foreach($objSmileys->Items as $s)
- {
- $o .= $s->ParseTemplate($t);
- }
- return $o;
-}
-
-function bb_pm_list($attribs = array())
-{
- global $content_set, $objPMList;
-
- $t = $attribs['_itemtemplate'];
-
- if(!strlen($t))
- {
- $content_set = 0;
- return '';
- }
-
- LoadPMs($attribs);
-
- if ($objPMList->NumItems()==0)
- {
- $content_set=0;
- return ''; //language("la_no_topics");
- }
-
- $html_attribs = ExtraAttributes($attribs);
- $row=0;
- for($x=0;$x<$objPMList->NumItems();$x++)
- {
- $pm =& $objPMList->Items[$x];
- $parsed=0;
- if($row==0 && strlen($attribs["_firstitemtemplate"]))
- {
- $o .= $pm->ParseTemplate($attribs["_firstitemtemplate"]);
- $parsed=1;
- }
- if($row==$objPMList->NumItems()-1 && !$parsed && strlen($attribs["_lastitemtemplate"])>0)
- {
- $o .= $pm->ParseTemplate($attribs["_lastitemtemplate"]);
- $parsed=1;
- }
- if(!$parsed)
- $o .= $pm->ParseTemplate($attribs["_itemtemplate"]);
- $row++;
- }
-
- return $o;
-}
-
-function bb_pm_pagenav($attribs = array())
-{
- global $objPMList;
-
- $DestTemplate = $attribs["_template"];
- $PagesToList = $attribs["_pagestolist"];
- $image = $attribs["_PageIcon"];
- if(!is_numeric($PagesToList))
- $PagesToList = 10;
-
- LoadPMs($attribs);
- $o = $objPMList->GetPageLinkList($DestTemplate,'',10,true,'&FolderId='.$objPMList->FolderId);
- if (strlen($image)) {
- $o_i = '<img src="'.$image.'" width="9" height="12" alt="">&nbsp;';
- }
- if(strlen($o) && strlen($attribs["_label"]))
- $o = $o_i.language($attribs["_label"]).$o;
- return $o;
-}
-
-function LoadPMs($attribs = array())
-{
- global $objPMList, $bb_var_list;
-
- $objPMList->Page = GetVar('ResetPage') == 1 ? 1 : $bb_var_list['pmp'];
- $objPMList->LoadUserPMs($attribs);
-}
-
-function bb_pm_list_count($attribs = array())
-{
- global $objPMList;
- LoadPMs($attribs);
- $o = $objPMList->QueryItemCount;
- if($o == '') $o = 0;
- return $o;
-}
-
-function bb_pm_list_sortlink($attribs = array())
-{
- return HREF_Wrapper('', Array('Action' => 'bb_pm_sort', 'col' => $attribs['_column'], 'FolderId' => (int)GetVar('FolderId')) );
-}
-
-function bb_pm_list_sorticon($attribs = array())
-{
- global $objSession;
-
- $field = $objSession->GetPersistantVariable("PMs_Sortfield");
- $order = $objSession->GetPersistantVariable("PMs_SortOrder");
- if(!strlen($order))
- $order = "asc";
- $url="";
- if($field==$attribs["_column"])
- {
- $key ="_selected".strtolower($order);
- $url = $attribs[$key];
- if(!strlen($url))
- $url = $attribs["_selected"];
- }
- else
- $url = $attribs["_unselected"];
- if(!strlen($url))
- $url = $attribs["_default"];
- return $url;
-}
-
-function bb_show_folder($attribs = array())
-{
- return $attribs['_folderid'] == (int)GetVar('FolderId') ? 'yes' : '';
-}
-
-function bb_not_sent()
-{
- global $objPMList, $objSession;
- $pm =& $objPMList->GetCurrentItem();
- if( is_object($pm) )
- {
- return $objSession->Get('PortalUserId') == $pm->Get('FromId') ? '' : 'yes';
- }
-}
-
-function bb_phrase_by_folder($attribs = array())
-{
- return language( GetVar('FolderId') == -1 ? 'lu_to' : 'lu_from' );
-}
-
-
-function bb_phrase_by_pm($attribs = array())
-{
- global $objPMList;
- $pm =& $objPMList->GetCurrentItem();
- return language( $pm->Get('FolderId') == -1 ? 'lu_to' : 'lu_from' );
-}
-function bb_pm_field($attribs = array())
-{
- global $objPMList;
- $pm =& $objPMList->GetCurrentItem();
- if( is_object($pm) )
- {
- $element = new clsHtmlTag();
- $element->name = $pm->TagPrefix;
- $element->attributes = $attribs;
- $o = $pm->ParseObject($element);
- $o = get_magic_quotes_gpc() ? $o : stripslashes($o);
- }
- else
- {
- $o = '';
- }
- return $o;
-}
-
-function bb_pm_setmark($attribs = array())
-{
- global $objPMList;
- $pm =& $objPMList->GetCurrentItem();
- if( is_object($pm) )
- {
- // set read mark
- if( $pm->Get('Status') < 2 )
- {
- $pm->Set('Status', 2);
- $pm->Update();
- }
- }
-}
-
-function bb_new_pm_count()
-{
- global $objSession;
- $db =& GetADODBConnection();
- $sql = 'SELECT COUNT(*)
- FROM '.GetTablePrefix().'PrivateMessages
- WHERE ToId = '.$objSession->Get('PortalUserId').' AND Status < 2';
- return $db->GetOne($sql);
-}
-
-
-function bb_popup_notify($attribs = array())
-{
-
-
-}
-
-?>
Property changes on: trunk/in-bulletin/parser.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.55
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-bulletin/emoticon.php
===================================================================
--- trunk/in-bulletin/emoticon.php (revision 12824)
+++ trunk/in-bulletin/emoticon.php (nonexistent)
@@ -1,269 +0,0 @@
-<?php
-class clsEmoticon extends clsParsedItem
-{
- var $Image;
-
- function clsEmoticon($id=NULL)
- {
- $this->clsParsedItem();
- $this->tablename=GetTablePrefix()."Emoticon";
- $this->NoResourceId=1;
- $this->id_field = "EmoticonId";
- $this->TagPrefix = "smiley";
-
- if($id)
- $this->LoadFromDatabase($id);
- }
-
- function Delete()
- {
- $i = $this->GetImageObject();
- if(is_object($i))
- $i->Delete();
- parent::Delete();
- }
-
- function LoadFromDatabase($Id)
- {
- global $Errors;
-
- if(!isset($Id))
- {
- $Errors->AddError("error.AppError",NULL,'Internal error: LoadFromDatabase id',"",get_class($this),"LoadFromDatabase");
- return false;
- }
- $sql = sprintf("SELECT * FROM ".$this->tablename." WHERE ".$this->IdField()." = '%s'",$Id);
- // echo $sql;
- $result = $this->adodbConnection->Execute($sql);
- if ($result === false)
- {
- $Errors->AddError("error.DatabaseError",NULL,$this->adodbConnection->ErrorMsg(),"",get_class($this),"LoadFromDatabase");
- return false;
- }
- $data = $result->fields;
- $this->SetFromArray($data);
- $this->Clean();
- return true;
- }
-
- function &GetImageObject()
- {
- if(!is_object($this->Image))
- {
- $this->Image = new clsImage($this->Get("ImageId"));
- }
- return $this->Image;
- }
-
- function GetURL()
- {
- $img =& $this->GetImageObject();
- return $img->FullURL();
- }
-
- function ParseObject($element)
- {
- $extra_attribs = ExtraAttributes($element->attributes);
- if(strtolower($element->name)==$this->TagPrefix)
- {
- $field = strtolower($element->attributes["_field"]);
- switch($field)
- {
- case "name":
- /*
- @field:smiley.name
- @description:text name of the smiley image
- */
- $ret = $this->Get("Name");
- break;
- case "keystroke":
- /*
- @field:smiley.keystroke
- @description:keystroke equivelent of the smiley
- */
- $ret = $this->Get("KeyStroke");
- break;
- case "url":
- /*
- @field:smiley.url
- @description:Image URL pointing to the smiley image
- @attrib:_fulltag:bool:If set, returns a complete image tag, otherwise just the url is returned
- */
- $src = $this->GetURL();
- if($element->attributes["_fulltag"])
- {
- $ret = "<IMG $extra_attribs src=\"$src\">";
- }
- else
- $ret = $src;
- break;
- }
- }
- return $ret;
- }
-}
-
-class clsEmoticonList extends clsItemCollection
-{
- var $UrlCache;
- var $SmileyIndex = Array(); // used for quick smiley conversion
-
-
- function clsEmoticonList()
- {
- $this->clsItemCollection();
- $this->classname = "clsEmoticon";
- $this->SourceTable = GetTablePrefix()."Emoticon";
- $this->AdminSearchFields = array($this->SourceTable.".Name","KeyStroke");
- $this->UrlCache = Array();
- }
-
- function AddEmoticon($Name,$KeyStroke,$ImageId,$Enabled=1)
- {
- $e = new clsEmoticon();
- $e->Set(array("Name","KeyStroke","ImageId","Enabled"),
- array($Name,$KeyStroke,$ImageId,$Enabled));
- $e->Create();
- return $e;
- }
-
- function EditEmoticon($EmotionId,$Name,$KeyStroke,$ImageId=-1,$Enabled=1)
- {
- $e = $this->GetItem($EmotionId);
- if($ImageId==-1)
- $ImageId=$e->Get("ImageId");
- $e->Set(array("Name","KeyStroke","ImageId","Enabled"),
- array($Name,$KeyStroke,$ImageId,$Enabled));
- $e->Update();
- return $e;
- }
-
- function DeleteEmoticon($EmoticonId)
- {
- $e = $this->GetItem($EmoticonId,TRUE);
- if(is_object($e))
- {
- if($e->Get("EmoticonId")==$EmoticonId)
- $e->Delete();
- }
- }
-
- function UploadEmoticon($file,$Name,$KeyStroke,$Enabled,$IsUpload=TRUE)
- {
- $objImageList = new clsImageList();
- $LocalImage = 1;
-
- $LocalThumb = 1;
- if (strlen($_POST["imgThumbURL"])==0)
- $LocalThumb = 1;
-
- $img = $objImageList->Add($Name, $Name, 0, 1, 1, "", "", $Enabled, 0, 0, 0,1);
- $localpath = $img->StoreUploadedImage($file,1, "in-bulletin/images/emoticons/",0,$IsUpload);
- $img->Set("LocalPath",$localpath);
- $img->Set("ThumbPath",$localpath);
- $img->Update();
- $e = $this->AddEmoticon($Name,$KeyStroke,$img->Get("ImageId"),$Enabled);
- return $e;
- }
-
- function &LoadEmoticons($where=NULL,$orderBy=NULL)
- {
- $this->Clear();
- $etable = $this->SourceTable;
- $itable = GetTablePrefix()."Images";
-
- $sql = "SELECT ".$this->SourceTable.".*,$itable.LocalPath FROM $etable LEFT JOIN $itable ON ($etable.ImageId=$itable.ImageId)";
- //echo $sql."<br>";
- if(strlen(trim($where))>0)
- $sql .= " WHERE $where";
- if(strlen(trim($orderBy))>0)
- $sql .= " ORDER BY $orderBy";
- //$sql = str_replace(" ORDER BY ".GetTablePrefix()."Emoticon.Image", " ORDER BY ".GetTablePrefix()."Emoticon.ImageId", $sql);
- //echo $sql;
- $this->Query_Item($sql);
-
- // create Smiley Index
- $i = 0; $sm_count = $this->NumItems();
- while($i < $sm_count)
- {
- $this->SmileyIndex[ $this->Items[$i]->Get('KeyStroke') ] = $this->GetEmoticonUrl( $this->Items[$i]->UniqueId() );
- $i++;
- }
-
- return $this->Items;
- }
-
- function &LoadActiveEmoticons()
- {
- $order = "CHAR_LENGTH(KeyStroke) DESC";
- return $this->LoadEmoticons($this->SourceTable.".Enabled=1",$order);
- }
-
- function GetEmoticonUrl($id)
- {
- global $rootURL, $pathtoroot;
-
- $url = isset($this->UrlCache[$id]) ? trim($this->UrlCache[$id]) : '';
- if(!strlen($url))
- {
- $i =& $this->GetItem($id);
-
- $url = $i->Get("LocalPath");
-// if(file_exists($pathtoroot.$url))
-// {
- if(strlen($url))
- {
- $url = $rootURL.$url;
- }
- else
- $url = " ";
- $this->UrlCache[$id] = $url;
- return trim($url);
-// }
-// else
-// return "";
- }
- else
- return $url;
- }
-
- function ParseText($src)
- {
- if($this->NumItems()==0)
- {
- $this->LoadActiveEmoticons();
- }
- $ret = $src;
- for($x=0;$x<$this->NumItems();$x++)
- {
- $i =& $this->Items[$x];
- $url = $this->GetEmoticonUrl($i->Get("EmoticonId"));
- if(strlen($url))
- {
- $tag = '<img class="emoticon" src="'.$url.'">';
- }
- else
- $tag="";
- $ret = str_replace($i->Get("KeyStroke"),$tag,$ret);
-// echo "Replacing ".$i->Get("KeyStroke")." with ".htmlentities($tag)."<br>\n";
- }
-
- return $ret;
- }
-
- /**
- * @return string
- * @param string $text
- * @desc Remove smiley images html back with their codes
- */
- function UndoSmileys($text)
- {
- foreach($this->SmileyIndex as $KeyStoke => $SmileURL)
- {
- $text = str_replace('<img class="emoticon" src="'.$SmileURL.'">',$KeyStoke,$text);
- }
- return $text;
- }
-}
-
-
Property changes on: trunk/in-bulletin/emoticon.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/quicklinks/edpick.tpl
===================================================================
--- trunk/themes/default/inbulletin/quicklinks/edpick.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/quicklinks/edpick.tpl (nonexistent)
@@ -1,7 +0,0 @@
-<table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="friend-box-top"><inp:m_language _Phrase="lu_editors_picks" /></td>
- </tr>
- <inp:include _Template="inbulletin/quicklinks/edpick/topics.tpl" _DataExists=1 />
-</table>
-
Property changes on: trunk/themes/default/inbulletin/quicklinks/edpick.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/quicklinks/new.tpl
===================================================================
--- trunk/themes/default/inbulletin/quicklinks/new.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/quicklinks/new.tpl (nonexistent)
@@ -1,8 +0,0 @@
-<inp:m_module_link _Module="In-Link" _Text="lu_links" _Template="new.tpl" _Root="1">
-<table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="friend-box-top"><inp:m_language _Phrase="lu_new_links" /></td>
- </tr>
- <inp:include _Template="inbulletin/quicklinks/new/links.tpl" _DataExists=1 />
-</table>
-</inp>
Property changes on: trunk/themes/default/inbulletin/quicklinks/new.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/quicklinks/new/links_element.tpl
===================================================================
--- trunk/themes/default/inbulletin/quicklinks/new/links_element.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/quicklinks/new/links_element.tpl (nonexistent)
@@ -1,5 +0,0 @@
- <tr ALIGN="left">
- <td align="right"><img src="img/arr_yell.gif" width="7" height="7" alt="" /></td>
- <td class="quick-links" WIDTH="100%" ><a href="<inp:link _Field="cat_link" _Template="__default__" />"><inp:link _field="name" /></a></td>
- </tr>
-
Property changes on: trunk/themes/default/inbulletin/quicklinks/new/links_element.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/quicklinks/new/links.tpl
===================================================================
--- trunk/themes/default/inbulletin/quicklinks/new/links.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/quicklinks/new/links.tpl (nonexistent)
@@ -1,19 +0,0 @@
-<tr>
- <td class="bgr-quick-links">
- <inp:m_module_link _Module="In-Link" _Text="lu_links" _Template="new.tpl" _Root="1">
- <table width="100%" border="0" cellspacing="0" cellpadding="1">
- <tr>
- <td colspan="2" class="quick-title">
- <inp:m_module_link _Module="In-Link" _Text="lu_links" _Template="new.tpl" _Root="1" />
- <span>(<inp:l_list_count _ListType="new" _Paging="0" _MaxCount="10" _ShortList="1" />)</span>
- <img src="img/arr_more.gif" width="16" height="7" alt="" />
- </td>
- </tr>
- <inp:l_list_links _ListType="new" _Paging="0" _MaxCount="10" _ShortList="1" _ItemTemplate="inlink/quicklinks/new/links_element.tpl" />
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
- </table>
- </inp>
- </td>
-</tr>
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/quicklinks/new/links.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/quicklinks/edpick/topic_element.tpl
===================================================================
--- trunk/themes/default/inbulletin/quicklinks/edpick/topic_element.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/quicklinks/edpick/topic_element.tpl (nonexistent)
@@ -1,4 +0,0 @@
- <tr>
- <td align="right"><img src="img/arr_yell.gif" width="7" height="7" alt="" /></td>
- <td class="quick-links" WIDTH="100%"><a href="<inp:topic _field="link" _Template="__default__" />" class="posts"><inp:topic _field="text" /></a></td>
- </tr>
Property changes on: trunk/themes/default/inbulletin/quicklinks/edpick/topic_element.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/quicklinks/edpick/topics.tpl
===================================================================
--- trunk/themes/default/inbulletin/quicklinks/edpick/topics.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/quicklinks/edpick/topics.tpl (nonexistent)
@@ -1,18 +0,0 @@
-<tr>
- <td class="bgr-quick-links" valign="top">
- <table width="100%" border="0" cellspacing="0" cellpadding="1">
- <tr>
- <td colspan="2" class="quick-title">
- <inp:m_module_link _Module="In-Bulletin" _Text="lu_forums" _Template="pick" _Root="1" />
- <span class="statistics">(<inp:bb_list_count _ListType="pick" _ShortList="1" _Paging="0" />)</span>
- <img src="img/arr_more.gif" width="16" height="7" alt="" />
- </td>
- </tr>
- <inp:bb_topic_list _ListType="pick" _ShortList="1" _Paging="0" _ItemTemplate="inbulletin/quicklinks/edpick/topic_element.tpl" />
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
- </table>
- </td>
-</tr>
-
Property changes on: trunk/themes/default/inbulletin/quicklinks/edpick/topics.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/favorites_element.tpl
===================================================================
--- trunk/themes/default/inbulletin/favorites_element.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/favorites_element.tpl (nonexistent)
@@ -1,45 +0,0 @@
-<tr>
- <td><img src="inbulletin/img/ic_forum.gif" width="20" height="15" alt="" /><br /></td>
- <td NOWRAP="nowrap"><a href="<inp:topic _field="link" _Template="__default__" />" class="posts"><inp:topic _field="text" /></a>&nbsp;&nbsp;
- <inp:topic _field="hot"><img src="img/ic_hot.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_hot" />" /></inp>
- <inp:topic _field="new"><img src="img/ic_new.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_new" />" /></inp>
- <inp:topic _field="pop"><img src="img/ic_pop.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_pop" />" /></inp>
- <inp:topic _field="pick"><img src="img/ic_pick.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_editors_pick" />" /></inp>
- <SPAN CLASS="pagination">
- <inp:topic _field="post_pagelist" _DestTemplate="__default__" CLASS="post_pagenav" />
- </SPAN>
- <BR />
- <span class="comments"><inp:m_language _Phrase="lu_category" />:</span> <span class="tips">
- <a href="<inp:topic _field="cat_link" _Template="__default__" />"><inp:topic _field="fullpath" /></a></span>
- <BR />
- </td>
- <td align="center" class="poster"><inp:topic _field="PostedBy" /></td>
- <td align="center" class="forum-data"><inp:topic _field="modifieddate"/><br />
- <span class="forum-time"><inp:topic _field="modifieddate" _part="time" /></span></td>
- <td align="center" class="forum-data"><inp:topic _field="replies" /></td>
- <td align="center" class="forum-data"><inp:topic _field="views" /></td>
-</tr>
-<TR><TD> &nbsp;</TD>
- <TD COLSPAN=5>
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/ic_remove.gif" width="16" height="16" alt="" /><br /></td>
- <td class="links-action"><A HREF="<inp:topic _field="del_favorite_link" />"><inp:m_language _Phrase="lu_remove_from_favorites" /></A></TD>
- <inp:topic _field="link_edit">
- <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
- <td><img src="img/ic_edit.gif" width="16" height="16" alt="" /><br /></td>
- <TD CLASS="links-action"> <inp:topic _Template="inbulletin/edit_topic" _field="link_edit" _Text="lu_edit" /></TD>
- </inp>
- <inp:topic _field="link_delete">
- <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
- <td><img src="img/ic_delete.gif" width="16" height="16" alt="" /><br /></td>
- <TD CLASS="links-action"> <inp:topic _field="link_delete" _Text="lu_delete" /></TD>
- </inp>
- </TR>
- </TABLE>
- </TD>
-</TR>
-<tr>
- <td colspan="6" class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
-</tr>
-
Property changes on: trunk/themes/default/inbulletin/favorites_element.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/topic_reply.tpl
===================================================================
--- trunk/themes/default/inbulletin/topic_reply.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/topic_reply.tpl (nonexistent)
@@ -1,88 +0,0 @@
-<inp:include _template="common/head.tpl" />
-<SCRIPT language="JavaScript" SRC="<inp:m_theme_url _Page="incs/smiley.js" />"></SCRIPT>
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr height="100%">
- <td valign="top">
- <!-- navbar -->
- <img src="img/s.gif" width="10" height="1" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td style="background: url('img/bgr_path_full.jpg')">
- <img src="img/s.gif" width="769" height="1" alt="" /><br />
- </td>
- </tr>
- <tr>
- <td width=769 style="background: url('img/bgr_path_full.jpg')">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
- <td class="path" WIDTH="10000"><inp:m_navbar _RootTemplate="index" _Template="__default__" _LinkCurrent="1" _Module="In-Bulletin" _ModuleRootTemplate="__default__" _separator=" &gt; " /></td>
- </tr>
- </table>
- </td>
-
- </tr>
- </table>
- <!-- end navbar -->
- <!-- profile update line -->
- <img src="img/s.gif" width="1" height="1" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-updatefill" width="10000"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- </tr>
- </table>
- <!-- end profile update line -->
-
- <!-- profile -->
- <img src="img/s.gif" width="1" height="1" alt="" /><br />
- <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" width="10000" class="bgr-myaccount">
- <!-- page title -->
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="50"><img src="inbulletin/img/ic_forum_big.gif" width="46" height="46" alt="" /><br /></td>
- <td><h1><inp:m_language _Phrase="lu_topic_reply" /></h1></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <!-- end page title -->
- <inp:include _Template="inbulletin/topic_reply/topic_reply_form.tpl" _noaccess="access_denied.tpl" _Permission="TOPIC.REPLY,TOPIC.REPLY.PENDING" />
- <!-- end suggest link content -->
- </td>
- </tr>
- </table>
- </td>
-
- <!-- white line content/right column
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
-
- <td valign="top">&nbsp;</td>
- right column //-->
-
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
-
- <inp:include _Template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
-
Property changes on: trunk/themes/default/inbulletin/topic_reply.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/my_items/myitems_element.tpl
===================================================================
--- trunk/themes/default/inbulletin/my_items/myitems_element.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/my_items/myitems_element.tpl (nonexistent)
@@ -1,49 +0,0 @@
-<tr>
- <td style="padding: 10px; padding-left: 0px">
- <img src="inbulletin/img/ic_forum.gif" width="20" height="17" alt="" align="left" style="margin-right: 5px" />
- <a href="<inp:topic _field="link" _Template="__default__" />" class="posts"><inp:topic _field="text" /></a>&nbsp;&nbsp;
- <inp:topic _field="hot"><img src="img/ic_hot.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_hot" />" /></inp>
- <inp:topic _field="new"><img src="img/ic_new.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_new" />" /></inp>
- <inp:topic _field="pop"><img src="img/ic_pop.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_pop" />" /></inp>
- <inp:topic _field="pick"><img src="img/ic_pick.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_editors_pick" />" /></inp>
- <br />
- <span class="forum-time">(<inp:m_language _Phrase="lu_by" /> <inp:topic _field="PostedBy" />)</span>
-
- <span class="pagination"><inp:topic _field="post_pagelist" _DestTemplate="__default__" CLASS="post_pagenav" /></SPAN>
- <BR />
- <span class="comments"><inp:m_language _Phrase="lu_category" />:</span> <span class="tips">
- <a href="<inp:topic _field="cat_link" _Template="__default__" />"><inp:topic _field="fullpath" /></a></span>
- </td>
- <td align="center" nowrap><inp:topic _Field="rating" _DisplayMode="graphical" _OffImage="img/star.gif" _OnImage="img/star_rate.gif" /></td>
- <td align="center" class="forum-data"><inp:topic _field="replies" /></td>
- <td align="center" class="forum-data"><inp:topic _field="views" /></td>
- <td align="center" class="forum-data" style="padding: 10px;">
- <span class="forum-time"><inp:topic _field="modifieddate" /><br />
- <inp:topic _field="modifieddate" _part="time" /></span><br>
- <inp:m_language _Phrase="lu_by" /> <inp:topic _field="PostedBy" />
- </td>
-</tr>
-
-<TR>
- <TD COLSPAN=5 style="padding-bottom: 15px">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <inp:topic _field="link_edit">
- <td><img src="img/ic_edit.gif" width="16" height="16" alt="" /><br /></td>
- <TD CLASS="links-action"><inp:topic _Template="inbulletin/edit_topic.tpl" _field="link_edit" _Text="lu_edit" /></TD>
- </inp>
-
- <inp:topic _field="link_delete">
- <td><img src="img/sep.gif" width="21" height="9" alt=""/><br /></td>
- <td><img src="img/ic_delete.gif" width="16" height="16" alt="" /><br /></td>
- <TD CLASS="links-action"><inp:topic _field="link_delete" _Text="lu_delete" /></TD>
- </inp>
- </TR>
- </table>
- </TD>
-</TR>
-
-<tr>
- <td colspan="5" class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
-</tr>
-
Property changes on: trunk/themes/default/inbulletin/my_items/myitems_element.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/my_items/right.tpl
===================================================================
--- trunk/themes/default/inbulletin/my_items/right.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/my_items/right.tpl (nonexistent)
@@ -1,30 +0,0 @@
-<table width="100%" HEIGHT="100%" border="0" cellspacing="0" cellpadding="0">
- <TR>
- <TD>
- <!-- login box -->
- <inp:m_loginbox _LoginTemplate="misc/right_login" _LoggedInTemplate="misc/right_loggedin" />
- <!-- end login box -->
- </TD>
- </TR>
- <tr>
- <td>
- <!-- search box -->
- <inp:include _Template="misc/right_searchbox" />
- <!-- end search box -->
- </TD>
- </TR>
- <tr>
- <td>
- <!-- recommend to friend box -->
- <inp:include _Template="misc/right_recommend" />
- <!-- end recommend box -->
- </td>
- </tr>
- <TR>
- <TD height="100%">
- <!-- quick links box -->
- <inp:include _Template="inbulletin/quicklinks/edpick.tpl" _DataExists="1" />
- <!-- end quick links box -->
- </TD>
- </TR>
-</TABLE>
Property changes on: trunk/themes/default/inbulletin/my_items/right.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/pick.tpl
===================================================================
--- trunk/themes/default/inbulletin/pick.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/pick.tpl (nonexistent)
@@ -1,71 +0,0 @@
-<inp:include _template="common/head.tpl" />
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="10000"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="200" height="1" alt="" /><br /></td>
- </tr>
- <tr height="100%">
- <td valign="top">
- <!-- navbar -->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td style="background: url('img/bgr_path.jpg')"><img src="img/s.gif" width="549" height="1" alt="" /><br /></td>
- <td bgcolor="#61b0ec"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- <tr>
- <td class="bgr-path">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top" width="17"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
- <td class="path"><inp:m_navbar _RootTemplate="index" _separator=" &gt; " /></td>
- <td align="right">
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr>
- <td><img src="<inp:m_lang_field _Field="icon" _default="img/ic_flag.gif"/>" width="18" height="12" alt="" /><br /></td>
- <td>&nbsp;</td>
- <td class="post-action"><span onclick="showSeg('langmenu',true); "><inp:m_lang_field _Field="LocalName" /></span></td>
- <td>&nbsp;&nbsp;</td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <inp:include _Template="lang_select/lang_menu.tpl" />
- </td>
- </table>
- <!-- end navbar -->
-
- <!-- topics -->
- <inp:include _template="inbulletin/pick/topics.tpl" />
- <!-- topics -->
- </td>
-
- <!-- start vertical white line in main conent table -->
- <!-- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td> -->
- <!-- end vertical white line in main conent table -->
-
-
- <!-- start right flexible cell in main content table -->
- <td valign="top" height="100%" class="open-box">
- <inp:include _template="inbulletin/pick/right.tpl" />
- </td>
- <!-- end right flexible cell in main content table -->
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
-
- <inp:include _Template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/pick.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/main.tpl
===================================================================
--- trunk/themes/default/inbulletin/main.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/main.tpl (nonexistent)
@@ -1,88 +0,0 @@
-<!-- forum update line -->
-<img src="img/s.gif" width="1" height="1" alt="" /><br />
-<table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-updatefill" width="10000"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td nowrap="nowrap" class="updated"><inp:m_language _Phrase="lu_posts_updated" />: <inp:bb_topic_modified /></td>
- </tr>
-</table>
-<!-- end forum update line -->
-<img src="img/s.gif" width="1" height="1" alt="" /><br />
-<table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" width="10000" class="bgr-forum">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="5"><h2><inp:m_module_link _Module="In-Bulletin" _Template="index" _Text="lu_topics" _Root="1"/></h2></td>
- </tr>
- <tr>
- <td colspan="5"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
- <tr>
- <td class="statistics"><span><inp:m_itemcount _ItemType="Post" _GroupOnly="1" /></SPAN>&nbsp;<inp:m_language _Phrase="lu_posts" /> <inp:m_language _Phrase="lu_in"/> <span><inp:m_itemcount _ItemType="Topic" _GroupOnly="1" /></span>&nbsp;<inp:m_language _Phrase="lu_topics" /></td>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td class="statistics"><inp:m_language _Phrase="lu_added_today" />:&nbsp;<span><inp:m_itemcount _ItemType="Post" _Today="1" _GroupOnly="1" /></span></td>
- <td><img src="img/s.gif" width="10" height="1" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="5"><img src="img/s.gif" width="1" height="3" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="5" class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- </table>
-
- <!-- forum content -->
- <br />
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr class="statistics">
- <td><img src="img/s.gif" width="21" height="1" alt="" /><br /></td>
- <td width="80%" align="center">
- <a href="<inp:bb_topic_list_sortlink _Column="TopicText" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="TopicText" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_topics" /></td>
-
- <td align="center" nowrap>
- <img src="img/s.gif" width="100" height="1" alt="" /><br />
- <a href="<inp:bb_topic_list_sortlink _Column="PostedBy" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="PostedBy" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_poster" /></a></td>
-
- <td align="center" nowrap>
- <img src="img/s.gif" width="70" height="1" alt="" /><br />
- <a href="<inp:bb_topic_list_sortlink _Column="Modified" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="Modified" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_date" /></a></td>
-
- <td align="center" nowrap>
- <img src="img/s.gif" width="50" height="1" alt="" /><br />
- <a href="<inp:bb_topic_list_sortlink _Column="Posts" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="Posts" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_replies" /></a></td>
-
- <td align="center" nowrap>
- <img src="img/s.gif" width="50" height="1" alt="" /><br />
- <a href="<inp:bb_topic_list_sortlink _Column="Views" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="Views" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_views" /></a></td>
-
- </tr>
- <inp:bb_topic_list _ListType="pick" _UseRoot="1" _ShortList="1" _ItemTemplate="inbulletin/main/main_element" _LastItemTemplate="inbulletin/main/main_element_last" />
- <tr>
- <td align="right" valign="top" class="posts" colspan="6">
- <a href="<inp:bb_root_link _Template="__default__" />"><inp:m_language _Phrase="lu_more" /></a><img src="img/arr_more.gif" width="16" height="7" alt="" />
- </td>
- </tr>
- </table>
- <!-- end forum content -->
- </td>
- </tr>
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="2" class="bgr-separate"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
-</table>
Property changes on: trunk/themes/default/inbulletin/main.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/edit_topic.tpl
===================================================================
--- trunk/themes/default/inbulletin/edit_topic.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/edit_topic.tpl (nonexistent)
@@ -1,93 +0,0 @@
-<inp:include _template="common/head.tpl" />
-<SCRIPT language="JavaScript" SRC="<inp:m_theme_url _Page="incs/smiley.js" />"></SCRIPT>
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr height="100%">
- <td valign="top">
- <!-- navbar -->
- <img src="img/s.gif" width="10" height="1" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td style="background: url('img/bgr_path_full.jpg')">
- <img src="img/s.gif" width="769" height="1" alt="" /><br />
- </td>
- </tr>
- <tr>
- <td width=769 style="background: url('img/bgr_path_full.jpg')">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
- <td class="path" WIDTH="10000"><inp:m_navbar _RootTemplate="index" _Template="__default__" _LinkCurrent="1" _Module="In-Bulletin" _ModuleRootTemplate="__default__" _separator=" &gt; " /></td>
- </tr>
- </table>
- </td>
-
- </tr>
- </table>
- <!-- end navbar -->
-
- <!-- profile update line -->
- <img src="img/s.gif" width="1" height="1" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-updatefill" width="10000"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- </tr>
- </table>
- <!-- end profile update line -->
-
- <!-- profile -->
- <img src="img/s.gif" width="1" height="1" alt="" /><br />
- <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" width="10000" class="bgr-myaccount">
- <!-- page title -->
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="50"><img src="inbulletin/img/ic_forum_big.gif" width="46" height="46" alt="" /><br /></td>
- <td><h1><inp:m_language _Phrase="lu_edit_topic" /></h1></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <!-- end page title -->
- <inp:include _Template="inbulletin/edit_topic/edit_topic_form.tpl" _noaccess="access_denied.tpl" _Permission="TOPIC.MODIFY,TOPIC.MODIFY.PENDING,TOPIC.OWNER.MODIFY,TOPIC.OWNER.MODIFY.PENDING" />
- <!-- end suggest link content -->
- </td>
- </tr>
- </table>
- </td>
-
- <!-- start vertical white line in main conent table -->
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <!-- end vertical white line in main conent table -->
-
-
- <!-- start right flexible cell in main content table -->
- <td valign="top">
- &nbsp;
- </td>
- <!-- end right flexible cell in main content table -->
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
-
- <inp:include _Template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
-
Property changes on: trunk/themes/default/inbulletin/edit_topic.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/topic_list/topics/element_last.tpl
===================================================================
--- trunk/themes/default/inbulletin/topic_list/topics/element_last.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/topic_list/topics/element_last.tpl (nonexistent)
@@ -1,27 +0,0 @@
-<tr>
- <!--<td><img src="inbulletin/img/ic_forum.gif" width="20" height="17" alt="" /><br /></td>-->
- <td style="padding: 10px; padding-left: 0px">
- <img src="inbulletin/img/ic_forum.gif" width="20" height="17" alt="" align="left" style="margin-right: 5px" />
-
- <!-- _NumChars="8" -->
- <a href="<inp:topic _field="link" _Template="__default__" />" class="posts"><inp:topic _field="text" /></a>&nbsp;&nbsp;
- <inp:topic _field="locked"><IMG SRC="img/ic_lock.gif" /></inp>
- <inp:topic _field="hot"><img src="img/ic_hot.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_hot" />" /></inp>
- <inp:topic _field="new"><img src="img/ic_new.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_new" />" /></inp>
- <inp:topic _field="pop"><img src="img/ic_pop.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_pop" />" /></inp>
- <inp:topic _field="pick"><img src="img/ic_pick.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_editors_pick" />" /></inp><br />
- <span class="forum-time">(<inp:m_language _Phrase="lu_by" /> <inp:topic _field="PostedBy" />)</span>
-
- <inp:topic _field="post_pagelist" _DestTemplate="__default__" CLASS="post_pagenav" />
- </td>
- <!--<td align="center" class="poster"><inp:topic _field="PostedBy" /></td>-->
- <td align="center" class="forum-data"><inp:topic _field="replies" /></td>
- <td align="center" class="forum-data"><inp:topic _field="views" /></td>
- <td align="center" class="forum-data" nowrap>
- <span class="forum-time"><inp:topic _field="lastpostdate" /><BR />
- <inp:topic _field="lastpostdate" _Part="time" /></span><br />
- <inp:m_language _Phrase="lu_by" /> <inp:topic _field="LastPoster" />
- </td>
- <!--<td align="center" class="poster"><inp:topic _field="lastposter" /></TD>-->
-</tr>
-
Property changes on: trunk/themes/default/inbulletin/topic_list/topics/element_last.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/topic_list/topics/element.tpl
===================================================================
--- trunk/themes/default/inbulletin/topic_list/topics/element.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/topic_list/topics/element.tpl (nonexistent)
@@ -1,30 +0,0 @@
-<tr>
- <!--<td><img src="inbulletin/img/ic_forum.gif" width="20" height="17" alt="" /><br /></td>-->
- <td style="padding: 10px; padding-left: 0px">
- <img src="inbulletin/img/ic_forum.gif" width="20" height="17" alt="" align="left" style="margin-right: 5px" />
- <!-- _NumChars="8" -->
- <a href="<inp:topic _field="link" _Template="__default__" />" class="posts"><inp:topic _field="text" /></a>&nbsp;&nbsp;
- <inp:topic _field="locked"><IMG SRC="img/ic_lock.gif" /></inp>
- <inp:topic _field="hot"><img src="img/ic_hot.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_hot" />" /></inp>
- <inp:topic _field="new"><img src="img/ic_new.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_new" />" /></inp>
- <inp:topic _field="pop"><img src="img/ic_pop.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_pop" />" /></inp>
- <inp:topic _field="pick"><img src="img/ic_pick.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_editors_pick" />" /></inp>
- <br>
- <span class="forum-time">(<inp:m_language _Phrase="lu_by" /> <inp:topic _field="PostedBy" />)</span>
-
- <inp:topic _field="post_pagelist" _DestTemplate="__default__" CLASS="post_pagenav" /><br>
- </td>
- <!--<td align="center" class="poster"><inp:topic _field="PostedBy" /></td>-->
- <td align="center" class="forum-data"><inp:topic _field="replies" /></td>
- <td align="center" class="forum-data"><inp:topic _field="views" /></td>
- <td align="center" class="forum-data" style="padding: 10px;" nowrap>
- <span class="forum-time"><inp:topic _field="lastpostdate" /><BR />
- <inp:topic _field="lastpostdate" _Part="time" /></SPAN><br>
- <inp:m_language _Phrase="lu_by" /> <inp:topic _field="LastPoster" />
- </td>
- <!--<td align="center" class="poster"><inp:topic _field="lastposter" /></TD>-->
-</tr>
-<tr>
- <td colspan="8" class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
-</tr>
-
Property changes on: trunk/themes/default/inbulletin/topic_list/topics/element.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/topic_list/topics.tpl
===================================================================
--- trunk/themes/default/inbulletin/topic_list/topics.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/topic_list/topics.tpl (nonexistent)
@@ -1,129 +0,0 @@
-<!-- forum update line -->
-<img src="img/s.gif" width="1" height="1" alt="" /><br />
-<table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-updatefill" width="10000"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td nowrap="nowrap" class="updated"><inp:m_language _Phrase="lu_topics_updated" />: <inp:bb_topic_modified />&nbsp;</td>
- </tr>
-</table>
-<!-- end forum update line -->
-
-<img src="img/s.gif" width="1" height="1" alt="" /><br />
-<table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" width="10000">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="5"><h2><inp:m_language _Phrase="lu_topics" /> <span>(<inp:bb_list_count _paging="1" />)</span></h2></td>
- </tr>
- <tr>
- <td colspan="5"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
- <tr>
- <td class="statistics">
- <span><inp:m_itemcount _ItemType="Post" _GroupOnly="1" /></SPAN>&nbsp;<inp:m_language _Phrase="lu_posts" />
- <inp:m_language _Phrase="lu_in"/>
- <span><inp:m_itemcount _ItemType="Topic" _GroupOnly="1" /></span>&nbsp;<inp:m_language _Phrase="lu_topics" /></td>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td class="statistics">
- <inp:m_language _Phrase="lu_added_today" />:&nbsp;<inp:m_itemcount _ItemType="Topic" _Today="1" _GroupOnly="1" />&nbsp;<inp:m_language _Phrase="lu_topics" />,&nbsp;<inp:m_itemcount _ItemType="Post" _Today="1" _GroupOnly="1" />&nbsp;<inp:m_language _Phrase="lu_posts" />
- </td>
- <td><img src="img/s.gif" width="10" height="1" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="5"><img src="img/s.gif" width="1" height="3" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="5" class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- </table>
- <br />
-
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <inp:m_module_link _module="In-Bulletin" _Perm="TOPIC.ADD">
- <!-- NEW TOPIC BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0">
- <tr valign="top">
- <td class="btn-l-side"><img src="inbulletin/img/btn_corn1.gif" width="11" height="16" alt="" /><br /></td>
- <td class="btn-text"><inp:m_module_link _Template="new_topic" _module="In-Bulletin" _Perm="TOPIC.ADD" _Text="lu_new_topic" /></td>
- <td class="btn-r-side"><inp:m_module_link _Template="new_topic" _module="In-Bulletin" _Perm="TOPIC.ADD" _image="inbulletin/img/btn_new_topic.gif" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_corn2.gif" width="11" height="10" alt="" /><br /></td>
- <td class="btn-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-bot" align="right"><img src="inbulletin/img/btn_corn2_.gif" width="11" height="10" alt="" /><br /></td>
- </tr>
- </table>
- <!-- NEW TOPIC BUTTON \\-->
- </inp:m_module_link>
- </td>
- <td class="pagination" align="right"><inp:bb_topic_pagenav _Label="lu_page_label" _PageIcon="img/ic_pages.gif" /></td>
- </tr>
- </table><img src="img/s.gif" width="1" height="5" alt="" /><br />
-
-
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr class="posts-tbl-hdr">
- <td width="100%" style="text-align: left; border-left: 1px solid #ccc">
- &nbsp; <a href="<inp:bb_topic_list_sortlink _Column="TopicText" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="TopicText" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_topics" /></a></td>
-
- <!--<td nowrap>
- <a href="<inp:bb_topic_list_sortlink _Column="PostedBy" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="PostedBy" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_poster" /></a></td>-->
-
- <td nowrap>
- <a href="<inp:bb_topic_list_sortlink _Column="Posts" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="Posts" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_replies" /></a></td>
- <td nowrap>
- <a href="<inp:bb_topic_list_sortlink _Column="Views" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="Views" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_views" /></a></td>
- <td nowrap>
- <a href="<inp:bb_topic_list_sortlink _Column="LastPostDate" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="LastPostDate" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_lastpost" /></a></td>
- <!--
- <td nowrap style="border-right: 1px solid #ccc">
- <a href="<inp:bb_topic_list_sortlink _Column="LastPoster" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="LastPoster" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_lastposter" /></a>&nbsp;</td>
- -->
- </tr>
-
- <inp:bb_topic_list _ItemTemplate="inbulletin/topic_list/topics/element.tpl" _LastItemTemplate="inbulletin/topic_list/topics/element_last.tpl" />
-
- </table>
-
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <inp:m_module_link _module="In-Bulletin" _Perm="TOPIC.ADD">
- <!-- NEW TOPIC BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0">
- <tr valign="top">
- <td class="btn-l-side"><img src="inbulletin/img/btn_corn1.gif" width="11" height="16" alt="" /><br /></td>
- <td class="btn-text"><inp:m_module_link _Template="new_topic" _module="In-Bulletin" _Perm="TOPIC.ADD" _Text="lu_new_topic" /></a></td>
- <td class="btn-r-side"><inp:m_module_link _Template="new_topic" _module="In-Bulletin" _Perm="TOPIC.ADD" _image="inbulletin/img/btn_new_topic.gif" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_corn2.gif" width="11" height="10" alt="" /><br /></td>
- <td class="btn-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-bot" align="right"><img src="inbulletin/img/btn_corn2_.gif" width="11" height="10" alt="" /><br /></td>
- </tr>
- </table><img src="img/s.gif" width="1" height="5" alt="" /><br />
- <!-- NEW TOPIC BUTTON \\-->
- </inp>
- </td>
- <td class="pagination" align="right"><!--<img src="img/ic_pages.gif" width="9" height="12" alt="" />--> <inp:bb_topic_pagenav _Label="lu_page_label" _PageIcon="img/ic_pages.gif" /></td>
- </tr>
- </table>
-
- <!-- end forum content -->
- </td>
- </tr>
- <tr><td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td></tr>
- <tr><td colspan="2" class="bgr-separate"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td></tr>
-</table>
-<br /><br />
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/topic_list/topics.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.7
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/topic_list/no_topics.tpl
===================================================================
--- trunk/themes/default/inbulletin/topic_list/no_topics.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/topic_list/no_topics.tpl (nonexistent)
@@ -1,83 +0,0 @@
-<!-- Template: inbulletin/index/no_topics.tpl //-->
-
-<!-- forum update line -->
-<img src="img/s.gif" width="1" height="1" alt="" /><br />
-<table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-updatefill" width="10000"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td nowrap="nowrap" class="updated"><inp:m_language _Phrase="lu_posts_updated" />: <inp:bb_topic_modified />&nbsp;</td>
- </tr>
-</table>
-<!-- end forum update line -->
-
-
-<!-- no topics
-<table width="100%" border="1" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td class="comments"><inp:m_language _Phrase="lu_no_topics" /></td> </tr>
- </table>
- </td>
- </tr>
-</table>
-no topics \\-->
-
-
-
-<img src="img/s.gif" width="1" height="1" alt="" /><br />
-<table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" width="10000">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="5"><h2><inp:m_language _Phrase="lu_topics" /> <span>(<inp:bb_list_count />)</span></h2></td>
- </tr>
- <tr>
- <td colspan="5"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
- <tr>
- <td class="statistics">
- <span><inp:m_itemcount _ItemType="Post" _GroupOnly="1" /></SPAN>&nbsp;<inp:m_language _Phrase="lu_posts" />
- <inp:m_language _Phrase="lu_in"/>
- <span><inp:m_itemcount _ItemType="Topic" _GroupOnly="1" /></span>&nbsp;<inp:m_language _Phrase="lu_topics" /></td>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td class="statistics"><inp:m_language _Phrase="lu_added_today" />:&nbsp;<span><inp:m_itemcount _ItemType="Post" _Today="1" _GroupOnly="1" /></span></td>
- <td><img src="img/s.gif" width="10" height="1" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="5"><img src="img/s.gif" width="1" height="3" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="5" class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- </table>
- <br />
-
- <!-- forum content -->
- <br />
-
- <inp:m_module_link _module="In-Bulletin" _Perm="TOPIC.ADD">
- <!-- NEW TOPIC BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0">
- <tr valign="top">
- <td class="btn-l-side"><img src="inbulletin/img/btn_corn1.gif" width="11" height="16" alt="" /><br /></td>
- <td class="btn-text"><inp:m_module_link _Template="new_topic" _module="In-Bulletin" _Perm="TOPIC.ADD" _Text="lu_new_topic" /></a></td>
- <td class="btn-r-side"><img src="inbulletin/img/btn_new_topic.gif" width="38" height="28" alt="" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_corn2.gif" width="11" height="10" alt="" /><br /></td>
- <td class="btn-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-bot" align="right"><img src="inbulletin/img/btn_corn2_.gif" width="11" height="10" alt="" /><br /></td>
- </tr>
- </table><img src="img/s.gif" width="1" height="5" alt="" /><br />
- <!-- NEW TOPIC BUTTON \\-->
- </inp>
- <br />
- </td>
- </tr>
- </table>
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/topic_list/no_topics.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/browse/catbrowse_element.tpl
===================================================================
--- trunk/themes/default/inbulletin/browse/catbrowse_element.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/browse/catbrowse_element.tpl (nonexistent)
@@ -1,20 +0,0 @@
-<!-- Template: catlist_element.tpl -->
-<table border="1" cellspacing="0" cellpadding="0">
- <tr>
- <td><A href="<inp:cat _field="link" _Template="__default__" />"><img src="img/ic_folder.gif" BORDER=0 width="16" height="14" alt="" /></A>
- &nbsp;&nbsp;&nbsp;
- <br />
- </td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td class="item"><A href="<inp:cat _field="link" _Template="__default__" />"><inp:cat _Field="Name" /></a> <span class="comments">(<inp:m_language _Phrase="lu_cats" /> <inp:cat _Field="subcatcount" />)</span>
- <inp:cat _field="new"><img src="img/ic_new.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_new" />" /></inp>
- <inp:cat _field="pick"><img src="img/ic_pick.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_editors_pick" />" /></inp>
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td><img src="img/s.gif" width="1" height="3" alt="" /><br /><inp:cat _Field="description" /> <span class="comments">(<inp:m_language _Phrase="lu_added" /> <inp:cat _field="date" />)</span></td>
- </tr>
-</table>
-<BR />
Property changes on: trunk/themes/default/inbulletin/browse/catbrowse_element.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/browse/cat_browse.tpl
===================================================================
--- trunk/themes/default/inbulletin/browse/cat_browse.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/browse/cat_browse.tpl (nonexistent)
@@ -1,82 +0,0 @@
-<!-- Template: categories.tpl -->
- <!-- categories update line -->
- <img src="img/s.gif" width="1" height="1" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-updatefill" width="10000"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td nowrap="nowrap" class="updated"><inp:m_language _Phrase="lu_categories_updated" />: <inp:m_category_modified /></td>
- </tr>
- </table>
- <!-- end categories update line -->
-
- <!-- categories -->
- <img src="img/s.gif" width="1" height="1" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" width="10000" class="bgr-forum">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="4"><h1><inp:m_category_field _Field="name" /></h1></td>
- </tr>
- <tr>
- <td class="statistics"><inp:m_language _Phrase="lu_total_categories" />:&nbsp;<span><inp:m_itemcount _ItemType="Category" _GroupOnly="1" /></span></td>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td class="statistics"><inp:m_language _Phrase="lu_added_today" />:&nbsp;<span><inp:m_itemcount _ItemType="Category" _GroupOnly="1" _today="1" /> </span></td>
- <td><img src="img/s.gif" width="10" height="1" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="4"><img src="img/s.gif" width="1" height="3" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="4" class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- </table>
- <br />
-
- <table width="350" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/ic_post.gif" width="22" height="25" alt="" /><br /></td>
- <td class="field-title">&nbsp;- <inp:m_language _Phrase="lu_new_posts" /></td>
- <td><img src="img/s.gif" width="15" height="1" alt="" /><br /></td>
- <td><img src="img/ic_post_none.gif" width="22" height="25" alt="" /><br /></td>
- <td class="field-title">&nbsp;- <inp:m_language _Phrase="lu_no_new_posts" /></td>
- <td><img src="img/s.gif" width="15" height="1" alt="" /><br /></td>
- <td><img src="img/ic_post_locked.gif" width="25" height="25" alt="" /><br /></td>
- <td class="field-title">&nbsp;-<inp:m_language _Phrase="lu_forum_locked_for_posting" /></td>
- </tr>
- </table>
- <br />
-
- <table border="0" cellspacing="0" cellpadding="0" width="100%">
- <!-- categories content -->
- <tr>
- <td>
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr class="forum-hdr">
- <td colspan="2">&nbsp;<inp:m_language _Phrase="lu_forums" />&nbsp;</td>
- <td>&nbsp;<inp:m_language _Phrase="lu_topics" />&nbsp;</td>
- <td>&nbsp;<inp:m_language _Phrase="lu_posts" />&nbsp;</td>
- <td nowrap class="forum-hdr-end">&nbsp;<inp:m_language _Phrase="lu_lastupdate" />&nbsp;</td>
- </tr>
- <tr>
- <td colspan="5"><img src="img/s.gif" width="1" height="2" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="5" class="forum-hdr-end-narr"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- <inp:m_list_cats width="80%" _Columns=1 _NoTable="1" _ItemTemplate="inbulletin/index/catview/cat_tree_subcat.tpl" _DataExists=1 />
- </table>
- </td>
- </tr>
- </table>
- <!-- end categories content -->
-
- </td>
- </tr>
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="3" alt="" /><br /></td>
- </tr>
- </table>
- <!-- end categories -->
Property changes on: trunk/themes/default/inbulletin/browse/cat_browse.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/pm_list.tpl
===================================================================
--- trunk/themes/default/inbulletin/pm_list.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/pm_list.tpl (nonexistent)
@@ -1,74 +0,0 @@
-<inp:include _template="common/head.tpl" />
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="10000"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="200" height="1" alt="" /><br /></td>
- </tr>
- <tr height="100%">
- <td valign="top" class="bott-line">
- <!-- path //-->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-path"><img src="img/s.gif" width="549" height="1" alt="" /><br /></td>
- <!--<td bgcolor="#61b0ec"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr>
- <td class="bgr-path">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top" width="17"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
-
- <td class="path">
- <a href="<inp:m_template_link _Template="index" _Category=0 />"><inp:m_language _Phrase="lu_home" /></a> >
- <A HREF="<inp:m_template_link _template="my_account" />"><inp:m_language _Phrase="lu_myaccount" /></A> > <inp:m_language _Phrase="lu_pm_list" /></td>
-
- <td align="right">
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr>
- <td><img src="<inp:m_lang_field _Field="icon" _default="img/ic_flag.gif"/>" width="18" height="12" alt="" /><br /></td>
- <td>&nbsp;</td>
- <td class="post-action"><span onclick="showSeg('langmenu',true); "><inp:m_lang_field _Field="LocalName" /></span></td>
- <td>&nbsp;&nbsp;</td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <inp:include _Template="lang_select/lang_menu.tpl" />
- </td>
- <!--<td class="bgr-path"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- </table>
- <!-- path \\-->
-
- <inp:include _template="inbulletin/pm_list/pms.tpl" _DataExists=1 _NoDataTemplate="inbulletin/pm_list/no_pms.tpl" />
- </td>
-
- <!-- white line content/right column //-->
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <!-- white line content/right column \\-->
-
-
- <!-- right column //-->
- <td valign="top" height="100%" class="open-box"><inp:include _template="inbulletin/index/right.tpl" /></td>
- <!-- right column //-->
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
-
- <inp:include _Template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
Property changes on: trunk/themes/default/inbulletin/pm_list.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/rate.tpl
===================================================================
--- trunk/themes/default/inbulletin/rate.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/rate.tpl (nonexistent)
@@ -1,88 +0,0 @@
-<inp:include _template="common/head.tpl" />
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%" STYLE="border-right: 1px solid;">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr height="100%">
- <td valign="top">
- <!-- navbar -->
- <img src="img/s.gif" width="10" height="1" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td style="background: url('img/bgr_path_full.jpg')">
- <img src="img/s.gif" width="769" height="1" alt="" /><br />
- </td>
- </tr>
- <tr>
- <td width=769 style="background: url('img/bgr_path_full.jpg')">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
- <td class="path" WIDTH="10000"><inp:m_navbar _RootTemplate="index" _Template="__default__" _LinkCurrent="1" _separator=" &gt; " /></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
-
- <!-- details update line -->
- <img src="img/s.gif" width="1" height="1" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-updatefill" width="10000"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td nowrap="nowrap" class="updated"><inp:m_language _Phrase="lu_topic_updated" />: <inp:bb_topic_field _Field="modifieddate" /></td>
- </tr>
- </table>
- <!-- end details update line -->
-
- <table border="0" cellspacing="0" cellpadding="0" WIDTH="100%">
- <TR>
- <TD>
- <img src="img/s.gif" width="10" height="1" alt="" />
- <inp:bb_topic_field _field="locked"><IMG SRC="img/ic_lock.gif" />
- <inp:m_language _Phrase="lu_locked_topic" /></inp><br />
- </TD>
- <TD><h1><inp:bb_topic_field _field="text" /></h1></TD>
- <TD ALIGN="right">&nbsp;</TD>
- </TR>
- <TR>
- <TD>&nbsp;</TD>
- <TD COLSPAN=2>
- <br />
- <inp:perm_include _Template="inbulletin/rate/rate_form.tpl" _noaccess="access_denied.tpl" _Permission="TOPIC.RATE" />
- <br /><br />
- </TD>
- </TR>
- </TABLE>
- </TD>
- </TR>
- </TABLE>
-
- <!-- related categories -->
- <inp:perm_include _Template="related_category" _DataExists=1 />
- <!-- end related categories -->
- <!-- related links -->
- <inp:perm_include _Module="In-Link" _Template="inlink/related_links" _DataExists=1 />
- <!-- end related links -->
- <!-- related news -->
- <inp:perm_include _Module="In-News" _Template="innews/related_news" _DataExists=1 />
- <!-- end related news -->
-
- </TD>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td valign="top" HEIGHT="100%">&nbsp;</td>
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
- <inp:include _template="common/footer" />
-</table>
-
-</body>
-</html>
Property changes on: trunk/themes/default/inbulletin/rate.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/menu_my_items.tpl
===================================================================
--- trunk/themes/default/inbulletin/menu_my_items.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/menu_my_items.tpl (nonexistent)
@@ -1,4 +0,0 @@
-<TR>
- <td align="center"><a href="<inp:m_template_link _Template="inbulletin/my_items" />"><img src="inbulletin/img/ic_mytopics.gif" width="24" height="15" alt="" /></a><br /></td>
- <td class="item-my"><a href="<inp:m_template_link _Template="inbulletin/my_items" />"><inp:m_language _Phrase="lu_my_topics" /></a> <span class="item-my-stat">(<inp:m_itemcount _ItemType="Topic" _ListType="myitems" _Owner="1" _NoCache="1" />)</span></td>
-</TR>
Property changes on: trunk/themes/default/inbulletin/menu_my_items.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/post_edit.tpl
===================================================================
--- trunk/themes/default/inbulletin/post_edit.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/post_edit.tpl (nonexistent)
@@ -1,89 +0,0 @@
-<inp:include _template="common/head.tpl" />
-<SCRIPT language="JavaScript" SRC="<inp:m_theme_url _Page="incs/smiley.js" />"></SCRIPT>
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr height="100%">
- <td valign="top">
- <!-- navbar //-->
- <img src="img/s.gif" width="10" height="1" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td style="background: url('img/bgr_path_full.jpg')">
- <img src="img/s.gif" width="769" height="1" alt="" /><br />
- </td>
- </tr>
- <tr>
- <td width=769 style="background: url('img/bgr_path_full.jpg')">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
- <td class="path" WIDTH="10000"><inp:m_navbar _RootTemplate="index" _Template="__default__" _LinkCurrent="1" _Module="In-Bulletin" _ModuleRootTemplate="__default__" _separator=" &gt; " /></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <!-- navbar \\-->
-
- <!-- profile update line -->
- <img src="img/s.gif" width="1" height="1" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-updatefill" width="10000"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- </tr>
- </table>
- <!-- end profile update line -->
-
- <!-- profile -->
- <img src="img/s.gif" width="1" height="1" alt="" /><br />
- <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" width="10000" class="bgr-myaccount">
- <!-- page title -->
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="50"><img src="inbulletin/img/ic_forum_big.gif" width="46" height="46" alt="" /><br /></td>
- <td><h1><inp:m_language _Phrase="lu_edit_post" /></h1></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <!-- end page title -->
- <inp:include _Template="inbulletin/post_edit/post_edit_form.tpl" _noaccess="access_denied.tpl" _Permission="TOPIC.REPLY.MODIFY,TOPIC.REPLY.OWNER.MODIFY" />
- <!-- end suggest link content -->
- </td>
- </tr>
- </table>
- </td>
-
- <!-- white line content/right column
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
-
-
- <td valign="top">&nbsp;</td>
- right column //-->
-
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
-
- <inp:include _Template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
-
Property changes on: trunk/themes/default/inbulletin/post_edit.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/post_list.tpl
===================================================================
--- trunk/themes/default/inbulletin/post_list.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/post_list.tpl (nonexistent)
@@ -1,266 +0,0 @@
-<inp:include _template="common/head.tpl" />
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr height="100%">
- <td valign="top">
-
- <img src="img/s.gif" width="10" height="1" alt="" /><br />
- <!-- path //-->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-path"><img src="img/s.gif" width="549" height="1" alt="" /><br /></td>
- <!--<td bgcolor="#61b0ec"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr>
- <td class="bgr-path">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top" width="17"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
- <td class="path"><inp:m_navbar _RootTemplate="index" _Template="__default__" _LinkCurrent="1" _Module="In-Bulletin" _ModuleRootTemplate="__default__" _separator=" &gt; " /></td>
- <td align="right">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="<inp:m_lang_field _Field="icon" _default="img/ic_flag.gif"/>" width="18" height="12" alt="" /><br /></td>
- <td>&nbsp;</td>
- <td class="post-action"><span onclick="showSeg('langmenu',true); "><inp:m_lang_field _Field="LocalName" /></span></td>
- <td>&nbsp;&nbsp;</td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <inp:include _Template="lang_select/lang_menu.tpl" />
- </td>
- <!--<td class="bgr-path"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr><td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td></tr>
- </table>
- <!-- path \\-->
-
-
- <!-- details update line -->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-updatefill" width="10000"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td nowrap="nowrap" class="updated"><inp:m_language _Phrase="lu_topic_updated" />: <inp:bb_topic_field _Field="modifieddate" /></td>
- </tr>
- </table>
- <!-- end details update line -->
-
-
- <table border="0" cellspacing="0" cellpadding="0" width="100%">
- <tr>
- <td><img src="img/s.gif" width="10" height="1" alt="" />
- <inp:bb_topic_field _field="locked">
- <img src="img/ic_lock.gif" /><inp:m_language _Phrase="lu_locked_topic" />
- </inp:bb_topic_field><br />
- </td>
- <td width="100%">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="inbulletin/img/ic_forum_big.gif" width="46" height="46" alt="" vspace="10" /><br /><img src="img/s.gif" width="50" height="1" alt="" /><br /></td>
- <td width="100%"><h1><inp:bb_topic_field _field="text" /></h1></td>
- </tr>
- </table>
- </td>
- </tr>
- </table><br />
-
- <table border="0" cellspacing="0" cellpadding="0" width="100%">
- <tr valign="top">
- <td><img src="img/s.gif" width="10" height="1" alt="" /><br /></td>
- <td>
- <inp:m_module_link _module="In-Bulletin" _Perm="TOPIC.REPLY.ADD">
- <!-- REPLY BUTTON -->
- <inp:bb_topic_field _field="link_reply" _Template="inbulletin/topic_reply">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr valign="top">
- <td class="btn-l-side"><img src="inbulletin/img/btn_corn1.gif" width="11" height="16" alt="" /><br /></td>
- <td class="btn-text"><nobr><inp:bb_topic_field _field="link_reply" _Template="inbulletin/topic_reply" _text="lu_reply" /></nobr></td>
- <td class="btn-r-side">
- <inp:bb_topic_field _field="link_reply" _template="inbulletin/topic_reply" _image="inbulletin/img/btn_reply.gif" /><br />
- </td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_corn2.gif" width="11" height="10" alt="" /><br /></td>
- <td class="btn-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-bot" align="right"><img src="inbulletin/img/btn_corn2_.gif" width="11" height="10" alt="" /><br /></td>
- </tr>
- </table><img src="img/s.gif" width="1" height="5" alt="" /><br />
- <!-- REPLY BUTTON \\-->
- </inp:bb_topic_field>
- </inp:m_module_link>
- </td>
- <td width="100%" align="right">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <inp:bb_topic_field _field="link_edit">
- <!-- MODIFY BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr valign="top">
- <td class="btn-l-side"><img src="inbulletin/img/btn_corn1.gif" width="11" height="16" alt="" /><br /></td>
- <td class="btn-text-sm"><nobr><inp:bb_topic_field _field="link_edit" _Template="inbulletin/edit_topic" _Text="lu_edit" /></nobr></td>
- <td class="btn-r-side"><inp:bb_topic_field _field="link_edit" _Template="inbulletin/edit_topic" _image="inbulletin/img/btn_modify.gif" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_corn2.gif" width="11" height="10" alt="" /><br /></td>
- <td class="btn-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-bot" align="right"><img src="inbulletin/img/btn_corn2_.gif" width="11" height="10" alt="" /><br /></td>
- </tr>
- </table>
- <!-- MODIFY BUTTON \\-->
- </inp:bb_topic_field>
- </td>
-
- <td>
- <inp:bb_topic_field _field="perm_link" _Permission="TOPIC.RATE">
- <!-- RATE TOPIC BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr valign="top">
- <td class="btn-l-side"><img src="inbulletin/img/btn_corn1.gif" width="11" height="16" alt="" /><br /></td>
- <td class="btn-text-sm"><nobr><inp:bb_topic_field _field="perm_link" _Permission="TOPIC.RATE" _Template="inbulletin/rate" _Text="lu_rate_topic" /></nobr></td>
- <td class="btn-r-side"><inp:bb_topic_field _field="perm_link" _Permission="TOPIC.RATE" _Template="inbulletin/rate" _image="inbulletin/img/btn_rate.gif" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_corn2.gif" width="11" height="10" alt="" /><br /></td>
- <td class="btn-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-bot" align="right"><img src="inbulletin/img/btn_corn2_.gif" width="11" height="10" alt="" /><br /></td>
- </tr>
- </table>
- <!-- RATE TOPIC BUTTON \\-->
- </inp:bb_topic_field>
- </td>
-
- <td nowrap>
- <inp:m_perm_text _Perm="login">
- <!-- FAVORITES BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr valign="top">
- <td class="btn-l-side"><img src="inbulletin/img/btn_corn1.gif" width="11" height="16" alt="" /><br /></td>
- <td class="btn-text-sm"><nobr><inp:bb_topic_field _field="favorite_toggle" _addlabel="lu_add_to_favorites" _dellabel="lu_remove_from_favorites" /></nobr></td>
- <td class="btn-r-side"><inp:bb_topic_field _field="favorite_toggle" _addimage="inbulletin/img/btn_add_favorites.gif" _delimage="inbulletin/img/btn_favorites.gif" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_corn2.gif" width="11" height="10" alt="" /><br /></td>
- <td class="btn-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-bot" align="right"><img src="inbulletin/img/btn_corn2_.gif" width="11" height="10" alt="" /><br /></td>
- </tr>
- </table>
- <!-- FAVORITES BUTTON \\-->
- </inp:m_perm_text>
- </td>
-
- <td nowrap>
- <inp:bb_topic_field _field="link">
- <!-- VIEW THREADED BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr valign="top">
- <td class="btn-l-side"><img src="inbulletin/img/btn_corn1.gif" width="11" height="16" alt="" /><br /></td>
- <td class="btn-text-sm"><a href="<inp:bb_topic_field _field="link" _Template="inbulletin/post_list_threaded" />"><nobr><inp:m_language _Phrase="lu_view_threaded" /></nobr></a></td>
- <td class="btn-r-side"><a href="<inp:bb_topic_field _field="link" _Template="inbulletin/post_list_threaded" />"><img src="inbulletin/img/btn_threaded.gif" width="34" height="28" alt="" /></a><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_corn2.gif" width="11" height="10" alt="" /><br /></td>
- <td class="btn-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-bot" align="right"><img src="inbulletin/img/btn_corn2_.gif" width="11" height="10" alt="" /><br /></td>
- </tr>
- </table>
- <!-- VIEW THREADED BUTTON \\-->
- </inp:bb_topic_field>
- </td>
- </tr>
- </table>
- <inp:bb_topic_field _field="link_lock" _Permission="TOPIC.LOCK" _Text="lu_lock_unlock" />
-
- </td>
- </tr>
- </table>
-
- <!-- PAGINATION -->
- <table border="0" cellspacing="0" cellpadding="0" width="100%">
- <tr>
- <td><img src="img/s.gif" width="10" height="1" alt="" /><br /></td>
- <td width="100%" class="forum-hdr-end-narr"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- <tr>
- <td align="right" colspan="2" class="pagination">
- <img src="img/s.gif" width="1" height="4" alt="" /><br />
- <inp:bb_post_pagenav _PagesToList="10" >
- <!--<img src="img/ic_pages.gif" width="9" height="12" alt="">-->
- <inp:bb_post_pagenav _PagesToList="10" _PageIcon="img/ic_pages.gif" _Label="lu_page_label" />
- <img src="img/s.gif" width="1" height="2" alt="" ><br >
- </inp>
- </td>
- </tr>
- </table>
-
- <img src="img/s.gif" width="1" height="3" alt="" /><br />
- <!-- PAGINATION -->
-
- <table border="0" cellspacing="0" cellpadding="0" width="100%" style="border-right: 1px solid #ccc">
- <TR>
- <TD><img src="img/s.gif" width="10" height="1" alt="" /><br /></TD>
- <TD>
- <TABLE border="0" cellspacing="0" cellpadding="0" width="100%">
- <tr class="forum-hdr">
- <td><inp:m_language _Phrase="lu_author" /></td>
- <td class="forum-hdr-end"><inp:m_language _Phrase="lu_message" /></td>
- </tr>
-
- <inp:bb_list_posts _ItemTemplate="inbulletin/post_list/post_element" _FirstItemTemplate="inbulletin/post_list/post_element_first" _AltItemTemplate="inbulletin/post_list/post_element_alt" _AltLastItemTemplate="inbulletin/post_list/post_element_last_alt" _LastItemTemplate="inbulletin/post_list/post_element_last" />
-
-
- </TABLE>
- </TD>
- </TR>
- </table>
-
- <!-- PAGINATION -->
- <table border="0" cellspacing="0" cellpadding="0" width="100%">
- <tr>
- <td align="right" colspan="2" class="pagination">
- <img src="img/s.gif" width="1" height="4" alt="" /><br />
- <inp:bb_post_pagenav _PagesToList="10">
- <!--<img src="img/ic_pages.gif" width="9" height="12" alt="" />-->
- <inp:bb_post_pagenav _PagesToList="10" _PageIcon="img/ic_pages.gif" _Label="lu_page_label" /><br />
- <img src="img/s.gif" width="1" height="2" alt="" /><br />
- </inp>
- </td>
- </tr>
-
- </table><img src="img/s.gif" width="1" height="3" alt="" /><br />
- <!-- PAGINATION -->
-
- </td>
- </tr>
- </table>
-
- <!-- related categories -->
- <inp:perm_include _Template="related_category" _DataExists=1 />
- <!-- end related categories -->
- <!-- related links -->
- <inp:perm_include _Module="In-Link" _Template="inlink/related_links" _DataExists=1 />
- <!-- end related links -->
- <!-- related news -->
- <inp:perm_include _Module="In-News" _Template="innews/related_news" _DataExists=1 />
- <!-- end related news -->
- </td>
- </tr>
-</table>
-
-</td>
-</tr>
-
-<inp:include _template="common/footer" />
-</table>
-
-</body>
-</html>
Property changes on: trunk/themes/default/inbulletin/post_list.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.6
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/style.css
===================================================================
--- trunk/themes/default/inbulletin/style.css (revision 12824)
+++ trunk/themes/default/inbulletin/style.css (nonexistent)
@@ -1,296 +0,0 @@
-.topic-title {
- font-family : verdana, helvetica, sans-serif;
- font-size : 16px;
- font-weight : bold;
- color: #1f569a;
- margin: 0;
- margin-bottom: 7px;
-}
-
-.poster-data {
- padding: 0px;
- font-size:7pt;
-}
-
-.post {
- border-right: 1px solid #64a1df;
- border-left: 1px solid #64a1df;
- border-top: 1px solid #64a1df;
- border-bottom: 1px solid #64a1df;
- padding: 0px;
- font-size:8pt;
- background-color: #deebf8;
-}
-
-.post-alt {
- border-right: 1px solid #64a1df;
- border-left: 1px solid #64a1df;
- border-top: 1px solid #64a1df;
- border-bottom: 1px solid #64a1df;
- padding: 0px;
- font-size:8pt;
- background-color: #f5f9fd;
-}
-
-.post-data {
- border-bottom: 1px solid solid #64a1df;
- font-size:8pt;
- font-weight: bold;
- }
-
-.post_quote {
- color: #ffffff;
- background-color: #64a1df;
- font-size: 10pt;
- border: 1px solid #000000;
- margin: 10px;
- padding-right:20px;
- }
-
-.post_quote_inner {
- background-color: #FFFFFF;
- color: #000000;
- border-top: 1px solid #000000;
- }
-
-
-TR.catheader {
- border: #FFFFFF;
- border-style: solid;
- height: 28px;
-}
-
-TD.catheader {
- background: url('../img/bgr_path.jpg');
- text-decoration: none;
- color: #ffffff;
- font-size: 11px;
- font-family: Arial;
-}
-
-a.catheader {
- color: white;
- font-weight: bold;
- text-decoration : underline;
- background: none;
-}
-a.catheader:link {
- color: white;
- text-decoration : underline;
- font-size: 11px;
- background: none;
- }
-a.catheader:hover {
- color: white;
- font-weight: bold;
- font-size: 12px;
- text-decoration : underline;
- background: none;
- }
-
-TR.catsub {
- font-size: 11px; font-family: Arial; padding-left: 20px;
- background-color:#f5f9fd;
- }
-
-TR.catsub:hover {
- font-family: arial, helvetica, sans-serif;
- font-size: 11px
-}
-
-TD.catsub {
- font-family: arial, helvetica, sans-serif;
- font-size: 10px;
-}
-
-
-
-.forum_table {
- border: #006699;
- border-style: solid;
- border-width: 1px;
-}
-
-.topic_heading {
- background-color: #6495ED;
- color:#FFFFFF;
- font-weight: bold;
-}
-
-.thread_current_post {
- font-size: 11px;
- background-color: #519FE7;
- color: #FFFFFF;
-}
-
-a.thread_current_post {
- color: white;
- font-weight: bold;
- text-decoration : underline;
- background: none;
-}
-a.thread_current_post:link {
- color: white;
- text-decoration : underline;
- font-size: 11px;
- background: none;
- }
-a.thread_current_post:hover {
- color: white;
- font-weight: bold;
- font-size: 12px;
- text-decoration : underline;
- background: none;
-}
-
-.thread_alt_post {
- background-color: #deebf8;
- font-size: 10px;
-}
-
-.thread_post {
- background-color: #f5f9fd;
- font-size: 10px;
-}
-
-
-
-.poster-big a {
- font: bold 12px verdana, sans-serif;
- text-decoration: none
- }
-.post-body {
- font: 11px verdana, sans-serif;
- }
-.post-quote {
- font: oblique 11px verdana, sans-serif;
- color: #666
- }
-
-
-/*--- FORUM GRAPHIC BUTTON //---*/
-.btn-l-side {
- background: #efefef url(img/bgr_btn_l_side.gif) repeat-y top left
- }
-
-.btn-r-side {
- background: #efefef url(img/bgr_btn_r_side.gif) repeat-y top right
- }
-
-.btn-bot {
- background: #efefef url(img/bgr_btn_bot.gif) repeat-x top left
- }
-
-.btn-text, .btn-text-sm {
- background: #efefef url(img/bgr_btn_top.gif) repeat-x top left;
- font: bold 14px arial, sans-serif;
- letter-spacing: -1px;
- color: #1F569A;
- padding-top: 13px
- }
-.btn-text-sm {
- font: bold 11px arial, sans-serif;
- letter-spacing: 0px;
- padding-top: 14px
- }
-.btn-text-sm a, .btn-text-sm a:hover {
- text-decoration: none
- }
-.btn-text a, .btn-text a:hover {
- text-decoration: none
- }
-/*--- FORUM GRAPHIC BUTTON \\---*/
-
-/*--- POST TEXT SMALL GRAPHIC BUTTON //---*/
-.btn-sm-l-side {
- background: #efefef url(img/bgr_btn_sm_l_side.gif) repeat-y top left
- }
-
-.btn-sm-r-side {
- background: #efefef url(img/bgr_btn_sm_r_side.gif) repeat-y top right
- }
-
-.btn-sm-bot {
- background: #efefef url(img/bgr_btn_sm_bot.gif) repeat-x top left
- }
-
-.btn-sm-text {
- background: #efefef url(img/bgr_btn_sm_top.gif) repeat-x top left;
- font: 10px arial, sans-serif;
- color: #153C6A;
- padding-top: 15px
- }
-.btn-sm-text a {
- color: #153C6A;
- text-decoration: none
- }
-.btn-sm-text a:hover {
- text-decoration: none
- }
-/*--- POST TEXT SMALL GRAPHIC BUTTON \\---*/
-
-/*--- POST TEXT SMALL GRAPHIC BUTTON ALTERNATIVE ROW //---*/
-.btn-sm-text-alt {
- background: #efefef url(img/bgr_btn_sm_top_alt.gif) repeat-x top left;
- font: 10px arial, sans-serif;
- color: #153C6A;
- padding-top: 15px
- }
-.btn-sm-text-alt a {
- color: #153C6A;
- text-decoration: none
- }
-.btn-sm-text-alt a:hover {
- text-decoration: none
- }
-/*--- POST TEXT SMALL GRAPHIC BUTTON \\---*/
-
-
-.posts-tbl-hdr td a {
- font-size : 12px;
- color: #009ff0;
- text-decoration: none
- }
-.posts-tbl-hdr a:hover {
- color: #000099;
- text-decoration: none
- }
-
-.posts-tbl-hdr td {
- text-align: center;
- padding: 5px 2px;
- border-bottom: 1px solid #ccc;
- border-top: 1px solid #ccc
- }
-
-
-.forum-hdr-end {
- background: #e0e0e0 url(img/bgr_forum_hdr_end.gif) repeat-y scroll right top !important;
- }
-.forum-hdr td {
- font: bold 9px verdana, helvetica, sans-serif;
- background: #e0e0e0;
- height: 15px;
- text-align: center
- }
-.forum-hdr-end-narr {
- background: #ccc url(img/bgr_forum_hdr_end_narr.gif) repeat-y scroll right top !important;
- }
-.forum-hdr-wide td {
- font: bold 14px arial, sans-serif;
- background: #f5f5f5;
- padding: 10px 10px 5px 10px;
- }
-.forum-hdr-wide a {
- text-decoration: none
- }
-.forum-hdr-end-wide {
- background: #f5f5f5 url(img/bgr_forum_hdr_end_wide.gif) repeat-y scroll right top !important;
- }
-
-.pagination, .pagination a, .pagination a:hover {
- font: 12px verdana, sans-serif;
- }
-.pagination a:hover {
- background: none;
- }
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/style.css
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/new_topic/new_topic_form.tpl
===================================================================
--- trunk/themes/default/inbulletin/new_topic/new_topic_form.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/new_topic/new_topic_form.tpl (nonexistent)
@@ -1,59 +0,0 @@
-<FORM NAME="bb_new_topic" ACTION="<inp:bb_form_action _Confirm="inbulletin/new_topic/new_topic_confirm.tpl" _ConfirmPending="inbulletin/new_topic/new_topic_confirm_pending.tpl" _FinishTemplate="inbulletin/topic_list.tpl" _form="new_topic"/>" METHOD="POST">
-<table border="0" cellspacing="1" cellpadding="0" WIDTH="100%">
- <tr>
- <td colspan="2">
- <table border="0" cellspacing="0" cellpadding="0"width="98%">
- <tr>
- <td>&nbsp;</td>
- <td><img src="img/s.gif" width="10" height="1" alt="" /><br /></td>
- <td class="tips" ALIGN="RIGHT">(<span class="error">*</span><inp:m_language _Phrase="lu_required_field" />)</td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td colspan="2" class="error"><inp:m_list_form_errors _Form="new_topic" _ItemTemplate="misc/form_error.tpl" /></td>
- </tr>
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
-
- <tr>
- <td class="field-name"><b><span class="bb_text"><inp:m_language _Phrase="lu_subject" /></span></b></td>
- <td class="field-content-input"><inp:m_form_input type="topic_subject" class="input" style="width:420px;" _field="topic_subject" _Form="new_topic" _Required="1" /></td>
- </tr>
-
- <tr>
- <td class="field-name"><b><span class="bb_text"><inp:m_language _Phrase="lu_message_body"/>:</span></b></td>
- <td class="field-content-input">
- <inp:include _Template="inbulletin/misc/bbcode_buttons.tpl" /><br />
- <inp:m_form_textarea class="textarea" _field="bb_post_reply_body" _Form="new_topic" _Required="1" ID="textbody" style="width:420px;" ROWS=10 COLS=65 WRAP="VIRTUAL" /><br />
- <inp:include _Template="inbulletin/misc/smiley_list.tpl" _DataExists=1 />
- </td>
- </tr>
-
- <tr>
- <td class="field-name"><b><span class="bb_text"><inp:m_language _Phrase="lu_options" />:</span></b></td>
- <td class="field-content-input">
- <span class="bb_text">
- <inp:m_form_checkbox _form="new_topic" _field="topic_bbcode" /><inp:m_language _Phrase="lu_disable" /> <i><inp:m_language _Phrase="lu_bbcode" /></i> <inp:m_language _Phrase="lu_on_this_post"/><BR />
- <inp:m_form_checkbox _form="new_topic" _field="topic_smile" /><inp:m_language _Phrase="lu_disable" /> <i><inp:m_language _Phrase="lu_smileys" /></i> <inp:m_language _Phrase="lu_on_this_post"/><BR />
- <inp:m_form_checkbox _form="new_topic" _field="topic_sig" /><inp:m_language _Phrase="lu_show_signature"/><BR />
- <inp:m_form_checkbox _form="new_topic" _field="owner_notify" _Form="new_topic" /><inp:m_language _Phrase="lu_notify_owner" /><BR />
- </span>
- </td>
- </tr>
- <tr>
- <td class="field-name">&nbsp;</td>
- <td class="field-content-input">
- <br />
- <INPUT TYPE="SUBMIT" NAME="topic_submit" CLASS="button" VALUE="<inp:m_language _Phrase="lu_add_topic" />">
- &nbsp;
- <INPUT TYPE="BUTTON" NAME="topic_cancel" CLASS="button" VALUE="<inp:m_language _Phrase="lu_cancel" />" onClick="javascript:history.back();">
- </td>
- </tr>
- <tr>
- <td colspan="2" class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
-</table><br />
-</FORM>
Property changes on: trunk/themes/default/inbulletin/new_topic/new_topic_form.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/new_topic/new_topic_confirm.tpl
===================================================================
--- trunk/themes/default/inbulletin/new_topic/new_topic_confirm.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/new_topic/new_topic_confirm.tpl (nonexistent)
@@ -1,111 +0,0 @@
-<inp:include _template="common/head.tpl" />
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="10000"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="200" height="1" alt="" /><br /></td>
- </tr>
- <tr height="100%">
- <td valign="top" class="bott-line">
- <!-- path //-->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-path"><img src="img/s.gif" width="549" height="1" alt="" /><br /></td>
- <!--<td bgcolor="#61b0ec"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr>
- <td class="bgr-path">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top" width="17"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
- <td class="path"><inp:m_navbar _RootTemplate="index" _separator=" &gt; " /></td>
- <td align="right">
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr>
- <td><img src="<inp:m_lang_field _Field="icon" _default="img/ic_flag.gif"/>" width="18" height="12" alt="" /><br /></td>
- <td>&nbsp;</td>
- <td class="post-action"><span onclick="showSeg('langmenu',true); "><inp:m_lang_field _Field="LocalName" /></span></td>
- <td>&nbsp;&nbsp;</td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <inp:include _Template="lang_select/lang_menu.tpl" />
- </td>
- <!--<td class="bgr-path"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr><td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td></tr>
- </table>
- <!-- path \\-->
-
-
- <!-- confirm //-->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" width="10000">
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <FORM method="POST" NAME="newtopic_confirm" ACTION="<inp:bb_form_action _Template="__default__" _Form="new_topic_confirm" />">
- <tr>
- <td width="50"><img src="img/ic_confirm_big.gif" width="46" height="46" alt="" /><br /></td>
- <td><h1><inp:m_language _Phrase="lu_new_topic" /></h1></td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /><br /></TD>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td><br />
- <h2><inp:m_language _Phrase="lu_newtopic_confirm" /></h2>
- <inp:m_language _Phrase="lu_newtopic_confirm_text" /><br /><br />
- </td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /><br /></TD>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td>
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
- <INPUT type="submit" name="buttons[]" value="<inp:m_language _Phrase="lu_button_ok" />" class="button">
- </td>
- </tr>
- </FORM>
- </table>
- </td>
- </tr>
- </table>
- <!-- confirm \\-->
-
- </td>
-
- <!-- white line content/right column //-->
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <!-- white line content/right column \\-->
-
-
- <!-- right column //-->
- <td valign="top" height="100%" class="open-box"><inp:include _template="inbulletin/index/right.tpl" /></td>
- <!-- right column \\-->
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
-
- <inp:include _Template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
Property changes on: trunk/themes/default/inbulletin/new_topic/new_topic_confirm.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/new_topic/new_topic_confirm_pending.tpl
===================================================================
--- trunk/themes/default/inbulletin/new_topic/new_topic_confirm_pending.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/new_topic/new_topic_confirm_pending.tpl (nonexistent)
@@ -1,111 +0,0 @@
-<inp:include _template="common/head.tpl" />
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="10000"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="200" height="1" alt="" /><br /></td>
- </tr>
- <tr height="100%">
- <td valign="top" class="bott-line">
- <!-- path //-->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-path"><img src="img/s.gif" width="549" height="1" alt="" /><br /></td>
- <!--<td bgcolor="#61b0ec"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr>
- <td class="bgr-path">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top" width="17"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
- <td class="path"><inp:m_navbar _RootTemplate="index" _separator=" &gt; " /></td>
- <td align="right">
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr>
- <td><img src="<inp:m_lang_field _Field="icon" _default="img/ic_flag.gif"/>" width="18" height="12" alt="" /><br /></td>
- <td>&nbsp;</td>
- <td class="post-action"><span onclick="showSeg('langmenu',true); "><inp:m_lang_field _Field="LocalName" /></span></td>
- <td>&nbsp;&nbsp;</td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <inp:include _Template="lang_select/lang_menu.tpl" />
- </td>
- <!--<td class="bgr-path"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr><td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td></tr>
- </table>
- <!-- path \\-->
-
-
- <!-- confirm //-->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" width="10000">
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <FORM method="POST" NAME="newtopic_confirm" ACTION="<inp:bb_form_action _Template="__default__" _Form="new_topic_confirm" />">
- <tr>
- <td width="50"><img src="img/ic_confirm_big.gif" width="46" height="46" alt="" /><br /></td>
- <td><h1><inp:m_language _Phrase="lu_new_topic" /></h1></td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /><br /></TD>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td><br />
- <h2><inp:m_language _Phrase="lu_newtopic_confirm_pending" /></h2>
- <inp:m_language _Phrase="lu_newtopic_confirm_pending_text" /><br /><br />
- </td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /><br /></TD>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td>
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
- <INPUT type="submit" name="buttons[]" value="<inp:m_language _Phrase="lu_button_ok" />" class="button">
- </td>
- </tr>
- </FORM>
- </table>
- </td>
- </tr>
- </table>
- <!-- confirm \\-->
-
- </td>
-
- <!-- white line content/right column //-->
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <!-- white line content/right column \\-->
-
-
- <!-- right column //-->
- <td valign="top" height="100%" class="open-box"><inp:include _template="inbulletin/index/right.tpl" /></td>
- <!-- right column \\-->
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
-
- <inp:include _Template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
Property changes on: trunk/themes/default/inbulletin/new_topic/new_topic_confirm_pending.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/my_account/topics.tpl
===================================================================
--- trunk/themes/default/inbulletin/my_account/topics.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/my_account/topics.tpl (nonexistent)
@@ -1,10 +0,0 @@
-<td><img src="img/s.gif" width="70" height="1" alt="" /><br /></td>
-<td valign="top">
- <a href="<inp:m_template_link _Template="inbulletin/my_items" />"><img src="img/ic_mytopics46.gif" width="46" height="46" alt="" /></a><br />
-</td>
-<td width="10000" class="item">
- <a href="<inp:m_template_link _Template="inbulletin/my_items" />"><inp:m_language _Phrase="lu_my_topics" /></a>
- <p><inp:m_language _Phrase="lu_my_topics_description" /></p>
-</td>
-<td>&nbsp;</td>
-
Property changes on: trunk/themes/default/inbulletin/my_account/topics.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/my_account/new_topics.tpl
===================================================================
--- trunk/themes/default/inbulletin/my_account/new_topics.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/my_account/new_topics.tpl (nonexistent)
@@ -1,158 +0,0 @@
-<inp:include _template="common/head.tpl" />
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr height="100%">
- <td valign="top" class="bott-line">
- <!-- navbar -->
- <img src="img/s.gif" width="10" height="1" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td style="background: url('img/bgr_path.jpg')"><img src="img/s.gif" width="549" height="1" alt="" /><br /></td>
- <td bgcolor="#61b0ec"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- <tr>
- <td class="bgr-path">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top" width="17"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
- <td class="path"><inp:m_navbar _RootTemplate="index" _separator=" &gt; " /></td>
- <td align="right">
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr>
- <td><img src="<inp:m_lang_field _Field="icon" _default="img/ic_flag.gif"/>" width="18" height="12" alt="" /><br /></td>
- <td>&nbsp;</td>
- <td class="post-action"><span onclick="showSeg('langmenu',true); "><inp:m_lang_field _Field="LocalName" /></span></td>
- <td>&nbsp;&nbsp;</td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <inp:include _Template="lang_select/lang_menu.tpl" />
- </td>
- </table>
- <!-- end navbar -->
-
- <!-- topics -->
- <!-- links update line -->
- <img src="img/s.gif" width="1" height="1" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-updatefill" width="10000"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td nowrap="nowrap" class="updated"><inp:m_language _Phrase="lu_topics_updated" />: <inp:bb_topic_modified /></td>
- </tr>
- </table>
- <!-- end topics update line -->
-
- <!-- topics -->
- <img src="img/s.gif" width="1" height="1" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td VALIGN="TOP" WIDTH="50"><img src="inbulletin/img/ic_forum_big.gif" width="46" height="46" alt="" /><br /></td>
- <td valign="top" width="10000" class="bgr-forum">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="5"><h2><inp:m_language _Phrase="lu_new_since_topics" /> <span>(<inp:bb_list_count _ListType="my_new" _CatInfo="1" />)</span></h2></td>
- </tr>
- <tr>
- <td colspan="5"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
- <tr>
- <td class="statistics"><inp:m_language _Phrase="lu_total_topics" />:&nbsp;<span><inp:m_itemcount _ItemType="Topic" /></span></td>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td class="statistics"><inp:m_language _Phrase="lu_added_today" />:&nbsp;<span><inp:m_itemcount _ItemType="Topic" _Today="1" /></span></td>
- <td><img src="img/s.gif" width="10" height="1" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="5"><img src="img/s.gif" width="1" height="3" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="5" class="bgr-updatefill"><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- </tr>
- </table>
-
- <!-- links content -->
- <br />
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr class="statistics">
- <td><img src="img/s.gif" width="21" height="1" alt="" /><br /></td>
- <td width="80%" align="center">
- <a href="<inp:bb_topic_list_sortlink _Column="TopicText" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="TopicText" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_topics" /></td>
-
- <td align="center" nowrap>
- <img src="img/s.gif" width="100" height="1" alt="" /><br />
- <a href="<inp:bb_topic_list_sortlink _Column="PostedBy" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="PostedBy" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_poster" /></a></td>
-
- <td align="center" nowrap>
- <img src="img/s.gif" width="70" height="1" alt="" /><br />
- <a href="<inp:bb_topic_list_sortlink _Column="Modified" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="Modified" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_date" /></a></td>
-
- <td align="center" nowrap>
- <img src="img/s.gif" width="50" height="1" alt="" /><br />
- <a href="<inp:bb_topic_list_sortlink _Column="Posts" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="Posts" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_replies" /></a></td>
-
- <td align="center" nowrap>
- <img src="img/s.gif" width="50" height="1" alt="" /><br />
- <a href="<inp:bb_topic_list_sortlink _Column="Views" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="Views" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_views" /></a></td>
-
- </tr>
- <inp:bb_topic_list _ListType="my_new" _CatInfo="1" _ItemTemplate="inbulletin/pick/topic_element.tpl" _ShortList="0" />
- <tr>
- <td colspan="6" align="right" valign="top" class="pagination">
- <inp:bb_topic_pagenav _ListType="my_new" _Label="lu_page_label" _ShortList="0" />
- </td>
- </tr>
- </table>
- <!-- end links content -->
- </td>
- </tr>
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="2" class="bgr-separate"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- </table>
-
-
- <!-- topics -->
- </td>
-
- <!-- start vertical white line in main conent table -->
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <!-- end vertical white line in main conent table -->
-
-
- <!-- start right flexible cell in main content table -->
- <td valign="top" class="open-box">
- <inp:include _template="inbulletin/pick/right.tpl" />
- </td>
- <!-- end right flexible cell in main content table -->
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
-
- <inp:include _Template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/my_account/new_topics.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/my_account/new_items.tpl
===================================================================
--- trunk/themes/default/inbulletin/my_account/new_items.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/my_account/new_items.tpl (nonexistent)
@@ -1,50 +0,0 @@
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top" width="10000">
-
- <!-- page title //-->
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="50"><img src="img/my_profile.gif" width="46" height="46" alt="" /><br /></td>
- <td><h1><inp:m_language _Phrase="lu_topics" /></h1><br/><br/></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
-<table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr class="posts-tbl-hdr">
- <td width="100%" style="text-align: left; border-left: 1px solid #ccc">
- &nbsp; <a href="<inp:bb_topic_list_sortlink _Column="TopicText" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="TopicText" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_topics" /></a></td>
-
- <!--<td nowrap>
- <a href="<inp:bb_topic_list_sortlink _Column="PostedBy" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="PostedBy" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_poster" /></a></td>-->
-
- <td nowrap>
- <a href="<inp:bb_topic_list_sortlink _Column="Posts" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="Posts" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" /><a href="<inp:bb_topic_list_sortlink _Column="Posts" />">&nbsp;<inp:m_language _Phrase="lu_replies" /></a></td>
- <td nowrap>
- <a href="<inp:bb_topic_list_sortlink _Column="Views" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="Views" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_views" /></a></td>
- <td nowrap>
- <a href="<inp:bb_topic_list_sortlink _Column="LastPostDate" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="LastPostDate" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_lastpost" /></a></td>
- <!--
- <td nowrap style="border-right: 1px solid #ccc">
- <a href="<inp:bb_topic_list_sortlink _Column="LastPoster" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="LastPoster" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_lastposter" /></a>&nbsp;</td>
- -->
- </tr>
-
- <inp:bb_topic_list _ItemTemplate="inbulletin/topic_list/topics/element.tpl" _LastItemTemplate="inbulletin/topic_list/topics/element_last.tpl" _ListType="my_new" _Shortlist="1" />
-
- <TR>
- <td COLSPAN=6 valign="top" align="right" class="pagination">
- <inp:bb_topic_more _Shortlist="1" _ListType="my_new" _Template="inbulletin/my_account/new_topics.tpl" _text="lu_more" _image="img/arr_more.gif" />
- </td>
- </TR>
-
- </table>
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/my_account/new_items.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/index.tpl
===================================================================
--- trunk/themes/default/inbulletin/index.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/index.tpl (nonexistent)
@@ -1,81 +0,0 @@
-<inp:include _template="common/head.tpl" />
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="10000"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="200" height="1" alt="" /><br /></td>
- </tr>
- <tr height="100%">
- <td valign="top" class="bott-line">
- <!-- path //-->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-path"><img src="img/s.gif" width="549" height="1" alt="" /><br /></td>
- <!--<td bgcolor="#61b0ec"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr>
- <td class="bgr-path">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top" width="17"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
- <td class="path"><inp:m_navbar _RootTemplate="index" _Template="__default__" _Module="In-Bulletin" _ModuleRootTemplate="__default__" _separator=" &gt; " /></td>
- <td align="right">
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr>
- <td><img src="<inp:m_lang_field _Field="icon" _default="img/ic_flag.gif"/>" width="18" height="12" alt="" /><br /></td>
- <td>&nbsp;</td>
- <td class="post-action"><span onclick="showSeg('langmenu',true); "><inp:m_lang_field _Field="LocalName" /></span></td>
- <td>&nbsp;&nbsp;</td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <inp:include _Template="lang_select/lang_menu.tpl" />
- </td>
- <!--<td class="bgr-path"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr><td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td></tr>
- </table>
- <!-- path \\-->
-
-
- <inp:include _Template="inbulletin/index/catview.tpl" _DataExists=1 _NoDataTemplate="categories/no_categories.tpl" />
-
- <!-- related categories //-->
- <inp:include _Template="catindex_relcats" _DataExists=1 />
- <!-- related categories \\-->
-
- <!-- topics //-->
- <inp:include _template="inbulletin/topic_list/topics.tpl" _DataExists=1 _NoDataTemplate="inbulletin/topic_list/no_topics.tpl" />
- <!-- topics \\-->
-
- </td>
-
- <!-- white line content/right column //-->
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <!-- white line content/right column \\-->
-
-
- <!-- right column //-->
- <td valign="top" height="100%" class="open-box"><inp:include _template="inbulletin/index/right.tpl" /></td>
- <!-- right column //-->
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
-
- <inp:include _Template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
Property changes on: trunk/themes/default/inbulletin/index.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/edit_topic/edit_topic_confirm_pending.tpl
===================================================================
--- trunk/themes/default/inbulletin/edit_topic/edit_topic_confirm_pending.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/edit_topic/edit_topic_confirm_pending.tpl (nonexistent)
@@ -1,110 +0,0 @@
-<inp:include _template="common/head.tpl" />
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="10000"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="200" height="1" alt="" /><br /></td>
- </tr>
- <tr height="100%">
- <td valign="top" class="bott-line">
- <!-- path //-->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-path"><img src="img/s.gif" width="549" height="1" alt="" /><br /></td>
- <!--<td bgcolor="#61b0ec"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr>
- <td class="bgr-path">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top" width="17"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
- <td class="path"><inp:m_navbar _RootTemplate="index" _separator=" &gt; " /></td>
- <td align="right">
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr>
- <td><img src="<inp:m_lang_field _Field="icon" _default="img/ic_flag.gif"/>" width="18" height="12" alt="" /><br /></td>
- <td>&nbsp;</td>
- <td class="post-action"><span onclick="showSeg('langmenu',true); "><inp:m_lang_field _Field="LocalName" /></span></td>
- <td>&nbsp;&nbsp;</td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <inp:include _Template="lang_select/lang_menu.tpl" />
- </td>
- <!--<td class="bgr-path"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr><td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td></tr>
- </table>
- <!-- path \\-->
-
- <!-- confirm //-->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" width="10000">
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <FORM method="POST" NAME="newtopic_confirm" ACTION="<inp:bb_form_action _Template="__default__" _Form="new_topic_confirm" />">
- <tr>
- <td width="50"><img src="img/ic_confirm_big.gif" width="46" height="46" alt="" /><br /></td>
- <td><h1><inp:m_language _Phrase="lu_edit_topic" /></h1></td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /><br /></TD>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td><br />
- <h2><inp:m_language _Phrase="lu_edittopic_confirm_pending" /></h2>
- <inp:m_language _Phrase="lu_edittopic_confirm_pending_text" /><br /><br />
- </td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /><br /></TD>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td>
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
- <INPUT type="submit" name="buttons[]" value="<inp:m_language _Phrase="lu_button_ok" />" class="button">
- </td>
- </tr>
- </FORM>
- </table>
- </td>
- </tr>
- </table>
- <!-- confirm \\-->
-
- </td>
-
- <!-- white line content/right column //-->
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <!-- white line content/right column \\-->
-
-
- <!-- right column //-->
- <td valign="top" height="100%" class="open-box"><inp:include _template="inbulletin/index/right.tpl" /></td>
- <!-- right column //-->
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
-
- <inp:include _Template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
Property changes on: trunk/themes/default/inbulletin/edit_topic/edit_topic_confirm_pending.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/edit_topic/edit_topic_form.tpl
===================================================================
--- trunk/themes/default/inbulletin/edit_topic/edit_topic_form.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/edit_topic/edit_topic_form.tpl (nonexistent)
@@ -1,42 +0,0 @@
-<FORM NAME="bb_edit_topic" ACTION="<inp:bb_form_action _Confirm="inbulletin/edit_topic/edit_topic_confirm" _ConfirmPending="inbulletin/edit_topic/edit_topic_confirm_pending" _FinishTemplate="__default__" _form="edit_topic"/>" METHOD="POST">
-<TABLE CELLSPACING="1" WIDTH="100%">
-<tr>
- <td colspan="2">
- <table border="0" cellspacing="0" cellpadding="0"width="100%">
- <tr>
- <td>&nbsp;</td>
- <td><img src="img/s.gif" width="10" height="1" alt="" /><br /></td>
- <td class="tips" ALIGN="RIGHT">(<span class="error">*</span><inp:m_language _Phrase="lu_required_field" />)</td>
- </tr>
- </table>
- </td>
-</tr>
-<tr>
- <td colspan="2" class="error"><inp:m_list_form_errors _Form="new_topic" _ItemTemplate="misc/form_error.tpl" /></td>
-</tr>
-<tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
-</tr>
-
-<TR>
- <TD class="field-name"><b><span class="bb_text"><inp:m_language _Phrase="lu_subject" /></span></b></TD>
- <TD class="field-content-input"><inp:m_form_input type="text" class="input" style="width:600px;" _field="topic_subject" _Form="edit_topic" _Required="1" /></TD>
-</TR>
-<TR>
- <TD class="field-name"><b><span class="bb_text"><inp:m_language _Phrase="lu_options" />:</span></b></TD>
- <TD class="field-content-input">
- <span class="bb_text">
- <inp:m_form_checkbox _field="owner_notify" _Form="edit_topic" /><inp:m_language _Phrase="lu_notify_owner" /><BR />
- </span>
- </TD>
-</TR>
-<TR>
- <TD class="field-name">&nbsp;</TD>
- <TD class="field-content-input">
- <INPUT TYPE="SUBMIT" NAME="topic_submit" CLASS="button" VALUE="<inp:m_language _Phrase="lu_post" />">
- &nbsp;
- <INPUT TYPE="BUTTON" NAME="topic_cancel" CLASS="button" VALUE="<inp:m_language _Phrase="lu_cancel" />" onClick="javascript:history.back();">
- </TD>
-</TR>
-</TABLE>
-</FORM>
Property changes on: trunk/themes/default/inbulletin/edit_topic/edit_topic_form.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/edit_topic/edit_topic_confirm.tpl
===================================================================
--- trunk/themes/default/inbulletin/edit_topic/edit_topic_confirm.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/edit_topic/edit_topic_confirm.tpl (nonexistent)
@@ -1,111 +0,0 @@
-<inp:include _template="common/head.tpl" />
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="10000"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="200" height="1" alt="" /><br /></td>
- </tr>
- <tr height="100%">
- <td valign="top" class="bott-line">
- <!-- path //-->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-path"><img src="img/s.gif" width="549" height="1" alt="" /><br /></td>
- <!--<td bgcolor="#61b0ec"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr>
- <td class="bgr-path">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top" width="17"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
- <td class="path"><inp:m_navbar _RootTemplate="index" _separator=" &gt; " /></td>
- <td align="right">
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr>
- <td><img src="<inp:m_lang_field _Field="icon" _default="img/ic_flag.gif"/>" width="18" height="12" alt="" /><br /></td>
- <td>&nbsp;</td>
- <td class="post-action"><span onclick="showSeg('langmenu',true); "><inp:m_lang_field _Field="LocalName" /></span></td>
- <td>&nbsp;&nbsp;</td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <inp:include _Template="lang_select/lang_menu.tpl" />
- </td>
- <!--<td class="bgr-path"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr><td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td></tr>
- </table>
- <!-- path \\-->
-
- <!-- confirm //-->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" width="10000">
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <FORM method="POST" NAME="edittopic_confirm" ACTION="<inp:bb_form_action _Form="edit_topic_confirm" />">
- <tr>
- <td width="50"><img src="img/ic_confirm_big.gif" width="46" height="46" alt="" /><br /></td>
- <td><h1><inp:m_language _Phrase="lu_edit_topic" /></h1></td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /><br /></TD>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td><br />
- <h2><inp:m_language _Phrase="lu_edittopic_confirm" /></h2>
- <inp:m_language _Phrase="lu_edittopic_confirm_text" /><br /><br />
- </td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /><br /></TD>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td>
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
- <INPUT type="submit" name="buttons[]" value="<inp:m_language _Phrase="lu_button_ok" />" class="button">
- </td>
- </tr>
- </FORM>
- </table>
- </td>
- </tr>
- </table>
- <!-- confirm \\-->
-
- </td>
-
- <!-- white line content/right column //-->
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <!-- white line content/right column \\-->
-
-
- <!-- right column //-->
- <td valign="top" height="100%" class="open-box"><inp:include _template="inbulletin/index/right.tpl" /></td>
- <!-- right column //-->
-
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
-
- <inp:include _Template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
Property changes on: trunk/themes/default/inbulletin/edit_topic/edit_topic_confirm.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/topic_reply/topic_reply_form.tpl
===================================================================
--- trunk/themes/default/inbulletin/topic_reply/topic_reply_form.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/topic_reply/topic_reply_form.tpl (nonexistent)
@@ -1,70 +0,0 @@
-<FORM NAME="bb_topic_reply" ACTION="<inp:bb_form_action _Template="__default__" _form="topic_reply"/>" METHOD="POST">
-<table class="bb_forum" border="0" cellspacing="1" cellpadding="0" WIDTH="100%">
-<tr>
- <td colspan="2">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><h2><inp:m_language _Phrase="lu_post" /></h2></td>
- <td><img src="img/s.gif" width="10" height="1" alt="" /><br /></td>
- <td class="tips">(<span class="error">*</span><inp:m_language _Phrase="lu_required_field" />)</td>
- </tr>
- </table>
- </td>
-</tr>
-<tr>
- <td colspan="2" class="error"><inp:m_list_form_errors _Form="topic_reply" _ItemTemplate="misc/form_error.tpl" /></td>
-</tr>
-<tr>
- <td colspan="2" class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /><br /></td>
-</tr>
-<tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
-</tr>
-
-<TR>
- <TD class="field-name"><b><span class="bb_text"><inp:m_language _Phrase="lu_subject" /></span></b></TD>
- <TD class="field-content-input"><inp:bb_topic_field _field="text"/></TD>
-</TR>
-<TR>
- <TD class="field-name"><b><span class="bb_text"><inp:m_language _Phrase="lu_author" /></span></b></TD>
- <TD class="field-content-input"><inp:bb_topic_field _field="owner"/></TD>
-</TR>
-
-<tr>
- <td CLASS="field-name"><b><span class="bb_text"><inp:m_form_prompt _Form="topic_reply" _Field="subject" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_prompt_post_subject" /></B></SPAN><BR />(<inp:m_language _Phrase="lu_optional" />)</td>
- <td class="field-content-input"><inp:m_form_input type="text" class="input" style="width:235px;" _field="subject" _Form="topic_reply" /><br /></td>
-</tr>
-
-<TR>
- <TD class="field-name"><b><span class="bb_text"><inp:m_language _Phrase="lu_message_body"/>:</span></b></TD>
- <TD class="field-content-input">
- <inp:include _Template="inbulletin/misc/bbcode_buttons" />
- <inp:m_form_textarea class="textarea" _field="bb_post_reply_body" _Form="topic_reply" _Required="1" ID="textbody" style="width:610px;" ROWS=10 COLS=65 WRAP="VIRTUAL" /><br />
- <inp:include _Template="inbulletin/misc/smiley_list" />
- </TD>
-</TR>
-
-<TR>
- <TD class="field-name"><b><span class="bb_text"><inp:m_language _Phrase="lu_options" />:</span></b></TD>
- <TD class="field-content-input">
- <span class="bb_text">
- <inp:m_form_checkbox _form="topic_reply" _field="topic_bbcode" /><inp:m_language _Phrase="lu_disable" /> <i><inp:m_language _Phrase="lu_bbcode" /></i> <inp:m_language _Phrase="lu_on_this_post"/><BR />
- <inp:m_form_checkbox _form="topic_reply" _field="topic_smile" /><inp:m_language _Phrase="lu_disable" /> <i><inp:m_language _Phrase="lu_smileys" /></i> <inp:m_language _Phrase="lu_on_this_post"/><BR />
- <inp:m_form_checkbox _form="topic_reply" _field="topic_sig" /><inp:m_language _Phrase="lu_show_signature"/><BR />
- </span>
- </TD>
-</TR>
-<TR>
- <TD class="field-name">&nbsp;</TD>
- <TD class="field-content-input">
- <br />
- <INPUT TYPE="SUBMIT" NAME="topic_submit" CLASS="button" VALUE="<inp:m_language _Phrase="lu_post" />">
- &nbsp;
- <INPUT TYPE="BUTTON" NAME="topic_cancel" CLASS="button" VALUE="<inp:m_language _Phrase="lu_cancel" />" onClick="javascript:history.back();">
- </TD>
-</TR>
-<tr>
- <td colspan="2" class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
-</TABLE><br />
-</FORM>
Property changes on: trunk/themes/default/inbulletin/topic_reply/topic_reply_form.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/btn_corn2.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/btn_corn2.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/ic_mytopics.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/ic_mytopics.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/ic_col_forum.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/ic_col_forum.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/btn_sm_corn2.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/btn_sm_corn2.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/btn_sm_corn1.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/btn_sm_corn1.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/arr_sort_down.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/arr_sort_down.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/bgr_btn_l_side.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/bgr_btn_l_side.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/bgr_forum.jpg
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/bgr_forum.jpg
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/bgr_btn_sm_l_side.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/bgr_btn_sm_l_side.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/bgr_btn_sm_r_side.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/bgr_btn_sm_r_side.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/btn_sm_quoted.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/btn_sm_quoted.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/bgr_forum_hdr_end_wide.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/bgr_forum_hdr_end_wide.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/bgr_btn_r_side.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/bgr_btn_r_side.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/bgr_btn_sm_bot.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/bgr_btn_sm_bot.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/bgr_btn_sm_top.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/bgr_btn_sm_top.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/ic_pages.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/ic_pages.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/btn_sm_delete.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/btn_sm_delete.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/btn_flat.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/btn_flat.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/bgr_forum_hdr_end_narr.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/bgr_forum_hdr_end_narr.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/arr_sort_up.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/arr_sort_up.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/ic_head_forum.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/ic_head_forum.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/btn_sm_modify_alt.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/btn_sm_modify_alt.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/btn_sm_corn1_alt.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/btn_sm_corn1_alt.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/ic_mytopics46.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/ic_mytopics46.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/btn_corn1.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/btn_corn1.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/ic_forum.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/ic_forum.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/btn_modify.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/btn_modify.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/btn_add_favorites.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/btn_add_favorites.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/bgr_btn_sm_top_alt.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/bgr_btn_sm_top_alt.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/bgr_btn_bot.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/bgr_btn_bot.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/btn_rate.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/btn_rate.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/btn_new_topic.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/btn_new_topic.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/ic_pm_list46.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/ic_pm_list46.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/btn_sm_quoted_alt.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/btn_sm_quoted_alt.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/btn_corn1_.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/btn_corn1_.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/btn_corn2_.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/btn_corn2_.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/ic_newtopic.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/ic_newtopic.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/btn_sm_modify.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/btn_sm_modify.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/btn_favorites.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/btn_favorites.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/btn_sm_delete_alt.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/btn_sm_delete_alt.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/ic_pm_list.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/ic_pm_list.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/btn_reply.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/btn_reply.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/menubar.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/menubar.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/arr_no_sort.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/arr_no_sort.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/bgr_btn_top.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/bgr_btn_top.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/ic_forum_big.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/ic_forum_big.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/btn_sm_corn2_.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/btn_sm_corn2_.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/btn_threaded.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/btn_threaded.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/img/bgr_forum_hdr_end.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inbulletin/img/bgr_forum_hdr_end.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default/inbulletin/new_topic.tpl
===================================================================
--- trunk/themes/default/inbulletin/new_topic.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/new_topic.tpl (nonexistent)
@@ -1,109 +0,0 @@
-<inp:include _template="common/head.tpl" />
-<SCRIPT language="JavaScript" SRC="<inp:m_theme_url _Page="incs/smiley.js" />"></SCRIPT>
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="10000"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="200" height="1" alt="" /><br /></td>
- </tr>
- <tr height="100%">
- <td valign="top" class="bott-line">
- <!-- path //-->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-path"><img src="img/s.gif" width="549" height="1" alt="" /><br /></td>
- <!--<td bgcolor="#61b0ec"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr>
- <td class="bgr-path">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top" width="17"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
- <td class="path"><inp:m_navbar _RootTemplate="index" _Template="__default__" _LinkCurrent="1" _Module="In-Bulletin" _ModuleRootTemplate="__default__" _separator=" &gt; " /></td>
- <td align="right">
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr>
- <td><img src="<inp:m_lang_field _Field="icon" _default="img/ic_flag.gif"/>" width="18" height="12" alt="" /><br /></td>
- <td>&nbsp;</td>
- <td class="post-action"><span onclick="showSeg('langmenu',true); "><inp:m_lang_field _Field="LocalName" /></span></td>
- <td>&nbsp;&nbsp;</td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <inp:include _Template="lang_select/lang_menu.tpl" />
- </td>
- <!--<td class="bgr-path"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- </table>
- <!-- path \\-->
-
-
- <!-- profile update line -->
- <img src="img/s.gif" width="1" height="1" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-updatefill" width="10000"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- </tr>
- </table>
- <!-- end profile update line -->
-
- <!-- profile -->
- <img src="img/s.gif" width="1" height="1" alt="" /><br />
- <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" width="10000" class="bgr-myaccount">
- <!-- page title -->
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="50"><img src="inbulletin/img/ic_forum_big.gif" width="46" height="46" alt="" /><br /></td>
- <td><h1><inp:m_language _Phrase="lu_new_topic" /></h1></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <!-- end page title -->
- <inp:perm_include _Template="inbulletin/new_topic/new_topic_form.tpl" _noaccess="access_denied.tpl" _Permission="TOPIC.ADD,TOPIC.ADD.PENDING" />
- <!-- end suggest link content -->
- </td>
- </tr>
- </table>
- </td>
-
- <!-- white line content/right column //-->
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <!-- white line content/right column \\-->
-
-
- <!-- right column //-->
- <td valign="top" height="100%" class="open-box"><inp:include _template="index/right.tpl" /></td>
- <!-- right column \\-->
-
-
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
-
- <inp:include _Template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
-
Property changes on: trunk/themes/default/inbulletin/new_topic.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/post_reply/post_reply_form.tpl
===================================================================
--- trunk/themes/default/inbulletin/post_reply/post_reply_form.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/post_reply/post_reply_form.tpl (nonexistent)
@@ -1,73 +0,0 @@
-<FORM NAME="bb_topic_reply" ACTION="<inp:bb_form_action _Template="__default__" _form="topic_reply"/>" METHOD="POST">
-<TABLE class="bb_forum" border="0" cellspacing="1" cellpadding="0" WIDTH="100%">
-<tr>
- <td colspan="2">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><h2><inp:m_language _Phrase="lu_post" /></h2></td>
- <td><img src="img/s.gif" width="10" height="1" alt="" /><br /></td>
- <td class="tips">(<span class="error">*</span><inp:m_language _Phrase="lu_required_field" />)</td>
- </tr>
- </table>
- </td>
-</tr>
-<tr>
- <td colspan="2" class="error"><inp:m_list_form_errors _Form="topic_reply" _ItemTemplate="misc/form_error.tpl" /></td>
-</tr>
-<tr>
- <td colspan="2" class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /><br /></td>
-</tr>
-<tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
-</tr>
-
-<TR>
- <TD class="field-name"><b><span class="bb_text"><inp:m_language _Phrase="lu_subject" /></span></b></TD>
- <TD class="field-content-input"><inp:bb_topic_field _field="text"/></TD>
-</TR>
-<TR>
- <TD class="field-name"><b><span class="bb_text"><inp:m_language _Phrase="lu_author" /></span></b></TD>
- <TD class="field-content-input"><inp:bb_topic_field _field="owner"/></TD>
-</TR>
-
-<tr>
- <td CLASS="field-name"><b><span class="bb_text"><inp:m_form_prompt _Form="topic_reply" _Field="subject" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_prompt_post_subject" /></B></SPAN><BR />(<inp:m_language _Phrase="lu_optional" />)</td>
- <td class="field-content-input"><inp:m_form_input type="text" class="input" style="width:235px;" _field="subject" _Form="topic_reply" /><br /></td>
-</tr>
-
-
-<TR>
- <TD class="field-name"><b><span class="bb_text"><inp:m_language _Phrase="lu_message_body"/>:</span></b></TD>
- <TD class="field-content-input">
- <inp:include _Template="inbulletin/misc/bbcode_buttons" /><br />
- <TEXTAREA CLASS="textarea" ID="textbody" NAME="bb_post_reply_body" style="width:610px;" ROWS=10 COLS=65 WRAP="VIRTUAL">[quote id=<inp:bb_post_field _field="PostingId" />]<inp:bb_post_field _field="body"/>[/quote]</TEXTAREA>
- <inp:include _Template="inbulletin/misc/smiley_list" />
- </TD>
-</TR>
-
-
-<TR>
- <TD class="field-name"><b><span class="bb_text"><inp:m_language _Phrase="lu_options" />:</span></b></TD>
- <TD class="field-content-input">
- <span class="bb_text">
- <inp:m_form_checkbox _form="topic_reply" _field="topic_bbcode" /><inp:m_language _Phrase="lu_disable" /> <i><inp:m_language _Phrase="lu_bbcode" /></i> <inp:m_language _Phrase="lu_on_this_post"/><BR />
- <inp:m_form_checkbox _form="topic_reply" _field="topic_smile" /><inp:m_language _Phrase="lu_disable" /> <i><inp:m_language _Phrase="lu_smileys" /></i> <inp:m_language _Phrase="lu_on_this_post"/><BR />
- <inp:m_form_checkbox _form="topic_reply" _field="topic_sig" /><inp:m_language _Phrase="lu_show_signature"/><BR />
- </span>
- </TD>
-</TR>
-<TR>
- <TD class="field-name">&nbsp;</TD>
- <TD class="field-content-input">
- <br />
- <INPUT TYPE="SUBMIT" NAME="topic_submit" CLASS="button" VALUE="<inp:m_language _Phrase="lu_post" />">
- &nbsp;
- <INPUT TYPE="BUTTON" NAME="topic_cancel" CLASS="button" VALUE="<inp:m_language _Phrase="lu_cancel" />" onClick="javascript:history.back();">
- </TD>
-</TR>
-<tr>
- <td colspan="2" class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
-</TABLE><br />
-<inp:m_form_input type="hidden" _Form="topic_reply" _field="replyto" />
-</FORM>
Property changes on: trunk/themes/default/inbulletin/post_reply/post_reply_form.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/main/main_element.tpl
===================================================================
--- trunk/themes/default/inbulletin/main/main_element.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/main/main_element.tpl (nonexistent)
@@ -1,20 +0,0 @@
-<tr>
- <td><img src="inbulletin/img/ic_forum.gif" width="20" height="17" alt="" /><br /></td>
- <td><a href="<inp:topic _field="cat_link" _Template="__default__" />" class="posts"><inp:topic _field="text" _NumChars="35" /></a>&nbsp;&nbsp;
- <inp:topic _field="hot"><img src="img/ic_hot.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_hot" />" /></inp>
- <inp:topic _field="new"><img src="img/ic_new.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_new" />" /></inp>
- <inp:topic _field="pop"><img src="img/ic_pop.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_pop" />" /></inp>
- <inp:topic _field="pick"><img src="img/ic_pick.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_editors_pick" />" /></inp>
- <inp:topic _field="post_pagelist" _DestTemplate="__default__" CLASS="post_pagenav" />
- </td>
-
- <td align="center" class="poster"><inp:topic _field="PostedBy" /></td>
- <td align="center" class="forum-data"><inp:topic _field="modifieddate"/><br />
- <span class="forum-time"><inp:topic _field="modifieddate" _part="time" /></span></td>
- <td align="center" class="forum-data"><inp:topic _field="replies" /></td>
- <td align="center" class="forum-data"><inp:topic _field="views" /></td>
-</tr>
-<tr>
- <td colspan="6" class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
-</tr>
-
Property changes on: trunk/themes/default/inbulletin/main/main_element.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/main/edpick.tpl
===================================================================
--- trunk/themes/default/inbulletin/main/edpick.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/main/edpick.tpl (nonexistent)
@@ -1,7 +0,0 @@
-<table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="friend-box-top"><inp:m_language _Phrase="lu_editors_picks" /></td>
- </tr>
- <inp:include _Template="inbulletin/main/edpick/topics.tpl" _DataExists=1 />
-</table>
-
Property changes on: trunk/themes/default/inbulletin/main/edpick.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/main/favorites_element.tpl
===================================================================
--- trunk/themes/default/inbulletin/main/favorites_element.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/main/favorites_element.tpl (nonexistent)
@@ -1,49 +0,0 @@
-<tr>
- <td><img src="inbulletin/img/ic_forum.gif" width="20" height="17" alt="" /><br /></td>
- <td style="padding: 10px"><a href="<inp:topic _field="link" _Template="__default__" />" class="posts"><inp:topic _field="text" _NumChars="8" /></a>&nbsp;&nbsp;
- <inp:topic _field="hot"><img src="img/ic_hot.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_hot" />" /></inp>
- <inp:topic _field="new"><img src="img/ic_new.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_new" />" /></inp>
- <inp:topic _field="pop"><img src="img/ic_pop.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_pop" />" /></inp>
- <inp:topic _field="pick"><img src="img/ic_pick.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_editors_pick" />" /></inp>
- <SPAN CLASS="pagination">
- <inp:topic _field="post_pagelist" _DestTemplate="__default__" CLASS="post_pagenav" />
- </SPAN>
- <BR />
- <span class="comments"><inp:m_language _Phrase="lu_category" />:</span> <span class="tips">
- <a href="<inp:topic _field="cat_link" _Template="__default__" />"><inp:topic _field="fullpath" /></a></span>
- <BR />
- </td>
- <td align="center" nowrap><inp:topic _Field="rating" _DisplayMode="graphical" _OffImage="img/star.gif" _OnImage="img/star_rate.gif" /></td>
- <td align="center" class="poster"><inp:topic _field="PostedBy" /></td>
- <td align="center" class="forum-data"><inp:topic _field="modifieddate"/><br />
- <span class="forum-time"><inp:topic _field="modifieddate" _part="time" /></span>
- </td>
- <td align="center" class="forum-data"><inp:topic _field="replies" /></td>
- <td align="center" class="forum-data"><inp:topic _field="views" /></td>
-</tr>
-
-<TR>
- <TD> &nbsp;</TD>
- <TD COLSPAN=7>
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <inp:topic _Field="link_edit">
- <td><img src="img/ic_edit.gif" width="16" height="16" alt="" /><br /></td>
- <TD CLASS="links-action"><inp:topic _Template="inbulletin/edit_topic.tpl" _field="link_edit" _Text="lu_edit" /></TD>
- <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
- </inp>
-
- <inp:topic _Field="link_delete">
- <td><img src="img/ic_delete.gif" width="16" height="16" alt=""/><br/></td>
- <TD CLASS="links-action"> <inp:topic _Field="link_delete" _Text="lu_delete" /></TD> <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
- </inp>
- <td><a href="<inp:topic _field="del_favorite_link" />"><img src="img/ic_removefromfav.gif" width="16" height="16" alt="" /></a><br /></td>
- <td class="links-action"><a href="<inp:topic _field="del_favorite_link" />"><inp:m_language _Phrase="lu_remove_from_favorites" /></a></td>
- </TR>
- </TABLE>
- </TD>
-</TR>
-<tr>
- <td colspan="7" class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
-</tr>
-
Property changes on: trunk/themes/default/inbulletin/main/favorites_element.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/main/main_element_last.tpl
===================================================================
--- trunk/themes/default/inbulletin/main/main_element_last.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/main/main_element_last.tpl (nonexistent)
@@ -1,17 +0,0 @@
-<tr>
- <td><img src="inbulletin/img/ic_forum.gif" width="20" height="17" alt="" /><br /></td>
- <td><a href="<inp:topic _field="cat_link" _Template="__default__" />" class="posts"><inp:topic _field="text" _NumChars="35" /></a>&nbsp;&nbsp;
- <inp:topic _field="hot"><img src="img/ic_hot.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_hot" />" /></inp>
- <inp:topic _field="new"><img src="img/ic_new.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_new" />" /></inp>
- <inp:topic _field="pop"><img src="img/ic_pop.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_pop" />" /></inp>
- <inp:topic _field="pick"><img src="img/ic_pick.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_editors_pick" />" /></inp>
- <inp:topic _field="post_pagelist" _DestTemplate="__default__" CLASS="post_pagenav" />
- </td>
-
- <td align="center" class="poster"><inp:topic _field="PostedBy" /></td>
- <td align="center" class="forum-data"><inp:topic _field="modifieddate"/><br />
- <span class="forum-time"><inp:topic _field="modifieddate" _part="time" /></span></td>
- <td align="center" class="forum-data"><inp:topic _field="replies" /></td>
- <td align="center" class="forum-data"><inp:topic _field="views" /></td>
-</tr>
-
Property changes on: trunk/themes/default/inbulletin/main/main_element_last.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/main/favorites.tpl
===================================================================
--- trunk/themes/default/inbulletin/main/favorites.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/main/favorites.tpl (nonexistent)
@@ -1,79 +0,0 @@
-<table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="5" height="1" alt="" /></td>
- <td valign="top" width="10000" class="">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="2">
- <h2><inp:m_language _Phrase="lu_topics" /> <span>(<inp:bb_list_count _ShortList="1" _ListType="favorites" />)</span></h2>
- </td>
- </tr>
- <tr><td colspan="2"><img src="img/s.gif" width="1" height="3" alt="" /><br /></td></tr>
- <tr>
- <td class="statistics"><inp:m_language _Phrase="lu_added_today" />:&nbsp;<span>(<inp:bb_list_count _ShortList="1" _ListType="favorites" _Today="1" />)</span></td>
- <td><img src="img/s.gif" width="10" height="1" alt="" /><br /></td>
- </tr>
- <tr><td colspan="2"><img src="img/s.gif" width="1" height="3" alt="" /><br /></td></tr>
- <tr>
- <td colspan="2" class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- </table><br />
-
- <!-- forum content -->
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr class="posts-tbl-hdr">
- <td colspan="2" style="border-left: 1px solid #ccc; text-align: left" nowrap>
- &nbsp; <a href="<inp:bb_topic_list_sortlink _Column="TopicText" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="TopicText" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_topics" />
- </td>
-
- <td nowrap>
- <a href="<inp:bb_topic_list_sortlink _Column="CachedRating" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="CachedRating" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_rating" /></a>
- </td>
-
- <td nowrap>
- <a href="<inp:bb_topic_list_sortlink _Column="PostedBy" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="PostedBy" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_poster" /></a>
- </td>
-
- <td nowrap>
- <a href="<inp:bb_topic_list_sortlink _Column="Modified" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="Modified" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_date" /></a>
- </td>
-
- <td nowrap>
- <a href="<inp:bb_topic_list_sortlink _Column="Posts" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="Posts" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_replies" /></a>
- </td>
-
- <td nowrap style="border-right: 1px solid #ccc">
- <a href="<inp:bb_topic_list_sortlink _Column="Views" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="Views" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_views" /></a>&nbsp;
- </td>
- </tr>
-
- <inp:bb_topic_list _Shortlist="1" _ItemTemplate="inbulletin/main/favorites_element.tpl" _ListType="favorites" />
-
- <tr>
- <td align="right" valign="top" class="posts" colspan="6">
- <inp:bb_topic_more _Shortlist="1" _Template="inbulletin/item_favorites" _ListType="favorites" _text="lu_more" _image="img/arr_more.gif" />
- </td>
- </tr>
- </table>
- <!-- end forum content -->
- </td>
- </tr>
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="2" class="bgr-separate"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
-</table>
Property changes on: trunk/themes/default/inbulletin/main/favorites.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/main/edpick/topic_element.tpl
===================================================================
--- trunk/themes/default/inbulletin/main/edpick/topic_element.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/main/edpick/topic_element.tpl (nonexistent)
@@ -1,5 +0,0 @@
- <tr>
- <td align="right"><img src="img/arr_yell.gif" width="7" height="7" alt="" /></td>
- <td class="quick-links" WIDTH="100%"><a href="<inp:topic _field="link" _Template="__default__" />" class="posts"><inp:topic _field="text" /></a></td>
-</tr>
-<!-- comments go here -->
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/main/edpick/topic_element.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/main/edpick/topics.tpl
===================================================================
--- trunk/themes/default/inbulletin/main/edpick/topics.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/main/edpick/topics.tpl (nonexistent)
@@ -1,18 +0,0 @@
-<tr>
- <td class="bgr-quick-links">
- <table width="100%" border="0" cellspacing="0" cellpadding="1">
- <tr>
- <td colspan="2" class="quick-title">
- <inp:m_module_link _Module="In-Bulletin" _Text="lu_forums" _Template="pick" _Root="1" />
- <span class="statistics">(<inp:bb_list_count _ListType="pick" _Paging="0" _MaxCount=3 />)</span>
- <img src="img/arr_more.gif" width="16" height="7" alt="" />
- </td>
- </tr>
- <inp:bb_topic_list _ListType="pick" _NoTable="1" _Paging="0" _MaxCount=3 _ItemTemplate="inbulletin/main/edpick/topic_element.tpl" />
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
- </table>
- </td>
-</tr>
-
Property changes on: trunk/themes/default/inbulletin/main/edpick/topics.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/pick/topic_element.tpl
===================================================================
--- trunk/themes/default/inbulletin/pick/topic_element.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/pick/topic_element.tpl (nonexistent)
@@ -1,18 +0,0 @@
-<tr>
- <td><img src="inbulletin/img/ic_forum.gif" width="20" height="17" alt="" /><br /></td>
- <td><a href="<inp:topic _field="cat_link" _Template="__default__" />" class="posts"><inp:topic _field="text" _NumChars="35" /></a>
- <inp:topic _field="hot"><img src="img/ic_hot.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_hot" />" /></inp>
- <inp:topic _field="new"><img src="img/ic_new.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_new" />" /></inp>
- <inp:topic _field="pop"><img src="img/ic_pop.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_pop" />" /></inp>
- <inp:topic _field="pick"><img src="img/ic_pick.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_editors_pick" />" /></inp>
- <inp:topic _field="post_pagelist" _DestTemplate="__default__" CLASS="post_pagenav" />
- </td>
- <td align="center" class="poster"><inp:topic _field="PostedBy" /></td>
- <td align="center" class="forum-data"><inp:topic _field="modifieddate"/><br />
- <span class="forum-time"><inp:topic _field="modifieddate" _part="time" /></span></td>
- <td align="center" class="forum-data"><inp:topic _field="replies" /></td>
- <td align="center" class="forum-data"><inp:topic _field="views" /></td>
-</tr>
-<tr>
- <td colspan="6" class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
-</tr>
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/pick/topic_element.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/pick/topics.tpl
===================================================================
--- trunk/themes/default/inbulletin/pick/topics.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/pick/topics.tpl (nonexistent)
@@ -1,91 +0,0 @@
- <!-- links update line -->
- <img src="img/s.gif" width="1" height="1" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-updatefill" width="10000"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td nowrap="nowrap" class="updated"><inp:m_language _Phrase="lu_topics_updated" />: <inp:bb_topic_modified /></td>
- </tr>
- </table>
- <!-- end topics update line -->
-
- <!-- topics -->
- <img src="img/s.gif" width="1" height="1" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td VALIGN="TOP" WIDTH="50"><img src="inbulletin/img/ic_forum_big.gif" width="46" height="46" alt="" /><br /></td>
- <td valign="top" width="10000" class="bgr-forum">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="5"><h2><inp:m_language _Phrase="lu_pick_topics" /> <span>(<inp:bb_list_count _ListType="pick" _CatInfo="1" _Paging="1" />)</span></h2></td>
- </tr>
- <tr>
- <td colspan="5"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
- <tr>
- <td class="statistics"><inp:m_language _Phrase="lu_total_topics" />:&nbsp;<span><inp:m_itemcount _ItemType="Topic" /></span></td>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td class="statistics"><inp:m_language _Phrase="lu_added_today" />:&nbsp;<span><inp:m_itemcount _ItemType="Topic" _Today="1" /></span></td>
- <td><img src="img/s.gif" width="10" height="1" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="5"><img src="img/s.gif" width="1" height="3" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="5" class="bgr-updatefill"><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- </tr>
- </table>
-
- <!-- links content -->
- <br />
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr class="posts-tbl-hdr">
- <td style="text-align: left; border-left: 1px solid #ccc"><img src="img/s.gif" width="21" height="1" alt="" /><br /></td>
- <td width="100%" align="center" nowrap>
- <a href="<inp:bb_topic_list_sortlink _Column="TopicText" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="TopicText" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_topics" /></td>
-
- <td align="center" nowrap>
- <img src="img/s.gif" width="100" height="1" alt="" /><br />
- <a href="<inp:bb_topic_list_sortlink _Column="PostedBy" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="PostedBy" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_poster" /></a></td>
-
- <td align="center" nowrap>
- <img src="img/s.gif" width="70" height="1" alt="" /><br />
- <a href="<inp:bb_topic_list_sortlink _Column="Modified" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="Modified" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_date" /></a></td>
-
- <td align="center" nowrap>
- <img src="img/s.gif" width="50" height="1" alt="" /><br />
- <a href="<inp:bb_topic_list_sortlink _Column="Posts" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="Posts" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_replies" /></a></td>
-
- <td align="center" nowrap>
- <img src="img/s.gif" width="50" height="1" alt="" /><br />
- <a href="<inp:bb_topic_list_sortlink _Column="Views" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="Views" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_views" /></a></td>
-
- </tr>
- <inp:bb_topic_list _ListType="pick" _CatInfo="1" _ItemTemplate="inbulletin/pick/topic_element.tpl" _ShortList="0" />
- <tr>
- <td colspan="6" align="right" valign="top" class="pagination">
- <inp:bb_topic_pagenav _ListType="pick" _Label="lu_page_label" _ShortList="0" />
- </td>
- </tr>
- </table>
- <!-- end links content -->
- </td>
- </tr>
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="2" class="bgr-separate"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- </table>
-
Property changes on: trunk/themes/default/inbulletin/pick/topics.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/pick/right.tpl
===================================================================
--- trunk/themes/default/inbulletin/pick/right.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/pick/right.tpl (nonexistent)
@@ -1,17 +0,0 @@
-
-<!-- login box //-->
-<inp:m_loginbox _LoginTemplate="misc/right_login" _LoggedInTemplate="misc/right_loggedin" />
-<!-- login box \\-->
-
-<!-- search box //-->
-<inp:include _Template="misc/right_searchbox" />
-<!-- search box \\-->
-
-<!-- recommend box //-->
-<inp:include _Template="misc/right_recommend.tpl" />
-<!-- recommend box \\-->
-
-<!-- quick links box //-->
-<inp:include _Template="inbulletin/quicklinks/new.tpl" _DataExists="1"/>
-<!-- quick links box \\-->
-<table><tr><td><br></td></tr></table>
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/pick/right.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/advsearch/adv_searchtype_options.tpl
===================================================================
--- trunk/themes/default/inbulletin/advsearch/adv_searchtype_options.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/advsearch/adv_searchtype_options.tpl (nonexistent)
@@ -1 +0,0 @@
-<OPTION VALUE="3"><inp:m_language _Phrase="lu_topics" /></OPTION>
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/advsearch/adv_searchtype_options.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/my_preferences/preferences.tpl
===================================================================
--- trunk/themes/default/inbulletin/my_preferences/preferences.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/my_preferences/preferences.tpl (nonexistent)
@@ -1,134 +0,0 @@
-<inp:include _template="common/head.tpl" />
-<SCRIPT language="JavaScript" SRC="<inp:m_theme_url _Page="incs/smiley.js" />"></SCRIPT>
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="10000"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="200" height="1" alt="" /><br /></td>
- </tr>
- <tr height="100%">
- <td valign="top" class="bott-line">
- <!-- path //-->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-path"><img src="img/s.gif" width="549" height="1" alt="" /><br /></td>
- <!--<td bgcolor="#61b0ec"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr>
- <td class="bgr-path">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top" width="17"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
- <td class="path">
- <a href="<inp:m_template_link _Template="index" _Category=0 />"><inp:m_language _Phrase="lu_home" /></a> >
- <A HREF="<inp:m_template_link _template="my_account" />"><inp:m_language _Phrase="lu_myaccount" /></A> >
- <!--<A HREF="<inp:m_template_link _template="my_preferences" />">--><inp:m_language _Phrase="lu_my_preferences" /><!--</A> >
- <inp:m_language _Phrase="lu_forums" />-->
- </td>
- <td align="right">
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr>
- <td><img src="<inp:m_lang_field _Field="icon" _default="img/ic_flag.gif"/>" width="18" height="12" alt="" /><br /></td>
- <td>&nbsp;</td>
- <td class="post-action"><span onclick="showSeg('langmenu',true); "><inp:m_lang_field _Field="LocalName" /></span></td>
- <td>&nbsp;&nbsp;</td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <inp:include _Template="lang_select/lang_menu.tpl" />
- </td>
- <!--<td class="bgr-path"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr><td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td></tr>
- </table>
- <!-- path \\-->
-
-
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" width="10000" class="bgr-myaccount">
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
- <!-- page title -->
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="50" VALIGN="top"><img src="img/ic_mypreferences_big.gif" width="46" height="46" alt="" /><br /></td>
- <td VALIGN="top"><h1><inp:m_language _Phrase="lu_my_preferences" /></h1></td>
- </tr>
- <tr>
- <td style="border-bottom: 1px solid #94c0de">&nbsp;</td>
- <td>
- <table border="0" cellspacing="0" cellpadding="2">
- <tr>
- <inp:mod_include _Template="my_preferences/pref_menubar_element1" />
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <!-- end page title -->
-
- <!-- preferences -->
- <img src="img/s.gif" width="1" height="15" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top">
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <h2><inp:m_language _Phrase="lu_forums" /><span></h2>
- </td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="3" alt="" /><br /></td>
- </tr>
- </table>
-
- </td>
- </tr>
- </table>
- <!-- end preferences -->
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top"><img src="img/pic_myprofile.jpg" width="45" height="236" alt="" /><br /></td>
- <td valign="top" width="10000">
- <!-- profile content -->
- <inp:include _Template="inbulletin/my_preferences/preferences_form.tpl" />
- </TD>
- </TR>
- </TABLE>
- <!-- end profile content-->
- </TD>
- </TR>
- </TABLE>
- </td>
-
- <!-- white line content/right column //-->
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <!-- white line content/right column \\-->
-
-
- <!-- right column //-->
- <td valign="top" height="100%" class="open-box"><inp:include _template="index/right.tpl" /></td>
- <!-- right column \\-->
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
-
- <inp:include _Template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
Property changes on: trunk/themes/default/inbulletin/my_preferences/preferences.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/my_preferences/pref_menubar_element.tpl
===================================================================
--- trunk/themes/default/inbulletin/my_preferences/pref_menubar_element.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/my_preferences/pref_menubar_element.tpl (nonexistent)
@@ -1,11 +0,0 @@
-<td style="border-bottom: 1px solid #94c0de"><img src="img/s.gif" width="2" height="1" alt="" /><br /></td>
-<td style="border: 1px solid #94c0de; width: 120px; background: #eff4fa" align="center">
- <table border="0" cellspacing="0" cellpadding="2">
- <tr>
- <td><a href="<inp:m_template_link _Template="inbulletin/my_preferences/preferences.tpl" />"><img src="inbulletin/img/ic_forum.gif" width="20" height="17" alt="" /></a><br /></td>
- <td><a href="<inp:m_template_link _Template="inbulletin/my_preferences/preferences.tpl" />"><inp:m_language _phrase="lu_forums" /></a></td>
- </tr>
- </table>
-</td>
-<td width="50%" style="border-bottom: 1px solid #94c0de">&nbsp;</td>
-
Property changes on: trunk/themes/default/inbulletin/my_preferences/pref_menubar_element.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/my_preferences/pref_menubar_element1.tpl
===================================================================
--- trunk/themes/default/inbulletin/my_preferences/pref_menubar_element1.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/my_preferences/pref_menubar_element1.tpl (nonexistent)
@@ -1,10 +0,0 @@
-<td style="border-bottom: 1px solid #94c0de"><img src="img/s.gif" width="2" height="1" alt="" /><br /></td>
-<td style="border: 1px solid #94c0de; border-bottom: none; width: 120px" align="center">
- <table border="0" cellspacing="0" cellpadding="2">
- <tr>
- <td><a href="<inp:m_template_link _Template="inbulletin/my_preferences/preferences.tpl" />"><img src="inbulletin/img/ic_forum.gif" width="20" height="17" alt="" /></a><br /></td>
- <td><a href="<inp:m_template_link _Template="inbulletin/my_preferences/preferences.tpl" />"><inp:m_language _phrase="lu_forums" /></a></td>
- </tr>
- </table>
-</td>
-<td width="50%" style="border-bottom: 1px solid #94c0de">&nbsp;</td>
Property changes on: trunk/themes/default/inbulletin/my_preferences/pref_menubar_element1.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/my_preferences/preferences_form.tpl
===================================================================
--- trunk/themes/default/inbulletin/my_preferences/preferences_form.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/my_preferences/preferences_form.tpl (nonexistent)
@@ -1,76 +0,0 @@
-<FORM enctype="multipart/form-data" method="POST" NAME="bb_profile" ACTION="<inp:bb_form_action _Form="bb_profile" />">
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="2" class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="2" class="error"><inp:m_list_form_errors _Form="bb_profile" _ItemTemplate="misc/form_error.tpl" /></td>
- </tr>
- <tr>
- <td CLASS="field-name">
- <inp:m_form_prompt _Form="bb_profile" _Field="avatar" _langtext="lu_prompt_avatar" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" />
- <inp:m_user_field _Field="image" _avatar=1>&nbsp;<A HREF="<inp:bb_delete_avatar />"><inp:m_language _Phrase="lu_delete" /></A></inp>
- <inp:m_user_field _Field="image" _avatar=1>
- <br /><img src="<inp:m_user_field _field="image" _name="avatar" _avatar=1 />" height=60 width=60 /><br />
- </inp>
- </TD>
- <td class="field-content-input"><inp:m_form_imageupload class="input" _field="avatar" _ImageName="avatar" _thumbnail="0" _Form="bb_profile" _Required="0" style="width:235px;" /><br /></td>
- </tr>
- <tr>
- <td CLASS="field-name"><inp:m_form_prompt _Form="bb_profile" _Field="show_sig" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_show_user_signatures" /></td>
- <td class="field-content-input"><inp:m_form_checkbox _field="show_sig" _Form="bb_profile" /><br /></td>
- </tr>
- <tr>
- <td CLASS="field-name"><inp:m_form_prompt _Form="bb_profile" _Field="perpage_topics" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_prompt_perpage_topics" /></td>
- <td class="field-content-input"><inp:m_form_input type="text" class="input" style="width:50px;" _field="perpage_topics" _Form="bb_profile" /><br /></td>
- </tr>
- <tr>
- <td CLASS="field-name"><inp:m_form_prompt _Form="bb_profile" _Field="perpage_posts" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_prompt_perpage_posts" /></td>
- <td class="field-content-input"><inp:m_form_input type="text" class="input" style="width:50px;" _field="perpage_posts" _Form="bb_profile" /><br /></td>
- </tr>
- <tr>
- <td CLASS="field-name"><inp:m_form_prompt _Form="bb_profile" _Field="owner_notify" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_default_notify_owner" /></td>
- <td class="field-content-input"><inp:m_form_checkbox _field="owner_notify" _Form="bb_profile" /><br /></td>
- </tr>
- <tr>
- <td CLASS="field-name"><inp:m_form_prompt _Form="bb_profile" _Field="pm_notify" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_default_notify_pm" /></td>
- <td class="field-content-input"><inp:m_form_checkbox _field="pm_notify" _Form="bb_profile" /><br /></td>
- </tr>
- <tr>
- <td CLASS="field-name"><inp:m_form_prompt _Form="bb_profile" _Field="bbcode" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_default_bbcode" /></td>
- <td class="field-content-input"><inp:m_form_checkbox _field="bbcode" _Form="bb_profile" /><br /></td>
- </tr>
- <tr>
- <td CLASS="field-name"><inp:m_form_prompt _Form="bb_profile" _Field="smileys" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_default_smileys" /></td>
- <td class="field-content-input"><inp:m_form_checkbox _field="smileys" _Form="bb_profile" /><br /></td>
- </tr>
- <tr>
- <td CLASS="field-name"><inp:m_form_prompt _Form="bb_profile" _Field="user_signatures" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_default_user_signatures" /></td>
- <td class="field-content-input"><inp:m_form_checkbox _field="user_signatures" _Form="bb_profile" /><br /></td>
- </tr>
- <TR>
- <TD class="field-name"><inp:m_language _Phrase="lu_prompt_signature"/></TD>
- <TD class="field-content-input">
- <inp:include _Template="inbulletin/misc/bbcode_buttons.tpl" /><br />
- <inp:m_form_textarea class="textarea" _field="my_signature" _Form="bb_profile" ID="textbody" ROWS="10" COLS="40" WRAP="VIRTUAL" /><br />
- <inp:include _Template="inbulletin/misc/smiley_list.tpl" _DataExists=1 />
- </TD>
- </TR>
-
-
- <!-- buttons -->
- <tr>
- <td class="field-name">&nbsp;</td>
- <td class="field-content">
- <img src="img/s.gif" width="1" height="15" alt="" /><br />
- <img src="img/s.gif" width="1" height="3" alt="" /><br />
- <INPUT type="submit" name="buttons[]" value="<inp:m_language _Phrase="lu_update" />" class="button">
- <INPUT type="button" name="cancel" value="<inp:m_language _Phrase="lu_cancel" />" class="button" onClick="javascript:history.back();">
- </td>
- </tr>
- <!-- end buttons -->
- <tr>
- <td colspan="2" class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /><br /></td>
- </tr>
- </table><br /><br />
-</FORM>
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/my_preferences/preferences_form.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.6
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/post_list_threaded.tpl
===================================================================
--- trunk/themes/default/inbulletin/post_list_threaded.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/post_list_threaded.tpl (nonexistent)
@@ -1,246 +0,0 @@
-<inp:include _template="common/head.tpl" />
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr height="100%">
- <td valign="top">
-
- <img src="img/s.gif" width="10" height="1" alt="" /><br />
- <!-- path //-->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-path"><img src="img/s.gif" width="549" height="1" alt="" /><br /></td>
- <!--<td bgcolor="#61b0ec"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr>
- <td class="bgr-path">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top" width="17"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
- <td class="path"><inp:m_navbar _RootTemplate="index" _Template="__default__" _LinkCurrent="1" _Module="In-Bulletin" _ModuleRootTemplate="__default__" _separator=" &gt; " /></td>
- <td align="right">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="<inp:m_lang_field _Field="icon" _default="img/ic_flag.gif"/>" width="18" height="12" alt="" /><br /></td>
- <td>&nbsp;</td>
- <td class="post-action"><span onclick="showSeg('langmenu',true); "><inp:m_lang_field _Field="LocalName" /></span></td>
- <td>&nbsp;&nbsp;</td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <inp:include _Template="lang_select/lang_menu.tpl" />
- </td>
- <!--<td class="bgr-path"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr><td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td></tr>
- </table>
- <!-- path \\-->
-
-
- <!-- details update line -->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-updatefill" width="10000"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td nowrap="nowrap" class="updated"><inp:m_language _Phrase="lu_topic_updated" />: <inp:bb_topic_field _Field="modifieddate" /></td>
- </tr>
- </table>
- <!-- end details update line -->
-
-
- <table border="0" cellspacing="0" cellpadding="0" width="100%">
- <tr>
- <td><img src="img/s.gif" width="10" height="1" alt="" />
- <inp:bb_topic_field _field="locked"><IMG SRC="img/ic_lock.gif" />
- <inp:m_language _Phrase="lu_locked_topic" /></inp><br />
- </td>
- <td width="100%">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="inbulletin/img/ic_forum_big.gif" width="46" height="46" alt="" vspace="10" /><br /><img src="img/s.gif" width="50" height="1" alt="" /><br /></td>
- <td width="100%"><h1><inp:bb_topic_field _field="text" /></h1></td>
- </tr>
- </table>
- </td>
- </tr>
- </table><br />
-
-
- <table border="0" cellspacing="0" cellpadding="0" width="100%">
- <tr valign="top">
- <td><img src="img/s.gif" width="10" height="1" alt="" /><br /></td>
- <td>
- <!-- REPLY BUTTON -->
- <inp:bb_topic_field _field="link_reply" _Template="inbulletin/topic_reply">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr valign="top">
- <td class="btn-l-side"><img src="inbulletin/img/btn_corn1.gif" width="11" height="16" alt="" /><br /></td>
- <td class="btn-text"><inp:bb_topic_field _field="link_reply" _Template="inbulletin/topic_reply" _text="lu_reply" /></td>
- <td class="btn-r-side"><inp:bb_topic_field _field="link_reply" _Template="inbulletin/topic_reply" _image="inbulletin/img/btn_reply.gif" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_corn2.gif" width="11" height="10" alt="" /><br /></td>
- <td class="btn-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-bot" align="right"><img src="inbulletin/img/btn_corn2_.gif" width="11" height="10" alt="" /><br /></td>
- </tr>
- </table><img src="img/s.gif" width="1" height="5" alt="" /><br />
- <!-- REPLY BUTTON \\-->
- </inp>
- </td>
- <td width="100%" align="right">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <inp:bb_topic_field _field="link_edit">
- <!-- MODIFY BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr valign="top">
- <td class="btn-l-side"><img src="inbulletin/img/btn_corn1.gif" width="11" height="16" alt="" /><br /></td>
- <td class="btn-text-sm"><inp:bb_topic_field _field="link_edit" _Template="inbulletin/edit_topic" _Text="lu_edit" /></td>
- <td class="btn-r-side"><inp:bb_topic_field _field="link_edit" _Template="inbulletin/edit_topic" _image="inbulletin/img/btn_modify.gif" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_corn2.gif" width="11" height="10" alt="" /><br /></td>
- <td class="btn-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-bot" align="right"><img src="inbulletin/img/btn_corn2_.gif" width="11" height="10" alt="" /><br /></td>
- </tr>
- </table>
- <!-- MODIFY BUTTON \\-->
- </inp>
- </td>
-
- <td>
- <inp:bb_topic_field _field="perm_link">
- <!-- RATE TOPIC BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr valign="top">
- <td class="btn-l-side"><img src="inbulletin/img/btn_corn1.gif" width="11" height="16" alt="" /><br /></td>
- <td class="btn-text-sm"><inp:bb_topic_field _field="perm_link" _Permission="TOPIC.RATE" _Template="inbulletin/rate" _Text="lu_rate_topic" /></td>
- <td class="btn-r-side"><inp:bb_topic_field _field="perm_link" _Permission="TOPIC.RATE" _Template="inbulletin/rate" _image="inbulletin/img/btn_rate.gif" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_corn2.gif" width="11" height="10" alt="" /><br /></td>
- <td class="btn-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-bot" align="right"><img src="inbulletin/img/btn_corn2_.gif" width="11" height="10" alt="" /><br /></td>
- </tr>
- </table>
- <!-- RATE TOPIC BUTTON \\-->
- </inp>
- </td>
-
- <td>
- <inp:m_perm_text _Perm="login">
- <!-- FAVORITES BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr valign="top">
- <td class="btn-l-side"><img src="inbulletin/img/btn_corn1.gif" width="11" height="16" alt="" /><br /></td>
- <td class="btn-text-sm"><inp:bb_topic_field _field="favorite_toggle" _addlabel="lu_add_to_favorites" _dellabel="lu_remove_from_favorites" /></td>
- <td class="btn-r-side"><inp:bb_topic_field _field="favorite_toggle" _addimage="inbulletin/img/btn_add_favorites.gif" _delimage="inbulletin/img/btn_favorites.gif" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_corn2.gif" width="11" height="10" alt="" /><br /></td>
- <td class="btn-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-bot" align="right"><img src="inbulletin/img/btn_corn2_.gif" width="11" height="10" alt="" /><br /></td>
- </tr>
- </table>
- <!-- FAVORITES BUTTON \\-->
- </inp>
- </td>
-
- <td>
- <inp:bb_topic_field _field="link">
- <!-- VIEW FLAT BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr valign="top">
- <td class="btn-l-side"><img src="inbulletin/img/btn_corn1.gif" width="11" height="16" alt="" /><br /></td>
- <td class="btn-text-sm"><A HREF="<inp:bb_topic_field _field="link" _Template="__default__" />"><inp:m_language _Phrase="lu_view_flat" /></a></td>
- <td class="btn-r-side"><A HREF="<inp:bb_topic_field _field="link" _Template="__default__" />"><img src="inbulletin/img/btn_flat.gif" width="34" height="28" alt="" /></a><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_corn2.gif" width="11" height="10" alt="" /><br /></td>
- <td class="btn-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-bot" align="right"><img src="inbulletin/img/btn_corn2_.gif" width="11" height="10" alt="" /><br /></td>
- </tr>
- </table>
- <!-- VIEW FLAT BUTTON \\-->
- </inp>
- </td>
- </tr>
- </table>
- <inp:bb_topic_field _field="perm_link" _Permission="TOPIC.LOCK" _Text="lu_lock_unlock" />
- <inp:m_perm_text _Perm="login">
-
- </td>
- </tr>
- </table>
-
- <!-- PAGINATION -->
- <table border="0" cellspacing="0" cellpadding="0" width="100%">
- <tr>
- <td><img src="img/s.gif" width="10" height="1" alt="" /><br /></td>
- <td width="100%" class="forum-hdr-end-narr"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- </table>
- <img src="img/s.gif" width="1" height="3" alt="" /><br />
- <!-- PAGINATION -->
-
- <table border="0" cellspacing="0" cellpadding="0" WIDTH="100%" style="border-right: 1px solid #ccc">
- <TR>
- <TD><img src="img/s.gif" width="10" height="1" alt="" /><br /></TD>
- <TD>
- <TABLE border="0" cellspacing="0" cellpadding="0" width="100%">
- <tr class="forum-hdr">
- <td><inp:m_language _Phrase="lu_author" /></td>
- <td class="forum-hdr-end"><inp:m_language _Phrase="lu_message" /></td>
- </tr>
-
- <inp:bb_post_detail _ItemTemplate="inbulletin/post_list/post_element.tpl" />
-
- </table>
- </td>
- </tr>
-
- <TR>
- <TD><img src="img/s.gif" width="10" height="1" alt="" /><br /></TD>
- <TD>
- <TABLE border="0" cellspacing="0" cellpadding="0" WIDTH="100%">
- <inp:bb_list_posts_threaded _ItemTemplate="inbulletin/post_list_threaded/post_thread.tpl" _AltItemTemplate="inbulletin/post_list_threaded/post_thread_alt.tpl" _CurrentItemTemplate="inbulletin/post_list_threaded/post_thread_current.tpl" />
- </TABLE>
- <BR />
- </TD>
- </TR>
- </TABLE>
- </TD>
- </TR>
- </TABLE>
-
- <!-- related categories -->
- <inp:perm_include _Template="related_category" _DataExists=1 />
- <!-- end related categories -->
-
- <!-- related links -->
- <inp:perm_include _Module="In-Link" _Template="inlink/related_links" _DataExists=1 />
- <!-- end related links -->
-
- <!-- related news -->
- <inp:perm_include _Module="In-News" _Template="innews/related_news" _DataExists=1 />
- <!-- end related news -->
- </td>
- </tr>
-</table>
-
-</td>
-</tr>
-
-<inp:include _template="common/footer" />
-</table>
-
-</body>
-</html>
Property changes on: trunk/themes/default/inbulletin/post_list_threaded.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/item_favorites.tpl
===================================================================
--- trunk/themes/default/inbulletin/item_favorites.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/item_favorites.tpl (nonexistent)
@@ -1,136 +0,0 @@
-<inp:include _template="common/head.tpl" />
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="10000"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="200" height="1" alt="" /><br /></td>
- </tr>
- <tr height="100%">
- <td valign="top" class="bott-line">
- <!-- path //-->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-path"><img src="img/s.gif" width="549" height="1" alt="" /><br /></td>
- <!--<td bgcolor="#61b0ec"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr>
- <td class="bgr-path">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top" width="17"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
- <td class="path">
- <a href="<inp:m_template_link _Template="index" _Category=0 />"><inp:m_language _Phrase="lu_home" /></a> >
- <A HREF="<inp:m_template_link _template="my_account" />"><inp:m_language _Phrase="lu_myaccount" /></A> >
- <A HREF="<inp:m_template_link _template="my_favorites" />"><inp:m_language _Phrase="lu_my_favorites" /></A> >
- <inp:m_language _Phrase="lu_my_topic_favorites" />
- </td>
- <td align="right">
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr>
- <td><img src="<inp:m_lang_field _Field="icon" _default="img/ic_flag.gif"/>" width="18" height="12" alt="" /><br /></td>
- <td>&nbsp;</td>
- <td class="post-action"><span onclick="showSeg('langmenu',true); "><inp:m_lang_field _Field="LocalName" /></span></td>
- <td>&nbsp;&nbsp;</td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <inp:include _Template="lang_select/lang_menu.tpl" />
- </td>
- <!--<td class="bgr-path"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr><td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td></tr>
- </table>
- <!-- path \\-->
-
-
-
-
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" width="10000" class="bgr-myaccount">
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
- <!-- page title -->
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="50"><img src="img/ic_myfavorites_big.gif" width="46" height="46" alt="" /><br /></td>
- <td><h1><inp:m_language _Phrase="lu_my_topic_favorites" /> <span>(<inp:bb_list_count _ListType="favorites" _Paging="1" />)</span></h1></td>
- </tr>
- </table>
- <!-- end page title -->
- <br />
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr class="posts-tbl-hdr">
- <td style="text-align: left; border-left: 1px solid #ccc"><img src="img/s.gif" width="21" height="1" alt="" /><br /></td>
- <td width="80%" align="center">
- <nobr><a href="<inp:bb_topic_list_sortlink _Column="TopicText" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="TopicText" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_topics" /></a></nobr>
- </td>
- <td align="center">
- <img src="img/s.gif" width="100" height="1" alt="" /><br />
- <nobr><a href="<inp:bb_topic_list_sortlink _Column="PostedBy" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="PostedBy" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_poster" /></a></nobr>
- </td>
- <td align="center">
- <img src="img/s.gif" width="70" height="1" alt="" /><br />
- <nobr><a href="<inp:bb_topic_list_sortlink _Column="LastPostDate" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="LastPostDate" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_lastpost" /></a></nobr>
- </td>
- <td align="center">
- <img src="img/s.gif" width="50" height="1" alt="" /><br />
- <nobr><a href="<inp:bb_topic_list_sortlink _Column="posts" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="posts" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_replies" /></a></nobr>
- </td>
- <td align="center">
- <img src="img/s.gif" width="50" height="1" alt="" /><br />
- <nobr><a href="<inp:bb_topic_list_sortlink _Column="views" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="views" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_views" /></a></nobr>
- </td>
- </tr>
-
- <tr>
- <td><img src="img/s.gif" width="40" height="1" alt="" /><br /></td>
- <td valign="top">
- <inp:bb_topic_list _ItemTemplate="inbulletin/favorites_element" _ListType="favorites" />
- </td>
- </tr>
- <tr>
- <td colspan="6" align="right" valign="top" class="pagination">
- <inp:bb_topic_pagenav _ListType="favorites" _Label="lu_page_label" _ShortList="0" />
- </td>
- </tr>
- </table>
- </TD>
- </TR>
- </TABLE>
- </td>
-
- <!-- white line content/right column //-->
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <!-- white line content/right column \\-->
-
-
- <!-- right column //-->
- <td valign="top" height="100%" class="open-box"><inp:include _template="inbulletin/index/right.tpl" /></td>
- <!-- right column //-->
-
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
-
- <inp:include _Template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
Property changes on: trunk/themes/default/inbulletin/item_favorites.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/menubar_element.tpl
===================================================================
--- trunk/themes/default/inbulletin/menubar_element.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/menubar_element.tpl (nonexistent)
@@ -1,5 +0,0 @@
-<td>
-<inp:m_module_link _Module="In-Bulletin" _image="inbulletin/img/ic_head_forum.gif" onmouseover="highlight_link('navbar_topics','#ffffff');" onmouseout="highlight_link('navbar_topics','');" _Template="index" _Root="1" id="navbar_top_image" />
- </td>
-<td><inp:m_module_link _Module="In-Bulletin" _Text="lu_forums" _Template="index" _Root="1" id="navbar_topics" /></td>
-<td><img src="img/ic_head_separ.gif" width="11" height="24" alt="" /></td>
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/menubar_element.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/myitems_element.tpl
===================================================================
--- trunk/themes/default/inbulletin/myitems_element.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/myitems_element.tpl (nonexistent)
@@ -1,36 +0,0 @@
-<tr>
- <td><img src="inbulletin/img/ic_forum.gif" width="20" height="15" alt="" /><br /></td>
- <td NOWRAP="nowrap"><a href="<inp:topic _field="link" _Template="__default__" />" class="posts"><inp:topic _field="text" /></a>&nbsp;&nbsp;
- <inp:topic _field="hot"><img src="img/ic_hot.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_hot" />" /></inp>
- <inp:topic _field="new"><img src="img/ic_new.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_new" />" /></inp>
- <inp:topic _field="pop"><img src="img/ic_pop.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_pop" />" /></inp>
- <inp:topic _field="pick"><img src="img/ic_pick.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_editors_pick" />" /></inp>
- <span class="pagination"><inp:topic _field="post_pagelist" _DestTemplate="__default__" CLASS="post_pagenav" /></SPAN>
- <BR />
- <span class="comments"><inp:m_language _Phrase="lu_category" />:</span> <span class="tips">
- <a href="<inp:topic _field="cat_link" _Template="__default__" />"><inp:topic _field="fullpath" /></a></span>
- </td>
- <td align="center" class="poster"><inp:topic _field="PostedBy" /></td>
- <td align="center" class="forum-data"><inp:topic _field="modifieddate"/><br />
- <span class="forum-time"><inp:topic _field="modifieddate" _part="time" /></span></td>
- <td align="center" class="forum-data"><inp:topic _field="replies" /></td>
- <td align="center" class="forum-data"><inp:topic _field="views" /></td>
-</tr>
-<TR><TD> &nbsp;</TD>
- <TD COLSPAN=5>
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/ic_edit.gif" width="16" height="16" alt="" /><br /></td>
- <TD CLASS="links-action"> <inp:topic _Template="inbulletin/topic_edit" _field="link_edit" _Text="lu_edit" /></TD>
- <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
- <td><img src="img/ic_delete.gif" width="16" height="16" alt="" /><br /></td>
- <TD CLASS="links-action"> <inp:topic _field="link_delete" _Text="lu_delete" /></TD>
- </TR>
- </TABLE>
- </TD>
-</TR>
-
-<tr>
- <td colspan="6" class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
-</tr>
-
Property changes on: trunk/themes/default/inbulletin/myitems_element.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/misc/bbcode_buttons.tpl
===================================================================
--- trunk/themes/default/inbulletin/misc/bbcode_buttons.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/misc/bbcode_buttons.tpl (nonexistent)
@@ -1,7 +0,0 @@
- <image src=img/ed_format_bold.gif onclick="AddTagWithText('B');" border=0 style="cursor: hand">
- <image src=img/ed_format_italic.gif onclick="AddTagWithText('I');" border=0 style="cursor: hand">
- <image src=img/ed_format_underline.gif onclick="AddTagWithText('U');" border=0 style="cursor: hand">
- <image src=img/ed_link.gif onclick="AddURL();" border=0 style="cursor: hand">
- <image src=img/ed_list_bullet.gif onclick="AddList();" border=0 style="cursor: hand">
- <image src=img/ed_list_subbullet.gif onClick="AddToText('[*]');" border=0 style="cursor: hand">
- <image src=img/ed_font.gif onClick="AddTagWithText('FONT');" border=0 style="cursor: hand">
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/misc/bbcode_buttons.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/misc/smiley_element.tpl
===================================================================
--- trunk/themes/default/inbulletin/misc/smiley_element.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/misc/smiley_element.tpl (nonexistent)
@@ -1 +0,0 @@
-<!-- --> <A HREF="javascript:AddToText('<inp:smiley _field="keystroke" />');"><inp:smiley _field="url" _fulltag BORDER=0 /></A>
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/misc/smiley_element.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/misc/smiley_list.tpl
===================================================================
--- trunk/themes/default/inbulletin/misc/smiley_list.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/misc/smiley_list.tpl (nonexistent)
@@ -1 +0,0 @@
-<inp:bb_list_emoticons _ItemTemplate="inbulletin/misc/smiley_element.tpl" />
Property changes on: trunk/themes/default/inbulletin/misc/smiley_list.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/favorites.tpl
===================================================================
--- trunk/themes/default/inbulletin/favorites.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/favorites.tpl (nonexistent)
@@ -1,79 +0,0 @@
-<img src="img/s.gif" width="1" height="1" alt="" /><br />
-<table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td valign="top" width="10000" class="">
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <h2><inp:m_language _Phrase="lu_topics" /><span>(<inp:bb_list_count _ShortList="1" _ListType="favorites" />)</span></h2>
- </td>
- </tr>
- <tr>
- <td class="statistics"><inp:m_language _Phrase="lu_added_today" />:&nbsp;<span>(<inp:bb_list_count _ShortList="1" _ListType="favorites" _Today="1" />)</span></td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="3" alt="" /><br /></td>
- </tr>
- <tr>
- <td class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- </table>
- <!-- forum content -->
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr class="statistics">
- <td><img src="img/s.gif" width="21" height="1" alt="" /><br /></td>
- <td width="80%" align="center">
- <a href="<inp:bb_topic_list_sortlink _Column="TopicText" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="TopicText" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_topics" /></td>
-
- <td align="center" nowrap>
- <a href="<inp:bb_topic_list_sortlink _Column="CachedRating" />">
- <img src="img/s.gif" width="100" height="1" alt="" /><br />
- <IMG src="<inp:bb_topic_list_sorticon _Column="CachedRating" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_rating" /></a></td>
-
- <td align="center" nowrap>
- <img src="img/s.gif" width="100" height="1" alt="" /><br />
- <a href="<inp:bb_topic_list_sortlink _Column="PostedBy" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="PostedBy" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_poster" /></a></td>
-
- <td align="center" nowrap>
- <img src="img/s.gif" width="70" height="1" alt="" /><br />
- <a href="<inp:bb_topic_list_sortlink _Column="Modified" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="Modified" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_date" /></a></td>
-
- <td align="center" nowrap>
- <img src="img/s.gif" width="50" height="1" alt="" /><br />
- <a href="<inp:bb_topic_list_sortlink _Column="Posts" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="Posts" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_replies" /></a></td>
-
- <td align="center" nowrap>
- <img src="img/s.gif" width="50" height="1" alt="" /><br />
- <a href="<inp:bb_topic_list_sortlink _Column="Views" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="Views" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />
- &nbsp;<inp:m_language _Phrase="lu_views" /></a></td>
-
- </tr>
-
- <inp:bb_topic_list _Shortlist="1" _ItemTemplate="inbulletin/favorites_element" _ListType="favorites" />
- <tr>
- <td align="right" valign="top" class="posts" colspan="6">
- <inp:bb_topic_more _Shortlist="1" _Template="inbulletin/item_favorites" _text="lu_more" _image="img/arr_more.gif" />
- </td>
- </tr>
- </table>
- <!-- end forum content -->
- </td>
- </tr>
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="2" class="bgr-separate"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
-</table>
Property changes on: trunk/themes/default/inbulletin/favorites.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/post_reply_quote.tpl
===================================================================
--- trunk/themes/default/inbulletin/post_reply_quote.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/post_reply_quote.tpl (nonexistent)
@@ -1,89 +0,0 @@
-<inp:include _template="common/head.tpl" />
-<SCRIPT language="JavaScript" SRC="<inp:m_theme_url _Page="incs/smiley.js" />"></SCRIPT>
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr height="100%">
- <td valign="top">
- <!-- navbar -->
- <img src="img/s.gif" width="10" height="1" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td style="background: url('img/bgr_path_full.jpg')">
- <img src="img/s.gif" width="769" height="1" alt="" /><br />
- </td>
- </tr>
- <tr>
- <td width=769 style="background: url('img/bgr_path_full.jpg')">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
- <td class="path" WIDTH="10000"><inp:m_navbar _RootTemplate="index" _Template="__default__" _LinkCurrent="1" _Module="In-Bulletin" _ModuleRootTemplate="__default__" _separator=" &gt; " /></td>
- </tr>
- </table>
- </td>
-
- </tr>
- </table>
- <!-- end navbar -->
-
- <!-- profile update line -->
- <img src="img/s.gif" width="1" height="1" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-updatefill" width="10000"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- </tr>
- </table>
- <!-- end profile update line -->
-
- <!-- profile -->
- <img src="img/s.gif" width="1" height="1" alt="" /><br />
- <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" width="10000" class="bgr-myaccount">
- <!-- page title -->
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="50"><img src="inbulletin/img/ic_forum_big.gif" width="46" height="46" alt="" /><br /></td>
- <td><h1><inp:m_language _Phrase="lu_topic_reply" /></h1></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <!-- end page title -->
- <inp:include _Template="inbulletin/post_reply/post_reply_form.tpl" _noaccess="access_denied.tpl" _Permission="TOPIC.REPLY,TOPIC.REPLY.PENDING" />
- <!-- end suggest link content -->
- </td>
- </tr>
- </table>
- </td>
-
- <!-- white line content/right column
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
-
- <td valign="top">&nbsp;</td>
- right column //-->
-
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
-
- <inp:include _Template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
-
Property changes on: trunk/themes/default/inbulletin/post_reply_quote.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/topic_list.tpl
===================================================================
--- trunk/themes/default/inbulletin/topic_list.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/topic_list.tpl (nonexistent)
@@ -1,72 +0,0 @@
-<inp:include _template="common/head.tpl" />
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="10000"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="200" height="1" alt="" /><br /></td>
- </tr>
- <tr height="100%">
- <td valign="top" class="bott-line">
- <!-- path //-->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-path"><img src="img/s.gif" width="549" height="1" alt="" /><br /></td>
- <!--<td bgcolor="#61b0ec"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr>
- <td class="bgr-path">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top" width="17"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
- <td class="path"><inp:m_navbar _RootTemplate="index" _Template="__default__" _Module="In-Bulletin" _ModuleRootTemplate="__default__" _separator=" &gt; " /></td>
- <td align="right">
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr>
- <td><img src="<inp:m_lang_field _Field="icon" _default="img/ic_flag.gif"/>" width="18" height="12" alt="" /><br /></td>
- <td>&nbsp;</td>
- <td class="post-action"><span onclick="showSeg('langmenu',true); "><inp:m_lang_field _Field="LocalName" /></span></td>
- <td>&nbsp;&nbsp;</td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <inp:include _Template="lang_select/lang_menu.tpl" />
- </td>
- <!--<td class="bgr-path"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- </table>
- <!-- path \\-->
-
- <!-- links //-->
- <inp:include _template="inbulletin/topic_list/topics.tpl" _DataExists=1 _NoDataTemplate="inbulletin/topic_list/no_topics.tpl" />
- <!-- links \\-->
- </td>
-
- <!-- white line content/right column //-->
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <!-- white line content/right column \\-->
-
-
- <!-- right column //-->
- <td valign="top" height="100%" class="open-box"><inp:include _template="inbulletin/index/right.tpl" /></td>
- <!-- right column //-->
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
-
- <inp:include _Template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
Property changes on: trunk/themes/default/inbulletin/topic_list.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/my_items.tpl
===================================================================
--- trunk/themes/default/inbulletin/my_items.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/my_items.tpl (nonexistent)
@@ -1,155 +0,0 @@
-<inp:include _template="common/head.tpl" />
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="10000"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="200" height="1" alt="" /><br /></td>
- </tr>
- <tr height="100%">
- <td valign="top" class="bott-line">
- <!-- path //-->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-path"><img src="img/s.gif" width="549" height="1" alt="" /><br /></td>
- <!--<td bgcolor="#61b0ec"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr>
- <td class="bgr-path">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top" width="17"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
- <td class="path">
- <a href="<inp:m_template_link _Template="index" _Category=0 />"><inp:m_language _Phrase="lu_home" /></a> >
- <a href="<inp:m_template_link _template="my_account" />"><inp:m_language _Phrase="lu_myaccount" /></a> > <inp:m_language _Phrase="lu_my_topics" />
- </td>
- <td align="right">
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr>
- <td><img src="<inp:m_lang_field _Field="icon" _default="img/ic_flag.gif"/>" width="18" height="12" alt="" /><br /></td>
- <td>&nbsp;</td>
- <td class="post-action"><span onclick="showSeg('langmenu',true); "><inp:m_lang_field _Field="LocalName" /></span></td>
- <td>&nbsp;&nbsp;</td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <inp:include _Template="lang_select/lang_menu.tpl" />
- </td>
- </tr>
- <tr><td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td></tr>
- </table>
- <!-- path \\-->
-
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" width="100%" class="bgr-forum">
- <img src="img/s.gif" width="1" height="1" alt="" /><br />
-
- <!-- page title //-->
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="50"><img src="inbulletin/img/ic_forum_big.gif" width="46" height="46" alt="" /><br /></td>
- <td><h1><inp:m_language _Phrase="lu_my_topics" /> <span>(<inp:bb_list_count _ListType="myitems" _Paging="1" />)</span></h1><span class="statistics"><inp:m_language _Phrase="lu_added_today" />:&nbsp;<span>(<inp:m_itemcount _ItemType="Topic" _Owner="1" _ListType="myitems" _Today="1" />)</span></span></td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- </table><img src="img/s.gif" width="1" height="5" alt="" /><br />
- <!-- page title \\-->
-
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="50">&nbsp;</TD>
- <td class="comments"><inp:m_language _Phrase="lu_legend" />:</td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td><img src="img/ic_hot.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_hot" />" /><br /></td>
- <td class="tips"> -<inp:m_language _Phrase="lu_hot" /></td>
- <td><img src="img/s.gif" width="10" height="1" alt="" /><br /></td>
- <td><img src="img/ic_new.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_new" />" /><br /></td>
- <td class="tips"> -<inp:m_language _Phrase="lu_new" /></td>
- <td><img src="img/s.gif" width="10" height="1" alt="" /><br /></td>
- <td><img src="img/ic_pop.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_pop" />" /><br /></td>
- <td class="tips"> -<inp:m_language _Phrase="lu_pop" /></td>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td><img src="img/ic_pick.gif" width="11" height="11" alt="" /><br /></td>
- <td class="tips"> -<inp:m_language _Phrase="lu_editors_pick" /></td>
- <td></td>
- <td></td>
- <td></td>
- </tr>
- </table>
- <br /><br /><br />
-
-
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="pagination" align="right"><!--<img src="img/ic_pages.gif" width="9" height="12" alt="" />--> <inp:bb_topic_pagenav _ListType="myitems" _Label="lu_page_label" _PageIcon="img/ic_pages.gif" /></td>
- </tr>
- </table><img src="img/s.gif" width="1" height="10" alt="" /><br />
-
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr class="posts-tbl-hdr">
- <td width="100%" style="text-align: left; border-left: 1px solid #ccc">
- &nbsp; <a href="<inp:bb_topic_list_sortlink _Column="TopicText" />"><IMG src="<inp:bb_topic_list_sorticon _Column="TopicText" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_topics" /></a>
- </td>
- <td nowrap><a href="<inp:bb_topic_list_sortlink _Column="CachedRating" />"><IMG src="<inp:bb_topic_list_sorticon _Column="CachedRating" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_rating" /></a></td>
- <!--<td align="center" nowrap><a href="<inp:bb_topic_list_sortlink _Column="PostedBy" />"><IMG src="<inp:bb_topic_list_sorticon _Column="PostedBy" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_poster" /></a></td>-->
- <td align="center" nowrap><a href="<inp:bb_topic_list_sortlink _Column="Posts" />"><IMG src="<inp:bb_topic_list_sorticon _Column="Posts" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_replies" /></a></td>
- <td align="center" nowrap><a href="<inp:bb_topic_list_sortlink _Column="Views" />"><IMG src="<inp:bb_topic_list_sorticon _Column="Views" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_views" /></a></td>
- <td align="center" nowrap style="border-right: 1px solid #ccc"><a href="<inp:bb_topic_list_sortlink _Column="Modified" />"><IMG src="<inp:bb_topic_list_sorticon _Column="Modified" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_date" /></a></td>
- </tr>
- <tr>
- <!-- links -->
- <inp:bb_topic_list _ListType="myitems" _ItemTemplate="inbulletin/my_items/myitems_element.tpl" />
- <!-- end links -->
- </tr>
- </table>
- </td>
- </tr>
- </table><img src="img/s.gif" width="1" height="10" alt="" /><br />
-
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="pagination" align="right"><!--<img src="img/ic_pages.gif" width="9" height="12" alt="" />--> <inp:bb_topic_pagenav _ListType="myitems" _Label="lu_page_label" _PageIcon="img/ic_pages.gif" /></td>
- </tr>
- </table>
-
- </td>
- </tr>
- </table><br /><br />
- </td>
-
- <!-- white line content/right column //-->
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <!-- white line content/right column \\-->
-
-
- <!-- right column //-->
- <td valign="top" height="100%" class="open-box"><inp:include _template="inbulletin/my_items/right.tpl" /></td>
- <!-- right column \\-->
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
-
- <inp:include _Template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
Property changes on: trunk/themes/default/inbulletin/my_items.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/rate/getting_rated.tpl
===================================================================
--- trunk/themes/default/inbulletin/rate/getting_rated.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/rate/getting_rated.tpl (nonexistent)
@@ -1,62 +0,0 @@
-<!-- rate link content -->
-
-<inp:m_language _Phrase="lu_getting_rated_text" />
-<BR /><BR />
-<textarea cols="70" rows="15">
-<FORM enctype="multipart/form-data" method="POST" NAME="addrating" ACTION="<inp:bb_form_action _Form="bb_getting_rated" _Confirm="inbulletin/rate/rate_confirm.tpl" _Duplicate="inbulletin/rate/rate_duplicate.tpl" _FinishTemplate="__default__" />">
-<table border="0" cellspacing="0" cellpadding="0">
-<tr>
-<td colspan="4">
-<table border="0" cellspacing="0" cellpadding="0">
-<tr>
-<td><h2><inp:m_language _Phrase="lu_rate_topic" /></h2></td>
-<td><img src="<inp:m_theme_url />img/s.gif" width="10" height="1" alt="" /><br /></td>
-<td class="tips">(<span class="error">*</span><inp:m_language _Phrase="lu_required_field" />)</td>
-</tr>
-</table></td>
-</tr>
-<tr><td colspan="4" class="error"><inp:m_list_form_errors _Form="bb_getting_rated" _ItemTemplate="misc/form_error.tpl" /></td></tr>
-<tr><td colspan="4" class="bgr-updatefill"><img src="<inp:m_theme_url />img/s.gif" width="300" height="1" alt="" /><br /></td></tr><tr><td colspan="4"><img src="<inp:m_theme_url />img/s.gif" width="1" height="5" alt="" /><br /></td></tr>
-<tr>
-<td><img src="<inp:m_theme_url />img/s.gif" width="16" height="1" alt="" /><br /></td>
-<td colspan="2"><inp:m_form_input type="radio" _required="1" _field="rating" _form="bb_getting_rated" VALUE="5" /><img src="<inp:m_theme_url />img/star_rate.gif"><img src="<inp:m_theme_url />img/star_rate.gif"><img src="<inp:m_theme_url />img/star_rate.gif"><img src="<inp:m_theme_url />img/star_rate.gif"><img src="<inp:m_theme_url />img/star_rate.gif"></TD>
-<td><inp:m_form_prompt _Form="bb_getting_rated" _Field="review" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_rating_5" /></td>
-</tr>
-<tr>
-<td><img src="<inp:m_theme_url />img/s.gif" width="16" height="1" alt="" /><br /></td>
-<td colspan="2"><inp:m_form_input type="radio" _field="rating" _form="bb_getting_rated" VALUE="4" /><img src="<inp:m_theme_url />img/star_rate.gif"><img src="<inp:m_theme_url />img/star_rate.gif"><img src="<inp:m_theme_url />img/star_rate.gif"><img src="<inp:m_theme_url />img/star_rate.gif"></TD> <TD><inp:m_form_prompt _Form="bb_getting_rated" _Field="review" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_rating_4" /></td>
-</tr>
-<tr>
-<td><img src="<inp:m_theme_url />img/s.gif" width="16" height="1" alt="" /><br /></td>
-<TD COLSPAN=2><inp:m_form_input type="radio" _field="rating" _form="bb_getting_rated" VALUE="3" /><img src="<inp:m_theme_url />img/star_rate.gif"><img src="<inp:m_theme_url />img/star_rate.gif"><img src="<inp:m_theme_url />img/star_rate.gif"></TD>
-<TD><inp:m_form_prompt _Form="bb_getting_rated" _Field="review" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_rating_3" /></td>
-</tr>
-<tr>
-<td><img src="<inp:m_theme_url />img/s.gif" width="16" height="1" alt="" /><br /></td>
-<TD COLSPAN=2><inp:m_form_input type="radio" _field="rating" _form="bb_getting_rated" VALUE="2" /><img src="<inp:m_theme_url />img/star_rate.gif"><img src="<inp:m_theme_url />img/star_rate.gif"></TD>
- <TD><inp:m_form_prompt _Form="bb_getting_rated" _Field="review" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_rating_2" /></td>
-</tr>
-<tr>
-<td><img src="<inp:m_theme_url />img/s.gif" width="16" height="1" alt="" /><br /></td>
-<TD COLSPAN=2><inp:m_form_input type="radio" _field="rating" _form="bb_getting_rated" VALUE="1" /><img src="<inp:m_theme_url />img/star_rate.gif"></TD>
-<TD><inp:m_form_prompt _Form="bb_getting_rated" _Field="review" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_rating_1" /></td>
-</tr>
-<tr>
-<td><img src="<inp:m_theme_url />img/s.gif" width="16" height="1" alt="" /><br /></td>
-<TD COLSPAN=2><inp:m_form_input type="radio" _field="rating" _form="bb_getting_rated" VALUE="0" /></TD>
-<TD><inp:m_form_prompt _Form="bb_getting_rated" _Field="review" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_rating_0" /></td>
-</tr>
-<tr>
-<td colspan="4"><img src="<inp:m_theme_url />img/s.gif" width="1" height="20" alt="" /><br /></td>
-</tr>
-<tr>
-<td colspan="4"><img src="<inp:m_theme_url />img/s.gif" width="1" height="3" alt="" /><br /></td>
-</tr>
-<tr>
-<td colspan="4" class="bgr-updatefill"><img src="<inp:m_theme_url />img/s.gif" width="300" height="1" alt="" /><br /></td>
-</tr>
-<tr>
-<td colspan="4"><img src="<inp:m_theme_url />img/s.gif" width="1" height="3" alt="" /><br /><INPUT type="submit" name="buttons[]" value="<inp:m_language _Phrase="lu_button_rate" />" class="button"></td>
-</tr>
-</table>
-</FORM></textarea>
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/rate/getting_rated.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/rate/rate_form.tpl
===================================================================
--- trunk/themes/default/inbulletin/rate/rate_form.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/rate/rate_form.tpl (nonexistent)
@@ -1,109 +0,0 @@
-<!-- rate topic content -->
-<FORM enctype="multipart/form-data" method="POST" NAME="addrating" ACTION="<inp:bb_form_action _Form="bb_rate" _Confirm="inbulletin/rate/rate_confirm.tpl" _Duplicate="inbulletin/rate/rate_duplicate.tpl" _FinishTemplate="__default__" />">
-<table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="4">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><h2><inp:m_language _Phrase="lu_rate_topic" /></h2></td>
- <td><img src="img/s.gif" width="10" height="1" alt="" /><br /></td>
- <td class="tips">(<span class="error">*</span><inp:m_language _Phrase="lu_required_field" />)</td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td colspan="4" class="error"><inp:m_list_form_errors _Form="bb_rate" _ItemTemplate="misc/form_error.tpl" /></td>
- </tr>
- <tr>
- <td colspan="4" class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="4"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="16" height="1" alt="" /><br /></td>
- <TD COLSPAN=2>
- <inp:m_form_input type="radio" _required="1" _field="rating" _form="bb_rate" VALUE="5" />
- <IMG SRC="img/star_rate.gif"><IMG SRC="img/star_rate.gif"><IMG SRC="img/star_rate.gif"><IMG SRC="img/star_rate.gif"><IMG SRC="img/star_rate.gif">
- </TD>
- <TD>
- <inp:m_form_prompt _Form="bb_rate" _Field="review" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_rating_5" />
- </td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="16" height="1" alt="" /><br /></td>
- <TD COLSPAN=2>
- <inp:m_form_input type="radio" _field="rating" _form="bb_rate" VALUE="4" />
- <IMG SRC="img/star_rate.gif"><IMG SRC="img/star_rate.gif"><IMG SRC="img/star_rate.gif"><IMG SRC="img/star_rate.gif">
- </TD>
-
- <TD>
- <inp:m_form_prompt _Form="bb_rate" _Field="review" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_rating_4" />
- </td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="16" height="1" alt="" /><br /></td>
- <TD COLSPAN=2>
- <inp:m_form_input type="radio" _field="rating" _form="bb_rate" VALUE="3" />
- <IMG SRC="img/star_rate.gif"><IMG SRC="img/star_rate.gif"><IMG SRC="img/star_rate.gif">
- </TD><TD>
- <inp:m_form_prompt _Form="bb_rate" _Field="review" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_rating_3" />
- </td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="16" height="1" alt="" /><br /></td>
- <TD COLSPAN=2>
- <inp:m_form_input type="radio" _field="rating" _form="bb_rate" VALUE="2" />
- <IMG SRC="img/star_rate.gif"><IMG SRC="img/star_rate.gif">
- </TD>
- <TD>
- <inp:m_form_prompt _Form="bb_rate" _Field="review" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_rating_2" />
- </td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="16" height="1" alt="" /><br /></td>
- <TD COLSPAN=2>
- <inp:m_form_input type="radio" _field="rating" _form="bb_rate" VALUE="1" />
- <IMG SRC="img/star_rate.gif">
- </TD>
- <TD>
- <inp:m_form_prompt _Form="bb_rate" _Field="review" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_rating_1" />
- </td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="16" height="1" alt="" /><br /></td>
- <TD COLSPAN=2>
- <inp:m_form_input type="radio" _field="rating" _form="bb_rate" VALUE="0" />
-
- </TD>
- <TD>
- <inp:m_form_prompt _Form="bb_rate" _Field="review" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_rating_0" />
- </td>
- </tr>
-
- <tr>
- <td colspan="4"><img src="img/s.gif" width="1" height="20" alt="" /><br /></td>
- </tr>
-
- <!-- buttons -->
- <tr>
- <td colspan="4"><img src="img/s.gif" width="1" height="3" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="4" class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="4">
- <img src="img/s.gif" width="1" height="3" alt="" /><br />
- <INPUT type="submit" name="buttons[]" value="<inp:m_language _Phrase="lu_button_rate" />" class="button">
- <INPUT type="button" name="cancel" value="<inp:m_language _Phrase="lu_cancel" />" class="button" onClick="javascript:location.href='<inp:m_template_link _Unsecure="1" _Template="inbulletin/detail.tpl" />';">
- </td>
- </tr>
- <!-- end buttons -->
-</table>
-</FORM>
-
-<table width="500">
- <tr><td align="right"><a href="<inp:m_template_link _Unsecure="1" _Template="inbulletin/get_rated.tpl" />" class="link"><inp:m_language _Phrase="lu_getting_rated" /></a></td></tr>
- </table>
Property changes on: trunk/themes/default/inbulletin/rate/rate_form.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/rate/rate_confirm.tpl
===================================================================
--- trunk/themes/default/inbulletin/rate/rate_confirm.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/rate/rate_confirm.tpl (nonexistent)
@@ -1,112 +0,0 @@
-<inp:include _template="common/head.tpl"/>
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="10000"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="200" height="1" alt="" /><br /></td>
- </tr>
- <tr height="100%">
- <td valign="top" class="bott-line">
- <!-- path //-->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-path"><img src="img/s.gif" width="549" height="1" alt="" /><br /></td>
- <!--<td bgcolor="#61b0ec"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr>
- <td class="bgr-path">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top" width="17"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
- <td class="path"><inp:m_navbar _RootTemplate="index" _separator=" &gt; " /></td>
- <td align="right">
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr>
- <td><img src="<inp:m_lang_field _Field="icon" _default="img/ic_flag.gif"/>" width="18" height="12" alt="" /><br /></td>
- <td>&nbsp;</td>
- <td class="post-action"><span onclick="showSeg('langmenu',true); "><inp:m_lang_field _Field="LocalName" /></span></td>
- <td>&nbsp;&nbsp;</td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <inp:include _Template="lang_select/lang_menu.tpl" />
- </td>
- <!--<td class="bgr-path"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr><td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td></tr>
- </table>
- <!-- path \\-->
-
-
- <!-- confirm //-->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" width="10000">
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <FORM method="POST" NAME="addreview_confirm" ACTION="<inp:bb_form_action _Form="bb_rate_confirm" />">
- <tr>
- <td width="50"><img src="img/ic_confirm_big.gif" width="46" height="46" alt="" /><br /></td>
- <td><h1><inp:m_language _Phrase="lu_rate_topic" /></h1></td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /><br /></TD>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td><br />
- <h2><inp:m_language _Phrase="lu_topic_rate_confirm" /></h2>
- <inp:m_language _Phrase="lu_topic_rate_confirm_text" /><br /><br />
- </td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /><br /></TD>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td>
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
- <INPUT type="submit" name="buttons[]" value="<inp:m_language _Phrase="lu_button_ok" />" class="button">
- </td>
- </tr>
- </FORM>
- </table>
- </td>
- </tr>
- </table>
- <!-- confirm \\-->
-
- </td>
-
- <!-- white line content/right column //-->
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <!-- white line content/right column \\-->
-
-
- <!-- right column //-->
- <td valign="top" height="100%" class="open-box"><inp:include _template="inbulletin/index/right.tpl" /></td>
- <!-- right column //-->
-
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
-
- <inp:include _Template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
Property changes on: trunk/themes/default/inbulletin/rate/rate_confirm.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/rate/rate_duplicate.tpl
===================================================================
--- trunk/themes/default/inbulletin/rate/rate_duplicate.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/rate/rate_duplicate.tpl (nonexistent)
@@ -1,110 +0,0 @@
-<inp:include _template="common/head.tpl" />
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="10000"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="200" height="1" alt="" /><br /></td>
- </tr>
- <tr height="100%">
- <td valign="top" class="bott-line">
- <!-- path //-->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-path"><img src="img/s.gif" width="549" height="1" alt="" /><br /></td>
- <!--<td bgcolor="#61b0ec"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr>
- <td class="bgr-path">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top" width="17"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
- <td class="path"><inp:m_navbar _RootTemplate="index" _separator=" &gt; " /></td>
- <td align="right">
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr>
- <td><img src="<inp:m_lang_field _Field="icon" _default="img/ic_flag.gif"/>" width="18" height="12" alt="" /><br /></td>
- <td>&nbsp;</td>
- <td class="post-action"><span onclick="showSeg('langmenu',true); "><inp:m_lang_field _Field="LocalName" /></span></td>
- <td>&nbsp;&nbsp;</td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <inp:include _Template="lang_select/lang_menu.tpl" />
- </td>
- <!--<td class="bgr-path"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr><td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td></tr>
- </table>
- <!-- path \\-->
-
- <!-- confirm //-->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" width="10000">
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <FORM method="POST" NAME="addreview_confirm" ACTION="<inp:bb_form_action _Form="bb_rate_confirm" />">
- <tr>
- <td width="50"><img src="img/ic_confirm_big.gif" width="46" height="46" alt="" /><br /></td>
- <td><h1><inp:m_language _Phrase="lu_rate_topic" /></h1></td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /><br /></TD>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td><br />
- <h2><inp:m_language _Phrase="lu_topic_rate_confirm" /></h2>
- <inp:m_language _Phrase="lu_topic_rate_confirm_duplicate_text" /><br /><br />
- </td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /><br /></TD>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td>
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
- <INPUT type="submit" name="buttons[]" value="<inp:m_language _Phrase="lu_button_ok" />" class="button">
- </td>
- </tr>
- </FORM>
- </table>
- </td>
- </tr>
- </table>
- <!-- confirm \\-->
-
- </td>
-
- <!-- white line content/right column //-->
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <!-- white line content/right column \\-->
-
- <!-- right column //-->
- <td valign="top" height="100%" class="open-box"><inp:include _template="inbulletin/index/right.tpl" /></td>
- <!-- right column //-->
-
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
-
- <inp:include _Template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
Property changes on: trunk/themes/default/inbulletin/rate/rate_duplicate.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/rate/rate_access_denied.tpl
===================================================================
--- trunk/themes/default/inbulletin/rate/rate_access_denied.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/rate/rate_access_denied.tpl (nonexistent)
@@ -1,63 +0,0 @@
-<SPAN CLASS="error">
-<inp:m_language _Phrase="lu_rate_access_denied" />
-</SPAN>
-<FORM method="POST" NAME="login" ACTION="<inp:m_form_action _form="login"/>">
-<table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <!--<td valign="top"><img src="img/pic_login.jpg" width="45" height="236" alt="" /><br /></td>-->
- <td valign="top" width="10000">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="3" class="field-content-top"><h2><inp:m_language _Phrase="lu_existing_users" /></h2></td>
- </tr>
- <tr>
- <td colspan="3" class="error"><inp:m_list_form_errors _Form="login" _ItemTemplate="misc/form_error.tpl" /></td>
- </tr>
- <tr>
- <td class="field-name">
- <inp2:m_if check="u_UseUsernames">
- <inp:m_form_prompt _field="login_user" _Form="login" _langtext="lu_prompt_username" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" />
- <inp2:m_else/>
- <inp:m_form_prompt _field="login_user" _Form="login" _langtext="lu_prompt_email" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" />
- </inp2:m_if>
- <span class="error">*</span>
- </td>
- <td width="100%" class="field-content-input"><inp:m_form_input type="text" class="input" style="width:135px;" _field="login_user" _Form="login" _Required="1" /><br /></td>
- <td>&nbsp;</td>
- </tr>
- <tr>
- <td class="field-name"><inp:m_form_prompt _form="login" _Field="login_password" _langtext="lu_prompt_password" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" /> <span class="error">*</span></td>
- <td class="field-content-input"><inp:m_form_input type="password" class="input" _field="login_password" _Form="login" _Required="1" style="width:135px;" /><br /></td>
- <td>&nbsp;</td>
- </tr>
- <tr>
- <td class="field-name">&nbsp;</td>
- <td class="field-content" valign="top">
- <span class="tips"><a href="<inp:m_template_link _Template="forgotpw" />"><inp:m_language _Phrase="lu_forgot_password_link" /></a></span><br />
- <img src="img/s.gif" width="1" height="15" alt="" /><br />
- <INPUT type="submit" name="login" value="<inp:m_language _Phrase="lu_login" />" class="button">
- </td>
- <td>&nbsp;</td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td colspan="2" class="field-content"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="3" class="field-content-top">
- <br />
- <h2><inp:m_language _Phrase="lu_new_users" /></h2>
- <inp:m_language _Phrase="lu_register_text" />
- </td>
- </tr>
- <tr>
- <td class="field-name"><br /><br /></td>
- <td colspan="2" class="field-content"><span class="item-my"><a href="<inp:m_template_link _Template="register" />"><inp:m_language _Phrase="lu_register" /></a></span></td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-</form>
-
-
Property changes on: trunk/themes/default/inbulletin/rate/rate_access_denied.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/post_edit/post_edit_form.tpl
===================================================================
--- trunk/themes/default/inbulletin/post_edit/post_edit_form.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/post_edit/post_edit_form.tpl (nonexistent)
@@ -1,70 +0,0 @@
-<FORM NAME="bb_topic_reply" ACTION="<inp:bb_form_action _Template="__default__" _form="post_edit"/>" METHOD="POST">
-<table class="bb_forum" border="0" cellspacing="1" cellpadding="0" width="100%">
- <tr>
- <td colspan="2">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><h2><inp:m_language _Phrase="lu_post" /></h2></td>
- <td><img src="img/s.gif" width="10" height="1" alt="" /><br /></td>
- <td class="tips">(<span class="error">*</span><inp:m_language _Phrase="lu_required_field" />)</td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td colspan="2" class="error"><inp:m_list_form_errors _Form="post_edit" _ItemTemplate="misc/form_error.tpl" /></td>
- </tr>
- <tr>
- <td colspan="2" class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
-
- <tr>
- <td class="field-name"><b><span class="bb_text"><inp:m_language _Phrase="lu_subject" /></span></b></td>
- <td class="field-content-input"><inp:bb_topic_field _field="text"/></td>
- </tr>
- <tr>
- <td class="field-name"><b><span class="bb_text"><inp:m_language _Phrase="lu_author" /></span></b></td>
- <td class="field-content-input"><inp:bb_topic_field _field="owner"/></td>
- </tr>
-
- <tr>
- <td CLASS="field-name"><b><span class="bb_text"><inp:m_language _Phrase="lu_prompt_post_subject" /></B></SPAN><BR />(<inp:m_language _Phrase="lu_optional" />)</td>
- <td class="field-content-input"><inp:m_form_input type="text" class="input" style="width:235px;" _field="subject" _Form="post_edit" /><br /></td>
- </tr>
-
- <tr>
- <td class="field-name"><b><span class="bb_text"><inp:m_language _Phrase="lu_message_body"/>:</span></b></td>
- <td class="field-content-input">
- <inp:include _Template="inbulletin/misc/bbcode_buttons" /><br />
- <inp:m_form_textarea class="textarea" _field="bb_post_reply_body" _Form="post_edit" _Required="1" ID="textbody" style="width:610px;" ROWS=10 COLS=65 WRAP="VIRTUAL" /><br />
- <inp:include _Template="inbulletin/misc/smiley_list" _DataExists=1 />
- </td>
- </tr>
-
- <tr>
- <td class="field-name"><b><span class="bb_text"><inp:m_language _Phrase="lu_options" />:</span></b></td>
- <td class="field-content-input">
- <span class="bb_text">
- <inp:m_form_checkbox _form="post_edit" _field="topic_bbcode" /><inp:m_language _Phrase="lu_disable" /> <i><inp:m_language _Phrase="lu_bbcode" /></i> <inp:m_language _Phrase="lu_on_this_post"/><BR />
- <inp:m_form_checkbox _form="post_edit" _field="topic_smile" /><inp:m_language _Phrase="lu_disable" /> <i><inp:m_language _Phrase="lu_smileys" /></i> <inp:m_language _Phrase="lu_on_this_post"/><BR />
- <inp:m_form_checkbox _form="post_edit" _field="topic_sig" /><inp:m_language _Phrase="lu_show_signature"/><BR />
- </span>
- </td>
- </tr>
- <tr>
- <td class="field-name">&nbsp;</td>
- <td class="field-content-input">
- <br />
- <INPUT TYPE="SUBMIT" NAME="topic_submit" CLASS="button" VALUE="<inp:m_language _Phrase="lu_post" />">
- &nbsp;
- <INPUT TYPE="BUTTON" NAME="topic_cancel" CLASS="button" VALUE="<inp:m_language _Phrase="lu_cancel" />" onClick="javascript:history.back();">
- </td>
- </tr>
- <tr>
- <td colspan="2" class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
-</table><br />
-</FORM>
Property changes on: trunk/themes/default/inbulletin/post_edit/post_edit_form.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/pm_list/pm_element.tpl
===================================================================
--- trunk/themes/default/inbulletin/pm_list/pm_element.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/pm_list/pm_element.tpl (nonexistent)
@@ -1,11 +0,0 @@
-<tr><td colspan="3"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td></tr>
-<tr>
- <td align="left" class="forum-data"><inp:pm _field="FromUser" /></td>
-
- <td align="left" class="forum-data">
- <a href="<inp:pm _field="link" _PMTemplate="inbulletin/pm_list/pm_view" />"><inp:pm _field="Subject" /></a>
- </td>
- <td align="center" class="forum-data"><inp:pm _field="DateCreated" _Format="m/d/y H:i" /></td>
-</tr>
-<tr><td colspan="3"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td></tr>
-<tr><td colspan="3" class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td></tr>
Property changes on: trunk/themes/default/inbulletin/pm_list/pm_element.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/pm_list/pm_view.tpl
===================================================================
--- trunk/themes/default/inbulletin/pm_list/pm_view.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/pm_list/pm_view.tpl (nonexistent)
@@ -1,139 +0,0 @@
-<inp:include _template="common/head.tpl" />
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-<inp:bb_pm_setmark _Mark="read" />
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr height="100%">
- <td valign="top">
-
- <img src="img/s.gif" width="10" height="1" alt="" /><br />
- <!-- path //-->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-path"><img src="img/s.gif" width="549" height="1" alt="" /><br /></td>
- <!--<td bgcolor="#61b0ec"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr>
- <td class="bgr-path">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top" width="17"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
- <td class="path">
- <a href="<inp:m_template_link _Template="index" _Category=0 />"><inp:m_language _Phrase="lu_home" /></a> >
- <A href="<inp:m_template_link _template="my_account" />"><inp:m_language _Phrase="lu_myaccount" /></A> >
- <A href="<inp:m_template_link _template="inbulletin/pm_list" />&ResetPage=1"><inp:m_language _Phrase="lu_pm_list" /></a> >
- <inp:m_language _Phrase="lu_view_pm" />
- </td>
- <td align="right">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="<inp:m_lang_field _Field="icon" _default="img/ic_flag.gif"/>" width="18" height="12" alt="" /><br /></td>
- <td>&nbsp;</td>
- <td class="post-action"><span onclick="showSeg('langmenu',true); "><inp:m_lang_field _Field="LocalName" /></span></td>
- <td>&nbsp;&nbsp;</td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <inp:include _Template="lang_select/lang_menu.tpl" />
- </td>
- <!--<td class="bgr-path"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr><td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td></tr>
- </table>
- <!-- path \\-->
-
- <table border="0" cellspacing="0" cellpadding="0" width="100%" style="border-right: 1px solid #ccc">
- <TR>
- <TD style="padding-left: 10px;">
- <TABLE border="0" cellspacing="0" cellpadding="0" width="100%">
-<!-- pm body: begin -->
- <TR>
- <TD VALIGN="top">
- <TABLE border=0 WIDTH="100%" CELLPADDING=10 CELLSPACING=0>
- <TR>
- <TD class="tips">
- <img src="img/ic_post_time.gif" width="7" height="8" alt="" />
- <inp:m_language _Phrase="lu_created" />: <inp:bb_pm_field _field="DateCreated" _Format="m/d/y H:i" />&nbsp;<inp:bb_pm_field _field="DateCreated" _part="time" />
- </TD>
- <TD ALIGN="right" VALIGN="top">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <inp:bb_not_sent _a="b">
- <!-- REPLY BUTTON -->
- <td>
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr valign="top">
- <td class="btn-sm-l-side"><img src="inbulletin/img/btn_sm_corn1.gif" width="5" height="16" alt="" /><br /></td>
- <td class="btn-sm-text"><a href="<inp:bb_pm_field _field="reply_link" _PMTemplate="inbulletin/pm_list/new_pm" />"><inp:m_language _Phrase="lu_reply" /></a></td>
- <td class="btn-sm-r-side"><img src="inbulletin/img/btn_sm_modify.gif"><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_sm_corn2.gif" width="5" height="5" alt="" /><br /></td>
- <td class="btn-sm-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-sm-bot" align="right"><img src="inbulletin/img/btn_sm_corn2_.gif" width="5" height="5" alt="" /><br /></td>
- </tr>
- </table>
- </td>
- <!-- REPLY BUTTON \\-->
- </inp:bb_not_sent>
-
- <td>&nbsp;&nbsp;</td>
-
- <!-- DELETE BUTTON -->
- <td>
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr valign="top">
- <td class="btn-sm-l-side"><img src="inbulletin/img/btn_sm_corn1.gif" width="5" height="16" alt="" /><br /></td>
- <td class="btn-sm-text"><a id="pm_delete_<inp:bb_pm_field _field="id" />" href="<inp:bb_pm_field _field="delete_link" />" onclick="return confirm('<inp:m_language _Phrase="lu_pm_delete_confirm" />');"><inp:m_language _Phrase="lu_delete" /></a></td>
- <td class="btn-sm-r-side"><img src="inbulletin/img/btn_sm_delete.gif"><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_sm_corn2.gif" width="5" height="5" alt="" /><br /></td>
- <td class="btn-sm-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-sm-bot" align="right"><img src="inbulletin/img/btn_sm_corn2_.gif" width="5" height="5" alt="" /><br /></td>
- </tr>
- </table>
- </td>
- <!-- DELETE BUTTON \\-->
- </tr>
- </table>
- </TD>
- </TR>
- <TR>
- <TD style="border-top: 1px solid #ccc" colspan=2 VALIGN="top" class="post-body">
- <inp:bb_phrase_by_pm/>: <B><inp:bb_pm_field _field="SenderUser" /></B><br /><br />
- <inp:m_language _Phrase="lu_subject" />: <B><inp:bb_pm_field _field="subject" /></B><br /><br />
- <inp:bb_pm_field _field="body" _Parsed="1" _Signature="2" /><br /><br />
- </TD>
- </TR>
- </TABLE>
- </TD>
- </TR>
-<!-- pm body: end -->
- </TABLE>
- </TD>
- </TR>
- </table>
-
- </td>
- </tr>
- </table>
-
- </td>
- </tr>
-</table>
-
-</td>
-</tr>
-
-<inp:include _template="common/footer" />
-</table>
-
-</body>
-</html>
Property changes on: trunk/themes/default/inbulletin/pm_list/pm_view.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/pm_list/pm_element_last.tpl
===================================================================
--- trunk/themes/default/inbulletin/pm_list/pm_element_last.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/pm_list/pm_element_last.tpl (nonexistent)
@@ -1,10 +0,0 @@
-<tr><td colspan="3"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td></tr>
-<tr>
- <td align="left" class="forum-data"><inp:pm _field="FromUser" /></td>
-
- <td align="left" class="forum-data">
- <a href="<inp:pm _field="link" _PMTemplate="inbulletin/pm_list/pm_view" />"><inp:pm _field="Subject" /></a>
- </td>
- <td align="center" class="forum-data"><inp:pm _field="DateCreated" _Format="m/d/y H:i" /></td>
-</tr>
-<tr><td colspan="3"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td></tr>
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/pm_list/pm_element_last.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/pm_list/pms.tpl
===================================================================
--- trunk/themes/default/inbulletin/pm_list/pms.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/pm_list/pms.tpl (nonexistent)
@@ -1,158 +0,0 @@
-<!-- forum update line -->
-<img src="img/s.gif" width="1" height="1" alt="" /><br />
-<table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-updatefill" width="10000"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- <!--
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td nowrap="nowrap" class="updated"><inp:m_language _Phrase="lu_privatemessages_updated" />: 0x</td>
- -->
- </tr>
-</table>
-<!-- end forum update line -->
-
-<img src="img/s.gif" width="1" height="1" alt="" /><br />
-<table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" width="10000">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="5"><h2><inp:m_language _Phrase="lu_private_messages" /> <span>(<inp:bb_pm_list_count />)</span></h2></td>
- </tr>
- <tr>
- <td colspan="5"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
-
- <tr>
- <td colspan="5" class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- </table>
- <br />
-
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
-
- <!-- NEW PM BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0">
- <tr valign="top">
- <td class="btn-l-side"><img src="inbulletin/img/btn_corn1.gif" width="11" height="16" alt="" /><br /></td>
- <td class="btn-text"><inp:m_module_link _Template="pm_list/new_pm" _module="In-Bulletin" _Text="lu_new_private_message" /></a></td>
- <td class="btn-r-side"><img src="inbulletin/img/btn_new_topic.gif" width="38" height="28" alt="" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_corn2.gif" width="11" height="10" alt="" /><br /></td>
- <td class="btn-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-bot" align="right"><img src="inbulletin/img/btn_corn2_.gif" width="11" height="10" alt="" /><br /></td>
- </tr>
- </table><img src="img/s.gif" width="1" height="5" alt="" /><br />
- <!-- NEW PM BUTTON \\-->
-
- </td>
- <td class="pagination" align="right"><inp:bb_bb_pagenav _Label="lu_page_label" _PageIcon="img/ic_pages.gif" /></td>
- </tr>
- </table><img src="img/s.gif" width="1" height="5" alt="" /><br />
-
-
-
-<!-- folder tabs: begin -->
-<table width="98%" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td class="tab_spacer"><img src="img/s.gif" width="2" height="1" alt="" />&nbsp;<br /></td>
- <td>
- <table border="0" cellspacing="0" cellpadding="2">
- <tr>
- <inp:bb_show_folder _FolderId="0">
- <td class="tab_active" align="center">
- <img src="img/s.gif" width="95" height="1"><br>
- <a href="<inp:m_template_link _Template="inbulletin/pm_list" />&FolderId=0"><inp:m_language _Phrase="lu_inbox" /></a>
- </td>
- <td class="tab_spacer"><img src="img/s.gif" width="2" height="1" alt="" /><br /></td>
-
- <td class="tab_inactive" align="center">
- <img src="img/s.gif" width="95" height="1"><br>
- <a href="<inp:m_template_link _Template="inbulletin/pm_list" />&FolderId=-1&ResetPage=1"><inp:m_language _Phrase="lu_sent" /></a>
- </td>
- </inp:bb_show_folder>
-
- <inp:bb_show_folder _FolderId="-1">
- <td class="tab_inactive" align="center">
- <img src="img/s.gif" width="95" height="1"><br>
- <a href="<inp:m_template_link _Template="inbulletin/pm_list" />&FolderId=0&ResetPage=1"><inp:m_language _Phrase="lu_inbox" /></a>
- </td>
- <td class="tab_spacer"><img src="img/s.gif" width="2" height="1" alt="" /><br /></td>
-
- <td class="tab_active" align="center">
- <img src="img/s.gif" width="95" height="1"><br>
- <a href="<inp:m_template_link _Template="inbulletin/pm_list" />&FolderId=-1"><inp:m_language _Phrase="lu_sent" /></a>
- </td>
- </inp:bb_show_folder>
-
- </tr>
- </table>
- </td>
- <td class="tab_spacer" width="10000"><img src="img/s.gif" width="1" height="1"></td>
- </tr>
- <tr>
- <td>
- <img src="img/s.gif" width="1" height="5">
- </td>
- </tr>
-</table>
-<!-- folder tabs: end -->
-
-
-
-
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
-<!-- pm list header: begin -->
- <tr class="posts-tbl-hdr" style="white-space: nowrap;">
- <td style="text-align: left; border-left: 1px solid #ccc">
- &nbsp; <a href="<inp:bb_pm_list_sortlink _Column="SenderUser" />">
- <IMG src="<inp:bb_pm_list_sorticon _Column="SenderUser" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:bb_phrase_by_folder _PhraseCode="FromUser" /></a>
- </td>
- <td style="text-align: left">
- <a href="<inp:bb_pm_list_sortlink _Column="Subject" />">
- <IMG src="<inp:bb_pm_list_sorticon _Column="Subject" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_subject" />
- </a>
- </td>
- <td nowrap>
- <a href="<inp:bb_pm_list_sortlink _Column="CreatedOn" />">
- <IMG src="<inp:bb_pm_list_sorticon _Column="CreatedOn" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_created" /></a>
- </td>
- </tr>
-<!-- pm list header: end -->
- <inp:bb_pm_list _ItemTemplate="inbulletin/pm_list/pm_element.tpl" _LastItemTemplate="inbulletin/pm_list/pm_element_last.tpl" />
-
- </table>
-
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <!-- NEW PM BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0">
- <tr valign="top">
- <td class="btn-l-side"><img src="inbulletin/img/btn_corn1.gif" width="11" height="16" alt="" /><br /></td>
- <td class="btn-text"><inp:m_module_link _Template="pm_list/new_pm" _module="In-Bulletin" _Text="lu_new_private_message" /></a></td>
- <td class="btn-r-side"><img src="inbulletin/img/btn_new_topic.gif" width="38" height="28" alt="" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_corn2.gif" width="11" height="10" alt="" /><br /></td>
- <td class="btn-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-bot" align="right"><img src="inbulletin/img/btn_corn2_.gif" width="11" height="10" alt="" /><br /></td>
- </tr>
- </table><img src="img/s.gif" width="1" height="5" alt="" /><br />
- <!-- NEW PM BUTTON \\-->
- </td>
- <td class="pagination" align="right"> <inp:bb_pm_pagenav _Label="lu_page_label" _PageIcon="img/ic_pages.gif" /></td>
- </tr>
- </table>
-
- <!-- end pm content -->
- </td>
- </tr>
- <tr><td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td></tr>
- <tr><td colspan="2" class="bgr-separate"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td></tr>
-</table>
-<br /><br />
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/pm_list/pms.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/pm_list/new_pm.tpl
===================================================================
--- trunk/themes/default/inbulletin/pm_list/new_pm.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/pm_list/new_pm.tpl (nonexistent)
@@ -1,116 +0,0 @@
-<inp2:m_RequireLogin login_template="login" />
-<inp:include _template="common/head.tpl" />
-<SCRIPT language="JavaScript" SRC="<inp:m_theme_url _Page="incs/smiley.js" />"></SCRIPT>
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="10000"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="200" height="1" alt="" /><br /></td>
- </tr>
- <tr height="100%">
- <td valign="top" class="bott-line">
- <!-- path //-->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-path"><img src="img/s.gif" width="549" height="1" alt="" /><br /></td>
- </tr>
- <tr>
- <td class="bgr-path">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top" width="17"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
-
- <td class="path">
- <a href="<inp:m_template_link _Template="index" _Category=0 />"><inp:m_language _Phrase="lu_home" /></a> >
- <A href="<inp:m_template_link _template="my_account" />"><inp:m_language _Phrase="lu_myaccount" /></A> >
- <A href="<inp:m_template_link _template="inbulletin/pm_list" />&ResetPage=1"><inp:m_language _Phrase="lu_pm_list" /></a> >
- <inp:m_language _Phrase="lu_new_pm" />
- </td>
-
- <td align="right">
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr>
- <td><img src="<inp:m_lang_field _Field="icon" _default="img/ic_flag.gif"/>" width="18" height="12" alt="" /><br /></td>
- <td>&nbsp;</td>
- <td class="post-action"><span onclick="showSeg('langmenu',true); "><inp:m_lang_field _Field="LocalName" /></span></td>
- <td>&nbsp;&nbsp;</td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <inp:include _Template="lang_select/lang_menu.tpl" />
- </td>
- <!--<td class="bgr-path"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- </table>
- <!-- path \\-->
-
-
- <!-- profile update line -->
- <img src="img/s.gif" width="1" height="1" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-updatefill" width="10000"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- </tr>
- </table>
- <!-- end profile update line -->
-
- <!-- profile -->
- <img src="img/s.gif" width="1" height="1" alt="" /><br />
- <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" width="10000" class="bgr-myaccount">
- <!-- page title -->
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="50"><img src="inbulletin/img/ic_forum_big.gif" width="46" height="46" alt="" /><br /></td>
- <td><h1><inp:m_language _Phrase="lu_new_pm" /></h1></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <!-- end page title -->
- <inp:include _Template="inbulletin/pm_list/new_pm_form.tpl" />
- <!-- end suggest link content -->
- </td>
- </tr>
- </table>
- </td>
-
- <!-- white line content/right column //-->
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <!-- white line content/right column \\-->
-
-
- <!-- right column //-->
- <td valign="top" height="100%" class="open-box"><inp:include _template="index/right.tpl" /></td>
- <!-- right column \\-->
-
-
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
-
- <inp:include _Template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
-
Property changes on: trunk/themes/default/inbulletin/pm_list/new_pm.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/pm_list/new_pm_form.tpl
===================================================================
--- trunk/themes/default/inbulletin/pm_list/new_pm_form.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/pm_list/new_pm_form.tpl (nonexistent)
@@ -1,63 +0,0 @@
-<FORM NAME="bb_new_pm" ACTION="<inp:bb_form_action _Confirm="inbulletin/pm_list/new_pm_confirm.tpl" _FinishTemplate="inbulletin/pm_list.tpl" _form="new_pm"/>" METHOD="POST">
-<table border="0" cellspacing="1" cellpadding="0" WIDTH="100%">
- <tr>
- <td colspan="2">
- <table border="0" cellspacing="0" cellpadding="0"width="98%">
- <tr>
- <td>&nbsp;</td>
- <td><img src="img/s.gif" width="10" height="1" alt="" /><br /></td>
- <td class="tips" ALIGN="RIGHT">(<span class="error">*</span><inp:m_language _Phrase="lu_required_field" />)</td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td colspan="2" class="error"><inp:m_list_form_errors _Form="new_pm" _ItemTemplate="misc/form_error.tpl" /></td>
- </tr>
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
-
- <tr>
- <td class="field-name"><b><span class="bb_text"><inp:m_language _Phrase="lu_to" /></span></b></td>
- <td class="field-content-input"><inp:m_form_input type="pm_to" class="input" style="width:100px;" _field="pm_to" _Form="new_pm" _Required="1" /></td>
- </tr>
-
- <tr>
- <td class="field-name"><b><span class="bb_text"><inp:m_language _Phrase="lu_subject" /></span></b></td>
- <td class="field-content-input"><inp:m_form_input type="pm_subject" class="input" style="width:420px;" _field="pm_subject" _Form="new_pm" _Required="1" /></td>
- </tr>
-
- <tr>
- <td class="field-name"><b><span class="bb_text"><inp:m_language _Phrase="lu_message_body"/>:</span></b></td>
- <td class="field-content-input">
- <inp:include _Template="inbulletin/misc/bbcode_buttons.tpl" /><br />
- <inp:m_form_textarea class="textarea" _field="bb_pm_body" _Form="new_pm" _Required="1" ID="textbody" style="width:420px;" ROWS=10 COLS=65 WRAP="VIRTUAL" /><br />
- <inp:include _Template="inbulletin/misc/smiley_list.tpl" _DataExists=1 />
- </td>
- </tr>
-
- <tr>
- <td class="field-name"><b><span class="bb_text"><inp:m_language _Phrase="lu_options" />:</span></b></td>
- <td class="field-content-input">
- <span class="bb_text">
- <inp:m_form_checkbox _form="new_pm" _field="pm_bbcode" /><inp:m_language _Phrase="lu_disable" /> <i><inp:m_language _Phrase="lu_bbcode" /></i> <inp:m_language _Phrase="lu_in_this_message"/><BR />
- <inp:m_form_checkbox _form="new_pm" _field="pm_smile" /><inp:m_language _Phrase="lu_disable" /> <i><inp:m_language _Phrase="lu_smileys" /></i> <inp:m_language _Phrase="lu_in_this_message"/><BR />
- <inp:m_form_checkbox _form="new_pm" _field="pm_sig" /><inp:m_language _Phrase="lu_show_signature"/><BR />
- </span>
- </td>
- </tr>
- <tr>
- <td class="field-name">&nbsp;</td>
- <td class="field-content-input">
- <br />
- <INPUT TYPE="SUBMIT" NAME="topic_submit" CLASS="button" VALUE="<inp:m_language _Phrase="lu_add_pm" />">
- &nbsp;
- <INPUT TYPE="BUTTON" NAME="topic_cancel" CLASS="button" VALUE="<inp:m_language _Phrase="lu_cancel" />" onClick="javascript:history.back();">
- </td>
- </tr>
- <tr>
- <td colspan="2" class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
-</table><br />
-</FORM>
Property changes on: trunk/themes/default/inbulletin/pm_list/new_pm_form.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/pm_list/no_pms.tpl
===================================================================
--- trunk/themes/default/inbulletin/pm_list/no_pms.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/pm_list/no_pms.tpl (nonexistent)
@@ -1,102 +0,0 @@
-<!-- Template: inbulletin/index/no_topics.tpl //-->
-
-<!-- forum update line -->
-<img src="img/s.gif" width="1" height="1" alt="" /><br />
-<table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-updatefill" width="10000"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- </tr>
-</table>
-<!-- end forum update line -->
-
-<img src="img/s.gif" width="1" height="1" alt="" /><br />
-<table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" width="10000">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="5"><h2><inp:m_language _Phrase="lu_private_messages" /> <span>(0)</span></h2></td>
- </tr>
- <tr>
- <td colspan="5"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
-
- <tr>
- <td colspan="5" class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- </table>
- <br />
-
- <!-- forum content -->
-
-
- <!-- NEW PM BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0">
- <tr valign="top">
- <td class="btn-l-side"><img src="inbulletin/img/btn_corn1.gif" width="11" height="16" alt="" /><br /></td>
- <td class="btn-text"><inp:m_module_link _Template="pm_list/new_pm" _module="In-Bulletin" _Text="lu_new_private_message" /></a></td>
- <td class="btn-r-side"><img src="inbulletin/img/btn_new_topic.gif" width="38" height="28" alt="" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_corn2.gif" width="11" height="10" alt="" /><br /></td>
- <td class="btn-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-bot" align="right"><img src="inbulletin/img/btn_corn2_.gif" width="11" height="10" alt="" /><br /></td>
- </tr>
- </table><img src="img/s.gif" width="1" height="5" alt="" /><br />
- <!-- NEW PM BUTTON \\-->
-
- </td>
- </tr>
- <tr>
- <td></td>
- <td>
- <!-- folder tabs: begin -->
-<table width="96%" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td class="tab_spacer"><img src="img/s.gif" width="2" height="1" alt="" />&nbsp;<br /></td>
- <td>
- <table border="0" cellspacing="0" cellpadding="2">
- <tr>
- <inp:bb_show_folder _FolderId="0">
- <td class="tab_active" align="center">
- <img src="img/s.gif" width="95" height="1"><br>
- <a href="<inp:m_template_link _Template="inbulletin/pm_list" />&FolderId=0"><inp:m_language _Phrase="lu_inbox" /></a>
- </td>
- <td class="tab_spacer"><img src="img/s.gif" width="2" height="1" alt="" /><br /></td>
-
- <td class="tab_inactive" align="center">
- <img src="img/s.gif" width="95" height="1"><br>
- <a href="<inp:m_template_link _Template="inbulletin/pm_list" />&FolderId=-1&ResetPage=1"><inp:m_language _Phrase="lu_sent" /></a>
- </td>
- </inp:bb_show_folder>
-
- <inp:bb_show_folder _FolderId="-1">
- <td class="tab_inactive" align="center">
- <img src="img/s.gif" width="95" height="1"><br>
- <a href="<inp:m_template_link _Template="inbulletin/pm_list" />&FolderId=0&ResetPage=1"><inp:m_language _Phrase="lu_inbox" /></a>
- </td>
- <td class="tab_spacer"><img src="img/s.gif" width="2" height="1" alt="" /><br /></td>
-
- <td class="tab_active" align="center">
- <img src="img/s.gif" width="95" height="1"><br>
- <a href="<inp:m_template_link _Template="inbulletin/pm_list" />&FolderId=-1"><inp:m_language _Phrase="lu_sent" /></a>
- </td>
- </inp:bb_show_folder>
-
- </tr>
- </table>
- </td>
- <td class="tab_spacer" width="10000"><img src="img/s.gif" width="1" height="1"></td>
- </tr>
- <tr>
- <td>
- <img src="img/s.gif" width="1" height="5">
- </td>
- </tr>
-</table>
-<!-- folder tabs: end -->
- </td>
- </tr>
- </table>
-
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/pm_list/no_pms.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/pm_list/new_pm_confirm.tpl
===================================================================
--- trunk/themes/default/inbulletin/pm_list/new_pm_confirm.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/pm_list/new_pm_confirm.tpl (nonexistent)
@@ -1,111 +0,0 @@
-<inp:include _template="common/head.tpl" />
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="10000"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td><img src="img/s.gif" width="200" height="1" alt="" /><br /></td>
- </tr>
- <tr height="100%">
- <td valign="top" class="bott-line">
- <!-- path //-->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-path"><img src="img/s.gif" width="549" height="1" alt="" /><br /></td>
- <!--<td bgcolor="#61b0ec"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr>
- <td class="bgr-path">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top" width="17"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
- <td class="path"><inp:m_navbar _RootTemplate="index" _separator=" &gt; " /></td>
- <td align="right">
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr>
- <td><img src="<inp:m_lang_field _Field="icon" _default="img/ic_flag.gif"/>" width="18" height="12" alt="" /><br /></td>
- <td>&nbsp;</td>
- <td class="post-action"><span onclick="showSeg('langmenu',true); "><inp:m_lang_field _Field="LocalName" /></span></td>
- <td>&nbsp;&nbsp;</td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <inp:include _Template="lang_select/lang_menu.tpl" />
- </td>
- <!--<td class="bgr-path"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>-->
- </tr>
- <tr><td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td></tr>
- </table>
- <!-- path \\-->
-
-
- <!-- confirm //-->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" width="10000">
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <FORM method="POST" NAME="newpm_confirm" ACTION="<inp:bb_form_action _Template="inbulletin/pm_list" _Form="new_pm_confirm" />">
- <tr>
- <td width="50"><img src="img/ic_confirm_big.gif" width="46" height="46" alt="" /><br /></td>
- <td><h1><inp:m_language _Phrase="lu_new_pm" /></h1></td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /><br /></TD>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td><br />
- <h2><inp:m_language _Phrase="lu_newpm_confirm" /></h2>
- <inp:m_language _Phrase="lu_newpm_confirm_text" /><br /><br />
- </td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /><br /></TD>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td>
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
- <INPUT type="submit" name="buttons[]" value="<inp:m_language _Phrase="lu_button_ok" />" class="button">
- </td>
- </tr>
- </FORM>
- </table>
- </td>
- </tr>
- </table>
- <!-- confirm \\-->
-
- </td>
-
- <!-- white line content/right column //-->
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <!-- white line content/right column \\-->
-
-
- <!-- right column //-->
- <td valign="top" height="100%" class="open-box"><inp:include _template="inbulletin/index/right.tpl" /></td>
- <!-- right column \\-->
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
-
- <inp:include _Template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
Property changes on: trunk/themes/default/inbulletin/pm_list/new_pm_confirm.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/post_list/post_element_quote.tpl
===================================================================
--- trunk/themes/default/inbulletin/post_list/post_element_quote.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/post_list/post_element_quote.tpl (nonexistent)
@@ -1,6 +0,0 @@
-<table style="border: 1px dashed #333" border="0" cellspacing="0" cellpadding="5" WIDTH="100%">
- <TR class="post-text"><TD><inp:posting _field="createdby" /> <inp:m_language _Phrase="lu_wrote" />:</TD><TD ALIGN="right"><inp:posting _field="date" /> <inp:posting _field="date" _part="time" />&nbsp;</TD></TR>
- <TR><TD CLASS="post-quote" COLSPAN=2><inp:posting _field="body" _Parsed="1" _Signature="0" _QuoteTemplate="inbulletin/post_list/post_element_quote.tpl" /></TD></TR>
-</table>
-
-
Property changes on: trunk/themes/default/inbulletin/post_list/post_element_quote.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/post_list/post_element.tpl
===================================================================
--- trunk/themes/default/inbulletin/post_list/post_element.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/post_list/post_element.tpl (nonexistent)
@@ -1,106 +0,0 @@
-<TR>
- <TD style="border-right: 1px solid #ccc; padding: 10px" VALIGN="top">
- <TABLE border=0 cellspacing="0" cellpadding="0">
- <TR>
- <TD class="poster-big"><inp:posting _field="createdby" _UserTag="date" _IsActive="1"><A HREF="<inp:posting _field="createdby" _UserTag="profile_link" _Template="profile" />"></inp><b><inp:posting _field="PosterAlias" /></b><inp:posting _field="createdby" _UserTag="date"></A></inp></TD>
- </TR>
- <TR>
- <TD><inp:posting _field="createdby" _UserTag="primarygroup" /></TD>
- </TR>
- <TR>
- <TD CLASS="poster-data" NOWRAP="nowrap"><inp:posting _field="createdby" _UserTag="image" _name="avatar"><img src="<inp:posting _field="createdby" _UserTag="image" _name="avatar" />" height=60 width=60 ALIGN="left"></inp></TD>
- </TR>
- <TR>
- <TD CLASS="poster-data" NOWRAP="nowrap"><br /><inp:posting _field="createdby" _UserTag="date"><inp:m_language _Phrase="lu_joined" />:<inp:posting _field="createdby" _UserTag="date" /></inp></TD>
- </TR>
- <TR>
- <TD CLASS="poster-data" NOWRAP="nowrap"><inp:posting _field="createdby" _UserTag="date"><inp:m_language _Phrase="lu_posts" />:&nbsp;<inp:posting _field="user_posts" /></inp></TD>
- </TR>
- <TR>
- <TD CLASS="poster-data" NOWRAP="nowrap"><inp:posting _field="createdby" _UserTag="date"><inp:m_language _Phrase="lu_location" />:&nbsp;<inp:posting _field="createdby" _UserTag="country" /></inp></TD>
- </TR>
- </TABLE>
- </td>
-
- <TD VALIGN="top">
- <TABLE border=0 WIDTH="100%" CELLPADDING=10 CELLSPACING=0>
- <TR>
- <TD class="tips">
- <img src="img/ic_post_time.gif" width="7" height="8" alt="" />
- <inp:m_language _Phrase="lu_posted" />: <inp:posting _field="date" />&nbsp;<inp:posting _field="date" _part="time" />
- </TD>
- <TD ALIGN="right" VALIGN="top">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <inp:posting _field="link_edit">
- <!-- MODIFY BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr valign="top">
- <td class="btn-sm-l-side"><img src="inbulletin/img/btn_sm_corn1.gif" width="5" height="16" alt="" /><br /></td>
- <td class="btn-sm-text"><nobr><inp:posting _field="link_edit" _Text="lu_edit" _fulltag="1" _template="inbulletin/post_edit" /></nobr></td>
- <td class="btn-sm-r-side"><inp:posting _field="link_edit" _fulltag="1" _template="inbulletin/post_edit" _image="inbulletin/img/btn_sm_modify.gif" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_sm_corn2.gif" width="5" height="5" alt="" /><br /></td>
- <td class="btn-sm-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-sm-bot" align="right"><img src="inbulletin/img/btn_sm_corn2_.gif" width="5" height="5" alt="" /><br /></td>
- </tr>
- </table>
- <!-- MODIFY BUTTON \\-->
- </inp>
- </td>
- <td>&nbsp;&nbsp;</td>
- <td>
- <inp:posting _field="link_delete">
- <!-- DELETE BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr valign="top">
- <td class="btn-sm-l-side"><img src="inbulletin/img/btn_sm_corn1.gif" width="5" height="16" alt="" /><br /></td>
- <td class="btn-sm-text"><nobr><inp:posting _field="link_delete" _text="lu_delete" /></nobr></td>
- <td class="btn-sm-r-side"><inp:posting _field="link_delete" _image="inbulletin/img/btn_sm_delete.gif" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_sm_corn2.gif" width="5" height="5" alt="" /><br /></td>
- <td class="btn-sm-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-sm-bot" align="right"><img src="inbulletin/img/btn_sm_corn2_.gif" width="5" height="5" alt="" /><br /></td>
- </tr>
- </table>
- <!-- DELETE BUTTON \\-->
- </inp>
- </td>
- <td>&nbsp;&nbsp;</td>
- <td>
- <inp:posting _field="link_quote">
- <!-- QUOTED BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr valign="top">
- <td class="btn-sm-l-side"><img src="inbulletin/img/btn_sm_corn1.gif" width="5" height="16" alt="" /><br /></td>
- <td class="btn-sm-text"><nobr><inp:posting _field="link_quote" _Text="lu_quote_reply" _fulltag="1" _Template="inbulletin/post_reply_quote" /></nobr></td>
- <td class="btn-sm-r-side"><inp:posting _field="link_quote" _fulltag="1" _Template="inbulletin/post_reply_quote" _image="inbulletin/img/btn_sm_quoted.gif" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_sm_corn2.gif" width="5" height="5" alt="" /><br /></td>
- <td class="btn-sm-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-sm-bot" align="right"><img src="inbulletin/img/btn_sm_corn2_.gif" width="5" height="5" alt="" /><br /></td>
- </tr>
- </table>
- <!-- QUOTED BUTTON \\-->
- </inp>
- </td>
- </tr>
- </table>
- <!-- <inp:posting _field="link_delete" _text="lu_delete" /> -->
- <!--<inp:posting _field="link_edit" _Text="lu_edit" _fulltag="1" _template="inbulletin/post_edit" />-->
- <!--<inp:posting _field="link_quote" _Text="lu_quote_reply" _fulltag="1" _Template="inbulletin/post_reply_quote" />-->
- </TD>
- </TR>
- <TR>
- <TD style="border-top: 1px solid #ccc" colspan=2 VALIGN="top" class="post-body">
- <B><inp:posting _field="subject" /></B><br />
- <inp:posting _field="body" _Parsed="1" _Signature="2" _QuoteTemplate="inbulletin/post_list/post_element_quote.tpl" /><br /><br />
- </TD>
- </TR>
- </TABLE>
- </TD>
-</TR>
Property changes on: trunk/themes/default/inbulletin/post_list/post_element.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/post_list/post_element_first.tpl
===================================================================
--- trunk/themes/default/inbulletin/post_list/post_element_first.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/post_list/post_element_first.tpl (nonexistent)
@@ -1,88 +0,0 @@
-<TR>
- <TD style="border-right: 1px solid #ccc; padding: 10px" VALIGN="top">
- <TABLE border=0 cellspacing="0" cellpadding="0">
- <TR>
- <TD class="poster-big"><inp:posting _field="createdby" _UserTag="date" _IsActive="1"><A HREF="<inp:posting _field="createdby" _UserTag="profile_link" _Template="profile" />"></inp><b><inp:posting _field="PosterAlias" /></b><inp:posting _field="createdby" _UserTag="date"></A></inp></TD>
- </TR>
- <TR>
- <TD><inp:posting _field="createdby" _UserTag="primarygroup" /></TD>
- </TR>
- <TR>
- <TD CLASS="poster-data" NOWRAP="nowrap"><inp:posting _field="createdby" _UserTag="image" _name="avatar"><img src="<inp:posting _field="createdby" _UserTag="image" _name="avatar" />" height=60 width=60 ALIGN="left"></inp></TD>
- </TR>
- <TR>
- <TD CLASS="poster-data" NOWRAP="nowrap"><br /><inp:posting _field="createdby" _UserTag="date"><inp:m_language _Phrase="lu_joined" />:<inp:posting _field="createdby" _UserTag="date" /></inp></TD>
- </TR>
- <TR>
- <TD CLASS="poster-data" NOWRAP="nowrap"><inp:posting _field="createdby" _UserTag="date"><inp:m_language _Phrase="lu_posts" />:&nbsp;<inp:posting _field="user_posts" /></inp></TD>
- </TR>
- <TR>
- <TD CLASS="poster-data" NOWRAP="nowrap"><inp:posting _field="createdby" _UserTag="date"><inp:m_language _Phrase="lu_location" />:&nbsp;<inp:posting _field="createdby" _UserTag="country" /></inp></TD>
- </TR>
- </TABLE>
- </td>
-
- <TD VALIGN="top">
- <TABLE border=0 WIDTH="100%" CELLPADDING=10 CELLSPACING=0>
- <TR>
- <TD class="tips">
- <img src="img/ic_post_time.gif" width="7" height="8" alt="" />
- <inp:m_language _Phrase="lu_posted" />: <inp:posting _field="date" />&nbsp;<inp:posting _field="date" _part="time" />
- </TD>
- <TD ALIGN="right" VALIGN="top">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <inp:posting _field="link_edit">
- <!-- MODIFY BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr valign="top">
- <td class="btn-sm-l-side"><img src="inbulletin/img/btn_sm_corn1.gif" width="5" height="16" alt="" /><br /></td>
- <td class="btn-sm-text"><nobr><inp:posting _field="link_edit" _Text="lu_edit" _fulltag="1" _template="inbulletin/post_edit" /></nobr></td>
- <td class="btn-sm-r-side"><inp:posting _field="link_edit" _fulltag="1" _template="inbulletin/post_edit" _image="inbulletin/img/btn_sm_modify.gif" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_sm_corn2.gif" width="5" height="5" alt="" /><br /></td>
- <td class="btn-sm-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-sm-bot" align="right"><img src="inbulletin/img/btn_sm_corn2_.gif" width="5" height="5" alt="" /><br /></td>
- </tr>
- </table>
- <!-- MODIFY BUTTON \\-->
- </inp>
- </td>
- <td>&nbsp;&nbsp;</td>
-
- <td>
- <inp:posting _field="link_quote">
- <!-- QUOTED BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr valign="top">
- <td class="btn-sm-l-side"><img src="inbulletin/img/btn_sm_corn1.gif" width="5" height="16" alt="" /><br /></td>
- <td class="btn-sm-text"><nobr><inp:posting _field="link_quote" _Text="lu_quote_reply" _fulltag="1" _Template="inbulletin/post_reply_quote" /></nobr></td>
- <td class="btn-sm-r-side"><inp:posting _field="link_quote" _fulltag="1" _Template="inbulletin/post_reply_quote" _image="inbulletin/img/btn_sm_quoted.gif" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_sm_corn2.gif" width="5" height="5" alt="" /><br /></td>
- <td class="btn-sm-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-sm-bot" align="right"><img src="inbulletin/img/btn_sm_corn2_.gif" width="5" height="5" alt="" /><br /></td>
- </tr>
- </table>
- <!-- QUOTED BUTTON \\-->
- </inp>
- </td>
- </tr>
- </table>
- <!--<inp:posting _field="link_delete" _text="lu_delete" />-->
- <!--<inp:posting _field="link_edit" _Text="lu_edit" _fulltag="1" _template="inbulletin/post_edit" />-->
- <!--<inp:posting _field="link_quote" _Text="lu_quote_reply" _fulltag="1" _Template="inbulletin/post_reply_quote" />-->
- </TD>
- </TR>
- <TR>
- <TD style="border-top: 1px solid #ccc" colspan=2 VALIGN="top" class="post-body">
- <B><inp:posting _field="subject" /></B><br />
- <inp:posting _field="body" _Parsed="1" _Signature="2" _QuoteTemplate="inbulletin/post_list/post_element_quote.tpl" /><br /><br />
- </TD>
- </TR>
- </TABLE>
- </TD>
-</TR>
Property changes on: trunk/themes/default/inbulletin/post_list/post_element_first.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/post_list/post_element_last.tpl
===================================================================
--- trunk/themes/default/inbulletin/post_list/post_element_last.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/post_list/post_element_last.tpl (nonexistent)
@@ -1,107 +0,0 @@
-<TR>
- <TD style="border-right: 1px solid #ccc; padding: 10px" NOWRAP="nowrap" VALIGN="top">
- <TABLE border=0 cellspacing="0" cellpadding="0">
- <TR>
- <TD class="poster-big"><inp:posting _field="createdby" _UserTag="date" _IsActive="1"><A HREF="<inp:posting _field="createdby" _UserTag="profile_link" _Template="profile" />"></inp><b><inp:posting _field="PosterAlias" /></b><inp:posting _field="createdby" _UserTag="date"></A></inp></TD>
- </TR>
- <TR>
- <TD><inp:posting _field="createdby" _UserTag="primarygroup" /></TD>
- </TR>
- <TR>
- <TD CLASS="poster-data" NOWRAP="nowrap"><inp:posting _field="createdby" _UserTag="image" _name="avatar"><img src="<inp:posting _field="createdby" _UserTag="image" _name="avatar" />" height=60 width=60 ALIGN="left"></inp></TD>
- </TR>
- <TR>
- <TD CLASS="poster-data" NOWRAP="nowrap"><br /><inp:posting _field="createdby" _UserTag="date"><inp:m_language _Phrase="lu_joined" />:<inp:posting _field="createdby" _UserTag="date" /></inp></TD>
- </TR>
- <TR>
- <TD CLASS="poster-data" NOWRAP="nowrap"><inp:posting _field="createdby" _UserTag="date"><inp:m_language _Phrase="lu_posts" />:&nbsp;<inp:posting _field="user_posts" /></inp></TD>
- </TR>
- <TR>
- <TD CLASS="poster-data" NOWRAP="nowrap"><inp:posting _field="createdby" _UserTag="date"><inp:m_language _Phrase="lu_location" />:&nbsp;<inp:posting _field="createdby" _UserTag="country" /></inp></TD>
- </TR>
- </TABLE>
- </td>
-
- <TD VALIGN="top">
- <TABLE border=0 WIDTH="100%" CELLPADDING=10 CELLSPACING=0>
- <TR >
- <TD class="tips">
- <img src="img/ic_post_time.gif" width="7" height="8" alt="" />
- <inp:m_language _Phrase="lu_posted" />:<inp:posting _field="date" />&nbsp;<inp:posting _field="date" _part="time" />
- </TD>
- <TD ALIGN="right" VALIGN="top">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <inp:posting _field="link_edit">
- <!-- MODIFY BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr valign="top">
- <td class="btn-sm-l-side"><img src="inbulletin/img/btn_sm_corn1.gif" width="5" height="16" alt="" /><br /></td>
- <td class="btn-sm-text"><nobr><inp:posting _field="link_edit" _Text="lu_edit" _fulltag="1" _template="inbulletin/post_edit" /></nobr></td>
- <td class="btn-sm-r-side"><inp:posting _field="link_edit" _fulltag="1" _template="inbulletin/post_edit" _image="inbulletin/img/btn_sm_modify.gif" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_sm_corn2.gif" width="5" height="5" alt="" /><br /></td>
- <td class="btn-sm-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-sm-bot" align="right"><img src="inbulletin/img/btn_sm_corn2_.gif" width="5" height="5" alt="" /><br /></td>
- </tr>
- </table>
- <!-- MODIFY BUTTON \\-->
- </inp>
- </td>
- <td>&nbsp;&nbsp;</td>
- <td>
- <inp:posting _field="link_delete">
- <!-- DELETE BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr valign="top">
- <td class="btn-sm-l-side"><img src="inbulletin/img/btn_sm_corn1.gif" width="5" height="16" alt="" /><br /></td>
- <td class="btn-sm-text"><nobr><inp:posting _field="link_delete" _text="lu_delete" /></nobr></td>
- <td class="btn-sm-r-side"><inp:posting _field="link_delete" _image="inbulletin/img/btn_sm_delete.gif" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_sm_corn2.gif" width="5" height="5" alt="" /><br /></td>
- <td class="btn-sm-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-sm-bot" align="right"><img src="inbulletin/img/btn_sm_corn2_.gif" width="5" height="5" alt="" /><br /></td>
- </tr>
- </table>
- <!-- DELETE BUTTON \\-->
- </inp>
- </td>
- <td>&nbsp;&nbsp;</td>
- <td>
- <inp:posting _field="link_quote">
- <!-- QUOTED BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr valign="top">
- <td class="btn-sm-l-side"><img src="inbulletin/img/btn_sm_corn1.gif" width="5" height="16" alt="" /><br /></td>
- <td class="btn-sm-text"><nobr><inp:posting _field="link_quote" _Text="lu_quote_reply" _fulltag="1" _Template="inbulletin/post_reply_quote" /></nobr></td>
- <td class="btn-sm-r-side"><inp:posting _field="link_quote" _fulltag="1" _Template="inbulletin/post_reply_quote" _image="inbulletin/img/btn_sm_quoted.gif" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_sm_corn2.gif" width="5" height="5" alt="" /><br /></td>
- <td class="btn-sm-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-sm-bot" align="right"><img src="inbulletin/img/btn_sm_corn2_.gif" width="5" height="5" alt="" /><br /></td>
- </tr>
- </table>
- <!-- QUOTED BUTTON \\-->
- </inp>
- </td>
- </tr>
- </table>
-
- <!--<inp:posting _field="link_delete" _text="lu_delete" />
- <inp:posting _field="link_edit" _Text="lu_edit" _fulltag="1" _template="inbulletin/post_edit.tpl" />
- <inp:posting _field="link_quote" _Text="lu_quote_reply" _fulltag="1" _Template="inbulletin/post_reply_quote.tpl" />-->
- </TD>
- </TR>
- <TR>
- <TD class="post-body" style="border-top: 1px solid #ccc" colspan=2 VALIGN="top">
- <B><inp:posting _field="subject" /></B><br />
- <inp:posting _field="body" _Parsed="1" _Signature="2" _QuoteTemplate="inbulletin/post_list/post_element_quote.tpl" />
- </TD>
- </TR>
- </TABLE>
- </TD>
-</TR>
Property changes on: trunk/themes/default/inbulletin/post_list/post_element_last.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/post_list/post_element_alt.tpl
===================================================================
--- trunk/themes/default/inbulletin/post_list/post_element_alt.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/post_list/post_element_alt.tpl (nonexistent)
@@ -1,107 +0,0 @@
-<TR>
- <TD CLASS="post-altern" style="border-right: 1px solid #fff; padding: 10px" VALIGN="top">
- <TABLE border=0 cellspacing="0" cellpadding="0">
- <TR>
- <TD class="poster-big"><inp:posting _field="createdby" _UserTag="date" _IsActive="1"><A HREF="<inp:posting _field="createdby" _UserTag="profile_link" _Template="profile" />"></inp><b><inp:posting _field="PosterAlias" /></b><inp:posting _field="createdby" _UserTag="date"></A></inp></TD>
- </TR>
- <TR>
- <TD><inp:posting _field="createdby" _UserTag="primarygroup" /></TD>
- </TR>
- <TR>
- <TD CLASS="poster-data" NOWRAP="nowrap"><inp:posting _field="createdby" _UserTag="image" _name="avatar"><img src="<inp:posting _field="createdby" _UserTag="image" _name="avatar" />" height=60 width=60 ALIGN="left"></inp></TD>
- </TR>
- <TR>
- <TD CLASS="poster-data" NOWRAP="nowrap"><br /><inp:posting _field="createdby" _UserTag="date"><inp:m_language _Phrase="lu_joined" />:<inp:posting _field="createdby" _UserTag="date" /></inp></TD>
- </TR>
- <TR>
- <TD CLASS="poster-data" NOWRAP="nowrap"><inp:posting _field="createdby" _UserTag="date"><inp:m_language _Phrase="lu_posts" />:&nbsp;<inp:posting _field="user_posts" /></inp></TD>
- </TR>
- <TR>
- <TD CLASS="poster-data" NOWRAP="nowrap"><inp:posting _field="createdby" _UserTag="date"><inp:m_language _Phrase="lu_location" />:&nbsp;<inp:posting _field="createdby" _UserTag="country" /></inp></TD>
- </TR>
- </TABLE>
- </td>
-
- <TD CLASS="post-altern" VALIGN="top">
- <TABLE border=0 WIDTH="100%" CELLPADDING=10 CELLSPACING=0>
- <TR >
- <TD class="tips">
- <img src="img/ic_post_time.gif" width="7" height="8" alt="" />
- <inp:m_language _Phrase="lu_posted" />:<inp:posting _field="date" />&nbsp;<inp:posting _field="date" _part="time" />
- </TD>
-
- <TD VALIGN="top" align="right">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <inp:posting _field="link_edit">
- <!-- MODIFY BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr valign="top">
- <td class="btn-sm-l-side"><img src="inbulletin/img/btn_sm_corn1_alt.gif" width="5" height="16" alt="" /><br /></td>
- <td class="btn-sm-text-alt"><nobr><inp:posting _field="link_edit" _Text="lu_edit" _fulltag="1" _template="inbulletin/post_edit" /></nobr></td>
- <td class="btn-sm-r-side"><inp:posting _field="link_edit" _fulltag="1" _template="inbulletin/post_edit" _image="inbulletin/img/btn_sm_modify_alt.gif" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_sm_corn2.gif" width="5" height="5" alt="" /><br /></td>
- <td class="btn-sm-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-sm-bot" align="right"><img src="inbulletin/img/btn_sm_corn2_.gif" width="5" height="5" alt="" /><br /></td>
- </tr>
- </table>
- <!-- MODIFY BUTTON \\-->
- </inp>
- </td>
- <td>&nbsp;&nbsp;</td>
- <td>
- <inp:posting _field="link_delete">
- <!-- DELETE BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr valign="top">
- <td class="btn-sm-l-side"><img src="inbulletin/img/btn_sm_corn1_alt.gif" width="5" height="16" alt="" /><br /></td>
- <td class="btn-sm-text-alt"><nobr><inp:posting _field="link_delete" _text="lu_delete" /></nobr></td>
- <td class="btn-sm-r-side"><inp:posting _field="link_delete" _image="inbulletin/img/btn_sm_delete_alt.gif" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_sm_corn2.gif" width="5" height="5" alt="" /><br /></td>
- <td class="btn-sm-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-sm-bot" align="right"><img src="inbulletin/img/btn_sm_corn2_.gif" width="5" height="5" alt="" /><br /></td>
- </tr>
- </table>
- <!-- DELETE BUTTON \\-->
- </inp>
- </td>
- <td>&nbsp;&nbsp;</td>
- <td>
- <inp:posting _field="link_quote">
- <!-- QUOTED BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr valign="top">
- <td class="btn-sm-l-side"><img src="inbulletin/img/btn_sm_corn1_alt.gif" width="5" height="16" alt="" /><br /></td>
- <td class="btn-sm-text-alt"><nobr><inp:posting _field="link_quote" _Text="lu_quote_reply" _fulltag="1" _Template="inbulletin/post_reply_quote" /></nobr></td>
- <td class="btn-sm-r-side"><inp:posting _field="link_quote" _fulltag="1" _Template="inbulletin/post_reply_quote" _image="inbulletin/img/btn_sm_quoted_alt.gif" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_sm_corn2.gif" width="5" height="5" alt="" /><br /></td>
- <td class="btn-sm-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-sm-bot" align="right"><img src="inbulletin/img/btn_sm_corn2_.gif" width="5" height="5" alt="" /><br /></td>
- </tr>
- </table>
- <!-- QUOTED BUTTON \\-->
- </inp>
- </td>
- </tr>
- </table>
- <!--<inp:posting _field="link_delete" _text="lu_delete" />-->
- <!--<inp:posting _field="link_edit" _Text="lu_edit" _fulltag="1" _template="inbulletin/post_edit" />-->
- <!--<inp:posting _field="link_quote" _Text="lu_quote_reply" _fulltag="1" _Template="inbulletin/post_reply_quote" />-->
- </TD>
- </TR>
- <TR>
- <TD colspan=2 style="border-top: 1px solid #fff" class="post-body" colspan=2 VALIGN="top">
- <B><inp:posting _field="subject" /></B><br />
- <inp:posting _field="body" _Parsed="1" _Signature="2" _QuoteTemplate="inbulletin/post_list/post_element_quote" /><br /><br />
- </TD>
- </TR>
- </TABLE>
- </TD>
-</TR>
Property changes on: trunk/themes/default/inbulletin/post_list/post_element_alt.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/post_list/post_element_last_alt.tpl
===================================================================
--- trunk/themes/default/inbulletin/post_list/post_element_last_alt.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/post_list/post_element_last_alt.tpl (nonexistent)
@@ -1,107 +0,0 @@
-<TR>
- <TD CLASS="post-altern" style="border-right: 1px solid #fff; padding: 10px" VALIGN="top">
- <TABLE border=0 cellspacing="0" cellpadding="0">
- <TR>
- <TD class="poster-big"><inp:posting _field="createdby" _UserTag="date" _IsActive="1"><A HREF="<inp:posting _field="createdby" _UserTag="profile_link" _Template="profile" />"></inp><b><inp:posting _field="PosterAlias" /></b><inp:posting _field="createdby" _UserTag="date"></A></inp></TD>
- </TR>
- <TR>
- <TD><inp:posting _field="createdby" _UserTag="primarygroup" /></TD>
- </TR>
- <TR>
- <TD CLASS="poster-data" NOWRAP="nowrap"><inp:posting _field="createdby" _UserTag="image" _name="avatar"><img src="<inp:posting _field="createdby" _UserTag="image" _name="avatar" />" height=60 width=60 ALIGN="left"></inp></TD>
- </TR>
- <TR>
- <TD CLASS="poster-data" NOWRAP="nowrap"><br /><inp:posting _field="createdby" _UserTag="date"><inp:m_language _Phrase="lu_joined" />:<inp:posting _field="createdby" _UserTag="date" /></inp></TD>
- </TR>
- <TR>
- <TD CLASS="poster-data" NOWRAP="nowrap"><inp:posting _field="createdby" _UserTag="date"><inp:m_language _Phrase="lu_posts" />:&nbsp;<inp:posting _field="user_posts" /></inp></TD>
- </TR>
- <TR>
- <TD CLASS="poster-data" NOWRAP="nowrap"><inp:posting _field="createdby" _UserTag="date"><inp:m_language _Phrase="lu_location" />:&nbsp;<inp:posting _field="createdby" _UserTag="country" /></inp></TD>
- </TR>
- </TABLE>
- </td>
-
- <TD CLASS="post-altern" VALIGN="top">
- <TABLE border=0 WIDTH="100%" CELLPADDING=10 CELLSPACING=0>
- <TR >
- <TD class="tips">
- <img src="img/ic_post_time.gif" width="7" height="8" alt="" />
- <inp:m_language _Phrase="lu_posted" />:<inp:posting _field="date" />&nbsp;<inp:posting _field="date" _part="time" />
- </TD>
- <TD ALIGN="right" VALIGN="top">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <inp:posting _field="link_edit">
- <!-- MODIFY BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr valign="top">
- <td class="btn-sm-l-side"><img src="inbulletin/img/btn_sm_corn1_alt.gif" width="5" height="16" alt="" /><br /></td>
- <td class="btn-sm-text-alt"><nobr><inp:posting _field="link_edit" _Text="lu_edit" _fulltag="1" _template="inbulletin/post_edit" /></nobr></td>
- <td class="btn-sm-r-side"><inp:posting _field="link_edit" _fulltag="1" _template="inbulletin/post_edit" _image="inbulletin/img/btn_sm_modify_alt.gif" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_sm_corn2.gif" width="5" height="5" alt="" /><br /></td>
- <td class="btn-sm-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-sm-bot" align="right"><img src="inbulletin/img/btn_sm_corn2_.gif" width="5" height="5" alt="" /><br /></td>
- </tr>
- </table>
- <!-- MODIFY BUTTON \\-->
- </inp>
- </td>
- <td>&nbsp;&nbsp;</td>
- <td>
- <inp:posting _field="link_delete">
- <!-- DELETE BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr valign="top">
- <td class="btn-sm-l-side"><img src="inbulletin/img/btn_sm_corn1_alt.gif" width="5" height="16" alt="" /><br /></td>
- <td class="btn-sm-text-alt"><nobr><inp:posting _field="link_delete" _text="lu_delete" /></nobr></td>
- <td class="btn-sm-r-side"><inp:posting _field="link_delete" _image="inbulletin/img/btn_sm_delete_alt.gif" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_sm_corn2.gif" width="5" height="5" alt="" /><br /></td>
- <td class="btn-sm-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-sm-bot" align="right"><img src="inbulletin/img/btn_sm_corn2_.gif" width="5" height="5" alt="" /><br /></td>
- </tr>
- </table>
- <!-- DELETE BUTTON \\-->
- </inp>
- </td>
- <td>&nbsp;&nbsp;</td>
- <td>
- <inp:posting _field="link_quote">
- <!-- QUOTED BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0" align="right">
- <tr valign="top">
- <td class="btn-sm-l-side"><img src="inbulletin/img/btn_sm_corn1_alt.gif" width="5" height="16" alt="" /><br /></td>
- <td class="btn-sm-text-alt"><nobr><inp:posting _field="link_quote" _Text="lu_quote_reply" _fulltag="1" _Template="inbulletin/post_reply_quote" /></nobr></td>
- <td class="btn-sm-r-side"><inp:posting _field="link_quote" _fulltag="1" _Template="inbulletin/post_reply_quote" _image="inbulletin/img/btn_sm_quoted_alt.gif" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_sm_corn2.gif" width="5" height="5" alt="" /><br /></td>
- <td class="btn-sm-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-sm-bot" align="right"><img src="inbulletin/img/btn_sm_corn2_.gif" width="5" height="5" alt="" /><br /></td>
- </tr>
- </table>
- <!-- QUOTED BUTTON \\-->
- </inp>
- </td>
- </tr>
- </table>
-
- <!--<inp:posting _field="link_delete" _text="lu_delete" />
- <inp:posting _field="link_edit" _Text="lu_edit" _fulltag="1" _template="inbulletin/post_edit.tpl" />
- <inp:posting _field="link_quote" _Text="lu_quote_reply" _fulltag="1" _Template="inbulletin/post_reply_quote.tpl" />-->
- </TD>
- </TR>
- <TR>
- <TD class="post-body" style="border-top: 1px solid #fff" colspan=2 VALIGN="top">
- <B><inp:posting _field="subject" /></B><br />
- <inp:posting _field="body" _Parsed="1" _Signature="2" _QuoteTemplate="inbulletin/post_list/post_element_quote.tpl" />
- </TD>
- </TR>
- </TABLE>
- </TD>
-</TR>
Property changes on: trunk/themes/default/inbulletin/post_list/post_element_last_alt.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/index/catview.tpl
===================================================================
--- trunk/themes/default/inbulletin/index/catview.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/index/catview.tpl (nonexistent)
@@ -1,58 +0,0 @@
-<table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" width="10000" class="bgr-forum">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="inbulletin/img/ic_forum_big.gif" width="46" height="46" alt="" vspace="10" /><br /><img src="img/s.gif" width="50" height="1" alt="" /><br /></td>
- <td width="100%"><h1><inp:m_category_field _Field="name" /></h1></td>
- </tr>
- <tr>
- <td colspan="2" valign="top">
- <table border="0" cellspacing="0" cellpadding="0">
- <td class="statistics">
- <span><inp:m_itemcount _ItemType="Post" _GroupOnly="1" /></SPAN>&nbsp;<inp:m_language _Phrase="lu_posts" />
- <inp:m_language _Phrase="lu_in"/>
- <span><inp:m_itemcount _ItemType="Topic" _GroupOnly="1" /></span>&nbsp;<inp:m_language _Phrase="lu_topics" /></td>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td class="statistics">
- <inp:m_language _Phrase="lu_added_today" />:&nbsp;<inp:m_itemcount _ItemType="Topic" _Today="1" _GroupOnly="1" />&nbsp;<inp:m_language _Phrase="lu_topics" />,&nbsp;<inp:m_itemcount _ItemType="Post" _Today="1" _GroupOnly="1" />&nbsp;<inp:m_language _Phrase="lu_posts" />
- </td>
- <tr>
- <td colspan="4"><img src="img/s.gif" width="1" height="3" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="4" class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
-
- <br />
- <table width="350" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/ic_post.gif" width="22" height="25" alt="" /><br /></td>
- <td class="field-title">&nbsp;- <inp:m_language _Phrase="lu_new_posts" /></td>
- <td><img src="img/s.gif" width="15" height="1" alt="" /><br /></td>
- <td><img src="img/ic_post_none.gif" width="22" height="25" alt="" /><br /></td>
- <td class="field-title">&nbsp;- <inp:m_language _Phrase="lu_no_new_posts" /></td>
- <td><img src="img/s.gif" width="15" height="1" alt="" /><br /></td>
- <td><img src="img/ic_post_locked.gif" width="25" height="25" alt="" /><br /></td>
- <td class="field-title">&nbsp;-<inp:m_language _Phrase="lu_forum_locked_for_posting" /></td>
- </tr>
- </table>
-
- <br />
- <TABLE width="100%" border="0" cellspacing="0" cellpadding="0">
- <TR>
- <TD>
- <!-- inp:m_list_cats width="100%" _Columns=1 _FirstItemTemplate="inbulletin/index/catview/cat_tree_element_first.tpl" _ItemTemplate="inbulletin/index/catview/cat_tree_element.tpl" _DataExists=1 /> -->
- <inp:bbcat_list_cats width="100%" _Columns=1 _FirstItemTemplate="inbulletin/index/catview/cat_tree_element_first.tpl" _ItemTemplate="inbulletin/index/catview/cat_tree_element.tpl" _DataExists=1 />
- </TD>
- </TR>
- </TABLE>
- </TD>
- </TR>
-</TABLE>
-
Property changes on: trunk/themes/default/inbulletin/index/catview.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/index/catview/cat_tree_element.tpl
===================================================================
--- trunk/themes/default/inbulletin/index/catview/cat_tree_element.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/index/catview/cat_tree_element.tpl (nonexistent)
@@ -1,13 +0,0 @@
-<TR>
- <TD>
- <TABLE width="100%" border="0" cellspacing="0" cellpadding="0">
- <TR class="forum-hdr-wide">
- <TD colspan="2" width="100%"><A href="<inp:bbcat _field="link" _Template="__default__" />"><inp:bbcat _Field="name" /></A></TD>
- <TD><img src="img/s.gif" width="30" height="1" alt="" /><br /></TD>
- <TD><img src="img/s.gif" width="30" height="1" alt="" /><br /></TD>
- <TD class="forum-hdr-end-wide"><img src="img/s.gif" width="50" height="1" alt="" /><br /></TD>
- </TR>
- <inp:bbcat _Field="subcats" _SubCatTemplate="inbulletin/index/catview/cat_tree_subcat.tpl" _NoTable="1" _DataExists=1 />
- </TABLE>
- </TD>
-</TR>
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/index/catview/cat_tree_element.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/index/catview/cat_tree_element_first.tpl
===================================================================
--- trunk/themes/default/inbulletin/index/catview/cat_tree_element_first.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/index/catview/cat_tree_element_first.tpl (nonexistent)
@@ -1,27 +0,0 @@
-<TR>
- <TD>
- <TABLE width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr class="forum-hdr">
- <td colspan="2">&nbsp;<inp:m_language _Phrase="lu_forums" />&nbsp;</td>
- <td>&nbsp;<inp:m_language _Phrase="lu_topics" />&nbsp;</td>
- <td>&nbsp;<inp:m_language _Phrase="lu_posts" />&nbsp;</td>
- <td class="forum-hdr-end">&nbsp;<inp:m_language _Phrase="lu_lastupdate" />&nbsp;</td>
- </tr>
- <tr>
- <td colspan="5"><img src="img/s.gif" width="1" height="2" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="5" class="forum-hdr-end-narr"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- <TR class="forum-hdr-wide">
- <TD colspan="2" width="100%"><A href="<inp:bbcat _field="link" _Template="__default__" />"><inp:bbcat _Field="name" /></A></TD>
- <TD><img src="img/s.gif" width="30" height="1" alt="" /><br /></TD>
- <TD><img src="img/s.gif" width="30" height="1" alt="" /><br /></TD>
- <TD class="forum-hdr-end-wide"><img src="img/s.gif" width="50" height="1" alt="" /><br /></TD>
- </TR>
-
- <inp:bbcat _Field="subcats" _SubCatTemplate="inbulletin/index/catview/cat_tree_subcat.tpl" _NoTable="1" _DataExists=1 />
-
- </TABLE>
- </TD>
-</TR>
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/index/catview/cat_tree_element_first.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/index/catview/cat_tree_subcat.tpl
===================================================================
--- trunk/themes/default/inbulletin/index/catview/cat_tree_subcat.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/index/catview/cat_tree_subcat.tpl (nonexistent)
@@ -1,20 +0,0 @@
-<TR class="forum-name">
- <td valign="top" style="padding: 10px">
- <A href="<inp:bbcat _field="link" _Template="inbulletin/topic_list.tpl" />">
- <inp:bbcat _field="cat_icon" _posts_icon="img/ic_post.gif" _no_post_icon="img/ic_post_none.gif" _locked_post_icon="img/ic_post_locked.gif" />
- <br /></A>
- </td>
- <TD style="padding: 10px 0px" width="100%">
- <A class="forum" href="<inp:bbcat _field="link" _Template="inbulletin/topic_list.tpl" />"><inp:bbcat _field="name" /></A> <BR>
- <span class="post-text"><inp:bbcat _field="description" /></span>
- </TD>
- <TD align="center" style="border-left: 1px solid #f0f0f0">
- <inp:bbcat _field="itemcount" _ItemType="Topic" />
- </TD>
- <TD align="center" style="border-left: 1px solid #f0f0f0; border-right: 1px solid #f0f0f0">
- <inp:bbcat _field="itemcount" _ItemType="Post" _ListType="category" _ForceUpdate="1" />
- </TD>
- <TD align="center">
- <inp:bbcat _field="modified" _ItemType="Post" _part="m/d/Y g:i a" />&nbsp;
- </TD>
-</TR>
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/index/catview/cat_tree_subcat.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.6
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/index/sitemap_cat_element.tpl
===================================================================
--- trunk/themes/default/inbulletin/index/sitemap_cat_element.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/index/sitemap_cat_element.tpl (nonexistent)
@@ -1,6 +0,0 @@
-<!-- Template: categories/catlist_element.tpl -->
-<a href="<inp:cat _field="link" _Template="__default__" reset="1"/>"><img src="img/ic_category.gif" border=0 width="17" height="17" alt="" /></a>&nbsp;
-<span class="item"><a href="<inp:cat _field="link" _Template="__default__" reset="1"/>"><inp:cat _Field="Name" /></a></span>&nbsp;<span class="comments">(<inp:m_language _Phrase="lu_subcats" /> <inp:cat _Field="subcatcount" _GroupOnly="1" />)</span>
-<inp:cat _field="new"><img src="img/ic_new.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_new" />" /></inp>
-<inp:cat _field="pick"><img src="img/ic_pick.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_editors_pick" />" /></inp>
-<BR />
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/index/sitemap_cat_element.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/index/right/actionbox.tpl
===================================================================
--- trunk/themes/default/inbulletin/index/right/actionbox.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/index/right/actionbox.tpl (nonexistent)
@@ -1,46 +0,0 @@
-<!-- action box //-->
-<table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td height="30" class="act-box-top"><inp:m_language _Phrase="lu_action" /> <span class="act-sep">|</span> <span class="act-title-it"><inp:m_language _Phrase="lu_box" /></span></td>
- <td rowspan="4" valign="top" align="right" class="bgr-underactbox"><img src="img/box.gif" width="59" height="59" alt="" /><br /></td>
- </tr>
- <tr>
- <td height="13" bgcolor="#64A1DF" class="path">&nbsp; <inp:m_language _Phrase="lu_action_prompt" /></td>
- </tr>
- <tr>
- <td height="1"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- <tr>
- <td valign="top" align="right"><img src="img/a_box_left.jpg" width="129" height="15" alt="" /><br /></td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td class="bgr-act" valign="top">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top"><a href="<inp:m_template_link _Template="suggest_cat" />"><img src="img/act_cat.gif" width="14" height="12" alt="" /></a><br /></td>
- <td height="1"><img src="img/s.gif" width="5" height="20" alt="" /><br /></td>
- <td valign="top" class="box-links"><a href="<inp:m_template_link _Template="suggest_cat" />"><inp:m_language _Phrase="lu_suggest_category" /></a></td>
- </tr>
- <tr>
- <td valign="top"><a href="<inp:m_template_link _Template="inbulletin/new_topic.tpl" />"><img src="img/act_forum.gif" width="14" height="12" alt="" /></a><br /></td>
- <td height="1"><img src="img/s.gif" width="5" height="20" alt="" /><br /></td>
- <td valign="top" class="box-links"><a href="<inp:m_template_link _Template="inbulletin/new_topic.tpl" />"><inp:m_language _Phrase="lu_new_topic" /></a></td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr>
- <td class="bgr-act-bottom"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
-</table>
-<!-- action box \\-->
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/index/right/actionbox.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/index/sitemap_subcat_element.tpl
===================================================================
--- trunk/themes/default/inbulletin/index/sitemap_subcat_element.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/index/sitemap_subcat_element.tpl (nonexistent)
@@ -1,3 +0,0 @@
-<!-- Template: Sitemape SubCats -->
-<a href="<inp:cat _field="link" _Template="__default__" reset="1"/>"><inp:cat _Field="Name" /></a>
-<BR />
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/index/sitemap_subcat_element.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/index/right.tpl
===================================================================
--- trunk/themes/default/inbulletin/index/right.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/index/right.tpl (nonexistent)
@@ -1,40 +0,0 @@
- <table width="100%" HEIGHT="100%" border="0" cellspacing="0" cellpadding="0">
- <TR>
- <TD>
- <!-- login box -->
- <inp:m_loginbox _LoginTemplate="misc/right_login" _LoggedInTemplate="misc/right_loggedin" />
- <!-- end login box -->
- </TD>
- </TR>
- <tr>
- <td>
- <!-- search box -->
- <inp:include _Template="misc/right_searchbox" />
- <!-- end search box -->
- </TD>
- </TR>
-
- <tr>
- <td>
- <!-- recommend to friend box -->
- <inp:include _Template="misc/right_recommend" />
- <!-- end recommend box -->
- </td>
- </tr>
-
-
- <tr>
- <td>
- <inp:include _Template="inbulletin/index/right/actionbox.tpl" />
- </td>
- </tr>
-
- <TR>
- <TD height="100%">
-
- <!-- quick links box -->
- <inp:include _Template="inbulletin/quicklinks/edpick.tpl" _DataExists="1" />
- <!-- end quick links box -->
- </TD>
- </TR>
- </TABLE>
Property changes on: trunk/themes/default/inbulletin/index/right.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/post_list_threaded/post_thread.tpl
===================================================================
--- trunk/themes/default/inbulletin/post_list_threaded/post_thread.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/post_list_threaded/post_thread.tpl (nonexistent)
@@ -1,13 +0,0 @@
-<TR CLASS="thread_post">
- <TD WIDTH="70%">
- <IMG src="img/s.gif" height=1 width="<inp:posting _Field="depth" _Multiplier="10" />" border="0">
- <IMG SRC="img/arr_no_sort.gif" />
- <A href="<inp:posting _Field="link" />"><inp:posting _field="PosterAlias" /></b>
- <inp:posting _Field="Subject" /></A>
- </TD>
- <TD NOWRAP="nowrap" WIDTH="20%">
- </TD>
- <TD NOWRAP="nowrap">
- <inp:posting _field="date" />&nbsp;<inp:posting _field="date" _part="time" />
- </TD>
-</TR>
Property changes on: trunk/themes/default/inbulletin/post_list_threaded/post_thread.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/post_list_threaded/post_thread_alt.tpl
===================================================================
--- trunk/themes/default/inbulletin/post_list_threaded/post_thread_alt.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/post_list_threaded/post_thread_alt.tpl (nonexistent)
@@ -1,13 +0,0 @@
-<TR CLASS="thread_alt_post">
- <TD WIDTH="70%">
- <IMG src="img/s.gif" height=1 width="<inp:posting _Field="depth" _Multiplier="10" />" border="0">
- <IMG SRC="img/arr_no_sort.gif" />
- <A href="<inp:posting _Field="link" />"><inp:posting _field="PosterAlias" /></b>
- <inp:posting _Field="Subject" /></A>
- </TD>
- <TD NOWRAP="nowrap" WIDTH="20%">
- </TD>
- <TD NOWRAP="nowrap">
- <inp:posting _field="date" />&nbsp;<inp:posting _field="date" _part="time" />
- </TD>
-</TR>
Property changes on: trunk/themes/default/inbulletin/post_list_threaded/post_thread_alt.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/post_list_threaded/post_thread_current.tpl
===================================================================
--- trunk/themes/default/inbulletin/post_list_threaded/post_thread_current.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/post_list_threaded/post_thread_current.tpl (nonexistent)
@@ -1,13 +0,0 @@
-<TR CLASS="thread_current_post">
- <TD WIDTH="70%" >
- <IMG src="img/s.gif" height=1 width="<inp:posting _Field="depth" _Multiplier="10" />" border="0">
- <IMG SRC="img/arr_no_sort.gif" />
- <A CLASS="thread_current_post" href="<inp:posting _Field="link" />"><inp:posting _field="PosterAlias" /></b>
- <inp:posting _Field="Subject" /></A>
- </TD>
- <TD NOWRAP="nowrap" WIDTH="20%">
- </TD>
- <TD NOWRAP="nowrap">
- <inp:posting _field="date" />&nbsp;<inp:posting _field="date" _part="time" />
- </TD>
-</TR>
Property changes on: trunk/themes/default/inbulletin/post_list_threaded/post_thread_current.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/get_rated.tpl
===================================================================
--- trunk/themes/default/inbulletin/get_rated.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/get_rated.tpl (nonexistent)
@@ -1,88 +0,0 @@
-<inp:include _template="common/head.tpl" />
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%" STYLE="border-right: 1px solid;">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr height="100%">
- <td valign="top">
- <!-- navbar -->
- <img src="img/s.gif" width="10" height="1" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td style="background: url('img/bgr_path_full.jpg')">
- <img src="img/s.gif" width="769" height="1" alt="" /><br />
- </td>
- </tr>
- <tr>
- <td width=769 style="background: url('img/bgr_path_full.jpg')">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
- <td class="path" WIDTH="10000"><inp:m_navbar _RootTemplate="index" _Template="__default__" _LinkCurrent="1" _separator=" &gt; " /></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
-
- <!-- details update line -->
- <img src="img/s.gif" width="1" height="1" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-updatefill" width="10000"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td nowrap="nowrap" class="updated"><inp:m_language _Phrase="lu_topic_updated" />: <inp:bb_topic_field _Field="modifieddate" /></td>
- </tr>
- </table>
- <!-- end details update line -->
-
- <table border="0" cellspacing="0" cellpadding="0" WIDTH="100%">
- <TR>
- <TD>
- <img src="img/s.gif" width="10" height="1" alt="" />
- <inp:bb_topic_field _field="locked"><IMG SRC="img/ic_lock.gif" />
- <inp:m_language _Phrase="lu_locked_topic" /></inp><br />
- </TD>
- <TD><h1><inp:bb_topic_field _field="text" /></h1></TD>
- <TD ALIGN="right">&nbsp;</TD>
- </TR>
- <TR>
- <TD>&nbsp;</TD>
- <TD COLSPAN=2>
- <br />
- <inp:perm_include _Template="inbulletin/rate/getting_rated.tpl" _noaccess="access_denied.tpl" _Permission="TOPIC.RATE" />
- <br /><br />
- </TD>
- </TR>
- </TABLE>
- </TD>
- </TR>
- </TABLE>
-
- <!-- related categories -->
- <inp:perm_include _Template="related_category" _DataExists=1 />
- <!-- end related categories -->
- <!-- related links -->
- <inp:perm_include _Module="In-Link" _Template="inlink/related_links" _DataExists=1 />
- <!-- end related links -->
- <!-- related news -->
- <inp:perm_include _Module="In-News" _Template="innews/related_news" _DataExists=1 />
- <!-- end related news -->
-
- </TD>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td valign="top" HEIGHT="100%">&nbsp;</td>
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
- <inp:include _template="common/footer" />
-</table>
-
-</body>
-</html>
Property changes on: trunk/themes/default/inbulletin/get_rated.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/account_my_topics.tpl
===================================================================
--- trunk/themes/default/inbulletin/account_my_topics.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/account_my_topics.tpl (nonexistent)
@@ -1,8 +0,0 @@
-<td><img src="img/s.gif" width="70" height="1" alt="" /><br /></td>
-<td valign="top"><img src="img/ic_myfriends46.gif" width="46" height="46" alt="" /><br /></td>
-<td width="10000" class="item">
- <a href="<inp:m_template_link _Template="inbulletin/my_items" />"><inp:m_language _Phrase="lu_my_topics" /></a>
- <p><inp:m_language _Phrase="lu_my_topics_description" /></p>
-</td>
-<td>&nbsp;</td>
-
Property changes on: trunk/themes/default/inbulletin/account_my_topics.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/search_results/item_results.tpl
===================================================================
--- trunk/themes/default/inbulletin/search_results/item_results.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/search_results/item_results.tpl (nonexistent)
@@ -1,180 +0,0 @@
-<inp:include _template="common/head.tpl" />
-<BODY>
-<inp:include _Template="common/pagetop.tpl" />
-<table width="770" border="0" cellspacing="0" cellpadding="0">
- <!-- start content -->
- <tr>
- <td valign="top" height="100%">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top" class="bott-line">
- <!-- start bred crumbles -->
- <img src="img/s.gif" width="10" height="1" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-path"><img src="img/s.gif" width="549" height="1" alt="" /><br /></td>
- <td bgcolor="#61b0ec"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- <tr>
- <td class="bgr-path">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top"><img src="img/ic_homepath.gif" width="17" height="24" alt="" /><br /></td>
- <td class="path"><a href="<inp:m_template_link _Template="index" _Category=0 />"><inp:m_language _Phrase="lu_home" /></a> >
- <A HREF="<inp:m_template_link _template="search_results" />"><inp:m_language _Phrase="lu_search_results" /></A> >
- <inp:m_language _Phrase="lu_topic_search_results" /></A></td>
- </tr>
- </table>
- </td>
- <td width="10000" valign="top" bgcolor="#61b0ec">&nbsp;</td>
- </tr>
- </table>
- <!-- end bred crumbles -->
-
- <img src="img/s.gif" width="1" height="1" alt="" /><br />
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" width="10000" class="bgr-myaccount">
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
-
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <!-- page title -->
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="50"><img src="img/ic_search_big.gif" width="46" height="46" alt="" /><br /></td>
- <td><h1><inp:m_language _Phrase="lu_topic_search_results" /></h1></td>
- <td>&nbsp;</td>
- </tr>
- </table>
- <!-- end page title -->
-
- <!-- results in brief -->
- <br />
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <h2><inp:m_language _Phrase="lu_searched_for" /></h2>
- </td>
- <td>
- <FORM method="POST" NAME="search" ACTION="<inp:m_form_action _form="m_simple_subsearch" _Template="search_results" />">
- <INPUT type="text" name="keywords" value="<inp:m_form_value _form="m_simple_subsearch" _field="keywords" />" class="input" style="width: 235px;">&nbsp;
- <INPUT type="submit" name="search" value="<inp:m_language _Phrase="lu_search_within" />" class="button"></td>
- </FORM>
- </TD>
- </tr>
- <tr>
- <td colspan="2" class="tips">
- <a href="<inp:m_template_link _Template="advanced_search.tpl" />"><inp:m_language _Phrase="lu_advanced_search_link" /></a>
- <img src="img/arr_more.gif" width="16" height="7" alt="" />
- </td>
- </tr>
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="2" class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- </table>
- </td>
- </tr>
- <tr><td><img src="img/s.gif" width="1" height="15" alt="" /><br /></td></tr>
- <tr><td class="bgr-dark"><img src="img/s.gif" width="1" height="15" alt="" /><br /></td></tr>
- <tr><td align="right" valign="top"><img src="img/corn_dark.gif" width="32" height="18" alt="" /><br /></td></tr>
- </table>
- <!-- end results in brief -->
-
-
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top"><a name="cats"></a>
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <h2><inp:m_language _Phrase="lu_topics" /> <span>(<inp:bb_list_count _ListType="Search" _ForcePaging="1" /><!--<inp:m_search_item_count _ItemType="Link" />-->)</span></h2>
- </td>
- </tr>
- <tr>
- <td class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- </table>
- <br />
- <table WIDTH="100%" border="0" cellspacing="0" cellpadding="0">
- <tr class="statistics">
- <td><img src="img/s.gif" width="21" height="1" alt="" /><br /></td>
- <td width="80%" align="center" nowrap>
- <a href="<inp:bb_topic_list_sortlink _Column="TopicText" />"><img src="<inp:bb_topic_list_sorticon _Column="TopicText" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_topics" /></a></td>
-
- <td align="center" nowrap>
- <a href="<inp:bb_topic_list_sortlink _Column="CachedRating" />"><IMG src="<inp:bb_topic_list_sorticon _Column="CachedRating" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_rating" /></a></td>
-
- <td align="center" nowrap>
- <img src="img/s.gif" width="100" height="1" alt="" /><br /><a href="<inp:bb_topic_list_sortlink _Column="PostedBy" />"><IMG src="<inp:bb_topic_list_sorticon _Column="PostedBy" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_poster" /></a></td>
- <td align="center" nowrap>
- <img src="img/s.gif" width="70" height="1" alt="" /><br /><a href="<inp:bb_topic_list_sortlink _Column="Modified" />"><IMG src="<inp:bb_topic_list_sorticon _Column="Modified" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_date" /></a></td>
- <td align="center" nowrap>
- <img src="img/s.gif" width="50" height="1" alt="" /><br /><a href="<inp:bb_topic_list_sortlink _Column="Posts" />"><IMG src="<inp:bb_topic_list_sorticon _Column="Posts" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_replies" /></a></td>
- <td align="center" nowrap>
- <img src="img/s.gif" width="50" height="1" alt="" /><br /><a href="<inp:bb_topic_list_sortlink _Column="Views" />"><IMG src="<inp:bb_topic_list_sorticon _Column="Views" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_views" /></a></td>
- </tr>
- <tr>
- <!-- topics -->
- <inp:bb_topic_list _ListType="search" _ForcePaging="1" _ItemTemplate="inbulletin/search_results/search_results_element.tpl" />
- <!-- end topics -->
- </TR>
- <TR>
- <td COLSPAN=6 valign="top" align="right" class="pagination">
- <inp:bb_topic_pagenav _ListType="search" _Label="lu_page_label" />
- </td>
- </TR>
- </TABLE>
- </td>
- </tr>
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="20" alt="" /><br /></td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="20" alt="" /><br /></td>
- </tr>
- </table>
- <!-- end articles -->
- </td>
- </tr>
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
- </table>
- </td>
-
-
- <!-- start vertical white line in main conent table -->
- <td height="100%"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <!-- end vertical white line in main conent table -->
-
-
- <!-- start right flexible cell in main content table -->
- <td valign="top" class="open-box">
- <inp:include _template="index/right.tpl" />
- </td>
- <!-- end right flexible cell in main content table -->
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
-
- <inp:include _Template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
-
Property changes on: trunk/themes/default/inbulletin/search_results/item_results.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/search_results/search_count.tpl
===================================================================
--- trunk/themes/default/inbulletin/search_results/search_count.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/search_results/search_count.tpl (nonexistent)
@@ -1,3 +0,0 @@
-<td><img src="img/s.gif" width="15" height="1" alt="" /><br /></td>
-<td><img src="inbulletin/img/ic_forum.gif" width="20" height="17" alt="" /><br /></td>
-<td><inp:m_language _Phrase="lu_topics" /> - <span class="item"><a href="<inp:m_template_link _Anchor="topics" />"><inp:bb_list_count _ListType="Search" /></a></span></td>
Property changes on: trunk/themes/default/inbulletin/search_results/search_count.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/search_results/short_results.tpl
===================================================================
--- trunk/themes/default/inbulletin/search_results/short_results.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/search_results/short_results.tpl (nonexistent)
@@ -1,51 +0,0 @@
-<img src="img/s.gif" width="1" height="15" alt="" /><br />
-<table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td valign="top">
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <h2><inp:m_language _Phrase="lu_topics" /> <span>(<inp:bb_list_count _ListType="Search" />)</span></h2>
- </td>
- </tr>
- <tr>
- <td class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- </table>
-
- <table WIDTH="100%" border="0" cellspacing="0" cellpadding="0">
- <tr class="statistics">
- <td><img src="img/s.gif" width="21" height="1" alt="" /><br /></td>
-
- <td width="80%" align="center" nowrap>
- <a href="<inp:bb_topic_list_sortlink _Column="TopicText" />"><img src="<inp:bb_topic_list_sorticon _Column="TopicText" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_topics" /></a></td>
-
- <td align="center" nowrap>
- <a href="<inp:bb_topic_list_sortlink _Column="CachedRating" />"><IMG src="<inp:bb_topic_list_sorticon _Column="CachedRating" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_rating" /></a></td>
-
- <td align="center" nowrap>
- <img src="img/s.gif" width="100" height="1" alt="" /><br /><a href="<inp:bb_topic_list_sortlink _Column="PostedBy" />"><IMG src="<inp:bb_topic_list_sorticon _Column="PostedBy" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_poster" /></a></td>
- <td align="center" nowrap>
- <img src="img/s.gif" width="70" height="1" alt="" /><br /><a href="<inp:bb_topic_list_sortlink _Column="Modified" />"><IMG src="<inp:bb_topic_list_sorticon _Column="Modified" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_date" /></a></td>
- <td align="center" nowrap>
- <img src="img/s.gif" width="50" height="1" alt="" /><br /><a href="<inp:bb_topic_list_sortlink _Column="Posts" />"><IMG src="<inp:bb_topic_list_sorticon _Column="Posts" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_replies" /></a></td>
- <td align="center" nowrap>
- <img src="img/s.gif" width="50" height="1" alt="" /><br /><a href="<inp:bb_topic_list_sortlink _Column="Views" />"><IMG src="<inp:bb_topic_list_sorticon _Column="Views" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_views" /></a></td>
-
- </tr>
-
- <tr>
- <!-- topics -->
- <inp:bb_topic_list _ListType="search" _ShortList="1" _ItemTemplate="inbulletin/search_results/search_results_element.tpl" />
- <!-- end topics -->
- </TR>
- <TR>
- <td COLSPAN=6 valign="top" align="right" class="pagination">
- <inp:bb_topic_more _Shortlist="1" _ListType="search" _Template="inbulletin/search_results/item_results.tpl" _text="lu_more" _image="img/arr_more.gif" />
- </td>
- </TR>
- </TABLE>
- </TD>
- </TR>
-</TABLE>
\ No newline at end of file
Property changes on: trunk/themes/default/inbulletin/search_results/short_results.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/search_results/search_results_element.tpl
===================================================================
--- trunk/themes/default/inbulletin/search_results/search_results_element.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/search_results/search_results_element.tpl (nonexistent)
@@ -1,41 +0,0 @@
-<tr>
- <td>
- <table border="0" cellspacing="0" cellpadding="0" class="relevance-bar" width="40" height="5">
- <tr><inp:topic _Field="relevance" _DisplayMode="bar" _OffBackGroundColor="white" _OnBackGroundColor="red" _OnImage="img/relevance/rel.gif" /></tr>
- </table>
- <img src="inbulletin/img/ic_forum.gif" width="20" height="15" alt="" /><br /></td>
- <td NOWRAP="nowrap">&nbsp;<a href="<inp:topic _field="link" _Template="__default__" />" class="posts"><inp:topic _field="text" /></a>&nbsp;&nbsp;
- <inp:topic _field="hot"><img src="img/ic_hot.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_hot" />" /></inp>
- <inp:topic _field="new"><img src="img/ic_new.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_new" />" /></inp>
- <inp:topic _field="pop"><img src="img/ic_pop.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_pop" />" /></inp>
- <inp:topic _field="pick"><img src="img/ic_pick.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_editors_pick" />" /></inp>
- <span class="pagination"><inp:topic _field="post_pagelist" _DestTemplate="__default__" CLASS="post_pagenav" /></SPAN>
- <BR />
- <span class="comments"><inp:m_language _Phrase="lu_category" />:</span> <span class="tips">
- <a href="<inp:topic _field="cat_link" _Template="__default__" />"><inp:topic _field="fullpath" /></a></span></td>
- <td align="center"><inp:topic _Field="rating" _DisplayMode="graphical" _OnImage="img/star_rate.gif" /></td> <td align="center" class="poster"><inp:topic _field="PostedBy" /></td>
- <td align="center" class="forum-data"><inp:topic _field="modifieddate"/><br />
- <span class="forum-time"><inp:topic _field="modifieddate" _part="time" /></span></td>
- <td align="center" class="forum-data"><inp:topic _field="replies" /></td>
- <td align="center" class="forum-data"><inp:topic _field="views" /></td>
-</tr>
-<TR><TD>&nbsp;</TD>
- <TD COLSPAN=5>
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <inp:topic _Template="inbulletin/topic_edit" _field="link_edit">
- <td><img src="img/ic_edit.gif" width="16" height="16" alt="" /><br /></td>
- <TD CLASS="links-action"> <inp:topic _Template="inbulletin/topic_edit" _field="link_edit" _Text="lu_edit" /></TD>
- <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
- </inp>
- <inp:topic _field="link_delete">
- <td><img src="img/ic_delete.gif" width="16" height="16" alt="" /><br /></td>
- <TD CLASS="links-action"> <inp:topic _field="link_delete" _Text="lu_delete" /></TD></inp>
- </TR>
- </TABLE>
- </TD>
-</TR>
-
-<tr>
- <td colspan="6" class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
-</tr>
Property changes on: trunk/themes/default/inbulletin/search_results/search_results_element.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default/inbulletin/catindex/catindex.tpl
===================================================================
--- trunk/themes/default/inbulletin/catindex/catindex.tpl (revision 12824)
+++ trunk/themes/default/inbulletin/catindex/catindex.tpl (nonexistent)
@@ -1,124 +0,0 @@
-<!-- forum update line -->
-<img src="img/s.gif" width="1" height="1" alt="" /><br />
-<table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="bgr-updatefill" width="10000"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td nowrap="nowrap" class="updated"><inp:m_language _Phrase="lu_topics_updated" />: <inp:bb_topic_modified /></td>
- </tr>
-</table>
-<!-- end forum update line -->
-
-<img src="img/s.gif" width="1" height="1" alt="" /><br />
-<table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" width="10000" class="bgr-forum">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="5"><h2><inp:m_language _Phrase="lu_topics" /> <span>(<inp:bb_list_count />)</span></h2></td>
- </tr>
- <tr>
- <td colspan="5"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
- <tr>
- <td class="statistics"><span><inp:m_itemcount _ItemType="Post" _GroupOnly="1" /></SPAN>&nbsp;<inp:m_language _Phrase="lu_posts" /> <inp:m_language _Phrase="lu_in"/> <span><inp:m_itemcount _ItemType="Topic" _GroupOnly="1" /></span>&nbsp;<inp:m_language _Phrase="lu_topics" /></td>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td class="statistics"><inp:m_language _Phrase="lu_added_today" />:&nbsp;<span><inp:m_itemcount _ItemType="Post" _Today="1" _GroupOnly="1" /></span></td>
- <td><img src="img/s.gif" width="10" height="1" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="5"><img src="img/s.gif" width="1" height="3" alt="" /><br /></td>
- </tr>
- <tr>
- <td colspan="5" class="bgr-updatefill"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- </table>
- <br />
-
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <inp:m_module_link _module="In-Bulletin" _Perm="TOPIC.ADD">
- <!-- NEW TOPIC BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0">
- <tr valign="top">
- <td class="btn-l-side"><img src="inbulletin/img/btn_corn1.gif" width="11" height="16" alt="" /><br /></td>
- <td class="btn-text"><inp:m_module_link _Template="new_topic" _module="In-Bulletin" _Perm="TOPIC.ADD" _Text="lu_new_topic" /></td>
- <td class="btn-r-side"><inp:m_module_link _Template="new_topic" _module="In-Bulletin" _Perm="TOPIC.ADD" _image="inbulletin/img/btn_new_topic.gif" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_corn2.gif" width="11" height="10" alt="" /><br /></td>
- <td class="btn-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-bot" align="right"><img src="inbulletin/img/btn_corn2_.gif" width="11" height="10" alt="" /><br /></td>
- </tr>
- </table><img src="img/s.gif" width="1" height="5" alt="" /><br />
- <!-- NEW TOPIC BUTTON \\-->
- </inp>
- </td>
- <td class="pagination" align="right"><!--<img src="img/ic_pages.gif" width="9" height="12" alt="" />--> <inp:bb_topic_pagenav _Label="lu_page_label" _PageIcon="img/ic_pages.gif" /></td>
- </tr>
- </table>
-
-
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr class="posts-tbl-hdr">
- <td colspan="2" width="100%" style="text-align: left; border-left: 1px solid #ccc">
- &nbsp; <a href="<inp:bb_topic_list_sortlink _Column="TopicText" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="TopicText" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_topics" /></a></td>
-
- <td nowrap>
- <a href="<inp:bb_topic_list_sortlink _Column="CachedRating" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="CachedRating" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_rating" /></a></td>
-
- <td nowrap>
- <a href="<inp:bb_topic_list_sortlink _Column="PostedBy" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="PostedBy" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_poster" /></a></td>
-
- <td nowrap>
- <a href="<inp:bb_topic_list_sortlink _Column="Posts" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="Posts" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" /><a href="<inp:bb_topic_list_sortlink _Column="PostedBy" />">&nbsp;<inp:m_language _Phrase="lu_replies" /></a></td>
- <td nowrap>
- <a href="<inp:bb_topic_list_sortlink _Column="Views" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="Views" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_views" /></a></td>
- <td nowrap>
- <a href="<inp:bb_topic_list_sortlink _Column="LastPostDate" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="LastPostDate" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_date" /></a></td>
- <td nowrap style="border-right: 1px solid #ccc">
- <a href="<inp:bb_topic_list_sortlink _Column="LastPoster" />">
- <IMG src="<inp:bb_topic_list_sorticon _Column="LastPoster" _SelectedAsc="img/arr_sort_up.gif" _SelectedDesc="img/arr_sort_down.gif" _unselected="img/arr_no_sort.gif" />" width="11" height="11" alt="" border="0" />&nbsp;<inp:m_language _Phrase="lu_lastposter" /></a>&nbsp;</td>
- </tr>
-
- <inp:bb_topic_list _ItemTemplate="inbulletin/topic_list/topics/element.tpl" _LastItemTemplate="inbulletin/topic_list/topics/element_last.tpl" />
-
- </table>
-
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <inp:m_module_link _module="In-Bulletin" _Perm="TOPIC.ADD">
- <!-- NEW TOPIC BUTTON -->
- <table border="0" cellspacing="0" cellpadding="0">
- <tr valign="top">
- <td class="btn-l-side"><img src="inbulletin/img/btn_corn1.gif" width="11" height="16" alt="" /><br /></td>
- <td class="btn-text"><inp:m_module_link _Template="new_topic" _module="In-Bulletin" _Perm="TOPIC.ADD" _Text="lu_new_topic" /></a></td>
- <td class="btn-r-side"><inp:m_module_link _Template="new_topic" _module="In-Bulletin" _Perm="TOPIC.ADD" _image="inbulletin/img/btn_new_topic.gif" /><br /></td>
- </tr>
- <tr valign="top">
- <td><img src="inbulletin/img/btn_corn2.gif" width="11" height="10" alt="" /><br /></td>
- <td class="btn-bot"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td class="btn-bot" align="right"><img src="inbulletin/img/btn_corn2_.gif" width="11" height="10" alt="" /><br /></td>
- </tr>
- </table><img src="img/s.gif" width="1" height="5" alt="" /><br />
- <!-- NEW TOPIC BUTTON \\-->
- </inp>
- </td>
- <td class="pagination" align="right"><!--<img src="img/ic_pages.gif" width="9" height="12" alt="" />--> <inp:bb_topic_pagenav _Label="lu_page_label" _PageIcon="img/ic_pages.gif" /></td>
- </tr>
- </table>
-
- </td>
- </tr>
- <tr><td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td></tr>
- <tr><td colspan="2" class="bgr-separate"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td></tr>
-</table><br /><br />
Property changes on: trunk/themes/default/inbulletin/catindex/catindex.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/module_info.xml
===================================================================
--- trunk/themes/default2007/inbulletin/module_info.xml (revision 12824)
+++ trunk/themes/default2007/inbulletin/module_info.xml (nonexistent)
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<module_info>
- <category_template>inbulletin/index</category_template>
- <item_template>inbulletin/post_list</item_template>
-</module_info>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/module_info.xml
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/topics/modify_confirm.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/topics/modify_confirm.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/topics/modify_confirm.tpl (nonexistent)
@@ -1,26 +0,0 @@
-<inp2:m_DefineElement name="sidebar">
- <inp2:m_RenderElements
- elements="
- platform/elements/side_boxes/login,
- platform/elements/side_boxes/search,
- inbulletin/elements/side_boxes/action_box,
- "
- design="blue_box"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar" titles="lu_title_MyAccount,lu_title_MyTopics,__item__,lu_title_ModifyTopicConfirm" templates="platform/my_account/my_account,inbulletin/my_account/my_topics,__default__,inbulletin/topics/modify_confirm"/>
-
- <!-- modify topic confirm -->
- <inp2:m_RenderElement design="content_box">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_ModifyTopicConfirm"/>
- </inp2:m_Capture>
-
- <inp2:m_phrase name="lu_text_ModifyTopicConfirm"/><br /><br />
- <a href="<inp2:m_Link template="inbulletin/my_account/my_topics" m_cat_id="0"/>">My Topics</a>
- </inp2:m_RenderElement>
- <!-- // modify topic confirm -->
-</inp2:m_DefineElement>
-
-<inp2:m_include template="platform/designs/default_design" pass_params="1"/>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/topics/modify_confirm.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/topics/search_results.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/topics/search_results.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/topics/search_results.tpl (nonexistent)
@@ -1,58 +0,0 @@
-<inp2:m_DefineElement name="sidebar">
- <inp2:m_RenderElements
- elements="
- platform/elements/side_boxes/login,
- platform/elements/side_boxes/search,
- "
- design="blue_box"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar" titles="lu_title_TopicSearchResults" templates="inbulletin/search/search_results"/>
-
- <inp2:m_RenderElement design="content_box">
- <inp2:bb_InitList list_name="topic_search_results" types="search" parent_cat_id="any" recursive="1"/>
-
- <inp2:m_Capture to_var="header">
- <inp2:m_Phrase label="lu_title_TopicSearchResults"/>
- </inp2:m_Capture>
-
- <table class="fullwidth">
- <tr>
- <td class="category-statistics">
- <inp2:m_phrase name="lu_TotalTopics"/>: <inp2:bb_TotalRecords list_name="topic_search_results"/> &nbsp;|&nbsp; <span class="static"><inp2:m_phrase name="lu_AddedToday"/>: 0</span>
- </td>
- <td class="category-statistics static" align="right">
- <inp2:m_phrase name="lu_TopicsUpdated"/>: 05/17/2006
- </td>
- </tr>
- </table>
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="4" alt="" /><br />
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/grey_pix.gif" width="100%" height="1" alt="" /><br />
- <br />
-
- <table class="fullwidth">
- <tr>
- <td colspan="5">
- <div class="horizontal-separator"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="1" alt="" /></div>
- </td>
- </tr>
- <tr class="sub-section-header">
- <td><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/header_arrow.gif" width="11" height="11" alt="" /> &nbsp; <inp2:m_phrase name="lu_col_Topics"/></td>
- <td><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/header_arrow.gif" width="11" height="11" alt="" /> &nbsp; <inp2:m_phrase name="lu_col_Poster"/></td>
- <td><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/header_arrow.gif" width="11" height="11" alt="" /> &nbsp; <inp2:m_phrase name="lu_col_Date"/></td>
- <td><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/header_arrow.gif" width="11" height="11" alt="" /> &nbsp; <inp2:m_phrase name="lu_col_Replies"/></td>
- <td><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/header_arrow.gif" width="11" height="11" alt="" /> &nbsp; <inp2:m_phrase name="lu_col_Views"/></td>
- </tr>
-
- <inp2:m_include template="inbulletin/designs/topics"/>
- <inp2:m_include template="platform/designs/search_results"/>
-
- <inp2:bb_ListTopics list_name="topic_search_results" render_as="topic_element" show_relevance="1"/>
- </table>
-
- <inp2:m_include template="platform/elements/pagination" prefix="bb" list_name="topic_search_results"/>
- </inp2:m_RenderElement>
-</inp2:m_DefineElement>
-
-<inp2:m_include template="platform/designs/default_design" pass_params="1"/>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/topics/search_results.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/topics/add_confirm.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/topics/add_confirm.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/topics/add_confirm.tpl (nonexistent)
@@ -1,26 +0,0 @@
-<inp2:m_DefineElement name="sidebar">
- <inp2:m_RenderElements
- elements="
- platform/elements/side_boxes/login,
- platform/elements/side_boxes/search,
- inbulletin/elements/side_boxes/action_box,
- "
- design="blue_box"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar" titles="lu_title_AddTopicConfirm" templates="inbulletin/topics/add_confirm" show_category="1"/>
-
- <!-- add topic confirm -->
- <inp2:m_RenderElement design="content_box">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_AddTopicConfirm"/>
- </inp2:m_Capture>
-
- <inp2:m_phrase name="lu_text_AddTopicConfirm"/><br /><br />
- <a href="<inp2:m_Link template="inbulletin/my_account/my_topics" m_cat_id="0"/>">My Topics</a>
- </inp2:m_RenderElement>
- <!-- // add topic confirm -->
-</inp2:m_DefineElement>
-
-<inp2:m_include template="platform/designs/default_design" pass_params="1"/>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/topics/add_confirm.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/topics/modify_post.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/topics/modify_post.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/topics/modify_post.tpl (nonexistent)
@@ -1,55 +0,0 @@
-<inp2:m_DefineElement name="sidebar">
- <inp2:m_RenderElements
- elements="
- platform/elements/side_boxes/login,
- platform/elements/side_boxes/search,
- inbulletin/elements/side_boxes/action_box,
- "
- design="blue_box"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar" titles="__item__,lu_title_TopicPostModify" templates="__default__,inbulletin/topics/modify_post" show_category="1"/>
-
- <!-- modify post -->
- <inp2:m_RenderElement design="content_box">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_TopicPostModify"/>
- </inp2:m_Capture>
-
- <inp2:m_if check="bb-post_HasPermission" permissions="TOPIC.REPLY.MODIFY|TOPIC.REPLY.OWNER.MODIFY">
- <span class="field-required">*</span> <inp2:m_phrase name="lu_IndicatesRequired"/><br /><br />
-
- <inp2:m_if check="bb-post_HasError" field="any">
- <inp2:m_RenderElement name="error_message" />
- </inp2:m_if>
-
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/grey_pix.gif" width="100%" height="1" align="absmiddle" alt="" /><br /><br />
-
- <form method="post" action="<inp2:m_FormAction/>">
- <table class="form-data fullwidth">
- <inp2:m_RenderElement name="inp_label" prefix="bb" field="TopicText" title="lu_fld_Subject"/>
- <inp2:m_RenderElement name="inp_label" prefix="bb" field="PostedBy" title="lu_fld_Author"/>
-
- <inp2:m_RenderElement name="inp_edit_box" prefix="bb-post" field="Subject" title="lu_fld_PostSubject"/>
- <inp2:m_RenderElement name="inp_edit_textarea" prefix="bb-post" field="PostingText" cols="30" rows="5" title="lu_fld_MessageBody"/>
-
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="bb-post" field="DisableBBCodes" title="lu_fld_DisableBBCodes"/>
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="bb-post" field="DisableSmileys" title="lu_fld_DisableSmileys"/>
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="bb-post" field="ShowSignatures" title="lu_fld_ShowSignatures" is_last="1"/>
-
- <inp2:m_RenderElement design="inp_edit_buttons">
- <input type="hidden" name="next_template" value="__default__"/>
- <input class="button" type="submit" name="events[bb-post][OnUpdate]" value="<inp2:m_phrase label="lu_btn_Update"/>"/>
- <input class="button" type="button" value="<inp2:m_phrase label="lu_btn_Cancel"/>" onclick="redirect('<inp2:bb_TopicLink template="__default__"/>');"/>
- </inp2:m_RenderElement>
- </table>
- </form>
- <inp2:m_else/>
- <inp2:m_phrase name="lu_text_NoTopicPostModifyPermission"/>
- </inp2:m_if>
- </inp2:m_RenderElement>
- <!-- // modify post -->
-</inp2:m_DefineElement>
-
-<inp2:m_include template="platform/designs/default_design" pass_params="1"/>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/topics/modify_post.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.6
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/topics/modify_topic.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/topics/modify_topic.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/topics/modify_topic.tpl (nonexistent)
@@ -1,50 +0,0 @@
-<inp2:m_DefineElement name="sidebar">
- <inp2:m_RenderElements
- elements="
- platform/elements/side_boxes/login,
- platform/elements/side_boxes/search,
- "
- design="blue_box"/>
-
- <inp2:m_RenderElement name="inbulletin/elements/side_boxes/action_box" item_actions="1" design="blue_box"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar" titles="lu_title_MyAccount,lu_title_MyTopics,__item__,lu_title_ModifyTopic" templates="platform/my_account/my_account,inbulletin/my_account/my_topics,__default__,inbulletin/topics/modify_topic"/>
-
- <!-- modify topic -->
- <inp2:m_RenderElement design="content_box">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_ModifyTopic"/>
- </inp2:m_Capture>
-
- <inp2:m_if check="bb_HasPermission" permissions="TOPIC.MODIFY|TOPIC.MODIFY.PENDING|TOPIC.OWNER.MODIFY|TOPIC.OWNER.MODIFY.PENDING">
-
- <span class="field-required">*</span> <inp2:m_phrase name="lu_IndicatesRequired"/><br /><br />
-
- <inp2:m_if check="bb_HasError" field="any">
- <inp2:m_RenderElement name="error_message" />
- </inp2:m_if>
-
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/grey_pix.gif" width="100%" height="1" align="absmiddle" alt="" /><br /><br />
-
- <form method="post" action="<inp2:m_FormAction/>">
- <table class="form-data fullwidth">
- <inp2:m_RenderElement name="inp_edit_box" prefix="bb" field="TopicText" title="lu_fld_Subject"/>
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="bb" field="NotifyOwnerOnChanges" title="lu_fld_NotifyOwnerOnChanges" is_last="1"/>
-
- <inp2:m_RenderElement design="inp_edit_buttons">
- <input type="hidden" name="modify_confirm_template" value="inbulletin/topics/modify_confirm"/>
- <input type="hidden" name="modify_pending_confirm_template" value="inbulletin/topics/modify_pending_confirm"/>
- <input class="button" type="submit" name="events[bb][OnUpdate]" value="<inp2:m_phrase label="lu_btn_Update"/>"/>
- </inp2:m_RenderElement>
- </table>
- </form>
- <inp2:m_else/>
- <inp2:m_phrase name="lu_text_NoModifyTopicPermission"/>
- </inp2:m_if>
- </inp2:m_RenderElement>
- <!-- // modify topic -->
-</inp2:m_DefineElement>
-
-<inp2:m_include template="platform/designs/default_design" pass_params="1"/>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/topics/modify_topic.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/topics/new_topic_reply.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/topics/new_topic_reply.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/topics/new_topic_reply.tpl (nonexistent)
@@ -1,56 +0,0 @@
-<inp2:m_DefineElement name="sidebar">
- <inp2:m_RenderElements
- elements="
- platform/elements/side_boxes/login,
- platform/elements/side_boxes/search,
- inbulletin/elements/side_boxes/action_box,
- "
- design="blue_box"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar" titles="__item__,lu_title_NewTopicReply" templates="__default__,inbulletin/topics/new_topic_reply" show_category="1"/>
-
- <!-- new topic reply -->
- <inp2:m_RenderElement design="content_box">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_NewTopicReply"/>
- </inp2:m_Capture>
-
- <inp2:m_if check="bb-post_HasPermission" permissions="TOPIC.REPLY.ADD">
- <inp2:bb-post_PresetFormFields/>
- <span class="field-required">*</span> <inp2:m_phrase name="lu_IndicatesRequired"/><br /><br />
-
- <inp2:m_if check="bb-post_HasError" field="any">
- <inp2:m_RenderElement name="error_message" />
- </inp2:m_if>
-
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/grey_pix.gif" width="100%" height="1" align="absmiddle" alt="" /><br /><br />
-
- <form method="post" action="<inp2:m_FormAction/>">
- <table class="form-data fullwidth">
- <inp2:m_RenderElement name="inp_label" prefix="bb" field="TopicText" title="lu_fld_Subject"/>
- <inp2:m_RenderElement name="inp_label" prefix="bb" field="PostedBy" title="lu_fld_Author"/>
-
- <inp2:m_RenderElement name="inp_edit_box" prefix="bb-post" field="Subject" title="lu_fld_PostSubject"/>
- <inp2:m_RenderElement name="inp_edit_textarea" prefix="bb-post" field="PostingText" cols="30" rows="5" title="lu_fld_MessageBody"/>
-
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="bb-post" field="DisableBBCodes" title="lu_fld_DisableBBCodes"/>
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="bb-post" field="DisableSmileys" title="lu_fld_DisableSmileys"/>
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="bb-post" field="ShowSignatures" title="lu_fld_ShowSignatures" is_last="1"/>
-
- <inp2:m_RenderElement design="inp_edit_buttons">
- <input type="hidden" name="next_template" value="__default__"/>
- <input class="button" type="submit" name="events[bb-post][OnCreate]" value="<inp2:m_phrase label="lu_btn_Create"/>"/>
- <input class="button" type="button" value="<inp2:m_phrase label="lu_btn_Cancel"/>" onclick="redirect('<inp2:bb_TopicLink template="__default__"/>');"/>
- </inp2:m_RenderElement>
- </table>
- </form>
- <inp2:m_else/>
- <inp2:m_phrase name="lu_text_NoNewTopicReplyPermission"/>
- </inp2:m_if>
- </inp2:m_RenderElement>
- <!-- // new topic reply -->
-</inp2:m_DefineElement>
-
-<inp2:m_include template="platform/designs/default_design" pass_params="1"/>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/topics/new_topic_reply.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.6
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/topics/new_topic.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/topics/new_topic.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/topics/new_topic.tpl (nonexistent)
@@ -1,54 +0,0 @@
-<inp2:m_DefineElement name="sidebar">
- <inp2:m_RenderElements
- elements="
- platform/elements/side_boxes/login,
- platform/elements/side_boxes/search,
- inbulletin/elements/side_boxes/action_box,
- "
- design="blue_box"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar" titles="lu_title_NewTopic" templates="inbulletin/topics/new_topic" show_category="1"/>
-
- <!-- new topic -->
- <inp2:m_RenderElement design="content_box">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_NewTopic"/>
- </inp2:m_Capture>
-
- <inp2:m_if check="bb_HasPermission" permissions="TOPIC.ADD|TOPIC.ADD.PENDING">
- <inp2:bb_PresetFormFields/>
- <span class="field-required">*</span> <inp2:m_phrase name="lu_IndicatesRequired"/><br /><br />
-
- <inp2:m_if check="bb_HasError" field="any">
- <inp2:m_RenderElement name="error_message" />
- </inp2:m_if>
-
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/grey_pix.gif" width="100%" height="1" align="absmiddle" alt="" /><br /><br />
-
- <form method="post" action="<inp2:m_FormAction/>">
- <table class="form-data fullwidth">
- <inp2:m_RenderElement name="inp_edit_box" prefix="bb" field="TopicText" title="lu_fld_Subject"/>
- <inp2:m_RenderElement name="inp_edit_textarea" prefix="bb" field="PostingText" cols="30" rows="5" title="lu_fld_MessageBody"/>
-
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="bb" field="DisableBBCodes" title="lu_fld_DisableBBCodes"/>
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="bb" field="DisableSmileys" title="lu_fld_DisableSmileys"/>
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="bb" field="ShowSignatures" title="lu_fld_ShowSignatures"/>
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="bb" field="NotifyOwnerOnChanges" title="lu_fld_NotifyOwnerOnChanges" is_last="1"/>
-
- <inp2:m_RenderElement design="inp_edit_buttons">
- <input type="hidden" name="suggest_confirm_template" value="inbulletin/topics/add_confirm"/>
- <input type="hidden" name="suggest_pending_confirm_template" value="inbulletin/topics/add_pending_confirm"/>
- <input class="button" type="submit" name="events[bb][OnCreate]" value="<inp2:m_phrase label="lu_btn_Create"/>"/>
- </inp2:m_RenderElement>
- </table>
- </form>
- <inp2:m_else/>
- <inp2:m_phrase name="lu_text_NoNewTopicPermission"/>
- </inp2:m_if>
- </inp2:m_RenderElement>
- <!-- // new topic -->
-</inp2:m_DefineElement>
-
-<inp2:m_include template="platform/designs/default_design" pass_params="1"/>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/topics/new_topic.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/topics/add_pending_confirm.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/topics/add_pending_confirm.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/topics/add_pending_confirm.tpl (nonexistent)
@@ -1,26 +0,0 @@
-<inp2:m_DefineElement name="sidebar">
- <inp2:m_RenderElements
- elements="
- platform/elements/side_boxes/login,
- platform/elements/side_boxes/search,
- inbulletin/elements/side_boxes/action_box,
- "
- design="blue_box"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar" titles="lu_title_AddTopicPendingConfirm" templates="inbulletin/topics/add_pending_confirm" show_category="1"/>
-
- <!-- add topic pending confirm -->
- <inp2:m_RenderElement design="content_box">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_AddTopicPendingConfirm"/>
- </inp2:m_Capture>
-
- <inp2:m_phrase name="lu_text_AddTopicPendingConfirm"/><br /><br />
- <a href="<inp2:m_Link template="inbulletin/my_account/my_topics" m_cat_id="0"/>">My Topics</a>
- </inp2:m_RenderElement>
- <!-- // add topic pending confirm -->
-</inp2:m_DefineElement>
-
-<inp2:m_include template="platform/designs/default_design" pass_params="1"/>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/topics/add_pending_confirm.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/topics/modify_pending_confirm.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/topics/modify_pending_confirm.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/topics/modify_pending_confirm.tpl (nonexistent)
@@ -1,26 +0,0 @@
-<inp2:m_DefineElement name="sidebar">
- <inp2:m_RenderElements
- elements="
- platform/elements/side_boxes/login,
- platform/elements/side_boxes/search,
- inbulletin/elements/side_boxes/action_box,
- "
- design="blue_box"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar" titles="lu_title_MyAccount,lu_title_MyTopics,__item__,lu_title_ModifyTopicPendingConfirm" templates="platform/my_account/my_account,inbulletin/my_account/my_topics,__default__,inbulletin/topics/modify_pending_confirm"/>
-
- <!-- modify topic pending confirm -->
- <inp2:m_RenderElement design="content_box">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_ModifyTopicPendingConfirm"/>
- </inp2:m_Capture>
-
- <inp2:m_phrase name="lu_text_ModifyTopicPendingConfirm"/><br /><br />
- <a href="<inp2:m_Link template="inbulletin/my_account/my_topics" m_cat_id="0"/>">My Topics</a>
- </inp2:m_RenderElement>
- <!-- // modify topic pending confirm -->
-</inp2:m_DefineElement>
-
-<inp2:m_include template="platform/designs/default_design" pass_params="1"/>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/topics/modify_pending_confirm.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/designs/posts.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/designs/posts.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/designs/posts.tpl (nonexistent)
@@ -1,143 +0,0 @@
-<inp2:m_DefineElement name="smiley_element">
- <img class="emoticon" src="<inp2:m_param name="smiley_url"/>" />
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="bbcode_element">
- <div class="bbcode"><inp2:m_param name="bb_code"/></div>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="button_small" title="" icon="">
- <table style="margin:0px">
- <tr valign="top">
- <td>
- <img src="<inp2:m_TemplatesBase module="In-Bulletin"/>img/btn_sm_corn1.gif" width="5" height="27" alt="" /><br />
- </td>
- <td class="btn-sm-text" style="vertical-align:bottom; height:27px">
- <a href="<inp2:m_Param name="content"/>"><inp2:m_phrase name="$title"/></A>
- </td>
- <td>
- <a href="<inp2:m_Param name="content"/>"><img src="<inp2:m_TemplatesBase module="In-Bulletin"/>img/<inp2:m_param name="icon"/>.gif"></a><br />
- </td>
- </tr>
- <tr valign="top">
- <td>
- <img src="<inp2:m_TemplatesBase module="In-Bulletin"/>img/btn_sm_corn2.gif" width="5" height="5" alt="" /><br />
- </td>
- <td class="btn-sm-bot">
- <img src="<inp2:m_TemplatesBase module="In-Bulletin"/>img/s.gif" width="1" height="1" alt="" /><br />
- </td>
- <td class="btn-sm-bot" align="right">
- <img src="<inp2:m_TemplatesBase module="In-Bulletin"/>img/btn_sm_corn2_.gif" width="5" height="5" alt="" /><br />
- </td>
- </tr>
- </table>
-</inp2:m_DefineElement>
-
-
-<inp2:m_DefineElement name="post_element">
- <tr>
- <td colspan="2">
- <div class="horizontal-separator"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="1" alt="" /><br /></div>
- </td>
- </tr>
- <tr>
- <td class="<inp2:m_odd_even odd="post-background-2" even="post-background-1" readonly="1"/>" valign="top">
- <table>
- <tr>
- <td style="padding:0px 5px" valign="top" width="21" class="post-icon-padding-right">
- <img src="<inp2:m_TemplatesBase module="In-bulletin"/>img/icon_post_1.gif" width="21" height="24" alt="" />
- </td>
- <td style="padding:0px">
- <inp2:m_if check="PosterFound">
- <a href="<inp2:ProfileLink template="platform/my_account/public_profile"/>"><strong><inp2:Field name="PosterAlias"/></strong></a>
-
- <br />
- <inp2:PosterField name="PrimaryGroup"/><br /><br />
-
- <inp2:Image render_as="image_element" primary="1" DefaultImage="platform/img/no_picture.gif" MaxWidth="60"/><br />
-
- <inp2:m_phrase name="lu_Joined"/>: <inp2:PosterField name="CreatedOn" format="_regional_DateFormat"/><br />
- <inp2:m_phrase name="lu_Posts"/>: <inp2:PosterPostsCount/><br />
- <inp2:m_phrase name="lu_Location"/>: <inp2:PosterField name="Country"/><br />
- <inp2:m_else/>
- <strong><inp2:Field name="PosterAlias"/></strong>
- </inp2:m_if>
- </td>
- </tr>
- </table>
-
- </td>
- <td class="<inp2:m_odd_even odd="post-background-2" even="post-background-1"/>" valign="top">
- <table class="fullwidth">
- <tr>
- <td class="post-control">
- <strong><inp2:m_phrase name="lu_Posted" /></strong>: <inp2:Field name="CreatedOn"/>
- <br /><br />
- </td>
- <td class="post-control" align="right">
-
-
-
-
- <table class="no-padding">
- <tr>
-
- <inp2:m_if check="HasPermission" permissions="TOPIC.REPLY.OWNER.MODIFY|TOPIC.REPLY.MODIFY">
- <td>
- <inp2:m_RenderElement design="button_small" title="lu_btn_ModifyPost" icon="btn_sm_modify" pass_params="1">
- <inp2:PostLink template="inbulletin/topics/modify_post"/>
- </inp2:m_RenderElement>
- </td>
- </inp2:m_if>
-
- <td style="padding-left:5px">
- <inp2:m_RenderElement design="button_small" title="lu_btn_Delete" icon="btn_sm_delete" pass_params="1">
- &nbsp;
- </inp2:m_RenderElement>
- </td>
-
-
- <inp2:m_if check="bb_HasPermission" permissions="TOPIC.REPLY.ADD">
- <td style="padding-left:5px">
- <inp2:m_RenderElement design="button_small" title="lu_btn_ReplyQuoted" icon="btn_sm_quoted" pass_params="1">
- &nbsp;
- </inp2:m_RenderElement>
- </td>
- </inp2:m_if>
-
- </tr>
- </table>
-
- <!--
- <inp2:m_if check="HasPermission" permissions="TOPIC.REPLY.OWNER.DELETE|TOPIC.REPLY.DELETE">
- [<a href="<inp2:PostLink bb-post_event="OnDelete"/>" onclick="return confirm('<inp2:m_phrase name="lu_DeletePostConfirm" js_escape="1"/>');"><inp2:m_phrase name="lu_btn_DeletePost"/></a>]
- <td>
- <inp2:m_RenderElement design="button_small" title="lu_btn_ModifyPost" icon="btn_sm_modify">
- <inp2:PostLink template="inbulletin/topics/modify_post"/>
- </inp2:m_RenderElement>
- </td>
- </inp2:m_if>
- -->
-
- </td>
- </tr>
- </table>
- <br />
-
- <inp2:m_if check="PostSubject">
- <strong>1111111111111<inp2:PostSubject/></strong><br />
- </inp2:m_if>
-
- <inp2:PostBody quote_render_as="post_quote_element" smiley_render_as="smiley_element" bbcode_render_as="bbcode_element"/>
- <br /><br />
-
- <inp2:m_if check="ShowPostSignature">
- <div>
- ------------------------------------------------------------------------------<br />
- <inp2:PostSignature smiley_render_as="smiley_element" bbcode_render_as="bbcode_element"/><br />
- <br />
- </div>
- </inp2:m_if>
- </td>
- </tr>
-</inp2:m_DefineElement>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/designs/posts.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.11
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/designs/topics.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/designs/topics.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/designs/topics.tpl (nonexistent)
@@ -1,106 +0,0 @@
-<inp2:m_DefineElement name="topic_element">
- <tr>
- <td colspan="5">
- <div class="horizontal-separator"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="1" alt="" /></div>
- </td>
- </tr>
-
- <tr>
- <td class="forums-cells">
- <table>
- <tr>
- <td class="topics-icon-padding" valign="top">
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/topics_icon.gif" width="14" height="12" alt="" /><br />
- </td>
- <td valign="top">
- <inp2:m_if check="m_Param" name="show_relevance">
- <inp2:RelevanceIndicator on_color="Red" off_color="White" relevance_normal_render_as="search_relevance_normal" relevance_full_render_as="search_relevance_full" /><br/>
- </inp2:m_if>
-
- <a href="<inp2:TopicLink template="__default__"/>"><inp2:Field name="TopicText"/></a>
-
- <inp2:m_if check="Field" name="IsHot"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/icon_hot.gif" alt="<inp2:m_phrase name="lu_Hot"/>"/></inp2:m_if>
- <inp2:m_if check="Field" name="IsNew"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/icon_new.gif" alt="<inp2:m_phrase name="lu_New"/>"/></inp2:m_if>
- <inp2:m_if check="Field" name="IsPop"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/icon_popular.gif" alt="<inp2:m_phrase name="lu_Popular"/>"/></inp2:m_if>
- <inp2:m_if check="IsEditorsPick"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/icon_pick.gif" alt="<inp2:m_phrase name="lu_Pick"/>"/></inp2:m_if>
- <inp2:m_if check="IsFavorite"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/icon_favorite.gif" alt="<inp2:m_phrase name="lu_Favorite"/>"/></inp2:m_if>
- <inp2:VotesIndicator render_as="rating_element"/>
- </td>
- </tr>
- </table>
- </td>
- <td width="100" class="forums-cells">
- <inp2:Field name="OwnerId"/>
- </td>
- <td width="150" class="forums-cells">
- <inp2:Field name="LastPostDate" format="_regional_DateFormat"/> &nbsp; <inp2:Field name="LastPostDate" format="_regional_TimeFormat"/>
- <!--<inp2:m_phrase name="lu_By"/> <inp2:Field name="LastPoster"/>-->
- </td>
- <td width="100" class="forums-cells">
- <inp2:TopicReplies/>
- </td>
- <td width="70" class="forums-cells">
- <inp2:Field name="Views"/>
- </td>
- </tr>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="my_topic_element">
- <tr>
- <td colspan="4">
- <div class="horizontal-separator"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="1" alt="" /></div>
- </td>
- </tr>
- <tr class="topic-prewiew-padding-cell">
- <td>
- <a href="<inp2:TopicLink template="__default__"/>"><inp2:Field name="TopicText"/></a>
-
- <inp2:m_if check="Field" name="IsHot"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/icon_hot.gif" alt="<inp2:m_phrase name="lu_Hot"/>"/></inp2:m_if>
- <inp2:m_if check="Field" name="IsNew"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/icon_new.gif" alt="<inp2:m_phrase name="lu_New"/>"/></inp2:m_if>
- <inp2:m_if check="Field" name="IsPop"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/icon_popular.gif" alt="<inp2:m_phrase name="lu_Popular"/>"/></inp2:m_if>
- <inp2:m_if check="IsEditorsPick"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/icon_pick.gif" alt="<inp2:m_phrase name="lu_Pick"/>"/></inp2:m_if>
- <inp2:m_if check="IsFavorite"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/icon_favorite.gif" alt="<inp2:m_phrase name="lu_Favorite"/>"/></inp2:m_if>
- <inp2:VotesIndicator render_as="rating_element"/>
-
- <br />
- (<inp2:m_phrase name="lu_By"/>: <inp2:Field name="OwnerId"/>)
-
- <br />
-
- <inp2:m_phrase name="lu_ItemPrimaryCategory"/>: <strong><inp2:CategoryPath separator="&gt;" render_as="category_path_element"/></strong><br />
-
- <br />
- <table>
- <tr>
- <td style="padding:0px;">
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/ic_details.gif" width="14" height="13" alt="" /> <a href="<inp2:TopicLink template="__default__"/>"><inp2:m_phrase name="lu_btn_Details"/></a>
- </td>
-
- <inp2:m_if check="HasPermission" permissions="TOPIC.MODIFY|TOPIC.MODIFY.PENDING|TOPIC.OWNER.MODIFY|TOPIC.OWNER.MODIFY.PENDING">
- <td style="padding:0px;">
- &nbsp;|&nbsp; <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/ic_edit.gif" width="11" height="10" alt="" /> <a href="<inp2:TopicLink template="inbulletin/topics/modify_topic"/>"><inp2:m_phrase name="lu_btn_Modify"/></a>
- </td>
- </inp2:m_if>
-
- <inp2:m_if check="HasPermission" permissions="TOPIC.DELETE|TOPIC.OWNER.DELETE">
- <td style="padding:0px;">
- &nbsp;|&nbsp; <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/ic_delete.gif" width="11" height="10" alt="" /> <a href="<inp2:TopicLink bb_event="OnDelete"/>" onclick="return confirm('<inp2:m_phrase name="lu_DeleteTopicConfirm" js_escape="1"/>');"><inp2:m_phrase name="lu_btn_Delete"/></a>
- </td>
- </inp2:m_if>
- </tr>
- </table>
-
- </td>
- <td>
- <inp2:TopicReplies/>
- </td>
- <td>
- <inp2:Field name="Views"/>
- </td>
- <td align="center">
- <inp2:Field name="LastPostDate" format="_regional_DateFormat"/><br />
- <inp2:Field name="LastPostDate" format="_regional_TimeFormat"/><br />
- <inp2:m_phrase name="lu_By"/> <inp2:Field name="LastPoster"/>
- </td>
- </tr>
-</inp2:m_DefineElement>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/designs/topics.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.10
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/designs/categories.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/designs/categories.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/designs/categories.tpl (nonexistent)
@@ -1,49 +0,0 @@
-<inp2:m_DefineElement name="category_element">
- <inp2:m_if check="SubCatCount">
- <tr>
- <td colspan="4">
- <div class="horizontal-separator"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="1" alt="" /></div>
- </td>
- </tr>
-
- <tr>
- <td class="forums-subheaders" colspan="4">
- <a href="<inp2:CategoryLink template="__default__"/>"><strong><inp2:Field name="Name"/></strong></a>
- </td>
- </tr>
- <inp2:ListCategories render_as="category_element" per_page="-1" no_table="1" requery="1"/>
- <inp2:m_else/>
- <tr>
- <td colspan="4">
- <div class="horizontal-separator"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="1" alt="" /></div>
- </td>
- </tr>
- <tr>
- <td class="forums-cells">
- <table>
- <tr>
- <td class="forums-icon-cell">
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/forums_dir.gif" width="20" height="24" alt="" /><br />
- </td>
- <td>
- <a href="<inp2:CategoryLink template="__default__"/>"><inp2:Field name="Name"/></a><br />
- <inp2:Field name="Description" nl2br="1"/>
- </td>
- </tr>
- </table>
- </td>
-
- <td class="forums-cells static">
- 123
- </td>
-
- <td class="forums-cells static">
- 445
- </td>
-
- <td class="forums-cells">
- <inp2:Field name="Modified" format="_regional_DateFormat"/> <inp2:Field name="Modified" format="g:i a"/>
- </td>
- </tr>
- </inp2:m_if>
-</inp2:m_DefineElement>
Property changes on: trunk/themes/default2007/inbulletin/designs/categories.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.6
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/designs/private_messages.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/designs/private_messages.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/designs/private_messages.tpl (nonexistent)
@@ -1,73 +0,0 @@
-<inp2:m_DefineElement name="folder_tab">
- <td class="<inp2:m_if check="private-message_FolderSelected" folder="$folder">active-tab<inp2:m_else/>inactive-tab</inp2:m_if>">
- <a href="<inp2:private-message_FolderLink folder="$folder"/>"><inp2:m_phrase name="$title"/></a>
- </td>
- <td width="8">
- &nbsp;
- </td>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="folder_tabs">
- <a href="<inp2:m_Link template="inbulletin/my_account/private_messages/new_message"/>"><inp2:m_Phrase name="lu_btn_NewPrivateMessage"/></a><br /><br />
-
- <table class="fullwidth tab-bottom-line">
- <tr>
- <td class="tab-left-padding">
- <table>
- <tr>
- <inp2:m_RenderElement name="folder_tab" folder="inbox" title="lu_folder_Inbox"/>
- <inp2:m_RenderElement name="folder_tab" folder="sent" title="lu_folder_Sent"/>
- </tr>
- </table>
- </td>
- </tr>
- </table>
-
- <br />
- <br />
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="no_private_messages">
- <inp2:m_RenderElement name="folder_tabs"/>
-
- <inp2:m_Phrase name="lu_NoPrivateMessages"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="smiley_element">
- <img class="emoticon" src="<inp2:m_param name="smiley_url"/>" />
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="bbcode_element">
- <div class="bbcode"><inp2:m_param name="bb_code"/></div>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="private_message_element">
- <tr>
- <td colspan="3">
- <div class="horizontal-separator"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="1" alt="" /></div>
- </td>
- </tr>
- <tr class="listing-row">
- <td>
- <inp2:m_if check="FolderSelected" folder="inbox">
- <inp2:Field name="FromName"/>
- <inp2:m_else/>
- <inp2:Field name="ToName"/>
- </inp2:m_if>
- </td>
- <td>
- <a href="<inp2:ItemLink template="inbulletin/my_account/private_messages/view_message"/>">
- <inp2:m_if check="IsNew">
- <span class="new-private-message">
- <inp2:MessageSubject empty_title="lu_NoSubject"/>
- </span>
- <inp2:m_else/>
- <inp2:MessageSubject empty_title="lu_NoSubject"/>
- </inp2:m_if>
- </a>
- </td>
- <td>
- <inp2:Field name="CreatedOn"/>
- </td>
- </tr>
-</inp2:m_DefineElement>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/designs/private_messages.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/elements/side_boxes/action_box.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/elements/side_boxes/action_box.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/elements/side_boxes/action_box.tpl (nonexistent)
@@ -1,32 +0,0 @@
-<inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_ActionBox"/>
-</inp2:m_Capture>
-
-<table width="100%" style="border-width: 0px;">
- <inp2:m_RenderElement name="box_element" template="platform/categories/suggest_category" title="lu_SuggestCategory" prefix="bb"/>
- <inp2:m_RenderElement name="box_element" template="inbulletin/topics/new_topic" title="lu_NewTopic" prefix="bb"/>
-
- <inp2:m_if check="m_Param" name="item_actions">
- <tr>
- <td>-</td>
- <td>
- <inp2:m_if check="bb_IsFavorite">
- <a href="<inp2:bb_FavoriteToggleLink/>">
- <inp2:m_phrase name="lu_btn_RemoveFromFavorites"/>
- </a>
- <inp2:m_else/>
- <a href="<inp2:bb_FavoriteToggleLink template="platform/my_account/my_favorites"/>">
- <inp2:m_phrase name="lu_btn_AddToFavorites"/>
- </a>
- </inp2:m_if>
- </td>
- </tr>
-
- <tr>
- <td>-</td>
- <td>
- <a href="<inp2:bb_TopicLink template="inbulletin/topics/rate"/>" class="static"><inp2:m_phrase name="lu_btn_RateThisTopic"/></a>
- </td>
- </tr>
- </inp2:m_if>
-</table>
Property changes on: trunk/themes/default2007/inbulletin/elements/side_boxes/action_box.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/elements/html_head.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/elements/html_head.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/elements/html_head.tpl (nonexistent)
@@ -1,2 +0,0 @@
-<link rel="stylesheet" rev="stylesheet" href="<inp2:m_TemplatesBase module="In-Bulletin"/>inc/styles.css" type="text/css" />
-<script type="text/javascript" src="<inp2:m_TemplatesBase module="In-Bulletin"/>inc/script.js"></script>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/elements/html_head.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/elements/content_boxes/category_topics.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/elements/content_boxes/category_topics.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/elements/content_boxes/category_topics.tpl (nonexistent)
@@ -1,66 +0,0 @@
-<!-- topics in category -->
-<inp2:m_DefineElement name="no_topics">
- <inp2:m_phrase name="lu_NoTopics"/>
-</inp2:m_DefineElement>
-
-<inp2:m_RenderElement design="content_box" data_exists="1" block_no_data="no_topics">
- <inp2:bb_InitList list_name="items_in_current_cat" except="displayed" />
-
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_Topics"/> (<inp2:bb_TotalRecords list_name="items_in_current_cat"/>)
- </inp2:m_Capture>
-
- <inp2:m_include template="inbulletin/designs/topics"/>
-
- <!--
- <inp2:m_if check="bb_HasPermission" permissions="TOPIC.ADD|TOPIC.ADD.PENDING">
- <table>
- <td>
- [<a href="<inp2:bb_SuggestItemLink template="inbulletin/topics/new_topic"/>"><inp2:m_phrase name="lu_btn_NewTopic"/></a>]
- </td>
- </table>
- </inp2:m_if>
- -->
-
- <table width="100%">
- <tr>
- <td class="category-statistics static">
- 0 posts in 0 Topics &nbsp;|&nbsp; Added Today:0
- </td>
- <td class="category-statistics static" align="right">
- Links Updated: 05/17/2006
- </td>
- </tr>
- </table>
- <br />
-
- <table width="100%">
- <tr>
- <td colspan="5">
- <div class="horizontal-separator"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="1" alt="" /></div>
- </td>
- </tr>
- <tr class="sub-section-header">
- <td><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/header_arrow.gif" width="11" height="11" alt="" /> &nbsp; <inp2:m_phrase name="lu_col_Topics"/></td>
- <td><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/header_arrow.gif" width="11" height="11" alt="" /> &nbsp; <inp2:m_phrase name="lu_col_Poster"/></td>
- <td><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/header_arrow.gif" width="11" height="11" alt="" /> &nbsp; <inp2:m_phrase name="lu_col_Date"/></td>
- <td><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/header_arrow.gif" width="11" height="11" alt="" /> &nbsp; <inp2:m_phrase name="lu_col_Replies"/></td>
- <td><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/header_arrow.gif" width="11" height="11" alt="" /> &nbsp; <inp2:m_phrase name="lu_col_Views"/></td>
- </tr>
-
- <inp2:bb_ListTopics list_name="items_in_current_cat" no_table="1" render_as="topic_element"/>
- </table>
-
- <br />
-
- <inp2:m_include template="platform/elements/pagination" prefix="bb" list_name="items_in_current_cat"/>
-
- <inp2:m_if check="bb_HasPermission" permissions="TOPIC.ADD|TOPIC.ADD.PENDING">
- <table>
- <td>
- <a href="<inp2:bb_SuggestItemLink template="inbulletin/topics/new_topic"/>"><inp2:m_phrase name="lu_btn_NewTopic"/></a>
- </td>
- </table>
- </inp2:m_if>
-</inp2:m_RenderElement>
-<!-- // topics in category -->
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/elements/content_boxes/category_topics.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.4
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/elements/content_boxes/my_favorites.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/elements/content_boxes/my_favorites.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/elements/content_boxes/my_favorites.tpl (nonexistent)
@@ -1,33 +0,0 @@
-<!-- favorite topics -->
-<inp2:m_RenderElement design="content_box" data_exists="1">
- <inp2:bb_InitList list_name="favorite_topics" types="favorites" except="displayed" parent_cat_id="0" recursive="1"/>
-
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_FavoriteTopics"/> (<inp2:bb_TotalRecords list_name="favorite_topics"/>)
- </inp2:m_Capture>
-
- <inp2:m_include template="inbulletin/designs/topics"/>
-
- <table class="fullwidth">
- <tr>
- <td colspan="5">
- <div class="horizontal-separator"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="1" alt="" /></div>
- </td>
- </tr>
- <tr class="sub-section-header">
- <td><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/header_arrow.gif" width="11" height="11" alt="" /> &nbsp; <inp2:m_phrase name="lu_col_Topics"/></td>
- <td><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/header_arrow.gif" width="11" height="11" alt="" /> &nbsp; <inp2:m_phrase name="lu_col_Poster"/></td>
- <td><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/header_arrow.gif" width="11" height="11" alt="" /> &nbsp; <inp2:m_phrase name="lu_col_Date"/></td>
- <td><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/header_arrow.gif" width="11" height="11" alt="" /> &nbsp; <inp2:m_phrase name="lu_col_Replies"/></td>
- <td><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/header_arrow.gif" width="11" height="11" alt="" /> &nbsp; <inp2:m_phrase name="lu_col_Views"/></td>
- </tr>
- <inp2:bb_ListTopics list_name="favorite_topics" render_as="topic_element" no_table="1"/>
- </table>
-
- <inp2:m_if check="bb_TotalRecords" list_name="favorite_topics">
- <inp2:m_Set favorites_found="1"/>
- </inp2:m_if>
-
- <inp2:m_include template="platform/elements/pagination" prefix="bb" list_name="favorite_topics"/>
-</inp2:m_RenderElement>
-<!-- // favorite topics -->
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/elements/content_boxes/my_favorites.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/elements/content_boxes/search_results.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/elements/content_boxes/search_results.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/elements/content_boxes/search_results.tpl (nonexistent)
@@ -1,53 +0,0 @@
-<inp2:m_RenderElement design="content_box" data_exists="1">
- <inp2:bb_InitList list_name="topic_search_results" types="search" parent_cat_id="any" recursive="1" per_page="short_list"/>
-
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_TopicSearchResults"/> (<inp2:bb_TotalRecords list_name="topic_search_results" />)
- </inp2:m_Capture>
-
- <inp2:m_include template="inbulletin/designs/topics"/>
- <inp2:m_include template="platform/designs/search_results"/>
-
- <table class="fullwidth">
- <tr>
- <td class="category-statistics">
- <inp2:m_phrase name="lu_TotalTopics"/>: <inp2:bb_TotalRecords list_name="topic_search_results"/> &nbsp;|&nbsp; <span class="static"><inp2:m_phrase name="lu_AddedToday"/>: 0</span>
- </td>
- <td class="category-statistics static" align="right">
- <inp2:m_phrase name="lu_TopicsUpdated"/>: 05/17/2006
- </td>
- </tr>
- </table>
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="4" alt="" /><br />
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/grey_pix.gif" width="100%" height="1" alt="" /><br />
- <br />
-
- <table class="fullwidth">
- <tr>
- <td colspan="5">
- <div class="horizontal-separator"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="1" alt="" /></div>
- </td>
- </tr>
- <tr class="sub-section-header">
- <td><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/header_arrow.gif" width="11" height="11" alt="" /> &nbsp; <inp2:m_phrase name="lu_col_Topics"/></td>
- <td><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/header_arrow.gif" width="11" height="11" alt="" /> &nbsp; <inp2:m_phrase name="lu_col_Poster"/></td>
- <td><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/header_arrow.gif" width="11" height="11" alt="" /> &nbsp; <inp2:m_phrase name="lu_col_Date"/></td>
- <td><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/header_arrow.gif" width="11" height="11" alt="" /> &nbsp; <inp2:m_phrase name="lu_col_Replies"/></td>
- <td><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/header_arrow.gif" width="11" height="11" alt="" /> &nbsp; <inp2:m_phrase name="lu_col_Views"/></td>
- </tr>
-
- <inp2:bb_ListTopics list_name="topic_search_results" render_as="topic_element" show_relevance="1"/>
- </table>
-
- <div class="horizontal-separator"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="1" alt="" /><br /></div>
-
- <inp2:m_if check="bb_TotalRecords" list_name="topic_search_results">
- <inp2:m_Set items_found="1"/>
- </inp2:m_if>
-
- <inp2:m_DefineElement name="more_link">
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="5" alt="" /><br />
- <a href="<inp2:m_Link template="inbulletin/topics/search_results" />"><inp2:m_Phrase label="lu_More"/>...</a>
- </inp2:m_DefineElement>
- <inp2:bb_MoreLink list_name="topic_search_results" render_as="more_link" />
-</inp2:m_RenderElement>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/elements/content_boxes/search_results.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/elements/menu.xml.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/elements/menu.xml.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/elements/menu.xml.tpl (nonexistent)
@@ -1 +0,0 @@
-<inp2:m_RenderElement name="dmenu_element" module="In-bulletin" icon="menu_topics.gif"/>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/elements/menu.xml.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/post_list.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/post_list.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/post_list.tpl (nonexistent)
@@ -1,189 +0,0 @@
-<inp2:m_DefineElement name="sidebar">
-
- <inp2:m_RenderElements
- elements="
- platform/elements/side_boxes/login,
- platform/elements/side_boxes/search,
- "
- design="blue_box"/>
-
- <inp2:m_RenderElement name="inbulletin/elements/side_boxes/action_box" design="blue_box" item_actions="1"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar" titles="__item__,lu_title_TopicPosts" templates="__default__,inbulletin/post_list" show_category="1"/>
-
- <!-- posts in topic -->
- <inp2:m_RenderElement design="content_box">
- <inp2:bb-post_InitList list_name="posts_in_topic" per_page="15"/>
-
- <inp2:m_Capture to_var="header">
- <inp2:m_if check="bb_IsLocked">
- [<inp2:m_phrase name="lu_LockedTopic"/>]&nbsp;
- </inp2:m_if>
- <inp2:bb_Field name="TopicText"/> - <inp2:m_phrase name="lu_title_TopicPosts"/> (<inp2:bb-post_TotalRecords list_name="posts_in_topic"/>)
- </inp2:m_Capture>
-
- <inp2:m_if check="bb_HasPermission" permissions="TOPIC.REPLY.VIEW">
- <inp2:m_include template="inbulletin/designs/posts"/>
-
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="10" alt="" /><br />
-
-
- <inp2:m_DefineElement name="button_big" title="" icon="">
- <table style="margin:0px">
- <tr valign="top">
- <td class="btn-l-side">
- <img src="<inp2:m_TemplatesBase module="In-Bulletin"/>img/btn_corn1.gif" width="11" height="16" alt="" /><br />
- </td>
- <td class="btn-text-sm">
- <a class="topic_edit" href="<inp2:m_Param name="content"/>"><inp2:m_phrase name="$title"/></a>
- </td>
- <td class="btn-r-side">
- <a class="topic_edit" href="<inp2:m_Param name="content"/>"><img src="<inp2:m_TemplatesBase module="In-Bulletin"/>img/<inp2:m_param name="icon"/>.gif" alt=""></a><br />
- </td>
- </tr>
- <tr valign="top">
- <td>
- <img src="<inp2:m_TemplatesBase module="In-Bulletin"/>img/btn_corn2.gif" width="11" height="10" alt="" /><br />
- </td>
- <td class="btn-bot">
- <img src="<inp2:m_TemplatesBase module="In-Bulletin"/>img/s.gif" width="1" height="1" alt="" /><br />
- </td>
- <td class="btn-bot" align="right">
- <img src="<inp2:m_TemplatesBase module="In-Bulletin"/>img/btn_corn2_.gif" width="11" height="10" alt="" /><br />
- </td>
- </tr>
- </table>
- </inp2:m_DefineElement>
-
-
-
- <table class="fullwidth">
- <tr>
- <td align="left">
- <inp2:m_if check="bb_HasPermission" permissions="TOPIC.REPLY.ADD">
- <inp2:m_RenderElement design="button_big" title="lu_btn_Reply" icon="btn_reply">
- <inp2:bb_TopicLink template="inbulletin/topics/new_topic_reply"/>
- </inp2:m_RenderElement>
- </inp2:m_if>
- </td>
-
- <td align="right">
-
-
- <table>
- <tr>
-
- <inp2:m_if check="bb_HasPermission" permissions="TOPIC.MODIFY|TOPIC.MODIFY.PENDING|TOPIC.OWNER.MODIFY|TOPIC.OWNER.MODIFY.PENDING">
- <td>
- <inp2:m_RenderElement design="button_big" title="lu_btn_Modify" icon="btn_modify">
- <inp2:bb_TopicLink template="inbulletin/topics/modify_topic"/>
- </inp2:m_RenderElement>
- </td>
-<!--
- <inp2:m_if check="bb_HasPermission" permissions="TOPIC.MODIFY|TOPIC.MODIFY.PENDING|TOPIC.OWNER.MODIFY|TOPIC.OWNER.MODIFY.PENDING">
- [<a href="<inp2:bb_TopicLink template="inbulletin/topics/modify_topic"/>"><inp2:m_phrase name="lu_btn_Modify"/></a>]
- </inp2:m_if>
-
- [<a href="<inp2:bb_TopicLink template="inbulletin/topics/rate"/>" class="static"><inp2:m_phrase name="lu_btn_RateThisTopic"/></a>]
-
- [
- <inp2:m_if check="bb_IsFavorite">
- <a href="<inp2:bb_FavoriteToggleLink/>">
- <inp2:m_phrase name="lu_btn_RemoveFromFavorites"/>
- </a>
- <inp2:m_else/>
- <a href="<inp2:bb_FavoriteToggleLink template="platform/my_account/my_favorites"/>">
- <inp2:m_phrase name="lu_btn_AddToFavorites"/>
- </a>
- </inp2:m_if>
- ]
-
- <inp2:m_if check="bb_HasPermission" permissions="TOPIC.LOCK">
- [<a href="<inp2:bb_LockToggleLink/>">
- <inp2:m_if check="bb_IsLocked">
- <inp2:m_phrase name="lu_btn_UnlockTopic"/>
- <inp2:m_else/>
- <inp2:m_phrase name="lu_btn_LockTopic"/>
--->
- </inp2:m_if>
-
- <td>
- <inp2:m_RenderElement design="button_big" title="lu_btn_RateThisTopic" icon="btn_rate">
- <inp2:bb_TopicLink template="inbulletin/topics/rate"/>
- </inp2:m_RenderElement>
- </td>
-
- <td>
- <a href="<inp2:bb_FavoriteToggleLink/>">
- <inp2:m_if check="bb_IsFavorite">
- <inp2:m_RenderElement design="button_big" title="lu_btn_RemoveFromFavorites" icon="btn_favorites">
- <inp2:bb_FavoriteToggleLink/>
- </inp2:m_RenderElement>
- <inp2:m_else/>
- <inp2:m_RenderElement design="button_big" title="lu_btn_AddToFavorites" icon="btn_add_favorites">
- <inp2:bb_FavoriteToggleLink/>
- </inp2:m_RenderElement>
- </inp2:m_if>
- </td></a>
-
-
- <td>
- <inp2:m_if check="bb_HasPermission" permissions="TOPIC.LOCK">
- <inp2:m_RenderElement design="button_big" title="lu_btn_UnlockTopic" icon="btn_noicon">
- <inp2:bb_LockToggleLink/>
- </inp2:m_RenderElement>
- <!--
- <inp2:m_if check="bb_IsLocked">
- <inp2:m_RenderElement design="button_big" title="lu_btn_UnlockTopic" icon="btn_noicon">
- <inp2:bb_LockToggleLink/>
- </inp2:m_RenderElement>
- <inp2:m_else/>
- <inp2:m_RenderElement design="button_big" title="lu_btn_LockTopic" icon="btn_noicon">
- <inp2:bb_LockToggleLink/>
- </inp2:m_RenderElement>
- </inp2:m_if>
- -->
- </inp2:m_if>
- </td>
-
- </tr>
- </table>
-
-
-
- </td>
- </tr>
- </table>
-
- <br />
-
- <table width="100%">
- <tr>
- <td colspan="2">
- <div class="horizontal-separator"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="1" alt="" /></div>
- </td>
- </tr>
- <tr class="forums-header">
- <td style="width: 200px;">
- <inp2:m_phrase name="lu_col_Author"/>
- </td>
- <td>
- <inp2:m_phrase name="lu_col_Message"/>
- </td>
- </tr>
- <inp2:bb-post_ListPosts list_name="posts_in_topic" render_as="post_element" no_table="1"/>
- </table>
- <br />
-
- <inp2:m_include template="platform/elements/pagination" prefix="bb-post" list_name="posts_in_topic"/>
- <inp2:m_else/>
- <inp2:m_phrase name="lu_text_NoTopicReplyViewPermission"/>
- </inp2:m_if>
- </inp2:m_RenderElement>
- <!-- // posts in topic -->
-
-</inp2:m_DefineElement>
-
-<inp2:m_include template="platform/designs/default_design" pass_params="1"/>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/post_list.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.10
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/my_account/private_messages/new_message.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/my_account/private_messages/new_message.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/my_account/private_messages/new_message.tpl (nonexistent)
@@ -1,52 +0,0 @@
-<inp2:m_RequireLogin login_template="platform/login/register"/>
-
-<inp2:m_DefineElement name="sidebar">
- <inp2:m_RenderElements
- elements="
- platform/elements/side_boxes/login,
- platform/elements/side_boxes/search,
- inbulletin/elements/side_boxes/action_box,
- "
- design="blue_box"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar" titles="lu_title_MyAccount,lu_title_PrivateMessages,lu_title_NewPrivateMessage" templates="platform/my_account/my_account,inbulletin/my_account/private_messages/private_messages,inbulletin/my_account/private_messages/new_message"/>
-
- <!-- new private message -->
- <inp2:m_RenderElement design="content_box">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_NewPrivateMessage"/>
- </inp2:m_Capture>
-
- <inp2:private-message_PresetFormFields/>
- <span class="field-required">*</span> <inp2:m_phrase name="lu_IndicatesRequired"/><br /><br />
-
- <inp2:m_if check="private-message_HasError" field="any">
- <inp2:m_RenderElement name="error_message" />
- </inp2:m_if>
-
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/grey_pix.gif" width="100%" height="1" align="absmiddle" alt="" /><br /><br />
-
- <form method="post" action="<inp2:m_FormAction/>">
- <table class="form-data fullwidth">
- <inp2:m_RenderElement name="inp_edit_box" prefix="private-message" field="ToId" title="lu_fld_To"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="private-message" field="Subject" title="lu_fld_Subject"/>
- <inp2:m_RenderElement name="inp_edit_textarea" prefix="private-message" field="Body" cols="30" rows="5" title="lu_fld_MessageBody"/>
-
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="private-message" field="DisableBBCodes" title="lu_fld_DisableBBCodes"/>
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="private-message" field="DisableSmileys" title="lu_fld_DisableSmileys"/>
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="private-message" field="ShowSignatures" title="lu_fld_ShowSignatures" is_last="1"/>
-
- <inp2:m_RenderElement design="inp_edit_buttons">
- <input type="hidden" name="next_template" value="inbulletin/my_account/private_messages/add_confirm"/>
- <input class="button" type="submit" name="events[private-message][OnCreate]" value="<inp2:m_phrase label="lu_btn_Create"/>"/>
- </inp2:m_RenderElement>
- </table>
- </form>
-
- </inp2:m_RenderElement>
- <!-- // new private message -->
-</inp2:m_DefineElement>
-
-<inp2:m_include template="platform/designs/default_design" pass_params="1"/>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/my_account/private_messages/new_message.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/my_account/private_messages/view_message.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/my_account/private_messages/view_message.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/my_account/private_messages/view_message.tpl (nonexistent)
@@ -1,47 +0,0 @@
-<inp2:m_RequireLogin login_template="platform/login/register"/>
-
-<inp2:m_DefineElement name="sidebar">
- <inp2:m_RenderElements
- elements="
- platform/elements/side_boxes/login,
- platform/elements/side_boxes/search,
- "
- design="blue_box"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar" titles="lu_title_MyAccount,lu_title_PrivateMessages,lu_title_PrivateMessageDetails" templates="platform/my_account/my_account,inbulletin/my_account/private_messages/private_messages,inbulletin/my_account/private_messages/view_message"/>
-
- <!-- private message details -->
- <inp2:m_RenderElement design="content_box">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_PrivateMessageDetails"/>
- </inp2:m_Capture>
-
- <inp2:private-message_MarkAsRead/>
- <table class="fullwidth">
- <tr>
- <td>
- <inp2:m_Phrase name="lu_MessageCreated"/>: <inp2:private-message_Field name="CreatedOn"/>
- </td>
- <td align="right">
- <inp2:m_if check="private-message_CanReplyMessage">
- [<a href="<inp2:private-message_ReplyLink template="inbulletin/my_account/private_messages/new_message"/>"><inp2:m_Phrase name="lu_btn_Reply"/></a>]
- </inp2:m_if>
-
- [<a href="<inp2:private-message_DeleteLink template="inbulletin/my_account/private_messages/private_messages"/>" onclick="return confirm('<inp2:m_phrase name="lu_DeletePrivateMessageConfirm" js_escape="1"/>');"><inp2:m_phrase name="lu_btn_Delete"/></a>]
- </td>
- </tr>
- </table>
- <br />
-
- <inp2:m_Phrase name="lu_fld_From"/>: <inp2:private-message_Field name="FromId"/><br />
- <inp2:m_Phrase name="lu_fld_Subject"/>: <inp2:private-message_MessageSubject empty_title="lu_NoSubject"/><br /><br />
-
- <inp2:m_include template="inbulletin/designs/private_messages"/>
- <inp2:private-message_MessageBody smiley_render_as="smiley_element" bbcode_render_as="bbcode_element"/>
- </inp2:m_RenderElement>
- <!-- // private message details -->
-</inp2:m_DefineElement>
-
-<inp2:m_include template="platform/designs/default_design" pass_params="1"/>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/my_account/private_messages/view_message.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/my_account/private_messages/private_messages.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/my_account/private_messages/private_messages.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/my_account/private_messages/private_messages.tpl (nonexistent)
@@ -1,53 +0,0 @@
-<inp2:m_RequireLogin login_template="platform/login/register"/>
-<inp2:m_DefineElement name="sidebar">
- <inp2:m_RenderElements
- elements="
- platform/elements/side_boxes/login,
- "
- design="blue_box"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar" titles="lu_title_MyAccount,lu_title_PrivateMessages" templates="platform/my_account/my_account,inbulletin/my_account/private_messages/private_messages"/>
-
- <!-- private messages -->
- <inp2:m_RenderElement design="content_box" data_exists="1" block_no_data="no_private_messages">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_PrivateMessages"/> (<inp2:private-message_TotalRecords/>)
- </inp2:m_Capture>
-
- <inp2:m_include template="inbulletin/designs/private_messages"/>
-
- <inp2:m_RenderElement name="folder_tabs"/>
-
- <table class="fullwidth">
- <tr>
- <td colspan="3">
- <div class="horizontal-separator"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="1" alt="" /></div>
- </td>
- </tr>
- <tr class="sub-section-header">
- <td>
- <inp2:m_if check="m_GetEquals" name="folder_id" value="-1">
- <inp2:m_Phrase name="lu_col_ToName"/>
- <inp2:m_else/>
- <inp2:m_Phrase name="lu_col_FromName"/>
- </inp2:m_if>
- </td>
- <td>
- <inp2:m_Phrase name="lu_col_Subject"/>
- </td>
- <td>
- <inp2:m_Phrase name="lu_col_Created"/>
- </td>
- </tr>
- <inp2:private-message_PrintList render_as="private_message_element"/>
- </table>
-
- <inp2:m_include template="platform/elements/pagination" prefix="private-message"/>
- </inp2:m_RenderElement>
- <!-- // private messages -->
-
-</inp2:m_DefineElement>
-
-<inp2:m_include template="platform/designs/default_design" pass_params="1"/>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/my_account/private_messages/private_messages.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/my_account/private_messages/add_confirm.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/my_account/private_messages/add_confirm.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/my_account/private_messages/add_confirm.tpl (nonexistent)
@@ -1,25 +0,0 @@
-<inp2:m_DefineElement name="sidebar">
- <inp2:m_RenderElements
- elements="
- platform/elements/side_boxes/login,
- platform/elements/side_boxes/search,
- "
- design="blue_box"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar" titles="lu_title_MyAccount,lu_title_PrivateMessages,lu_title_AddPrivateMessageConfirm" templates="platform/my_account/my_account,inbulletin/my_account/private_messages/private_messages,inbulletin/my_account/private_messages/add_confirm"/>
-
- <!-- add private message confirm -->
- <inp2:m_RenderElement design="content_box">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_AddPrivateMessageConfirm"/>
- </inp2:m_Capture>
-
- <inp2:m_phrase name="lu_text_lu_title_AddPrivateMessageConfirm"/><br /><br />
- <a href="<inp2:private-message_FolderLink template="inbulletin/my_account/private_messages/private_messages" folder="sent"/>"><inp2:m_Phrase name="lu_PrivateMessages"/></a>
- </inp2:m_RenderElement>
- <!-- // add private message confirm -->
-</inp2:m_DefineElement>
-
-<inp2:m_include template="platform/designs/default_design" pass_params="1"/>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/my_account/private_messages/add_confirm.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/my_account/my_preferences.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/my_account/my_preferences.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/my_account/my_preferences.tpl (nonexistent)
@@ -1,63 +0,0 @@
-<inp2:m_RequireLogin login_template="platform/login/register"/>
-<inp2:m_DefineElement name="sidebar">
- <inp2:m_RenderElements
- elements="
- platform/elements/side_boxes/login,
- "
- design="blue_box"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar" titles="lu_title_MyAccount,lu_title_MyPreferences" templates="platform/my_account/my_account,platform/my_account/my_preferences"/>
-
- <!-- my preferences -->
- <inp2:m_RenderElement design="content_box">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_MyPreferences"/>
- </inp2:m_Capture>
-
-
- <table class="fullwidth tab-bottom-line">
- <tr>
- <td class="tab-left-padding">
-
- <table>
- <tr>
- <inp2:m_ModuleInclude template="my_account/preferences_tab" in-portal_template="platform/my_account/preferences_tab"/>
- </tr>
- </table>
-
- </td>
- </tr>
- </table>
-
-
-
-
- <br />
-
- <strong>Forums</strong><br /><br />
-
- <form method="post" action="<inp2:m_FormAction/>">
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/grey_pix.gif" width="100%" height="1" align="absmiddle" alt="" /><br /><br />
- <table class="form-data fullwidth">
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="user-profile" field="show_sig" title="lu_fld_ShowSignatures"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="user-profile" field="Perpage_Topics" title="lu_fld_TopicsPerPage"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="user-profile" field="Perpage_Postings" title="lu_fld_PostsPerPage"/>
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="user-profile" field="owner_notify" title="lu_fld_NotifyOwnerOnChanges"/>
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="user-profile" field="bb_pm_notify" title="lu_fld_NotifyOnPrivateMessages"/>
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="user-profile" field="bbcode" title="lu_fld_EnableBBCodes"/>
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="user-profile" field="smileys" title="lu_fld_EnableSmileys"/>
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="user-profile" field="bb_signatures" title="lu_fld_ShowOtherSignatures"/>
- <inp2:m_RenderElement name="inp_edit_textarea" prefix="user-profile" field="my_signature" title="lu_fld_MySignature" cols="50" rows="10" is_last="1"/>
-
- <inp2:m_RenderElement design="inp_edit_buttons">
- <input class="button" type="submit" name="events[user-profile][OnUpdate]" value="<inp2:m_Phrase label="lu_btn_Update"/>"/>
- </inp2:m_RenderElement>
- </table>
- </form>
- </inp2:m_RenderElement>
- <!-- // my preferences -->
-</inp2:m_DefineElement>
-
-<inp2:m_include template="platform/designs/default_design" pass_params="1"/>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/my_account/my_preferences.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.6
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/my_account/my_topics.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/my_account/my_topics.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/my_account/my_topics.tpl (nonexistent)
@@ -1,50 +0,0 @@
-<inp2:m_RequireLogin login_template="platform/login/register"/>
-<inp2:m_DefineElement name="sidebar">
- <inp2:m_RenderElements
- elements="
- platform/elements/side_boxes/login,
- platform/elements/side_boxes/search,
- inbulletin/elements/side_boxes/action_box
- "
- design="blue_box"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar" titles="lu_title_MyAccount,lu_title_MyTopics" templates="platform/my_account/my_account,inbulletin/my_account/my_topics"/>
-
- <!-- my topics -->
- <inp2:m_DefineElement name="no_topics">
- <inp2:m_phrase name="lu_NoTopics"/>
- </inp2:m_DefineElement>
-
- <inp2:m_RenderElement design="content_box" data_exists="1" block_no_data="no_topics">
- <inp2:bb_InitList list_name="my_topics" types="my_items" except="displayed" parent_cat_id="0" recursive="1"/>
-
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_MyTopics"/> (<inp2:bb_TotalRecords list_name="my_topics"/>)
- </inp2:m_Capture>
-
- <inp2:m_include template="inbulletin/designs/topics"/>
-
- <table class="fullwidth">
- <tr>
- <td colspan="4">
- <div class="horizontal-separator"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="1" alt="" /></div>
- </td>
- </tr>
- <tr class="sub-section-header">
- <td><inp2:m_phrase name="lu_col_Topics"/></td>
- <td><inp2:m_phrase name="lu_col_Replies"/></td>
- <td><inp2:m_phrase name="lu_col_Views"/></td>
- <td><inp2:m_phrase name="lu_col_LastPost"/></td>
- </tr>
- <inp2:bb_ListTopics list_name="my_topics" render_as="my_topic_element" no_table="1"/>
- </table>
-
- <inp2:m_include template="platform/elements/pagination" prefix="bb" list_name="my_topics"/>
- </inp2:m_RenderElement>
- <!-- // my topics -->
-
-</inp2:m_DefineElement>
-
-<inp2:m_include template="platform/designs/default_design" pass_params="1"/>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/my_account/my_topics.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.5
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/my_account/preferences_tab.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/my_account/preferences_tab.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/my_account/preferences_tab.tpl (nonexistent)
@@ -1 +0,0 @@
-<inp2:m_RenderElement name="tab" title="lu_tab_Forums" template="inbulletin/my_account/my_preferences"/>
Property changes on: trunk/themes/default2007/inbulletin/my_account/preferences_tab.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/my_account/my_items.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/my_account/my_items.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/my_account/my_items.tpl (nonexistent)
@@ -1,19 +0,0 @@
-<inp2:m_if check="m_ParamEquals" name="section" value="1">
- <inp2:m_if check="m_ParamEquals" name="place" value="sidebox">
- <inp2:m_RenderElement name="box_element" template="inbulletin/my_account/private_messages/private_messages" title="lu_PrivateMessages"/>
- </inp2:m_if>
-
- <inp2:m_if check="m_ParamEquals" name="place" value="contentbox">
- <inp2:m_RenderElement name="my_account_element" template="inbulletin/my_account/private_messages/private_messages" title="lu_PrivateMessages" description="lu_description_PrivateMessages"/>
- </inp2:m_if>
-</inp2:m_if>
-
-<inp2:m_if check="m_ParamEquals" name="section" value="2">
- <inp2:m_if check="m_ParamEquals" name="place" value="sidebox">
- <inp2:m_RenderElement name="box_element" template="inbulletin/my_account/my_topics" title="lu_MyTopics"/>
- </inp2:m_if>
-
- <inp2:m_if check="m_ParamEquals" name="place" value="contentbox">
- <inp2:m_RenderElement name="my_account_element" template="inbulletin/my_account/my_topics" title="lu_MyTopics" description="lu_description_MyTopics"/>
- </inp2:m_if>
-</inp2:m_if>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/my_account/my_items.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.3
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/index.tpl
===================================================================
--- trunk/themes/default2007/inbulletin/index.tpl (revision 12824)
+++ trunk/themes/default2007/inbulletin/index.tpl (nonexistent)
@@ -1,80 +0,0 @@
-<inp2:m_DefineElement name="sidebar">
- <inp2:m_RenderElements
- elements="
- platform/elements/side_boxes/login,
- platform/elements/side_boxes/search,
- inbulletin/elements/side_boxes/action_box,
- "
- design="blue_box"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar"/>
-
- <!-- categories -->
- <inp2:m_RenderElement design="content_box" data_exists="1">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_Categories"/> (<inp2:c_TotalRecords />)
- </inp2:m_Capture>
-
- <inp2:m_include template="inbulletin/designs/categories"/>
-
- <table>
- <tr>
- <td class="category-statistics static">
- 0 posts in 0 Topics &nbsp;|&nbsp; Added Today: 0 Topics, 0 posts
- </td>
- </tr>
- </table>
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="4" alt="" /><br />
- <div class="horizontal-separator"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="1" alt="" /></div>
-
- <table class="forums-icon-description">
- <tr>
- <td>
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/forums_new_post.gif" width="20" height="23" alt="" /><br />
- </td>
- <td>
- Forum has new posts
- </td>
- <td>
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/forums_no_new_post.gif" width="21" height="24" alt="" /><br />
- </td>
- <td>
- Forum has no new posts
- </td>
- <td>
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/forums_locked.gif" width="25" height="23" alt="" /><br />
- </td>
- <td>
- Forum is locked for posting
- </td>
- </tr>
- </table>
-
- <table class="fullwidth">
- <tr>
- <td colspan="4">
- <div class="horizontal-separator"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="1" alt="" /></div>
- </td>
- </tr>
- <tr class="forums-header">
- <td><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/header_arrow.gif" width="11" height="11" alt="" /> &nbsp; <inp2:m_phrase name="lu_col_Forums"/></td>
- <td width="90"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/header_arrow.gif" width="11" height="11" alt="" /> &nbsp; <inp2:m_phrase name="lu_col_Topics"/></td>
- <td width="80"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/header_arrow.gif" width="11" height="11" alt="" /> &nbsp; <inp2:m_phrase name="lu_col_Posts"/></td>
- <td width="130"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/header_arrow.gif" width="11" height="11" alt="" /> &nbsp; <inp2:m_phrase name="lu_col_LastUpdate"/></td>
- </tr>
- <inp2:c_ListCategories render_as="category_element" columns="1"/>
- </table>
- <br />
-
- <inp2:m_include template="platform/elements/pagination" prefix="c"/>
- </inp2:m_RenderElement>
- <!-- // categories -->
-
- <inp2:m_if check="c_TotalRecords" inverse="inverse">
- <inp2:m_include template="inbulletin/elements/content_boxes/category_topics"/>
- </inp2:m_if>
-</inp2:m_DefineElement>
-
-<inp2:m_include template="platform/designs/default_design" pass_params="1"/>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inbulletin/index.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.8
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/inc/styles.css
===================================================================
--- trunk/themes/default2007/inbulletin/inc/styles.css (revision 12824)
+++ trunk/themes/default2007/inbulletin/inc/styles.css (nonexistent)
@@ -1,188 +0,0 @@
-.bbcode {
- border: 1px solid #888888;
- background-color: #EEEEEE;
- padding: 10px;
-}
-
-.forums-header TD
- {
- padding:6px;
- color:#21619e;
- }
-
-.forums-icon-cell
- {
- width:20px;
- padding-right:10px;
- vertical-align:top;
- }
-
-.forums-subheaders
- {
- background:#f4f4f4;
- font-weight:bold;
- padding:5px 15px;
- font-size:12px;
- }
-
-.table-gradient-grey
- {
- background:url(../../platform/img/background_table_grey.gif) top repeat-x;
- }
-
-.table-gradient-blue
- {
- background:url(../../platform/img/background_table_blue.gif) top repeat-x;
- }
-
-
-.forums-subheaders A
- {
- color:#000000;
- text-decoration: underline;
- }
-
-.forums-subheaders A:hover
- {
- color: #666666;
- text-decoration: underline;
- }
-
-.forums-cells
- {
- vertical-align: middle;
- padding:10px;
- }
-
-.post-background-1
- {
- background:#f4f4f4;
- padding:8px;
- }
-
-.post-background-2
- {
- background:#FFFFFF;
- padding:8px;
- }
-
-.post-icon-padding-right
- {
- padding-right:10px;
- }
-
-.topic-prewiew-padding-cell TD
- {
- padding: 13px;
- }
-
-.post-control {
- padding: 0px !important;
- vertical-align: top;
-}
-
-
-.no-padding TD
- {
- padding:0px;
- }
-
-
-.forums-icon-description TD
- {
- padding:10px;
- vertical-align:middle;
- }
-
-.topics-icon-padding
- {
- width:14px;
- padding-right:10px;
- }
-
-.new-private-message {
- font-weight: bold;
-}
-
-
-
-
-
-
-/*--- FORUM GRAPHIC BUTTON //---*/
-.btn-l-side {
- background: #efefef url(../img/bgr_btn_l_side.gif) repeat-y top left
- }
-
-.btn-r-side {
- background: #efefef url(../img/bgr_btn_r_side.gif) repeat-y top right
- }
-
-.btn-bot {
- background: #efefef url(../img/bgr_btn_bot.gif) repeat-x top left
- }
-
-.btn-text, .btn-text-sm {
- background: #efefef url(../img/bgr_btn_top.gif) repeat-x top left;
- font: bold 14px arial, sans-serif;
- letter-spacing: -1px;
- color: #1F569A;
- padding-top: 13px
- }
-.btn-text-sm {
- font: bold 11px arial, sans-serif;
- letter-spacing: 0px;
- padding-top: 14px
- }
-.btn-text-sm a, .btn-text-sm a:hover {
- text-decoration: none
- }
-.btn-text a, .btn-text a:hover {
- text-decoration: none
- }
-/*--- FORUM GRAPHIC BUTTON \\---*/
-
-/*--- POST TEXT SMALL GRAPHIC BUTTON //---*/
-.btn-sm-l-side {
- background: #efefef url(../img/bgr_btn_sm_l_side.gif) repeat-y top left
- }
-
-.btn-sm-r-side {
- background: #efefef url(../img/bgr_btn_sm_r_side.gif) repeat-y top right
- }
-
-.btn-sm-bot {
- background: #efefef url(../img/bgr_btn_sm_bot.gif) repeat-x top left
- }
-
-.btn-sm-text {
- background: url(../img/bgr_btn_sm_top.gif) repeat-x top left;
- font: 10px arial, sans-serif;
- color: #153C6A;
- padding-top: 15px
- }
-.btn-sm-text a {
- color: #153C6A;
- text-decoration: none
- }
-.btn-sm-text a:hover {
- text-decoration: none
- }
-/*--- POST TEXT SMALL GRAPHIC BUTTON \\---*/
-
-/*--- POST TEXT SMALL GRAPHIC BUTTON ALTERNATIVE ROW //---*/
-.btn-sm-text-alt {
- background: #efefef url(../img/bgr_btn_sm_top_alt.gif) repeat-x top left;
- font: 10px arial, sans-serif;
- color: #153C6A;
- padding-top: 15px
- }
-.btn-sm-text-alt a {
- color: #153C6A;
- text-decoration: none
- }
-.btn-sm-text-alt a:hover {
- text-decoration: none
- }
-/*--- POST TEXT SMALL GRAPHIC BUTTON \\---*/
-
Property changes on: trunk/themes/default2007/inbulletin/inc/styles.css
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.9
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/inc/script.js
===================================================================
Index: trunk/themes/default2007/inbulletin/inc/script.js
===================================================================
--- trunk/themes/default2007/inbulletin/inc/script.js (revision 12824)
+++ trunk/themes/default2007/inbulletin/inc/script.js (nonexistent)
Property changes on: trunk/themes/default2007/inbulletin/inc/script.js
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/btn_corn2.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/btn_corn2.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/btn_sm_corn2.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/btn_sm_corn2.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/btn_sm_corn1.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/btn_sm_corn1.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/bgr_btn_l_side.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/bgr_btn_l_side.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/btn_modify.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/btn_modify.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/btn_add_favorites.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/btn_add_favorites.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/bgr_btn_bot.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/bgr_btn_bot.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/bgr_btn_sm_top_alt.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/bgr_btn_sm_top_alt.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/btn_sm_quoted.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/btn_sm_quoted.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/btn_rate.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/btn_rate.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/bgr_btn_sm_l_side.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/bgr_btn_sm_l_side.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/bgr_btn_sm_r_side.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/bgr_btn_sm_r_side.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/bgr_btn_r_side.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/bgr_btn_r_side.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/bgr_btn_sm_bot.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/bgr_btn_sm_bot.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/bgr_btn_sm_top.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/bgr_btn_sm_top.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/btn_corn2_.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/btn_corn2_.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/btn_noicon.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/btn_noicon.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/btn_sm_delete.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/btn_sm_delete.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/btn_sm_modify.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/btn_sm_modify.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/btn_favorites.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/btn_favorites.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/menu_topics.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/menu_topics.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/btn_reply.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/btn_reply.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/bgr_btn_top.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/bgr_btn_top.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/icon_post_1.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/icon_post_1.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.2
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/btn_sm_corn2_.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/btn_sm_corn2_.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/btn_threaded.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/btn_threaded.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/themes/default2007/inbulletin/img/btn_corn1.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inbulletin/img/btn_corn1.gif
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.1
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property

Event Timeline