Page MenuHomeIn-Portal Phabricator

in-link
No OneTemporary

File Metadata

Created
Tue, May 20, 4:34 AM
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-link/searchaction.php
===================================================================
--- trunk/in-link/searchaction.php (revision 12828)
+++ trunk/in-link/searchaction.php (nonexistent)
@@ -1,60 +0,0 @@
-<?php
-// VERMUT
- /* action handlers for listview searches */
- switch($Action)
- {
- case "l_rel_search": /* link relations list */
- $searchlist = trim($objSession->GetVariable("LinkRelSearchWord"));
- if(strlen($searchlist)>0)
- $searchlist = ",";
- $searchlist = $_POST["list_search"];
- $objSession->SetVariable("LinkRelSearchWord",$searchlist);
- $objSession->SetVariable("Page_Relations",1);
- break;
- case "l_rel_search_reset": /* link relations list */
- $objSession->SetVariable("LinkRelSearchWord","");
- break;
-
- case "l_review_search": /* link review list */
- $searchlist = trim($objSession->GetVariable("LinkRevSearchWord"));
- if(strlen($searchlist)>0)
- $searchlist = ",";
- $searchlist = $_POST["list_search"];
- $objSession->SetVariable("LinkRevSearchWord",$searchlist);
- $objSession->SetVariable("Page_Reviews",1);
- break;
- case "l_review_search_reset": /* category relations list */
- $objSession->SetVariable("LinkRevSearchWord","");
-
- case "l_vallist_search": /* val link list */
- $searchlist = trim($objSession->GetVariable("ValiLinkSearchWord"));
- if(strlen($searchlist)>0)
- $searchlist = ",";
- $searchlist = $_POST["list_search"];
- $objSession->SetVariable("ValiLinkSearchWord",$searchlist);
- $objSession->SetVariable("Page_ValidationList",1);
- break;
- case "l_vallist_search_reset": /* val link list */
- $objSession->SetVariable("ValiLinkSearchWord","");
- break;
-
- // Advanced View Search Actions
- case 'l_adv_view_search':
- SaveAdvView_SearchWord('l');
- break;
-
- case 'l_adv_view_search_reset':
- ResetAdvView_SearchWord('l');
- break;
-
- // Reviews
- case 'l_review_direct_search':
- SaveAdvView_SearchWord('l','_review_direct_search');
- break;
-
- case 'l_review_direct_search_reset':
- ResetAdvView_SearchWord('l','_review_direct_search');
- break;
-
- }
-?>
Property changes on: trunk/in-link/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-link/admin/install.php
===================================================================
--- trunk/in-link/admin/install.php (revision 12828)
+++ trunk/in-link/admin/install.php (nonexistent)
@@ -1,85 +0,0 @@
-<?php
-
- $MODULE_NAME = 'in-link'; // define current module name
-
- // new startup: begin
- if (!defined('REL_PATH'))
- {
- define('REL_PATH', defined('IS_INSTALL') && IS_INSTALL ? 'admin' : 'in-link/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';
- 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 => 'Directory', 'AutomaticFilename' => 1, 'Filename' => 'Directory',
- $description_field => 'Link Directory', 'Status' => 1, 'ParentId' => 0,
- 'CategoryTemplate' => 'inlink/index', 'CachedCategoryTemplate' => 'inlink/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('{LinkCatId}', $cat_id, $sql[$x]);
- }
- RunSQLText($ado, $sql);
-
- $sql = 'SELECT Version FROM '.TABLE_PREFIX.'Modules WHERE Name = '.$ado->qstr('In-Link');
- $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-Link', $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_l_ItemTemplate', 'inlink/detail');
- $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-Link', $cat_id);
-
- $inp_cat =& $objCatList->GetCategory($cat_id);
- $inp_cat->UpdateCachedPath();
- $inp_cat->UpdateACL();
-
- finalizeModuleInstall($MODULE_NAME);
-
-?>
Property changes on: trunk/in-link/admin/install.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-link/admin/templates/link_tab_element.tpl
===================================================================
--- trunk/in-link/admin/templates/link_tab_element.tpl (revision 12828)
+++ trunk/in-link/admin/templates/link_tab_element.tpl (nonexistent)
@@ -1,17 +0,0 @@
-<td>
- <div inportalType="links">
- <input type=checkbox value="<inp:link _field="id" />" name=linklist[]>
- <img src="<inp:link _field="admin_icon"/>">
- <span class="priority"><sup><inp:link _field="priority"/></sup></span>
- <a class=link href="<inp:link _field="redirect" />" target=_blank><inp:link _field="name"/></a>
- <span class="link_pick"><inp:link _field="pick"/></span>
- <span class="link_pop"><inp:link _field="pop"/></span>
- <span class="link_new"><inp:link _field="new"/></span>
- <span class="link_pop"><inp:link _field="hot"/></span><br>
- <div style="padding-left:3px">
- <span class="link_desc"><inp:link _field="description" _MaxLength="200" /></span><br>
- <span class="link_detail">(Added: <inp:link _field="date"/> / Hits: <inp:link _field="hits"/> / Rating: <inp:link _field="rating"/> / Votes: <inp:link _field="votes"/> / Reviews: <inp:link _field="reviews"/>) </span>
- </div>
- <br>
- </div>
-</td>
\ No newline at end of file
Property changes on: trunk/in-link/admin/templates/link_tab_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-link/admin/templates/link_element.tpl
===================================================================
--- trunk/in-link/admin/templates/link_element.tpl (revision 12828)
+++ trunk/in-link/admin/templates/link_element.tpl (nonexistent)
@@ -1,17 +0,0 @@
-<tr><td>
- <div inportalType="links">
- <input type=checkbox value="<inp:link _field="id" />" name=linklist[]>
- <img src="<inp:link _field="admin_icon"/>">
- <span class="priority"><sup><inp:link _field="priority"/></sup></span>
- <a class=link href="<inp:link _field="redirect" />" target=_blank><inp:link _field="name"/></a>
- <span class="link_pick"><inp:link _field="pick"/></span>
- <span class="link_pop"><inp:link _field="pop"/></span>
- <span class="link_new"><inp:link _field="new"/></span>
- <span class="link_pop"><inp:link _field="hot"/></span><br>
- <div style="padding-left:3px">
- <span class="link_desc"><inp:link _field="description" _MaxLength="200" /></span><br>
- <span class="link_detail">(Added: <inp:link _field="date"/> / Hits: <inp:link _field="hits"/> / Rating: <inp:link _field="rating"/> / Votes: <inp:link _field="votes"/> / Reviews: <inp:link _field="reviews"/>) </span>
- </div>
- <br>
- </div></td>
-</tr>
\ No newline at end of file
Property changes on: trunk/in-link/admin/templates/link_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/in-link/admin/templates/link_select_element_radio.tpl
===================================================================
--- trunk/in-link/admin/templates/link_select_element_radio.tpl (revision 12828)
+++ trunk/in-link/admin/templates/link_select_element_radio.tpl (nonexistent)
@@ -1,11 +0,0 @@
-<tr><td>
- <div inportalType="links">
- <input type="checkbox" value="<inp:link _field="resourceid"/>" name="linklist[]" ItemType="4">
- <img src="<inp:link _field="admin_icon"/>">
- <a class=link href="<inp:link _field="redirect"/>" target=_blank><inp:link _field="name"/></a>
- <span class="link_pick"><inp:link _field="pick"/></span>
- <span class="link_new"><inp:link _field="new"/></span><br>
- <span class="link_desc"><inp:link _field="desc"/></span><br>
- <span class="link_detail"> (Added: <inp:link _field="date"/> Hits: <inp:link _field="hits"/> Rating: <inp:link _field="rating"/> Votes: <inp:link _field="votes"/> Reviews: <inp:link _field="reviews"/>) </span>
- </div></td>
-</tr>
\ No newline at end of file
Property changes on: trunk/in-link/admin/templates/link_select_element_radio.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-link/admin/templates/link_tab_element_av.tpl
===================================================================
--- trunk/in-link/admin/templates/link_tab_element_av.tpl (revision 12828)
+++ trunk/in-link/admin/templates/link_tab_element_av.tpl (nonexistent)
@@ -1,18 +0,0 @@
-<td>
- <div inportalType="links">
- <input type=checkbox value="<inp:link _field="id" />" name=linklist[]>
- <img src="<inp:link _field="admin_icon"/>">
- <span class="priority"><sup><inp:link _field="priority"/></sup></span>
- <a class=link href="<inp:link _field="redirect" />" target=_blank><inp:link _field="name"/></a>
- <span class="link_pick"><inp:link _field="pick"/></span>
- <span class="link_pop"><inp:link _field="pop"/></span>
- <span class="link_new"><inp:link _field="new"/></span>
- <span class="link_pop"><inp:link _field="hot"/></span><br>
- <div style="padding-left:3px">
- <span class="link_desc"><inp:link _field="description" _MaxLength="200" /></span><br>
- <span class="link_detail"><inp:m_language _Phrase="la_category" />: <a href="<inp:link _Field="PrimaryCategoryLink" />"><inp:link _field="primarycategory" /></a> </span><br>
- <span class="link_detail">(Added: <inp:link _field="date"/> / Hits: <inp:link _field="hits"/> / Rating: <inp:link _field="rating"/> / Votes: <inp:link _field="votes"/> / Reviews: <inp:link _field="reviews"/>) </span>
- </div>
- <br>
- </div>
-</td>
\ No newline at end of file
Property changes on: trunk/in-link/admin/templates/link_tab_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-link/admin/templates/link_select_element.tpl
===================================================================
--- trunk/in-link/admin/templates/link_select_element.tpl (revision 12828)
+++ trunk/in-link/admin/templates/link_select_element.tpl (nonexistent)
@@ -1,11 +0,0 @@
-<tr><td>
- <div inportalType="links">
- <input type=checkbox value="<inp:link _field="resourceid"/>" name="linklist[]" ItemType="4">
- <img src="<inp:link _field="admin_icon"/>">
- <a class=link href="<inp:link _field="redirect"/>" target=_blank><inp:link _field="name"/></a>
- <span class="link_pick"><inp:link _field="pick"/></span>
- <span class="link_new"><inp:link _field="new"/></span><br>
- <span class="link_desc"><inp:link _field="desc"/></span><br>
- <span class="link_detail"> (Added: <inp:link _field="date"/> Hits: <inp:link _field="hits"/> Rating: <inp:link _field="rating"/> Votes: <inp:link _field="votes"/> Reviews: <inp:link _field="reviews"/>) </span>
- </div></td>
-</tr>
\ No newline at end of file
Property changes on: trunk/in-link/admin/templates/link_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-link/admin/templates/link_review_element.tpl
===================================================================
--- trunk/in-link/admin/templates/link_review_element.tpl (revision 12828)
+++ trunk/in-link/admin/templates/link_review_element.tpl (nonexistent)
@@ -1,13 +0,0 @@
-<td>
- <div inportalType="link_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="link_detail"><inp:m_language _Phrase="la_link_reviewed" />: <a href="<inp:review _Field="ItemLink" />"><inp:review _field="ItemName" /></a> </span><br>
- <span class="link_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-link/admin/templates/link_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-link/admin/searchaction.php
===================================================================
--- trunk/in-link/admin/searchaction.php (revision 12828)
+++ trunk/in-link/admin/searchaction.php (nonexistent)
@@ -1,22 +0,0 @@
-<?php
- /* action handlers for listview searches */
-
- switch($Action)
- {
-
- case "l_rel_search": /* category relations list */
- $searchlist = trim($objSession->GetVariable("LinkRelSearchWord"));
- if(strlen($searchlist)>0)
- $searchlist .= ",";
- $searchlist .= $_POST["list_search"];
- $objSession->SetVariable("LinkRelSearchWord",$searchlist);
- $objSession->SetVariable("Page_Relations",1);
- break;
- case "l_rel_search_reset": /* category relations list */
- $objSession->SetVariable("LinkRelSearchWord","");
- break;
-
-
-
- }
-?>
Property changes on: trunk/in-link/admin/searchaction.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-link/admin/addlink_reviews.php
===================================================================
--- trunk/in-link/admin/addlink_reviews.php (revision 12828)
+++ trunk/in-link/admin/addlink_reviews.php (nonexistent)
@@ -1,320 +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-link/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-link/";
-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 clsLinkList();
-$objEditItems->SourceTable = $objSession->GetEditTable("Link");
-$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-link:editlink_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('link','".$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('link','".$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","link");
-
-//Display header
-$sec = $objSections->GetSection($section);
-if ( isset($en_prev) || isset($en_next) )
-{
- $url = $RootUrl."/in-link/admin/addlink_reviews.php";
- $StatusField = "LinkEditStatus";
- $form = "link";
- 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-link/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", true);
-$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('addlink_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_app","la_ToolTip_Approve","#","if (RevChecks.itemChecked()) swap('rev_app','toolbar/tool_approve_f2.gif');",
- "if (RevChecks.itemChecked()) swap('rev_app', 'toolbar/tool_approve.gif');","if (RevChecks.itemChecked()) RevChecks.check_submit('addlink_reviews', 'm_review_approve');",
- "tool_approve.gif",FALSE,TRUE);
-$listImages[] = "RevChecks.addImage('rev_app','$imagesURL/toolbar/tool_approve.gif','$imagesURL/toolbar/tool_approve_f3.gif',1); ";
-
-$objListToolBar->Add("rev_deny","la_ToolTip_Deny","#","if (RevChecks.itemChecked()) swap('rev_deny','toolbar/tool_decline_f2.gif');",
- "if (RevChecks.itemChecked()) swap('rev_deny', 'toolbar/tool_decline.gif');","if (RevChecks.itemChecked()) RevChecks.check_submit('addlink_reviews', 'm_review_deny');",
- "tool_deny.gif",FALSE,TRUE);
-$listImages[] = "RevChecks.addImage('rev_deny','$imagesURL/toolbar/tool_decline.gif','$imagesURL/toolbar/tool_decline_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('addlink_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('addlink_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("LinkRev_View");
-
-if(!is_numeric($UserView))
-{
- $UserView = $Bit_All; //Set all bits ON
- $UserFilter = "";
-}
-
-$filter = false; // always initialize variables before use
-if($objSession->GetVariable("LinkRevSearchWord") != '') {
- $filter = true;
-}
-else {
- if ($UserView != $Bit_All) {
- $filter = true;
- }
-}
-
-$title = prompt_language("la_Text_Editing")." ".prompt_language("la_Text_Link")." '".$c->Get("Name")."' - ".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 ="link" name="link" 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, r.CreatedById as ReviewerId, ";
-$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("LinkRevSearchWord");
-
-if(strlen($SearchWords))
-{
- $where = $objReviewList->AdminSearchWhereClause($SearchWords);
-}
-else
- $where = "";
-
-if(strlen($where))
- $sql .= " AND ($where) ";
-
-if(strlen(trim($objConfig->Get("LinkReview_LV_Sortfield"))))
-{
- $order = " ORDER BY Priority DESC, ".$objConfig->Get("LinkReview_LV_Sortfield")." ".$objConfig->Get("LinkReview_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("LinkReview_LV_Sortorder");
-if(!strlen($SortOrder))
- $SortOrder = "desc";
-
-$SortField = $objConfig->Get("LinkReview_LV_Sortfield");
-if(!strlen($SortField))
- $SortField = "CreatedOn";
-
-for($i=0;$i<count($objReviewList->Items); $i++)
-{
- if($objReviewList->Items[$i]->Get("ReviewerId")==-1)
- {
- $objReviewList->Items[$i]->Set("Reviewer","root");
- }
- $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";
-
-
-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%\"","LinkReview_LV_Sortfield","LinkReview_LV_Sortorder","ReviewText");
-$objListView->ColumnHeaders->Add("Reviewer",admin_language("la_Prompt_ReviewedBy"),1,0,$order,"width=\"20%\"","LinkReview_LV_Sortfield","LinkReview_LV_Sortorder","Reviewer");
-$objListView->ColumnHeaders->Add("DatePosted",admin_language("la_prompt_CreatedOn"),1,0,$order,"width=\"20%\"","LinkReview_LV_Sortfield","LinkReview_LV_Sortorder","CreatedOn");
-$objListView->ColumnHeaders->Add("ReviewStatus",admin_language("la_prompt_Status"),1,0,$order,"width=\"10%\"","LinkReview_LV_Sortfield","LinkReview_LV_Sortorder","ReviewStatus");
-$objListView->ColumnHeaders->SetSort($objConfig->Get("LinkReview_LV_Sortfield"), $objConfig->Get("LinkReview_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="LinkEditStatus" 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-link/admin/addlink_reviews.php
___________________________________________________________________
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-link/admin/import/status.php
===================================================================
--- trunk/in-link/admin/import/status.php (revision 12828)
+++ trunk/in-link/admin/import/status.php (nonexistent)
@@ -1,201 +0,0 @@
-<?php #status display
-#require_once ($pathtoroot."admin/include/elements.php");
-
-global $title;
-
- function status($start,$total,$section)
- {
- global $objSession;
-
- if ($start != 0 && $total>0)
- $percent=round(($start/$total)*100);
- else
- $percent=0;
- switch ($section)
- {
- case "users":
- $section = "Users";
- $uservalue=$percent;
- $catvalue=0;
- $linksvalue=0;
- $customvalue=0;
- $relcatvalue=0;
- break;
- case "cats":
- $section = "Categories";
- $uservalue=100;
- $catvalue=$percent;
- $linksvalue=0;
- $customvalue=0;
- $relcatvalue=0;
- break;
- case "links":
- $section = "Links";
- $uservalue=100;
- $catvalue=100;
- $linksvalue=$percent;
- $customvalue=0;
- $relcatvalue=0;
- break;
- case "custom":
- $section = "Custom Fields";
- $uservalue=100;
- $catvalue=100;
- $linksvalue=100;
- $customvalue=$percent;
- $relcatvalue=0;
- break;
- case "relcat":
- $section = "Relative Categories";
- $uservalue=100;
- $catvalue=100;
- $linksvalue=100;
- $customvalue=100;
- $relcatvalue=$percent;
- break;
- case "terminate":
- $section = "Complete";
- $uservalue=100;
- $catvalue=100;
- $linksvalue=100;
- $customvalue=100;
- $relcatvalue=100;
- #callexit();
- break;
- default:
- $section = "Initializing";
- $uservalue=0;
- $catvalue=0;
- $linksvalue=0;
- $customvalue=0;
- $relcatvalue=0;
- break;
- }
- displayheader();
- displaytablestart();
- displayrow1("<b>Importing In-Link to In-Portal:</b>"," ");
- displayrow2("Users:",$uservalue."%");
- displayrow1("Categories:",$catvalue."%");
- displayrow2("Links (Including Reviews and Images):",$linksvalue."%");
- displayrow1("Custom Fields:",$customvalue."%");
- displayrow2("Category Relations:",$relcatvalue."%");
- displayrow1("Importing:",$section);
- displaytableover();
- displaytablestart();
- displaybar($percent);
- displaytableover();
- displayfooter();
-
- if ($section == "Complete") {
- $ado = &GetADODBConnection();
- $TablePrefix = "ses_".$objSession->GetSessionKey()."_".GetTablePrefix();
-
- $query="DROP TABLE IF EXISTS ".$TablePrefix."import, ".$TablePrefix."importcat";
- $ado->Execute($query);
- }
- }
- function callexit() #In case importing is over
- {
- /* global $pathtoroot;
- require_once ($pathtoroot."admin/import/exit.php");
- displaytablestart();
- displayrow1("<b>Importing In-Link to In-Portal:</b>"," ");
- displayrow2("Users:",$uservalue."%");
- displayrow1("Categories:",$catvalue."%");
- displayrow2("Links (Including Reviews and Images):",$linksvalue."%");
- displayrow1("Custom Fields:",$customvalue."%");
- displayrow2("Category Relations:",$relcatvalue."%");
- displayrow1("Importing:",$section);
- displaytableover();
- displaytablestart();
- displaybar($percent);
- displaytableover();
- displayfooter();
-*/
- }
- function displayheader()
- {
- global $title;
-
- int_header(null,NULL,$title);
- //echo '<HTML>';
- //echo '<HEAD>';
- //echo '<title>Importing In-Link to In-Portal </title>';
- //echo '<link rel="stylesheet" type="text/css" href="../include/style.css">';
- //echo '</HEAD>';
- //echo '<body topmargin="8" leftmargin="8" marginheight="8" marginwidth="8" bgcolor="#FFFFFF">';
- }
- function displaytablestart()
- {
- echo '<table width="100%" border="0" cellspacing="0" cellpadding="4" class="tableborder_full">';
-
- }
- function displaytableover()
- {
- echo "</TABLE>";
- }
- function displayfooter()
- {
- echo "</BODY>";
- echo "</HTML>";
- }
- function displayrow1($name,$value)
- {
- echo '<TR class="table-color1"><TD width="70%" valign=\"top\"><span class=\"text\">';
- echo $name;
- echo '</span></td><TD width="30%" valign="top">';
- echo $value;
- echo '</td></tr>';
- }
- function displayrow2($name,$value)
- {
- echo '<TR class="table-color2"><TD width="70%" valign=\"top\"><span class=\"text\">';
- echo $name;
- echo '</span></td><TD width="30%" valign="top">';
- echo $value;
- echo '</td></tr>';
- }
-
- function displaybar($percent)
- {
- global $rootURL, $title;
-
- $o = "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"4\" class=\"tableborder\">";
-
- echo "\n";
- $o .= int_subsection_title_ret(admin_language("la_performing_import")." - ".$percent."%");
- $o .= "<TR><TD align=\"middle\"><br />";
- $o .= " <TABLE CLASS=\"tableborder_full\" width=\"75%\">";
- $o .=" <TR border=1><TD width=\"".$percent."%\" STYLE=\"background:url('".$rootURL."admin/images/progress_bar_segment.gif');\">&nbsp;</TD>";
- $comp_pct = 100-$percent;
- $o .= " <TD bgcolor=#FFFFFF width=\"".$comp_pct."%\"></TD></TR>";
- $o .= " </TABLE>";
- //$o .= " <BR /><input type=button VALUE=\"".admin_language("la_Cancel")."\" CLASS=\"button\" ONCLICK=\"document.location='".$CancelURL."';\">";
- echo $o."\n";
- echo "</TD></TR></TABLE>";
-
-/* if ($percent == 0)
- {
- echo "<TR>";
- echo "<TD BGCOLOR=\"#FFFFFF\" width=\"100%\" >$percent";
- echo "%</td></TR>";
- }
- else if ($percent < 60)
- {
- echo "<TR><TD BGCOLOR=\"#4682B2\" width=\"".$percent."%\" >";
- $row2 = 100-$percent;
- echo "</td> <TD BGCOLOR=\"#FFFFFF\" width=\"".$row2."%\" > $percent";
- echo "%</td></TR>";
- }
- else if ($percent == 100)
- {
- echo "<TR><TD BGCOLOR=\"#4682B2\" align=\"right\" width=\"100%\" ><FONT COLOR=\"#FFFFFF\">$percent%</FONT></td>";
- }
- else
- {
- echo "<TR><TD BGCOLOR=\"#4682B2\" align=\"right\" width=\"".$percent."%\" ><FONT COLOR=\"#FFFFFF\">$percent%</FONT>";
- $row2 = 100-$percent;
- echo "</td> <TD BGCOLOR=\"#FFFFFF\" width=\"".$row2."%\" ></td></TR>";
- }*/
- }
-?>
\ No newline at end of file
Property changes on: trunk/in-link/admin/import/status.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-link/admin/import/inlink_import.php
===================================================================
--- trunk/in-link/admin/import/inlink_import.php (revision 12828)
+++ trunk/in-link/admin/import/inlink_import.php (nonexistent)
@@ -1,919 +0,0 @@
-<?php
-#import script
-#taking care of actual importing from in-link db to in-portal db
-
-// new startup: begin
-define('REL_PATH', 'in-link/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
-
-$root_cat_id = $objSession->GetVariable('import_category_id');
-
-if ( isset($_POST['Action']) && $_POST['Action'] == 'Import')
-{
- $objSession->SetVariable('import_user_admin',$_POST['user_admin']);
- $objSession->SetVariable('import_user_regular',$_POST['user_regular']);
- $objSession->SetVariable('image_name',$_POST['link_image']);
-
- $objSession->SetVariable('importtodo','initialize');
- $objSession->SetVariable('importstart',0);
- $objSession->SetVariable('importtotal',0);
-
- if((int)$_POST['init_cat'] > 0)
- {
- $c = $objCatList->GetItemByField('CategoryId', $root_cat_id);
- $c->UpdateACL();
- $c->UpdateCachedPath();
- }
-
-
-}
-$allgroups = $objGroups->GetAllGroupList();
-
-// connection related
-$inlink_sql_type = $objSession->GetVariable('import_sql_type');
-$inlink_server = $objSession->GetVariable('import_server');
-$inlink_db = $objSession->GetVariable('import_db');
-$inlink_user = $objSession->GetVariable('import_user');
-$inlink_pass = $objSession->GetVariable('import_pass');
-
-// import related
-$user_admin = $objSession->GetVariable('user_admin_values');
-$user_regular = $objSession->GetVariable('user_regular_values');
-
-if( !isset($c) || !is_object($c) && $root_cat_id )
-$c = $objCatList->GetItemByField('CategoryId', $root_cat_id);
-
-$image_name=$objSession->GetVariable('image_name');
-$start = $objSession->GetVariable('importstart');
-
-$init_cat = $root_cat_id ? $c->Get('CategoryId') : 0;
-
-//In-Portal
-$portalconn = &GetADODBConnection();
-
-if( $init_cat == 0)
-{
- /*$prefix = GetTablePrefix();
- $sql = 'SELECT ACL
- FROM '.$prefix.'PermCache pc, '.$prefix.'Permissions p
- WHERE p.PermissionId = pc.PermId AND p.CategoryId = 0 AND p.Permission = \'CATEGORY.VIEW\'';
- $acl = $portalconn->GetCol($sql);*/
- $acl = Array(0 => 0);
-}
-else
-{
- $acl = explode(',',$c->GetACL('CATEGORY.VIEW'));
-}
-
-//IN-LINK connection
-$linkconn = &ADONewConnection($inlink_sql_type);
-$linkconn->NConnect($inlink_server, $inlink_user, $inlink_pass, $inlink_db);
-
-if(!$linkconn)
-{
- $ret = "Database connection failed. DB Type: $sql_type, DB Server: $inlink_server, DB User: $inlink_user, DB Name: $inlink_db";
- $ret .= $linkconn->ErrorMsg();
- $application =& kApplication::Instance();
- $application->ApplicationDie($ret);
-}
-
-//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');
-//Set Section
-$section = 'in-portal:inlink_inport';
-//Set Environment Variable
-$envar = 'env=' . BuildEnv();
-
-$sec = $objSections->GetSection($section);
-$objCatToolBar = new clsToolBar();
-
-$title = admin_language('la_performing_import').' - '.admin_language('la_Step').' 4';
-
-
-
-$TablePrefix = 'ses_'.$objSession->GetSessionKey().'_'.GetTablePrefix();
-
-$olddbname=$inlink_db;
-//$newdbname='inportal';
-$newdbname=$g_DBName;
-##############creating a temproary table have to be here
-
-if( GetVar('Action', true) == 'Import' )
-{
- $portalconn->Execute('DROP TABLE IF EXISTS '.$TablePrefix.'import');
- $portalconn->Execute('DROP TABLE IF EXISTS '.$TablePrefix.'importcat');
- $temptable = 'CREATE TABLE '.$TablePrefix.'import (otname varchar(40), oid int(11), ocustomid int(11), oparentid int(11), ntname varchar(40), nid int(11), nrid int(11), npid int(11)) ';
-
- $portalconn->Execute($temptable);
- $cattable ='CREATE TABLE '.$TablePrefix.'importcat (op int(11), np int(11), flag int(11)) ';
- $portalconn->Execute($cattable);
- $newcat = 1;
-}
-
-global $admin, $pathtoroot;
-
-require_once ($pathtoroot.'in-link/'.$admin.'/import/status.php'); #for status bar and all visual effects
-
-$todo= $objSession->GetVariable('importtodo');
-
-$total = $objSession->GetVariable('importtotal');
-switch ($todo)
-{
- case 'users':
- status($start, $total, 'users');
- usersimport();
- //setstart(0,'cats'); #for debugging
- break;
- case 'cats':
- status($start, $total, 'cats');
- catmanager();
- //setstart(0,'links'); #for debugging
- break;
- case 'links':
- status($start, $total, 'links');
- linksimport();
- //setstart(0,'custom');#For debugging only
- break;
- case 'custom':
- status($start, $total, 'custom');
-
- customimport();
- //setstart(0,'relcat');#for debuggin only
- break;
-
- case 'relcat':
- status($start, $total, 'relcat');
- relcatimport();
- //setstart(0,'terminate'); #for debuggin only
- break;
- case 'terminate':
- terminator();
- status(1,1,'terminate');
- break;
- default:
- status(0,0,'initializing');
- setstart(0,'users'); #to start importing from users first
- break;
-}
-
-function terminator()
-{
- global $portalconn, $TablePrefix, $adminURL, $objSession;
- $query='DROP TABLE IF EXISTS '.$TablePrefix.'import, '.$TablePrefix.'importcat';
- $portalconn->Execute($query);
-
- $objSession->SetVariable('PermCache_UpdateRequired', 1);
- $objSession->SetVariable('ReturnScript', 'index.php'); // redirect to catalog when finished
- m_ParseEnv(); // sets default values to "m" prefix, because it is not passed through import anymore
-
- $application =& kApplication::Instance();
- $finish_url = $application->HREF('categories/cache_updater', '', Array('continue' => 1, 'no_amp' => 1), 'index.php');
- echo '<script>window.location.href = "'.$finish_url.'";</script>';
-}
-
-function reload()
-{
- //global $newurl;
- print '<script language="javascript">' ;
- print ' setTimeout("location.href=location.href",40);';
- print ' </script>';
-}
-function setstart($mystart, $part)
-{
- global $objSession;
-
- $objSession->SetVariable('importstart',$mystart);
- $objSession->SetVariable('importtodo',$part);
- reload();
-}
-function settotal($total)
-{
- global $objSession;
- $objSession->SetVariable('importtotal',$total);
-}
-
-//users import from inlink to inportal
-function usersimport()
-{
- global $objUsers, $objSession, $linkconn, $portalconn, $olddbname,
- $user_admin,$objGroups, $user_regular, $start, $TablePrefix;
-
- $counter = 0;
- $limit = 350;
- $oldtablename = 'inl_users';
- $newtablename = $objUsers->SourceTable;
- if ($start == 0)
- {
- $query='select count(*) as NumUsers from inl_users';
- $row =$linkconn->Execute($query);
- if ($row && !$row->EOF)
- {
- settotal($row->fields['NumUsers']);
-
- }
- }
- $query="select * from inl_users LIMIT $start, $limit";
- $row =$linkconn->Execute($query);
- while($row && !$row->EOF)
- {
- $counter++; #needed to know when close to time out
-
- if ($row->fields['user_name'] != 'root') {
- $olduserid=$row->fields['user_id'];
- //$Login, $Password, $Email, $CreatedOn, $FirstName='', $LastName='', $Status=2,
- // $Phone='', $Street='', $City='', $State='', $Zip='', $Country=''
-
- if($row->fields['user_status']==1)
- {
- $Status=1;
- }
- else
- {
- if($row->fields['user_pend']==0)
- {
- $Status=2;
- }
- else
- $Status=0;
- }
- $u = $objUsers->Add_User( $row->fields['user_name'], $row->fields['user_pass'], $row->fields['email'],
- $row->fields['user_date'], $row->fields['first'], $row->fields['last'],
- $Status);
- $oldid=$row->fields['user_id'];
- $oldcustom = $row->fields['user_cust'];
- $newid = $u->Get('PortalUserId');
- $resid = $u->Get('ResourceId');
- #adding user to usergroup
-
- $userpermission = $row->fields['user_perm'];
- if ($userpermission==2 || $userpermission==1)
- {
- $glist = explode(',',$user_admin);
- $Primary=1;
- for($i=0;$i<count($glist);$i++)
- {
- $group=$objGroups->GetItem($glist[$i]);
- $group->AddUser($newid,$Primary,false);
- $Primary = 0;
- }
- }
- else
- {
- $glist = explode(',',$user_regular);
- $Primary=1;
- for($i=0;$i<count($glist);$i++)
- {
- $group=$objGroups->GetItem($glist[$i]);
- $group->AddUser($newid,$Primary,false);
- $Primary = 0;
- }
- }
- //$group=$objGroups->GetItem($g);
- //$group->AddUser($newid,1);
-
- #inserting values to the temproary table
- $totemp = 'INSERT INTO '.$TablePrefix.'import (otname,oid,ocustomid,oparentid,ntname,nid,nrid,npid) ';
- $tovalues= " VALUES ('$oldtablename',$olduserid,$oldcustom,0,'$newtablename', $newid, $resid, 0 )";
- $totemp=$totemp.$tovalues;
- $portalconn->Execute($totemp);
- }
- $row->moveNext();
- }
- if ($counter == $limit)
- {
- setstart($start+$limit, 'users');
- }
- else
- setstart(0,'cats');
-
-}
-//END OF USERS IMPORT ^^^^^^^^^^^^^^^^^^^^^
-
-//Categories Import
-function catmanager()
-{
- global $portalconn, $init_cat,$start,$TablePrefix;
- if ($start == 0)
- {
- $counter = catimport(0,$init_cat);
- setstart($counter,'cats');
- $portalconn->Execute('UPDATE '.$TablePrefix.'importcat SET flag = 1 WHERE np = '.$init_cat);
- }
- else
- {
-
- $query='select * from '.$TablePrefix.'importcat WHERE flag=0 LIMIT 0,1';
- $row =$portalconn->Execute($query);
- if($row && !$row->EOF)
- {
- $oldid= $row->fields['op'];
- $newid = $row->fields['np'];
- $counter= catimport($oldid,$newid);
- $query2='UPDATE '.$TablePrefix.'importcat SET flag = 1 WHERE op = '.$oldid.' AND np = '.$newid;
- $portalconn->Execute($query2);
- setstart($counter+$start-1,'cats');
- //$x=5;
- }
- else
- {
- setstart(0,'links');
- }
- }
-}
-#pushes into the quque
-function pushid($op,$np)
-{
- global $linkconn, $portalconn, $TablePrefix;
- $addnew = 'INSERT INTO '.$TablePrefix.'importcat (op,np,flag) VALUES ('.$op.','.$np.',0)';
- $portalconn->Execute($addnew);
-
-}
-function checkifexist($id)
-{
- global $linkconn;
- $addnew = 'select * from inl_cats where cat_sub = '.$id;
- $row =$linkconn->Execute($addnew);
- if ($row && !$row->EOF)
- {
-
- if ($row->fields['cat_id'] !=0)
- {
- return true;
- }
- else
- {
- return false;
- }
- }
- else
- {
- return false;
- }
-}
-#import itself
-function catimport($oldparentid, $parentid)
-{
- global $objCatList, $linkconn, $objUsers, $linkconn, $portalconn,
- $olddbname, $user_admin,$objGroups, $user_regular, $acl,$allgroups,
- $c, $start, $TablePrefix, $init_cat;
- $counter=0;
-
- $objCacheCount = new clsCacheCountList();
- if ($start == 0)
- {
- $query='select count(*) as CatCount from inl_cats';
- $row =$linkconn->Execute($query);
- if ($row && !$row->EOF)
- {
- settotal($row->fields['CatCount']);
- $catcount = $row->fields['CatCount'];
-
- if( is_object($c) )
- {
- $catcount += (int)$c->Get('CachedDescendantCatsQty');
- $c->Set('CachedDescendantCatsQty',$catcount);
- $c->Update();
- }
-
-
- }
- }
-
- $query='select * from inl_cats WHERE cat_sub = '.$oldparentid;
- $oldtablename = 'inl_cats';
- $newtablename = 'Category';
- $row =$linkconn->Execute($query);
- if($row && !$row->EOF)
- {
- $RowCount = $row->NumRows();
- $ResInc = $RowCount;
- $ResourceId = GetNextResourceId($ResInc);
- }
- if($parentid>0)
- {
- $ParentCat = new clsCategory($parentid);
- $Path = $ParentCat->Get('ParentPath');
- }
- else
- {
- global $objConfig;
- $Path = prompt_language( $objConfig->Get('Root_Name') );
- }
- while($row && !$row->EOF)
- {
- $counter++;
-
- if($row->fields['cat_pend'] == 1)
- {
- $Status = 2;
- }
- else
- {
- $Status = ($row->fields['cat_vis'] == 1) ? 1 : 0;
- }
-
- $CreatedById = GetNewID( 'users', $row->fields['cat_id'] );
-
-
- $fields_hash = Array( 'ParentId' => $parentid,
- $objCatList->TitleField => $row->fields['cat_name'],
- $objCatList->DescriptionField => $row->fields['cat_desc'],
- 'CreatedOn' => $row->fields['cat_date'],
- 'EditorsPick' => (int)$row->fields['cat_pick'],
- 'Status' => $Status,
- 'HotItem' => 2,
- 'NewItem' => 2,
- 'PopItem' => 2,
- 'Priority' => 0,
- 'MetaKeywords' => $row->fields['meta_keywords'],
- 'MetaDescription' => $row->fields['meta_desc'],
- 'AutomaticFilename' => 1,
- 'Filename' => '',
- 'CategoryTemplate' => '',
- 'CreatedById' => (int)$CreatedById,
- 'CachedDescendantCatsQty' => (int)$row->fields['cat_cats'],
- 'ResourceId' => $ResourceId,
- );
-
- $cat =& $objCatList->Add_NEW($fields_hash, true);
- $ResourceId++;
-
- $FullPath = $Path.$cat->Get('CategoryId').'|';
- $cat->Set('ParentPath',$FullPath);
- $cat->SetViewPerms('CATEGORY.VIEW',$acl,$allgroups);
- $cat->SetViewPerms('LINK.VIEW',$acl,$allgroups);
- $cat->Update();
- $cat->UpdateCachedPath();
-
- $objCacheCount->CategoryId= $cat->Get('CategoryId');
- $objCacheCount->SetValue(0,0,0,0,0);
-
- $newid = $cat->Get('CategoryId');
- $resid = $cat->Get('ResourceId');
- $oldid = $row->fields['cat_id'];
- $oldcustom = $row->fields['cat_cust'];
- $oldpid = $row->fields['cat_sub'];
-
- #inserting values to the temproary table
- $totemp = 'INSERT INTO '.$TablePrefix.'import (otname,oid,ocustomid,oparentid,ntname,nid,nrid,npid) ';
- $tovalues= " VALUES ('$oldtablename',$oldid,$oldcustom,$oldpid,'$newtablename', $newid, $resid, $parentid )";
- $totemp=$totemp.$tovalues;
- $portalconn->Execute($totemp);
-
- #pushes into the queue
- if(checkifexist($oldid))
- {
- pushid($oldid,$newid);
- }
- $row->moveNext();
- }
- // disable lost+found category (if found one)
- $tmp_cat = $objCatList->GetItemByField('Name','Lost+Found');
- if( is_object($tmp_cat) )
- {
- $tmp_cat->Set('Status',0);
- $tmp_cat->Update();
- }
- return $counter;
-}
-
-//Links Import
-function linksimport()
-{
- global $objLinkList, $init_cat, $linkconn, $portalconn, $olddbname,
- $user_admin,$objGroups, $user_regular, $start, $TablePrefix;
- $limit = 200; #need to change to a higher number like 100, forty is only for debugging
- $counter = 0;
- set_time_limit(0);
- if ($start == 0)
- {
- $query = 'select count(*) as LinkCount from inl_lc';
- $row =$linkconn->Execute($query);
- if ($row && !$row->EOF)
- {
- settotal($row->fields['LinkCount']);
-
- }
- }
-
- // create index - what links are in what categories
- $LimitClause = ' LIMIT '.$start.','.$limit;
- $sql = 'SELECT link_id FROM inl_links ORDER BY link_id'.$LimitClause;
- $LinkIDs = $linkconn->GetCol($sql);
-
- if( count($LinkIDs) > 0 )
- {
- $LinkCatIndex = Array();
- $PendingLinks = Array();
- $sql = "SELECT * FROM inl_lc WHERE link_id IN (%s)";
-
- $rs = $linkconn->Execute( sprintf($sql, implode(',', $LinkIDs) ) );
- while(!$rs->EOF)
- {
- $rec =& $rs->fields;
- if( !isset($PendingLinks[ $rec['link_id'] ]) && $rec['link_pend'] == 1 )
- $PendingLinks[ $rec['link_id'] ] = 1;
-
- $LinkCatIndex[ $rec['link_id'] ][] = $rec['cat_id'];
- $rs->MoveNext();
- }
- }
-
- // get links
- $query = 'SELECT * FROM inl_links ORDER BY link_id'.$LimitClause; // get links info
- $row = $linkconn->Execute($query); // row is recordset here, not easy to figure out by variable name :(
- if($row && !$row->EOF)
- {
- $RowCount = $row->NumRows();
- $ResInc = $RowCount;
- $ResourceId = GetNextResourceId($ResInc);
- }
-
- $get_cat_sql = "SELECT nid FROM %simport WHERE ntname = 'Category' AND oid = %s";
-
- while($row && !$row->EOF)
- {
- $counter++;
- $oldid = $row->fields['link_id'];
- $flag = 1;
-
- $Pending = isset($PendingLinks[$oldid]);
-
- // create new link
-
- #gets the new user id of the user who created a link
- if( !$row->fields['link_user'] )
- $newuserid = -1;
- else
- $newuserid = GetNewID('users', $row->fields['link_user'] );
-
- #adds link to the IN-PORTAL
- $link = new clsLink();
- $Status = ($Pending == 0) ? 1 : 2;
-
- $link->Set( array( 'Name', 'Description', 'Url', 'CreatedOn', 'Status', 'EditorsPick',
- 'NewItem','PopItem','HotItem', 'CreatedById', 'CachedRating',
- 'CachedVotesQty','Hits', 'Priority','Expire'),
- array( $row->fields['link_name'], $row->fields['link_desc'], $row->fields['link_url'], $row->fields['link_date'], $Status,
- $row->fields['link_pick'], 2, 2, 2, $newuserid, (int)$row->fields['link_rating'],
- (int)$row->fields['link_votes'],(int)$row->fields['link_hits'], 0,$row->fields['link_expires']));
-
- $link->Set('ResourceId',$ResourceId);
- $ResourceId++;
- $link->Create();
-
- // add link to desired categories (add 1st category found as primary)
- $cats = $LinkCatIndex[$oldid];
- $PrimaryCat = 1;
- foreach($cats as $OldCatID)
- {
- $categoryid = $portalconn->GetOne( sprintf($get_cat_sql, $TablePrefix, $OldCatID) );
- $link->AddToCategory($categoryid, '', $PrimaryCat);
- if($PrimaryCat)
- {
- $PrimaryCat = 0;
- $oldcatid = $OldCatID;
- }
- }
-
- $newid = $link->Get('LinkId');
- $resid = $link->Get('ResourceId');
- $oldcustom = $row->fields['link_cust'];
- $linkimage = $row->fields['link_image'];
-
- if($linkimage) addimage($resid,$linkimage);
-
- #calls to import reviews
- reviewimport($link,$oldid,$resid);
-
- $totemp = 'INSERT INTO '.$TablePrefix.'import (otname,oid,ocustomid,oparentid,ntname,nid,nrid,npid) ';
- $tovalues= " VALUES ('inl_links',$oldid,$oldcustom,$oldcatid,'link', $newid, $resid, 0 )";
- $totemp = $totemp.$tovalues;
- $portalconn->Execute($totemp);
-
- #prelast while
- $row->moveNext();
- }
-
- if ($counter == $limit)
- {
- setstart($start + $limit, 'links');
- }
- else
- {
- $sql = 'UPDATE '.GetTablePrefix().'CategoryItems SET CategoryId = '.$init_cat.' WHERE CategoryId = 0 AND PrimaryCat = 1';
- $portalconn->Execute($sql);
- setstart(0,'custom');
- }
-
-}
-
-#importing image from the in-link
-function addimage($resourceid, $imageurl)
-{
- global $objImageList, $image_name;
- #echo "<br />IMAGE RESOURCEID: $resourceid IMAGE URL: $imageurl <br />";
- if(!is_object($objImageList))
- $objImageList = new clsImageList();
-
- $LocalImage = 0;
- $LocalThumb = 0;
- if(!strlen($image_name))
- $image_name='inlink_image';
-
- $img = $objImageList->Add($image_name,'',$resourceid, 0, 0,'', $imageurl, 1,0, 1, 0,1);
-}
-#Reviews Import for links
-function reviewimport($myclass,$oldid,$rid)
-{
- global $objCustomFieldList, $linkconn, $portalconn;
- #ITEM AddReview($createdBy,$reviewText,0)
-
- $query='select * from inl_reviews where rev_link = '.$oldid;
- $row =$linkconn->Execute($query);
- while($row && !$row->EOF)
- {
- $oldreviewuser= $row->fields['rev_user'];
- if($oldreviewuser !=0) #meaning was not created by guest
- {
- $newrid = GetNewID('users', $oldreviewuser);
- if ($newrid)
- {
- $temp=$myclass->AddReview($newrid, $row->fields['rev_text'], $row->fields['rev_pend'], '127.0.0.1', 1, 'In-Link', $row->fields['rev_date']);
- }
- else
- {
- $temp=$myclass->AddReview(0, $row->fields['rev_text'], $row->fields['rev_pend'], '127.0.0.1', 1, 'In-Link', $row->fields['rev_date']);
- }
- }
- else #meaning was created by guest
- {
- $temp=$myclass->AddReview(0, $row->fields['rev_text'], $row->fields['rev_pend'], '127.0.0.1', 1, 'In-Link', $row->fields['rev_date']);
- }
- $row->moveNext();
- }
-}
-#HELPER FUNCTION THAT GETS THE NEW ID of the USER
-
-/**
-* @return int
-* @param string $IDType
-* @param int $OldID
-* @desc Returns new id for specified record type ($IDType) with id ($OldID)
-*/
-function GetNewID($IDType, $OldID)
-{
- global $TablePrefix;
- $get_id_sql = "SELECT nid FROM %simport WHERE otname = 'inl_%s' AND oid = %s";
- $db =&GetADODBConnection();
- $id = $db->GetOne( sprintf($get_id_sql, $TablePrefix, $IDType, $OldID) );
- return $id;
-}
-
-//^^^^^^^^^^^^^^^^^^^^^^ABOVE IS LINKS IMPORT
-
-
-#########################################Custom Fields Import
-#create a new CustomField first and then
-#by selecting all and receiving from one record of inl_config the values of cc1,cc2,cc3,cc4,cc5,cc6,uc1,uc2,uc3,uc4,uc5,uc6,lc1,lc2,lc3,lc4,lc5,lc6
-#go through all import table and if ocustomid occures get the row from inl_custom and
-#create CustomMetaData field
-#---------------------
-#Regarding CustomField:
-#FieldName= cc1,cc2 .... from inl_config
-#FieldLabel= value of cc1, cc2 ....
-#Type=4 for links 6 for users 0 category
-#------------
-#Regarding CustomMetaData
-#ResourceId <= link id
-#CustomFieldId <= id from the top
-#Value = Value from the table custom
-
-//VVVVV BELOW ARE CUSTOM FIELD IMPORT REQUIRES TO HAVE A TEMPROARY TABLE IMPORT
-function customimport()
-{
- global $linkconn, $portalconn, $start, $TablePrefix;
- $limit = 40; #just for debugging purposes, in real life set it to higher number
-
- if ($start == 0) {
- $r = buildfields();
- $query = 'SELECT count(*) as cc from '.$TablePrefix.'import WHERE NOT ocustomid=0';
- $row = $portalconn->Execute($query);
- if ($row && !$row->EOF) settotal($row->fields['cc']);
- }
- else {
- $r = getfields();
- }
-
- $query = 'SELECT * from '.$TablePrefix.'import WHERE ocustomid != 0 limit '.$start.','.$limit;
- $row = $portalconn->Execute($query);
- $counter = 0;
-
- while ($row && !$row->EOF) {
- $counter++;
- loadcustom($row->fields['ocustomid'],$row->fields['nrid'],$row->fields['otname'],$r);
- $row->moveNext();
- }
-
- if ($counter == $limit) {
- setstart($start + $limit, 'custom');
- }
- else {
- // goto next step
- setstart(0, 'relcat');
- }
-}
-
-function loadcustom($customid,$rid,$tablename,$r)
-{
- global $linkconn, $objCustomDataList, $objSession;
-
- $objCustomDataList->Clear();
- switch ($tablename) {
- case 'inl_cats':
- $SessionVar = 'custom_category';
- $prefix = 'c';
- break;
-
- case 'inl_users':
- $SessionVar = 'custom_user';
- $prefix = 'u';
- break;
-
- case 'inl_links':
- $SessionVar = 'custom_links';
- $prefix = 'l';
- break;
- }
- $fields = explode(',', $objSession->GetVariable($SessionVar) );
-
- $query = 'select * from inl_custom Where cust_id = '.$customid;
- $row = $linkconn->Execute($query);
- if($row && $row->RecordCount() )
- {
- for($x = 0; $x < count($fields); $x++)
- {
- $cust = $row->fields[ 'cust'.($x + 1) ];
- $fieldid = $r[ $fields[$x] ];
- $objCustomDataList->SetFieldValue($fieldid, $rid, $cust);
- }
- $objCustomDataList->SaveData($prefix, $rid);
- }
-}
-
-function buildfields() #building and populating an array
-{
- global $objCustomFieldList, $objSession, $linkconn;
-
- $application =& kApplication::Instance();
- $ml_helper =& $application->recallObject('kMultiLanguageHelper');
-
- // User Custom Fields:
- $query = "SELECT * FROM inl_config WHERE name LIKE 'uc%'";
- $row = $linkconn->Execute($query);
- $names = Array();
- while($row && !$row->EOF)
- {
- $data = $row->fields;
- $fieldlabel = $data['name'];
- if( strlen($data['value']) ) $fieldlabel = $data['value'];
- //$f = $objCustomFieldList->AddField(6, $data['name'], $fieldlabel);
- $f = $objCustomFieldList->AddField(6, $data['name'], $fieldlabel, 1, 'la_inlink', 'lu_fieldcustom__'.$data['name'], 'text', '');
-
- $r[ $data['name'] ] = $f->Get('CustomFieldId'); // Save ID of created CustomField
- $objSession->SetVariable('custom_'.$data['name'], $f->Get('CustomFieldId') ); // Save that ID to session
- $names[] = $data['name'];
- $row->MoveNext();
- }
- $objSession->SetVariable('custom_user',implode(',',$names) ); // save list of user custom fields
- $ml_helper->createFields('u-cdata', true);
- unset($names);
-
- // Category Custom Fields:
- $names = Array();
- $query = "SELECT * FROM inl_config WHERE name LIKE 'cc%'";
- $row = $linkconn->Execute($query);
- while($row && !$row->EOF)
- {
- $data = $row->fields;
- $fieldlabel = $data['name'];
- if( strlen($data['value']) ) $fieldlabel = $data['value'];
- // DT_USER, $pending_uf, '', 1, 'la_bb', 'lu_fieldcustom__'.$pending_uf, 'text', '');
- $f = $objCustomFieldList->AddField(1, $data['name'], $fieldlabel,1,'la_inlink', 'lu_fieldcustom__'.$data['name'], 'text', '');
- //$f = $objCustomFieldList->AddField(1, $data['name'], $fieldlabel);
-
- $r[ $data['name'] ] = $f->Get('CustomFieldId');
- $objSession->SetVariable('custom_'.$data['name'], $f->Get('CustomFieldId') );
- $names[] = $data['name'];
- $row->MoveNext();
- }
- $objSession->SetVariable('custom_category', implode(',',$names) );
- $ml_helper->createFields('c-cdata', true);
- unset($names);
-
- // Links Custom Fields:
- $names = Array();
- $query = "SELECT * FROM inl_config WHERE name LIKE 'lc%'";
- $row = $linkconn->Execute($query);
- while($row && !$row->EOF)
- {
- $data = $row->fields;
- $fieldlabel = $data['name'];
- if( strlen($data['value']) ) $fieldlabel = $data['value'];
- //$f = $objCustomFieldList->AddField(4, $data['name'], $fieldlabel);
- $f = $objCustomFieldList->AddField(4, $data['name'], $fieldlabel,1,'la_inlink', 'lu_fieldcustom__'.$data['name'], 'text', '');
- $r[ $data['name'] ] = $f->Get('CustomFieldId');
- $objSession->SetVariable('custom_'.$data['name'], $f->Get('CustomFieldId') );
- $names[] = $data['name'];
- $row->MoveNext();
- }
- $objSession->SetVariable('custom_links', implode(',',$names) );
- $ml_helper->createFields('l-cdata', true);
- return $r;
-}
-
-function getfields() #building and populating an array
-{
- global $objSession;
-
- $r = Array();
- $tmp_fields = explode(',', $objSession->GetVariable('custom_user') ); // Array(uc1,uc2,uc3,...)
- foreach($tmp_fields as $tmp_name) $r[$tmp_name] = $objSession->GetVariable('custom_'.$tmp_name);
-
- $tmp_fields = explode(',', $objSession->GetVariable('custom_category') );
- foreach($tmp_fields as $tmp_name) $r[$tmp_name] = $objSession->GetVariable('custom_'.$tmp_name);
-
- $tmp_fields = explode(',', $objSession->GetVariable('custom_links') );
- foreach($tmp_fields as $tmp_name) $r[$tmp_name] = $objSession->GetVariable('custom_'.$tmp_name);
-
- return $r;
-}
-
-
-################################################Relationships Import
-
-function relcatimport()
-{
- global $linkconn,$objSession, $start;
- $limit = 100;
- $counter =0;
- if ($start == 0)
- {
- $query='SELECT count(*) from inl_rel_cats';
- $row =$linkconn->Execute($query);
- if ($row && !$row->EOF)
- {
- settotal($row->fields[0]);
-
- }
- }
-
- $objRelList = new clsRelationshipList();
- $query='select * from inl_rel_cats LIMIT '.$start.', '.$limit;
- $row =$linkconn->Execute($query);
- while($row && !$row->EOF)
- {
- $counter++;
- $sourceid = newcatrid($row->fields['cat_id']);
- $targetid = newcatrid($row->fields['rel_id']);
- if ($sourceid !='' && $targetid !='')
- {
- $r = $objRelList->Add($sourceid, 1,$targetid, 1);
- $r->Create();
- }
- $row->moveNext();
- }
-
- if ($counter == $limit)
- {
- setstart($start + $limit, 'relcat');
- }
- else
- {
- setstart(0,'terminate');
- }
-
-}
-function newcatrid($oid)
-{
- global $portalconn, $TablePrefix;
- $query2='select * from '.$TablePrefix.'import where otname=\'inl_cats\' and oid = '.$oid;
- $row =$portalconn->Execute($query2);
- if ($row->fields['nrid'])
- {
- return $row->fields['nrid'];
- }
- else
- {
- return '';
- }
-}
-// END OF RELATIONSHIP IMPORT
-?>
\ No newline at end of file
Property changes on: trunk/in-link/admin/import/inlink_import.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.33
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-link/admin/validation.php
===================================================================
--- trunk/in-link/admin/validation.php (revision 12828)
+++ trunk/in-link/admin/validation.php (nonexistent)
@@ -1,361 +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-link/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-link:validation_list');
-
-require_once ($pathtoroot.$admin."/include/elements.php");
-require_once ($pathtoroot."kernel/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);
- }
-}
-
-$action = "m_item_image";
-/* -------------------------------------- Section configuration ------------------------------------------- */
-$envar = "env=" . BuildEnv() . "&en=$en";
-$section = 'in-link:validation_list';
-$sec = $objSections->GetSection($section);
-$title = admin_language("la_Text_Link_Validation");
-
-$SortFieldVar = "LinksValidation_LV_Sortfield";
-$SortOrderVar = "LinksValidation_LV_Sortorder";
-$DefaultSortField = "ValidationTime";
-$PerPageVar = "Perpage_Validation";
-$CurrentPageVar = "Page_ValidationList";
-$CurrentFilterVar = "LinkValidation_View";
-
-$ListForm = "validationlistform";
-$CheckClass = "LinkChecks";
-/* ------------------------------------- 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();
-
-$script_name = $objSession->HasSystemPermission("SYSTEM_ACCESS.READONLY") ? 'validation' : 'run_validation';
-$objListToolBar->Add("continue_val", "la_ToolTip_ContinueValidation", $rootURL."in-link/admin/".$script_name.".php?".$envar,"swap('continue_val','toolbar/tool_validate_continue_f2.gif');",
- "swap('continue_val', 'toolbar/tool_validate_continue.gif');",
- "","tool_validate_continue.gif");
-
-$objListToolBar->Add("refresh_val", "la_ToolTip_NewValidation",$rootURL."in-link/admin/".$script_name.".php?".$envar."&refresh=1","swap('refresh_val','toolbar/tool_validate_restart_f2.gif');",
- "swap('refresh_val', 'toolbar/tool_validate_restart.gif');",
- "","tool_validate_restart.gif");
-
-$objListToolBar->Add("divider");
-
-$objListToolBar->Add("check_val","la_ToolTip_ValidateSelected","#", "if ($CheckClass.itemChecked()) swap('check_val','toolbar/tool_validate_f2.gif');",
- "if ($CheckClass.itemChecked()) swap('check_val', 'toolbar/tool_validate.gif');","if ($CheckClass.itemChecked()) $CheckClass.check_submit('run_validation', '');",
- "tool_validate.gif",TRUE,TRUE);
-$listImages[] = "$CheckClass.addImage('check_val','$imagesURL/toolbar/tool_validate.gif','$imagesURL/toolbar/tool_validate_f3.gif',1);\n";
-
-$objListToolBar->Add("reset_val_status","la_ToolTip_ResetValidationStatus","#", "if ($CheckClass.itemChecked()) swap('reset_val_status','toolbar/tool_validate_reset_f2.gif');",
- "if ($CheckClass.itemChecked()) swap('reset_val_status', 'toolbar/tool_validate_reset.gif');","if ($CheckClass.itemChecked()) $CheckClass.check_submit('validation', 'l_reset_val_status_sel');", "tool_validate_reset.gif",TRUE,TRUE);
-$listImages[] = "$CheckClass.addImage('reset_val_status','$imagesURL/toolbar/tool_validate_reset.gif','$imagesURL/toolbar/tool_validate_reset_f3.gif',1);\n";
-
-$objListToolBar->Add("app_sel_link_val","la_ToolTip_Enable","#","if ($CheckClass.itemChecked()) swap('app_sel_link_val','toolbar/tool_approve_f2.gif');",
- "if ($CheckClass.itemChecked()) swap('app_sel_link_val', 'toolbar/tool_approve.gif');","if ($CheckClass.itemChecked()) $CheckClass.check_submit('validation', 'l_approve_val_link');",
- "tool_approve.gif",FALSE,TRUE);
-$listImages[] = "$CheckClass.addImage('app_sel_link_val','$imagesURL/toolbar/tool_approve.gif','$imagesURL/toolbar/tool_approve_f3.gif',1); ";
-
-$objListToolBar->Add("deny_sel_link_val","la_ToolTip_Deny","#","if ($CheckClass.itemChecked()) swap('deny_sel_link_val','toolbar/tool_decline_f2.gif');",
- "if ($CheckClass.itemChecked()) swap('deny_sel_link_val', 'toolbar/tool_decline.gif');","if ($CheckClass.itemChecked()) $CheckClass.check_submit('validation', 'l_deny_val_link');",
- "tool_deny.gif",FALSE,TRUE);
-$listImages[] = "$CheckClass.addImage('deny_sel_link_val','$imagesURL/toolbar/tool_decline.gif','$imagesURL/toolbar/tool_decline_f3.gif',1); ";
-
-$objListToolBar->Add("del_sel_link_val","la_ToolTip_Delete","#", "if ($CheckClass.itemChecked()) swap('del_sel_link_val','toolbar/tool_delete_f2.gif');",
- "if ($CheckClass.itemChecked()) swap('del_sel_link_val', 'toolbar/tool_delete.gif');","if ($CheckClass.itemChecked()) $CheckClass.check_submit('validation', 'l_delete_val_link');",
- "tool_delete.gif",TRUE,FALSE);
-$listImages[] = "$CheckClass.addImage('del_sel_link_val','$imagesURL/toolbar/tool_delete.gif','$imagesURL/toolbar/tool_delete_f3.gif',1);\n ";
-
-$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 = 7;
-$Bit_Valid=1;
-$Bit_Invalid=2;
-$Bit_New=4;
-$FilterLabels = array();
-
-$FilterLabels[0] = admin_language("la_Text_Valid");
-$FilterLabels[1] = admin_language("la_Text_Invalid");
-$FilterLabels[2] = admin_language("la_Text_Not_Validated");
-
-$ValView = $objConfig->Get($CurrentFilterVar);
-
-if(!is_numeric($ValView))
-{
- $ValView = $Img_AllValue;
- $imgFilter = '';
-}
-else
-{
- if($ValView & $Bit_Valid)
- $Filters[] = "val.ValidationStatus=1";
-
- if($ValView & $Bit_Invalid)
- $Filters[] = "val.ValidationStatus=2";
-
- if($ValView & $Bit_New)
- $Filters[] = "(val.ValidationStatus=0 OR val.ValidationStatus IS NULL)";
-
- if(count($Filters))
- {
- $imgFilter = implode(" OR ",$Filters);
- }
- else
- $imgFilter = "LinkValidationId = -1";
-}
-
-
-
-/* ------------------------------------ Build the SQL statement to populate the list ---------------------------*/
-
-
-$sql = "SELECT (CASE WHEN (val.ValidationStatus IS NULL) THEN '".admin_language("la_Text_Not_Validated")."' ELSE ( ELT(val.ValidationStatus+1,'".admin_language("la_Text_Not_Validated")." ','".admin_language("la_Text_Valid")."', '".admin_language("la_Text_Invalid")." ')) END) as ValStatus, ";
-$sql .="FROM_UNIXTIME(val.ValidationTime,'%m-%d-%Y') as ValidationTime, val.ValidationStatus as intValStatus, ";
-$sql .="val.LinkValidationId as LinkValidationId, val.ValidationCode as ValidationCode, SUBSTRING(link.Name, 1, 30) as LinkName, ";
-$sql .="CONCAT('<A href=\"', IF (link.Url LIKE 'http://%', link.Url, CONCAT('http://', link.Url)), '\" target=\"_blank\">', SUBSTRING(link.Url, 1, 30), '</A>') as LinkUrl, ";
-$sql .="FROM_UNIXTIME(link.CreatedOn,'%m-%d-%Y') as LinkCreatedOn, link.LinkId, link.Status ";
-
-$sql .="FROM ".$objLinkList->SourceTable." as link LEFT JOIN ".GetTablePrefix()."LinkValidation as val ON (link.LinkId=val.LinkId)";
-
-
-$order = trim($objConfig->Get($SortFieldVar)." ".$objConfig->Get($SortOrderVar));
-
-if (strlen($imgFilter))
- $sql.= " WHERE (".$imgFilter.")";
-
-/* Search */
-$objLinkList->AdminSearchFields = array('Name', 'Url', 'Description');
-$SearchWords = $objSession->GetVariable("ValiLinkSearchWord");
-if(strlen($SearchWords))
-{
- $where = $objLinkList->AdminSearchWhereClause($SearchWords);
-}
-else
- $where = "";
-
-if(strlen($where))
-{
- $sql .= strlen($imgFilter)? " AND (".$where.") ": "WHERE (".$where.")";
-}
-
-/* End Search */
-
-
-if(strlen($order))
- $sql .=" ORDER BY ".$order." ";
-
-/* Page navigation */
-if( (int)GetVar('lpn') )
-{
- $objSession->SetVariable($CurrentPageVar, (int)$_GET["lpn"]);
- $page = (int)$_GET["lpn"];
-}
-else
-{
- $page = $objSession->GetVariable($CurrentPageVar);
-}
-
-$sql .= GetLimitSQL($page, (int)$objConfig->Get($PerPageVar));
-
-//echo $sql;
-
-$itemcount = QueryCount($sql);
-$objLinkList->Query_Item($sql," ");
-
-if($objSession->HasSystemPermission("DEBUG.LIST"))
- echo htmlentities($sql,ENT_NOQUOTES)."<br>\n";
-
-
-for($i=0;$i<count($objLinkList->Items);$i++)
-{
- $image_file = "";
- $img = &$objLinkList->GetItemRefByIndex($i);
- if(is_numeric($img->Get("intValStatus")))
- {
- switch($img->Get("intValStatus"))
- {
- case 0:
- if ($img->Get("Status") == 0)
- $image_file = "icon16_not_validated_disabled.gif";
- elseif ($img->Get("Status") == 1)
- $image_file = "icon16_not_validated.gif";
- elseif ($img->Get("Status") == 2)
- $image_file = "icon16_not_validated_pend.gif";
-
- break;
-
- case 1:
- if ($img->Get("Status") == 0)
- $image_file = "icon16_valid_disabled.gif";
- elseif ($img->Get("Status") == 1)
- $image_file = "icon16_valid.gif";
- elseif ($img->Get("Status") == 2)
- $image_file = "icon16_valid_pend.gif";
-
- break;
-
- case 2:
- if ($img->Get("Status") == 0)
- $image_file = "icon16_invalid_disabled.gif";
- elseif ($img->Get("Status") == 1)
- $image_file = "icon16_invalid.gif";
- elseif ($img->Get("Status") == 2)
- $image_file = "icon16_invalid_pend.gif";
-
- break;
- }
- }
- else
- {
- if ($img->Get("Status") == 0)
- $image_file = "icon16_not_validated_disabled.gif";
- elseif ($img->Get("Status") == 1)
- $image_file = "icon16_not_validated.gif";
- elseif ($img->Get("Status") == 2)
- $image_file = "icon16_not_validated_pend.gif";
- }
-
- if (strlen($image_file))
- $img->Set("Icon", $rootURL."in-link/admin/images/".$image_file);
-}
-
-
-/* ---------------------------------------- Configure the list view ---------------------------------------- */
- $objListView = new clsListView($objListToolBar, $objLinkList);
-
- $SortOrder=0;
-
- if($objConfig->Get($SortOrderVar)=="asc")
- $SortOrder=1;
-
- $objListView->ColumnHeaders->Add("LinkName",language("la_ColHeader_Name"),1,0,$order,"width=\"30%\" nowrap",$SortFieldVar,$SortOrderVar,"LinkName");
- $objListView->ColumnHeaders->Add("LinkUrl",language("la_ColHeader_Url"),1,0,$order,"width=\"35%\" nowrap",$SortFieldVar,$SortOrderVar,"LinkUrl");
- $objListView->ColumnHeaders->Add("ValStatus",language("la_ColHeader_ValidationStatus"),1,0,$order,"width=\"15%\" nowrap",$SortFieldVar,$SortOrderVar,"ValStatus");
- $objListView->ColumnHeaders->Add("ValidationTime",language("la_ColHeader_ValidationTime"),1,0,$order,"width=\"10%\"",$SortFieldVar,$SortOrderVar,"val.ValidationTime");
- $objListView->ColumnHeaders->Add("LinkCreatedOn",language("la_ColHeader_CreatedOn"),1,0,$order,"width=\"10%\"",$SortFieldVar,$SortOrderVar,"CreatedOn");
-
- $objListView->ColumnHeaders->SetSort($objConfig->Get($SortFieldVar), $objConfig->Get($SortOrderVar));
-
-
- $objListView->PrintToolBar = FALSE;
- $objListView->SearchBar = TRUE;
- $objListView->SearchKeywords = $SearchWords;
- $objListView->SearchAction="l_vallist_search";
- $objListView->CurrentPageVar = $CurrentPageVar;
- $objListView->PerPageVar = $PerPageVar;
- $objListView->CheckboxName = "itemlist[]";
- $objListView->IdField = "LinkId";
- $objListView->TotalItemCount = $itemcount;
-
- $objListView->ConfigureViewMenu($SortFieldVar,$SortOrderVar,$DefaultSortField,
- $CurrentFilterVar,$ValView,$Img_AllValue);
-
- foreach($FilterLabels as $Bit=>$Label)
- {
- $objListView->AddViewMenuFilter($Label,$Bit);
- }
-
- for($i=0;$i<count($objLinkList->Items);$i++)
- {
- $img =& $objLinkList->GetItemRefByIndex($i);
- $objListView->RowIcons[] = $img->Get("Icon");
- }
-
-$objListToolBar->AddToInitScript("fwLoadMenus();\n");
-
-$filter = false; // always initialize variables before use
-if($SearchWords != '') {
- $filter = true;
-}
-else {
- if ($ValView != $Img_AllValue) {
- $filter = true;
- }
-}
-
-if(strlen($SearchWords))
- $title = prompt_language("la_Text_Search_Results")." (".$itemcount.")";
-else
- $title .= " ($itemcount)";
-
-$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="<?php echo $ListForm;?>" ID="<?php echo $ListForm;?>" action="<?php echo $_SERVER["PHP_SELF"]."?".$envar;?>" method=POST>
-<table cellSpacing="0" cellPadding="2" width="100%" class="tableborder">
-<tbody>
-<?php
- print $objListView->PrintList();
-?>
- <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="CatEditStatus" VALUE="0">
-</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>
-<!-- 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 language="JavaScript1.2" src="<?php echo $adminURL; ?>/listview/listview.js"></script>
-
-<script language="JavaScript1.2">
- initSelectiorContainers();
-<?php echo $objListToolBar->Get("CheckClass").".setImages();"; ?>
-</script>
-<!-- END CODE-->
-<?php int_footer(); ?>
\ No newline at end of file
Property changes on: trunk/in-link/admin/validation.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-link/admin/relation_select.php
===================================================================
--- trunk/in-link/admin/relation_select.php (revision 12828)
+++ trunk/in-link/admin/relation_select.php (nonexistent)
@@ -1,66 +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");
-$admin = $objConfig->Get("AdminDirectory");
-if(!strlen($admin))
- $admin = "admin";
-
-$localURL=$rootURL."in-link/";
-$adminURL = $rootURL.$admin;
-$imagesURL = $adminURL."/images";
-
-$pathtolocal = $pathtoroot."in-link/";
-
-require_once ($pathtolocal."admin/include/navmenu.php");
-
-//Set Environment Variable
-$envar = "env=" . BuildEnv();
-
-//Display header
-$section = 'in-link:browse';
-$list = $objSession->GetVariable("SearchWord");
-
-?>
-<!-- LINKS -->
-<div id="links" class="ini_tab" isTab="true" tabTitle="Links" ActionPrefix="l_link_" EditURL="in-link/admin/addlink">
-<form name=links_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 $objLinkList->GetAdminPageLinkList($_SERVER["PHP_SELF"]); ?>
- </td>
- </tr>
- </tbody>
-</table><br>
-
-
-<table cellSpacing=0 cellPadding=2 width="100%" border=0>
- <tbody>
-<?php
- print adListLinks($pathtoroot."in-link/admin/templates/link_select_element.tpl");
-?>
- </tbody>
-</table>
-</form>
-</div>
-<SCRIPT LANGUAGE="JavaScript">
- AddButtonAction('new_link',"get_to_server('<?php echo $rootURL;?>in-link/admin/addlink.php','new=1');"); //new link
-</SCRIPT>
-<!-- END LINKS -->
Property changes on: trunk/in-link/admin/relation_select.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-link/admin/addlink_custom.php
===================================================================
--- trunk/in-link/admin/addlink_custom.php (revision 12828)
+++ trunk/in-link/admin/addlink_custom.php (nonexistent)
@@ -1,263 +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-link/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-link/";
-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('l_mode', 't');
-$objEditItems = new clsLinkList();
-$objEditItems->SourceTable = $objSession->GetEditTable("Link");
-$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;
-}
-
-if((int)$c->Get("OrgId")>0 && $c->Get("Status")==-2)
-{
- $Org = new clsLink($c->Get("OrgId"));
- $Org ->LoadCustomFields();
-}
-else
- $Org = NULL;
-
-$action = "m_edit_link";
-
-$envar = "env=" . BuildEnv() . "&en=$en";
-
-$section = 'in-link:editlink_custom';
-
-$title = prompt_language("la_Text_Editing")." ".prompt_language("la_Text_Link")." '".$c->Get("Name")."' - ".prompt_language("la_tab_Custom");
-
-//$formaction = $_SERVER["PHP_SELF"]."?".$envar;
-$saveURL = $admin."/".$objSession->GetVariable('ReturnScript');
-//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('link','','".$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('link','','".$saveURL."',2);","tool_cancel.gif");
-if($itemcount == 1) $objCatToolBar->Add("divider");
-
-if ( isset($en_prev) || isset($en_next) )
-{
- $url = $RootUrl."/in-link/admin/addlink_custom.php";
- $StatusField = "LinkEditStatus";
- $form = "link";
- 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 name="link" ID="link" action="" method=POST>
-<?php
-
-$objCustomFields = new clsCustomFieldList(4);
-
-$field_list = $objCustomFieldList->Query_CustomField("Type=4");
-
-$objCustomDataList->SourceTable = $objSession->GetEditTable("CustomMetaData");
-$objCustomDataList->LoadResource($c->Get("ResourceId"));
-
-$tab_index = 1;
-for($i=0;$i<$objCustomFields->NumItems(); $i++)
-{
- $field =& $objCustomFields->GetItemRefByIndex($i);
- $fieldid = $field->Get("CustomFieldId");
-
- $CF = $field->GetAdminUI();
- $cfield = $objCustomFields->GetItemByField("FieldName",substr($CF->name,1),FALSE);
- if (is_object($cfield)) {
- $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\">";
- if(is_object($Org))
- {
- $OrgValue = $Org->GetCustomFieldValue($field->Get("FieldName"));
- if($OrgValue==$f->Get("Value"))
- {
- $class="text";
- }
- else
- $class="error";
- $OrgValue ="&nbsp;&nbsp;<SPAN class=\"$class\">$OrgValue</SPAN>";
- $field->Set("OrgValue",$OrgValue);
- }
- $field->Set("Value", $CF->ItemFormElement($tab_index++));
- 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\">";
- if(is_object($Org))
- {
- $OrgValue = $Org->GetCustomFieldValue($field->Get("FieldName"));
- $OrgValue = "&nbsp;&nbsp;<SPAN class=\"error\">$OrgValue</SPAN>";
- $field->Set("OrgValue",$OrgValue);
- }
- $field->Set("Value", $CF->ItemFormElement($tab_index++));
- 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=\"20%\"","CustomData_LV_Sortfield","CustomData_LV_Sortorder","Value");
-if(is_object($Org))
-{
- $objListView->ColumnHeaders->Add("OrgValue",admin_language("la_origional_value"),1,0,$order,"width=\"30%\"","CustomData_LV_Sortfield","CustomData_LV_Sortorder"," ");
-}
-$objListView->ColumnHeaders->SetSort($objConfig->Get("CustomData_LV_Sortfield"), $objConfig->Get("CustomData_LV_Sortorder"));
-
-$objListView->PrintToolBar = FALSE;
-$objListView->checkboxes = FALSE;
-$objListView->PageURL = "javascript:page_submit('link','in-link/admin/addlink_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="LinkEditStatus" VALUE="0">
- <input type="hidden" name="CustomType" VALUE="4">
-</FORM>
-
-
-<FORM method="POST" NAME="save_edit" ID="save_edit">
- <input type="hidden" name="Action" value="m_edit_custom_data">
- <input type="hidden" name="LinkEditStatus" VALUE="0">
- <input type="hidden" name="CustomType" VALUE="4">
-</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>
-
-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;
- if( !f.action.match('(.*)?env=(.*)') ) f.action += '?' + env_str;
-
- f.LinkEditStatus.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.');
-}
-
-initSelectiorContainers();
-</script>
-
-
-<?php int_footer(); ?>
-
Property changes on: trunk/in-link/admin/addlink_custom.php
___________________________________________________________________
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-link/admin/addreview.php
===================================================================
--- trunk/in-link/admin/addreview.php (revision 12828)
+++ trunk/in-link/admin/addreview.php (nonexistent)
@@ -1,221 +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-link/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($pathtoroot.$admin."/browse/toolbar.php");
-require_once($pathtoroot.$admin."/listview/listview.php");
-
-unset($objEditCat);
-
-$objEditCat = new clsLinkList();
-$objEditCat->SourceTable = $objSession->GetEditTable("Link");
-
-//Multiedit init
-$en = (int)$_GET["en"];
-$objEditCat->Query_Item("SELECT * FROM ".$objEditCat->SourceTable);
-$objEditCat->EnablePaging = FALSE;
-$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-link:editlink_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_Link")." '".$c->Get("Name")."' - ".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('link','in-link/admin/addlink_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('link','in-link/admin/addlink_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="link" NAME="link" 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=link&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; ?>','link','review_body');">
- </a>
- </td>
- <td>
- <textarea rows="8" tabindex="2" 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="3" 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="3" 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="3" 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="4" 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" ValidationType="date" name="review_date" tabindex="5" id="review_date_id" 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="6" 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="LinkEditStatus" 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="LinkEditStatus" 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>
-<script src="<?php echo $adminURL; ?>/include/calendar.js"></script>
-<SCRIPT language="JavaScript">
- initCalendar("review_date_id", CalDateFormat);
- MarkAsRequired(document.getElementById("link"));
-</SCRIPT>
-
-<!-- END CODE-->
-<?php int_footer(); ?>
Property changes on: trunk/in-link/admin/addreview.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-link/admin/advanced_view.php
===================================================================
--- trunk/in-link/admin/advanced_view.php (revision 12828)
+++ trunk/in-link/admin/advanced_view.php (nonexistent)
@@ -1,63 +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,$pathtoroot;
-
-if(!$pathtoroot) die('error: no base path defined');
-
-$localURL=$rootURL."in-link/";
-$pathtolocal = $pathtoroot."in-link/";
-
-require_once ($pathtolocal."admin/include/navmenu.php");
-
-//Set Section
-$section = 'in-link:advanced_view';
-
-//Set Environment Variable
-$envar = "env=" . BuildEnv($mod_prefixes);
-
-//Display header
-$section = 'in-link:advanced_view';
-
-?>
-<!-- LINKS -->
-<div id="links" class="ini_tab" isTab="true" tabTitle="Links" PrefixSpecial="l" ActionPrefix="l_link_" EditURL="in-link/admin/addlink">
-
-<table cellSpacing=0 cellPadding=2 width="100%" class="tabTable">
- <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 $objLinkList->GetAdminPageLinkList($_SERVER["PHP_SELF"]); ?>
- </td>
- <td align="right" width="30%">
- <?php ShowSearchForm('l', $envar, 'links'); ?>
- </td>
- </tr>
-</table><br>
-
-<form name=links_form action="" method=post>
- <input type="hidden" name="Action">
- <table cellSpacing=0 cellPadding=2 width="100%" border=0>
- <tbody>
- <?php
- //print adListLinks($pathtoroot."in-link/admin/templates/link_element.tpl");
- print $objLinkList->AdminPrintItems($pathtoroot."in-link/admin/templates/link_tab_element_av.tpl");
- ?>
- </tbody>
- </table>
-</form>
-</div>
-<!-- END LINKS -->
-
Property changes on: trunk/in-link/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-link/admin/addlink_category.php
===================================================================
--- trunk/in-link/admin/addlink_category.php (revision 12828)
+++ trunk/in-link/admin/addlink_category.php (nonexistent)
@@ -1,251 +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-link/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-link/";
-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 clsLinkList();
-$objEditItems->SourceTable = $objSession->GetEditTable("Link");
-$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 = "l_edit_link";
-$envar = "env=" . BuildEnv() . "&en=$en";
-
-//Set Section
-$section = 'in-link:editlink_category';
-$formaction = $_SERVER["PHP_SELF"]."?".$envar;
-$saveURL = $admin."/".$objSession->GetVariable('ReturnScript');
-//Set Environment Variable
-//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','LinkEditStatus','".$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','LinkEditStatus','".$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","link");
-
-//Display header
-$sec = $objSections->GetSection($section);
-
-$sec = $objSections->GetSection($section);
-
-
-if( isset($en_prev) || isset($en_next) )
-{
- $url = 'in-link/admin/addlink_category.php';
- $StatusField = 'LinkEditStatus';
- $form = 'link';
- 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('addlink_category', 'l_cat_delete');",
- "tool_delete.gif", FALSE, TRUE);
-$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('addlink_category', 'l_primary_cat');",
- "tool_primary_cat.gif", TRUE, TRUE);
-
-$listImages[] = "PermChecks.addImage('cat_primary','$imagesURL/toolbar/tool_primary_cat.gif','$imagesURL/toolbar/tool_primary_cat_f3.gif',1); ";
-
- $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"); // depricated file
- 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);
- }
- }
-
- for($i=0;$i<count($objCats->Items);$i++)
- {
- $objListView->RowIcons[] = $objCats->Items[$i]->StatusIcon();
- }
-
- $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->PriorityField = "_priority";
- $objListView->TotalItemCount = count($cats);
-
- $objListView->ConfigureViewMenu($SortFieldVar,$SortOrderVar,$DefaultSortField,
- $CurrentFilterVar,$UserView,$Bit_All);
-
-$objListToolBar->AddToInitScript($listImages);
-
-$objListToolBar->AddToInitScript("fwLoadMenus();");
-
-$h = "\n\n<SCRIPT Language=\"JavaScript1.2\">\n".$objListView->GetViewMenu($imagesURL)."\n</SCRIPT>\n";
-
-$title = prompt_language("la_Text_Editing")." ".prompt_language("la_Text_Link")." '".$c->Get("Name")."' - ".prompt_language("la_tab_Categories");
-
-int_header($objListToolBar,NULL, $title, NULL, $h);
-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="link" id="link" action="" method=POST>
-<?php
- $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="l_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>
-<!-- END CODE-->
-<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="LinkEditStatus" VALUE="0">
-</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-link/admin/addlink_category.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.16
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-link/admin/addrelation.php
===================================================================
--- trunk/in-link/admin/addrelation.php (revision 12828)
+++ trunk/in-link/admin/addrelation.php (nonexistent)
@@ -1,210 +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-link/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 clsLinkList();
-$objEditCat->SourceTable = $objSession->GetEditTable("Link");
-$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","4");
- $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();
-
-$section = 'in-link:editlink_relation';
-$envar = "env=" . BuildEnv() . "&en=$en";
-
-$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_Link")." '".$c->Get("Name")."' - ".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('link','','in-link/admin/addlink_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('link','','in-link/admin/addlink_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="link" NAME="link" 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 = "";
- if($Rel->Get("Enabled")=="1")
- {
- $checked = " CHECKED";
- }
- ?>
- <input type="checkbox" tabindex="2" VALUE="1" name="Enabled" <?php echo $checked; ?>>
- </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" SIZE="5" tabindex="3" NAME="priority" VALUE="<?php echo $Rel->Get("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="LinkEditStatus" 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">
- </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-link/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-link/admin/run_validation.php
===================================================================
--- trunk/in-link/admin/run_validation.php (revision 12828)
+++ trunk/in-link/admin/run_validation.php (nonexistent)
@@ -1,491 +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-link/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."/toolbar.php");
-require_once($pathtoroot.$admin."/listview/listview.php");
-
- $section = "in-link:run_validation";
- $LinksPerLoad = 20;
-
- $ado = &GetADODBConnection();
-
- $LinkIndex = (int)$_GET["LinkIndex"];
- $ValTable = GetTablePrefix()."LinkValidation";
- $CurrTime = adodb_mktime();
- $EmptyUrl = $_GET['EmptyUrl']? 1 : 0;
-
- // Set Validation Type
- if (isset($_GET['ValSelected']))
- $ValidationType = "Temp";
- elseif (isset($_GET['refresh']))
- $ValidationType = "Full";
- else
- $ValidationType = "";
-
- // Define main query
- $sql = "SELECT link.LinkId as LinkId, val.LinkValidationId as LinkValidationId, link.Url as LinkUrl FROM ".$objLinkList->SourceTable." as link LEFT JOIN $ValTable as val ON (link.LinkId=val.LinkId) WHERE link.LinkId IS NOT NULL ";
- // $sql = "SELECT link.LinkId as LinkId, val.LinkValidationId as LinkValidationId, link.Url as LinkUrl FROM ".$objLinkList->SourceTable." as link LEFT JOIN $ValTable as val ON (link.LinkId=val.LinkId) WHERE link.LinkId IS NOT NULL AND (val.ValidationStatus=2) ";
-
- $SelectedLinks = $_POST['itemlist'];
- //print_r($ids = join(",", $SelectedLinks)); die();
- // $ids = "";
- // $SelectedLinks = explode(",", $ids);
-
- //$SelectedLinks = array('250', '250');
-
- // Get All Counters & Build Full Query
- if (($ValidationType != "Full") && ((count($SelectedLinks) && isset($SelectedLinks)) || ($ValidationType == "Temp")))
- {
-
-
- if (count($SelectedLinks))
- {
- $linkIDs_array = $SelectedLinks;
- $linkIDs = implode(",", $SelectedLinks); // string
- $add_IDs = count($linkIDs)? " AND link.LinkId IN ($linkIDs)" : "";
- $NumLinks = QueryCount($sql.$add_IDs);
- $objSession->SetVariable("TotalVal", $NumLinks);
- $LinkIndex = 0;
- }
- else
- {
- $linkIDs = $objConfig->Get("LinkValidateIDs");
- $add_IDs = count($linkIDs)? " AND link.LinkId IN ($linkIDs)" : "";
- $linkIDs_array = explode(",", $linkIDs);
- $NumLinks = $objConfig->Get("TotalVal");
- $LinkIndex = $NumLinks - count($linkIDs_array);
- // print($LinkIndex);
- }
- $ValidationType = "Temp";
-
- $sql.= $add_IDs." LIMIT 0,".$LinksPerLoad;
- $add_refreshUrl = "&ValSelected=1&EmptyUrl=".$EmptyUrl;
- }
- else
- {
-
- if ($_GET['refresh'] != 1)
- {
- $StartTime = $objConfig->Get("StartValidationTime");
-
- // Get Count Total
- $NumLinks = $objConfig->Get("TotalVal");
- if (empty($NumLinks))
- {
- $NumLinks = QueryCount($sql);
- $objSession->SetVariable("TotalVal", $NumLinks);
- }
-
- if (empty($StartTime))
- {
- $objConfig->Set("StartValidationTime", $CurrTime, 0, TRUE);
- $objConfig->Save();
- $StartTime = $CurrTime;
- }
-
- // Current Counter Position
- $sql1 = $sql." AND ((val.ValidationTime > $StartTime) OR (val.ValidationTime='0'))";
- $sql.= " AND ((val.ValidationTime <= $StartTime) OR (val.ValidationTime='0') OR val.ValidationTime IS NULL)";
- $LinkIndex = QueryCount($sql1);
- // echo $sql1."-".$sql;die();
- }
- else
- {
- // Get Count Total
- $NumLinks = QueryCount($sql);
- $objSession->SetVariable("TotalVal", $NumLinks);
-
- $objConfig->Set("StartValidationTime", $CurrTime, 0, TRUE);
- $objConfig->Save();
- $StartTime = $CurrTime;
- $LinkIndex = 0;
- }
-
- $sql.= " ORDER BY val.ValidationTime ASC LIMIT 0,".$LinksPerLoad;
-
- $add_refreshUrl = "&EmptyUrl=".$EmptyUrl;
- }
-
- // echo htmlentities($sql, ENT_NOQUOTES)."<br>\n";
- $objLinkList->EnablePaging = FALSE;
- $objLinkList->Query_Item($sql);
- $LinksCount = $objLinkList->NumItems();
-
- /**** Define Socket variables *****/
- $opened_sockets = 0;
- $curr_obj = 0;
- $sockets_name = "sock";
- $sockets = array();
-
- define ("MaxOpenedConnections", 5);
- $FirstSockets = ($LinksCount > MaxOpenedConnections)? MaxOpenedConnections : $LinksCount;
-
- // Init first sockets
- for ($i=1; $i <= $FirstSockets; $i++)
- $create_sockets[] = $sockets_name.$i;
- /**** End Define Socket variables *****/
-
-
- if ($LinksCount)
- {
- while (($LinksCount > $curr_obj) || $opened_sockets)
- {
- // Create New / Destroy Completed Sockets
- if (count($create_sockets))
- {
- foreach ($create_sockets as $curr)
- {
- // Update Link status and Destroy socket
- if (is_object($sockets[$curr]))
- {
- $objSocket = &$sockets[$curr];
- $ValStatus = $objSocket->_validation_status? 1 : 2;
-
- if (strlen($objSocket->_socket_return_code))
- $ValCode = $objSocket->_socket_return_code;
- else
- $ValCode = $objSocket->_socket_output;
-
- $CompletedLinks[] =
- array('LinkId' => $objSocket->_socket_LinkId,
- 'LinkValidationId' => $objSocket->_socket_LinkValidationId,
- 'ValidationTime' => adodb_mktime(),
- 'ValidationStatus' => $ValStatus,
- 'ValidationCode' => $ValCode);
-
- $objSocket->socket_disconnect();
- unset($objSocket);
- unset($sockets[$curr]);
- $opened_sockets--;
-
- if (!$opened_sockets)
- {
- // echo $opened_sockets." ".$curr_obj;
-
- }
- }
- elseif (($curr_obj >= $LinksCount) && !$opened_sockets)
- break;
-
- // Don't open more sockets
- if ($curr_obj < $LinksCount)
- {
- // Get Next Link Object
- $_successfull = FALSE;
- do
- {
- $l = &$objLinkList->GetItemRefByIndex($curr_obj);
-
- if (is_object($l))
- {
- // Link Data
- $URL = $l->Get("LinkUrl");
- $LinkId = $l->Get("LinkId");
- $LinkValId = $l->Get("LinkValidationId");
- // Create new socket
- $sockets[$curr] = new Socket($URL, $LinkId, $LinkValId); // If URL is not empty
- /*
- echo "OUTPUT<BR>";
- echo $sockets[$curr]->socket_read_all();
- echo "END OUTPUT<BR><BR>";
- */
-
-// echo "<PRE>"; print_r($l); echo "</PRE><BR>";
- if ($sockets[$curr]->_socket_status != SOCKET_URL_ERROR)
- {
- $_successfull = TRUE;
- $sockets[$curr]->socket_connect($sockets[$curr]->_socket);
-
- $sockets[$curr]->_socket_name = $curr; $opened_sockets++;
-// echo "SOCKET STATUS: ".($sockets[$curr]->_socket_status)."<BR>";
- }
- else
- {
- $ValStatus = $_GET['EmptyUrl']? 2 : 1;
-
- $CompletedLinks[]=
- array('LinkId' => $sockets[$curr]->_socket_LinkId,
- 'LinkValidationId' => $sockets[$curr]->_socket_LinkValidationId,
- 'ValidationTime' => adodb_mktime(),
- 'ValidationStatus' => $ValStatus,
- 'ValidationCode' => 'EmptyUrl');
-
- unset($sockets[$curr]);
- }
-
- $curr_obj++;
- }
- else // Went through all necessary Link Objects
- {
- break;
- }
- }
- while(!$_successfull);
- }
- }
-
- unset($create_sockets);
- }
-
- // Work with All sockets in order
- if ($opened_sockets && (is_array($sockets) && count($sockets)))
- {
- foreach ($sockets as $curr => $objSocket)
- {
- unset($objSocket);
-
- $curr_sock = &$sockets[$curr];
-
- // Socket just opened
- if ($curr_sock->_socket_status == SOCKET_OPENED)
- {
- ## Prepare URL request
- $curr_sock->prepare_url_request();
-
- ## Switch status to "Write to SOCKET"
- $curr_sock->_socket_status = SOCKET_WRITE;
- }
- // Just read from socket
- elseif ($curr_sock->_socket_status == SOCKET_READ)
- {
-
-// echo "TOTAL READING TIME: ".($curr_sock->_socket_read_time)." - ".($curr_sock->_socket_read_timeout)."<BR>";
-
- ## Reading Timeout Check
- if ($curr_sock->_socket_read_time >= $curr_sock->_socket_read_timeout)
- {
- $create_sockets[] = $curr;
- continue;
- }
- else
- {
- $start_time = getmicrotime();
- $socket_read = $curr_sock->socket_read();
- $curr_sock->_socket_read_time = $curr_sock->_socket_read_time + (float)(getmicrotime() - $start_time);
-
- if ($socket_read)
- {
- $curr_sock->parse_output($curr_sock->_socket_output_last_line);
- }
- elseif ($curr_sock->_socket_read_status)
- {
- // Check if socket dead
- if (!$curr_sock->_socket)
- {
-// echo "HERE? socket dead";
-
- $create_sockets[] = $curr;
- continue;
-
- }
- }
- else
- {
-// echo "CATNT READ: ".($curr_sock->_URL)."; READ STATUS: ".($curr_sock->_socket_read_status)."; LAST LINE: ".($curr_sock->_socket_output_last_line)." TOTAL READ TIME: ".($curr_sock->_socket_read_time)."; SOCKET STATUS: ".($curr_sock->_socket_status)."<BR><BR>";
- }
-
- // Check if got correct response
- if ($curr_sock->_socket_status == SOCKET_COMPLETED)
- {
-// echo "HERE? socket completed";
- $create_sockets[] = $curr;
- continue;
-
- }
- elseif (feof($curr_sock->_socket))
- {
- // echo "HERE? socket dead";
-
- $create_sockets[] = $curr;
- $curr_sock->_socket_status = SOCKET_EOF;
- continue;
-
- }
-
-
- }
- }
- elseif ($curr_sock->_socket_status == SOCKET_WRITE)
- {
-// echo "WRITE REQUEST: ".$curr_sock->_socket_request_line."<BR>";
-
- if (!$curr_sock->socket_write($curr_sock->_socket_request_line))
- {
-// echo "HERE? CANT NOT WRITE TO SOCKET";
-
- // Free socket and to create next list if writing is unsuccessfull
- $create_sockets[] = $curr;
- continue;
-
- }
- else
- {
- // Set status to "READ back from SOCKET"
- $curr_sock->_socket_status = SOCKET_READ;
- }
-
- }
- elseif ($curr_sock->_socket_status == SOCKET_OPEN_ERROR)
- {
- // Free socket and to create next list
- $create_sockets[] = $curr;
- continue;
-
- }
- // Check if socket dead
- elseif (!$curr_sock->_socket)
- {
-// echo "HERE? socket dead";
- $create_sockets[] = $curr;
- continue;
- }
-
- }
-
-// echo "<PRE>SOCKETS TO CREATE: "; print_r($create_sockets); echo "</PRE><BR>";
-
- }
- }
- }
-
- // Update Complete Links
- if (count($CompletedLinks))
- {
- $objItemDB = new clsItemDB();
- $objItemDB->tablename = GetTablePrefix()."LinkValidation";
-// $fp = fopen("/home/sites/dev1/in-portal/logs.txt", "w");
- foreach ($CompletedLinks as $curr_el)
- {
- // Logging
- if ($curr_el['ValidationStatus'] != 1)
- {
-// $data = join("\n", $curr_el)."\n\n";
-// @fputs($fp, $data, strlen($data));
- }
-
-// echo "LinkID: ".$curr_el['LinkId']." status: ".$curr_el['ValidationStatus']."<BR><BR>";
-
- if (!empty($curr_el['LinkValidationId']))
- {
- $currLinkId = $curr_el['LinkId'];
- unset($curr_el['LinkId']);
- $objItemDB->m_dirtyFieldsMap = $objItemDB->Data = $curr_el;
- $objItemDB->id_field = "LinkValidationId";
- $objItemDB->Update();
- }
- else
- {
- $currLinkId = $curr_el['LinkId'];
- unset($curr_el['LinkValidationId']);
- $objItemDB->Data = $curr_el;
- $objItemDB->NoResourceId = TRUE;
- $objItemDB->Create();
- }
- $CompletedSockets[] = $currLinkId;
- }
-// fclose($fp);
- }
-
-// print_r($CompletedSockets);
-
-
- // Update Validated LinksID for Temporarily Validation
- if (($ValidationType == "Temp") && count($CompletedSockets))
- {
- $linkIDs = array_diff($linkIDs_array, $CompletedSockets);
- $linkIDs_string = count($linkIDs)? implode(",", $linkIDs) : "";
- if (strlen($linkIDs_string))
- {
- $objSession->SetVariable("LinkValidateIDs", $linkIDs_string);
-// echo "Completed: "; print_r($CompletedSockets); echo "<BR>";
-// echo "NEW LInks: ".$linkIDs_string." => ".$NumLinks."-".$LinksCount;
-
- }
- else
- {
- $objSession->SetVariable("", $linkIDs_string);
- $NumLinks = 0;
- }
- }
-
- $title = prompt_language("la_Text_Link_Validation");
- int_header(NULL,NULL, $title);
-?>
-<TABLE cellSpacing="0" cellPadding="2" width="100%" class="tableborder">
-<?php int_subsection_title(""); ?>
-<?php
- if((($NumLinks == 0) || ($LinksCount == 0)))
- {
- $percent=100;
- $target = $rootURL."in-link/admin/validation.php?env=".BuildEnv()."&ResetPage=1";
- print "<script language=\"javascript\">" ;
- print "setTimeout(\"document.location='$target';\", 40);";
- print " </script>";
- }
- else
- {
- $CancelURL = $rootURL."in-link/admin/validation.php?env=".BuildEnv()."&ResetPage=1";
- $caption = prompt_language("la_prompt_runlink_validation")." ($LinkIndex / $NumLinks)";
- stats($caption, $LinkIndex, $NumLinks);
- reload($_SERVER["PHP_SELF"]. "?env=".BuildEnv().$add_refreshUrl);
- }
-
-function stats($caption,$myprogress,$totalnum)
-{
- global $rootURL, $CancelURL, $PageTitle;
-
- if($totalnum>0)
- {
-
-
- $pct=round(($myprogress/$totalnum)*100);
- }
- else
- $pct = 100;
- $o .="<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"4\" class=\"tableborder\">";
-
- print "\n";
- $o .= int_subsection_title_ret($caption." - ".$pct."%");
- $o .= "<TR><TD align=\"middle\"><br />";
- $o .= " <TABLE CLASS=\"tableborder_full\" width=\"75%\">";
- $o .=" <TR border=1><TD width=\"".$pct."%\" STYLE=\"background:url('".$rootURL."admin/images/progress_bar_segment.gif');\">&nbsp;</TD>";
- $comp_pct = 100-$pct;
- $o .= " <TD bgcolor=#FFFFFF width=\"".$comp_pct."%\"></TD></TR>";
- $o .= " </TABLE>";
- $o .= " <BR /><input type=button VALUE=\"".admin_language("la_Cancel")."\" CLASS=\"button\" ONCLICK=\"document.location='".$CancelURL."';\">";
- print $o."\n";
- print "</TD></TR></TABLE>";
-
-}
-function reload($url)
-{
- print "<script language=\"javascript\">" ;
- print "setTimeout(\"document.location='$url';\",40);";
- print " </script>";
- //echo "<A HREF=\"$url\">Next </A>";
-}
-
-?>
-<?php int_footer(); ?>
Property changes on: trunk/in-link/admin/run_validation.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-link/admin/images/icon16_link_top.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin/images/icon16_link_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-link/admin/images/icon16_link_pick.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin/images/icon16_link_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-link/admin/images/icon16_valid_pend.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin/images/icon16_valid_pend.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-link/admin/images/icon16_invalid_disabled.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin/images/icon16_invalid_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-link/admin/images/icon16_invalid_pend.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin/images/icon16_invalid_pend.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-link/admin/images/icon16_link_denied.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin/images/icon16_link_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-link/admin/images/icon16_not_validated.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin/images/icon16_not_validated.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-link/admin/images/icon16_invalid.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin/images/icon16_invalid.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-link/admin/images/icon16_not_validated_disabled.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin/images/icon16_not_validated_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-link/admin/images/tool_new_link_f3.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin/images/tool_new_link_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-link/admin/images/tool_new_link_f2.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin/images/tool_new_link_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-link/admin/images/link_arrow.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin/images/link_arrow.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-link/admin/images/icon16_link_disabled.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin/images/icon16_link_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-link/admin/images/tool_new_link.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin/images/tool_new_link.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-link/admin/images/icon16_link.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin/images/icon16_link.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-link/admin/images/icon16_link_deleted.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin/images/icon16_link_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-link/admin/images/icon16_not_validated_pend.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin/images/icon16_not_validated_pend.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-link/admin/images/icon16_link_hot.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin/images/icon16_link_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-link/admin/images/icon16_link_pending.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin/images/icon16_link_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-link/admin/images/icon16_valid.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin/images/icon16_valid.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-link/admin/images/icon16_link_attn.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin/images/icon16_link_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-link/admin/images/icon46_in-link.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin/images/icon46_in-link.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-link/admin/images/icon16_link_pop.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin/images/icon16_link_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-link/admin/images/icon16_valid_disabled.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin/images/icon16_valid_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-link/admin/images/icon16_link_new.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin/images/icon16_link_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-link/admin/images
===================================================================
--- trunk/in-link/admin/images (revision 12828)
+++ trunk/in-link/admin/images (nonexistent)
Property changes on: trunk/in-link/admin/images
___________________________________________________________________
Deleted: svn:ignore
## -1 +0,0 ##
-Thumbs.db
Index: trunk/in-link/admin/reviews.php
===================================================================
--- trunk/in-link/admin/reviews.php (revision 12828)
+++ trunk/in-link/admin/reviews.php (nonexistent)
@@ -1,64 +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,$pathtoroot;
-
-if(!$pathtoroot) die('error: no base path defined');
-
-$localURL=$rootURL."in-link/";
-$pathtolocal = $pathtoroot."in-link/";
-
-require_once ($pathtolocal."admin/include/navmenu.php");
-
-//Set Section
-$section = 'in-link:reviews';
-
-//Set Environment Variable
-$envar = "env=" . BuildEnv($mod_prefixes);
-
-//Display header
-if( $objSession->HasCatPermission("LINK.VIEW") )
-{
-?>
-<!-- LINKS -->
-<div id="link_reviews" class="ini_tab" isTab="true" tabTitle="Links" PrefixSpecial="rev.links" ActionPrefix="m_review_direct_" EditURL="admin/addreview_direct">
-
-<table cellSpacing=0 cellPadding=2 width="100%" class="tabTable">
- <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 $objLinkReviewList->GetAdminPageLinkList($_SERVER["PHP_SELF"]); ?>
- </td>
- <td align="right" width="30%">
- <?php ShowSearchForm('l',$envar,'link_reviews','_review_direct_search'); ?>
- </td>
- </tr>
-</table><br>
-
-<form name="link_reviews_form" action="" method=post>
- <input type="hidden" name="Action">
- <table cellSpacing=0 cellPadding=2 width="100%" border=0>
- <tbody>
- <?php
- print $objLinkReviewList->AdminPrintItems($pathtoroot.'in-link/admin/templates/link_review_element.tpl');
- ?>
- </tbody>
- </table>
-</form>
-</div>
-<!-- END LINKS -->
-<?php
-}
-?>
Property changes on: trunk/in-link/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-link/admin/item_select.php
===================================================================
--- trunk/in-link/admin/item_select.php (revision 12828)
+++ trunk/in-link/admin/item_select.php (nonexistent)
@@ -1,161 +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. ##
-##############################################################
-
-// POSSIBLY NOT IN USE
-// new startup: begin
-define('REL_PATH', 'in-link/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");
-//Set Section
-
-$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="linklistform">
- <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=\"4\">";
- print adListLinks($objCatList->CurrentCategoryID(),$pathtoroot.$admin."/templates/link_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-link/admin/item_select.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-link/admin/addimage.php
===================================================================
--- trunk/in-link/admin/addimage.php (revision 12828)
+++ trunk/in-link/admin/addimage.php (nonexistent)
@@ -1,280 +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-link/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 = 'kernel/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);
-
-$objEditCat = new clsLinkList();
-$objEditCat->SourceTable = $objSession->GetEditTable("Link");
-$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->Pending=TRUE;
- $img->tablename = $objEditItems->SourceTable;
- $img->Set("ImageId",$img->FieldMin("ImageId")-1);
- $action = "m_img_add";
- $name = "'New Image'";
-}
-
-$envar = "env=" . BuildEnv() . "&en=$en";
-
-$section = 'in-link:editlink_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.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_Link")." '".$c->Get("Name")."' - ".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('link','in-link/admin/addlink_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('link','in-link/admin/addlink_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="link" NAME="link" 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 ValidationType="exists" tabindex="1" NAME="imgName" 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 ValidationType="exists" tabindex="2" NAME="imgAlt" 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 NAME="imgEnabled" tabindex="3" <?php if($img->Get("Enabled")==1) echo "CHECKED"; ?> VALUE="1"><?php echo prompt_language("la_Text_Enabled"); ?>
- <input type=RADIO NAME="imgEnabled" tabindex="3" <?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" NAME="imgSameImages" tabindex="9" 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" type="radio" tabindex="10" name="imgLocalFull" <?php echo $local; ?> VALUE="1"><?php echo prompt_language("la_prompt_upload"); ?>:
- </td>
- <td>
- <input type=FILE ID="imgFullFile" tabindex="11" NAME="imgFullFile" VALUE=""> <br />
- </td>
- </tr>
- <tr>
- <td>
- <input id="full2" type="radio" tabindex="10" name="imgLocalFull" <?php echo $remote; ?> VALUE="0"> <?php echo prompt_language("la_prompt_remote_url"); ?>:
- </td>
- <td>
- <input type=text size=32 tabindex="12" 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="LinkEditStatus" 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("link"));
-</script>
-<!-- END CODE-->
-<?php int_footer(); ?>
-
Property changes on: trunk/in-link/admin/addimage.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-link/admin/include/navmenu.php
===================================================================
--- trunk/in-link/admin/include/navmenu.php (revision 12828)
+++ trunk/in-link/admin/include/navmenu.php (nonexistent)
@@ -1,142 +0,0 @@
-<?php
-##############################################################
-## In-link :: 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. ##
-##############################################################
-
-$module_images = 'in-link/admin_templates/img';
-
-/* edit link toolbar */
-$objSections->AddSection("in-link:editlink_general", "la_tab_General",NULL,"in-link/admin/",
- "javascript:edit_submit('link','LinkEditStatus','in-link/admin/addlink.php',0);",
- $admin."/icons/icon46_struct.gif", $admin."/icons/icon24_navigate.gif",
- NULL, "in-portal:browse", NULL, "in-link:editlink_category",-1);
-
-$objSections->AddSection("in-link:editlink_category","la_tab_Categories", NULL, "in-link/admin/",
- "javascript:edit_submit('link','LinkEditStatus','in-link/admin/addlink_category.php',0);",
- $admin."/icons/icon46_struct.gif", $admin."/icons/icon24_navigate.gif",
- NULL,"in-portal:browse",'in-link:editlink_general', "in-link:editlink_relations",-1);
-
-$objSections->AddSection("in-link:editlink_relations","la_tab_Relations", NULL, "in-link/admin/",
- "javascript:edit_submit('link','LinkEditStatus','in-link/admin/addlink_relations.php',0);",
- $admin."/icons/icon46_struct.gif", $admin."/icons/icon24_navigate.gif",
- NULL,"in-portal:browse",'in-link:editlink_category', "in-link:editlink_images",-1);
-
-$objSections->AddSection("in-link:editlink_images", "la_tab_Images", NULL,"in-link/admin/",
- "javascript:edit_submit('link','LinkEditStatus','in-link/admin/addlink_images.php',0);",
- $admin."/icons/icon46_struct.gif", $admin."/icons/icon24_navigate.gif",
- NULL,"in-portal:browse",'in-link:editlink_relations', "in-link:editlink_reviews",-1);
-
-$objSections->AddSection("in-link:editlink_reviews", "la_tab_Reviews", NULL,"in-link/admin/",
- "javascript:edit_submit('link','LinkEditStatus','in-link/admin/addlink_reviews.php',0);",
- $admin."/icons/icon46_struct.gif", $admin."/icons/icon24_navigate.gif",
- NULL,"in-portal:browse",'in-link:editlink_images', 'in-link:editlink_custom',-1);
-
-$objSections->AddSection("in-link:editlink_custom", "la_tab_Custom",NULL, "in-link/admin/",
- "javascript:edit_submit('link','LinkEditStatus','in-link/admin/addlink_custom.php',0);",
- $admin."/icons/icon46_struct.gif", $admin."/icons/icon24_navigate.gif",
- NULL,"in-portal:browse",'in-link:editlink_reviews',NULL,-1);
-
-/* link edit subitems */
-$objSections->AddSection("in-link:editlink_image","la_tab_Images","la_title_edit_link",$admin."/category/",
- "javascript:edit_submit('link','LinkEditStatus','in-link/admin/addimage.php',0);",
- $admin."/icons/icon46_catalog.gif", $admin."/icons/icon24_navigate.gif",
- NULL, NULL, NULL,NULL,-1);
-
-$objSections->AddSection("in-link:editlink_relation","la_tab_Relations","la_title_edit_link",$admin."/category/",
- "javascript:edit_submit('link','LinkEditStatus','in-link/admin/addrelation.php',0);",
- $admin."/icons/icon46_catalog.gif", $admin."/icons/icon24_navigate.gif",
- NULL, NULL, NULL,NULL,-1);
-
-$objSections->AddSection("in-link:editlink_review","la_tab_Reviews","la_title_edit_link",$admin."/category/",
- "javascript:edit_submit('link','LinkEditStatus','in-link/admin/addreview.php',0);",
- $admin."/icons/icon46_catalog.gif", $admin."/icons/icon24_navigate.gif",
- NULL, NULL, NULL,NULL,-1);
-
-/*inlink tree items */
-
-// Load In-Link module to get it's version
-$mod = $objModules->GetModule("In-Link");
-$ModVersion = $mod ? $mod->Get('Version') : '';
-
-$objSections->AddSection("in-link","la_title_In-Link","la_title_In-Link", $admin."/","subitems.php",
- "in-link/admin/images/icon46_settings_in-link.gif","in-link/admin/images/icon24_settings_in-link.gif",
- NULL,"in-portal:modules",NULL,NULL,0,"",1,
- NULL,NULL,NULL,"in-link/admin/images/icon46_list_settings_in-link.gif","la_Text_Version"," $ModVersion");
-
-$objSections->AddSection("in-link:inlink_general", "la_tab_GeneralSettings","la_tab_General",
- "in-link/admin/","config_general.php",
- $admin."/icons/icon46_settings_general.gif",$admin."/icons/icon24_settings_general.gif",
- NULL,"in-link", NULL,"in-link:configuration_output",0,"",1,
- NULL,NULL,NULL,$admin."/icons/icon46_list_settings_general.gif", "la_updating_config");
-
-$objSections->AddSection("in-link:configuration_output", "la_tab_ConfigOutput","la_tab_ConfigOutput",
- $admin.'/index4.php?section=in-link:configuration_output&module=In-Link', 'kernel4:config/config_universal',
- $admin."/icons/icon46_settings_output.gif",$admin."/icons/icon24_settings_output.gif",
- NULL,"in-link", "in-link:inlink_general","in-link:configuration_search",0,"",1,
- NULL,NULL,NULL,$admin."/icons/icon46_list_settings_output.gif","la_updating_config");
-
-$objSections->AddSection("in-link:configuration_search","la_tab_ConfigSearch", "la_tab_ConfigSearch",
- $admin.'/index4.php?module=In-Link&section=in-link:configuration_search&module_key=links',
- 'kernel4:config/config_search',
- $admin."/icons/icon46_settings_search.gif",$admin."/icons/icon24_settings_search.gif",
- NULL,"in-link", "in-link:configuration_output", "in-link:configuration_email",0,"",1,
- NULL,NULL,NULL,$admin."/icons/icon46_list_settings_search.gif","la_updating_config");
-
-$objSections->AddSection("in-link:configuration_email", "la_tab_ConfigE-mail", "la_tab_ConfigE-mail", $admin."/config/",
- "module_email.php?&module=In-Link&section=in-link:configuration_email&lpn=1",
- $admin."/icons/icon46_settings_email.gif",$admin."/icons/icon24_settings_email.gif",
- NULL,"in-link", "in-link:configuration_search", "in-link:configuration_custom",0,"",1,
- NULL,NULL,NULL,$admin."/icons/icon46_list_settings_email.gif","la_updating_config");
-
-$objSections->AddSection("in-link:configuration_custom","la_tab_ConfigCustom","la_tab_ConfigCustom",$admin.'/index4.php',
- "kernel4:custom_fields/custom_fields_list:cf----4-",
- $admin."/icons/icon46_settings_custom.gif",$admin."/icons/icon24_settings_custom.gif",
- NULL, "in-link", "in-link:configuration_email", "in-link:duplicate_checker", 0,"",1,
- NULL,NULL,NULL,$admin."/icons/icon46_list_settings_custom.gif","la_updating_config");
-
-/*$objSections->AddSection("in-link:validation_list","la_tab_LinkValidation","la_tab_LinkValidation","in-link/admin/", "validation.php?&section=in-link:validation_list",
- $admin."/icons/icon46_validate.gif", $admin."/icons/icon24_validate.gif", NULL, "in-link", "in-link:configuration_custom", null,0,"",1,
- NULL,NULL,NULL,$admin."/icons/icon46_list_validate.gif");*/
-
-
-$objSections->AddSection('in-link:duplicate_checker', 'la_tab_DuplicateChecker', 'la_tab_DuplicateChecker', $admin.'/index4.php',
- "kernel4:in-link/duplicate_checker",
- $module_images.'/icons/icon46_duplicate_checker.gif', $module_images.'/icons/icon24_duplicate_checker.gif',
- NULL, "in-link", "in-link:configuration_custom", "in-link:validation_list", 0,"",1,
- NULL,NULL,NULL,$module_images.'/icons/icon46_list_duplicate_checker.gif', 'la_updating_config');
-
-$objSections->AddSection("in-link:validation_list","la_tab_LinkValidation","la_tab_LinkValidation","in-link/admin/", "validation.php?&section=in-link:validation_list",
- $admin."/icons/icon46_validate.gif", $admin."/icons/icon24_validate.gif", NULL, "in-link", "in-link:configuration_custom", "in-link:inlink_paid_listings",0,"",1,
- NULL,NULL,NULL,$admin."/icons/icon46_list_validate.gif");
-
-
-
-$objSections->AddSection("in-link:inlink_paid_listings", "la_tab_PaidListings","la_tab_PaidListings",
- $admin.'/index4.php','kernel4:in-link/paid_listings/paid_listing_types_list',
- $module_images.'/icons/icon46_paid_listings.gif',$module_images.'/icons/icon24_paid_listings.gif',
- NULL,"in-link", "in-link:validation_list",NULL,0,"",1,
- NULL,NULL,NULL,$module_images.'/icons/icon46_paid_listings.gif', "la_updating_config");
-
-$objSections->SimpleSection('in-link','in-link:in-link','la_tab_InlinkImport','la_title_Help','in-link/admin/import/',
- 'inlink_import.php',null,null,null,null);
-
-
-$name = admin_language("lu_btn_NewLink");
-
-$NewButtons[] = array(
- "ImagePath" => $rootURL."in-link/admin/images/",
- "Action" => "new_link",
- "Alt" => $name,
- "Tab" => defined('K4_LINKS') && K4_LINKS ? 'k4links' : 'links');
-
-?>
\ No newline at end of file
Property changes on: trunk/in-link/admin/include/navmenu.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-link/admin/include/toolbar/editcategory_relationselect.php
===================================================================
--- trunk/in-link/admin/include/toolbar/editcategory_relationselect.php (revision 12828)
+++ trunk/in-link/admin/include/toolbar/editcategory_relationselect.php (nonexistent)
@@ -1,219 +0,0 @@
-<?php
-global $objConfig, $objLinkList, $objCatList, $ItemTabs, $SearchType,$LinkSearch;
-global $Bit_All,$Bit_Pending,$Bit_Disabled,$Bit_New,$Bit_Pop,$Bit_Hot,$Bit_Ed,$DefaultTab;
-
-if(strlen($DefaultTab))
-{
- if($DefaultTab=="links")
- {
- $m_tab_Links_hide = 0;
- }
- else
- $m_tab_Links_hide = 1;
-}
-
-
-$LinkView = $objConfig->Get("Link_View");
-
-$Links_AllValue = 127;
-
-if(!is_numeric($LinkView))
-{
- $LinkView = 127;
-}
-
-$Link_SortField = $objConfig->Get('Link_SortField');
-if( !strlen($Link_SortField) ) $Link_SortField = 'Priority';
-
-$Link_SortOrder = $objConfig->Get('Link_SortOrder');
-if( !strlen($Link_SortOrder) ) $Link_SortOrder = 'desc';
-
-$Perpage_Links = (int)$objConfig->Get("Perpage_Links");
-if(!$Perpage_Links)
- $Perpage_Links="'all'";
-
-
-if($LinkView == $Links_AllValue)
-{
- $Link_ShowAll = 1;
- $Link_Filter = "";
-}
-else
-{
- $Status = array();
- $Mod = array();
- if($LinkView & $Bit_Pending)
- $Status[] = STATUS_PENDING;
-
- if($LinkView & $Bit_Active)
- $Status[] = STATUS_ACTIVE;
-
-
- if($LinkView & $Bit_Disabled)
- $Status[] = STATUS_DISABLED;
-
- if(count($Status))
- {
- $LinkFilter .= " AND (Status IN (".implode(",",$Status).") ";
- }
- else
- $LinkFilter .= " AND ((Status=-1) ";
-
- if($LinkView & $Bit_Ed)
- {
- $LinkFilter .= " OR (EditorsPick=1) ";
- }
-
- if($LinkView & $Bit_New)
- {
- $cutoff = adodb_date("U") - ($objConfig->Get("Link_NewDays") * 86400);
- $LinkFilter .= " OR (CreatedOn > ".$cutoff.") ";
- }
- if($LinkView & $Bit_Pop)
- {
- //$cutoff = GetLinkPopValue();
- if($cutoff>0)
- $LinkFilter .= " OR (CachedRating >= ".$cutoff.") ";
- }
-
- if($LinkView & $Bit_Hot)
- {
- //$cutoff = GetLinkHotValue();
- if($cutoff>0)
- $LinkFilter .= " OR (Hits >= ".$cutoff.") ";
- }
-
- $LinkFilter .= ")";
-}
-$list = $objSession->GetVariable("SearchWord");
-$LinkSearch = (strlen($list)>0 && $SearchType =="Links" || $SearchType="all") || (strlen($list)==0);
-$objLinkList->Clear();
-$objLinkList->EnablePaging=TRUE;
-
-$LinkSearch = $LinkSearch && ($objSession->HasCatPermission("LINK.VIEW"));
-$lt = $objLinkList->SourceTable;
-$catjoin = GetTablePrefix()."CategoryItems";
-$cattable = $objCatList->SourceTable;
-
-$order = trim($objConfig->Get("Link_SortField")." ".$objConfig->Get("Link_SortOrder"));
-if(strlen($order))
- $order = "ORDER BY $order";
-
-$sql = "SELECT * FROM $lt ";
-$sql .= "INNER JOIN $catjoin ON ($lt.ResourceId=$catjoin.ItemResourceId) ";
-
-if($LinkSearch)
-{
- if(strlen($list)==0)
- {
- $where = "WHERE CategoryId=".$objCatList->CurrentCategoryID().$LinkFilter;
- }
- else
- {
- $SearchQuery = $objLinkList->AdminSearchWhereClause($list);
- if(strlen($SearchQuery))
- {
- $SearchQuery = " (".$SearchQuery.")";
- if(strlen($CatScopeClause))
- $SearchQuery .= " AND ".$CatScopeClause;
- $where = ' AND '.$SearchQuery.$LinkFilter;
- }
- else
- $where = "WHERE CategoryId=".$objCatList->CurrentCategoryID().$LinkFilter;
- }
- $sql .= $where." ".$order;
-
- $objLinkList->Query_Item($sql);
-
- $objLinkList->QueryItemCount = TableCount($objLinkList->SourceTable," CategoryId=".$objCatList->CurrentCategoryID().$LinkFilter,TRUE);
- $CatTotal = TableCount($objLinkList->SourceTable," CategoryId=".$objCatList->CurrentCategoryID(),TRUE);
-
- $caption = language("la_ItemTab_Links");
- $ItemTabs->AddTab(language("la_ItemTab_Links"),"links",$objLinkList->QueryItemCount, $m_tab_Links_hide,$CatTotal);
-
-}
-
-$lang_URL = language("la_prompt_URL");
-$lang_Links = language("la_Text_Links");
-$lang_Reviews = language("la_Text_Reviews");
-
-
-print <<<END
-
-<script language="JavaScript">
-var Link_SortField = '$Link_SortField';
-var Link_SortOrder = '$Link_SortOrder';
-var Links_Perpage = $Perpage_Links;
-var LinkView = $LinkView;
-var LinkTitle = '$caption';
-var lang_URL = "$lang_URL";
-var lang_Links = "$lang_Links";
-var lang_Reviews = "$lang_Reviews";
-var Links_Paste = false;
-
-function Links_SortMenu()
-{
- sub_menu_sorting_sub = new Menu(LinkTitle);
- sub_menu_sorting_sub.addMenuItem(lang_Asc,"config_val('Link_SortOrder','asc');",RadioIsSelected(Link_SortOrder,'asc'));
- sub_menu_sorting_sub.addMenuItem(lang_Desc,"config_val('Link_SortOrder','desc');",RadioIsSelected(Link_SortOrder,'desc'));
- sub_menu_sorting_sub.addMenuSeparator();
-
- sub_menu_sorting_sub.addMenuItem(lang_Default,"config_val('Link_SortField','Name');","");
- sub_menu_sorting_sub.addMenuItem(lang_Name,"config_val('Link_SortField','Name');",RadioIsSelected(Link_SortField,'Name'));
- sub_menu_sorting_sub.addMenuItem(lang_URL,"config_val('Link_SortField','Url');",RadioIsSelected(Link_SortField,'Url'));
- sub_menu_sorting_sub.addMenuItem(lang_CreatedOn,"config_val('Link_SortField','CreatedOn');",RadioIsSelected(Link_SortField,'CreatedOn'));
- sub_menu_sorting_sub.addMenuItem(lang_Reviews,"config_val('Link_SortField','CachedReviewsQty');",RadioIsSelected(Link_SortField,'CachedReviewsQty'));
- sub_menu_sorting_sub.addMenuItem(lang_Rating,"config_val('Link_SortField','CachedRating');",RadioIsSelected(Link_SortField,'CachedRating'));
- sub_menu_sorting_sub.addMenuItem(lang_Votes,"config_val('Link_SortField','CachedVotesQty');",RadioIsSelected(Link_SortField,'CachedVotesQty'));
- sub_menu_sorting_sub.addMenuItem(lang_Hits,"config_val('Link_SortField','CachedHits');",RadioIsSelected(Link_SortField,'CachedHits'));
-
- return sub_menu_sorting_sub;
-}
-
-function Links_FilterMenu()
-{
- menu_filter = new Menu(LinkTitle);
-
- menu_filter.addMenuItem(lang_All,"config_val('Link_View', $Links_AllValue);",LinkView==$Links_AllValue);
- menu_filter.addMenuItem(lang_None,"config_val('Link_View', 0);",LinkView==0);
- menu_filter.addMenuSeparator();
- menu_filter.addMenuItem(lang_Active,"FlipBit('Link_View',LinkView,6);",BitStatus(LinkView,6));
- menu_filter.addMenuItem(lang_Pending,"FlipBit('Link_View',LinkView,5);", BitStatus(LinkView,5));
- menu_filter.addMenuItem(lang_Disabled,"FlipBit('Link_View',LinkView,4);",BitStatus(LinkView,4));
- menu_filter.addMenuSeparator();
- menu_filter.addMenuItem(lang_New,"FlipBit('Link_View',LinkView,3);",BitStatus(LinkView,3));
- menu_filter.addMenuItem(lang_Pop,"FlipBit('Link_View',LinkView,1);",BitStatus(LinkView,1));
- menu_filter.addMenuItem(lang_Hot,"FlipBit('Link_View',LinkView,2);",BitStatus(LinkView,2));
- menu_filter.addMenuItem(lang_EdPick,"FlipBit('Link_View',LinkView,0);",BitStatus(LinkView,0));
-
- return menu_filter;
-}
-
-function Links_SelectMenu()
-{
- menu_select = new Menu(LinkTitle);
- 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 Links_PerPageMenu()
-{
- caption = lang_Links +" "+lang_PerPage;
-
- menu_results = new Menu(caption);
- menu_results.addMenuItem("10","config_val('Perpage_Links', '10');",RadioIsSelected(Links_Perpage,10));
- menu_results.addMenuItem("20","config_val('Perpage_Links', '20');",RadioIsSelected(Links_Perpage,20));
- menu_results.addMenuItem("50","config_val('Perpage_Links', '50');",RadioIsSelected(Links_Perpage,50));
- menu_results.addMenuItem("100","config_val('Perpage_Links', '100');",RadioIsSelected(Links_Perpage,100));
- menu_results.addMenuItem("500","config_val('Perpage_Links', '500');",RadioIsSelected(Links_Perpage,500));
- return menu_results;
-}
-
-
-</script>
-
-END;
-?>
Property changes on: trunk/in-link/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-link/admin/include/toolbar/editlink_reviews.php
===================================================================
--- trunk/in-link/admin/include/toolbar/editlink_reviews.php (revision 12828)
+++ trunk/in-link/admin/include/toolbar/editlink_reviews.php (nonexistent)
@@ -1,224 +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("LinkRev_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("LinkReview_LV_Sortorder");
-if(!strlen($SortOrder))
- $SortOrder = "desc";
-
-$SortField = $objConfig->Get("LinkReview_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='link';
-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('LinkRev_View',$Rev_AllValue);",RevView==$Rev_AllValue);
- menu_filter.addMenuSeparator();
-
- menu_filter.addMenuItem(lang_Enabled,"FlipBit('LinkRev_View',RevView,1);",BitStatus(RevView,1));
- menu_filter.addMenuItem(lang_Disabled,"FlipBit('LinkRev_View',RevView,0);",BitStatus(RevView,0));
- menu_filter.addMenuItem(lang_Pending,"FlipBit('LinkRev_View',RevView,2);",BitStatus(RevView,2));
-
- window.menu_sorting = new Menu(lang_Sort);
- menu_sorting.imagePath = "$imagesURL"+'/';
- menu_sorting.addMenuItem(lang_Asc,"config_val('LinkReview_LV_Sortorder','asc');",RadioIsSelected(Rev_Sortorder,'asc'));
- menu_sorting.addMenuItem(lang_Desc,"config_val('LinkReview_LV_Sortorder','desc');",RadioIsSelected(Rev_Sortorder,'desc'));
- menu_sorting.addMenuSeparator();
- menu_sorting.addMenuItem(lang_Default,"config_val('LinkReview_LV_Sortfield','DatePosted');","");
- menu_sorting.addMenuItem(lang_ReviewText,"config_val('LinkReview_LV_Sortfield','ReviewText');",RadioIsSelected(Rev_Sortfield,'ReviewText'));
- menu_sorting.addMenuItem(lang_Reviewer,"config_val('LinkReview_LV_Sortfield','Reviewer');",RadioIsSelected(Rev_Sortfield,'Reviewer'));
- menu_sorting.addMenuItem(lang_CreatedOn,"config_val('LinkReview_LV_Sortfield','CreatedOn');",RadioIsSelected(Rev_Sortfield,'CreatedOn'));
- menu_sorting.addMenuItem(lang_Status,"config_val('LinkReview_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('addlink_reviews', 'm_review_delete');","");
- contextMenu.addMenuSeparator();
- contextMenu.addMenuItem(lang_MoveUp,"RevChecks.check_submit('addlink_reviews', 'm_review_move_up');","");
- contextMenu.addMenuItem(lang_MoveDn,"RevChecks.check_submit('addlink_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';
- var url = '$rootURL' + targetURL;
-
- if( !url.match('(.*)?env=(.*)') ) url += '?' + env_str;
-
- document.location = url;
-
-}
-
-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;
- if( !f.action.match('(.*)?env=(.*)') ) f.action += '?' + env_str;
-
- f.LinkEditStatus.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;
- if( !f.action.match('(.*)?env=(.*)') ) f.action += '?' + env_str;
- f.LinkEditStatus.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-link/admin/include/toolbar/editlink_reviews.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-link/admin/include/toolbar/item_select.php
===================================================================
--- trunk/in-link/admin/include/toolbar/item_select.php (revision 12828)
+++ trunk/in-link/admin/include/toolbar/item_select.php (nonexistent)
@@ -1,19 +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">
-
-LinkChecks = new CheckArray();
-
-LinkChecks.formname='linklistform';
-LinkChecks.envar='$envar';
-
-</script>
-
-END;
-
-?>
\ No newline at end of file
Property changes on: trunk/in-link/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-link/admin/include/toolbar/reviews.php
===================================================================
--- trunk/in-link/admin/include/toolbar/reviews.php (revision 12828)
+++ trunk/in-link/admin/include/toolbar/reviews.php (nonexistent)
@@ -1,136 +0,0 @@
-<?php
-global $objLinkReviewList,$objConfig,$objSession,$ItemTabs,$TotalItemCount,$Bit_All,$Bit_Pending,$Bit_Disabled,$DefaultTab;
-
-$m_tab_Links_hide = isset($DefaultTab)&&($DefaultTab=='link_reviews') ? 0 : 1;
-
-$LinkReview_View = $objConfig->Get('LinkReview_View');
-$LinkReview_AllValue = 112;
-
-if(!is_numeric($LinkReview_View)) $LinkReview_View=112;
-
-$Review_Perpage = (int)$objConfig->Get('Perpage_LinkReviews');
-if(!$Review_Perpage) $Review_Perpage="'all'";
-
-
-if($LinkReview_View==$LinkReview_AllValue)
-{
- $LinkReview_ShowAll = 1;
- $LinkReview_Filter = '';
-}
-else
-{
- // FILTERING CODE V. 1.2
- $where_clauses = Array(); $q = '';
-
- // Group #1: Link Statuses (active,pending,disabled)
- $Status = Array();
- if($LinkReview_View & $Bit_Pending) $Status[] = STATUS_PENDING;
- if($LinkReview_View & $Bit_Active) $Status[] = STATUS_ACTIVE;
- if($LinkReview_View & $Bit_Disabled) $Status[] = STATUS_DISABLED;
- $where_clauses[] = 'Status IN ('.($Status?implode(',', $Status):'-1').')';
-
- $LinkReview_Filter = count($where_clauses) ? '('.implode(') AND (', $where_clauses).')' : '';
-}
-
-$list = $objSession->GetVariable('l_review_direct_search');
-
-$objLinkReviewList = new clsItemReviewList();
-$objLinkReviewList->EnablePaging=true;
-$objLinkReviewList->PerPageVar='Perpage_LinkReviews';
-$objLinkReviewList->PageEnvar='l_var_list';
-$objLinkReviewList->PageEnvarIndex='rp';
-$objLinkReviewList->setPageFromENV();
-
-$sql = 'SELECT * FROM '.$objLinkReviewList->SourceTable.' ';
-
-$where = 'WHERE (Module=\'In-Link\') AND ';
-
-if( $objSession->HasCatPermission("LINK.VIEW") )
-{
- if(!$list)
- {
- if($LinkReview_Filter) $where.=$LinkReview_Filter;
- $SearchQuery = '';
- }
- else
- {
- $SearchQuery = $objLinkReviewList->AdminSearchWhereClause($list);
- if($SearchQuery)
- {
- $SearchQuery = ' ('.$SearchQuery.')'.($LinkReview_Filter ? ' AND ('.$LinkReview_Filter.')' : '');
- $where.=$SearchQuery;
- }
- else
- {
- if($LinkReview_Filter) $where.=$LinkReview_Filter;
- }
- }
- $sql.=rtrim($where,' AND ').' ORDER BY Priority DESC';
-
- $objLinkReviewList->Query_Item($sql,false,'set_last');
-
- $tmp=rtrim(ltrim($where,'WHERE '),' AND ');
- $objLinkReviewList->QueryItemCount = TableCount($objLinkReviewList->SourceTable, $tmp, 0);
- $CatTotal = QueryCount('SELECT * FROM '.$objLinkReviewList->SourceTable.' WHERE Module=\'In-Link\'');
-
- $caption = language("la_ItemTab_Links");
- $ItemTabs->AddTab(language("la_ItemTab_Links"),"link_reviews",$objLinkReviewList->QueryItemCount, $m_tab_Links_hide,$CatTotal);
-}
-
-$lang_Reviews = language("la_Text_Reviews");
-
-$TotalItemCount += $objLinkReviewList->QueryItemCount;
-
-print <<<END
-
-<script language="JavaScript">
-var Review_Perpage = $Review_Perpage;
-var LinkReview_View = $LinkReview_View;
-var LinkTitle = '$caption';
-var lang_Reviews = "$lang_Reviews";
-
- \$fw_menus['rev.links_view_menu'] = function()
- {
- // filtring menu
- \$Menus['rev.links_filtring_menu'] = new Menu(lang_View);
- \$Menus['rev.links_filtring_menu'].addMenuItem(lang_All,"config_val('LinkReview_View', $LinkReview_AllValue);",LinkReview_View==$LinkReview_AllValue);
- \$Menus['rev.links_filtring_menu'].addMenuItem(lang_None,"config_val('LinkReview_View', 0);",LinkReview_View==0);
- \$Menus['rev.links_filtring_menu'].addMenuSeparator();
- \$Menus['rev.links_filtring_menu'].addMenuItem(lang_Active,"FlipBit('LinkReview_View',LinkReview_View,6);",BitStatus(LinkReview_View,6));
- \$Menus['rev.links_filtring_menu'].addMenuItem(lang_Pending,"FlipBit('LinkReview_View',LinkReview_View,5);", BitStatus(LinkReview_View,5));
- \$Menus['rev.links_filtring_menu'].addMenuItem(lang_Disabled,"FlipBit('LinkReview_View',LinkReview_View,4);",BitStatus(LinkReview_View,4));
-
- // perpage menu
- \$Menus['rev.links_perpage_menu'] = new Menu(lang_PerPage);
- \$Menus['rev.links_perpage_menu'].addMenuItem("10","config_val('Perpage_LinkReviews', '10');",RadioIsSelected(Review_Perpage,10));
- \$Menus['rev.links_perpage_menu'].addMenuItem("20","config_val('Perpage_LinkReviews', '20');",RadioIsSelected(Review_Perpage,20));
- \$Menus['rev.links_perpage_menu'].addMenuItem("50","config_val('Perpage_LinkReviews', '50');",RadioIsSelected(Review_Perpage,50));
- \$Menus['rev.links_perpage_menu'].addMenuItem("100","config_val('Perpage_LinkReviews', '100');",RadioIsSelected(Review_Perpage,100));
- \$Menus['rev.links_perpage_menu'].addMenuItem("500","config_val('Perpage_LinkReviews', '500');",RadioIsSelected(Review_Perpage,500));
-
- // select menu
- \$Menus['rev.links_select_menu'] = new Menu(lang_Select);
- \$Menus['rev.links_select_menu'].addMenuItem(lang_All,"javascript:selectAllC('"+activeTab.id+"');","");
- \$Menus['rev.links_select_menu'].addMenuItem(lang_Unselect,"javascript:unselectAll('"+activeTab.id+"');","");
- \$Menus['rev.links_select_menu'].addMenuItem(lang_Invert,"javascript:invert('"+activeTab.id+"');","");
-
- // view menu
- \$Menus['rev.links_view_menu'] = new Menu(LinkTitle);
- \$Menus['rev.links_view_menu'].addMenuItem( \$Menus['rev.links_filtring_menu'] );
- \$Menus['rev.links_view_menu'].addMenuItem( \$Menus['rev.links_perpage_menu'] );
- \$Menus['rev.links_view_menu'].addMenuItem( \$Menus['rev.links_select_menu'] );
- }
-
- function SubmitSearch(formname, action)
- {
- var f = document.getElementById(formname);
- if(f)
- {
- f.Action.value = action;
- f.submit();
- }
- }
-</script>
-
-END;
-?>
Property changes on: trunk/in-link/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-link/admin/include/toolbar/editlink_permissions.php
===================================================================
--- trunk/in-link/admin/include/toolbar/editlink_permissions.php (revision 12828)
+++ trunk/in-link/admin/include/toolbar/editlink_permissions.php (nonexistent)
@@ -1,12 +0,0 @@
-<?php
-print<<<END
-<script language="javascript1.2">
-<!--
-//dummy functions
-function tool_perm(){}
-function fwLoadMenus(){}
-//-->
-</script>
-
-END;
-?>
\ No newline at end of file
Property changes on: trunk/in-link/admin/include/toolbar/editlink_permissions.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-link/admin/include/toolbar/editlink_custom.php
===================================================================
--- trunk/in-link/admin/include/toolbar/editlink_custom.php (revision 12828)
+++ trunk/in-link/admin/include/toolbar/editlink_custom.php (nonexistent)
@@ -1,125 +0,0 @@
-<?php
-
-global $rootURL,$envar, $objConfig, $imagesURL;
-
-$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,satus_field, targetURL,save_value,env)
-{
- var env_str = '$envar';
- if(env && env.length > 0) env_str = env;
-
- f = document.getElementById(formname);
- if(f)
- {
- f.action = '$rootURL' + targetURL;
- if( !f.action.match('(.*)?env=(.*)') ) f.action += '?' + env_str;
- f.LinkEditStatus.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.action = '$rootURL' + targetURL;
- if( !f.action.match('(.*)?env=(.*)') ) f.action += '?' + env_str;
- f.action += '&lpn='+TargetPage;
-
- f.LinkEditStatus.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>
-
-END;
-?>
Property changes on: trunk/in-link/admin/include/toolbar/editlink_custom.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-link/admin/include/toolbar/editlink_image.php
===================================================================
--- trunk/in-link/admin/include/toolbar/editlink_image.php (revision 12828)
+++ trunk/in-link/admin/include/toolbar/editlink_image.php (nonexistent)
@@ -1,261 +0,0 @@
-<?php
-global $envar,$rootURL,$imagesURL, $objConfig,$imgFilter, $adminURL,$admin;
-
-$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("LinkImg_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("LinkImage_LV_Sortfield");
-if(!strlen($SortField))
- $SortField = "Name";
-
-$SortOrder = $objConfig->Get("LinkImage_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.LinkEditStatus.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.LinkEditStatus.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('LinkImg_View',$Img_AllValue);",ImgView==$Img_AllValue);
- menu_filter.addMenuSeparator();
-
- menu_filter.addMenuItem(lang_Enabled,"FlipBit('LinkImg_View',ImgView,0);",BitStatus(ImgView,0));
- menu_filter.addMenuItem(lang_Disabled,"FlipBit('LinkImg_View',ImgView,1);",BitStatus(ImgView,1));
-
-
- window.menu_sorting = new Menu(lang_Sort);
- menu_sorting.imagePath = "$imagesURL"+'/';
- menu_sorting.addMenuItem(lang_Asc,"config_val('LinkImage_LV_Sortorder','asc');",RadioIsSelected(Img_Sortorder,'asc'));
- menu_sorting.addMenuItem(lang_Desc,"config_val('LinkImage_LV_Sortorder','desc');",RadioIsSelected(Img_Sortorder,'desc'));
- menu_sorting.addMenuSeparator();
- menu_sorting.addMenuItem(lang_Default,"config_val('LinkImage_LV_Sortfield','FullName');","");
- menu_sorting.addMenuItem(lang_Name,"config_val('LinkImage_LV_Sortfield','FullName');",RadioIsSelected(Img_Sortfield,'FullName'));
- menu_sorting.addMenuItem(lang_Alt,"config_val('LinkImage_LV_Sortfield','AltName');",RadioIsSelected(Img_Sortfield,'AltName'));
- menu_sorting.addMenuItem(lang_URL,"config_val('LinkImage_LV_Sortfield','ShowURL');",RadioIsSelected(Img_Sortfield,'ShowURL'));
- menu_sorting.addMenuItem(lang_Status,"config_val('LinkImage_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-link/admin/include/toolbar/editlink_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-link/admin/include/toolbar/editlink_images.php
===================================================================
--- trunk/in-link/admin/include/toolbar/editlink_images.php (revision 12828)
+++ trunk/in-link/admin/include/toolbar/editlink_images.php (nonexistent)
@@ -1,265 +0,0 @@
-<?php
-global $envar,$rootURL,$imagesURL, $objConfig,$imgFilter, $adminURL,$admin;
-
-$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("LinkImg_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("LinkImage_LV_Sortfield");
-if(!strlen($SortField))
- $SortField = "Name";
-
-$SortOrder = $objConfig->Get("LinkImage_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;
- if( !f.action.match('(.*)?env=(.*)') ) f.action += '?' + env_str;
-
- f.LinkEditStatus.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;
- if( !f.action.match('(.*)?env=(.*)') ) f.action += '?' + env_str;
-
- f.LinkEditStatus.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('LinkImg_View',$Img_AllValue);",ImgView==$Img_AllValue);
- menu_filter.addMenuSeparator();
-
- menu_filter.addMenuItem(lang_Enabled,"FlipBit('LinkImg_View',ImgView,0);",BitStatus(ImgView,0));
- menu_filter.addMenuItem(lang_Disabled,"FlipBit('LinkImg_View',ImgView,1);",BitStatus(ImgView,1));
-
-
- window.menu_sorting = new Menu(lang_Sort);
- menu_sorting.imagePath = "$imagesURL"+'/';
- menu_sorting.addMenuItem(lang_Asc,"config_val('LinkImage_LV_Sortorder','asc');",RadioIsSelected(Img_Sortorder,'asc'));
- menu_sorting.addMenuItem(lang_Desc,"config_val('LinkImage_LV_Sortorder','desc');",RadioIsSelected(Img_Sortorder,'desc'));
- menu_sorting.addMenuSeparator();
- menu_sorting.addMenuItem(lang_Default,"config_val('LinkImage_LV_Sortfield','FullName');","");
- menu_sorting.addMenuItem(lang_Name,"config_val('LinkImage_LV_Sortfield','FullName');",RadioIsSelected(Img_Sortfield,'FullName'));
- menu_sorting.addMenuItem(lang_Alt,"config_val('LinkImage_LV_Sortfield','AltName');",RadioIsSelected(Img_Sortfield,'AltName'));
- menu_sorting.addMenuItem(lang_URL,"config_val('LinkImage_LV_Sortfield','ShowURL');",RadioIsSelected(Img_Sortfield,'ShowURL'));
- menu_sorting.addMenuItem(lang_Status,"config_val('LinkImage_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-link/admin/include/toolbar/editlink_images.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-link/admin/include/toolbar/editlink_review.php
===================================================================
--- trunk/in-link/admin/include/toolbar/editlink_review.php (revision 12828)
+++ trunk/in-link/admin/include/toolbar/editlink_review.php (nonexistent)
@@ -1,59 +0,0 @@
-<?php
-
-global $rootURL,$envar;
-
-print<<<END
-<script language="javascript1.2">
-<!--
-
-function do_save_review(formname, targetURL,save_value)
-{
- var env_str = '$envar';
-
- f = document.getElementById(formname);
- if(f)
- {
- if(save_value !=-1)
- {
- valid = DataIsValid(f);
- }
- else
- valid = false;
-
- if(valid || save_value==-1)
- {
- f.action = '$rootURL' + targetURL + '?' + env_str;
- f.LinkEditStatus.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.LinkEditStatus.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-link/admin/include/toolbar/editlink_review.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-link/admin/include/toolbar/browse.php
===================================================================
--- trunk/in-link/admin/include/toolbar/browse.php (revision 12828)
+++ trunk/in-link/admin/include/toolbar/browse.php (nonexistent)
@@ -1,272 +0,0 @@
-<?php
-
- if( defined('K4_LINKS') && K4_LINKS )
- {
- // K4 VERSION: BEGIN
- $application =& kApplication::Instance();
- $perm_helper =& $application->recallObject('PermissionsHelper');
-
- if ($perm_helper->TagPermissionCheck(Array('permissions' => 'LINK.VIEW'))) {
- $session =& $application->recallObject('Session');
-
- $links_list =& $application->recallObject('l','l_List');
- $ItemTabs->AddTab(language("la_ItemTab_K4Links"), "k4links", $links_list->RecordsCount, 0, $links_list->NoFilterCount);
-
- $Links_Paste = $application->RecallVar('l_clipboard') ? 1 : 0;
- // K4 VERSION: END
-
- print <<<END1
- <script language="JavaScript">
- var Links_Paste = $Links_Paste;
-
- PasteButton = PasteButton || Links_Paste;
-
- AddButtonAction('new_link',"new_link('l')");
-
- function new_link(prefix_special)
- {
- \$form_name = queryTabRegistry('prefix_special', prefix_special, 'tab_id') + '_form';
- set_hidden_field(prefix_special+'_mode', 't');
- opener_action('d');
- submit_event(prefix_special, 'OnPreCreate', queryTabRegistry('prefix_special', prefix_special, 'edit_template'), '../../admin/index.php')
- }
- </script>
-END1;
- }
- }
- else
- {
- global $objConfig, $objSession, $objLinkList, $ItemTabs, $SearchType,$LinkSearch, $TotalItemCount;
- global $Bit_All,$Bit_Pending,$Bit_Disabled,$Bit_New,$Bit_Pop,$Bit_Hot,$Bit_Ed,$DefaultTab, $debugger;
-
- $m_tab_Links_hide = 0;
- if(strlen($DefaultTab))
- {
- $m_tab_Links_hide = ($DefaultTab=="links") ? 0 : 1;
- }
-
-
- $LinkView = $objConfig->Get("Link_View");
-
- $Links_AllValue = 127;
-
- if(!is_numeric($LinkView))
- {
- $LinkView = 127;
- }
-
-
- // default 1st sorting
- $Link_SortField = $objConfig->Get('Link_SortField'); // 'Priority';
- $Link_SortOrder = $objConfig->Get('Link_SortOrder'); // 'desc';
-
- $Perpage_Links = (int)$objConfig->Get("Perpage_Links");
- if(!$Perpage_Links)
- $Perpage_Links="'all'";
-
-
- if($LinkView == $Links_AllValue)
- {
- $Link_ShowAll = 1;
- $LinkFilter = "";
- }
- else
- {
- $Status = array();
- $Mod = array();
- if($LinkView & $Bit_Pending)
- $Status[] = STATUS_PENDING;
-
- if($LinkView & $Bit_Active)
- $Status[] = STATUS_ACTIVE;
-
-
- if($LinkView & $Bit_Disabled)
- $Status[] = STATUS_DISABLED;
-
- if(count($Status))
- {
- $LinkFilter .= " AND (Status IN (".implode(",",$Status).") ";
- }
- else
- $LinkFilter .= " AND ((Status=-1) ";
-
- if($LinkView & $Bit_Ed)
- {
- $LinkFilter .= " OR (EditorsPick=1) ";
- }
-
- if($LinkView & $Bit_New)
- {
- $cutoff = adodb_date("U") - ($objConfig->Get("Link_NewDays") * 86400);
- $LinkFilter .= " OR (CreatedOn > ".$cutoff.") ";
- }
- if($LinkView & $Bit_Pop)
- {
- $cutoff = $objLinkList->GetPopValue();
- if($cutoff>0)
- $LinkFilter .= " OR (CachedRating >= ".$cutoff.") ";
- }
-
- if($LinkView & $Bit_Hot)
- {
- $cutoff = $objLinkList->GetHotValue();
- if($cutoff>0)
- $LinkFilter .= " OR (Hits >= ".$cutoff.") ";
- }
-
- $LinkFilter .= ")";
- }
-
- $list = $objSession->GetVariable("SearchWord");
- $LinkSearch = (strlen($list)>0 && $SearchType =="Links" || $SearchType="all");// || (strlen($list)==0);
- $objLinkList->Clear();
- $objLinkList->EnablePaging=TRUE;
-
- $LinkSearch = $LinkSearch && ($objSession->HasCatPermission("LINK.VIEW"));
- $lt = $objLinkList->SourceTable;
- $catjoin = GetTablePrefix()."CategoryItems";
- $cattable = $objCatList->SourceTable;
-
- $order = "EditorsPick DESC, Priority DESC";
-
- $sql = "SELECT * FROM $lt ";
- $sql .= "INNER JOIN $catjoin ON ($lt.ResourceId=$catjoin.ItemResourceId) ";
-
- if($LinkSearch)
- {
- $lado = &GetADODBConnection();
- $tsql = $sql." WHERE OrgId IS NOT NULL AND OrgId>0 AND CategoryId=".$objCatList->CurrentCategoryID();
- $rs = $lado->Execute($tsql);
- $OrgIds = array();
- while($rs && !$rs->EOF)
- {
- $OrgIds[] = $rs->fields["OrgId"];
- $rs->MoveNext();
- }
- if(count($OrgIds)>0)
- {
- $LinkFilter .= " AND (LinkId NOT IN (".implode(",",$OrgIds)."))";
- }
- $order = $objLinkList->QueryOrderByClause(TRUE,TRUE,TRUE);
- if(strlen($list)==0)
- {
- $where = "WHERE CategoryId=".$objCatList->CurrentCategoryID().$LinkFilter;
- }
- else
- {
- $SearchQuery = $objLinkList->AdminSearchWhereClause($list);
- if(strlen($SearchQuery))
- {
- $SearchQuery = " AND (".$SearchQuery.")";
- if(strlen($CatScopeClause))
- $SearchQuery .= " AND ".$CatScopeClause;
- $where = $SearchQuery.$LinkFilter;
- }
- else
- $where = "WHERE CategoryId=".$objCatList->CurrentCategoryID().$LinkFilter;
- }
- $sql .= $where." ".$order;
-
- $objLinkList->Query_Item($sql);
-
- $counting_clause = ' (CategoryId = '.$objCatList->CurrentCategoryID().') AND (OrgId IS NULL OR OrgId = 0) ';
-
- if (strlen($list) > 0) {
- $objLinkList->QueryItemCount = TableCount($objLinkList->SourceTable, ' CategoryId = '.$objCatList->CurrentCategoryID().$where,TRUE);
- }
- else {
- $objLinkList->QueryItemCount = TableCount($objLinkList->SourceTable,$counting_clause,TRUE);
- }
- $CatTotal = TableCount($objLinkList->SourceTable, $counting_clause, true);
-
- $ItemTabs->AddTab(language("la_ItemTab_Links"),"links",$objLinkList->QueryItemCount, $m_tab_Links_hide,$CatTotal);
- }
-
- $caption = language("la_ItemTab_Links");
-
-
- $lang_URL = language("la_prompt_URL");
- $lang_Links = language("la_Text_Links");
- $lang_Reviews = language("la_Text_Reviews");
-
-
- $TotalItemCount += $objLinkList->QueryItemCount;
- $Link_Paste = "false";
- if($objLinkList->ItemsOnClipboard()>0)
- $Link_Paste = "true";
-
-print <<<END
-
-<script language="JavaScript">
-var Link_SortField = '$Link_SortField';
-var Link_SortOrder = '$Link_SortOrder';
-var Links_Perpage = $Perpage_Links;
-var LinkView = $LinkView;
-var LinkTitle = '$caption';
-var lang_URL = "$lang_URL";
-var lang_Links = "$lang_Links";
-var lang_Reviews = "$lang_Reviews";
-var Links_Paste = $Link_Paste;
-
-PasteButton = PasteButton || Links_Paste;
-
-\$fw_menus['l_view_menu'] = function ()
-{
- // filtring menu
- \$Menus['l_filtring_menu'] = new Menu('View');
- \$Menus['l_filtring_menu'].addMenuItem(lang_All,"config_val('Link_View', $Links_AllValue);",LinkView==$Links_AllValue);
- \$Menus['l_filtring_menu'].addMenuItem(lang_None,"config_val('Link_View', 0);",LinkView==0);
- \$Menus['l_filtring_menu'].addMenuSeparator();
- \$Menus['l_filtring_menu'].addMenuItem(lang_Active,"FlipBit('Link_View',LinkView,6);",BitStatus(LinkView,6));
- \$Menus['l_filtring_menu'].addMenuItem(lang_Pending,"FlipBit('Link_View',LinkView,5);", BitStatus(LinkView,5));
- \$Menus['l_filtring_menu'].addMenuItem(lang_Disabled,"FlipBit('Link_View',LinkView,4);",BitStatus(LinkView,4));
- \$Menus['l_filtring_menu'].addMenuSeparator();
- \$Menus['l_filtring_menu'].addMenuItem(lang_New,"FlipBit('Link_View',LinkView,3);",BitStatus(LinkView,3));
- \$Menus['l_filtring_menu'].addMenuItem(lang_Pop,"FlipBit('Link_View',LinkView,1);",BitStatus(LinkView,1));
- \$Menus['l_filtring_menu'].addMenuItem(lang_Hot,"FlipBit('Link_View',LinkView,2);",BitStatus(LinkView,2));
- \$Menus['l_filtring_menu'].addMenuItem(lang_EdPick,"FlipBit('Link_View',LinkView,0);",BitStatus(LinkView,0));
-
- // sorting menu
- \$Menus['l_sorting_menu'] = new Menu('Sort');
- \$Menus['l_sorting_menu'].addMenuItem(lang_Asc,"config_val('Link_SortOrder','asc');",RadioIsSelected(Link_SortOrder,'asc'));
- \$Menus['l_sorting_menu'].addMenuItem(lang_Desc,"config_val('Link_SortOrder','desc');",RadioIsSelected(Link_SortOrder,'desc'));
- \$Menus['l_sorting_menu'].addMenuSeparator();
- \$Menus['l_sorting_menu'].addMenuItem(lang_Default,"config_val('Link_SortField','Name');","");
- \$Menus['l_sorting_menu'].addMenuItem(lang_Name,"config_val('Link_SortField','Name');",RadioIsSelected(Link_SortField,'Name'));
- \$Menus['l_sorting_menu'].addMenuItem(lang_URL,"config_val('Link_SortField','Url');",RadioIsSelected(Link_SortField,'Url'));
- \$Menus['l_sorting_menu'].addMenuItem(lang_CreatedOn,"config_val('Link_SortField','CreatedOn');",RadioIsSelected(Link_SortField,'CreatedOn'));
- \$Menus['l_sorting_menu'].addMenuItem(lang_Reviews,"config_val('Link_SortField','CachedReviewsQty');",RadioIsSelected(Link_SortField,'CachedReviewsQty'));
- \$Menus['l_sorting_menu'].addMenuItem(lang_Rating,"config_val('Link_SortField','CachedRating');",RadioIsSelected(Link_SortField,'CachedRating'));
- \$Menus['l_sorting_menu'].addMenuItem(lang_Votes,"config_val('Link_SortField','CachedVotesQty');",RadioIsSelected(Link_SortField,'CachedVotesQty'));
- \$Menus['l_sorting_menu'].addMenuItem(lang_Hits,"config_val('Link_SortField','Hits');",RadioIsSelected(Link_SortField,'Hits'));
-
- // perpage menu
- \$Menus['l_perpage_menu'] = new Menu(lang_PerPage);
- \$Menus['l_perpage_menu'].addMenuItem("10","config_val('Perpage_Links', '10');",RadioIsSelected(Links_Perpage,10));
- \$Menus['l_perpage_menu'].addMenuItem("20","config_val('Perpage_Links', '20');",RadioIsSelected(Links_Perpage,20));
- \$Menus['l_perpage_menu'].addMenuItem("50","config_val('Perpage_Links', '50');",RadioIsSelected(Links_Perpage,50));
- \$Menus['l_perpage_menu'].addMenuItem("100","config_val('Perpage_Links', '100');",RadioIsSelected(Links_Perpage,100));
- \$Menus['l_perpage_menu'].addMenuItem("500","config_val('Perpage_Links', '500');",RadioIsSelected(Links_Perpage,500));
-
- // select menu
- \$Menus['l_select_menu'] = new Menu('Select');
- \$Menus['l_select_menu'].addMenuItem(lang_All,"javascript:selectAllC('"+activeTab.id+"');","");
- \$Menus['l_select_menu'].addMenuItem(lang_Unselect,"javascript:unselectAll('"+activeTab.id+"');","");
- \$Menus['l_select_menu'].addMenuItem(lang_Invert,"javascript:invert('"+activeTab.id+"');","");
-
- // view menu
- \$Menus['l_view_menu'] = new Menu(lang_Links);
- \$Menus['l_view_menu'].addMenuItem( \$Menus['l_filtring_menu'] );
- \$Menus['l_view_menu'].addMenuItem( \$Menus['l_sorting_menu'] );
- \$Menus['l_view_menu'].addMenuItem( \$Menus['l_perpage_menu'] );
- \$Menus['l_view_menu'].addMenuItem( \$Menus['l_select_menu'] );
-}
-
-</script>
-
-END;
-
- }
-
-?>
Property changes on: trunk/in-link/admin/include/toolbar/browse.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.18
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-link/admin/include/toolbar/advanced_view.php
===================================================================
--- trunk/in-link/admin/include/toolbar/advanced_view.php (revision 12828)
+++ trunk/in-link/admin/include/toolbar/advanced_view.php (nonexistent)
@@ -1,236 +0,0 @@
-<?php
-global $objConfig, $objSession, $objLinkList, $ItemTabs, $TotalItemCount;
-global $Bit_All,$Bit_Pending,$Bit_Disabled,$Bit_New,$Bit_Pop,$Bit_Hot,$Bit_Ed,$DefaultTab;
-
-if(strlen($DefaultTab))
-{
- $m_tab_Links_hide = ($DefaultTab=="links") ? 0 : 1;
-}
-else
-{
- $m_tab_Links_hide = 0;
-}
-
-
-$LinkView = $objConfig->Get("Link_View");
-
-$Links_AllValue = 127;
-
-if(!is_numeric($LinkView))
-{
- $LinkView = 127;
-}
-
-$Link_SortField = $objConfig->Get('Link_SortField');
-if( !strlen($Link_SortField) ) $Link_SortField = 'Priority';
-
-$Link_SortOrder = $objConfig->Get('Link_SortOrder');
-if( !strlen($Link_SortOrder) ) $Link_SortOrder = 'desc';
-
-$Perpage_Links = (int)$objConfig->Get("Perpage_Links");
-if(!$Perpage_Links)
- $Perpage_Links="'all'";
-
-
-if($LinkView == $Links_AllValue)
-{
- $Link_ShowAll = 1;
- $LinkFilter = "";
-}
-else
-{
- // FILTERING CODE V. 1.2
- $where_clauses = Array(); $q = '';
-
- // Group #1: Link Statuses (active,pending,disabled)
- $Status = array(-1);
- if($LinkView & $Bit_Pending) {
- $Status[] = STATUS_PENDING;
- $Status[] = -2;
- }
- if($LinkView & $Bit_Active) $Status[] = STATUS_ACTIVE;
- if($LinkView & $Bit_Disabled) $Status[] = STATUS_DISABLED;
- if( count($Status) ) $where_clauses[] = 'Status IN ('.implode(',', $Status).')';
-
- // Group #2: Link Statistics (new,popular,hot,pick)
- $Status = array();
- if(!($LinkView & $Bit_New))
- {
- $cutoff = adodb_date("U") - ($objConfig->Get("Link_NewDays") * 86400);
- if($cutoff > 0) $q = 'CreatedOn > '.$cutoff;
- $q .= (!empty($q) ? ' OR ' : '').'NewItem = 1';
- $Status[] = "NOT ($q)";
- }
-
- if(!($LinkView & $Bit_Pop))
- {
- $cutoff = $objLinkList->GetPopValue();
- if($cutoff > 0) $q = 'CachedRating >= '.$cutoff;
- $q .= ' AND CachedVotesQty >= '.$objConfig->Get('Link_MinPopVotes');
- $q .= (!empty($q) ? ' OR ' : '').'PopItem = 1';
- $Status[] = "NOT ($q)";
- }
-
- if(!($LinkView & $Bit_Hot))
- {
- $cutoff = $objLinkList->GetHotValue();
- if($cutoff > 0) $q = 'Hits >= '.$cutoff;
- $q .= (!empty($q) ? ' OR ' : '').'HotItem = 1';
- $Status[] = "NOT ($q)";
- }
-
- if(!($LinkView & $Bit_Ed)) $Status[] = 'NOT (EditorsPick = 1)';
- if( count($Status) )
- $where_clauses[] = '('.implode(') AND (', $Status).')';
-
- $LinkFilter = count($where_clauses) ? '('.implode(') AND (', $where_clauses).')' : '';
-}
-
-$list = $objSession->GetVariable("l_adv_view_search");
-
-$objLinkList->Clear();
-$objLinkList->EnablePaging=TRUE;
-
-$lt = $objLinkList->SourceTable;
-$catjoin = GetTablePrefix()."CategoryItems";
-$cattable = $objCatList->SourceTable;
-
-$order = "EditorsPick DESC, Priority DESC";
-
-$sql = "SELECT * FROM $lt ";
-//$sql .= "INNER JOIN $catjoin ON ($lt.ResourceId=$catjoin.ItemResourceId) ";
-
-
- $lado = &GetADODBConnection();
- $tsql = $sql." WHERE OrgId IS NOT NULL AND OrgId>0 ";
- $rs = $lado->Execute($tsql);
- $OrgIds = array();
- while($rs && !$rs->EOF)
- {
- $OrgIds[] = $rs->fields["OrgId"];
- $rs->MoveNext();
- }
- if(count($OrgIds)>0)
- {
- $LinkFilter .= ($LinkFilter ? ' AND ' : '')." (LinkId NOT IN (".implode(",",$OrgIds)."))";
- }
- $order = $objLinkList->QueryOrderByClause(TRUE,TRUE,TRUE);
- //echo "OBQ: $order<br>";
- if(strlen($list)==0)
- {
- $where = $LinkFilter ? "WHERE ".$LinkFilter : '';
- $SearchQuery = '';
- }
- else
- {
- $SearchQuery = $objLinkList->AdminSearchWhereClause($list);
- if(strlen($SearchQuery))
- {
- $SearchQuery = " (".$SearchQuery.")".($LinkFilter ? ' AND ('.$LinkFilter.')' : '');
- $where = 'WHERE '.$SearchQuery;
- }
- else
- $where = $LinkFilter ? "WHERE ".$LinkFilter : '';
- }
- $sql .= $where." ".$order;
-
-
-//echo "<b>Links SQL</b>: $sql<br>";
- $objLinkList->Query_Item($sql,false,'set_last');
-
- $objLinkList->QueryItemCount = TableCount($objLinkList->SourceTable,($SearchQuery ? $SearchQuery : $LinkFilter),0);
- $CatTotal = TableCount($objLinkList->SourceTable,null,0);
-
- $caption = language("la_ItemTab_Links");
- $ItemTabs->AddTab(language("la_ItemTab_Links"),"links",$objLinkList->QueryItemCount, $m_tab_Links_hide,$CatTotal);
-
-$lang_URL = language("la_prompt_URL");
-$lang_Links = language("la_Text_Links");
-$lang_Reviews = language("la_Text_Reviews");
-
-
-$TotalItemCount += $objLinkList->QueryItemCount;
-$Link_Paste = "false";
-if($objLinkList->ItemsOnClipboard()>0)
- $Link_Paste = "true";
-
-print <<<END
-
-<script language="JavaScript">
-var Link_SortField = '$Link_SortField';
-var Link_SortOrder = '$Link_SortOrder';
-var Links_Perpage = $Perpage_Links;
-var LinkView = $LinkView;
-var LinkTitle = '$caption';
-var lang_URL = "$lang_URL";
-var lang_Links = "$lang_Links";
-var lang_Reviews = "$lang_Reviews";
-var Links_Paste = $Link_Paste;
-
-PasteButton = PasteButton || Links_Paste;
-
- \$fw_menus['l_view_menu'] = function()
- {
- // filtring menu
- \$Menus['l_filtring_menu'] = new Menu(lang_View);
- \$Menus['l_filtring_menu'].addMenuItem(lang_All,"config_val('Link_View', $Links_AllValue);",LinkView==$Links_AllValue);
- \$Menus['l_filtring_menu'].addMenuItem(lang_None,"config_val('Link_View', 0);",LinkView==0);
- \$Menus['l_filtring_menu'].addMenuSeparator();
- \$Menus['l_filtring_menu'].addMenuItem(lang_Active,"FlipBit('Link_View',LinkView,6);",BitStatus(LinkView,6));
- \$Menus['l_filtring_menu'].addMenuItem(lang_Pending,"FlipBit('Link_View',LinkView,5);", BitStatus(LinkView,5));
- \$Menus['l_filtring_menu'].addMenuItem(lang_Disabled,"FlipBit('Link_View',LinkView,4);",BitStatus(LinkView,4));
- \$Menus['l_filtring_menu'].addMenuSeparator();
- \$Menus['l_filtring_menu'].addMenuItem(lang_New,"FlipBit('Link_View',LinkView,3);",BitStatus(LinkView,3));
- \$Menus['l_filtring_menu'].addMenuItem(lang_Pop,"FlipBit('Link_View',LinkView,2);",BitStatus(LinkView,2));
- \$Menus['l_filtring_menu'].addMenuItem(lang_Hot,"FlipBit('Link_View',LinkView,1);",BitStatus(LinkView,1));
- \$Menus['l_filtring_menu'].addMenuItem(lang_EdPick,"FlipBit('Link_View',LinkView,0);",BitStatus(LinkView,0));
-
- // sorting menu
- \$Menus['l_sorting_menu'] = new Menu(lang_Sort);
- \$Menus['l_sorting_menu'].addMenuItem(lang_Asc,"config_val('Link_SortOrder','asc');",RadioIsSelected(Link_SortOrder,'asc'));
- \$Menus['l_sorting_menu'].addMenuItem(lang_Desc,"config_val('Link_SortOrder','desc');",RadioIsSelected(Link_SortOrder,'desc'));
- \$Menus['l_sorting_menu'].addMenuSeparator();
- \$Menus['l_sorting_menu'].addMenuItem(lang_Default,"config_val('Link_SortField','Name');","");
- \$Menus['l_sorting_menu'].addMenuItem(lang_Name,"config_val('Link_SortField','Name');",RadioIsSelected(Link_SortField,'Name'));
- \$Menus['l_sorting_menu'].addMenuItem(lang_URL,"config_val('Link_SortField','Url');",RadioIsSelected(Link_SortField,'Url'));
- \$Menus['l_sorting_menu'].addMenuItem(lang_CreatedOn,"config_val('Link_SortField','CreatedOn');",RadioIsSelected(Link_SortField,'CreatedOn'));
- \$Menus['l_sorting_menu'].addMenuItem(lang_Reviews,"config_val('Link_SortField','CachedReviewsQty');",RadioIsSelected(Link_SortField,'CachedReviewsQty'));
- \$Menus['l_sorting_menu'].addMenuItem(lang_Rating,"config_val('Link_SortField','CachedRating');",RadioIsSelected(Link_SortField,'CachedRating'));
- \$Menus['l_sorting_menu'].addMenuItem(lang_Votes,"config_val('Link_SortField','CachedVotesQty');",RadioIsSelected(Link_SortField,'CachedVotesQty'));
- \$Menus['l_sorting_menu'].addMenuItem(lang_Hits,"config_val('Link_SortField','CachedHits');",RadioIsSelected(Link_SortField,'CachedHits'));
-
- // perpage menu
- \$Menus['l_perpage_menu'] = new Menu(lang_PerPage);
- \$Menus['l_perpage_menu'].addMenuItem("10","config_val('Perpage_Links', '10');",RadioIsSelected(Links_Perpage,10));
- \$Menus['l_perpage_menu'].addMenuItem("20","config_val('Perpage_Links', '20');",RadioIsSelected(Links_Perpage,20));
- \$Menus['l_perpage_menu'].addMenuItem("50","config_val('Perpage_Links', '50');",RadioIsSelected(Links_Perpage,50));
- \$Menus['l_perpage_menu'].addMenuItem("100","config_val('Perpage_Links', '100');",RadioIsSelected(Links_Perpage,100));
- \$Menus['l_perpage_menu'].addMenuItem("500","config_val('Perpage_Links', '500');",RadioIsSelected(Links_Perpage,500));
-
- // select menu
- \$Menus['l_select_menu'] = new Menu(lang_Select);
- \$Menus['l_select_menu'].addMenuItem(lang_All,"javascript:selectAllC('"+activeTab.id+"');","");
- \$Menus['l_select_menu'].addMenuItem(lang_Unselect,"javascript:unselectAll('"+activeTab.id+"');","");
- \$Menus['l_select_menu'].addMenuItem(lang_Invert,"javascript:invert('"+activeTab.id+"');","");
-
- // view menus
- \$Menus['l_view_menu'] = new Menu(LinkTitle);
- \$Menus['l_view_menu'].addMenuItem( \$Menus['l_filtring_menu'] );
- \$Menus['l_view_menu'].addMenuItem( \$Menus['l_sorting_menu'] );
- \$Menus['l_view_menu'].addMenuItem( \$Menus['l_perpage_menu'] );
- \$Menus['l_view_menu'].addMenuItem( \$Menus['l_select_menu'] );
- }
-
- function SubmitSearch(formname, action)
- {
- var f = document.getElementById(formname);
- if(f)
- {
- f.Action.value = action;
- f.submit();
- }
- }
-</script>
-
-END;
-?>
Property changes on: trunk/in-link/admin/include/toolbar/advanced_view.php
___________________________________________________________________
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-link/admin/include/toolbar/editlink_relations.php
===================================================================
--- trunk/in-link/admin/include/toolbar/editlink_relations.php (revision 12828)
+++ trunk/in-link/admin/include/toolbar/editlink_relations.php (nonexistent)
@@ -1,204 +0,0 @@
-<?php
-global $envar,$rootURL,$imagesURL, $RelFilter, $adminURL,$admin;
-
-$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("LinkRel_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("LinkRelation_LV_Sortorder");
-if(!strlen($SortOrder))
- $SortOrder = "desc";
-
-$SortField = $objConfig->Get("LinkRelation_LV_Sortfield");
-if(!strlen($SortField))
- $SortField = "ItemName";
-
-$lang_Links = language("la_Text_Links");
-$lang_Articles = language("la_Text_Articles");
-$lang_Topics = language("la_Text_Topics");
-$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('LinkRel_View',$Rel_AllValue);",RelView==$Rel_AllValue);
- menu_filter.addMenuSeparator();
-
- menu_filter.addMenuItem(lang_Categories,"FlipBit('LinkRel_View',RelView,0);",BitStatus(RelView,0));
- menu_filter.addMenuItem(lang_Links,"FlipBit('LinkRel_View',RelView,1);",BitStatus(RelView,1));
- menu_filter.addMenuItem(lang_Articles,"FlipBit('LinkRel_View',RelView,2);",BitStatus(RelView,2));
- menu_filter.addMenuItem(lang_Topics,"FlipBit('LinkRel_View',RelView,3);",BitStatus(RelView,3));
- menu_filter.addMenuSeparator();
-
- menu_filter.addMenuItem(lang_OneWay,"FlipBit('LinkRel_View',RelView,4);",BitStatus(RelView,4));
- menu_filter.addMenuItem(lang_Recip,"FlipBit('LinkRel_View',RelView,5);",BitStatus(RelView,5));
- menu_filter.addMenuSeparator();
- menu_filter.addMenuItem(lang_Enabled,"FlipBit('LinkRel_View',RelView,6);",BitStatus(RelView,6));
- menu_filter.addMenuItem(lang_Disabled,"FlipBit('LinkRel_View',RelView,7);",BitStatus(RelView,7));
-
-
- window.menu_sorting = new Menu(lang_Sort);
- menu_sorting.imagePath = "$imagesURL"+'/';
- menu_sorting.addMenuItem(lang_Asc,"config_val('LinkRelation_LV_Sortorder','asc');",RadioIsSelected(Rel_Sortorder,'asc'));
- menu_sorting.addMenuItem(lang_Desc,"config_val('LinkRelation_LV_Sortorder','desc');",RadioIsSelected(Rel_Sortorder,'desc'));
- menu_sorting.addMenuSeparator();
- menu_sorting.addMenuItem(lang_Default,"config_val('LinkRelation_LV_Sortfield','ItemName');","");
- menu_sorting.addMenuItem(lang_ItemName,"config_val('LinkRelation_LV_Sortfield','ItemName');",RadioIsSelected(Rel_Sortfield,'ItemName'));
- menu_sorting.addMenuItem(lang_ItemType,"config_val('LinkRelation_LV_Sortfield','ItemType');",RadioIsSelected(Rel_Sortfield,'ItemType'));
- menu_sorting.addMenuItem(lang_RelType,"config_val('LinkRelation_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;
-}
-
-
-//-->
-</script>
-
-END;
-?>
\ No newline at end of file
Property changes on: trunk/in-link/admin/include/toolbar/editlink_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-link/admin/include/summary/site.php
===================================================================
--- trunk/in-link/admin/include/summary/site.php (revision 12828)
+++ trunk/in-link/admin/include/summary/site.php (nonexistent)
@@ -1,114 +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_Categories = admin_language("la_tab_Categories");
-$lang_Posts = admin_language("la_Text_Posts");
-
-$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");
-
-global $adminURL, $rootURL,$admin,$objLinkList;
-
-$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 = $objLinkList->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);
-
-$PopVal = $objLinkList->GetPopValue();
-$Pop = TableCount($table,"CachedVotesQty >=".$PopVal.' OR PopItem = 1',0);
-
-$HotVal = $objLinkList->GetHotValue();
-$Hot = TableCount($table,"Hits >=".$HotVal.' OR HotItem = 1',0);
-
-$NewVal = adodb_date("U") - ($objConfig->Get("News_NewDays") * 86400);
-$where = "(CreatedOn > ".$NewVal." AND NewItem=".AUTO.") OR NewItem=".ALWAYS;
-$New = TableCount($table,$where ,0);
-
-$ConfigVar = "Link_View";
-$CurrentVal = $objConfig->Get($ConfigVar);
-$TabName = "links";
-$iconURL = $rootURL."in-link/admin/images";
-
-$icon_basename = $iconURL."/icon16_link";
-$activeicon = $icon_basename.".gif";
-$newicon = $icon_basename."_new.gif";
-$pendingicon = $icon_basename."_pending.gif";
-$hoticon = $icon_basename."_hot.gif";
-$disabledicon = $icon_basename."_disabled.gif";
-$popicon = $icon_basename."_top.gif";
-$pickicon = $icon_basename."_pick.gif";
-print <<<END
-
- <div isBox="true" id="links" SortValue="4" 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_Links</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="$activeicon" 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="$newicon" 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="$pendingicon" 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="$hoticon" 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="$disabledicon" 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="$popicon" 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="$pickicon" border="0" align="absMiddle"> $lang_EdPick <span class="info">($Pick)</span></a>
- </td>
- </tr>
- </table>
- </div>
- <img src="images/spacer.gif" height="21" width="1">
- </div>
- </DIV>
-END;
-?>
Property changes on: trunk/in-link/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-link/admin/include/backup.php
===================================================================
--- trunk/in-link/admin/include/backup.php (revision 12828)
+++ trunk/in-link/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["Link"][]="";
-
-
-?>
Property changes on: trunk/in-link/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-link/admin/include/style.css
===================================================================
--- trunk/in-link/admin/include/style.css (revision 12828)
+++ trunk/in-link/admin/include/style.css (nonexistent)
@@ -1,36 +0,0 @@
-.link {
- FONT-SIZE: 9pt; COLOR: #1F569A; FONT-FAMILY: arial, helvetica, sans-serif
-}
-.link:hover {
- FONT-SIZE: 9pt; COLOR: #009ff0; FONT-FAMILY: arial, helvetica, sans-serif
-}
-.link_rate {
- FONT-SIZE: 12px; COLOR: #006600; FONT-FAMILY: arial, helvetica, sans-serif; TEXT-DECORATION: none
-}
-.link_review {
- FONT-SIZE: 12px; COLOR: #a27900; FONT-FAMILY: arial, helvetica, sans-serif; TEXT-DECORATION: none
-}
-.link_modify {
- FONT-SIZE: 12px; COLOR: #800000; FONT-FAMILY: arial, helvetica, sans-serif; TEXT-DECORATION: none
-}
-.link_div {
- FONT-SIZE: 12px; COLOR: #000000; FONT-FAMILY: arial, helvetica, sans-serif; TEXT-DECORATION: none
-}
-.link_desc {
- FONT-SIZE: 9pt; COLOR: black; FONT-FAMILY: arial,verdana,sans-serif
-}
-.link_detail {
- FONT-SIZE: 11px; COLOR: #707070; FONT-FAMILY: arial,verdana,sans-serif
-}
-.link_new {
- FONT-SIZE: 12px; VERTICAL-ALIGN: super; COLOR: blue; FONT-FAMILY: arial, verdana, sans-serif
-}
-.link_top {
- FONT-SIZE: 12px; VERTICAL-ALIGN: super; COLOR: red; FONT-FAMILY: arial, verdana, sans-serif
-}
-.link_pop {
- FONT-SIZE: 12px; VERTICAL-ALIGN: super; COLOR: orange; FONT-FAMILY: arial, verdana, sans-serif
-}
-.link_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-link/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-link/admin/include/parser.php
===================================================================
--- trunk/in-link/admin/include/parser.php (revision 12828)
+++ trunk/in-link/admin/include/parser.php (nonexistent)
@@ -1,66 +0,0 @@
-<?php
- function adListLinks($template)
- {
- global $objLinkList;
-
- $link_list = $objLinkList->NumItems();
- if ($link_list == 0) return '';
- $o = '';
- foreach($objLinkList->Items as $link)
- $o.= $link->AdminParseTemplate($template);
-
- return $o;
- }
-
- function l_GetModuleInfo($info_type)
- {
- // get information for building sql in
-
-
- switch($info_type)
- {
- case 'module_name':
- return 'in-link';
- break;
-
- case 'review_section':
- return 'in-link:editlink_review';
- break;
-
- case 'rel_list': // Edit Category -> Relations List
- return Array( 'MainTable' => 'Link', 'ItemNameField' => 'Name',
- 'ItemNamePhrase' => 'la_Text_Link', 'TargetType' => 4,
- 'EditFile'=>'addlink.php','EnvIDField'=>'id');
- break;
-
- case 'summary_pending':
- global $rootURL;
- $imagesURL = $rootURL.l_GetModuleInfo('module_name').'/admin/images'; // don't globalize
- $ret = Array();
- $ret[] = Array( 'link' => "PendingLink('links','Link_View',47)",
- 'icon_image' => $imagesURL.'/icon16_link_pending.gif',
- 'phrase' => 'la_Text_Links', 'list_var_name' => 'objLinkList');
- return $ret;
- break;
-
- case 'all_bitmask': // return bitmask value equals to "all" for module filter
- return Array('VarName' => 'Link_View', 'Bits' => 127);
- break;
-
- case 'dupe_resourceids':
- $ret=Array();
- $ret[]=Array('Table'=>'Link','IDField'=>'LinkId');
- return $ret;
-
- case 'catalog_template':
- return 'in-link/links/links_catalog';
- break;
-
- case 'filenames':
- return Array('prefix' => 'l', 'table' => 'Link', 'id_field' => 'LinkId', 'title_field' => 'Name');
- break;
- }
-
- return false;
- }
-?>
Property changes on: trunk/in-link/admin/include/parser.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-link/admin/include/help/validation_list.txt
===================================================================
--- trunk/in-link/admin/include/help/validation_list.txt (revision 12828)
+++ trunk/in-link/admin/include/help/validation_list.txt (nonexistent)
@@ -1,12 +0,0 @@
-
-This section allows the administrator to validate links in the directory. The section lists all links in the database, displays their current validation status, and shows the URL of each link for manual verification.
-<h4><li> Continue Validation </h4>
-Since link validation is a batch job that takes a long time even on moderate size databases, it is common for administrators to run it in several sessions. The Continue Validation' function allows the administrator to continue the process where it was left off. It also detects new links added to the database since the last session, and adds them to the validation batch.
-<h4><li> New Validation </h4>
-This function restarts the entire validation process and resets the validation status on all links. You should use it periodically, for example once a quarter, to ensure that all links in your database remain valid, or when there are major changes in your database.
-<h4><li> Validate </h4>
-This function validates a specific link or a selection of links. It is designed for one-time uses, for example, when you want to verify the newly added links without having to wait for the batch process.
-<h4><li> Reset Validation Status </h4>
-This function resets validation status on a link or a selection of links. The batch verification will automatically schedule them to be validated again.
-<h4><li> Delete </h4>
-This function deletes a link or a selection of links. This is a shortcut for cleaning the database from the invalid, or dead, links. It is the same as the Delete' function in the main Catalog.
\ No newline at end of file
Property changes on: trunk/in-link/admin/include/help/validation_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-link/admin/include/help/in-link.txt
===================================================================
--- trunk/in-link/admin/include/help/in-link.txt (revision 12828)
+++ trunk/in-link/admin/include/help/in-link.txt (nonexistent)
@@ -1,16 +0,0 @@
-<b>In-link 2 Import</b><br>
-
-<p>The import is designed for In-link version 2.3.4, however it will work, or partially work, for most of the older In-link2 versions up to 2.0.10. If you have one of the older In-link2 versions and are experiencing problems, please upgrade your In-link2 to the version 2.3.4, and then run this import. </p>
-It is not possible to use In-link2 import if you do not have In-link3 installed on your In-portal platform. Some In-link2 license holders are entitled to a complimentary In-link3 license, please go to your account at <a href="http://www.intechnic.com/myaccount">http://www.intechnic.com/myaccount </a> for more information, or submit a support ticket.
-
-<br><br>
-
-<b>Step 4</b><br>
-
-<p>In this step, the administrator will need to designate the options of the import – how the In-link2 data is supposed to be integrated into In-portal and In-link3. </p>
-<ul>
-<li> Administrative Group – this field designates the In-portal administrative group (by default, ‘Admin'), into which the old In-link2 administrators should be imported. You can choose a different group for the import, and then designate the administrative users later. Clicking on the group button will pop up a list of In-portal groups.
-<li> Regular User Group - this field designates the In-portal group (by default, ‘Members'), into which the old In-link2 users (link owners) should be imported. It is recommended to import then into a group that will give them access to the front-end, and to modify their links. 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.
-<li> Initial Import Category – this field designates the In-portal category, which will serve as a root for the In-link2 import. This category will be the equivalent of the Home category in In-link2, and all of the sub-categories will be created underneath. Clicking on the category button (folder icon) will pop up a catalog navigator, where you can select the category.
-<li> Link Image Name – this field designates the link image field in the In-link2 database, which was used to store the link image name. By default, it is ‘link_image' , however many users have used a custom field for this purpose, in which case you should enter the custom field name here.
-</ul>
Property changes on: trunk/in-link/admin/include/help/in-link.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-link/admin/addlink.php
===================================================================
--- trunk/in-link/admin/addlink.php (revision 12828)
+++ trunk/in-link/admin/addlink.php (nonexistent)
@@ -1,621 +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-link/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-link/";
-
-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);
-
-// --------------------------------------------------------------------
-function GetOriginalValue($field)
-{
- global $Org, $c;
- if(is_object($Org))
- {
- $OrgValue = $Org->Get($field);
- $NewValue = $c->Get($field);
- $class = ($OrgValue != $NewValue) ? 'error' : 'text';
- return '<SPAN CLASS="'.$class.'">'.$OrgValue.'</SPAN>';
- }
-}
-// --------------------------------------------------------------------
-
-$objEditItems = new clsLinkList();
-
-$objRelList = new clsRelationshipList();
-$objReviewList = new clsItemReviewList();
-$objImages = new clsImageList();
-$application->SetVar('l_mode', 't');
-$objCustomFields = new clsCustomFieldList(4);
-$objCustomDataList = new clsCustomDataList();
-
-//Multiedit init
-if ($_GET["new"] == 1)
-{
- $objEditItems->SourceTable = $objSession->GetEditTable("Link");
- $objEditItems->EnablePaging = FALSE;
- $c = new clsLink(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);
- $c->Set('AutomaticFilename', 1);
- if($objSession->Get("PortalUserId")>0)
- {
- $u = $objUsers->GetUser($objSession->Get("PortalUserId"));
- $CreatedByName = $u->Get("Login");
- }
- else
- {
- $CreatedByName = "root";
- }
- $en = 0;
- $action = "l_link_add";
- $objLinkList->CreateEmptyEditTable("LinkId");
- $objRelList->CreateEmptyEditTable("RelationshipId");
- $objReviewList->CreateEmptyEditTable("ReviewId");
- $objCustomDataList->CreateEmptyEditTable('l');
- $objLinkList->CreateEmptyCatListTable("ItemResourceId");
- $objImages->CreateEmptyEditTable("ResourceId");
-
- $TitleVerb = prompt_language("la_Text_Adding");
-
-}
-else
-{
- /*$direct_id = GetVar('direct_id');
- if($direct_id) $_POST['linklist'] = Array($direct_id);*/
-
- $env_id = $l_var_list['id'];
- if($env_id) $_POST['linklist'] = Array($env_id);
-
- $en = (int)$_GET["en"];
- if($_GET["item"])
- {
- if($_GET["newsession"]==1)
- {
- $objSession->CopyToNewSession();
- }
-
- /*shortcut to edit link */
- $objLinkList->CopyToEditTable("ResourceId",$_GET["item"]);
- }
- else
- {
- if (GetVar('multiple_ids') == 1) {
- // from K4 template LinkId's are passed here
- SetVar('linklist', array_keys($application->GetVar('l')) );
- }
-
- if (isset($_POST["linklist"]))
- {
- $objLinkList->CopyToEditTable("LinkId",$_POST["linklist"]);
- }
- }
- $objEditItems->SourceTable = $objSession->GetEditTable("Link");
- $objEditItems->EnablePaging = FALSE;
- $objEditItems->Query_Item("SELECT * FROM ".$objEditItems->SourceTable);
- if(isset($_POST["linklist"]) || $_GET["item"])
- {
- $ids = $objEditItems->GetResourceIDList();
- $objRelList->CopyToEditTable("SourceId",$ids);
- $objReviewList->CopyToEditTable("ItemId",$ids);
- $objCustomDataList->CopyToEditTable('l', $ids);
- $objLinkList->CopyCatListToEditTable("ItemResourceId", $ids);
- $objImages->CopyToEditTable("ResourceId",$ids);
- }
-
- $itemcount=$objEditItems->NumItems();
-
- $c = $objEditItems->GetItemByIndex($en);
-
- if($c->Get("CreatedById")>0)
- {
- $u = $objUsers->GetUser($c->Get("CreatedById"));
- $CreatedByName = $u->Get("Login");
- }
- else
- $CreatedByName = "root";
-
- 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 = "l_edit_link";
- $TitleVerb = prompt_language("la_Text_Editing");
-
- /* check to see if this is a pending link */
- //echo "checking<br>";
- //echo "OID_:".$c->Get("OrgId")."<br>";
- if( (int)$c->Get("OrgId") > 0 && $c->Get("Status") == -2 )
- $Org = new clsLink($c->Get("OrgId"));
- else
- $Org = NULL;
- //echo "GC: ".get_class($Org).'<br>';
-}
-
-$envar = "env=" . BuildEnv() . "&en=$en";
-
-$section = 'in-link:editlink_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('link','LinkEditStatus','$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('link','LinkEditStatus','$saveURL',2);","tool_cancel.gif");
-
-if ( isset($en_prev) || isset($en_next) )
-{
- $url = $RootUrl."/in-link/admin/addlink.php";
- $StatusField = "LinkEditStatus";
- $form = "link";
- MultiEditButtons($objCatToolBar,$en_next,$en_prev,$form,$StatusField,$url,$sec->Get("OnClick"));
-}
-
-if (strlen($c->Get("Name")))
- $editing_title = "'".$c->Get("Name")."' ";
-else
- $editing_title = "";
-
-
-$title = $TitleVerb." ".prompt_language("la_Text_Link")." $editing_title- ".prompt_language("la_tab_General");
-
-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="link" name="link" 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" CHECKED>
- <br>
- <?php int_hint(prompt_language("la_Warning_Enable_HTML")); ?>
- </td>
- </tr>
- <?php int_subsection_title(prompt_language("la_Text_Link")); ?>
- <?php if( $c->Get("LinkId") > 0 ) { ?>
- <tr <?php int_table_color(); ?>>
- <td valign="top"><span class="text"><?php echo prompt_language("la_prompt_LinkId"); ?></span></td>
- <td valign="top"><span class="text"><?php echo $c->Get("LinkId"); ?></SPAN></TD>
- <TD><b><?php if( $c->Get("OrgId") ) echo prompt_language("la_origional_values"); ?></b></TD>
- </TR>
- <?php } ?>
- <tr <?php int_table_color(); ?>>
- <td valign="top"><span ID="prompt_link_name" class="text"><?php echo prompt_language("la_prompt_Name"); ?></span></td>
- <td>
- <input type="text" tabindex="2" ValidationType="exists" name="link_name" class="text" size="60" value="<?php echo $c->Get("Name"); ?>">
- </td>
- <td><?php echo GetOriginalValue('Name'); ?></td>
- </tr>
- <tr <?php int_table_color(); ?>>
- <td valign="top"><span ID="prompt_link_desc" class="text"><?php echo prompt_language("la_prompt_Description"); ?></span>
- <br />
- <a href="#">
- <img src="<?php echo $adminURL; ?>/icons/icon24_link_editor.gif" style="cursor:hand" border="0"
- ONCLICK="document.forms[0].elements[0].checked=true; OpenEditor('&section=<?php echo $section; ?>','link','link_desc');">
- </a>
- </td>
- <td>
- <textarea name="link_desc" id="link_desc" tabindex="3" cols="60" rows="5" class="text"><?php echo $c->Get("Description"); ?></textarea>
- </td>
-<td><?php echo GetOriginalValue('Description'); ?></td>
- </tr>
- <tr <?php int_table_color(); ?>>
- <td valign="top" ID="prompt_link_url" class="text"><?php echo prompt_language("la_prompt_URL"); ?></td>
- <td>
- <input type="text" tabindex="4" ValidationType="exists" name="link_url" size="60" class="text" value="<?php echo $c->Get("Url"); ?>">
- </td>
- <td><?php echo GetOriginalValue('Url'); ?></td>
- </tr>
- <tr <?php int_table_color(); ?>>
- <td valign="top"><span ID="prompt_link_owner" class="text"><?php echo prompt_language("la_prompt_link_owner"); ?></span></td>
- <td>
- <input type="text" ValidationType="exists" tabindex="5" name="link_owner" class="text" size="40" value="<?php echo $CreatedByName; ?>">
- <a href="#"><img src="<?php echo $imagesURL; ?>/icon24_link_user.gif" style="cursor:hand" border="0"
- ONCLICK="OpenUserSelector('','','<?php echo $envar; ?>&destform=link&destfield=link_owner&IdField=Login&Selector=radio');"></a></td>
- <td>
-<?php
-if(is_object($Org))
-{
- unset($u);
- if($Org->Get("CreatedById")>0)
- {
- $u = $objUsers->GetUser($Org->Get("CreatedById"));
- $OrgValue = $u->Get("Login");
- }
- else
- $OrgValue = "root";
-
- $NewValue = $CreatedByName;
- 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_auto_filename" class="text"><?php echo prompt_language('la_prompt_AutomaticFilename'); ?></span></td>
- <td>
- <input type="checkbox" tabindex="5" name="auto_filename" id="auto_filename" class="text" value="1"<?php if( $c->Get('AutomaticFilename') == 1) echo ' checked'; ?> onchange="reflect_filename();">
- </td>
- <td class="text">&nbsp;</td>
- </tr>
- <tr <?php int_table_color(); ?>>
- <td valign="top"><span ID="prompt_filename" class="text"><?php echo prompt_language('la_prompt_CustomFilename'); ?></span></td>
- <td>
- <input type="text" name="filename" id="filename" tabindex="1" class="text" size="63" value="<?php echo $c->Get('Filename'); ?>">
- </td>
- <td>&nbsp;</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_Status"); ?></td>
- <td>
- <input type="radio" tabindex="6" 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="6" 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="6" 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="7" 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="7" name="itemnew" class="text" value="1" <?php if($c->Get("NewItem") == 1) echo "checked"; ?>><?php echo prompt_language("la_val_Always"); ?>
- <input type="radio" tabindex="7" name="itemnew" class="text" value="0" <?php if($c->Get("NewItem") == 0) echo "checked"; ?>><?php echo prompt_language("la_val_Never"); ?>
- </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="8" 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="8" name="itemhot" class="text" value="1" <?php if($c->Get("HotItem") == 1) echo "checked"; ?>><?php echo prompt_language("la_val_Always"); ?>
- <input type="radio" tabindex="8" name="itemhot" class="text" value="0" <?php if($c->Get("HotItem") == 0) echo "checked"; ?>><?php echo prompt_language("la_val_Never"); ?>
- </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="9" 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="9" name="itempop" class="text" value="1" <?php if($c->Get("PopItem") == 1) echo "checked"; ?>><?php echo prompt_language("la_val_Always"); ?>
- <input type="radio" tabindex="9" name="itempop" class="text" value="0" <?php if($c->Get("PopItem") == 0) echo "checked"; ?>><?php echo prompt_language("la_val_Never"); ?>
- </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="10" name="link_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 valign="top" class="text"><?php echo prompt_language("la_prompt_Priority"); ?></td>
- <td>
- <input type="text" tabindex="11" name="link_priority" class="text" size="3" value="<?php echo $c->Get("Priority"); ?>">
- </td>
- <td><?php echo GetOriginalValue('Priority'); ?></td>
- </tr>
-
- <tr <?php int_table_color(); ?>>
- <td valign="top"><SPAN id="prompt_link_date" class="text"><?php echo prompt_language("la_prompt_CreatedOn"); ?></SPAN></td>
- <td>
- <input type="text" tabindex="12" ValidationType="date,exists" name="link_date" id="link_date_selector" datepickerIcon="<?php echo $adminURL; ?>/images/ddarrow.gif" class="text" size="20" value="<?php echo $c->parsetag("link_date"); ?>">
- <span class="small"><?php echo prompt_language("la_prompt_DateFormat"); ?></span></td>
- <td>
-<?php
-if(is_object($Org))
-{
- $OrgValue = $Org->parsetag("link_date");
- $NewValue = $c->parsetag("link_date");
- 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_link_expire" class="text"><?php echo prompt_language("la_prompt_Expired"); ?></SPAN></td>
- <td>
- <input type="text" tabindex="13" name="link_expire" id="link_expire_selector" datepickerIcon="<?php echo $adminURL; ?>/images/ddarrow.gif" class="text" size="20" value="<?php echo $c->parsetag("link_expire"); ?>">
- <span class="small"><?php echo prompt_language("la_prompt_DateFormat"); ?></span></td>
- <td>
-<?php
-if(is_object($Org))
-{
- $OrgValue = $Org->parsetag("link_expire");
- $NewValue = $c->parsetag("link_expire");
- 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="14" name="link_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" name="link_votes" tabindex="15" 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_Hits"); ?></td>
- <td>
- <input type="text" tabindex="16" name="link_hits_show" class="text" size="5" value="<?php echo round($c->Get("Hits")); ?>">
- <input type="hidden" name="link_hits" class="text" value="<?php echo $c->Get("Hits"); ?>">
- <span class="small"><?php echo prompt_language("la_prompt_HitLimits"); ?></span></td>
- <td>
-<?php
-if(is_object($Org))
-{
- $OrgValue = (int)$Org->Get("Hits");
- $NewValue = (int)$c->Get("Hits");
- 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 = 16;
- 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="LinkId" value="<?php echo $c->parsetag("link_id"); ?>">
- <input type="hidden" name="Action" value="<?php echo $action; ?>">
- <input type="hidden" name="LinkEditStatus" VALUE="0">
-</FORM>
-
-<form name="fake_form" id="fake_form">
- <input type="hidden" name="destform" value="">
-</form>
-
-</table>
-<script src="<?php echo $adminURL; ?>/include/calendar.js"></script>
-<SCRIPT language="JavaScript">
- initCalendar("link_date_selector", CalDateFormat);
- initCalendar("link_expire_selector", CalDateFormat);
- MarkAsRequired(document.getElementById("link"));
- function reflect_filename($e)
- {
- var $checked = document.getElementById('auto_filename').checked;
- document.getElementById('filename').readOnly = $checked;
- }
- reflect_filename();
-</SCRIPT>
-<FORM method="POST" NAME="save_edit" ID="save_edit">
-</form>
-
-<?php int_footer(); ?>
Property changes on: trunk/in-link/admin/addlink.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.17
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-link/admin/install/prerequisit.php
===================================================================
--- trunk/in-link/admin/install/prerequisit.php (revision 12828)
+++ trunk/in-link/admin/install/prerequisit.php (nonexistent)
@@ -1,43 +0,0 @@
-<?php
-$PreRequisitErrors = Array();
-$path = $pathtoroot."in-link";
-
-$result = true;
-
-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-link/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-link/admin/install/langpacks/english.lang
===================================================================
--- trunk/in-link/admin/install/langpacks/english.lang (revision 12828)
+++ trunk/in-link/admin/install/langpacks/english.lang (nonexistent)
@@ -1,151 +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_ActionsUponExpire" Module="In-Link" Type="1">QWN0aW9ucyBVcG9uIEV4cGlyYXRpb24=</PHRASE>
- <PHRASE Label="la_ActionsUponPurchase" Module="In-Link" Type="1">QWN0aW9ucyBVcG9uIFB1cmNoYXNl</PHRASE>
- <PHRASE Label="la_col_ExpiresOn" Module="In-Link" Type="1">RXhwaXJlcyBPbg==</PHRASE>
- <PHRASE Label="la_col_LinkName" Module="In-Link" Type="1">TGluaw==</PHRASE>
- <PHRASE Label="la_col_LinkOwner" Module="In-Link" Type="1">T3duZXI=</PHRASE>
- <PHRASE Label="la_col_ListingTypeName" Module="In-Link" Type="1">TGlzdGluZyBUeXBl</PHRASE>
- <PHRASE Label="la_col_Modified" Module="In-Link" Type="1">TW9kaWZpZWQ=</PHRASE>
- <PHRASE Label="la_col_PendingRenewal" Module="In-Link" Type="1">UGVuZGluZyBSZW5ld2Fs</PHRASE>
- <PHRASE Label="la_col_PurchasedOn" Module="In-Link" Type="1">RW5hYmxlZCBPbg==</PHRASE>
- <PHRASE Label="la_DecreaseBy" Module="In-Link" Type="1">RGVjcmVhc2UgQnk=</PHRASE>
- <PHRASE Label="la_Description_in-link:duplicate_checker" Module="In-Link" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBtYW5hZ2UgZHVwbGljYXRlIGxpbmtz</PHRASE>
- <PHRASE Label="la_Description_in-link:inlink_paid_listings" Module="In-Link" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBtYW5hZ2UgcGFpZCBsaXN0aW5ncw==</PHRASE>
- <PHRASE Label="la_Description_in-link:paid_listings_folder" Module="In-Link" Type="1">VGhpcyBzZWN0aW9uIGFsbG93cyB0byBtYW5hZ2UgcGFpZCBsaXN0aW5ncw==</PHRASE>
- <PHRASE Label="la_DontChange" Module="In-Link" Type="1">RG9uJ3QgQ2hhbmdl</PHRASE>
- <PHRASE Label="la_event_link.link.enhance" Module="In-Link" Type="1">TGluayBlbmhhbmNlbWVudCBzdWJtaXR0ZWQ=</PHRASE>
- <PHRASE Label="la_event_link.link.enhance.approve" Module="In-Link" Type="1">TGluayBlbmhhbmNlbWVudCBhcHByb3ZlZA==</PHRASE>
- <PHRASE Label="la_event_link.link.enhance.deny" Module="In-Link" Type="1">TGluayBlbmhhbmNlbWVudCBkZW5pZWQ=</PHRASE>
- <PHRASE Label="la_event_link.link.enhance.expire" Module="In-Link" Type="1">TGluayBlbmhhbmNlbWVudCBleHBpcmVk</PHRASE>
- <PHRASE Label="la_event_link.link.enhance.extend" Module="In-Link" Type="1">TGluayBlbmhhbmNlbWVudCByZW5ld2FsIHN1Ym1pdHRlZA==</PHRASE>
- <PHRASE Label="la_event_link.link.enhance.renew" Module="In-Link" Type="1">TGluayBlbmhhbmNlbWVudCBleHRlbmRlZA==</PHRASE>
- <PHRASE Label="la_event_link.link.enhance.renewal_notice" Module="In-Link" Type="1">TGluayBlbmhhbmNlbWVudCBpcyBhYm91dCB0byBleHBpcmU=</PHRASE>
- <PHRASE Label="la_event_link.link.enhance.renew_cancel" Module="In-Link" Type="1">TGluayBlbmhhbmNlbWVudCBjYW5jZWxsZWQ=</PHRASE>
- <PHRASE Label="la_event_link.link.enhance.renew_failed" Module="In-Link" Type="1">TGluayBlbmhhbmNlbWVudCByZW5ld2FsIGZhaWxlZA==</PHRASE>
- <PHRASE Label="la_fld_cust_l_ItemTemplate" Module="In-Link" Type="1">TGluayBJdGVtIFRlbXBsYXRl</PHRASE>
- <PHRASE Label="la_fld_EnableBuying" Module="In-Link" Type="1">RW5hYmxlIFB1cmNoYXNpbmc=</PHRASE>
- <PHRASE Label="la_fld_ExpiresOn" Module="In-Link" Type="1">RXhwaXJhdGlvbiBEYXRl</PHRASE>
- <PHRASE Label="la_fld_LinkOwner" Module="In-Link" Type="1">TGluayBPd25lcg==</PHRASE>
- <PHRASE Label="la_fld_Link_MaxHotNumber" Module="In-Link" Type="1">TWF4aW11bSBudW1iZXIgb2YgSE9UIGxpbmtz</PHRASE>
- <PHRASE Label="la_fld_Link_MinPopRating" Module="In-Link" Type="1">TWluaW11bSByYXRpbmcgdG8gY29uc2lkZXIgbGluayBQT1A=</PHRASE>
- <PHRASE Label="la_fld_Link_MinPopVotes" Module="In-Link" Type="1">TWluaW11bSBudW1iZXIgb2Ygdm90ZXMgdG8gY29uc2lkZXIgbGluayBQT1A=</PHRASE>
- <PHRASE Label="la_fld_ListingId" Module="In-Link" Type="1">SUQ=</PHRASE>
- <PHRASE Label="la_fld_ListingType" Module="In-Link" Type="1">TGlzdGluZyBUeXBl</PHRASE>
- <PHRASE Label="la_fld_ListingTypeDescription" Module="In-Link" Type="1">RGVzY3JpcHRpb24=</PHRASE>
- <PHRASE Label="la_fld_ListingTypeId" Module="In-Link" Type="1">SUQ=</PHRASE>
- <PHRASE Label="la_fld_ListingTypeName" Module="In-Link" Type="1">TmFtZQ==</PHRASE>
- <PHRASE Label="la_fld_PendingRenewal" Module="In-Link" Type="1">UGVuZGluZyBSZW5ld2Fs</PHRASE>
- <PHRASE Label="la_fld_PurchasedOn" Module="In-Link" Type="1">UHVyY2hhc2UgRGF0ZQ==</PHRASE>
- <PHRASE Label="la_fld_Recurring" Module="In-Link" Type="1">UmVjdXJyaW5n</PHRASE>
- <PHRASE Label="la_fld_RenewalReminder" Module="In-Link" Type="1">UmVuZXdhbCBSZW1pbmRlcg==</PHRASE>
- <PHRASE Label="la_fld_ShopCartName" Module="In-Link" Type="1">UHJvZHVjdCBOYW1l</PHRASE>
- <PHRASE Label="la_fld_User" Module="In-Link" Type="1">VXNlcm5hbWU=</PHRASE>
- <PHRASE Label="la_In-link" Module="In-Link" Type="1">SW4tbGluaw==</PHRASE>
- <PHRASE Label="la_IncreaseBy" Module="In-Link" Type="1">SW5jcmVhc2UgQnk=</PHRASE>
- <PHRASE Label="la_ItemTab_K4Links" Module="In-Link" Type="1">SzQgTGlua3M=</PHRASE>
- <PHRASE Label="la_link_AllowFreeListings" Module="In-Link" Type="1">QWxsb3cgRnJlZSBMaXN0aW5ncw==</PHRASE>
- <PHRASE Label="la_link_EnhancedLinks" Module="In-Link" Type="1">RW5oYW5jZWQgTGlzdGluZ3M=</PHRASE>
- <PHRASE Label="la_menu_Grouping" Module="In-Link" Type="1">R3JvdXBpbmcgQnk=</PHRASE>
- <PHRASE Label="la_merge_error" Module="In-Link" Type="1">TXVsdGlwbGUgbGlua3MgZnJvbSBvbmUgZ3JvdXAgY291bGQgbm90IGJlIHNlbGVjdGVkIGF0IG9uY2UuIFBsZWFzZSBzZWxlY3Qgb25seSBvbmUgbGluayBmcm9tIGdyb3VwLg==</PHRASE>
- <PHRASE Label="la_NoCategories" Module="In-Link" Type="1">Tm8gQ2F0ZWdvcmllcw==</PHRASE>
- <PHRASE Label="la_NotPendingRenewal" Module="In-Link" Type="1">Tm8=</PHRASE>
- <PHRASE Label="la_PendingRenewal" Module="In-Link" Type="1">UGVuZGluZyBSZW5ld2Fs</PHRASE>
- <PHRASE Label="la_section_Link" Module="In-Link" Type="1">TGluaw==</PHRASE>
- <PHRASE Label="la_section_OriginalValues" Module="In-Link" Type="1">T3JpZ2luYWwgVmFsdWVz</PHRASE>
- <PHRASE Label="la_SetEqualTo" Module="In-Link" Type="1">U2V0IEVxdWFsIFRv</PHRASE>
- <PHRASE Label="la_tab_DuplicateChecker" Module="In-Link" Type="1">RHVwbGljYXRlIENoZWNrZXI=</PHRASE>
- <PHRASE Label="la_tab_Listings" Module="In-Link" Type="1">TGlzdGluZ3M=</PHRASE>
- <PHRASE Label="la_tab_ListingTypes" Module="In-Link" Type="1">TGlzdGluZyBUeXBlcw==</PHRASE>
- <PHRASE Label="la_tab_PaidListings" Module="In-Link" Type="1">UGFpZCBMaXN0aW5ncw==</PHRASE>
- <PHRASE Label="la_tab_ShopCartEntry" Module="In-Link" Type="1">U2hvcHBpbmcgQ2FydCBFbnRyeQ==</PHRASE>
- <PHRASE Label="la_text_K4Links" Module="In-Link" Type="1">SzQgTGlua3M=</PHRASE>
- <PHRASE Label="la_Text_PaidListing" Module="In-Link" Type="1">UGFpZCBMaXN0aW5n</PHRASE>
- <PHRASE Label="la_Text_PaidListingType" Module="In-Link" Type="1">TGlzdGluZyBUeXBl</PHRASE>
- <PHRASE Label="la_Text_ShopCartItem" Module="In-Link" Type="1">U2hvcHBpbmcgQ2FydCBJdGVt</PHRASE>
- <PHRASE Label="la_title_AddingLink" Module="In-Link" Type="1">QWRkaW5nIExpbms=</PHRASE>
- <PHRASE Label="la_title_AddingListing" Module="In-Link" Type="1">QWRkaW5nIExpc3Rpbmc=</PHRASE>
- <PHRASE Label="la_title_AddingPaidListingType" Module="In-Link" Type="1">QWRkaW5nIExpc3RpbmcgVHlwZQ==</PHRASE>
- <PHRASE Label="la_title_DuplicateLinks" Module="In-Link" Type="1">RHVwbGljYXRlIExpbmtz</PHRASE>
- <PHRASE Label="la_title_EditingLink" Module="In-Link" Type="1">RWRpdGluZyBMaW5r</PHRASE>
- <PHRASE Label="la_title_EditingListing" Module="In-Link" Type="1">RWRpdGluZyBMaXN0aW5n</PHRASE>
- <PHRASE Label="la_title_EditingPaidListingType" Module="In-Link" Type="1">RWRpdGluZyBMaXN0aW5nIFR5cGU=</PHRASE>
- <PHRASE Label="la_title_ImportLinks" Module="In-Link" Type="1">SW1wb3J0IExpbmtz</PHRASE>
- <PHRASE Label="la_title_Links" Module="In-Link" Type="1">TGlua3M=</PHRASE>
- <PHRASE Label="la_title_LinksDuplicateChecker" Module="In-Link" Type="1">TGlua3MgRHVwbGljYXRlIENoZWNrZXI=</PHRASE>
- <PHRASE Label="la_title_LinksExport" Module="In-Link" Type="1">TGlua3MgRXhwb3J0</PHRASE>
- <PHRASE Label="la_title_ListingTypes" Module="In-Link" Type="1">TGlzdGluZyBUeXBlcw==</PHRASE>
- <PHRASE Label="la_title_NewLink" Module="In-Link" Type="1">TmV3IExpbms=</PHRASE>
- <PHRASE Label="la_title_NewListing" Module="In-Link" Type="1">TmV3IExpc3Rpbmc=</PHRASE>
- <PHRASE Label="la_title_NewPaidListingType" Module="In-Link" Type="1">TmV3IExpc3RpbmcgVHlwZQ==</PHRASE>
- <PHRASE Label="la_title_PaidListings" Module="In-Link" Type="1">UGFpZCBMaXN0aW5ncw==</PHRASE>
- <PHRASE Label="la_title_PaidListingTypes" Module="In-Link" Type="1">TGlzdGluZyBUeXBlcw==</PHRASE>
- <PHRASE Label="la_title_ShopCartEntry" Module="In-Link" Type="1">U2hvcHBpbmcgQ2FydCBFbnRyeQ==</PHRASE>
- <PHRASE Label="la_ToolTip_Merge" Module="In-Link" Type="1">TWVyZ2U=</PHRASE>
- <PHRASE Label="la_tooltip_newfile" Module="In-Link" Type="1">TmV3IEZpbGU=</PHRASE>
- <PHRASE Label="la_tooltip_newlisting" Module="In-Link" Type="0">TmV3IExpc3Rpbmc=</PHRASE>
- <PHRASE Label="la_tooltip_newlisttype" Module="In-Link" Type="1">TmV3IExpc3RpbmcgVHlwZQ==</PHRASE>
- <PHRASE Label="la_UseGridToApproveDecline" Module="In-Link" Type="1">VXNlIGdyaWQgdG8gQXBwcm92ZSAvIERlY2xpbmU=</PHRASE>
- <PHRASE Label="lu_AreYouSureToCancelEnhancement" Module="In-Link" Type="0">WW91IGFyZSBhYm91dCB0byBjYW5jZWwgeW91ciBsaW5rIGVuaGFuY2VtZW50Lg==</PHRASE>
- <PHRASE Label="lu_AreYouSureToExtendEnhancement" Module="In-Link" Type="0">WW91IGFyZSBhYm91dCB0byBleHRlbmQgeW91ciBsaW5rIGVuaGFuY2VtZW50Lg==</PHRASE>
- <PHRASE Label="lu_CancelEnhancement" Module="In-Link" Type="0">Q2FuY2VsIExpbmsgRW5oYW5jZW1lbnQ=</PHRASE>
- <PHRASE Label="lu_CancelEnhancementConfirmation" Module="In-Link" Type="0">QXJlIHlvdSBzdXJlIHlvdSB3YW50IHRvIGNhbmNlbCB5b3VyIGVuaGFuY2VkIGxpbms/IFRoZSBsaXN0aW5nIHR5cGUgd2lsbCBiZSByZXNldCB0byByZWd1bGFyLg==</PHRASE>
- <PHRASE Label="lu_ChooseListingType" Module="In-Link" Type="0">Q2hvb3NlIExpc3RpbmcgVHlwZQ==</PHRASE>
- <PHRASE Label="lu_ConfirmCancelEnhancement" Module="In-Link" Type="0">Q29uZmlybSBFbmhhbmNlbWVudCBDYW5jZWw=</PHRASE>
- <PHRASE Label="lu_ConfirmExtendEnhancement" Module="In-Link" Type="0">Q29uZmlybSBFbmhhbmNlbWVudCBFeHRlbmQ=</PHRASE>
- <PHRASE Label="lu_Enhance" Module="In-Link" Type="0">RW5oYW5jZQ==</PHRASE>
- <PHRASE Label="lu_EnhanceLink" Module="In-Link" Type="0">RW5oYW5jZSBMaW5r</PHRASE>
- <PHRASE Label="lu_EnhanceLinkConfirmation" Module="In-Link" Type="0">VGhhbmsgeW91IGZvciBlbmhhbmNpbmcgeW91ciBsaW5rLiBZb3UgbGluayBlbmhhbmNlbWVudCBpcyBub3cgcGVuZGluZyBhZG1pbmlzdHJhdG9yIGFwcHJvdmFsLiBZb3Ugd2lsbCBiZSBub3RpZmllZCBieSBlbWFpbCB3aGVuIHlvdXIgbGluayBlbmhhbmNlbWVudCBpcyBhcHByb3ZlZC4=</PHRASE>
- <PHRASE Label="lu_EnhancementSetToRenewOn" Module="In-Link" Type="0">RW5oYW5jZW1lbnQgc2V0IHRvIHJlbmV3IGF1dG9tYXRpY2FsbHkgb24=</PHRASE>
- <PHRASE Label="lu_ExtendCancelEnhancement" Module="In-Link" Type="0">RXh0ZW5kL0NhbmNlbCBFbmhhbmNlbWVudA==</PHRASE>
- <PHRASE Label="lu_ExtendEnhancement" Module="In-Link" Type="0">RXh0ZW5kIExpbmsgRW5oYW5jZW1lbnQ=</PHRASE>
- <PHRASE Label="lu_ExtendEnhancementConfirmation" Module="In-Link" Type="0">QXJlIHlvdSBzdXJlIHlvdSB3YW50IHRvIGV4dGVuZCB5b3VyIGxpbmsgZW5oYW5jZW1lbnQ/</PHRASE>
- <PHRASE Label="lu_ferror_l_addlink_description" Module="In-Link" Type="0">Tm8gZGVzY3JpcHRpb24gZW50ZXJlZCE=</PHRASE>
- <PHRASE Label="lu_ferror_l_addlink_name" Module="In-Link" Type="0">Tm8gbmFtZSBlbnRlcmVkIQ==</PHRASE>
- <PHRASE Label="lu_ferror_l_addlink_url" Module="In-Link" Type="0">Tm8gVVJMIGVudGVyZWQh</PHRASE>
- <PHRASE Label="lu_free_listing" Module="In-Link" Type="0">RnJlZSBMaXN0aW5n</PHRASE>
- <PHRASE Label="lu_LinkEnhancementResults" Module="In-Link" Type="0">TGluayBFbmhhbmNlbWVudCBSZXN1bHRz</PHRASE>
- <PHRASE Label="lu_ListingExpirationDate" Module="In-Link" Type="0">RXhwaXJhdGlvbiBEYXRl</PHRASE>
- <PHRASE Label="lu_ListingType" Module="In-Link" Type="0">TGlzdGluZyBUeXBl</PHRASE>
- <PHRASE Label="lu_ListingTypeName" Module="In-Link" Type="0">TGlzdGluZyBUeXBl</PHRASE>
- <PHRASE Label="lu_notice_SubscriptionAddToCart" Module="In-Link" Type="0">QWZ0ZXIgc2VsZWN0aW5nIGxpc3RpbmcgdHlwZSBpdCB3aWxsIGJlIGFkZGVkIHRvIHlvdXIgc2hvcHBpbmcgY2FydC4gT25jZSB5b3UgY29tcGxldGUgY2hlY2tvdXQgYW5kIHlvdXIgb3JkZXIgaXMgYXBwcm92ZWQgeW91ciBsaW5rIHN0YXR1cyB3aWxsIGJlIHVwZ3JhZGVkLiBZb3Ugd2lsbCBiZSBub3RpZmllZCBieSBlbWFpbCB3aGVuIHRoaXMgaXMgZG9uZS4=</PHRASE>
- <PHRASE Label="lu_PendingEnhancement" Module="In-Link" Type="0">cGVuZGluZw==</PHRASE>
- <PHRASE Label="lu_prompt_listing_type" Module="In-Link" Type="0">TGlzdGluZyBUeXBl</PHRASE>
- <PHRASE Label="lu_ToCancelEnhancement" Module="In-Link" Type="0">dG8gY2FuY2VsIGxpbmsgZW5oYW5jZW1lbnQ=</PHRASE>
- </PHRASES>
- <EVENTS>
- <EVENT MessageType="text" Event="LINK.ADD" Type="0">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IExpbmsgYWRkZWQKCllvdXIgbGluayBoYXMgYmVlbiBhZGRlZC4NCjE=</EVENT>
- <EVENT MessageType="text" Event="LINK.ADD" Type="1">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogTGluayBhZGRlZAoKQSBsaW5rIGhhcyBiZWVuIGFkZGVk</EVENT>
- <EVENT MessageType="text" Event="LINK.APPROVE" Type="0">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogTGluayBhcHByb3ZlZAoKWW91ciBsaW5rIGhhcyBiZWVuIGFwcHJvdmVk</EVENT>
- <EVENT MessageType="text" Event="LINK.DENY" Type="0">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogTGluayBkZW5pZWQKCllvdXIgbGluayBoYXMgYmVlbiBkZW5pZWQu</EVENT>
- <EVENT MessageType="text" Event="LINK.ENHANCE" Type="0">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IExpbmsgZW5oYW5jZW1lbnQKCkRlYXIgPGlucDI6dS4taXRlbV9GaWVsZCBuYW1lPSJGaXJzdE5hbWUiIC8+IDxpbnAyOnUuLWl0ZW1fRmllbGQgbmFtZT0iTGFzdE5hbWUiIC8+LA0KDQpUaGFuayB5b3UgZm9yIHN1Ym1pdHRpbmcgbGluayBlbmhhbmNlbWVudCByZXF1ZXN0LiBZb3Ugd2lsbCBiZSBub3RpZmllZCB3aGVuIHlvdXIgbGluayBlbmhhbmNlbWVudCBpcyBwcm9jZXNzZWQu</EVENT>
- <EVENT MessageType="text" Event="LINK.ENHANCE" Type="1">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IExpbmsgRW5oYW5jZW1lbnQgc3VibWl0dGVkCgpBIHVzZXIgaGFzIHN1Ym1pdHRlZCBhIGxpbmsgZW5oYW5jZW1lbnQgcmVxdWVzdC4gUGxlYXNlIHByb2NlZWQgdG8gYWRtaW5pc3RyYXRpdmUgY29uc29sZSB0byByZXZpZXcgaXQu</EVENT>
- <EVENT MessageType="text" Event="LINK.ENHANCE.APPROVE" Type="0">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IExpbmsgZW5oYW5jZW1lbnQgYXBwcm92ZWQKCkRlYXIgPGlucDI6dS4taXRlbV9GaWVsZCBuYW1lPSJGaXJzdE5hbWUiIC8+IDxpbnAyOnUuLWl0ZW1fRmllbGQgbmFtZT0iTGFzdE5hbWUiIC8+LA0KDQpZb3VyIHJlY2VudCBsaW5rIGVuaGFuY2VtZW50IHJlcXVlc3QgaGFzIGJlZW4gYXBwcm92ZWQuIFRoYW5rIHlvdSENCg==</EVENT>
- <EVENT MessageType="text" Event="LINK.ENHANCE.APPROVE" Type="1">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IExpbmsgZW5oYW5jZW1lbnQgYXBwcm92ZWQKCkxpbmsgZW5oYW5jZW1lbnQgaGFzIGJlZW4gYXBwcm92ZWQu</EVENT>
- <EVENT MessageType="text" Event="LINK.ENHANCE.CANCEL" Type="0">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IExpbmsgZW5oYW5jZW1lbnQgY2FuY2VsbGVkCgpEZWFyIDxpbnAyOnUuLWl0ZW1fRmllbGQgbmFtZT0iRmlyc3ROYW1lIiAvPiA8aW5wMjp1Li1pdGVtX0ZpZWxkIG5hbWU9Ikxhc3ROYW1lIiAvPiwNCg0KWW91ciBsaW5rIGVuaGFuY2VtZW50IG9uIDxpbnAyOmNvbmZfQ29uZmlnVmFsdWUgbmFtZT0iU2l0ZV9OYW1lIi8+IGhhcyBiZWVuIGNhbmNlbGxlZC4=</EVENT>
- <EVENT MessageType="text" Event="LINK.ENHANCE.CANCEL" Type="1">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IExpbmsgZW5oYW5jZW1lbnQgY2FuY2VsbGVkCgpMaW5rIGVuaGFuY2VtZW50IGhhcyBiZWVuIGNhbmNlbGxlZC4=</EVENT>
- <EVENT MessageType="text" Event="LINK.ENHANCE.DENY" Type="0">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IExpbmsgZW5oYW5jZW1lbnQgZGVuaWVkCgpEZWFyIDxpbnAyOnUuLWl0ZW1fRmllbGQgbmFtZT0iRmlyc3ROYW1lIiAvPiA8aW5wMjp1Li1pdGVtX0ZpZWxkIG5hbWU9Ikxhc3ROYW1lIiAvPiwNCg0KU29ycnksIGJ1dCB5b3VyIHJlY2VudCBsaW5rIGVuaGFuY2VtZW50IHJlcXVlc3QgaGFzIGJlZW4gZGVuaWVkLg==</EVENT>
- <EVENT MessageType="text" Event="LINK.ENHANCE.DENY" Type="1">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IExpbmsgZW5oYW5jZW1lbnQgZGVuaWVkCgpMaW5rIGVuaGFuY2VtZW50IGhhcyBiZWVuIGRlbmllZC4=</EVENT>
- <EVENT MessageType="text" Event="LINK.ENHANCE.EXPIRE" Type="0">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IExpbmsgZW5oYW5jZW1lbnQgZXhwaXJlZAoKRGVhciA8aW5wMjp1Li1pdGVtX0ZpZWxkIG5hbWU9IkZpcnN0TmFtZSIgLz4gPGlucDI6dS4taXRlbV9GaWVsZCBuYW1lPSJMYXN0TmFtZSIgLz4sDQoNCllvdXIgZW5oYW5jZWQgbGluayBhdCA8aW5wMjpjb25mX0NvbmZpZ1ZhbHVlIG5hbWU9IlNpdGVfTmFtZSIvPiBoYXMgZXhwaXJlZC4gSWYgeW91IHdhbnQgdG8gcmVuZXcgeW91ciBlbmhhbmNlZCBsaW5rLCBwbGVhc2UgcmUtc3VibWl0IGxpbmsgZW5oYW5jZW1lbnQgcmVxdWVzdC4gVGhhbmsgeW91IQ==</EVENT>
- <EVENT MessageType="text" Event="LINK.ENHANCE.EXPIRE" Type="1">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IExpbmsgZW5oYW5jZW1lbnQgZXhwaXJlZAoKRW5oYW5jZWQgbGluayBoYXMgZXhwaXJlZC4=</EVENT>
- <EVENT MessageType="text" Event="LINK.ENHANCE.EXTEND" Type="0">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IExpbmsgZW5oYW5jZW1lbnQgcmVuZXdhbAoKRGVhciA8aW5wMjp1Li1pdGVtX0ZpZWxkIG5hbWU9IkZpcnN0TmFtZSIgLz4gPGlucDI6dS4taXRlbV9GaWVsZCBuYW1lPSJMYXN0TmFtZSIgLz4sDQoNClRoYW5rIHlvdSBmb3Igc3VibWl0dGluZyBsaW5rIGVuaGFuY2VtZW50IHJlbmV3YWwgcmVxdWVzdC4gWW91IHdpbGwgYmUgbm90aWZpZWQgd2hlbiB5b3UgcmVxdWVzdCBpcyBwcm9jZXNzZWQu</EVENT>
- <EVENT MessageType="text" Event="LINK.ENHANCE.EXTEND" Type="1">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IExpbmsgZW5oYW5jZW1lbnQgcmVuZXdhbCBzdWJtaXRlZAoKTGluayBlbmhhbmNlbWVudCByZW5ld2FsIHJlcXVlc3QgaGFzIGJlZW4gc3VibWl0dGVkLCBwbGVhc2UgcHJvY2VlZCB0byBhZG1pbmlzdHJhdGl2ZSBjb25zb2xlIHRvIHJldmlldyBpdC4=</EVENT>
- <EVENT MessageType="text" Event="LINK.ENHANCE.RENEW" Type="0">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IExpbmsgZW5oYW5jZW1lbnQgZXh0ZW5kZWQKCkRlYXIgPGlucDI6dS4taXRlbV9GaWVsZCBuYW1lPSJGaXJzdE5hbWUiIC8+IDxpbnAyOnUuLWl0ZW1fRmllbGQgbmFtZT0iTGFzdE5hbWUiIC8+LA0KDQpZb3UgbGluayBlbmhhbmNlbWVudCBvbiA8aW5wMjpjb25mX0NvbmZpZ1ZhbHVlIG5hbWU9IlNpdGVfTmFtZSIvPiBoYXMgYmVlbiBleHRlbmRlZC4gVGhhbmsgeW91IQ==</EVENT>
- <EVENT MessageType="text" Event="LINK.ENHANCE.RENEW" Type="1">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IExpbmsgZW5oYW5jZW1lbnQgZXh0ZW5kZWQKCkxpbmsgZW5oYW5jZW1lbnQgaGFzIGJlZW4gZXh0ZW5kZWQ=</EVENT>
- <EVENT MessageType="text" Event="LINK.ENHANCE.RENEW.FAILED" Type="0">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IEVuaGFuY2UgTGluayBSZW5ld2FsIEZhaWxlZAoKRW5oYW5jZSBMaW5rIFJlbmV3YWwgRmFpbGVk</EVENT>
- <EVENT MessageType="text" Event="LINK.ENHANCE.RENEW.FAILED" Type="1">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IEVuaGFuY2UgTGluayBSZW5ld2FsIEZhaWxlZAoKRW5oYW5jZSBMaW5rIFJlbmV3YWwgRmFpbGVk</EVENT>
- <EVENT MessageType="text" Event="LINK.ENHANCE.RENEWAL.NOTICE" Type="0">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IExpbmsgZW5oYW5jZW1lbnQgcmVuZXdhbCBub3RpY2UKCkRlYXIgPGlucDI6dV9GaWVsZCBuYW1lPSJGaXJzdE5hbWUiIC8+IDxpbnAyOnVfRmllbGQgbmFtZT0iTGFzdE5hbWUiIC8+LA0KDQpZb3VyIGxpbmsgZW5oYW5jZW1lbnQgb24gPGlucDI6Y29uZl9Db25maWdWYWx1ZSBuYW1lPSJTaXRlX05hbWUiLz4gaXMgYWJvdXQgdG8gZXhwaXJlLiBQbGVhc2UgbG9naW4gdG8geW91ciBhY2NvdW50IHRvIHJlbmV3IHlvdXIgbGluayBlbmhhbmNlbWVudC4gVGhhbmsgeW91IQ==</EVENT>
- <EVENT MessageType="text" Event="LINK.ENHANCE.RENEWAL.NOTICE" Type="1">WC1Qcmlvcml0eTogMQpYLU1TTWFpbC1Qcmlvcml0eTogSGlnaApYLU1haWxlcjogSW4tUG9ydGFsClN1YmplY3Q6IExpbmsgZW5oYW5jZW1lbnQgYWJvdXQgdG8gZXhwaXJlCgpMaW5rIGVuaGFuY2VtZW50IGlzIGFib3V0IHRvIGV4cGlyZS4=</EVENT>
- <EVENT MessageType="text" Event="LINK.MODIFY" Type="0">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogTGluayBtb2RpZmVkCgpZb3VyIGxpbmsgaGFzIGJlZW4gbW9kaWZpZWQ=</EVENT>
- <EVENT MessageType="text" Event="LINK.MODIFY" Type="1">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogTGluayBtb2RpZmllZAoKQSBsaW5rIGhhcyBiZWVuIG1vZGlmaWVkLg==</EVENT>
- <EVENT MessageType="text" Event="LINK.MODIFY.APPROVE" Type="0">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogTGluayBhcHByb3ZlZAoKWW91ciBsaW5rIG1vZGlmaWNhdGlvbiBoYXMgYmVlbiBhcHByb3ZlZA==</EVENT>
- <EVENT MessageType="text" Event="LINK.MODIFY.DENY" Type="0">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogTGluayBtb2RpZmljYXRpb24gZGVuaWVkCgpZb3VyIGxpbmsgbW9kaWZpY2F0aW9uIGhhcyBiZWVuIGRlbmllZC4=</EVENT>
- <EVENT MessageType="text" Event="LINK.REVIEW.ADD" Type="0">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogTGluayByZXZpZXcgYWRkZWQKCllvdXIgbGluayByZXZpZXcgaGFzIGJlZW4gYWRkZWQ=</EVENT>
- <EVENT MessageType="text" Event="LINK.REVIEW.ADD" Type="1">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogTGluayByZXZpZXcgYWRkZWQKCkEgbGluayByZXZpZXcgaGFzIGJlZW4gYWRkZWQ=</EVENT>
- <EVENT MessageType="text" Event="LINK.REVIEW.ADD.PENDING" Type="0">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogTGluayByZXZpZXcgYWRkZWQKCllvdXIgbGluayByZXZpZXcgaGFzIGJlZW4gYWRkZWQgYW5kIGlzIHBlbmRpbmcgYXBwcm92YWwu</EVENT>
- <EVENT MessageType="text" Event="LINK.REVIEW.APPROVE" Type="0">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogTGluayByZXZpZXcgYXBwcm92ZWQKCllvdXIgbGluayByZXZpZXcgaGFzIGJlZW4gYXBwcm92ZWQ=</EVENT>
- <EVENT MessageType="text" Event="LINK.REVIEW.DENY" Type="0">WC1Qcmlvcml0eTogMQ0KWC1NU01haWwtUHJpb3JpdHk6IEhpZ2gNClgtTWFpbGVyOiBJbi1Qb3J0YWwKU3ViamVjdDogTGluayByZXZpZXcgZGVjbGluZWQKCllvdXIgbGluayByZXZpZXcgaGFzIGJlZW4gZGVjbGluZWQ=</EVENT>
- </EVENTS>
- </LANGUAGE>
-</LANGUAGES>
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/langpacks/english.lang
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.29
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-link/admin/install/inportal_data.sql
===================================================================
--- trunk/in-link/admin/install/inportal_data.sql (revision 12828)
+++ trunk/in-link/admin/install/inportal_data.sql (nonexistent)
@@ -1,276 +0,0 @@
-INSERT INTO ConfigurationAdmin VALUES ('Link_SortField', 'la_Text_Links', 'la_link_sortfield_prompt', 'select', '', 'Name=la_Link_Name,Description=la_Link_Description,Url=la_Link_URL,CreatedOn=la_Link_Date,Hits=la_Link_Hits,CachedRating=la_Link_Rating,<SQL>SELECT Prompt AS OptionName, CONCAT("cust_", FieldName) AS OptionValue FROM <PREFIX>CustomField WHERE (Type = 4) AND (IsSystem = 0)</SQL>', 10.01, 1, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Link_SortOrder', 'la_Text_Links', 'la_link_sortfield_prompt', 'select', '', 'asc=la_common_ascending,desc=la_common_descending', 10.01, 2, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Link_SortField2', 'la_Text_Links', 'la_link_sortfield2_prompt', 'select', '', 'Name=la_Link_Name,Description=la_Link_Description,Url=la_Link_URL,CreatedOn=la_Link_Date,Hits=la_Link_Hits,CachedRating=la_Link_Rating,<SQL>SELECT Prompt AS OptionName, CONCAT("cust_", FieldName) AS OptionValue FROM <PREFIX>CustomField WHERE (Type = 4) AND (IsSystem = 0)</SQL>', 10.02, 1, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Link_SortOrder2', 'la_Text_Links', 'la_link_sortfield2_prompt', 'select', '', 'asc=la_common_ascending,desc=la_common_descending', 10.02, 2, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Perpage_Links', 'la_Text_Links', 'la_link_perpage_prompt', 'text', '', '', 10.03, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Link_NewDays', 'la_Text_Links', 'la_link_newdays_prompt', 'text', '', '', 10.05, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Link_MinPopRating', 'la_Text_Links', 'la_fld_Link_MinPopRating', 'text', '', '', 10.06, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Link_MaxHotNumber', 'la_Text_Links', 'la_fld_Link_MaxHotNumber', 'text', '', '', 10.08, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Link_EnhancedLinks', 'la_Text_Links', 'la_link_EnhancedLinks', 'checkbox', '', '', 10.09, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Link_AllowFreeListings', 'la_Text_Links', 'la_link_AllowFreeListings', 'checkbox', '', '', 10.1, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Link_ShowPick', 'la_Text_Links', 'la_link_editorspick_prompt', 'checkbox', '', '', 10.11, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Link_UrlStatus', 'la_Text_Links', 'la_link_urlstatus_prompt', 'checkbox', '', '', 10.12, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Link_ReviewsSort', 'la_Text_Reviews', 'la_link_sortreviews_prompt', 'select', '', 'ReviewText=la_common_ReviewText,CreatedOn=la_common_CreatedOn', 20.01, 1, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Link_ReviewsOrder', 'la_Text_Reviews', 'la_link_sortreviews_prompt', 'select', '', 'asc=la_common_ascending,desc=la_common_descending', 20.01, 2, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Link_ReviewsSort2', 'la_Text_Reviews', 'la_link_sortreviews2_prompt', 'select', '', 'ReviewText=la_common_ReviewText,CreatedOn=la_common_CreatedOn', 20.02, 1, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Link_ReviewsOrder2', 'la_Text_Reviews', 'la_link_sortreviews2_prompt', 'select', '', 'asc=la_common_ascending,desc=la_common_descending', 20.02, 2, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Link_MinPopVotes', 'la_Text_Links', 'la_fld_Link_MinPopVotes', 'text', '', '', 10.07, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Perpage_LinkReviews', 'la_Text_Reviews', 'la_review_perpage_prompt', 'text', NULL, NULL, 20.03, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Perpage_LinkReviews_Short', 'la_Text_Reviews', 'la_review_perpage_short_prompt', 'text', NULL, NULL, 20.04, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Perpage_Links_Short', 'la_Text_Links', 'la_link_perpage_short_prompt', 'text', '', '', 10.04, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Search_Link_Name', 'la_Text_Link_Search', 'la_Link_Name', 'checkbox', '', '', 2, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Search_Link_Description', 'la_Text_Link_Search', 'la_Link_Description', 'checkbox', '', '', 1, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Search_Link_Url', 'la_Text_Link_Search', 'la_Link_Url', 'checkbox', '', '', 5, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Search_Link_CreatedOn', 'la_Text_Link_Search', 'la_Link_CreatedOn', 'checkbox', '', '', 5, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Search_Link_Hits', 'la_Text_Link_Search', 'la_Link_Hits', 'checkbox', '', '', 6, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Search_Link_CatchedRating', 'la_Text_Link_Search', 'la_Link_CatchedRating', 'checkbox', '', '', 7, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Search_Link_CatchedVotesQty', 'la_Text_Link_Search', 'la_Link_CatchedVotesQty', 'checkbox', '', '', 8, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Search_Link_CatchedReviewsQty', 'la_Text_Link_Search', 'la_Link_CatchedReviewsQty', 'checkbox', '', '', 9, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('link_ReviewDelay_Value', 'la_Text_Links', 'la_prompt_DupReviews', 'text', '', '', 10.13, 1, 1);
-INSERT INTO ConfigurationAdmin VALUES ('link_ReviewDelay_Interval', 'la_Text_Links', '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.13, 2, 1);
-INSERT INTO ConfigurationAdmin VALUES ('link_RatingDelay_Value', 'la_Text_Links', 'la_prompt_DupRating', 'text', '', '', 10.14, 1, 1);
-INSERT INTO ConfigurationAdmin VALUES ('link_RatingDelay_Interval', 'la_Text_Links', '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.14, 2, 1);
-INSERT INTO ConfigurationAdmin VALUES ('l_CategoryTemplate', 'la_section_Templates', 'la_fld_CategoryTemplate', 'text', '', '', 30.01, 0, 0);
-INSERT INTO ConfigurationAdmin VALUES ('l_ItemTemplate', 'la_section_Templates', 'la_fld_ItemTemplate', 'text', '', '', 30.02, 0, 0);
-INSERT INTO ConfigurationAdmin VALUES ('l_MaxImageCount', 'la_section_ImageSettings', 'la_config_MaxImageCount', 'text', '', '', 40.01, 0, 0);
-INSERT INTO ConfigurationAdmin VALUES ('l_ThumbnailImageWidth', 'la_section_ImageSettings', 'la_config_ThumbnailImageWidth', 'text', '', '', 40.02, 0, 0);
-INSERT INTO ConfigurationAdmin VALUES ('l_ThumbnailImageHeight', 'la_section_ImageSettings', 'la_config_ThumbnailImageHeight', 'text', '', '', 40.03, 0, 0);
-INSERT INTO ConfigurationAdmin VALUES ('l_FullImageWidth', 'la_section_ImageSettings', 'la_config_FullImageWidth', 'text', '', '', 40.04, 0, 0);
-INSERT INTO ConfigurationAdmin VALUES ('l_FullImageHeight', 'la_section_ImageSettings', 'la_config_FullImageHeight', 'text', '', '', 40.05, 0, 0);
-
-INSERT INTO ConfigurationAdmin VALUES ('SearchRel_Keyword_links', 'la_config_SearchRel_DefaultKeyword', 'la_text_keyword', 'text', NULL, NULL, 0, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('SearchRel_Pop_links', 'la_config_DefaultPop', 'la_text_popularity', 'text', NULL, NULL, 0, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('SearchRel_Rating_links', 'la_config_DefaultRating', 'la_prompt_Rating', 'text', NULL, NULL, 0, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('SearchRel_Increase_links', 'la_config_DefaultIncreaseImportance', 'la_text_increase_importance', 'text', NULL, NULL, 0, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Search_ShowMultiple_links', 'la_config_ShowMultiple', 'la_Text_MultipleShow', 'text', NULL, NULL, 0, 0, 1);
-
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Perpage_Links', '10', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Link_SortField', 'Name', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Link_SortOrder', 'asc', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Link_SortField2', 'Description', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Link_SortOrder2', 'desc', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Link_NewDays', '100', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Link_MinPopRating', '5', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Link_MaxHotNumber', '5', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Link_EnhancedLinks', '0', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Link_AllowFreeListings', '1', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Link_ShowPick', '1', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Link_UrlStatus', '', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Link_ReviewsSort', 'CreatedOn', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Link_ReviewsOrder', 'desc', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Link_ReviewsSort2', 'ReviewText', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Link_ReviewsOrder2', 'asc', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Link_MinPopVotes', '20', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Search_Link_LinkId', '1', 'In-Link', 'in-link:configuration_search')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Search_Link_Name', '1', 'In-Link', 'in-link:configuration_search')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Search_Link_Description', '1', 'In-Link', 'in-link:configuration_search')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Search_Link_Url', '1', 'In-Link', 'in-link:configuration_search')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Search_Link_CreatedOn', '1', 'In-Link', 'in-link:configuration_search')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Search_Link_Hits', '1', 'In-Link', 'in-link:configuration_search')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Search_Link_CatchedRating', '1', 'In-Link', 'in-link:configuration_search')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Search_Link_CatchedVotesQty', '1', 'In-Link', 'in-link:configuration_search')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Search_Link_CatchedReviewsQty', '1', 'In-Link', 'in-link:configuration_search')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Search_Link_ReviewById', '1', 'In-Link', 'in-link:configuration_search')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Search_Link_Priority', '1', 'In-Link', 'in-link:configuration_search')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Search_Link_Status', '1', 'In-Link', 'in-link:configuration_search')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Search_Link_EditorsPick', '1', 'In-Link', 'in-link:configuration_search')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Search_Link_ResourceId', '1', 'In-Link', 'in-link:configuration_search')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Search_Link_HotItem', '1', 'In-Link', 'in-link:configuration_search')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Search_Link_PopItem', '1', 'In-Link', 'in-link:configuration_search')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Search_Link_NewItem', '1', 'In-Link', 'in-link:configuration_search')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'link_ReviewDelay_Value', '1', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'link_ReviewDelay_Interval', '2419200', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'link_RatingDelay_Value', '1', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'link_RatingDelay_Interval', '2419200', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Link_Root', '{LinkCatId}', 'In-Portal', '')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Perpage_Links_Short', '3', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Link_Highlight_OpenTag', '<span class="match">', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Link_Highlight_CloseTag', '</span>', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Perpage_LinkReviews_Short', '3', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Perpage_LinkReviews', '10', 'In-Link', 'in-link:configuration_output')
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'l_CategoryTemplate', 'inlink/index', 'In-Link', 'in-link:configuration_output');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'l_ItemTemplate', 'inlink/detail', 'In-Link', 'in-link:configuration_output');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'l_MaxImageCount', 5, 'In-Link', 'in-link:configuration_output');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'l_ThumbnailImageWidth', 120, 'In-Link', 'in-link:configuration_output');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'l_ThumbnailImageHeight', 120, 'In-Link', 'in-link:configuration_output');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'l_FullImageWidth', 450, 'In-Link', 'in-link:configuration_output');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'l_FullImageHeight', 450, 'In-Link', 'in-link:configuration_output');
-
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'SearchRel_Keyword_links', '90', 'In-Link', 'in-link:configuration_search');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'SearchRel_Pop_links', '5', 'In-Link', 'in-link:configuration_search');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'SearchRel_Rating_links', '5', 'In-Link', 'in-link:configuration_search');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'SearchRel_Increase_links', '30', 'In-Link', 'in-link:configuration_search');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Search_ShowMultiple_links', '0', 'In-Link', 'in-link:configuration_search');
-
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'StartValidationTime', '0', 'In-Link', '');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'LastExpirationTime', '0', 'In-Link', '');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'Link_RatingToPop', '5', 'In-Link', 'in-link:configuration_output');
-
-INSERT INTO Events VALUES (DEFAULT, 'LINK.ADD', NULL, 2, 0, 'In-Link', 'la_event_link.add', 1);
-INSERT INTO Events VALUES (DEFAULT, 'LINK.MODIFY', NULL, 2, 0, 'In-Link', 'la_event_link.modify', 1);
-INSERT INTO Events VALUES (DEFAULT, 'LINK.REVIEW.ADD', NULL, 2, 0, 'In-Link', 'la_event_link.review.add', 1);
-INSERT INTO Events VALUES (DEFAULT, 'LINK.ADD', NULL, 1, 0, 'In-Link', 'la_event_link.add', 0);
-INSERT INTO Events VALUES (DEFAULT, 'LINK.APPROVE', NULL, 1, 0, 'In-Link', 'la_event_link.approve', 0);
-INSERT INTO Events VALUES (DEFAULT, 'LINK.DENY', NULL, 1, 0, 'In-Link', 'la_event_link.deny', 0);
-INSERT INTO Events VALUES (DEFAULT, 'LINK.MODIFY', NULL, 1, 0, 'In-Link', 'la_event_link.modify', 0);
-INSERT INTO Events VALUES (DEFAULT, 'LINK.MODIFY.APPROVE', NULL, 1, 0, 'In-Link', 'la_event_link.modify.approve', 0);
-INSERT INTO Events VALUES (DEFAULT, 'LINK.REVIEW.ADD', NULL, 1, 0, 'In-Link', 'la_event_link.review.add', 0);
-INSERT INTO Events VALUES (DEFAULT, 'LINK.REVIEW.APPROVE', NULL, 1, 0, 'In-Link', 'la_event_link.review.approve', 0);
-INSERT INTO Events VALUES (DEFAULT, 'LINK.REVIEW.DENY', NULL, 1, 0, 'In-Link', 'la_event_link.review.deny', 0);
-INSERT INTO Events VALUES (DEFAULT, 'LINK.ADD.PENDING', NULL, 1, 0, 'In-Link', 'la_event_link.add.pending', 0);
-INSERT INTO Events VALUES (DEFAULT, 'LINK.MODIFY.PENDING', NULL, 1, 0, 'In-Link', 'la_event_link.modify.pending', 0);
-INSERT INTO Events VALUES (DEFAULT, 'LINK.REVIEW.ADD.PENDING', NULL, 1, 0, 'In-Link', 'la_event_link.review.add.pending', 0);
-INSERT INTO Events VALUES (DEFAULT, 'LINK.MODIFY.DENY', NULL, 1, 0, 'In-Link', 'la_event_link.modify.deny', 0);
-INSERT INTO Events VALUES (DEFAULT, 'LINK.ENHANCE', NULL, 1, 0, 'In-Link', 'la_event_link.link.enhance', '1');
-INSERT INTO Events VALUES (DEFAULT, 'LINK.ENHANCE', NULL, 1, 0, 'In-Link', 'la_event_link.link.enhance', '0');
-INSERT INTO Events VALUES (DEFAULT, 'LINK.ENHANCE.APPROVE', NULL, 0, 0, 'In-Link', 'la_event_link.link.enhance.approve', '1');
-INSERT INTO Events VALUES (DEFAULT, 'LINK.ENHANCE.APPROVE', NULL, 1, 0, 'In-Link', 'la_event_link.link.enhance.approve', '0');
-INSERT INTO Events VALUES (DEFAULT, 'LINK.ENHANCE.DENY', NULL, 0, 0, 'In-Link', 'la_event_link.link.enhance.deny', '1');
-INSERT INTO Events VALUES (DEFAULT, 'LINK.ENHANCE.DENY', NULL, 1, 0, 'In-Link', 'la_event_link.link.enhance.deny', '0');
-INSERT INTO Events VALUES (DEFAULT, 'LINK.ENHANCE.EXPIRE', NULL, 1, 0, 'In-Link', 'la_event_link.link.enhance.expire', '1');
-INSERT INTO Events VALUES (DEFAULT, 'LINK.ENHANCE.EXPIRE', NULL, 1, 0, 'In-Link', 'la_event_link.link.enhance.expire', '0');
-INSERT INTO Events VALUES (DEFAULT, 'LINK.ENHANCE.EXTEND', NULL, 1, 0, 'In-Link', 'la_event_link.link.enhance.extend', '1');
-INSERT INTO Events VALUES (DEFAULT, 'LINK.ENHANCE.EXTEND', NULL, 1, 0, 'In-Link', 'la_event_link.link.enhance.extend', '0');
-INSERT INTO Events VALUES (DEFAULT, 'LINK.ENHANCE.RENEW', NULL, 0, 0, 'In-Link', 'la_event_link.link.enhance.renew', '1');
-INSERT INTO Events VALUES (DEFAULT, 'LINK.ENHANCE.RENEW', NULL, 1, 0, 'In-Link', 'la_event_link.link.enhance.renew', '0');
-INSERT INTO Events VALUES (DEFAULT, 'LINK.ENHANCE.RENEW.FAILED', NULL, 1, 0, 'In-Link', 'la_event_link.link.enhance.renew_failed', '1');
-INSERT INTO Events VALUES (DEFAULT, 'LINK.ENHANCE.RENEW.FAILED', NULL, 1, 0, 'In-Link', 'la_event_link.link.enhance.renew_failed', '0');
-INSERT INTO Events VALUES (DEFAULT, 'LINK.ENHANCE.CANCEL', NULL, 1, 0, 'In-Link', 'la_event_link.link.enhance.renew_cancel', '1');
-INSERT INTO Events VALUES (DEFAULT, 'LINK.ENHANCE.CANCEL', NULL, 1, 0, 'In-Link', 'la_event_link.link.enhance.renew_cancel', '0');
-INSERT INTO Events VALUES (DEFAULT, 'LINK.ENHANCE.RENEWAL.NOTICE', NULL, 1, 0, 'In-Link', 'la_event_link.link.enhance.renewal_notice', '1');
-INSERT INTO Events VALUES (DEFAULT, 'LINK.ENHANCE.RENEWAL.NOTICE', NULL, 1, 0, 'In-Link', 'la_event_link.link.enhance.renewal_notice', '0');
-
-INSERT INTO ItemTypes VALUES (4, 'In-Link', 'l', 'Link', 'Name', 'CreatedById', 'Hits', 'CachedRating', 'la_ItemTab_Links', 1, 'in-link/admin/addlink.php', 'clsLink', 'Link');
-
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'LINK.ADD', 'lu_PermName_Link.Add_desc', 'lu_PermName_Link.Add_error', 'In-Link');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'LINK.VIEW', 'lu_PermName_Link.View_desc', 'lu_PermName_Link.View_error', 'In-Link');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'LINK.ADD.PENDING', 'lu_PermName_Link.Add.Pending_desc', 'lu_PermName_Link.Add.Pending_error', 'In-Link');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'LINK.MODIFY', 'lu_PermName_Link.Modify_desc', 'lu_PermName_Link.Modify_desc', 'In-Link');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'LINK.DELETE', 'lu_PermName_Link.Delete_desc', 'lu_PermName_Link.Delete_error', 'In-Link');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'LINK.RATE', 'lu_PermName_Link.Rate_desc', 'lu_PermName_Link.Rate_error', 'In-Link');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'LINK.REVIEW', 'lu_PermName_Link.Review_desc', 'lu_PermName_Link.Review_error', 'In-Link');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'LINK.REVIEW.PENDING', 'lu_PermName_Link.Review_Pending_desc', ' lu_PermName_Link.Review_Pending_error', 'In-Link');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'LINK.MODIFY.PENDING', 'lu_PermName_Link.Modify.Pending_desc', 'lu_PermName_Link.Modify.Pending_desc', 'In-Link');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'LINK.OWNER.MODIFY', 'lu_PermName_Link.Owner.Modify_desc', 'lu_PermName_Link.Owner.Modify_error', 'In-Link');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'LINK.OWNER.MODIFY.PENDING', 'lu_PermName_Link.Owner.Modify.Pending_desc', 'lu_PermName_Link.Owner.Modify.Pending_error', 'In-Link');
-INSERT INTO PermissionConfig VALUES (DEFAULT, 'LINK.OWNER.DELETE', 'lu_PermName_Link.Owner.Delete_desc', 'lu_PermName_Link.Owner.Delete_error', 'In-Link');
-
-INSERT INTO SearchConfig VALUES ('Link', 'OrgId', 0, 0, 'lu_fielddesc_link_orgid', 'lu_field_orgid', 'In-Link', 'la_text_link', 19, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Link', 'NewItem', 0, 1, 'lu_fielddesc_link_newitem', 'lu_field_newitem', 'In-Link', 'la_text_link', 18, DEFAULT, 0, 'boolean', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Link', 'PopItem', 0, 1, 'lu_fielddesc_link_popitem', 'lu_field_popitem', 'In-Link', 'la_text_link', 17, DEFAULT, 0, 'boolean', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Link', 'HotItem', 0, 1, 'lu_fielddesc_link_hotitem', 'lu_field_hotitem', 'In-Link', 'la_text_link', 16, DEFAULT, 0, 'boolean', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Link', 'ResourceId', 0, 1, 'lu_fielddesc_link_resourceid', 'lu_field_resourceid', 'In-Link', 'la_text_link', 15, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Link', 'EditorsPick', 0, 1, 'lu_fielddesc_link_editorspick', 'lu_field_editorspick', 'In-Link', 'la_text_link', 14, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Link', 'Status', 0, 0, 'lu_fielddesc_link_status', 'lu_field_status', 'In-Link', 'la_text_link', 13, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Link', 'Priority', 0, 0, 'lu_fielddesc_link_priority', 'lu_field_priority', 'In-Link', 'la_text_link', 12, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Link', 'ModifiedById', 0, 0, 'lu_fielddesc_link_modifiedbyid', 'lu_field_modifiedbyid', 'In-Link', 'la_text_link', 11, DEFAULT, 0, 'text', 'PortalUser.Login', '{ForeignTable}.PortalUserId={LocalTable}.ModifiedById', NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Link', 'CreatedById', 0, 0, 'lu_fielddesc_link_createdbyid', 'lu_field_createdbyid', 'In-Link', 'la_text_link', 10, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Link', 'CachedReviewsQty', 0, 0, 'lu_fielddesc_link_cachedreviewsqty', 'lu_field_cachedreviewsqty', 'In-Link', 'la_text_link', 9, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Link', 'CachedVotesQty', 0, 0, 'lu_fielddesc_link_cachedvotesqty', 'lu_field_cachedvotesqty', 'In-Link', 'la_text_link', 8, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Link', 'LinkId', 0, 1, 'lu_fielddesc_link_linkid', 'lu_field_linkid', 'In-Link', 'la_text_link', 0, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Link', 'Name', 1, 1, 'lu_fielddesc_link_name', 'lu_field_name', 'In-Link', 'la_text_link', 1, DEFAULT, 1, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Link', 'Description', 1, 1, 'lu_fielddesc_link_description', 'lu_field_description', 'In-Link', 'la_text_link', 2, DEFAULT, 1, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Link', 'Url', 1, 1, 'lu_fielddesc_link_url', 'lu_field_url', 'In-Link', 'la_text_link', 3, DEFAULT, 2, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Link', 'CreatedOn', 0, 1, 'lu_fielddesc_link_createdon', 'lu_field_createdon', 'In-Link', 'la_text_link', 4, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Link', 'Modified', 0, 1, 'lu_fielddesc_link_modified', 'lu_field_modified', 'In-Link', 'la_text_link', 5, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Link', 'Hits', 0, 1, 'lu_fielddesc_link_hits', 'lu_field_hits', 'In-Link', 'la_text_link', 6, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO SearchConfig VALUES ('Link', 'CachedRating', 0, 0, 'lu_fielddesc_link_cachedrating', 'lu_field_cachedrating', 'In-Link', 'la_text_link', 7, DEFAULT, 0, 'text', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Link', 'SELECT COUNT(*) as LinkCount FROM <%prefix%>Link WHERE Status=1', NULL, 'la_prompt_ActiveLinks', 0, 1);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Link', 'SELECT COUNT(*) AS TotalLinks FROM <%prefix%>Link', NULL, 'la_prompt_TotalLinks', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Link', 'SELECT COUNT(*) AS ActiveLinks FROM <%prefix%>Link WHERE Status = 1', NULL, 'la_prompt_ActiveLinks', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Link', 'SELECT COUNT(*) AS PendingLinks FROM <%prefix%>Link WHERE Status = 2', NULL, 'la_prompt_PendingLinks', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Link', 'SELECT COUNT(*) AS DisabledLinks FROM <%prefix%>Link WHERE Status = 0', NULL, 'la_prompt_DisabledLinks', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Link', 'SELECT COUNT(*) AS NewLinks FROM <%prefix%>Link WHERE (NewItem = 1) OR ( (UNIX_TIMESTAMP() - CreatedOn) <= <%m:config name="Link_NewDays"%>*86400 AND (NewItem = 2) )', NULL, 'la_prompt_NewLinks', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Link', 'SELECT COUNT(*) FROM <%prefix%>Link WHERE EditorsPick = 1', NULL, 'la_prompt_EditorsPickLinks', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Link', 'SELECT COUNT(*) AS HotLinks FROM <%prefix%>Link WHERE (HotItem = 1) OR (Hits >= <%m:config name="Link_MaxHotNumber"%> AND (HotItem = 2) )', NULL, 'la_prompt_HotLinks', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Link', 'SELECT COUNT(*) AS PopularLinks FROM <%prefix%>Link WHERE (PopItem = 1) OR ( (CachedRating >= <%link:hit_count type="top"%>) AND <%link:hit_count type="top"%> AND (PopItem = 2) )', NULL, 'la_prompt_PopularLinks', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Link', 'SELECT <%m:post_format field="AVG(CachedRating)" type="currency" precision="2"%> FROM <%prefix%>Link WHERE CachedRating > 0', NULL, 'la_prompt_LinksAverageRating', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Link', 'SELECT MAX(Hits) AS MaxLinksHits FROM <%prefix%>Link', NULL, 'la_prompt_MaxLinksHits', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Link', 'SELECT MAX(CachedVotesQty) AS MaxLinksVotes FROM <%prefix%>Link', NULL, 'la_prompt_MaxLinksVotes', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Link', 'SELECT <%m:post_format field="MAX(CreatedOn)" type="date"%> FROM <%prefix%>Link', NULL, 'la_prompt_NewestLinkDate', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Link', 'SELECT <%m:post_format field="MAX(Modified)" type="date"%> FROM <%prefix%>Link', NULL, 'la_prompt_LastLinkUpdate', 0, 2);
-INSERT INTO StatItem VALUES (DEFAULT, 'In-Link', 'SELECT COUNT(*) FROM <%prefix%>ItemReview WHERE Module = \'<%modules:get_current%>\'', NULL, 'la_prompt_LinkReviews', 0, 2);
-
-INSERT INTO Permissions VALUES (DEFAULT, 'CATEGORY.VIEW', 14, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.VIEW', 14, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'CATEGORY.VIEW', 12, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'FAVORITES', 12, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.VIEW', 12, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.ADD.PENDING', 12, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.RATE', 12, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.REVIEW', 12, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.OWNER.MODIFY', 12, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.OWNER.MODIFY.PENDING', 12, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'CATEGORY.VIEW', 13, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'FAVORITES', 13, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.ADD', 13, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.VIEW', 13, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.RATE', 13, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.REVIEW', 13, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.OWNER.MODIFY', 13, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.OWNER.MODIFY.PENDING', 13, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.OWNER.DELETE', 13, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'CATEGORY.VIEW', 11, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'CATEGORY.ADD', 11, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'CATEGORY.DELETE', 11, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'CATEGORY.MODIFY', 11, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'FAVORITES', 11, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.ADD', 11, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.VIEW', 11, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.MODIFY', 11, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.DELETE', 11, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.RATE', 11, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.REVIEW', 11, 1, 0, {LinkCatId});
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.ADD', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.VIEW', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.ADD.PENDING', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.MODIFY', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.DELETE', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.RATE', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.REVIEW', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.REVIEW.PENDING', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.MODIFY.PENDING', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.OWNER.MODIFY', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.OWNER.MODIFY.PENDING', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'LINK.OWNER.DELETE', 15, 0, 0, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link.view', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:inlink_general.view', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:inlink_general.edit', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:configuration_output.view', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:configuration_output.edit', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:configuration_search.view', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:configuration_search.edit', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:configuration_email.view', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:configuration_email.edit', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:configuration_custom.view', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:configuration_custom.add', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:configuration_custom.edit', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:configuration_custom.delete', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:duplicate_checker.view', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:duplicate_checker.add', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:duplicate_checker.edit', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:duplicate_checker.delete', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:validation_list.view', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:validation_list.add', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:validation_list.edit', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:paid_listings.view', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:paid_listings.add', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:paid_listings.edit', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:paid_listings.delete', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:paid_listings.advanced:approve', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:paid_listings.advanced:decline', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:listing_types.view', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:listing_types.add', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:listing_types.edit', 11, 1, 1, 0);
-INSERT INTO Permissions VALUES (DEFAULT, 'in-link:listing_types.delete', 11, 1, 1, 0);
-
-INSERT INTO ImportScripts VALUES (DEFAULT, 'In-Link', 'in-link', 'inlink_import', 'Intechnic In-Link 2.x', 'In-Link', 'link_image,user_admin,user_regular,init_cat', 1,'db');
-INSERT INTO ImportScripts VALUES (DEFAULT, 'In-Link', '', '', 'Gossamer Threads Links 2.x', '', '', 0,'db');
-INSERT INTO ImportScripts VALUES (DEFAULT, 'In-Link', '', '', 'Gossamer Threads Links 2.x SQL version', '', '', 0,'db');
-INSERT INTO ImportScripts VALUES (DEFAULT, 'In-Link', '', '', 'Sentraweb Indexu 3.x', '', '', 0,'db');
-INSERT INTO ImportScripts VALUES (DEFAULT, 'In-Link', '', '', 'Links from CSV file [In-Link]', '', '', 1, 'csv');
-
-INSERT INTO CustomField VALUES (DEFAULT, 1, 'l_ItemTemplate', 'l_ItemTemplate', 0, 'la_title_SystemCF', 'l_ItemTemplate', 'text', NULL, 0, 0, 1);
-
-INSERT INTO Modules VALUES ('In-Link', 'in-link/', 'l', '4.2.0', 1, 1, 'inlink/', 2, '1054738405');
Property changes on: trunk/in-link/admin/install/inportal_data.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.54
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-link/admin/install/inportal_schema.sql
===================================================================
--- trunk/in-link/admin/install/inportal_schema.sql (revision 12828)
+++ trunk/in-link/admin/install/inportal_schema.sql (nonexistent)
@@ -1,101 +0,0 @@
-CREATE TABLE Link (
- LinkId int(11) NOT NULL auto_increment,
- `Name` varchar(255) NOT NULL default '',
- l1_Name varchar(255) NOT NULL default '',
- l2_Name varchar(255) NOT NULL default '',
- l3_Name varchar(255) NOT NULL default '',
- l4_Name varchar(255) NOT NULL default '',
- l5_Name varchar(255) NOT NULL default '',
- AutomaticFilename tinyint(3) unsigned NOT NULL default '1',
- Description text,
- Url varchar(255) NOT NULL default '',
- CreatedOn int(10) unsigned default NULL,
- Modified int(10) unsigned default NULL,
- Expire int(10) unsigned default NULL,
- Hits double(20,6) NOT NULL default '0.000000',
- CachedRating varchar(10) NOT NULL default '0',
- CachedVotesQty int(11) NOT NULL default '0',
- CachedReviewsQty INT(11) NOT NULL DEFAULT '0',
- CreatedById int(11) NOT NULL default '-1',
- ModifiedById int(11) NOT NULL default '-1',
- Priority int(11) NOT NULL default '0',
- `Status` tinyint(4) NOT NULL default '2',
- EditorsPick tinyint(4) NOT NULL default '0',
- ResourceId int(11) default NULL,
- HotItem tinyint(4) NOT NULL default '2',
- PopItem tinyint(4) NOT NULL default '2',
- NewItem tinyint(4) NOT NULL default '2',
- OrgId int(11) default NULL,
- PRIMARY KEY (LinkId),
- UNIQUE KEY ResourceId (ResourceId),
- KEY sorting (Priority,`Name`),
- KEY Hits (Hits),
- KEY `Name` (`Name`),
- KEY EditorsPick (EditorsPick),
- KEY CreatedOn (CreatedOn),
- KEY Modified (Modified,CreatedOn),
- KEY `Status` (`Status`)
-)
-# --------------------------------------------------------
-CREATE TABLE LinkValidation (
- LinkValidationId int(11) NOT NULL auto_increment,
- LinkId int(11) NOT NULL default '0',
- ValidationTime double NOT NULL default '0',
- ValidationCode varchar(50) default NULL,
- ValidationStatus tinyint(4) NOT NULL default '0',
- PRIMARY KEY (LinkValidationId),
- UNIQUE KEY LinkId (LinkId)
-)
-# --------------------------------------------------------
-CREATE TABLE Listings (
- ListingId int(11) NOT NULL auto_increment,
- ListingTypeId int(11) default '0',
- ItemResourceId int(11) default NULL,
- PurchasedOn int(11) default NULL,
- ExpiresOn int(11) default NULL,
- `Status` TINYINT(4) UNSIGNED NOT NULL DEFAULT '2',
- PendingRenewal tinyint(4) NOT NULL default '0',
- RenewalReminderSent tinyint(4) NOT NULL default '0',
- PRIMARY KEY (ListingId)
-)
-# --------------------------------------------------------
-CREATE TABLE ListingTypes (
- ListingTypeId int(11) NOT NULL auto_increment,
- Name varchar(255) NOT NULL default '',
- Description text NOT NULL,
- Duration int(11) NOT NULL default '0',
- DurationType int(11) NOT NULL default '0',
- OnPurchaseEdPick tinyint(4) NOT NULL default '3',
- OnPurchaseNew tinyint(4) NOT NULL default '3',
- OnPurchasePop tinyint(4) NOT NULL default '3',
- OnPurchaseHot tinyint(4) NOT NULL default '3',
- OnPurchasePriorityAction tinyint(4) NOT NULL default '0',
- OnPurchasePriorityValue tinyint(4) NOT NULL default '1',
- OnPurchaseAddToCatEnabled tinyint(4) NOT NULL default '0',
- OnPurchaseAddToCat int(11) NOT NULL default '0',
- OnPurchaseStatus tinyint(4) NOT NULL default '3',
- OnExpireEdPick tinyint(4) NOT NULL default '3',
- OnExpireNew tinyint(4) NOT NULL default '3',
- OnExpirePop tinyint(4) NOT NULL default '3',
- OnExpireHot tinyint(4) NOT NULL default '3',
- OnExpirePriorityAction tinyint(4) NOT NULL default '0',
- OnExpirePriorityValue tinyint(4) NOT NULL default '1',
- OnExpireRemoveFromCatEnabled tinyint(4) NOT NULL default '0',
- OnExpireRemoveFromCat int(11) NOT NULL default '0',
- OnExpireStatus tinyint(4) NOT NULL default '3',
- RenewalReminder int(11) NOT NULL default '0',
- EnableBuying tinyint(4) NOT NULL default '0',
- ShopCartName varchar(255) default NULL,
- Price double default NULL,
- Recurring tinyint(4) NOT NULL default '0',
- VirtualProductId int(11) NOT NULL default '0',
- PRIMARY KEY (ListingTypeId)
-)
-# --------------------------------------------------------
-CREATE TABLE LinkCustomData (
- 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-link/admin/install/inportal_schema.sql
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.25
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.2.php
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.2.php (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.2.php (nonexistent)
@@ -1,9 +0,0 @@
-<?php
- $inst_ado =& inst_GetADODBConnection();
-
- $sql = 'SELECT VariableValue FROM '.GetTablePrefix().'ConfigurationValues WHERE VariableName = '.$inst_ado->qstr('Link_TopCount');
- $top_count = $inst_ado->GetOne($sql);
-
- $sql = 'UPDATE '.GetTablePrefix().'ConfigurationValues SET VariableValue = %s WHERE VariableName = '.$inst_ado->qstr('Link_RatingToPop');
- $inst_ado->Execute( sprintf($sql, $top_count) );
-?>
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.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-link/admin/install/upgrades/inportal_upgrade_v3.1.3.php
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.3.php (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.3.php (nonexistent)
@@ -1,25 +0,0 @@
-<?php
-
- $module_prefix = 'l';
- $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 = l_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-link/admin/install/upgrades/inportal_upgrade_v3.1.3.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-link/admin/install/upgrades/inportal_upgrade_v3.2.1.php
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.2.1.php (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.2.1.php (nonexistent)
@@ -1,24 +0,0 @@
-<?php
-
- linkCustomFields('In-Link', 'l', 2);
-
- linkCustomFields('KERNEL', 'c', 1);
-
- $application =& kApplication::Instance();
-
- $query = 'REPLACE INTO '.TABLE_PREFIX.'CategoryItems (CategoryId, ItemResourceid, Primarycat, ItemPrefix, Filename)
- SELECT
- ci.CategoryId,
- ci.ItemResourceId,
- ci.PrimaryCat,
- \'l\' AS ItemPrefix,
- i.Filename as Filename
- FROM `'.TABLE_PREFIX.'Link` as i
- LEFT JOIN '.TABLE_PREFIX.'CategoryItems as ci
- ON ci.ItemResourceId = i.ResourceId;';
-
- $application->Conn->Query($query);
-
- moveItemTemplatesToCustom('In-Link', 'l');
-
-?>
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.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-link/admin/install/upgrades/inportal_upgrade_v3.1.1.sql
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.1.sql (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.1.sql (nonexistent)
@@ -1,42 +0,0 @@
-INSERT INTO ConfigurationAdmin VALUES ('Link_EnhancedLinks', 'la_Text_Links', 'la_link_EnhancedLinks', 'checkbox', '', '', 9, 1);
-INSERT INTO ConfigurationValues VALUES ('Link_EnhancedLinks', '0', 'In-Link', 'in-link:configuration_output');
-ALTER TABLE ListingTypes ADD OnPurchaseAddToCatEnabled TINYINT DEFAULT '0' NOT NULL AFTER OnPurchasePriorityValue;
-ALTER TABLE ListingTypes ADD OnExpireRemoveFromCatEnabled TINYINT DEFAULT '0' NOT NULL AFTER OnExpirePriorityValue;
-ALTER TABLE ListingTypes ADD RenewalReminder INT NOT NULL, ADD EnableBuying TINYINT NOT NULL, ADD ShopCartName VARCHAR(255), ADD Price DOUBLE, ADD Recurring TINYINT NOT NULL;
-ALTER TABLE ListingTypes ADD VirtualProductId INT DEFAULT '0' NOT NULL;
-ALTER TABLE Listings ADD PendingRenewal TINYINT DEFAULT '0' NOT NULL;
-ALTER TABLE Listings ADD RenewalReminderSent TINYINT DEFAULT '0' NOT NULL;
-
-INSERT INTO Events VALUES ('', 'LINK.ENHANCE', '1', '0', 'In-Link', 'la_event_link.link.enhance', '1');
-INSERT INTO Events VALUES ('', 'LINK.ENHANCE', '1', '0', 'In-Link', 'la_event_link.link.enhance', '0');
-INSERT INTO Events VALUES ('', 'LINK.ENHANCE.APPROVE', '0', '0', 'In-Link', 'la_event_link.link.enhance.approve', '1');
-INSERT INTO Events VALUES ('', 'LINK.ENHANCE.APPROVE', '1', '0', 'In-Link', 'la_event_link.link.enhance.approve', '0');
-INSERT INTO Events VALUES ('', 'LINK.ENHANCE.DENY', '0', '0', 'In-Link', 'la_event_link.link.enhance.deny', '1');
-INSERT INTO Events VALUES ('', 'LINK.ENHANCE.DENY', '1', '0', 'In-Link', 'la_event_link.link.enhance.deny', '0');
-INSERT INTO Events VALUES ('', 'LINK.ENHANCE.EXPIRE', '1', '0', 'In-Link', 'la_event_link.link.enhance.expire', '1');
-INSERT INTO Events VALUES ('', 'LINK.ENHANCE.EXPIRE', '1', '0', 'In-Link', 'la_event_link.link.enhance.expire', '0');
-INSERT INTO Events VALUES ('', 'LINK.ENHANCE.EXTEND', '1', '0', 'In-Link', 'la_event_link.link.enhance.extend', '1');
-INSERT INTO Events VALUES ('', 'LINK.ENHANCE.EXTEND', '1', '0', 'In-Link', 'la_event_link.link.enhance.extend', '0');
-INSERT INTO Events VALUES ('', 'LINK.ENHANCE.RENEW', '0', '0', 'In-Link', 'la_event_link.link.enhance.renew', '1');
-INSERT INTO Events VALUES ('', 'LINK.ENHANCE.RENEW', '1', '0', 'In-Link', 'la_event_link.link.enhance.renew', '0');
-INSERT INTO Events VALUES ('', 'LINK.ENHANCE.RENEW.FAILED', '1', '0', 'In-Link', 'la_event_link.link.enhance.renew_failed', '1');
-INSERT INTO Events VALUES ('', 'LINK.ENHANCE.RENEW.FAILED', '1', '0', 'In-Link', 'la_event_link.link.enhance.renew_failed', '0');
-INSERT INTO Events VALUES ('', 'LINK.ENHANCE.CANCEL', '1', '0', 'In-Link', 'la_event_link.link.enhance.renew_cancel', '1');
-INSERT INTO Events VALUES ('', 'LINK.ENHANCE.CANCEL', '1', '0', 'In-Link', 'la_event_link.link.enhance.renew_cancel', '0');
-INSERT INTO Events VALUES ('', 'LINK.ENHANCE.RENEWAL.NOTICE', '1', '0', 'In-Link', 'la_event_link.link.enhance.renewal_notice', '1');
-INSERT INTO Events VALUES ('', 'LINK.ENHANCE.RENEWAL.NOTICE', '1', '0', 'In-Link', 'la_event_link.link.enhance.renewal_notice', '0');
-
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('LINK.ADD', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('LINK.VIEW', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('LINK.ADD.PENDING', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('LINK.MODIFY', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('LINK.DELETE', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('LINK.RATE', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('LINK.REVIEW', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('LINK.REVIEW.PENDING', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('LINK.MODIFY.PENDING', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('LINK.OWNER.MODIFY', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('LINK.OWNER.MODIFY.PENDING', -1, 0, 0, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('LINK.OWNER.DELETE', -1, 0, 0, 0);
-
-UPDATE Modules SET Version = '3.1.1' WHERE Name = 'In-Link';
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.1.sql
___________________________________________________________________
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-link/admin/install/upgrades/inportal_upgrade_v3.1.0.sql
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.0.sql (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.0.sql (nonexistent)
@@ -1,4 +0,0 @@
-CREATE TABLE Listings (ListingId int(11) NOT NULL auto_increment, ListingTypeId int(11) default '0', ItemResourceId int(11) default NULL, PurchasedOn int(11) default NULL, ExpiresOn int(11) default NULL, Status tinyint(4) default '0', PRIMARY KEY (ListingId) );
-CREATE TABLE ListingTypes ( ListingTypeId int(11) NOT NULL auto_increment, Name varchar(255) NOT NULL default '', Duration int(11) NOT NULL default '0', DurationType int(11) NOT NULL default '0', OnPurchaseEdPick tinyint(4) NOT NULL default '3', OnPurchaseNew tinyint(4) NOT NULL default '3', OnPurchasePop tinyint(4) NOT NULL default '3', OnPurchaseHot tinyint(4) NOT NULL default '3', OnPurchasePriorityAction tinyint(4) NOT NULL default '0', OnPurchasePriorityValue tinyint(4) NOT NULL default '1', OnPurchaseAddToCat int(11) NOT NULL default '0', OnExpireEdPick tinyint(4) NOT NULL default '3', OnExpireNew tinyint(4) NOT NULL default '3', OnExpirePop tinyint(4) NOT NULL default '3', OnExpireHot tinyint(4) NOT NULL default '3', OnExpirePriorityAction tinyint(4) NOT NULL default '0', OnExpirePriorityValue tinyint(4) NOT NULL default '1', OnExpireRemoveFromCat int(11) NOT NULL default '0', PRIMARY KEY (ListingTypeId) );
-
-UPDATE Modules SET Version = '3.1.0' WHERE Name = 'In-Link';
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.0.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-link/admin/install/upgrades/inportal_upgrade_v3.0.3.sql
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.0.3.sql (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.0.3.sql (nonexistent)
@@ -1 +0,0 @@
-UPDATE Modules SET Version = '3.0.3' WHERE Name = 'In-Link';
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.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-link/admin/install/upgrades/inportal_upgrade_v3.0.2.sql
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.0.2.sql (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.0.2.sql (nonexistent)
@@ -1 +0,0 @@
-UPDATE Modules SET Version = '3.0.2' WHERE Name = 'In-Link';
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.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-link/admin/install/upgrades/inportal_upgrade_v4.0.1.sql
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v4.0.1.sql (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v4.0.1.sql (nonexistent)
@@ -1 +0,0 @@
-UPDATE Modules SET Version = '4.0.1' WHERE Name = 'In-Link';
\ No newline at end of file
Property changes on: trunk/in-link/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-link/admin/install/upgrades/changelog_4_1_0.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/changelog_4_1_0.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/changelog_4_1_0.txt (nonexistent)
@@ -1,21 +0,0 @@
-File in-link/in-link/link.php changed
-File in-link/in-link/parser.php changed
-File in-link/in-link/admin/import/status.php changed
-File in-link/in-link/admin/install/inportal_data.sql changed
-File in-link/in-link/admin/install/inportal_schema.sql changed
-File in-link/in-link/admin/install/upgrades/changelog_4_0_1.txt changed
-File in-link/in-link/admin/install/upgrades/changelog_4_1_0.txt is new; release_4_1_0 revision 1.1.2.6
-File in-link/in-link/admin/install/upgrades/inportal_upgrade_v4.1.0.sql is new; release_4_1_0 revision 1.1.2.1
-File in-link/in-link/admin/install/upgrades/readme_4_1_0.txt is new; release_4_1_0 revision 1.1.2.1
-File in-link/in-link/admin_templates/duplicate_checker.tpl changed
-File in-link/in-link/admin_templates/export.tpl changed
-File in-link/in-link/admin_templates/export_finish.tpl changed
-File in-link/in-link/admin_templates/import.tpl changed
-File in-link/in-link/admin_templates/links/links_edit.tpl changed
-File in-link/in-link/admin_templates/paid_listings/paid_listing_edit.tpl changed
-File in-link/in-link/admin_templates/paid_listings/paid_listing_type_edit.tpl changed
-File in-link/in-link/units/links/links_config.php changed
-File in-link/in-link/units/listing_types/listing_types_config.php changed
-File in-link/in-link/units/listings/listings_config.php changed
-File in-link/in-link/units/listings/listings_event_handler.php changed
-File in-link/themes/default/inlink/suggest_link/suggest_link_form.tpl changed
Property changes on: trunk/in-link/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-link/admin/install/upgrades/changelog_3_0_5.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/changelog_3_0_5.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/changelog_3_0_5.txt (nonexistent)
@@ -1,27 +0,0 @@
-File in-link/in-link/action.php changed
-File in-link/in-link/frontaction.php changed
-File in-link/in-link/link.php changed
-File in-link/in-link/parser.php changed
-File in-link/in-link/searchaction.php changed
-File in-link/in-link/admin/addlink.php changed
-File in-link/in-link/admin/addlink_category.php changed
-File in-link/in-link/admin/addlink_custom.php changed
-File in-link/in-link/admin/addlink_images.php changed
-File in-link/in-link/admin/addlink_relations.php changed
-File in-link/in-link/admin/addlink_reviews.php changed
-File in-link/in-link/admin/advanced_view.php is new
-File in-link/in-link/admin/browse.php changed
-File in-link/in-link/admin/install.php changed
-File in-link/in-link/admin/validation.php changed
-File in-link/in-link/admin/include/parser.php changed
-File in-link/in-link/admin/include/help/editlink_category.txt changed
-File in-link/in-link/admin/include/summary/site.php changed
-File in-link/in-link/admin/include/toolbar/advanced_view.php is new
-File in-link/in-link/admin/install/inportal_data.sql changed
-File in-link/in-link/admin/install/upgrades/changelog_3_0_5.txt is new
-File in-link/in-link/admin/install/upgrades/inportal_upgrade_v3.0.5.sql is new
-File in-link/in-link/admin/install/upgrades/readme_3_0_5.txt is new
-File in-link/in-link/admin/templates/link_element.tpl changed
-File in-link/themes/default/inlink/main.tpl changed
-File in-link/themes/default/inlink/pick.tpl changed
-File in-link/themes/default/inlink/search_results/short_results.tpl changed
Property changes on: trunk/in-link/admin/install/upgrades/changelog_3_0_5.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-link/admin/install/upgrades/changelog_3_1_2.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/changelog_3_1_2.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/changelog_3_1_2.txt (nonexistent)
@@ -1,57 +0,0 @@
-File in-link/in-link/action.php changed
-File in-link/in-link/in-link_config.php is removed
-File in-link/in-link/inlink_redirect.php changed
-File in-link/in-link/link.php changed
-File in-link/in-link/parser.php changed
-File in-link/in-link/admin/addimage.php changed
-File in-link/in-link/admin/addlink.php changed
-File in-link/in-link/admin/addlink_category.php changed
-File in-link/in-link/admin/addlink_custom.php changed
-File in-link/in-link/admin/addlink_images.php changed
-File in-link/in-link/admin/addlink_relations.php changed
-File in-link/in-link/admin/addlink_reviews.php changed
-File in-link/in-link/admin/addrelation.php changed
-File in-link/in-link/admin/addreview.php changed
-File in-link/in-link/admin/advanced_view.php changed
-File in-link/in-link/admin/browse.php changed
-File in-link/in-link/admin/config_general.php changed
-File in-link/in-link/admin/install.php changed
-File in-link/in-link/admin/item_select.php changed
-File in-link/in-link/admin/relation_select.php changed
-File in-link/in-link/admin/reviews.php changed
-File in-link/in-link/admin/run_validation.php changed
-File in-link/in-link/admin/validation.php changed
-File in-link/in-link/admin/include/navmenu.php changed
-File in-link/in-link/admin/include/parser.php changed
-File in-link/in-link/admin/include/toolbar/advanced_view.php changed
-File in-link/in-link/admin/include/toolbar/browse.php changed
-File in-link/in-link/admin/install/inportal_data.sql changed
-File in-link/in-link/admin/install/langpacks/english.lang changed
-File in-link/in-link/admin/install/upgrades/changelog_3_1_2.txt is new
-File in-link/in-link/admin/install/upgrades/inportal_upgrade_v3.1.2.php is new
-File in-link/in-link/admin/install/upgrades/inportal_upgrade_v3.1.2.sql is new
-File in-link/in-link/admin/install/upgrades/readme_3_1_2.txt is new
-File in-link/in-link/admin_templates/link_selector.tpl changed
-File in-link/in-link/admin_templates/img/itemicons/icon16_custom.gif is new
-File in-link/in-link/admin_templates/img/itemicons/icon16_link.gif is new
-File in-link/in-link/admin_templates/img/itemicons/icon16_link_disabled.gif is new
-File in-link/in-link/admin_templates/img/itemicons/icon16_link_hot.gif is new
-File in-link/in-link/admin_templates/img/itemicons/icon16_link_new.gif is new
-File in-link/in-link/admin_templates/img/itemicons/icon16_link_pending.gif is new
-File in-link/in-link/admin_templates/img/itemicons/icon16_link_pick.gif is new
-File in-link/in-link/admin_templates/img/itemicons/icon16_link_pop.gif is new
-File in-link/in-link/admin_templates/img/itemicons/icon16_listing.gif is new
-File in-link/in-link/admin_templates/img/itemicons/icon16_listing_disabled.gif is new
-File in-link/in-link/admin_templates/img/itemicons/icon16_listing_pending.gif is new
-File in-link/in-link/admin_templates/img/itemicons/icon16_listing_type.gif is new
-File in-link/in-link/admin_templates/links/links_catalog.tpl is new
-File in-link/in-link/admin_templates/links/links_edit.tpl is new
-File in-link/in-link/admin_templates/links/links_tabs.tpl is new
-File in-link/in-link/admin_templates/paid_listings/paid_listing_types_list.tpl changed
-File in-link/in-link/units/links/link_event_handler.php is removed
-File in-link/in-link/units/links/link_tag_processor.php changed
-File in-link/in-link/units/links/links_config.php changed
-File in-link/in-link/units/listing_types/listing_types_config.php changed
-File in-link/in-link/units/listings/listings_config.php changed
-File in-link/themes/default/inlink/detail/link.tpl changed
-File in-link/themes/default/inlink/suggest_link/suggest_link_form.tpl changed
Property changes on: trunk/in-link/admin/install/upgrades/changelog_3_1_2.txt
___________________________________________________________________
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-link/admin/install/upgrades/changelog_3_1_3.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/changelog_3_1_3.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/changelog_3_1_3.txt (nonexistent)
@@ -1,37 +0,0 @@
-File in-link/in-link/action.php changed
-File in-link/in-link/frontaction.php changed
-File in-link/in-link/link.php changed
-File in-link/in-link/module_init.php changed
-File in-link/in-link/parser.php changed
-File in-link/in-link/admin/addlink.php changed
-File in-link/in-link/admin/addlink_category.php changed
-File in-link/in-link/admin/addlink_images.php changed
-File in-link/in-link/admin/install.php changed
-File in-link/in-link/admin/run_validation.php changed
-File in-link/in-link/admin/include/parser.php changed
-File in-link/in-link/admin/include/help/editlink_general.txt changed
-File in-link/in-link/admin/include/toolbar/browse.php changed
-File in-link/in-link/admin/install/inportal_data.sql changed
-File in-link/in-link/admin/install/inportal_schema.sql changed
-File in-link/in-link/admin/install/prerequisit.php changed
-File in-link/in-link/admin/install/langpacks/english.lang changed
-File in-link/in-link/admin/install/upgrades/changelog_3_1_3.txt is new
-File in-link/in-link/admin/install/upgrades/inportal_upgrade_v3.1.3.php is new
-File in-link/in-link/admin/install/upgrades/inportal_upgrade_v3.1.3.sql is new
-File in-link/in-link/admin/install/upgrades/readme_3_1_3.txt is new
-File in-link/in-link/admin_templates/link_selector.tpl changed
-File in-link/in-link/units/links/link_tag_processor.php changed
-File in-link/in-link/units/links/links_config.php changed
-File in-link/in-link/units/listings/listings_config.php changed
-File in-link/in-link/units/listings/listings_event_handler.php changed
-File in-link/in-link/units/listings/listings_tag_processor.php changed
-File in-link/themes/default/inlink/link_element.tpl changed
-File in-link/themes/default/inlink/detail/link.tpl changed
-File in-link/themes/default/inlink/detail/right/actionbox.tpl changed
-File in-link/themes/default/inlink/detail_zoom/right/actionbox.tpl changed
-File in-link/themes/default/inlink/edit_link/edit_link_form.tpl changed
-File in-link/themes/default/inlink/index/sitemap_cat_element.tpl changed
-File in-link/themes/default/inlink/index/sitemap_subcat_element.tpl changed
-File in-link/themes/default/inlink/main/edpick/links.tpl changed
-File in-link/themes/default/inlink/pick/link_element.tpl changed
-File in-link/themes/default/inlink/quicklinks/edpick/links.tpl changed
Property changes on: trunk/in-link/admin/install/upgrades/changelog_3_1_3.txt
___________________________________________________________________
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-link/admin/install/upgrades/changelog_3_2_0.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/changelog_3_2_0.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/changelog_3_2_0.txt (nonexistent)
@@ -1,85 +0,0 @@
-File in-link/in-link/action.php changed
-File in-link/in-link/frontaction.php changed
-File in-link/in-link/link.php changed
-File in-link/in-link/admin/addimage.php changed
-File in-link/in-link/admin/addlink.php changed
-File in-link/in-link/admin/addreview.php changed
-File in-link/in-link/admin/advanced_view.php changed
-File in-link/in-link/admin/browse.php changed
-File in-link/in-link/admin/config_general.php is removed; release_3_1_7 revision 1.6
-File in-link/in-link/admin/install.php changed
-File in-link/in-link/admin/validation.php changed
-File in-link/in-link/admin/images/icon24_settings_in-link.gif is removed; release_3_1_7 revision 1.1
-File in-link/in-link/admin/images/icon46_list_settings_in-link.gif is removed; release_3_1_7 revision 1.1
-File in-link/in-link/admin/images/icon46_settings_in-link.gif is removed; release_3_1_7 revision 1.1
-File in-link/in-link/admin/import/inlink_import.php changed
-File in-link/in-link/admin/include/navmenu.php changed
-File in-link/in-link/admin/include/toolbar/advanced_view.php changed
-File in-link/in-link/admin/include/toolbar/browse.php changed
-File in-link/in-link/admin/install/inportal_data.sql changed
-File in-link/in-link/admin/install/inportal_schema.sql changed
-File in-link/in-link/admin/install/langpacks/english.lang changed
-File in-link/in-link/admin/install/upgrades/changelog_3_2_0.txt is new; release_3_2_0 revision 1.1.2.9
-File in-link/in-link/admin/install/upgrades/inportal_upgrade_v3.2.0.sql is new; release_3_2_0 revision 1.2.2.1
-File in-link/in-link/admin/install/upgrades/readme_3_1_7.txt is removed; release_3_1_7 revision 1.1.2.2
-File in-link/in-link/admin/install/upgrades/readme_3_2_0.txt is new; release_3_2_0 revision 1.1.2.3
-File in-link/in-link/admin_templates/duplicate_checker.tpl is new; release_3_2_0 revision 1.9
-File in-link/in-link/admin_templates/export.tpl changed
-File in-link/in-link/admin_templates/export_finish.tpl changed
-File in-link/in-link/admin_templates/export_progress.tpl changed
-File in-link/in-link/admin_templates/export_status_xml.tpl changed
-File in-link/in-link/admin_templates/import.tpl changed
-File in-link/in-link/admin_templates/import_progress.tpl changed
-File in-link/in-link/admin_templates/import_status_xml.tpl changed
-File in-link/in-link/admin_templates/link_selector.tpl changed
-File in-link/in-link/admin_templates/img/icons/icon24_duplicate_checker.gif is new; release_3_2_0 revision 1.1
-File in-link/in-link/admin_templates/img/icons/icon24_paid_listings.gif is new; release_3_2_0 revision 1.1
-File in-link/in-link/admin_templates/img/icons/icon24_settings_custom.gif is new; release_3_2_0 revision 1.1
-File in-link/in-link/admin_templates/img/icons/icon24_settings_email.gif is new; release_3_2_0 revision 1.1
-File in-link/in-link/admin_templates/img/icons/icon24_settings_general.gif is new; release_3_2_0 revision 1.1
-File in-link/in-link/admin_templates/img/icons/icon24_settings_in-link.gif is new; release_3_2_0 revision 1.1
-File in-link/in-link/admin_templates/img/icons/icon24_settings_output.gif is new; release_3_2_0 revision 1.1
-File in-link/in-link/admin_templates/img/icons/icon24_settings_search.gif is new; release_3_2_0 revision 1.1
-File in-link/in-link/admin_templates/img/icons/icon24_validate.gif is new; release_3_2_0 revision 1.1
-File in-link/in-link/admin_templates/img/icons/icon46_duplicate_checker.gif is new; release_3_2_0 revision 1.1
-File in-link/in-link/admin_templates/img/icons/icon46_links.gif is new; release_3_2_0 revision 1.1
-File in-link/in-link/admin_templates/img/icons/icon46_list_duplicate_checker.gif is new; release_3_2_0 revision 1.1
-File in-link/in-link/admin_templates/img/icons/icon46_list_paid_listings.gif is new; release_3_2_0 revision 1.1
-File in-link/in-link/admin_templates/img/icons/icon46_list_settings_custom.gif is new; release_3_2_0 revision 1.1
-File in-link/in-link/admin_templates/img/icons/icon46_list_settings_email.gif is new; release_3_2_0 revision 1.1
-File in-link/in-link/admin_templates/img/icons/icon46_list_settings_general.gif is new; release_3_2_0 revision 1.1
-File in-link/in-link/admin_templates/img/icons/icon46_list_settings_in-link.gif is new; release_3_2_0 revision 1.1
-File in-link/in-link/admin_templates/img/icons/icon46_list_settings_output.gif is new; release_3_2_0 revision 1.1
-File in-link/in-link/admin_templates/img/icons/icon46_list_settings_search.gif is new; release_3_2_0 revision 1.1
-File in-link/in-link/admin_templates/img/icons/icon46_list_validate.gif is new; release_3_2_0 revision 1.1
-File in-link/in-link/admin_templates/img/icons/icon46_listing_types.gif is new; release_3_2_0 revision 1.1
-File in-link/in-link/admin_templates/img/icons/icon46_paid_listings.gif is new; release_3_2_0 revision 1.1
-File in-link/in-link/admin_templates/img/icons/icon46_settings_in-link.gif is new; release_3_2_0 revision 1.1
-File in-link/in-link/admin_templates/links/images_edit.tpl is new; release_3_2_0 revision 1.2
-File in-link/in-link/admin_templates/links/links_catalog.tpl changed
-File in-link/in-link/admin_templates/links/links_categories.tpl is new; release_3_2_0 revision 1.2
-File in-link/in-link/admin_templates/links/links_custom.tpl is new; release_3_2_0 revision 1.2
-File in-link/in-link/admin_templates/links/links_edit.tpl changed
-File in-link/in-link/admin_templates/links/links_images.tpl is new; release_3_2_0 revision 1.2
-File in-link/in-link/admin_templates/links/links_relations.tpl is new; release_3_2_0 revision 1.2
-File in-link/in-link/admin_templates/links/links_reviews.tpl is new; release_3_2_0 revision 1.2
-File in-link/in-link/admin_templates/links/relations_edit.tpl is new; release_3_2_0 revision 1.2
-File in-link/in-link/admin_templates/links/review_edit.tpl is new; release_3_2_0 revision 1.2
-File in-link/in-link/admin_templates/paid_listings/paid_listing_edit.tpl changed
-File in-link/in-link/admin_templates/paid_listings/paid_listing_type_edit.tpl changed
-File in-link/in-link/admin_templates/paid_listings/paid_listing_types_list.tpl changed
-File in-link/in-link/admin_templates/paid_listings/paid_listing_types_tabs.tpl changed
-File in-link/in-link/admin_templates/paid_listings/paid_listings_list.tpl changed
-File in-link/in-link/module_help/duplicate_links.txt is new; release_3_2_0 revision 1.1.2.1
-File in-link/in-link/module_help/links_custom.txt is new; release_3_2_0 revision 1.1
-File in-link/in-link/units/links/link_tag_processor.php changed
-File in-link/in-link/units/links/links_config.php changed
-File in-link/in-link/units/links/links_event_handler.php changed
-File in-link/in-link/units/listing_types/listing_types_config.php changed
-File in-link/in-link/units/listing_types/listing_types_event_handler.php changed
-File in-link/in-link/units/listings/listings_config.php changed
-File in-link/in-link/units/listings/listings_event_handler.php changed
-File in-link/in-link/units/listings/listings_tag_processor.php changed
-File in-link/themes/default/inlink/detail/link.tpl changed
-File in-link/themes/default/inlink/edit_link/edit_link_form.tpl changed
-File in-link/themes/default/inlink/suggest_link/suggest_link_form.tpl changed
Property changes on: trunk/in-link/admin/install/upgrades/changelog_3_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-link/admin/install/upgrades/changelog_3_2_1.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/changelog_3_2_1.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/changelog_3_2_1.txt (nonexistent)
@@ -1,85 +0,0 @@
-File in-link/in-link/inlink_redirect.php changed
-File in-link/in-link/link.php changed
-File in-link/in-link/parser.php changed
-File in-link/in-link/admin/addlink_category.php changed
-File in-link/in-link/admin/install.php changed
-File in-link/in-link/admin/import/inlink_import.php changed
-File in-link/in-link/admin/include/help/configuration_custom.txt is removed; release_3_2_0 revision 1.1
-File in-link/in-link/admin/include/help/configuration_email.txt is removed; release_3_2_0 revision 1.1
-File in-link/in-link/admin/include/help/editlink_category.txt is removed; release_3_2_0 revision 1.2
-File in-link/in-link/admin/include/help/editlink_custom.txt is removed; release_3_2_0 revision 1.1
-File in-link/in-link/admin/include/help/editlink_general.txt is removed; release_3_2_0 revision 1.4
-File in-link/in-link/admin/include/help/editlink_image.txt is removed; release_3_2_0 revision 1.1
-File in-link/in-link/admin/include/help/editlink_images.txt is removed; release_3_2_0 revision 1.1
-File in-link/in-link/admin/include/help/editlink_relation.txt is removed; release_3_2_0 revision 1.1
-File in-link/in-link/admin/include/help/editlink_relations.txt is removed; release_3_2_0 revision 1.1
-File in-link/in-link/admin/include/help/editlink_review.txt is removed; release_3_2_0 revision 1.1
-File in-link/in-link/admin/include/help/editlink_reviews.txt is removed; release_3_2_0 revision 1.1
-File in-link/in-link/admin/include/help/inlink_general.txt is removed; release_3_2_0 revision 1.1
-File in-link/in-link/admin/include/toolbar/advanced_view.php changed
-File in-link/in-link/admin/include/toolbar/browse.php changed
-File in-link/in-link/admin/install/inportal_data.sql changed
-File in-link/in-link/admin/install/inportal_schema.sql changed
-File in-link/in-link/admin/install/langpacks/english.lang changed
-File in-link/in-link/admin/install/upgrades/changelog_3_2_1.txt is new; release_3_2_1 revision 1.1.2.6
-File in-link/in-link/admin/install/upgrades/inportal_upgrade_v3.2.1.php is new; release_3_2_1 revision 1.1.2.3
-File in-link/in-link/admin/install/upgrades/inportal_upgrade_v3.2.1.sql is new; release_3_2_1 revision 1.2.2.1
-File in-link/in-link/admin/install/upgrades/readme_3_2_1.txt is new; release_3_2_1 revision 1.1.2.1
-File in-link/in-link/admin_templates/catalog_tab.tpl is new; release_3_2_1 revision 1.14.2.8
-File in-link/in-link/admin_templates/category_properties.tpl is new; release_3_2_1 revision 1.1.2.1
-File in-link/in-link/admin_templates/duplicate_checker.tpl changed
-File in-link/in-link/admin_templates/export_progress.tpl changed
-File in-link/in-link/admin_templates/export_status_xml.tpl changed
-File in-link/in-link/admin_templates/import.tpl changed
-File in-link/in-link/admin_templates/import_progress.tpl changed
-File in-link/in-link/admin_templates/import_status_xml.tpl changed
-File in-link/in-link/admin_templates/link_selector.tpl is removed; release_3_2_0 revision 1.11
-File in-link/in-link/admin_templates/img/icons/icon46_paid_listings.gif changed
-File in-link/in-link/admin_templates/img/toolbar/tool_new_link.gif is new; release_3_2_1 revision 1.1.2.1
-File in-link/in-link/admin_templates/img/toolbar/tool_new_link_f2.gif is new; release_3_2_1 revision 1.1.2.1
-File in-link/in-link/admin_templates/img/toolbar/tool_new_link_f3.gif is new; release_3_2_1 revision 1.1.2.1
-File in-link/in-link/admin_templates/img/toolbar/tool_new_listing.gif is new; release_3_2_1 revision 1.1.2.1
-File in-link/in-link/admin_templates/img/toolbar/tool_new_listing_f2.gif is new; release_3_2_1 revision 1.1.2.1
-File in-link/in-link/admin_templates/img/toolbar/tool_new_listing_type.gif is new; release_3_2_1 revision 1.1.2.1
-File in-link/in-link/admin_templates/img/toolbar/tool_new_listing_type_f2.gif is new; release_3_2_1 revision 1.1.2.1
-File in-link/in-link/admin_templates/links/images_edit.tpl changed
-File in-link/in-link/admin_templates/links/inlink_redirect.tpl is new; release_3_2_1 revision 1.1.2.1
-File in-link/in-link/admin_templates/links/links_catalog.tpl changed
-File in-link/in-link/admin_templates/links/links_categories.tpl changed
-File in-link/in-link/admin_templates/links/links_custom.tpl changed
-File in-link/in-link/admin_templates/links/links_edit.tpl changed
-File in-link/in-link/admin_templates/links/links_images.tpl changed
-File in-link/in-link/admin_templates/links/links_relations.tpl changed
-File in-link/in-link/admin_templates/links/links_reviews.tpl changed
-File in-link/in-link/admin_templates/links/relations_edit.tpl changed
-File in-link/in-link/admin_templates/links/review_edit.tpl changed
-File in-link/in-link/admin_templates/paid_listings/paid_listing_edit.tpl changed
-File in-link/in-link/admin_templates/paid_listings/paid_listing_type_edit.tpl changed
-File in-link/in-link/admin_templates/paid_listings/paid_listing_types_list.tpl changed
-File in-link/in-link/admin_templates/paid_listings/paid_listing_types_tabs.tpl changed
-File in-link/in-link/admin_templates/paid_listings/paid_listings_list.tpl changed
-File in-link/in-link/module_help/config_list_general.txt is new; release_3_2_1 revision 1.1.2.1
-File in-link/in-link/module_help/custom_fields_list.txt is new; release_3_2_1 revision 1.1.2.1
-File in-link/in-link/module_help/email_settings_list.txt is new; release_3_2_1 revision 1.1.2.1
-File in-link/in-link/module_help/images_edit.txt is new; release_3_2_1 revision 1.1.2.1
-File in-link/in-link/module_help/links_categories.txt is new; release_3_2_1 revision 1.1.2.1
-File in-link/in-link/module_help/links_custom.txt changed
-File in-link/in-link/module_help/links_edit.txt is new; release_3_2_1 revision 1.1.2.1
-File in-link/in-link/module_help/links_images.txt is new; release_3_2_1 revision 1.1.2.1
-File in-link/in-link/module_help/links_relations.txt is new; release_3_2_1 revision 1.1.2.1
-File in-link/in-link/module_help/links_reviews.txt is new; release_3_2_1 revision 1.1.2.1
-File in-link/in-link/module_help/relations_edit.txt is new; release_3_2_1 revision 1.1.2.1
-File in-link/in-link/module_help/reviews_edit.txt is new; release_3_2_1 revision 1.1.2.1
-File in-link/in-link/units/links/link_tag_processor.php changed
-File in-link/in-link/units/links/links_config.php changed
-File in-link/in-link/units/listing_types/listing_types_config.php changed
-File in-link/in-link/units/listing_types/listing_types_event_handler.php changed
-File in-link/in-link/units/listing_types/listing_types_tag_processor.php changed
-File in-link/in-link/units/listings/listings_config.php changed
-File in-link/in-link/units/listings/listings_event_handler.php changed
-File in-link/in-link/units/listings/listings_tag_processor.php changed
-File in-link/themes/default/inlink/blocks/links/link_cancel_confirmation.tpl changed
-File in-link/themes/default/inlink/blocks/links/link_extend_confirm.tpl changed
-File in-link/themes/default/inlink/detail/link.tpl changed
-File in-link/themes/default/inlink/edit_link/edit_link_form.tpl changed
-File in-link/themes/default/inlink/search_results/search_results_element.tpl changed
Property changes on: trunk/in-link/admin/install/upgrades/changelog_3_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-link/admin/install/upgrades/inportal_upgrade_v3.0.10.sql
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.0.10.sql (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.0.10.sql (nonexistent)
@@ -1,7 +0,0 @@
-UPDATE ConfigurationValues SET VariableName = 'Link_SortField' WHERE VariableName = 'Link_Sortfield';
-UPDATE ConfigurationValues SET VariableName = 'Link_SortField2' WHERE VariableName = 'Link_Sortfield2';
-UPDATE ConfigurationAdmin SET VariableName = 'Link_SortField' WHERE VariableName = 'Link_Sortfield'
-UPDATE ConfigurationAdmin SET VariableName = 'Link_SortField2' WHERE VariableName = 'Link_Sortfield2'
-ALTER TABLE Link DROP INDEX ResourceId, ADD UNIQUE ResourceId (ResourceId);
-
-UPDATE Modules SET Version = '3.0.10' WHERE Name = 'In-Link';
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.0.10.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-link/admin/install/upgrades/inportal_upgrade_v3.1.1.php
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.1.php (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.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-link/admin/install/upgrades/inportal_upgrade_v3.1.1.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-link/admin/install/upgrades/inportal_upgrade_v3.1.7.sql
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.7.sql (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.7.sql (nonexistent)
@@ -1,18 +0,0 @@
-UPDATE ConfigurationValues SET ModuleOwner = 'In-Link', Section = 'in-link:configuration_search' WHERE VariableName LIKE 'SearchRel_%_links' OR VariableName = 'Search_ShowMultiple_link';
-UPDATE ConfigurationValues SET VariableName = 'Search_ShowMultiple_links' WHERE VariableName = 'Search_ShowMultiple_link';
-
-INSERT INTO ConfigurationAdmin VALUES ('SearchRel_Keyword_links', 'la_config_SearchRel_DefaultKeyword', 'la_text_keyword', 'text', NULL, NULL, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('SearchRel_Pop_links', 'la_config_DefaultPop', 'la_text_popularity', 'text', NULL, NULL, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('SearchRel_Rating_links', 'la_config_DefaultRating', 'la_prompt_Rating', 'text', NULL, NULL, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('Search_ShowMultiple_links', 'la_config_ShowMultiple', 'la_Text_MultipleShow', 'text', NULL, NULL, 0, 1);
-INSERT INTO ConfigurationAdmin VALUES ('SearchRel_Increase_links', 'la_config_DefaultIncreaseImportance', 'la_text_increase_importance', 'text', NULL, NULL, 0, 1);
-
-CREATE TABLE LinkCustomData (CustomDataId int(11) NOT NULL auto_increment, ResourceId int(10) unsigned NOT NULL default '0', PRIMARY KEY (CustomDataId));
-
-INSERT INTO ConfigurationAdmin VALUES ('l_CategoryTemplate', 'la_section_Templates', 'la_fld_CategoryTemplate', 'text', '', '', 1, 0);
-INSERT INTO ConfigurationAdmin VALUES ('l_ItemTemplate', 'la_section_Templates', 'la_fld_ItemTemplate', 'text', '', '', 1, 0);
-
-INSERT INTO ConfigurationValues VALUES ('l_CategoryTemplate', 'inlink/index', 'In-Link', 'in-link:configuration_output');
-INSERT INTO ConfigurationValues VALUES ('l_ItemTemplate', 'inlink/detail', 'In-Link', 'in-link:configuration_output');
-
-UPDATE Modules SET Version = '3.1.7' WHERE Name = 'In-Link';
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.7.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-link/admin/install/upgrades/inportal_upgrade_v3.1.6.sql
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.6.sql (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.6.sql (nonexistent)
@@ -1,2 +0,0 @@
-
-UPDATE Modules SET Version = '3.1.6' WHERE Name = 'In-Link';
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.6.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-link/admin/install/upgrades/inportal_upgrade_v3.0.8.sql
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.0.8.sql (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.0.8.sql (nonexistent)
@@ -1,6 +0,0 @@
-INSERT INTO ConfigurationValues VALUES ('Search_ShowMultiple_link', '0', 'In-Portal', '');
-
-ALTER TABLE Link DROP INDEX ResourceId, ADD UNIQUE ResourceId (ResourceId);
-ALTER TABLE Link CHANGE Hits Hits DOUBLE( 20, 6 ) DEFAULT '0' NOT NULL
-
-UPDATE Modules SET Version = '3.0.8' WHERE Name = 'In-Link';
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.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-link/admin/install/upgrades/readme_4_2_0.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/readme_4_2_0.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/readme_4_2_0.txt (nonexistent)
@@ -1,5 +0,0 @@
-Readme notes for In-link 4.2.0
-Intechnic Corporation, July 26, 2007
-
-
-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-link/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-link/admin/install/upgrades/readme_4_1_0.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/readme_4_1_0.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/readme_4_1_0.txt (nonexistent)
@@ -1,6 +0,0 @@
-Readme notes for In-link 4.1.0
-Intechnic Corporation, May 23, 2007
-
-****** 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-link/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-link/admin/install/upgrades/readme_4_0_1.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/readme_4_0_1.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/readme_4_0_1.txt (nonexistent)
@@ -1,6 +0,0 @@
-Readme notes for In-link 4.0.1
-Intechnic Corporation, Apr 5, 2007
-
-
-This is a maintenance release of In-link.
-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-link/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-link/admin/install/upgrades/readme_3_3_0.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/readme_3_3_0.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/readme_3_3_0.txt (nonexistent)
@@ -1,5 +0,0 @@
-Readme notes for In-link 3.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-link/admin/install/upgrades/readme_3_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-link/admin/install/upgrades/readme_3_2_3.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/readme_3_2_3.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/readme_3_2_3.txt (nonexistent)
@@ -1,14 +0,0 @@
-Readme notes for In-link 3.2.3
-Intechnic Corporation, Nov 10, 2006
-
-
-New Features:
-
-- An option to define the status of Paid Listing upon purchase and expiration
-
-Bug fixes:
-
-- Language encodings in Ajax Admin Catalog were fixed
-- Shortcuts on Summary page to Advanced View section fixed
-
-Mainly a maintenance release.
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/readme_3_2_3.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-link/admin/install/upgrades/readme_3_2_2.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/readme_3_2_2.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/readme_3_2_2.txt (nonexistent)
@@ -1,4 +0,0 @@
-Readme notes for In-link 3.2.2
-Intechnic Corporation, Sep 26, 2006
-
-This release is a maintenance release to support the newly released In-edit module.
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/readme_3_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-link/admin/install/upgrades/readme_3_2_1.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/readme_3_2_1.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/readme_3_2_1.txt (nonexistent)
@@ -1,5 +0,0 @@
-Readme notes for In-link 3.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-link/admin/install/upgrades/readme_3_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-link/admin/install/upgrades/readme_3_2_0.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/readme_3_2_0.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/readme_3_2_0.txt (nonexistent)
@@ -1,8 +0,0 @@
-Readme notes for In-link 3.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.
-
-New In-link features:
- - Duplicate Links checker - allows locating duplicate links by their Name and/or URL field and editing, deleting and merging duplicates
Property changes on: trunk/in-link/admin/install/upgrades/readme_3_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-link/admin/install/upgrades/readme_3_1_6.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/readme_3_1_6.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/readme_3_1_6.txt (nonexistent)
@@ -1,8 +0,0 @@
-Readme notes for In-link 3.1.6
-Intechnic Corporation, April 4, 2006
-
-New features:
- - Display of current link status under My Links section of My Account (default theme)
-
-Bug fixes:
- - Multiple editing of pending link on the front-end resulted in multiple pending copies of the link in administrative console
Property changes on: trunk/in-link/admin/install/upgrades/readme_3_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-link/admin/install/upgrades/readme_3_1_5.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/readme_3_1_5.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/readme_3_1_5.txt (nonexistent)
@@ -1,13 +0,0 @@
-Readme notes for In-link 3.1.5
-Intechnic Corporation, February 28, 2006
-
-New Features:
- - Links CSV Import/Export
- - Ability to select paid listing type at link submission time
-
-Bug fixes:
- - Minor performance improvment when using mod_rewrite
- - Apostrophs and other speical characters are now allowed in administrative console toolbar buttons hints translations
- - Groups listing/selection corrected
- - HTTP 404 responces when page is not found and using mod_rewrite
- - Other minor fixes
Property changes on: trunk/in-link/admin/install/upgrades/readme_3_1_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-link/admin/install/upgrades/readme_3_1_4.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/readme_3_1_4.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/readme_3_1_4.txt (nonexistent)
@@ -1,6 +0,0 @@
-Readme notes for In-link 3.1.4
-Intechnic Corporation, January 10, 2006
-
-Bug fixes:
- - Various pagionation fixes for categories, relations, images and reviews
- - Category selector fix for Paid Listing Types
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/readme_3_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-link/admin/install/upgrades/readme_3_1_3.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/readme_3_1_3.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/readme_3_1_3.txt (nonexistent)
@@ -1,17 +0,0 @@
-Readme notes for In-link 3.1.3
-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-link/admin/install/upgrades/readme_3_1_3.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-link/admin/install/upgrades/readme_3_1_2.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/readme_3_1_2.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/readme_3_1_2.txt (nonexistent)
@@ -1,7 +0,0 @@
-Readme notes for In-link 3.1.2
-Intechnic Corporation, November 1, 2005
-
-Bug fixes:
-
-- Fixed database connection in In-link 2 import utility
-
Property changes on: trunk/in-link/admin/install/upgrades/readme_3_1_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-link/admin/install/upgrades/readme_3_1_1.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/readme_3_1_1.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/readme_3_1_1.txt (nonexistent)
@@ -1,10 +0,0 @@
-Readme notes for In-link 3.1.1
-Intechnic Corporation, September 8, 2005
-
-New features:
-- Paid Listings support - allows to sell enhanced listing in the directory. In combination with In-commerce, also allows to process payments for enhanced listing automatically. For more information please refer to www.in-link.net or to the user manual.
-
-Bug fixes:
-
-- Fixed small sorting and pagination issues on the front end
-- Adjusted default installation settings
Property changes on: trunk/in-link/admin/install/upgrades/readme_3_1_1.txt
___________________________________________________________________
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-link/admin/install/upgrades/readme_3_1_0.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/readme_3_1_0.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/readme_3_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-link/admin/install/upgrades/readme_3_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-link/admin/install/upgrades/readme_3_0_8.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/readme_3_0_8.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/readme_3_0_8.txt (nonexistent)
@@ -1,13 +0,0 @@
-Readme for In-link 3.0.8
-Intechnic Corporation, April 14, 2005
-
-New features:
-- Hot & Top links (tags)
- Added tags that could display hot and top links
-- New since last visit
- Added a section showing the links that have been added since a user logged in last time
-- Editor's pick separate template
- Added a separate template for Editor's Pick links that allows for a different design.
-- Suggesting links to multiple categories at once
- Added a new control on the Suggest Link form that allows to choose multiple categories.
-
Property changes on: trunk/in-link/admin/install/upgrades/readme_3_0_8.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-link/admin/install/upgrades/readme_3_0_7.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/readme_3_0_7.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/readme_3_0_7.txt (nonexistent)
@@ -1,7 +0,0 @@
-Readme for In-link 3.0.7
-Intechnic Corporation, January 06, 2005
-
-In-link fixes:
-- Large DBs import timeout
-
-
Property changes on: trunk/in-link/admin/install/upgrades/readme_3_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-link/admin/install/upgrades/readme_3_0_6.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/readme_3_0_6.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/readme_3_0_6.txt (nonexistent)
@@ -1,6 +0,0 @@
-Readme for In-link 3.0.6
-
-In-link fixes:
-- Multiple In-link2 import fixes
-- Administration of reviews
-
Property changes on: trunk/in-link/admin/install/upgrades/readme_3_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-link/admin/install/upgrades/readme_3_0_5.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/readme_3_0_5.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/readme_3_0_5.txt (nonexistent)
@@ -1,2 +0,0 @@
-In-link fixes:
-Fixed category permissions during import from In-link2
Property changes on: trunk/in-link/admin/install/upgrades/readme_3_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-link/admin/install/upgrades/changelog_4_0_1.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/changelog_4_0_1.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/changelog_4_0_1.txt (nonexistent)
@@ -1,10 +0,0 @@
-File in-link/in-link/admin/install/inportal_data.sql changed
-File in-link/in-link/admin/install/langpacks/english.lang changed
-File in-link/in-link/admin/install/upgrades/changelog_4_0_1.txt is new; release_4_0_1 revision 1.1.2.4
-File in-link/in-link/admin/install/upgrades/inportal_upgrade_v4.0.1.sql is new; release_4_0_1 revision 1.1.2.1
-File in-link/in-link/admin_templates/export.tpl changed
-File in-link/in-link/admin_templates/export_progress.tpl changed
-File in-link/in-link/admin_templates/export_status_xml.tpl is removed; release_3_3_0 revision 1.6
-File in-link/in-link/admin_templates/import.tpl changed
-File in-link/in-link/admin_templates/import_progress.tpl changed
-File in-link/in-link/admin_templates/import_status_xml.tpl is removed; release_3_3_0 revision 1.6
Property changes on: trunk/in-link/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-link/admin/install/upgrades/changelog_3_1_0.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/changelog_3_1_0.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/changelog_3_1_0.txt (nonexistent)
@@ -1,35 +0,0 @@
-File in-link/in-link/parser.php changed
-File in-link/in-link/admin/addlink.php changed
-File in-link/in-link/admin/addlink_custom.php changed
-File in-link/in-link/admin/install.php changed
-File in-link/in-link/admin/images/link_arrow.gif is new
-File in-link/in-link/admin/include/navmenu.php changed
-File in-link/in-link/admin/include/toolbar/editlink_custom.php changed
-File in-link/in-link/admin/include/toolbar/editlink_images.php changed
-File in-link/in-link/admin/include/toolbar/editlink_reviews.php changed
-File in-link/in-link/admin/install/inportal_data.sql changed
-File in-link/in-link/admin/install/inportal_schema.sql changed
-File in-link/in-link/admin/install/langpacks/english.lang is new
-File in-link/in-link/admin/install/upgrades/changelog_3_1_0.txt is new
-File in-link/in-link/admin/install/upgrades/inportal_upgrade_v3.1.0.sql is new
-File in-link/in-link/admin/install/upgrades/readme_3_1_0.txt is new
-File in-link/in-link/admin_templates/link_selector.tpl is new
-File in-link/in-link/admin_templates/paid_listings/paid_listing_edit.tpl is new
-File in-link/in-link/admin_templates/paid_listings/paid_listing_type_edit.tpl is new
-File in-link/in-link/admin_templates/paid_listings/paid_listing_types_list.tpl is new
-File in-link/in-link/admin_templates/paid_listings/paid_listing_types_tabs.tpl is new
-File in-link/in-link/admin_templates/paid_listings/paid_listings_list.tpl is new
-File in-link/in-link/module_help/dummy is new
-File in-link/in-link/units/links/link_event_handler.php is new
-File in-link/in-link/units/links/link_tag_processor.php is new
-File in-link/in-link/units/links/links_config.php is new
-File in-link/in-link/units/listing_types/listing_types_config.php is new
-File in-link/in-link/units/listing_types/listing_types_event_handler.php is new
-File in-link/in-link/units/listing_types/listing_types_tag_processor.php is new
-File in-link/in-link/units/listings/listings_config.php is new
-File in-link/in-link/units/listings/listings_event_handler.php is new
-File in-link/in-link/units/listings/listings_tag_processor.php is new
-File in-link/themes/default/inlink/addreview/review_access_denied.tpl changed
-File in-link/themes/default/inlink/edit_link/edit_link_form.tpl changed
-File in-link/themes/default/inlink/edit_link/enhance_link.tpl is new
-File in-link/themes/default/inlink/rate/rate_access_denied.tpl changed
Property changes on: trunk/in-link/admin/install/upgrades/changelog_3_1_0.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-link/admin/install/upgrades/changelog_3_1_1.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/changelog_3_1_1.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/changelog_3_1_1.txt (nonexistent)
@@ -1,56 +0,0 @@
-File in-link/in-link/action.php changed
-File in-link/in-link/in-link_config.php changed
-File in-link/in-link/link.php changed
-File in-link/in-link/parser.php changed
-File in-link/in-link/admin/install.php changed
-File in-link/in-link/admin/import/inlink_import.php changed
-File in-link/in-link/admin/include/navmenu.php changed
-File in-link/in-link/admin/include/help/configuration_output.txt changed
-File in-link/in-link/admin/install/inportal_data.sql changed
-File in-link/in-link/admin/install/inportal_schema.sql changed
-File in-link/in-link/admin/install/prerequisit.php changed
-File in-link/in-link/admin/install/langpacks/english.lang changed
-File in-link/in-link/admin/install/upgrades/changelog_3_1_1.txt is new
-File in-link/in-link/admin/install/upgrades/inportal_upgrade_v3.1.0.sql changed
-File in-link/in-link/admin/install/upgrades/inportal_upgrade_v3.1.1.php is new
-File in-link/in-link/admin/install/upgrades/inportal_upgrade_v3.1.1.sql is new
-File in-link/in-link/admin/install/upgrades/readme_3_1_1.txt is new
-File in-link/in-link/admin_templates/link_selector.tpl changed
-File in-link/in-link/admin_templates/paid_listings/paid_listing_edit.tpl changed
-File in-link/in-link/admin_templates/paid_listings/paid_listing_type_edit.tpl changed
-File in-link/in-link/module_help/listing_edit.txt is new
-File in-link/in-link/module_help/listing_list.txt is new
-File in-link/in-link/module_help/listing_type_edit.txt is new
-File in-link/in-link/module_help/listing_type_list.txt is new
-File in-link/in-link/module_help/listing_type_shop_cart.txt is new
-File in-link/in-link/units/links/link_tag_processor.php changed
-File in-link/in-link/units/links/links_config.php changed
-File in-link/in-link/units/listing_types/listing_types_config.php changed
-File in-link/in-link/units/listing_types/listing_types_event_handler.php changed
-File in-link/in-link/units/listings/listings_config.php changed
-File in-link/in-link/units/listings/listings_event_handler.php changed
-File in-link/in-link/units/listings/listings_tag_processor.php changed
-File in-link/themes/default/inlink/link_element.tpl changed
-File in-link/themes/default/inlink/related_element.tpl changed
-File in-link/themes/default/inlink/sort_link.tpl changed
-File in-link/themes/default/inlink/blocks/common/my_account_bluebar.tpl is new
-File in-link/themes/default/inlink/blocks/links/link_cancel_confirmation.tpl is new
-File in-link/themes/default/inlink/blocks/links/link_enhance_confirmation.tpl is new
-File in-link/themes/default/inlink/blocks/links/link_enhance_form.tpl is new
-File in-link/themes/default/inlink/blocks/links/link_extend_confirm.tpl is new
-File in-link/themes/default/inlink/blocks/links/link_extend_enhancement.tpl is new
-File in-link/themes/default/inlink/catindex/catindex_element.tpl changed
-File in-link/themes/default/inlink/detail/link.tpl changed
-File in-link/themes/default/inlink/detail_zoom/link.tpl changed
-File in-link/themes/default/inlink/edit_link/edit_link_form.tpl changed
-File in-link/themes/default/inlink/edit_link/enhance_confirm.tpl is new
-File in-link/themes/default/inlink/edit_link/enhance_link.tpl changed
-File in-link/themes/default/inlink/edit_link/extend_enhancement.tpl is new
-File in-link/themes/default/inlink/edit_link/extend_enhancement_confirmation.tpl is new
-File in-link/themes/default/inlink/edit_link/link_cancel_confirm.tpl is new
-File in-link/themes/default/inlink/index/link_element.tpl changed
-File in-link/themes/default/inlink/main/favorites_element.tpl changed
-File in-link/themes/default/inlink/main/main_element.tpl changed
-File in-link/themes/default/inlink/my_items/myitem_element.tpl changed
-File in-link/themes/default/inlink/pick/link_element.tpl changed
-File in-link/themes/default/inlink/search_results/search_results_element.tpl changed
Property changes on: trunk/in-link/admin/install/upgrades/changelog_3_1_1.txt
___________________________________________________________________
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-link/admin/install/upgrades/inportal_upgrade_v3.1.7.php
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.7.php (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.7.php (nonexistent)
@@ -1,5 +0,0 @@
-<?php
- updateItemCategoryTemplate('In-Link', 'inlink/index', 'inlink/detail');
-
- convertCustomFields('l');
-?>
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.7.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-link/admin/install/upgrades/inportal_upgrade_v3.0.7.sql
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.0.7.sql (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.0.7.sql (nonexistent)
@@ -1,5 +0,0 @@
-UPDATE SearchConfig SET Priority = 1 WHERE FieldName = 'Name' AND TableName = 'Link';
-UPDATE SearchConfig SET Priority = 1 WHERE FieldName = 'Description' AND TableName = 'Link';
-UPDATE SearchConfig SET Priority = 2 WHERE FieldName = 'Url' AND TableName = 'Link';
-
-UPDATE Modules SET Version = '3.0.7' WHERE Name = 'In-Link';
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.0.7.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-link/admin/install/upgrades/inportal_upgrade_v3.0.6.sql
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.0.6.sql (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.0.6.sql (nonexistent)
@@ -1,6 +0,0 @@
-INSERT INTO ImportScripts(is_string_id,is_Module,is_script,is_label,is_field_prefix,is_requred_fields,is_enabled) VALUES ('in-link', 'In-Link', 'inlink_import', 'Intechnic In-Link 2.x', 'In-Link', 'link_image,user_admin,user_regular,init_cat', 1);
-INSERT INTO ImportScripts(is_string_id,is_Module,is_script,is_label,is_field_prefix,is_requred_fields,is_enabled) VALUES ('', 'In-Link', '', 'Gossamer Threads Links 2.x', '', '', 0);
-INSERT INTO ImportScripts(is_string_id,is_Module,is_script,is_label,is_field_prefix,is_requred_fields,is_enabled) VALUES ('', 'In-Link', '', 'Gossamer Threads Links 2.x SQL version', '', '', 0);
-INSERT INTO ImportScripts(is_string_id,is_Module,is_script,is_label,is_field_prefix,is_requred_fields,is_enabled) VALUES ('', 'In-Link', '', 'Sentraweb Indexu 3.x', '', '', 0);
-
-UPDATE Modules SET Version = '3.0.6' WHERE Name = 'In-Link';
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.0.6.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-link/admin/install/upgrades/inportal_upgrade_v3.1.4.sql
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.4.sql (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.4.sql (nonexistent)
@@ -1 +0,0 @@
-UPDATE Modules SET Version = '3.1.4' WHERE Name = 'In-Link';
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.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-link/admin/install/upgrades/inportal_upgrade_v3.1.5.sql
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.5.sql (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.5.sql (nonexistent)
@@ -1,11 +0,0 @@
-ALTER TABLE Link ADD INDEX (Filename ( 5 ));
-
-UPDATE ItemTypes SET Prefix = 'l' WHERE SourceTable = 'Link';
-INSERT INTO ImportScripts(is_string_id,is_Module,is_script,is_label,is_field_prefix,is_requred_fields,is_enabled,is_type) VALUES ('', 'In-Link', '', 'Links from CSV file [In-Link]', '', '', 1, 'csv');
-
-INSERT INTO ConfigurationValues VALUES ('Link_AllowFreeListings', '1', 'In-Link', 'in-link:configuration_output');
-INSERT INTO ConfigurationAdmin VALUES ('Link_AllowFreeListings', 'la_Text_Links', 'la_link_AllowFreeListings', 'checkbox', '', '', 9, 1);
-
-ALTER TABLE ListingTypes ADD Description TEXT NOT NULL AFTER Name;
-
-UPDATE Modules SET Version = '3.1.5' WHERE Name = 'In-Link';
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.5.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-link/admin/install/upgrades/inportal_upgrade_v3.2.2.sql
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.2.2.sql (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.2.2.sql (nonexistent)
@@ -1 +0,0 @@
-UPDATE Modules SET Version = '3.2.2' WHERE Name = 'In-Link';
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.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-link/admin/install/upgrades/inportal_upgrade_v3.2.3.sql
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.2.3.sql (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.2.3.sql (nonexistent)
@@ -1,4 +0,0 @@
-ALTER TABLE ListingTypes ADD OnPurchaseStatus TINYINT DEFAULT '3' NOT NULL AFTER OnPurchaseAddToCat;
-ALTER TABLE ListingTypes ADD OnExpireStatus TINYINT DEFAULT '3' NOT NULL AFTER OnExpireRemoveFromCat;
-
-UPDATE Modules SET Version = '3.2.3' WHERE Name = 'In-Link';
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.2.3.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-link/admin/install/upgrades/inportal_upgrade_v3.3.0.sql
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.3.0.sql (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.3.0.sql (nonexistent)
@@ -1,3 +0,0 @@
-UPDATE ItemReview SET Module = 'In-Link' WHERE ItemId IN (SELECT ResourceId FROM Link)
-
-UPDATE Modules SET Version = '3.3.0' WHERE Name = 'In-Link';
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.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-link/admin/install/upgrades/inportal_upgrade_v4.2.0.sql
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v4.2.0.sql (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v4.2.0.sql (nonexistent)
@@ -1,17 +0,0 @@
-UPDATE ConfigurationAdmin SET ValueList = 'ReviewText=la_common_ReviewText,CreatedOn=la_common_CreatedOn' WHERE VariableName = 'Link_ReviewsSort2';
-INSERT INTO ConfigurationAdmin VALUES ('Perpage_LinkReviews_Short', 'la_Text_Reviews', 'la_review_perpage_short_prompt', 'text', NULL, NULL, 20.04, 0, 1);
-ALTER TABLE Link CHANGE CachedReviewsQty CachedReviewsQty INT(11) NOT NULL DEFAULT '0';
-
-INSERT INTO ConfigurationAdmin VALUES ('l_MaxImageCount', 'la_section_ImageSettings', 'la_config_MaxImageCount', 'text', '', '', 40.01, 0, 0);
-INSERT INTO ConfigurationAdmin VALUES ('l_ThumbnailImageWidth', 'la_section_ImageSettings', 'la_config_ThumbnailImageWidth', 'text', '', '', 40.02, 0, 0);
-INSERT INTO ConfigurationAdmin VALUES ('l_ThumbnailImageHeight', 'la_section_ImageSettings', 'la_config_ThumbnailImageHeight', 'text', '', '', 40.03, 0, 0);
-INSERT INTO ConfigurationAdmin VALUES ('l_FullImageWidth', 'la_section_ImageSettings', 'la_config_FullImageWidth', 'text', '', '', 40.04, 0, 0);
-INSERT INTO ConfigurationAdmin VALUES ('l_FullImageHeight', 'la_section_ImageSettings', 'la_config_FullImageHeight', 'text', '', '', 40.05, 0, 0);
-
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'l_MaxImageCount', 5, 'In-Link', 'in-link:configuration_output');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'l_ThumbnailImageWidth', 120, 'In-Link', 'in-link:configuration_output');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'l_ThumbnailImageHeight', 120, 'In-Link', 'in-link:configuration_output');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'l_FullImageWidth', 450, 'In-Link', 'in-link:configuration_output');
-INSERT INTO ConfigurationValues VALUES (DEFAULT, 'l_FullImageHeight', 450, 'In-Link', 'in-link:configuration_output');
-
-UPDATE Modules SET Version = '4.2.0' WHERE Name = 'In-Link';
\ No newline at end of file
Property changes on: trunk/in-link/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-link/admin/install/upgrades/changelog_3_0_8.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/changelog_3_0_8.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/changelog_3_0_8.txt (nonexistent)
@@ -1,52 +0,0 @@
-File in-link/in-link/action.php changed
-File in-link/in-link/frontaction.php changed
-File in-link/in-link/inlink_redirect.php changed
-File in-link/in-link/link.php changed
-File in-link/in-link/parser.php changed
-File in-link/in-link/searchaction.php changed
-File in-link/in-link/admin/addimage.php changed
-File in-link/in-link/admin/addlink.php changed
-File in-link/in-link/admin/addlink_custom.php changed
-File in-link/in-link/admin/addlink_images.php changed
-File in-link/in-link/admin/addlink_relations.php changed
-File in-link/in-link/admin/addlink_reviews.php changed
-File in-link/in-link/admin/addrelation.php changed
-File in-link/in-link/admin/addreview.php changed
-File in-link/in-link/admin/advanced_view.php changed
-File in-link/in-link/admin/install.php changed
-File in-link/in-link/admin/reviews.php is new
-File in-link/in-link/admin/validation.php changed
-File in-link/in-link/admin/import/inlink_import.php changed
-File in-link/in-link/admin/include/parser.php changed
-File in-link/in-link/admin/include/help/validation_list.txt changed
-File in-link/in-link/admin/include/toolbar/advanced_view.php changed
-File in-link/in-link/admin/include/toolbar/browse.php changed
-File in-link/in-link/admin/include/toolbar/editlink_reviews.php changed
-File in-link/in-link/admin/include/toolbar/reviews.php is new
-File in-link/in-link/admin/install/inportal_data.sql changed
-File in-link/in-link/admin/install/inportal_schema.sql changed
-File in-link/in-link/admin/install/prerequisit.php is new
-File in-link/in-link/admin/install/upgrades/changelog_3_0_8.txt is new
-File in-link/in-link/admin/install/upgrades/inportal_check_v3.0.8.php is new
-File in-link/in-link/admin/install/upgrades/inportal_upgrade_v3.0.8.sql is new
-File in-link/in-link/admin/install/upgrades/readme_3_0_8.txt is new
-File in-link/in-link/admin/templates/link_review_element.tpl is new
-File in-link/in-link/admin/templates/link_tab_element_av.tpl is new
-File in-link/themes/default/inlink/index.tpl changed
-File in-link/themes/default/inlink/item_favorites.tpl changed
-File in-link/themes/default/inlink/my_items.tpl changed
-File in-link/themes/default/inlink/new.tpl changed
-File in-link/themes/default/inlink/pick.tpl changed
-File in-link/themes/default/inlink/sort_link.tpl is new
-File in-link/themes/default/inlink/index/categories.tpl changed
-File in-link/themes/default/inlink/index/links.tpl changed
-File in-link/themes/default/inlink/my_account/new_items.tpl is new
-File in-link/themes/default/inlink/my_account/new_links.tpl is new
-File in-link/themes/default/inlink/my_items/right.tpl changed
-File in-link/themes/default/inlink/new/links.tpl changed
-File in-link/themes/default/inlink/pick/links.tpl changed
-File in-link/themes/default/inlink/pick/right.tpl changed
-File in-link/themes/default/inlink/rate/rate_confirm.tpl changed
-File in-link/themes/default/inlink/search_results/item_results.tpl changed
-File in-link/themes/default/inlink/search_results/search_results_element.tpl changed
-File in-link/themes/default/inlink/suggest_link/suggest_link_form.tpl changed
Property changes on: trunk/in-link/admin/install/upgrades/changelog_3_0_8.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-link/admin/install/upgrades/changelog_3_0_9.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/changelog_3_0_9.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/changelog_3_0_9.txt (nonexistent)
@@ -1,2 +0,0 @@
-File in-link/in-link/in-link_config.php is new
-File in-link/in-link/admin/install/upgrades/inportal_check_v3.0.8.php is removed
Property changes on: trunk/in-link/admin/install/upgrades/changelog_3_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-link/admin/install/upgrades/changelog_3_1_6.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/changelog_3_1_6.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/changelog_3_1_6.txt (nonexistent)
@@ -1,24 +0,0 @@
-File in-link/in-link/action.php changed
-File in-link/in-link/frontaction.php changed
-File in-link/in-link/link.php changed
-File in-link/in-link/module_init.php changed
-File in-link/in-link/admin/addlink_reviews.php changed
-File in-link/in-link/admin/addreview.php changed
-File in-link/in-link/admin/include/help/configuration_output.txt changed
-File in-link/in-link/admin/include/toolbar/browse.php changed
-File in-link/in-link/admin/include/toolbar/editlink_review.php changed
-File in-link/in-link/admin/include/toolbar/editlink_reviews.php changed
-File in-link/in-link/admin/install/inportal_data.sql changed
-File in-link/in-link/admin/install/langpacks/english.lang changed
-File in-link/in-link/admin/install/upgrades/changelog_3_1_6.txt is new; release_3_1_6 revision 1.1.2.9
-File in-link/in-link/admin/install/upgrades/inportal_upgrade_v3.1.6.sql is new; release_3_1_6 revision 1.1
-File in-link/in-link/admin/install/upgrades/readme_3_1_6.txt is new; release_3_1_6 revision 1.1.2.1
-File in-link/in-link/admin_templates/export_progress.tpl changed
-File in-link/in-link/admin_templates/export_status_xml.tpl is new; release_3_1_6 revision 1.1.2.1
-File in-link/in-link/admin_templates/import.tpl changed
-File in-link/in-link/admin_templates/import_progress.tpl changed
-File in-link/in-link/admin_templates/import_status_xml.tpl is new; release_3_1_6 revision 1.1.2.1
-File in-link/in-link/admin_templates/paid_listings/paid_listing_type_edit.tpl changed
-File in-link/in-link/units/listings/listings_config.php changed
-File in-link/in-link/units/listings/listings_event_handler.php changed
-File in-link/themes/default/inlink/my_items/myitem_element.tpl changed
Property changes on: trunk/in-link/admin/install/upgrades/changelog_3_1_6.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-link/admin/install/upgrades/changelog_3_1_7.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/changelog_3_1_7.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/changelog_3_1_7.txt (nonexistent)
@@ -1,52 +0,0 @@
-File in-link/in-link/action.php changed
-File in-link/in-link/frontaction.php changed
-File in-link/in-link/link.php changed
-File in-link/in-link/parser.php changed
-File in-link/in-link/admin/addlink.php changed
-File in-link/in-link/admin/addlink_custom.php changed
-File in-link/in-link/admin/install.php changed
-File in-link/in-link/admin/import/inlink_import.php changed
-File in-link/in-link/admin/include/navmenu.php changed
-File in-link/in-link/admin/include/help/configuration_output.txt is removed; release_3_1_6 revision 1.3.36.1
-File in-link/in-link/admin/include/help/configuration_search.txt is removed; release_3_1_6 revision 1.1
-File in-link/in-link/admin/install/inportal_data.sql changed
-File in-link/in-link/admin/install/inportal_schema.sql changed
-File in-link/in-link/admin/install/upgrades/changelog_3_1_7.txt is new; release_3_1_7 revision 1.1.2.8
-File in-link/in-link/admin/install/upgrades/inportal_upgrade_v3.1.7.php is new; release_3_1_7 revision 1.2
-File in-link/in-link/admin/install/upgrades/inportal_upgrade_v3.1.7.sql is new; release_3_1_7 revision 1.2.2.2
-File in-link/in-link/admin/install/upgrades/readme_3_1_7.txt is new; release_3_1_7 revision 1.1.2.2
-File in-link/in-link/admin_templates/img/logo_bg.gif is new; release_3_1_7 revision 1.1.2.1
-File in-link/in-link/module_help/config_list_output.txt is new; release_3_1_7 revision 1.1.2.1
-File in-link/in-link/module_help/config_list_search.txt is new; release_3_1_7 revision 1.1
-File in-link/in-link/units/links/links_config.php changed
-File in-link/themes/default/inlink/addreview.tpl changed
-File in-link/themes/default/inlink/catindex.tpl changed
-File in-link/themes/default/inlink/detail.tpl changed
-File in-link/themes/default/inlink/detail_zoom.tpl changed
-File in-link/themes/default/inlink/get_rated.tpl changed
-File in-link/themes/default/inlink/link_element.tpl changed
-File in-link/themes/default/inlink/main.tpl changed
-File in-link/themes/default/inlink/popitems_element.tpl changed
-File in-link/themes/default/inlink/rate.tpl changed
-File in-link/themes/default/inlink/related_element.tpl changed
-File in-link/themes/default/inlink/reviews.tpl changed
-File in-link/themes/default/inlink/suggest_link.tpl changed
-File in-link/themes/default/inlink/catindex/catindex.tpl changed
-File in-link/themes/default/inlink/catindex/catindex_element.tpl changed
-File in-link/themes/default/inlink/detail_zoom/link.tpl changed
-File in-link/themes/default/inlink/index/link_element.tpl changed
-File in-link/themes/default/inlink/index/sitemap_cat_element.tpl changed
-File in-link/themes/default/inlink/index/sitemap_subcat_element.tpl changed
-File in-link/themes/default/inlink/main/favorites_element.tpl changed
-File in-link/themes/default/inlink/main/main_element.tpl changed
-File in-link/themes/default/inlink/main/edpick/links_element.tpl changed
-File in-link/themes/default/inlink/my_items/myitem_element.tpl changed
-File in-link/themes/default/inlink/my_items/right/edpick/links_element.tpl changed
-File in-link/themes/default/inlink/pick/link_element.tpl changed
-File in-link/themes/default/inlink/quicklinks/edpick/links_element.tpl changed
-File in-link/themes/default/inlink/quicklinks/new/links_element.tpl changed
-File in-link/themes/default/inlink/rate/getting_rated.tpl changed
-File in-link/themes/default/inlink/rate/rate_form.tpl changed
-File in-link/themes/default/inlink/search_results/search_results_element.tpl changed
-File in-link/themes/default/inlink/suggest_link/suggest_link_form.tpl changed
-File in-link/themes/default/inlink/trash/popitems_element.tpl changed
Property changes on: trunk/in-link/admin/install/upgrades/changelog_3_1_7.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-link/admin/install/upgrades/changelog_3_0_10.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/changelog_3_0_10.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/changelog_3_0_10.txt (nonexistent)
@@ -1,26 +0,0 @@
-File in-link/in-link/action.php changed
-File in-link/in-link/frontaction.php changed
-File in-link/in-link/link.php changed
-File in-link/in-link/parser.php changed
-File in-link/in-link/admin/addlink.php changed
-File in-link/in-link/admin/addlink_custom.php changed
-File in-link/in-link/admin/advanced_view.php changed
-File in-link/in-link/admin/browse.php changed
-File in-link/in-link/admin/config_general.php changed
-File in-link/in-link/admin/relation_select.php changed
-File in-link/in-link/admin/reviews.php changed
-File in-link/in-link/admin/include/help/configuration_output.txt changed
-File in-link/in-link/admin/include/help/editlink_general.txt changed
-File in-link/in-link/admin/include/toolbar/advanced_view.php changed
-File in-link/in-link/admin/include/toolbar/browse.php changed
-File in-link/in-link/admin/include/toolbar/editcategory_relationselect.php changed
-File in-link/in-link/admin/include/toolbar/reviews.php changed
-File in-link/in-link/admin/install/inportal_data.sql changed
-File in-link/in-link/admin/install/upgrades/changelog_3_0_10.txt is new
-File in-link/in-link/admin/install/upgrades/inportal_upgrade_v3.0.10.sql is new
-File in-link/in-link/admin/install/upgrades/readme_3_0_10.txt is new
-File in-link/themes/default/inlink/get_rated.tpl is new
-File in-link/themes/default/inlink/index/sitemap_cat_element.tpl is new
-File in-link/themes/default/inlink/index/sitemap_subcat_element.tpl is new
-File in-link/themes/default/inlink/rate/getting_rated.tpl is new
-File in-link/themes/default/inlink/rate/rate_form.tpl changed
Property changes on: trunk/in-link/admin/install/upgrades/changelog_3_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-link/admin/install/upgrades/readme_3_0_10.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/readme_3_0_10.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/readme_3_0_10.txt (nonexistent)
@@ -1,12 +0,0 @@
-Readme for In-link 3.0.10
-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:
-- Misc. template fixes in the Default theme
Property changes on: trunk/in-link/admin/install/upgrades/readme_3_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-link/admin/install/upgrades/inportal_upgrade_v3.0.5.sql
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.0.5.sql (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.0.5.sql (nonexistent)
@@ -1 +0,0 @@
-UPDATE Modules SET Version = '3.0.5' WHERE Name = 'In-Link';
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.0.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-link/admin/install/upgrades/inportal_upgrade_v3.0.4.sql
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.0.4.sql (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.0.4.sql (nonexistent)
@@ -1 +0,0 @@
-UPDATE Modules SET Version = '3.0.4' WHERE Name = 'In-Link';
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.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-link/admin/install/upgrades/inportal_upgrade_v3.1.2.sql
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.2.sql (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.2.sql (nonexistent)
@@ -1,2 +0,0 @@
-INSERT INTO ConfigurationValues VALUES ('Link_RatingToPop', '5', 'In-Link', 'in-link:configuration_output');
-UPDATE Modules SET Version = '3.1.2' WHERE Name = 'In-Link';
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.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-link/admin/install/upgrades/inportal_upgrade_v3.1.3.sql
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.3.sql (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.3.sql (nonexistent)
@@ -1,5 +0,0 @@
-ALTER TABLE Link ADD COLUMN l1_Name varchar(255) AFTER Name, ADD COLUMN l2_Name varchar(255) AFTER l1_Name, ADD COLUMN l3_Name varchar(255) AFTER l2_Name, ADD COLUMN l4_Name varchar(255) AFTER l3_Name, ADD COLUMN l5_Name varchar(255) AFTER l4_Name;
-ALTER TABLE Link ADD Filename varchar(255) NOT NULL AFTER l5_Name;
-ALTER TABLE Link ADD AutomaticFilename TINYINT UNSIGNED NOT NULL AFTER Filename ;
-
-UPDATE Modules SET Version = '3.1.3' WHERE Name = 'In-Link';
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.1.3.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-link/admin/install/upgrades/inportal_upgrade_v3.2.0.sql
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.2.0.sql (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.2.0.sql (nonexistent)
@@ -1,35 +0,0 @@
-ALTER TABLE LinkCustomData ADD INDEX (ResourceId);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link.view', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:inlink_general.view', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:inlink_general.edit', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:configuration_output.view', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:configuration_output.edit', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:configuration_search.view', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:configuration_search.edit', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:configuration_email.view', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:configuration_email.edit', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:configuration_custom.view', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:configuration_custom.add', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:configuration_custom.edit', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:configuration_custom.delete', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:duplicate_checker.view', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:duplicate_checker.add', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:duplicate_checker.edit', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:duplicate_checker.delete', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:validation_list.view', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:validation_list.add', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:validation_list.edit', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:paid_listings.view', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:paid_listings.add', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:paid_listings.edit', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:paid_listings.delete', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:paid_listings.advanced:approve', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:paid_listings.advanced:decline', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:listing_types.view', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:listing_types.add', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:listing_types.edit', 11, 1, 1, 0);
-INSERT INTO Permissions (Permission, GroupId, PermissionValue, Type, CatId) VALUES ('in-link:listing_types.delete', 11, 1, 1, 0);
-
-UPDATE ConfigurationAdmin SET ValueList = 'Name=la_Link_Name,Description=la_Link_Description,Url=la_Link_URL,CreatedOn=la_Link_Date,Hits=la_Link_Hits,CachedRating=la_Link_Rating,<SQL>SELECT Prompt AS OptionName, CONCAT("cust_", FieldName) AS OptionValue FROM <PREFIX>CustomField WHERE (Type = 4) AND (IsSystem = 0)</SQL>' WHERE VariableName IN ('Link_SortField', 'Link_SortField2');
-
-UPDATE Modules SET Version = '3.2.0' WHERE Name = 'In-Link';
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.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-link/admin/install/upgrades/inportal_upgrade_v3.2.1.sql
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.2.1.sql (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.2.1.sql (nonexistent)
@@ -1,40 +0,0 @@
-UPDATE ConfigurationAdmin SET VariableName = 'Link_MinPopVotes', prompt = 'la_fld_Link_MinPopVotes' WHERE VariableName = 'Link_MinVotes';
-UPDATE ConfigurationAdmin SET VariableName = 'Link_MinPopRating', prompt = 'la_fld_Link_MinPopRating' WHERE VariableName = 'Link_TopCount';
-UPDATE ConfigurationAdmin SET VariableName = 'Link_MaxHotNumber', prompt = 'la_fld_Link_MaxHotNumber' WHERE VariableName = 'Link_VotesToHot';
-
-UPDATE ConfigurationValues SET VariableName = 'Link_MinPopVotes' WHERE VariableName = 'Link_MinVotes';
-UPDATE ConfigurationValues SET VariableName = 'Link_MinPopRating' WHERE VariableName = 'Link_TopCount';
-UPDATE ConfigurationValues SET VariableName = 'Link_MaxHotNumber' WHERE VariableName = 'Link_VotesToHot';
-
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.01', GroupDisplayOrder = 1 WHERE VariableName = 'Link_SortField';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.01', GroupDisplayOrder = 2 WHERE VariableName = 'Link_SortOrder';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.02', GroupDisplayOrder = 1 WHERE VariableName = 'Link_SortField2';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.02', GroupDisplayOrder = 2 WHERE VariableName = 'Link_SortOrder2';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.03' WHERE VariableName = 'Perpage_Links';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.04' WHERE VariableName = 'Perpage_Links_Short';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.05' WHERE VariableName = 'Link_NewDays';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.06' WHERE VariableName = 'Link_MinPopRating';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.07' WHERE VariableName = 'Link_MinPopVotes';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.08' WHERE VariableName = 'Link_MaxHotNumber';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.09' WHERE VariableName = 'Link_EnhancedLinks';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.10' WHERE VariableName = 'Link_AllowFreeListings';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.11' WHERE VariableName = 'Link_ShowPick';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.12' WHERE VariableName = 'Link_UrlStatus';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.13', GroupDisplayOrder = 1 WHERE VariableName = 'link_ReviewDelay_Value';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.13', GroupDisplayOrder = 2 WHERE VariableName = 'link_ReviewDelay_Interval';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.14', GroupDisplayOrder = 1 WHERE VariableName = 'link_RatingDelay_Value';
-UPDATE ConfigurationAdmin SET DisplayOrder = '10.14', GroupDisplayOrder = 2 WHERE VariableName = 'link_RatingDelay_Interval';
-UPDATE ConfigurationAdmin SET DisplayOrder = '20.01', GroupDisplayOrder = 1 WHERE VariableName = 'Link_ReviewsSort';
-UPDATE ConfigurationAdmin SET DisplayOrder = '20.01', GroupDisplayOrder = 2 WHERE VariableName = 'Link_ReviewsOrder';
-UPDATE ConfigurationAdmin SET DisplayOrder = '20.02', GroupDisplayOrder = 1 WHERE VariableName = 'Link_ReviewsSort2';
-UPDATE ConfigurationAdmin SET DisplayOrder = '20.02', GroupDisplayOrder = 2 WHERE VariableName = 'Link_ReviewsOrder2';
-UPDATE ConfigurationAdmin SET DisplayOrder = '20.03' WHERE VariableName = 'Perpage_LinkReviews';
-UPDATE ConfigurationAdmin SET DisplayOrder = '30.01' WHERE VariableName = 'l_CategoryTemplate';
-UPDATE ConfigurationAdmin SET DisplayOrder = '30.02' WHERE VariableName = 'l_ItemTemplate';
-
-ALTER TABLE Link CHANGE EditorsPick EditorsPick TINYINT(4) NOT NULL DEFAULT '0';
-ALTER TABLE Link CHANGE Status Status TINYINT(4) NOT NULL DEFAULT '2';
-
-INSERT INTO CustomField (Type, FieldName, FieldLabel, Heading, Prompt, ElementType, ValueList, DisplayOrder, OnGeneralTab, IsSystem) VALUES (1, 'l_ItemTemplate', 'l_ItemTemplate', 'la_title_SystemCF', 'l_ItemTemplate', 'text', NULL, 0, 0, 1);
-
-UPDATE Modules SET Version = '3.2.1' WHERE Name = 'In-Link';
\ No newline at end of file
Property changes on: trunk/in-link/admin/install/upgrades/inportal_upgrade_v3.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-link/admin/install/upgrades/inportal_upgrade_v4.1.0.sql
===================================================================
--- trunk/in-link/admin/install/upgrades/inportal_upgrade_v4.1.0.sql (revision 12828)
+++ trunk/in-link/admin/install/upgrades/inportal_upgrade_v4.1.0.sql (nonexistent)
@@ -1,6 +0,0 @@
-ALTER TABLE Link CHANGE AutomaticFilename AutomaticFilename TINYINT(3) UNSIGNED NOT NULL DEFAULT '1', CHANGE CreatedById CreatedById INT(11) NOT NULL DEFAULT '-1', CHANGE ModifiedById ModifiedById INT(11) NOT NULL DEFAULT '-1', CHANGE CachedRating CachedRating VARCHAR(10) NOT NULL DEFAULT '0', CHANGE CreatedOn CreatedOn INT UNSIGNED NULL DEFAULT NULL, CHANGE Modified Modified INT UNSIGNED NULL DEFAULT NULL, CHANGE Expire Expire INT UNSIGNED NULL DEFAULT NULL;
-ALTER TABLE Link DROP Filename;
-
-ALTER TABLE Listings CHANGE `Status` `Status` TINYINT(4) UNSIGNED NOT NULL DEFAULT '2';
-
-UPDATE Modules SET Version = '4.1.0' WHERE Name = 'In-Link';
\ No newline at end of file
Property changes on: trunk/in-link/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-link/admin/install/upgrades/changelog_3_1_5.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/changelog_3_1_5.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/changelog_3_1_5.txt (nonexistent)
@@ -1,36 +0,0 @@
-File in-link/in-link/action.php changed
-File in-link/in-link/frontaction.php changed
-File in-link/in-link/inlink_redirect.php changed
-File in-link/in-link/link.php changed
-File in-link/in-link/parser.php changed
-File in-link/in-link/admin/addlink_reviews.php changed
-File in-link/in-link/admin/browse.php changed
-File in-link/in-link/admin/import/inlink_import.php changed
-File in-link/in-link/admin/install/inportal_data.sql changed
-File in-link/in-link/admin/install/inportal_schema.sql changed
-File in-link/in-link/admin/install/langpacks/english.lang changed
-File in-link/in-link/admin/install/upgrades/changelog_3_1_5.txt is new; release_3_1_5 revision 1.12
-File in-link/in-link/admin/install/upgrades/inportal_upgrade_v3.1.5.sql is new; release_3_1_5 revision 1.4
-File in-link/in-link/admin/install/upgrades/readme_3_1_5.txt is new; release_3_1_5 revision 1.1
-File in-link/in-link/admin_templates/export.tpl is new; release_3_1_5 revision 1.1
-File in-link/in-link/admin_templates/export_finish.tpl is new; release_3_1_5 revision 1.1
-File in-link/in-link/admin_templates/export_progress.tpl is new; release_3_1_5 revision 1.1
-File in-link/in-link/admin_templates/import.tpl is new; release_3_1_5 revision 1.2
-File in-link/in-link/admin_templates/import_progress.tpl is new; release_3_1_5 revision 1.1
-File in-link/in-link/admin_templates/link_selector.tpl changed
-File in-link/in-link/admin_templates/links/links_edit.tpl changed
-File in-link/in-link/admin_templates/paid_listings/paid_listing_edit.tpl changed
-File in-link/in-link/admin_templates/paid_listings/paid_listing_type_edit.tpl changed
-File in-link/in-link/admin_templates/paid_listings/paid_listing_types_list.tpl changed
-File in-link/in-link/admin_templates/paid_listings/paid_listings_list.tpl changed
-File in-link/in-link/module_help/links_export.txt is new; release_3_1_5 revision 1.1
-File in-link/in-link/module_help/links_import.txt is new; release_3_1_5 revision 1.1
-File in-link/in-link/units/links/link_tag_processor.php changed
-File in-link/in-link/units/links/links_config.php changed
-File in-link/in-link/units/links/links_event_handler.php is new; release_3_1_5 revision 1.2
-File in-link/in-link/units/listing_types/listing_types_config.php changed
-File in-link/in-link/units/listings/listings_tag_processor.php changed
-File in-link/themes/default/inlink/blocks/links/link_enhance_form.tpl changed
-File in-link/themes/default/inlink/blocks/links/link_extend_confirm.tpl changed
-File in-link/themes/default/inlink/blocks/links/listing_details.tpl is new; release_3_1_5 revision 1.1
-File in-link/themes/default/inlink/suggest_link/suggest_link_form.tpl changed
Property changes on: trunk/in-link/admin/install/upgrades/changelog_3_1_5.txt
___________________________________________________________________
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-link/admin/install/upgrades/changelog_3_1_4.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/changelog_3_1_4.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/changelog_3_1_4.txt (nonexistent)
@@ -1,11 +0,0 @@
-File in-link/in-link/parser.php changed
-File in-link/in-link/admin/addlink_category.php changed
-File in-link/in-link/admin/addlink_images.php changed
-File in-link/in-link/admin/addlink_relations.php changed
-File in-link/in-link/admin/addlink_reviews.php changed
-File in-link/in-link/admin/include/toolbar/editlink_relations.php changed
-File in-link/in-link/admin/install/inportal_data.sql changed
-File in-link/in-link/admin/install/upgrades/changelog_3_1_4.txt is new
-File in-link/in-link/admin/install/upgrades/inportal_upgrade_v3.1.4.sql is new
-File in-link/in-link/admin/install/upgrades/readme_3_1_4.txt is new
-File in-link/in-link/admin_templates/paid_listings/paid_listing_type_edit.tpl changed
Property changes on: trunk/in-link/admin/install/upgrades/changelog_3_1_4.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-link/admin/install/upgrades/changelog_3_0_7.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/changelog_3_0_7.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/changelog_3_0_7.txt (nonexistent)
@@ -1,29 +0,0 @@
-File in-link/in-link/action.php changed
-File in-link/in-link/frontaction.php changed
-File in-link/in-link/link.php changed
-File in-link/in-link/module_init.php changed
-File in-link/in-link/parser.php changed
-File in-link/in-link/admin/addimage.php changed
-File in-link/in-link/admin/addlink.php changed
-File in-link/in-link/admin/addlink_custom.php changed
-File in-link/in-link/admin/addlink_relations.php changed
-File in-link/in-link/admin/addlink_reviews.php changed
-File in-link/in-link/admin/addrelation.php changed
-File in-link/in-link/admin/addreview.php changed
-File in-link/in-link/admin/advanced_view.php changed
-File in-link/in-link/admin/install.php changed
-File in-link/in-link/admin/run_validation.php changed
-File in-link/in-link/admin/validation.php changed
-File in-link/in-link/admin/import/inlink_import.php changed
-File in-link/in-link/admin/import/status.php changed
-File in-link/in-link/admin/include/toolbar/advanced_view.php changed
-File in-link/in-link/admin/include/toolbar/browse.php changed
-File in-link/in-link/admin/install/inportal_data.sql changed
-File in-link/in-link/admin/install/upgrades/changelog_3_0_7.txt is new
-File in-link/in-link/admin/install/upgrades/inportal_upgrade_v3.0.7.sql is new
-File in-link/in-link/admin/install/upgrades/readme_3_0_7.txt is new
-File in-link/themes/default/inlink/main.tpl changed
-File in-link/themes/default/inlink/index/links.tpl changed
-File in-link/themes/default/inlink/index/right/actionbox.tpl changed
-File in-link/themes/default/inlink/search_results/item_results.tpl changed
-File in-link/themes/default/inlink/search_results/search_results_element.tpl changed
Property changes on: trunk/in-link/admin/install/upgrades/changelog_3_0_7.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-link/admin/install/upgrades/changelog_3_0_6.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/changelog_3_0_6.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/changelog_3_0_6.txt (nonexistent)
@@ -1,34 +0,0 @@
-File in-link/in-link/action.php changed
-File in-link/in-link/frontaction.php changed
-File in-link/in-link/inlink_redirect.php changed
-File in-link/in-link/link.php changed
-File in-link/in-link/parser.php changed
-File in-link/in-link/admin/addimage.php changed
-File in-link/in-link/admin/addlink.php changed
-File in-link/in-link/admin/addlink_category.php changed
-File in-link/in-link/admin/addlink_custom.php changed
-File in-link/in-link/admin/addlink_images.php changed
-File in-link/in-link/admin/addlink_relations.php changed
-File in-link/in-link/admin/addlink_reviews.php changed
-File in-link/in-link/admin/addrelation.php changed
-File in-link/in-link/admin/addreview.php changed
-File in-link/in-link/admin/advanced_view.php changed
-File in-link/in-link/admin/browse.php changed
-File in-link/in-link/admin/config_general.php changed
-File in-link/in-link/admin/install.php changed
-File in-link/in-link/admin/run_validation.php changed
-File in-link/in-link/admin/validation.php changed
-File in-link/in-link/admin/images/icon46_in-link.gif is new
-File in-link/in-link/admin/import/inlink_import.php is new
-File in-link/in-link/admin/import/status.php is new
-File in-link/in-link/admin/include/navmenu.php changed
-File in-link/in-link/admin/include/parser.php changed
-File in-link/in-link/admin/include/help/in-link.txt is new
-File in-link/in-link/admin/include/toolbar/advanced_view.php changed
-File in-link/in-link/admin/include/toolbar/browse.php changed
-File in-link/in-link/admin/include/toolbar/inlink_inport.php is removed
-File in-link/in-link/admin/install/inportal_data.sql changed
-File in-link/in-link/admin/install/upgrades/changelog_3_0_6.txt is new
-File in-link/in-link/admin/install/upgrades/inportal_upgrade_v3.0.6.sql is new
-File in-link/in-link/admin/install/upgrades/readme_3_0_6.txt is new
-File in-link/in-link/admin/templates/link_tab_element.tpl is new
Property changes on: trunk/in-link/admin/install/upgrades/changelog_3_0_6.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-link/admin/install/upgrades/changelog_3_2_2.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/changelog_3_2_2.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/changelog_3_2_2.txt (nonexistent)
@@ -1,10 +0,0 @@
-File in-link/in-link/inlink_redirect.php changed
-File in-link/in-link/searchaction.php changed
-File in-link/in-link/admin/import/inlink_import.php changed
-File in-link/in-link/admin/install/inportal_data.sql changed
-File in-link/in-link/admin/install/upgrades/changelog_3_2_2.txt is new; release_3_2_2 revision 1.1.2.8
-File in-link/in-link/admin/install/upgrades/inportal_upgrade_v3.2.2.sql is new; release_3_2_2 revision 1.1.2.1
-File in-link/in-link/admin/install/upgrades/readme_3_2_2.txt is new; release_3_2_2 revision 1.1.2.1
-File in-link/in-link/units/links/link_tag_processor.php changed
-File in-link/in-link/units/links/links_config.php changed
-File in-link/in-link/units/listings/listings_event_handler.php changed
Property changes on: trunk/in-link/admin/install/upgrades/changelog_3_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-link/admin/install/upgrades/changelog_3_2_3.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/changelog_3_2_3.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/changelog_3_2_3.txt (nonexistent)
@@ -1,15 +0,0 @@
-File in-link/in-link/parser.php changed
-File in-link/in-link/admin/install/inportal_data.sql changed
-File in-link/in-link/admin/install/inportal_schema.sql changed
-File in-link/in-link/admin/install/langpacks/english.lang changed
-File in-link/in-link/admin/install/upgrades/changelog_3_2_3.txt is new; release_3_2_3 revision 1.1.2.4
-File in-link/in-link/admin/install/upgrades/inportal_upgrade_v3.2.3.sql is new; release_3_2_3 revision 1.1.2.3
-File in-link/in-link/admin/install/upgrades/readme_3_2_3.txt is new; release_3_2_3 revision 1.1.2.1
-File in-link/in-link/admin_templates/catalog_tab.tpl changed
-File in-link/in-link/admin_templates/export.tpl changed
-File in-link/in-link/admin_templates/paid_listings/paid_listing_edit.tpl changed
-File in-link/in-link/admin_templates/paid_listings/paid_listing_type_edit.tpl changed
-File in-link/in-link/units/links/links_config.php changed
-File in-link/in-link/units/listing_types/listing_types_config.php changed
-File in-link/in-link/units/listings/listings_config.php changed
-File in-link/in-link/units/listings/listings_event_handler.php changed
Property changes on: trunk/in-link/admin/install/upgrades/changelog_3_2_3.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-link/admin/install/upgrades/changelog_3_3_0.txt
===================================================================
Index: trunk/in-link/admin/install/upgrades/changelog_3_3_0.txt
===================================================================
--- trunk/in-link/admin/install/upgrades/changelog_3_3_0.txt (revision 12828)
+++ trunk/in-link/admin/install/upgrades/changelog_3_3_0.txt (nonexistent)
Property changes on: trunk/in-link/admin/install/upgrades/changelog_3_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-link/admin/browse.php
===================================================================
--- trunk/in-link/admin/browse.php (revision 12828)
+++ trunk/in-link/admin/browse.php (nonexistent)
@@ -1,85 +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( defined('K4_LINKS') && K4_LINKS )
-{
- // K4 VERSION: BEGIN
- $var = 'In-Link_TAB_HTML';
- if (isset($$var)) {
- echo $$var;
- }
- // K4 VERSION: END
-}
-else
-{
- global $rootURL, $imagesURL, $adminURL,$admin,$pathtoroot;
-
- if(!$pathtoroot) die('error: no base path defined');
-
- $localURL=$rootURL."in-link/";
- $pathtolocal = $pathtoroot."in-link/";
-
- require_once ($pathtolocal."admin/include/navmenu.php");
-
- //Set Section
- $section = 'in-link:browse';
-
- //Set Environment Variable
- $envar = "env=" . BuildEnv();
-
- //Display header
- $section = 'in-link:browse';
- $list = $objSession->GetVariable("SearchWord");
- //$mysearch = (strlen($list)>0 && $SearchType =="Links" || $SearchType=="all") || (strlen($list)==0);
-
- if($LinkSearch)
- {
- ?>
- <!-- LINKS -->
- <div id="links" class="ini_tab" isTab="true" tabTitle="Links" PrefixSpecial="l" ActionPrefix="l_link_" EditURL="in-link/admin/addlink">
- <form name="links_form" id="links_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">
- <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 $objLinkList->GetAdminPageLinkList($_SERVER["PHP_SELF"]); ?>
- </td>
- </tr>
- </table><br>
-
-
- <table cellSpacing=0 cellPadding=2 width="100%" border=0>
- <tbody>
- <?php
- //print adListLinks($pathtoroot."in-link/admin/templates/link_element.tpl");
- print $objLinkList->AdminPrintItems($pathtoroot."in-link/admin/templates/link_tab_element.tpl");
- ?>
- </tbody>
- </table>
- </form>
- </div>
- <SCRIPT LANGUAGE="JavaScript">
- AddButtonAction('new_link',"get_to_server('<?php echo $rootURL;?>in-link/admin/addlink.php','<?php echo $envar; ?>&new=1');"); //new link
- registerTab('links');
- </SCRIPT>
- <!-- END LINKS -->
- <?php
- }
-}
-
-
-?>
Property changes on: trunk/in-link/admin/browse.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-link/admin/addlink_images.php
===================================================================
--- trunk/in-link/admin/addlink_images.php (revision 12828)
+++ trunk/in-link/admin/addlink_images.php (nonexistent)
@@ -1,297 +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-link/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-link/";
-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 clsLinkList();
-$objEditItems->SourceTable = $objSession->GetEditTable("Link");
-$objEditItems->EnablePaging = FALSE;
- $en = (int)$_GET["en"];
- if (isset($_POST["linklist"]))
- {
- $objLinkList->CopyToEditTable("LinkId",$_POST["linklist"]);
- }
- $objEditItems->Query_Item("SELECT * FROM ".$objEditItems->SourceTable);
- $itemcount=$objEditItems->NumItems();
- if( $GLOBALS['debuglevel'] )
- echo $itemcount . " items loaded..<br>\n";
-
-$c = $objEditItems->GetItemByIndex($en);
-$objImageList = new clsImageList();
-$objImageList->SourceTable = $objSession->GetEditTable("Images");
-//$objImageList->Query_Images("ResourceId=".$c->Get("ResourceId"),"");
-
-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-link:editlink_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-link/admin/addlink_images.php";
- $StatusField = "LinkEditStatus";
- $form = "link";
- 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-link/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('addlink_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('addlink_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('addlink_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("LinkImg_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_Link")." '".$c->Get("Name")."' - ".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)";
-
-if(strlen(trim($objConfig->Get("LinkImage_LV_Sortfield"))))
-{
- $order = " ORDER BY img.Priority DESC, ".$objConfig->Get("LinkImage_LV_Sortfield")." ".$objConfig->Get("LinkImage_LV_Sortorder");
-}
-else
- $order = " ORDER BY img.Priority DESC ";
-
-$total_records = QueryCount($sql);
-$objImageList->RefreshPage('Page_Images', $total_records);
-
-
-
-$sql .= $order." ".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;
-
- // $Field="",$Label="",$Searchable=1,$sortfield=0,$asc=1,$width="",$config_field,$config_sortorder,$key=""
- //$objListView->ColumnHeaders->Add("","",0,0,"","","","_blank");
-
- $objListView->ColumnHeaders->Add("FullName",admin_language("la_ColHeader_Image"),1,0,$order,"width=\"20%\"","LinkImage_LV_Sortfield","LinkImage_LV_Sortorder" ,"Name");
- $objListView->ColumnHeaders->Add("AltName",admin_language("la_ColHeader_AltValue"),1,0,$order,"width=\"20%\"","LinkImage_LV_Sortfield","LinkImage_LV_Sortorder","AltName");
- $objListView->ColumnHeaders->Add("ShowURL",admin_language("la_ColHeader_Url"),1,0,$order,"width=\"20%\"","LinkImage_LV_Sortfield","LinkImage_LV_Sortorder","ShowURL");
- $objListView->ColumnHeaders->Add("Status",admin_language("la_ColHeader_Enabled"),1,0,$order,"width=\"10%\"","LinkImage_LV_Sortfield","LinkImage_LV_Sortorder","Status");
- $objListView->ColumnHeaders->Add("Preview",admin_language("la_ColHeader_Preview"),1,0,$order,"width=\"30%\"","LinkImage_LV_Sortfield","LinkImage_LV_Sortorder","Preview");
-
- $objListView->ColumnHeaders->SetSort($objConfig->Get("LinkImage_LV_Sortfield"), $objConfig->Get("LinkImage_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="LinkEditStatus" 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-link/admin/addlink_images.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-link/admin/addlink_relations.php
===================================================================
--- trunk/in-link/admin/addlink_relations.php (revision 12828)
+++ trunk/in-link/admin/addlink_relations.php (nonexistent)
@@ -1,360 +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-link/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-link/";
-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 clsLinkList();
-$objEditItems->SourceTable = $objSession->GetEditTable("Link");
-$objEditItems->EnablePaging = FALSE;
- $en = (int)$_GET["en"];
- if (isset($_POST["linklist"]))
- {
- $objLinkList->CopyToEditTable("LinkId",$_POST["linklist"]);
- }
- $objEditItems->Query_Item("SELECT * FROM ".$objEditItems->SourceTable);
- $itemcount=$objEditItems->NumItems();
- if( $GLOBALS['debuglevel'] ) echo $itemcount . " items loaded..<br>\n";
- $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 = "l_edit_link";
-
-
-$section = 'in-link:editlink_relations';
-$envar = "env=" . BuildEnv() . "&en=$en";
-$saveURL = $admin."/".$objSession->GetVariable('ReturnScript');
-//Set Environment Variable
-if( $GLOBALS['debuglevel'] ) echo $envar."<br>\n";
-//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','LinkEditStatus','".$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','LinkEditStatus','".$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-link/admin/addlink_relations.php";
- $StatusField = "LinkEditStatus";
- $form = "link";
- 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",TRUE,TRUE);
-$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('addlink_relations', 'm_rel_delete');",
- "tool_delete.gif",FALSE,TRUE);
-$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('addlink_relations', 'm_rel_move_up');",
- "tool_move_up.gif",FALSE,TRUE);
-$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('addlink_relations', 'm_rel_move_down');",
- "tool_move_down.gif",FALSE,TRUE);
-
-$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("LinkRel_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( isset($RelFilter) && $RelFilter )
-{
- $sql .= " AND (".$RelFilter.")";
-}
-
-$SearchWords = $objSession->GetVariable("LinkRelSearchWord");
-if(strlen($SearchWords))
-{
- $having = $objRelList->AdminSearchWhereClause($SearchWords);
-}
-else
- $having = "";
-
-if(strlen($having))
- $sql .= " HAVING ($having) ";
-
-if(strlen(trim($objConfig->Get("LinkRelation_LV_Sortfield"))))
-{
- $order = " ORDER BY rel.Priority DESC, ".$objConfig->Get("LinkRelation_LV_Sortfield")." ".$objConfig->Get("LinkRelation_LV_Sortorder");
-}
-else
- $order = " ORDER BY rel.Priority DESC";
-
-$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=\"20%\"","LinkRelation_LV_Sortfield","LinkRelation_LV_Sortorder","ItemName");
-$objListView->ColumnHeaders->Add("ItemType",admin_language("la_ColHeader_ItemType"),1,0,$order,"width=\"20%\"","LinkRelation_LV_Sortfield","LinkRelation_LV_Sortorder","ItemType");
-$objListView->ColumnHeaders->Add("RelationType",admin_language("la_prompt_RelationType"),1,0,$order,"width=\"20%\"","LinkRelation_LV_Sortfield","LinkRelation_LV_Sortorder","RelationType");
-$objListView->ColumnHeaders->Add("Status",admin_language("la_prompt_Status"),1,0,$order,"width=\"10%\"","LinkRelation_LV_Sortfield","LinkRelation_LV_Sortorder","Status");
-$objListView->ColumnHeaders->SetSort($objConfig->Get("LinkRelation_LV_Sortfield"), $objConfig->Get("LinkRelation_LV_Sortorder"));
-
-$objListView->PrintToolBar = FALSE;
-$objListView->SearchBar = TRUE;
-$objListView->SearchKeywords = $SearchWords;
-$objListView->SearchAction="l_rel_search";
-$objListView->CurrentPageVar = "Page_Relations";
-$objListView->PerPageVar = "Perpage_Relations";
-$objListView->CheckboxName = "itemlist[]";
-$objListView->TotalItemCount = $total_records;
-
-$filter = false; // always initialize variables before use
-if($objSession->GetVariable("LinkRelSearchWord") != '') {
- $filter = true;
-}
-else {
- if ($RelView != $Rel_AllValue) {
- $filter = true;
- }
-}
-
-$title = prompt_language("la_Text_Editing")." ".prompt_language("la_Text_Link")." '".$c->Get("Name")."' - ".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="LinkEditStatus" VALUE="0">
-</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>
-<!-- END CODE-->
-<?php int_footer(); ?>
Property changes on: trunk/in-link/admin/addlink_relations.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-link/link.php
===================================================================
--- trunk/in-link/link.php (revision 12828)
+++ trunk/in-link/link.php (nonexistent)
@@ -1,1220 +0,0 @@
-<?php
-
-define('TYPE_LINK', 4);
-
-RegisterPrefix("clsLink","link","in-link/link.php");
-
-class clsLink extends clsCatItem
-{
- function clsLink($LinkId=NULL)
- {
- global $objSession, $objConfig;
-
- $this->clsCatItem(TRUE); //call parent constructor
-
- $this->tablename=GetTablePrefix()."Link";
- $this->type=TYPE_LINK;
- $this->BasePermission ="LINK";
- $this->id_field = "LinkId";
- $this->TagPrefix = "link";
- $this->Prefix = 'l';
- $this->TitleField = 'Name';
- $this->ReviewSortOrder = trim($objConfig->Get("Link_ReviewsSort")." ".$objConfig->Get("Link_ReviewsOrder"));
- $this->ReviewSortOrder .= trim(",".$objConfig->Get("Link_ReviewsSort2")." ".$objConfig->Get("Link_ReviewsOrder2"));
- $this->Reviews->PerPage = $objConfig->Get("Perpage_LinkReviews");
-
- /* keyword highlighting */
- $this->OpenTagVar = "Link_Highlight_OpenTag";
- $this->CloseTagVar = "Link_Highlight_CloseTag";
-
- if(isset($LinkId))
- $this->LoadFromDatabase($LinkId);
- if($objSession->HasSystemPermission("DEBUG.ITEM"))
- {
- $this->SetDebugLevel(1);
- }
- }
-
- function DetectChanges($name, $value)
- {
- global $objSession;
-
- if (!isset($this->Data[$name]) ) return false;
-
- //echo "<b>class: ".get_class($this)."</b><br>";
- if ($this->Data[$name] != $value && $value != '') {
- //echo "$name Modified tt ".$this->Data[$name]." : $value<br>";
- if ($objSession->GetVariable("HasChanges") != 1) {
- $objSession->SetVariable("HasChanges", 2);
- }
- }
- }
-
-
- function ClearCacheData()
- {
- DeleteModuleTagCache('inlink');
- /*$cats = explode(",",$this->CategoryMemberList());
- if(is_array($cats))
- {
- foreach($cats as $c)
- {
- if(is_numeric($c))
- {
- $evar = "'%:m".$c."%'";
- DeleteTagCache("l_list_links","",$evar);
- DeleteTagCache("l_link_more","",$evar);
- }
- }
- }
- DeleteTagCache("l_link_modified%","");
- DeleteTagCache("LinkPopValue","","");
- DeleteTagCache("LinkHotValue","","");
- DeleteTagCache("LinkNewValue","","");*/
- }
-
-
- function Delete()
- {
- parent::Delete();
- if($this->tablename==GetTablePrefix()."Link")
- {
- $this->ClearCacheData();
- // DeleteTagCache("m_itemcount","Link%");
- }
- }
-
- function Update($UpdatedBy = null)
- {
- parent::Update($UpdatedBy);
- if($this->tablename == GetTablePrefix().'Link') $this->ClearCacheData();
- }
-
- function Create()
- {
- parent::Create();
- if($this->tablename == GetTablePrefix().'Link') $this->ClearCacheData();
- }
-
- function SetNewItem()
- {
- global $objConfig;
-
- $value = $this->Get("CreatedOn");
-
- $cutoff = adodb_date("U") - ($objConfig->Get("Link_NewDays") * 86400);
- $this->IsNew = FALSE;
- if($value>$cutoff)
- $this->IsNew = TRUE;
- return $this->IsNew;
- }
-
- function SetPopItem()
- {
- global $objConfig, $objLinkList;
-
- $cutoff = $objLinkList->GetPopValue();
- $this->IsPop = FALSE;
- if($cutoff>0)
- {
- if($this->Get('CachedRating') >= $cutoff
- && $this->Get('CachedVotesQty') >= $objConfig->Get('Link_MinPopVotes'))
- {
- $this->IsPop = TRUE;
- }
- }
- return $this->IsPop;
- }
-
- function SetHotItem()
- {
- global $objConfig, $objLinkList, $objSession;
-
- $this->IsHot = FALSE;
- $cutoff = $objLinkList->GetHotValue();
- if($cutoff>0)
- {
- if($this->Get("Hits")>=$cutoff) {
- $this->IsHot = TRUE;
- }
- }
- return $this->IsHot;
- }
-
- function Approve()
- {
- if($this->Get("Status")==-2)
- {
- $this->SendUserEventMail("LINK.MODIFY.APPROVE",$this->Get("CreatedById"));
- $this->SendAdminEventMail("LINK.MODIFY.APPROVE");
- }
- else
- {
- $this->SendUserEventMail("LINK.APPROVE",$this->Get("CreatedById"));
- $this->SendAdminEventMail("LINK.APPROVE");
- }
- $this->Set("Status", 1);
- $this->Update();
- }
-
- function Deny()
- {
- if($this->Get("Status")==-2)
- {
- $this->SendUserEventMail("LINK.DENY.PENDING",$this->Get("CreatedById"));
- $this->SendAdminEventMail("LINK.DENY.PENDING");
- $this->Delete();
- }
- else
- {
- $this->SendUserEventMail("LINK.DENY",$this->Get("CreatedById"));
- $this->SendAdminEventMail("LINK.DENY");
- $this->Set("Status", 0);
- $this->Update();
- }
- }
-
- function Validate()
- {
- global $objSession, $Errors;
-
- $dataValid = true;
- if(!strlen($this->Get("Name")))
- {
- $Errors->AddError("error.fieldIsRequired",'Name',"","",get_class($this),"Validate");
- $dataValid = false;
- }
-
-// if(!isset($this->m_Url))
-// {
-// $Errors->AddError("error.fieldIsRequired",'Url',"","",get_class($this),"Validate");
-// $dataValid = false;
-// }
-
- if(!(int)$this->Get("CreatedOn"))
- {
- $Errors->AddError("error.fieldIsRequired",'CreatedOn',"","",get_class($this),"Validate");
- $dataValid = false;
- }
-
- if(!(int)$this->Get("CreatedById"))
- {
- $Errors->AddError("error.fieldIsRequired",'CreatedBy',"","",get_class($this),"Validate");
- $dataValid = false;
- }
- return $dataValid;
- }
-
-
- function LoadFromDatabase($Id)
- {
- global $objSession,$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 LinkId = '%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;
- if(is_array($data))
- $this->SetFromArray($data);
- $this->Clean();
- return TRUE;
- }
-
- 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);
- $this->Clean();
- }
- return TRUE;
- }
-
- function ReviewCount($TodayOnly = FALSE)
- {
-
-// if($TodayOnly==FALSE && is_numeric($this->Get("CachedReviewsQty")))
-// return (int)$this->Get("CachedReviewsQty"); //this is a performance boost
-
- if(!is_object($this->Reviews))
- {
- $this->Reviews= new clsItemReviewList($this->Get("ResourceId"));
- }
- else
- {
- $this->Reviews->itemID=$this->Get("ResourceId");
- }
- return $this->Reviews->GetItemReviewCount($TodayOnly);
- }
-
- function StatusIcon()
- {
- global $rootURL;
-
- $ret = $rootURL."/in-link/admin/images/";
-
- switch(abs($this->Get("Status")))
- {
- case STATUS_DISABLED:
- $ret .= "icon16_link_disabled.gif";
- break;
- case STATUS_PENDING:
- $ret .= "icon16_link_pending.gif";
- break;
- case STATUS_ACTIVE:
- $img = "icon16_link.gif";
- if($this->IsPopItem())
- $img = "icon16_link_pop.gif";
- if($this->IsHotItem())
- $img = "icon16_link_hot.gif";
- if($this->IsNewItem())
- $img = "icon16_link_new.gif";
- if($this->Is("EditorsPick"))
- $img = "icon16_link_pick.gif";
- $ret .= $img;
- break;
- }
- return $ret;
- }
-
- function ItemURL($Template=NULL,$SetCat=FALSE,$Action=NULL)
- {
- global $var_list_update,$var_list,$l_var_list_update,$m_var_list_update;
-
- $url_params = Array();
- $var_list_update['t'] = $Template ? $Template : $var_list['t'];
-
- //if($SetCat)
- //{
- $cat = $this->Get("CategoryId");
- if( !is_numeric($cat) ) $cat = $this->GetPrimaryCategory();
- $m_var_list_update["cat"] = $cat;
- //}
-
- $l_var_list_update["id"] = $this->Get("LinkId");
-
- if( isset($Action) && $Action ) $url_params['Action'] = $Action;
- $ret = HREF_Wrapper('', $url_params);
-
- unset($l_var_list_update["id"], $var_list_update["t"],$m_var_list_update["cat"]);
- return $ret;
- }
-
- function ParseObject($element)
- {
- /* when updating this function, update the comments at the top of the file */
- global $objConfig, $objCatList, $rootURL, $var_list, $var_list_update,
- $l_var_list_update, $m_var_list_update, $objSession, $objUsers;
-
- $extra_attribs = ExtraAttributes($element->attributes);
- if(strtolower($element->name)==$this->TagPrefix)
- {
- $field = strtolower($element->attributes["_field"]);
- switch($field)
- {
- case 'pending_approval':
- $ret = $this->isPending() ? true : '';
- if ($element->GetAttributeByName('_Not')) {
- $ret = $ret ? '' : true;
- }
- break;
-
- /*
- @field:link.url
- @description:Returns link URL or default value if URL is empty
- */
- case 'url':
- $ret = $this->Get('Url');
- $default = $element->GetAttributeByName('_default');
- if( empty($ret) && !empty($default) )
- {
- $ret = language($default);
- }
- break;
-
- case 'additional_params':
- $ret = '';
- if( $objConfig->Get('Link_UrlStatus') )
- {
- $link_url = addslashes( htmlspecialchars( $this->Get('Url') ) );
- $ret = ' onmouseover="window.status = \''.$link_url.'\'; return true;" onmouseout="window.status = \'\';"';
- }
- break;
-
- case "name":
- /*
- @field:link.name
- @description:Returns the link name
- */
- //echo "test";
- $ret= $this->HighlightField("Name");
- break;
- case "description":
- /*
- @field:link.description
- @description:Link Description
- @attrib:_maxlength:int:Maximum number of characters to return
- @attrib:_wordchop:bool:If truncating the description, setting wordchop causes the result to be truncated at the last space before the split
- */
- $ret = inp_unescape(($this->Get("Description")));
- $len = (int)$element->GetAttributeByName('_maxlength');
- if($len>0 && strlen($ret)>$len)
- {
- $ret = substr($ret,0,$len);
- $wordchop = $element->GetAttributeByName('_wordchop');
- if(strlen($wordchop)==0 || $wordchop = "1")
- {
- if(substr($wordchop,-1)!=" ")
- {
- $pos = strrpos($ret," ");
- $ret = substr($ret,0,$pos);
- }
- }
- $ret .= " ..";
- }
- $ret = $this->HighlightText($ret);
- break;
- case "createdby":
- /*
- @field:link.createdby
- @description:parse a user field of the user that created the link
- @attrib:_usertag::User field to return (defaults to login ID)
- */
- $field = $element->attributes["_usertag"];
- if(!strlen($field))
- {
- $field = "user_login";
- }
-
- $userId = $this->Get("CreatedById");
-
- if (!empty($userId) && ($userId > 0))
- {
- $u =& $objUsers->GetItem($userId);
- if (is_object($u))
- {
- $ret = $u->parsetag($field);
- }
- }
- else
- $ret = " ";
-
- break;
- case "date":
- /*
- @field:link.date
- @description:Returns the date/time the link 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");
- $ret = $this->ParseTimeStamp($d,$element->attributes);
- break;
- case "modified":
- /*
- @field:link.modified
- @description:Returns the date/time the link 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($d<=0)
- $d = $this->Get("CreatedOn");
- $ret = $this->ParseTimeStamp($d,$element->attributes);
- break;
-
- case "expire":
- /*
- @field:link.expire
- @description:Returns the date/time the link suppose to expire.
- @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
- @attrib:_dataexists:bool: Used with opeing/closing tags to exclude the whole block when expiration date is not set.
- @attrib:_noexpirelabel:lang:Returns language tag when link is immortal (expire set to 0).
- */
- $d = $this->Get("Expire");
- if($d == 0)
- {
- if($element->attributes['_datenotset'] == 1)
- {
- $ret = 1;
- break;
- }
-
- if(strlen($element->attributes['_noexpirelabel']))
- $ret = language($element->attributes['_noexpirelabel']);
- else
- $ret = "";
- }
- elseif ($d > 0)
- {
- $ret = $this->ParseTimeStamp($d, $element->attributes);
- }
- else
- $ret = "";
-
- break;
-
- case "delete_link":
- /*
- @field:link.delete_link
- @description:Returns a URL to delete the link
- @attrib:_template:tpl:Template URL should point to
- */
- $catid = $this->GetPrimaryCategory();
- if($objSession->HasCatPermission("LINK.DELETE",$catid) ||
- ($objSession->Get("PortalUserId")==$this->Get("CreatedById") && $objSession->HasCatPermission("LINK.OWNER.DELETE",$catid)))
- {
- $t = $element->attributes["_template"];
- if(!strlen($t))
- $t = $var_list["t"];
- $ret = $this->ItemURL($t);
- }
-
- break;
-
- case "edit_link":
- /*
- @field:link.edit_link
- @description:Returns a URL to edit the link
- @attrib:_template:tpl:Template URL should point to
- */
-
- $catid = $this->GetPrimaryCategory();
- if(($objSession->HasCatPermission("LINK.MODIFY",$catid) || $objSession->HasCatPermission("LINK.MODIFY.PENDING",$catid)) ||
- (($objSession->Get("PortalUserId")==$this->Get("CreatedById") && $objSession->HasCatPermission("LINK.OWNER.MODIFY",$catid)) || ($objSession->Get("PortalUserId")==$this->Get("CreatedById") && $objSession->HasCatPermission("LINK.OWNER.MODIFY.PENDING",$catid))))
- {
- $t = $element->attributes["_template"];
- if(!strlen($t))
- $t = $var_list["t"];
- $ret = $this->ItemURL($t);
- }
-
- break;
-
- case 'is_enhanced':
-
- if (!class_exists('kApplication') || $this->isPending() ) {
- return '';
- }
-
- $application =& kApplication::Instance();
- $l_tag_processor =& $application->recallObject('l_TagProcessor');
- $application->SetVar('l_id', $this->Get('LinkId'));
- $res = $l_tag_processor->LinkIsEnhanced( Array() );
-
- $ret = getArrayValue($element->attributes, '_not') ? !$res : $res;
- return $ret ? 1 : '';
- break;
-
- case "redirect":
- /*
- @field:link.redirect
- @description:Returns a URL to redirect the browser to the link's URL
- */
- $ret = $rootURL."in-link/inlink_redirect.php?env=". BuildEnv()."&amp;linkid=".$this->Get("LinkId");
- break;
- case "add_favorite_link":
- /*
- @field:link.add_favorite_link
- @description:Returns a URL to add this link 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,"l_add_favorite");
- break;
- case "del_favorite_link":
- /*
- @field:link.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,"l_del_favorite");
- break;
- /*
- @field:link.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 link is already a favorite
- @attrib: _delimage::Image url to include in link if removing the favorite
- */
- case "favorite_toggle":
-
- $catid = $this->GetPrimaryCategory();
- $unregister=false;
- if($objSession->HasCatPermission("FAVORITES", $catid))
- {
- $t = $element->GetAttributeByName('_template');
- }
- else
- {
- $t = $element->GetAttributeByName('_denytemplate');
- RegisterEnv("dest", $element->GetAttributeByName('_denytemplate'));
- $unregister = true;
- }
-
-// echo "RES: ".$unregister;
-
- if(!strlen($t))
- $t = $var_list["t"];
-
- if(!$this->IsFavorite($objSession->Get("PortalUserId"), $this->GetPrimaryCategory()))
- {
- $action = "l_add_favorite";
- if( $element->GetAttributeByName('_addlabel') )
- {
- $label = language($element->attributes["_addlabel"]);
- }
- else
- {
- if(strlen($element->attributes["_addimage"]))
- {
- $result = MakeHTMLTag($element,'_img');
- $label = '<IMG src="'.$element->GetAttributeByName('_addimage').$result.'" border="0" align="absmiddle">';
- }
- }
- }
- else
- {
- $action = "l_del_favorite";
- if(strlen($element->attributes["_dellabel"]))
- {
- $label = language($element->attributes["_dellabel"]);
- }
- else
- {
- if(strlen($element->attributes["_delimage"]))
- {
- $result = MakeHTMLTag($element,'_img');
- $label = '<IMG src="'.$element->GetAttributeByName('_delimage').$result.'" border="0" align="absmiddle">';
- }
- }
- }
-
- $action = $unregister? NULL : $action;
- $ret = "<A ".$extra_attribs." HREF=\"".$this->ItemURL($t,FALSE,$action)."\">$label</A>";
-
- if ($unregister)
- UnregisterEnv("dest");
- break;
-/*
- @field:link.hits
- @description:Returns number of hits for item
-*/
- case "hits":
- $ret= round($this->Get("Hits"));
- break;
-/*
- @field:link.votes
- @description:Returns number of votes for item rating
-*/
-/*
- @field:link.cat_link
- @description:Returns a URL setting the link to the current link and the link's category to the current category
- @attrib:_template:tpl:Template URL should point to
-*/
-/*
- @field:link.link
- @description:Returns a URL setting the link to the current link
- @attrib:_template:tpl:Template URL should point to
-*/
-/*
- @field:link.rating
- @description:Displays the links 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:link.reviews
- @description:Return the number of reviews for think link
- @attrib:_today:bool:Count reviews added today only
-*/
-/*
- @field:link.new
- @description:returns text if link's status is "new"
- @attrib:_label:lang: Text to return if status is new
-*/
-/*
- @field:link.pop
- @description:returns text if link's status is "popular"
- @attrib:_label:lang: Text to return if status is popular
-*/
-/*
- @field:link.hot
- @description:returns text if link's status is "hot"
- @attrib:_label:lang: Text to return if status is "hot"
-*/
-/*
- @field:link.pick
- @description:returns text if link's status is "hot"
- @attrib:_label:lang: Text to return if status is "hot"
-*/
-/*
- @field:link.custom
- @description:Returns a custom field
- @attrib:_customfield::field name to return
- @attrib:_default::default value
- @attrib:_listvalue::default value
-*/
-/*
- @field:link.category
- @description:Return a category field from the link's category
- @attrib:_cattag::Category field to parse
-*/
-/*
- @field:link.fullpath
- @description:The full category path of the item
-*/
-/*
- @field:link.relevance
- @description:Displays the link 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
-
-*/
- break;
-
- default:
- unset($ret);
- break;
- }
-
- if(!isset($ret) || !strlen($ret) )
- {
- $ret = parent::ParseObject($element);
- }
- }
- else
- $ret= "Undefined";
- return $ret;
- }
-
- function parsetag($tag)
- {
- global $objConfig,$mytempdata, $rootURL, $var_list, $var_list_update, $l_var_list_update;
- $ret="";
- //echo "test";
- switch($tag)
- {
- case "link_":
- case "link_name":
- $ret= $this->Get("Name");
- break;
- case "link_desc":
- $ret= $this->Get("Description");
- break;
- case "link_url":
- $ret = $this->Get("Url");
- break;
- case "link_link":
- $ret = $rootURL."in-link/inlink_redirect.php?env=". BuildEnv()."&amp;linkid=".$this->Get("LinkId");
- break;
- case "link_id":
- $ret= $this->Get("LinkId");
- break;
- case "link_date":
- if($this->Get("CreatedOn")<=0)
- return "";
- $ret = LangDate($this->Get('CreatedOn'), 0, true);
- break;
-
- case "link_expire":
- if($this->Get("Expire")<=0)
- return '';
- $ret = LangDate($this->Get('Expire'), 0, true);
- break;
-
- case "link_hits":
- $ret=$this->Get("Hits");
- break;
- case "link_hot":
- if($this->IsHotItem())
- {
- $ret="hot";
- }
- else
- $ret = "";
- break;
- case "link_new":
- if($this->IsNewItem())
- {
- $ret="New";
- }
- else
- $ret = "";
- break;
- case "link_pop":
- if($this->IsPopItem())
- {
- $ret = "pop";
- }
- else
- $ret = "";
- break;
- case "link_pick":
- if ($this->Get("EditorsPick"))
- $ret="pick";
- break;
- case "link_priority":
- if($this->Get("Priority")!=0)
- {
- $ret = (int)$this->Get("Priority");
- }
- else
- $ret = "";
- break;
- case "link_add_fav":
- $var_list_update["t"] = "inlink/add_fav";
- $ret = HREF_Wrapper( Array('id' => $this->Get('LinkId') ) );
- unset($var_list_update["t"]);
- break;
- case "link_suggest_friend":
- $var_list_update["t"] = "inlink/link_suggest";
- $ret= HREF_Wrapper( Array('id' => $this->Get('LinkId') ) );
- unset($var_list_update["t"]);
- break;
-
- case "link_edit_link":
- $l_var_list_update["id"]=$this->Get("LinkId");
- $var_list_update["t"] = "inlink/modify_link";
- $ret= HREF_Wrapper();
- unset($l_var_list_update["id"]);
- unset($var_list_update["t"]);
- break;
-
- case "link_rating_img":
- $ret= "inlink/rating/".RatingImage($this->Get("CachedRating")).".gif";
- break;
- case "link_votes":
- $ret=$this->Get("CachedVotesQty");
- break;
- case "link_reviews":
- $ret= $this->Get("CachedReviewsQty");
- break;
- case "link_rating":
- $ret = round($this->Get("CachedRating"),1);
- break;
- case "link_resourceid":
- $ret= $this->Get("ResourceId");
- break;
- case "link_num_reviews":
- $ret = $this->ReviewCount();
- break;
- case "link_rating_txt":
- return RatingText($this->Get("CachedRating"));
- break;
- default:
- $ret= "Undefined:$tag";
- break;
- }
- return $ret;
- }
-
- function isPending()
- {
- return $this->Get('Status') == -2 || $this->Get('Status') == 2;
- }
-
-} /*clsLink*/
-
-class _clsLinkList extends clsCatItemList
-{
- function _clsLinkList()
- {
- global $l_var_list,$objSession;
-
- $this->clsCatItemList();
-// $this->clsItemCollection(); //call the parent constructor
- $this->Prefix = 'l';
- $this->classname = "clsLink"; //class type for items
- $this->SourceTable = GetTablePrefix()."Link";
-
- $this->PageEnvarIndex = 'p';
- $this->PerPageVar = "Perpage_Links";
- $this->PageEnvar = "l_var_list_update";
- $this->Page = (int)$l_var_list["p"];
-
- $this->AdminSearchFields = array("Name","Description","Url");
- $this->BasePermission = "LINK";
-
- $this->PerPageVarLong = "Perpage_Links";
- $this->PerPageShortVar = "Perpage_Links_Short";
- $this->AddSortField("Link_SortField","Link_SortOrder");
- $this->AddSortField("Link_SortField2","Link_SortOrder2");
-
- $this->ItemType = TYPE_LINK;
- if( $objSession->HasSystemPermission("DEBUG.ITEM") ) $this->debuglevel = 1;
- }
-
- function SqlMyItems($attribs= array())
- {
- global $objSession;
-
- // pending modified links
- $sql = 'SELECT OrgId, LinkId
- FROM '.$this->SourceTable.'
- WHERE (CreatedById = '.$objSession->Get('PortalUserId').') AND (OrgId > 0)';
-
- $pending_modified = Array();
- $original_links = Array();
- $db =& GetADODBConnection();
- $rs = $db->Execute($sql);
- while (!$rs->EOF) {
- $pending_modified[] = $rs->fields['LinkId'];
- $original_links[] = $rs->fields['OrgId'];
- $rs->MoveNext();
- }
-
- $TableName = $this->SourceTable;
- if ($pending_modified && $original_links) {
- $where = " (".$TableName.".Status > -1 OR LinkId IN (".implode(',', $pending_modified).") ) AND (LinkId NOT IN (".implode(',', $original_links).")) AND ".$TableName.".CreatedById=".$objSession->Get("PortalUserId");
- }
- else {
- $where = " (".$TableName.".Status > -1) AND ".$TableName.".CreatedById=".$objSession->Get("PortalUserId");
- }
- if(getArrayValue($attribs,'_today'))
- {
- $today = mktime(0,0,0,date("m"),date("d"),date("Y"));
- $where .= " AND ($TableName.CreatedOn>=$today)";
- }
- $CategoryTable = GetTablePrefix()."Category";
- $ml_formatter =& $this->Application->recallObject('kMultiLanguage');
- $sql = "SELECT $TableName.*,$CategoryTable.CategoryId,$CategoryTable.".$ml_formatter->LangFieldName('CachedNavbar')." AS CachedNavBar FROM $TableName ";
- $p = $this->BasePermission.".VIEW";
- $sql .= $this->GetJoinedSQL($p,null,$where); // maybe null should be replaced by some CategoryId
-
- $OrderBy = $this->QueryOrderByClause(TRUE,TRUE,TRUE);
- $sql .= " ".$OrderBy;
-
- return $sql;
- }
-
- function SetCurrentItem()
- {
- global $l_var_list;
-
- $this->CurrentItem = $l_var_list["id"];
- }
-
-
- function LoadLinks($where="",$orderClause=NULL,$JoinCats=TRUE,$SkipCount=FALSE)
- {
- global $objConfig;
-
- $this->Clear();
-
- if(!$SkipCount)
- $this->QueryItemCount=TableCount($this->SourceTable,$where,$JoinCats);
-
- return $this->Query_Link($where,$orderClause,$JoinCats);
- }
-
- function CountPending()
- {
- return TableCount($this->SourceTable,"Status=".STATUS_PENDING,0);
- }
-
- function Query_Link($whereClause,$orderByClause=NULL,$JoinCats=TRUE)
- {
- global $objSession, $Errors;
-
- if($JoinCats)
- {
- $cattable = GetTablePrefix()."CategoryItems";
- $t = $this->SourceTable;
- $CategoryTable = GetTablePrefix()."Category";
- $ml_formatter =& $this->Application->recallObject('kMultiLanguage');
- $sql = "SELECT ".$this->SourceTable.".*,$CategoryTable.CategoryId as CategoryId, ".$ml_formatter->LangFieldName('CachedNavbar')." AS CachedNavBar FROM $t INNER JOIN $cattable ON $cattable.ItemResourceId=$t.ResourceId ";
- $sql .= "INNER JOIN $CategoryTable ON ($CategoryTable.CategoryId=$cattable.CategoryId)";
- }
- else
- $sql = "SELECT * FROM ". $this->SourceTable;
- if(trim($whereClause)!="")
- {
- if(isset($whereClause))
- $sql = sprintf('%s WHERE %s',$sql,$whereClause);
- }
- if (trim($orderByClause)!="")
- {
- if(isset($orderByClause))
- $sql = sprintf('%s ORDER BY %s',$sql,$orderByClause);
- }
-
- if($objSession->HasSystemPermission("DEBUG.LIST"))
- echo $sql."<br>\n";
- return $this->Query_Item($sql,null);
- }
-
- function SaveNewPage()
- {
- global $l_var_list;
- $l_var_list["p"] = $this->Page;
- }
-
- function ExpireItems()
- {
- $now = adodb_date("U");
- $sql = "UPDATE ".$this->SourceTable." SET Status=0 WHERE Expire<$now AND Expire != 0 AND Status=1";
- $this->adodbConnection->Execute($sql);
- DeleteModuleTagCache('inlink');
- }
-
- function Delete_Item($Id, $DetectCategories = false)
- {
- $l = $this->GetItem($Id);
- $link_id = $l->Get('LinkId');
-
- $sql = "DELETE FROM ".GetTablePrefix()."LinkValidation WHERE LinkId = $link_id";
- $this->adodbConnection->Execute($sql);
-
- DeleteModuleTagCache('inlink');
-
- return parent::Delete_Item($Id, $DetectCategories);
- }
-
- function &Add_Link($CategoryId, $Name, $Description, $Url, $CreatedOn, $Expire, $Status, $EditorsPick, $NewItem,
- $PopItem, $HotItem, $CreatedById, $Rating=0, $Votes=0, $Hits=0, $Priority=0, $auto_filename = 1, $filename = '')
- {
- global $objSession, $objConfig;
-
- $l = new clsLink(NULL);
-// $filename = $l->StripDisallowed($filename);
- $l->BasePermission=$this->BasePermission;
- $l->tablename = $this->SourceTable;
- $l->Set(Array( 'Name', 'Description', 'Url', 'CreatedOn', 'Expire', 'Status', 'EditorsPick', 'NewItem',
- 'PopItem', 'HotItem', 'CreatedById', 'CachedRating', 'CachedVotesQty', 'Hits', 'Priority',
- 'AutomaticFilename'),
-
- Array( $Name, $Description, $Url, $CreatedOn, $Expire, $Status, $EditorsPick, $NewItem,
- $PopItem, $HotItem, $CreatedById, $Rating, $Votes, $Hits, $Priority, $auto_filename) );
-
- $l->Create($Pending);
- $ci_table = $objSession->GetEditTable( GetTablePrefix().'CategoryItems' );
- if ($l->TableExists($ci_table)) $l->AddToCategory($CategoryId, $ci_table, 1);
-
- $l->SendUserEventMail("LINK.ADD", $CreatedById);
- $l->SendAdminEventMail("LINK.ADD");
- return $l;
- }
-
-
- function &Edit_Link($LinkId, $Name, $Description, $Url, $CreatedOn, $Expire, $Status, $EditorsPick,
- $NewItem, $PopItem, $HotItem, $Rating, $Votes, $Hits, $Priority=0, $auto_filename = 1, $filename = '')
- {
- $l = $this->GetItem($LinkId);
-// $filename = $l->StripDisallowed($filename);
- $l->BasePermission = $this->BasePermission;
- if ( !$CreatedOn ) $CreatedOn = $l->Get('CreatedOn');
- if ( !is_numeric($Status) ) $Status = $l->Get('Status');
-
- if( !is_numeric($EditorsPick) ) $EditorsPick = $l->Get('EditorsPick');
-
- $l->Set(Array( 'Name', 'Description', 'Url', 'CreatedOn', 'Expire', 'Status', 'EditorsPick', 'NewItem', 'PopItem',
- 'HotItem', 'CachedRating', 'CachedVotesQty', 'Hits', 'Priority', 'AutomaticFilename'),
- Array( $Name, $Description, $Url, $CreatedOn, $Expire, $Status, $EditorsPick, $NewItem, $PopItem,
- $HotItem, $Rating, $Votes, $Hits, $Priority, $auto_filename) );
-
- $l->Update();
- $l->SendUserEventMail("LINK.MODIFY", $l->Get("ModifiedById"));
- $l->SendAdminEventMail("LINK.MODIFY");
- return $l;
- }
-
- function LoadListCategory($attribs=array())
- {
- global $objCatList, $objSession, $objConfig, $content_set;
-
- $this->Clear();
-
- $catid = (int)getArrayValue($attribs,'_catid');
- if(!$catid)
- $catid = $objCatList->CurrentCategoryID();
-
- if(!$catid && (int)$attribs["_useroot"])
- $catid = (int)$objConfig->Get("Link_Root");
-
- if(!$objSession->HasCatPermission("LINK.VIEW", $catid))
- {
- $content_set = 0;
- $this->QueryItemCount = 0;
- return 0;
- }
-
- if($attribs["_shortlist"]) {
- if ($objConfig->Get("Perpage_Links_Short") > 0) {
- $this->PerPageVar = "Perpage_Links_Short";
- }
- else {
- $this->PerPageVar = "Perpage_Links";
- }
- }
-
- $CatTable = GetTablePrefix()."CategoryItems";
- $t = $this->SourceTable;
- $sql = "SELECT *,CategoryId FROM $t INNER JOIN $CatTable ON $CatTable.ItemResourceId=$t.ResourceId ";
-
- $where = "CategoryId=".$catid." AND Status=1";
- $sql .= "WHERE $where";
-
- $OrderBy = $this->QueryOrderByClause($objConfig->Get("Link_ShowPick"), TRUE, TRUE);
- $sql .= " ".$OrderBy;
-
- $this->QueryItemCount = TableCount($this->SourceTable,$where,TRUE);
-
- if($this->QueryItemCount>0)
- {
- return $this->Query_Item($sql);
- }
- else
- return FALSE;
- }
-
- function GetNewValue($CatId=NULL)
- {
- global $NewValues,$objConfig, $objSystemCache;
-
- if(is_numeric($NewValues["link"]))
- {
- return $NewValues["link"];
- }
- else
- {
- $CachedValue = $objSystemCache->GetValue("LinkNewValue","inlink","");
- if(strlen($CachedValue))
- {
- $NewValues["link"] = $CachedValue;
- return $CachedValue;
- }
-
- $ado = &GetADODBConnection();
- if ($CategoryId)
- {
- $days = (int)$objConfig->Get("Link_NewDays");
- $cutoffdate = adodb_mktime(0,0,0,adodb_date("m"),adodb_date("d")-$days,adodb_date("Y"));
- $sql = "SELECT CreatedOn FROM ".GetTablePrefix()."Link INNER JOIN ".GetTablePrefix()."CategoryItems AS cat ON (".GetTablePrefix()."Link.ResourceId = cat.ItemResourceId) WHERE cat.CategoryId=$CategoryId AND CreatedOn>=$cutoffdate ORDER BY CreatedOn DESC ";
- }
- else
- {
- $days = (int)$objConfig->Get("Link_NewDays");
- $cutoffdate = adodb_mktime(0,0,0,adodb_date("m"),adodb_date("d")-$days,adodb_date("Y"));
- $sql = "SELECT CreatedOn FROM ".GetTablePrefix()."Link WHERE CreatedOn>=$cutoffdate ORDER BY CreatedOn DESC ";
- }
- $rs = $ado->Execute($sql);
-
- $NewValues["link"] = adodb_mktime(0,0,0,adodb_date("m"),adodb_date("d")-$days,adodb_date("Y"));
-
- while($rs && !$rs->EOF)
- {
- $NewValues["link"] = $rs->fields["CreatedOn"];
- $rs->MoveNext();
- }
- return $NewValues["link"];
- }
- }
-
- function GetHotValue()
- {
- global $objConfig;
- static $hot_val = null;
-
- if (!isset($hot_val)) {
- $sql = 'SELECT Hits
- FROM '.TABLE_PREFIX.'Link
- ORDER BY Hits DESC LIMIT 0,'.$objConfig->Get('Link_MaxHotNumber');
- $hits = $this->Conn->GetCol($sql);
-
- $hot_val = 0;
- foreach ($hits as $hit_value) {
- if ($hit_value > 0) {
- $hot_val = $hit_value;
- }
- }
- }
- return $hot_val;
- }
-
- function GetPopValue()
- {
- global $PopValues,$objConfig, $objSystemCache;
-
- if(is_numeric($PopValues["link"]) && $PopValues["link"] > 0)
- {
- return $PopValues["link"];
- }
- else
- {
- $CachedValue = $objSystemCache->GetValue('LinkPopValue','inlink','');
- if(strlen($CachedValue) && $CachedValue > 0)
- {
- $PopValues['link'] = $CachedValue;
- return $CachedValue;
- }
- else
- {
- $PopValues['link'] = $objConfig->Get('Link_MinPopRating');
- }
- /*$ado = &GetADODBConnection();
- $sql = "SELECT CachedRating FROM ".GetTablePrefix()."Link WHERE CachedRating >= ".(int)$objConfig->Get("Link_MinPopRating")." ORDER BY Hits DESC";
-
- $rs = $ado->Execute($sql);
- $PopValues["link"] = 0;
- while($rs && !$rs->EOF)
- {
- //echo $rs->fields["CachedRating"]."<br>";
- $PopValues["link"] = $rs->fields["CachedRating"]; // this works fine? next value overwrites previous
- $rs->MoveNext();
- }*/
- $objSystemCache->EditCacheItem('LinkPopValue',$PopValues['link'],'inlink',adodb_mktime()+3600,'');
- //echo "PopValues: ".$PopValues["link"]."<br>";
- return $PopValues['link'];
- }
- }
-} /*clsLinkList*/
-
-?>
Property changes on: trunk/in-link/link.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.53
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-link/action.php
===================================================================
--- trunk/in-link/action.php (revision 12828)
+++ trunk/in-link/action.php (nonexistent)
@@ -1,556 +0,0 @@
-<?php
- $ro_perm = $objSession->HasSystemPermission("SYSTEM_ACCESS.READONLY");
- require_login( !admin_login() && $Action, 'expired=1', true );
-
- // permission checking: begin
- $action_mapping = Array(
- 'l_link_delete' => 'LINK.OWNER.DELETE|LINK.DELETE',
- 'l_link_add' => 'LINK.ADD',
- 'l_edit_link' => 'LINK.OWNER.MODIFY|LINK.MODIFY',
- 'l_link_move_up' => 'LINK.ADD|LINK.OWNER.MODIFY|LINK.MODIFY',
- 'l_link_move_down' => 'LINK.ADD|LINK.OWNER.MODIFY|LINK.MODIFY',
- 'l_link_approve' => 'LINK.ADD|LINK.OWNER.MODIFY|LINK.MODIFY',
- 'l_link_decline' => 'LINK.ADD|LINK.OWNER.MODIFY|LINK.MODIFY',
-
- );
- checkActionPermission($action_mapping, $Action);
- // permission checking: end
-
- switch($Action)
- {
- case "m_cat_delete":
- if($ro_perm) break;
- if ($CatDeleteList) {
- if (constOn('K4_LINKS')) {
- $event = new kEvent('ci:OnDeleteFromCategory');
- $event->setEventParam('item_prefix', 'l');
- $event->setEventParam('category_ids', $CatDeleteList);
- $application->HandleEvent($event);
- break;
- }
-
- $objLinkLink->BasePermission="";
- $CatList = $CatDeleteList;
- if(is_array($CatList))
- {
- for($i=0;$i<count($CatList);$i++)
- {
- $c = $CatList[$i];
- $objLinkList->ClearCategoryItems($c,"CategoryItems");
- }
- }
- else
- {
- if(is_numeric($CatList))
- {
- $objLinkList->ClearCategoryItems($CatList,"CategoryItems");
- }
- }
- $objLinkLink->BasePermission="LINK";
- if(!is_array($CatList)) $CatList=Array($CatList);
- UpdateCategoryCount("Link",$CatList, $objLinkList->GetListTypes() );
- }
- break;
- case "m_paste": /* category paste */
- if($ro_perm) break;
- if ($PastedCatIds) {
- if (constOn('K4_LINKS')) {
- $event = new kEvent('l:OnCatPaste');
- $event->setEventParam('cat_ids', $PastedCatIds);
- $application->HandleEvent($event);
- break;
- }
-
- $objLinkLink->BasePermission="";
- $cache_cat_ids=Array();
- foreach ($PastedCatIds as $SourceCat => $DestCat) {// for each pasted category paste links in it
- $cache_cat_ids[$SourceCat]=1;
- $cache_cat_ids[$DestCat]=1;
- $objLinkList->Clear();
- $objLinkList->Query_Link(GetTablePrefix()."CategoryItems.CategoryId=$SourceCat"); // get cat links
- if($objLinkList->NumItems()>0)
- {
- foreach($objLinkList->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);
- }
- }
- }
- $objLinkLink->BasePermission="LINK";
- UpdateCategoryCount("Link", array_keys($cache_cat_ids), $objLinkList->GetListTypes());
- }
- break;
-
- // Used from JS
- case "link_paste":
- if ($ro_perm) break;
-
- if (constOn('K4_LINKS')) {
- $event = new kEvent('l:OnPaste');
- $application->HandleEvent($event);
- }
- elseif($objLinkList->ItemsOnClipboard()>0)
- {
- $objLinkList->PasteFromClipboard($objCatList->CurrentCategoryID(),"Name");
- UpdateCategoryCount('Link', 0);
- }
- break;
-
- case "l_add_category":
- $objEditItems = new clsLinkList();
- $objEditItems->SourceTable = $objSession->GetEditTable("Link");
- $r = $_POST["ResourceId"];
- $l = $objEditItems->GetItemByField("ResourceId",$_POST["ResourceId"]);
- if(is_object($l))
- {
- $table = $objSession->GetEditTable("CategoryItems");
- $CatList = explode(",",$_POST["CatList"]);
-
- // Get List of currect categories link is in
- $link_cats = $l->CategoryMemberList($table);
- $link_cats_arr = explode(",", $link_cats);
- $objSession->SetVariable("HasChanges", 1);
- if (count($CatList))
- {
- for($i=0;$i<count($CatList);$i++)
- {
- if($CatList[$i])
- {
- $c = $objCatList->GetByResource($CatList[$i]);
- $cat = $c->Get("CategoryId");
- if(($cat>0) && !in_array($cat, $link_cats_arr))
- {
- $l->AddToCategory($cat,$table);
- }
- }
- }
- }
- }
- break;
- case "l_cat_delete":
- $objSession->SetVariable("HasChanges", 1);
- $objEditItems = new clsLinkList();
- $objEditItems->SourceTable = $objSession->GetEditTable("Link");
- $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";
-// echo $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";
- $ado->Execute($sql);
- $CatCount--;
- }
- }
- }
-
- for($x=0;$x<count($CatList);$x++)
- {
- $cat = $CatList[$x];
- if(is_numeric($cat))
- {
- if($cat==$Primary && $CatCount>1)
- {
- $sql = "DELETE FROM $table WHERE CategoryId=$cat AND ItemResourceId=$r";
- $ado->Execute($sql);
- $CatCount--;
- }
- }
- }
- }
- }
- break;
-
- case 'l_primary_cat':
- // change primary category of the link
- $objEditItems = new clsLinkList();
- $objEditItems->SourceTable = $objSession->GetEditTable("Link");
- $link = $objEditItems->GetItemByField('ResourceId', $_REQUEST['ResourceId']);
- if( is_object($link) )
- {
- $new_cat = array_shift($_REQUEST['itemlist']);
- $ci_table = $objSession->GetEditTable('CategoryItems');
- $link->SetPrimaryCategory($new_cat, $ci_table);
- }
- break;
-
- case "l_link_delete":
- if($ro_perm) break;
- if (count($_POST["linklist"]) >0)
- {
- $objLinkList->FlushCache($_POST["linklist"]);
- foreach($_POST["linklist"] as $linkid)
- {
- $objLinkList->Delete_Item($linkid);
- }
- }
- break;
-
- case 'l_link_add':
- $application =& kApplication::Instance();
- $application->SetVar('l_mode', 't');
-
- if ($_POST["LinkEditStatus"] != 2) {
- $CreatedOn = DateTimestamp($_POST['link_date'],GetDateFormat(0, true));
- $CreatedOn += adodb_date('H')*3600 + adodb_date('i')*60 + adodb_date('s');
-
- if (strlen($_POST["link_expire"]) && ((int)$_POST["link_expire"]>0)) {
- $Expire = DateTimestamp($_POST["link_expire"],GetDateFormat(0, true));
- }
- else {
- $Expire = 0;
- }
-
- $link_pick = (int)$_POST["link_pick"];
-
- $Status = (int)$_POST["status"];
- $Hot=(int)$_POST["itemhot"];
- $Pop = (int)$_POST["itempop"];
- $New = (int)$_POST["itemnew"];
-
- $html = (int)$_POST["html_enable"];
- $Name = inp_escape($_POST["link_name"],$html);
- $Desc = inp_escape($_POST["link_desc"],$html);
- $Priority = (int)$_POST["link_priority"];
-
- //echo "Category:".$objCatList->CurrentCategoryID()."<br>";
- $objEditItems = new clsLinkList();
- $objEditItems->SourceTable = $objSession->GetEditTable("Link");
-
- if (strlen($_POST["link_owner"])) {
- if ($_POST["link_owner"] == "root") {
- $CreatedById = -1;
- }
- else {
- $u = $objUsers->GetItemByField("Login",$_POST["link_owner"]);
- if (is_object($u)) {
- $CreatedById = $u->Get("PortalUserId");
- }
- else {
- $CreatedById = $objSession->Get("PortalUserId");
- }
- }
- }
- else {
- $CreatedById = $objSession->Get("PortalUserId");
- }
-
- $posted_hits = $_POST['link_hits_show'];
-
- $posted_hits_arr = explode('.', $_POST['link_hits']);
-
-
- $save_hits = $_POST['link_hits'];
- if ($posted_hits_arr[0] != $posted_hits) {
- $save_hits = $posted_hits;
- }
-
- $l = $objEditItems->Add_Link($objCatList->CurrentCategoryID(), $Name, $Desc, $_POST["link_url"], $CreatedOn, $Expire, $Status, $link_pick, $New, $Pop, $Hot, $CreatedById, (int)$_POST["link_rating"], (int)$_POST["link_votes"],$save_hits, $Priority, GetVar('auto_filename'), GetVar('filename') );
- saveCustomFields('l', $l->Get('ResourceId'), 4);
- }
- break;
-
- case 'l_edit_link':
- $application =& kApplication::Instance();
- $application->SetVar('l_mode', 't');
-
- if ($_POST["LinkEditStatus"] != 2) {
- $CreatedOn = DateTimestamp($_POST["link_date"],GetDateFormat(0, true));
-
- if (strlen($_POST["link_expire"]) && ((int)$_POST["link_expire"]>0)) {
- $Expire = DateTimestamp($_POST["link_expire"],GetDateFormat(0, true));
- }
- else {
- $Expire = 0;
- }
-
- $Status = (int)$_POST["status"];
- $Hot=(int)$_POST["itemhot"];
- $Pop = (int)$_POST["itempop"];
- $New = (int)$_POST["itemnew"];
- $link_pick = (int)$_POST["link_pick"];
-
- $html = (int)$_POST["html_enable"];
- $Name = inp_escape($_POST["link_name"],$html);
- $Desc = inp_escape($_POST["link_desc"],$html);
- $Priority = (int)$_POST["link_priority"];
-
- if (strlen($_POST["link_owner"])) {
- if ($_POST["link_owner"] == "root") {
- $CreatedById = -1;
- }
- else {
- $u = $objUsers->GetItemByField("Login",$_POST["link_owner"]);
- if (is_object($u)) {
- $CreatedById = $u->Get("PortalUserId");
- }
- else {
- $CreatedById = $objSession->Get("PortalUserId");
- }
- }
- }
- else {
- $CreatedById = $objSession->Get("PortalUserId");
- }
-
- $posted_hits = $_POST['link_hits_show'];
-
- $posted_hits_arr = explode('.', $_POST['link_hits']);
-
-
- $save_hits = $_POST['link_hits'];
- if ($posted_hits_arr[0] != $posted_hits) {
- $save_hits = $posted_hits;
- }
-
- $objEditItems = new clsLinkList();
- $objEditItems->SourceTable = $objSession->GetEditTable("Link");
- $l = $objEditItems->Edit_Link($_POST["LinkId"],
- inp_escape($Name, $html),
- inp_escape($Desc, $html),
- inp_escape($_POST["link_url"], $html),
- $CreatedOn, $Expire, $Status, $link_pick, $New, $Pop, $Hot,
- $_POST["link_rating"],(int)$_POST["link_votes"],
- $save_hits,$Priority, GetVar('auto_filename'), GetVar('filename') );
- $l->Set("CreatedById",$CreatedById);
- $l->Update();
- saveCustomFields('l', $l->Get('ResourceId'), 4);
- }
- break;
-
- case "l_link_cut":
- if($ro_perm) break;
- if(isset($_POST["linklist"]))
- {
- $objLinkList->CopyToClipboard("CUT","ResourceId",$_POST["linklist"]);
- // UpdateCategoryCount("Link");
- }
- break;
-
- case "l_link_copy":
- if($ro_perm) break;
- if(isset($_POST["linklist"]))
- {
- $objLinkList->CopyToClipboard("COPY","ResourceId",$_POST["linklist"]);
- }
- break;
-
- case "l_link_move_up":
- if($ro_perm) break;
- if(isset($_POST["linklist"]))
- foreach($_POST["linklist"] as $linkid)
- {
- $link = $objLinkList->GetItem($linkid);
- $link->MoveUp();
- }
- break;
-
- case "l_link_move_down":
- if($ro_perm) break;
- if (isset($_POST["linklist"]))
- { $linklist=array_reverse($_POST["linklist"]);
- foreach($linklist as $linkid)
- {
- $link = $objLinkList->GetItem($linkid);
- $link->MoveDown();
- }
- }
- break;
-
- case "l_link_approve":
- if($ro_perm) break;
- if (isset($_POST["linklist"]))
- {
- $cat_ids=Array();
- $db =& GetADODBConnection();
- $update_sql = 'UPDATE '.GetTablePrefix().'Listings SET ItemResourceId = %s WHERE ItemResourceId = %s';
- foreach($_POST["linklist"] as $id)
- {
- $l = $objLinkList->GetItem($id);
- if($l->Get("Status")==-2)
- {
- $OrgId = $l->Get("OrgId");
- if($OrgId)
- {
- $org = $objLinkList->GetItem($OrgId);
- $OldResId = $org->Get("ResourceId");
- $NewResId = $l->Get("ResourceId");
-
- if ($OldResId) {
- $db->Execute( sprintf($update_sql, $NewResId, $OldResId) );
- }
- elseif(IsDebugMode()) {
-
- echo 'Invalid ResourceID of Original Link: ';
- print_pre($org->Data);
- }
-
-
- $ExpireInterval = $objConfig->Get("link_ExpireMod_Value") * $objConfig->Get("link_ExpireMod_Interval");
- if($ExpireInterval>0)
- $l->Set("Expire",adodb_date("U")+$ExpireInterval);
- $l->Set("OrgId",0);
- $l->Approve();
- $cat_ids[]=$org->GetPrimaryCategory();
- $org->DeleteCustomData();
- $org->Delete(TRUE);
- }
- /*else
- {
- $ExpireInterval = $objConfig->Get("link_Expire_Value") * $objConfig->Get("link_Expire_Interval");
- if($ExpireInterval>0)
- $link->Set("Expire",adodb_date("U")+$ExpireInterval);
- }*/
- }
- else
- {
- $l->Approve();
- $cat_ids[]=$l->GetPrimaryCategory();
- }
- }
- if($cat_ids) UpdateCategoryCount("Link",$cat_ids,$objLinkList->GetListTypes() );
- }
- break;
-
- case "l_link_decline":
- if($ro_perm) break;
- if (isset($_POST["linklist"]))
- {
- $cat_ids = Array();
- foreach($_POST["linklist"] as $id)
- {
- $l = $objLinkList->GetItem($id);
- $cat_ids[] = $l->GetPrimaryCategory();
- if($l->Get("Status")==-2)
- {
- $l->Delete();
- }
- else
- {
- $l->Deny();
- }
-
- }
- UpdateCategoryCount("Link", $cat_ids, $objLinkList->GetListTypes());
- }
- break;
-
- case "l_deny_val_link": // deny
- if($ro_perm) break;
- if (isset($_POST["itemlist"]))
- {
- $cat_ids = Array();
- foreach($_POST["itemlist"] as $id)
- {
- $l = $objLinkList->GetItem($id);
- $cat_ids[] = $l->GetPrimaryCategory();
- $l->Deny();
- }
- UpdateCategoryCount("Link", $cat_ids, $objLinkList->GetListTypes());
- }
-
- break;
-
- case "l_approve_val_link": // approve
- if($ro_perm) break;
- if (isset($_POST["itemlist"]))
- {
- $cat_ids = Array();
- foreach($_POST["itemlist"] as $id)
- {
- $l = $objLinkList->GetItem($id);
- $cat_ids[] = $l->GetPrimaryCategory();
- $l->Approve();
- }
- UpdateCategoryCount("Link", $cat_ids, $objLinkList->GetListTypes());
- }
- break;
-
- case "l_delete_val_link": // delete
- if($ro_perm) break;
- if (count($_POST["itemlist"]) >0)
- {
- $cat_ids = Array();
- foreach($_POST["itemlist"] as $id)
- {
- $l = $objLinkList->GetItem($id);
- $cat_ids[] = $l->GetPrimaryCategory();
- $objLinkList->Delete_Item($id, true);
- }
- }
- UpdateCategoryCount("Link", $cat_ids, $objLinkList->GetListTypes());
- break;
-
- case "l_reset_val_status_sel": // reset validation status
- if($ro_perm) break;
- if (count($_POST["itemlist"]) >0)
- {
- foreach($_POST["itemlist"] as $id)
- $linksToReset.= $id.", ";
-
- $linksToReset = ereg_replace(", $", "", $linksToReset); if (strlen($linksToReset))
- {
- $sql = "DELETE FROM ".GetTablePrefix()."LinkValidation WHERE LinkId IN ($linksToReset)";
- $conn1 = &GetADODBConnection();
- $conn1->Execute($sql);
- }
- }
- break;
-
- }
-
-
-if( ! $objSession->HasSystemPermission("SYSTEM_ACCESS.READONLY") )
-{
- if( GetVar('LinkEditStatus') == 1 )
- {
- $link_ids = $objLinkList->CopyFromEditTable("LinkId");
- if ($link_ids) {
- $objCustomDataList->CopyFromEditTable('l');
- }
-
- $objImages = new clsImageList();
- $objImages->CopyFromEditTable("ImageId");
- $objLinkList->Clear();
-
- $objLinkList->FlushCache($link_ids);
- }
-
- if( GetVar('LinkEditStatus') == 2 )
- {
- $objLinkList->PurgeEditTable("LinkId");
- $objLinkList->PurgeCatListEditTable();
-
- $objReviewList = new clsItemReviewList();
- $objReviewList->PurgeEditTable();
-
- $objImages = new clsImageList();
- $objImages->PurgeEditTable("ImageId");
- $objCustomDataList->PurgeEditTable('l');
- $objLinkList->Clear();
- }
-}
-?>
Property changes on: trunk/in-link/action.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.41
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-link/frontaction.php
===================================================================
--- trunk/in-link/frontaction.php (revision 12828)
+++ trunk/in-link/frontaction.php (nonexistent)
@@ -1,612 +0,0 @@
-<?php
-
-switch($Action)
-{
- case "l_add_favorite":
- $id = $l_var_list["id"];
- $userid = $objSession->Get("PortalUserId");
- $link =& $objLinkList->GetItem($id);
- $link->AddFavorite($userid);
- $cat_id = $link->GetPrimaryCategory();
- UpdateCategoryCount("Link", $cat_id, $objLinkList->CacheListType("favorites"));
- break;
-
- case "l_del_favorite":
- $id = $l_var_list["id"];
- $userid = $objSession->Get("PortalUserId");
- $link =& $objLinkList->GetItem($id);
- $link->DeleteFavorite($userid);
- $cat_id = $link->GetPrimaryCategory();
- UpdateCategoryCount("Link", $cat_id, $objLinkList->CacheListType("favorites"));
- break;
-
- case "l_add_review":
- //phpinfo(INFO_VARIABLES);
- $perm = 0;
- $CategoryId=$objCatList->CurrentCategoryID();
- if ($objSession->HasCatPermission("LINK.REVIEW.PENDING"))
- $perm = 2;
- if ($objSession->HasCatPermission("LINK.REVIEW"))
- $perm = 1;
- //echo "Perm: $perm <br>\n";
- if ($perm == 0)
- {
- $MissingCount++;
- $FormError["l_addreview"]["review"] = language("lu_ferror_no_access");
- }
- else
- {
- $id = $l_var_list["id"];
- $link =& $objLinkList->GetItem($id);
-
- $value = $objSession->InSpamControl($link->Get("ResourceId"),"Review");
-
- //if($link->ReviewIPExists($_SERVER["REMOTE_ADDR"]))
- if ($value)
- {
- $MissingCount++;
- $FormError["l_addreview"]["review"] = language("lu_ferror_review_duplicate");
- }
- else
- {
- $CreatedOn = adodb_date("U");
- $ReviewText = inp_striptags($_POST["review"]);
- $id = $l_var_list["id"];
- $userid = $objSession->Get("PortalUserId");
-
- $ValName = "link_ReviewDelay_Value";
- $IntName = "link_ReviewDelay_Interval";
-
- $exp_secs = $objConfig->Get($ValName) * $objConfig->Get($IntName);
- $objSession->AddToSpamControl($link->Get("ResourceId"),$exp_secs,"Review");
-
- $link->AddReview($userid,$ReviewText,($perm==2),$_SERVER["REMOTE_ADDR"]);
- if(strlen($_GET["Confirm"]))
- {
- $var_list["t"] = $_GET["Confirm"];
- }
- else
- $var_list["t"] = $_GET["DestTemplate"];
- }
- }
- break;
-
- case "l_rate_link":
- //phpinfo();
- if ($objSession->HasCatPermission("LINK.RATE"))
- $perm = 1;
- if ($perm == 0)
- {
- $MissingCount++;
- $FormError["l_rate"]["review"] = language("lu_ferror_no_access");
- }
- else
- {
- $MissingCount = SetMissingDataErrors("l_rate");
- $id = $l_var_list["id"];
- $link =& $objLinkList->GetItem($id);
-
- $value = $objSession->InSpamControl($link->Get("ResourceId"),"Rating");
-
- if($value)
- {
- $MissingCount++;
- $FormError["l_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 = "link_RatingDelay_Value";
- $IntName = "link_RatingDelay_Interval";
-
- $exp_secs = $objConfig->Get($ValName) * $objConfig->Get($IntName);
- $objSession->AddToSpamControl($link->Get("ResourceId"),$exp_secs,"Rating");
- $vote = $_POST["rating"];
- $link->SubmitVote($vote,"");
- if(strlen($_GET["Confirm"]))
- {
- $var_list["t"] = $_GET["Confirm"];
- }
- else
- $var_list["t"] = $_GET["DestTemplate"];
- }
- }
- break;
- case "l_sort_links":
- if(is_numeric($_POST["Perpage_Links"]))
- {
- $objSession->SetPersistantVariable("Perpage_Links",$_POST["Perpage_Links"]);
- }
- else
- {
- $objSession->SetPersistantVariable("Perpage_Links", $objConfig->Get("Perpage_Links"));
- }
-
- if (strlen($_POST["Link_SortField"]))
- {
- $objSession->SetPersistantVariable("Link_SortField",$_POST["Link_SortField"]);
- $objSession->SetPersistantVariable("Link_SortField2","");
- }
- if (strlen($_POST["Link_SortOrder"]))
- {
- $objSession->SetPersistantVariable("Link_SortOrder",$_POST["Link_SortOrder"]);
- $objSession->SetPersistantVariable("Link_SortOrder2","");
- }
-
- $l_var_list["p"] = 1;
- $objLinkList->Page = 1;
-
- DeleteModuleTagCache('inlink');
- break;
-
- case "l_add_link_confirm":
- if(GetVar('item_action')) {
- $item_action = GetVar('item_action');
- if (is_array($item_action)) {
- list($id, $label) = each($item_action);
-
- }
-
- if ( isset($item_action['enter']) || (isset($item_action['new']) && $_POST['new_suggest_cat']==0) ) {
- // enter into selected category
- if ($_POST['new_suggest_cat'] > 0) {
- // deeplevel++
- $_POST['suggest_cat_id'] = $_POST['new_suggest_cat'];
- }
- else {
- // deeplevel--
- $db =& GetADODBConnection();
- $_POST['suggest_cat_id'] = $db->GetOne('SELECT ParentId FROM '.$objCatList->SourceTable.' WHERE CategoryId='.$_POST['suggest_cat_id']);
- }
-
- }
- elseif ( isset($item_action['new']) ) {
- // add selected category to suggested list
- if ($_POST['new_suggest_cat'] != $objCatList->CurrentCategoryID()) {
- $new_cat_id = $_POST['new_suggest_cat'];
- $_POST['cat_ids'][$new_cat_id] = $new_cat_id;
- }
- }
- elseif ($id) {
- unset($_POST['cat_ids'][$id]);
- }
- break;
- }
-
- $perm = 0;
- $CategoryId = $objCatList->CurrentCategoryID();
- if ($objSession->HasCatPermission('LINK.ADD.PENDING')) {
- $perm = 2;
- }
-
- if ($objSession->HasCatPermission('LINK.ADD')) {
- $perm = 1;
- }
-
- if ($perm == 0) {
- $MissingCount++;
- $FormError["l_addlink"]["name"] = language("lu_ferror_no_access");
- }
- else {
- $CreatedOn = adodb_mktime();
- $name = inp_striptags($_POST["name"]);
- $desc = inp_striptags($_POST["description"]);
- $url = inp_striptags($_POST["url"]);
- $MissingCount = SetMissingDataErrors("l_addlink");
- 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["l_addlink"][$field] = language("lu_ferror_wrongtype");
- }
- }
- }
- }
-
- $maxsize = (int)$_POST["maxsize"][$field];
- if ($maxsize > 0 && $allowed && $file["size"] > $maxsize) {
- $allowed = false;
- $MissingCount++;
- $FormError["l_addlink"][$field] = language("lu_ferror_toolarge");
- }
- }
- }
-
- if ($MissingCount == 0) {
- $ExpireInterval = $objConfig->Get("link_Expire_Interval") * $objConfig->Get("link_Expire_Value");
- $Expire = $ExpireInterval > 0 && $perm == 1 ? $CreatedOn + $ExpireInterval : 0;
-
- $link = $objLinkList->Add_Link( $CategoryId,$name,$desc, $url, $CreatedOn, $Expire, $perm,
- 0,2,2,2,$objSession->Get("PortalUserId"),0,0,0);
-
- saveCustomFields('l', $link->Get('ResourceId'), $link->type);
- $link->AddToCategory($CategoryId);
-
- // suggest to multiple cats: begin
- if (getArrayValue($_POST,'cat_ids')) {
- foreach ($_POST['cat_ids'] as $suggest_cat_id) {
- $link->AddToCategory($suggest_cat_id);
- }
- }
- // suggest to multiple cats: end
-
- if (!GetVar('cat_ids')) {
- SetVar('cat_ids', Array($CategoryId) );
- }
- else {
- SetVar('cat_ids', array_merge(Array($CategoryId), GetVar('cat_ids')) );
- }
-
- UpdateCategoryCount("Link",$_POST['cat_ids'],'_');
- UpdateCategoryCount("Link",$_POST['cat_ids'],$objLinkList->CacheListType("myitems"));
-
- $LinkResourceId = $link->Get("ResourceId");
- /* 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($LinkResourceId,$imgname);
- if (!is_object($img)) {
- $img =& $objImageList->Add($imgname, "", $LinkResourceId,
- $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();
- }
- }
- }
-
- $var_list["t"] = $_GET[ strlen($_GET["Confirm"]) ? 'Confirm' : 'DestTemplate'];
-
- if( GetVar('listing_type') )
- {
- $application =& kApplication::Instance();
- $application->SetVar('success_template', $var_list['t']);
-
- $link_fields = Array( $link->UniqueId() => Array('ListingTypeId' => GetVar('listing_type') ) );
- $application->SetVar('l', $link_fields);
- $enhancement_event = new kEvent('ls:OnRequestEnhancement');
- $application->HandleEvent($enhancement_event);
- if (($enhancement_event->status == erSUCCESS) && strlen($enhancement_event->redirect) ) {
- $application->Redirect($enhancement_event->redirect, Array('DestTemplate' => $_GET['DestTemplate']) );
- }
- }
-
-
- }
- }
- break;
-
- case "l_edit_link":
- $perm = 0;
- $CategoryId=$objCatList->CurrentCategoryID();
- $OrgLink = $objLinkList->GetItem($l_var_list["id"]);
- $PermCat = $OrgLink->GetPrimaryCategory();
- if ($objSession->HasCatPermission("LINK.MODIFY.PENDING",$PermCat))
- $perm = 2;
- if ($objSession->HasCatPermission("LINK.MODIFY",$PermCat))
- $perm = 1;
-
- if($objSession->Get("PortalUserId")==$OrgLink->Get("CreatedById") && $perm != 1)
- {
- if ($objSession->HasCatPermission("LINK.OWNER.MODIFY.PENDING",$PermCat))
- $perm = 2;
- if ($objSession->HasCatPermission("LINK.OWNER.MODIFY",$PermCat))
- $perm = 1;
- }
-
- $link = $OrgLink;
- if($perm == 2 && !$link->Get('OrgId'))
- {
- $CatList = $link->CategoryMemberList();
- $PrimaryCat = $link->GetPrimaryCategory();
- $link->Dirty();
- $link->Set("OrgId",$OrgLink->Get("LinkId"));
- $link->UnsetIdField();
- //$link->Set("ResourceId",0);
- $link->Set("Status",-2);
- //$link->Create();
- //echo "ok";
- $link->CopyToNewResource($PrimaryCat);
- //$objCustomFields = new clsCustomFieldList(1);
- //$objCustomFields->CopyResource($OrgLink->Get("ResourceId"),$link->Get("ResourceId"),$link->Prefix);
- //unset($objCustomFields);
- $link->AddToCategory($PrimaryCat, '', 1);
- if (!is_array($CatList)) {
- $CatList = explode(',', $CatList);
- }
-
- foreach ($CatList as $category_id) {
- if ($category_id == $PrimaryCat) continue;
- $link->AddToCategory($category_id);
- }
- }
- //echo "perm: $perm";
- if ($perm == 0)
- {
- $MissingCount++;
- $FormError["editlink"]["name"] = language("lu_ferror_no_access");
- }
- else
- {
- $name = $_POST["name"];
- $desc = $_POST["description"];
- $url = $_POST["url"];
- $MissingCount = SetMissingDataErrors("editlink");
- 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["editlink"][$field] = language("lu_ferror_wrongtype");
- }
- }
- }
- }
- $maxsize = (int)$_POST["maxsize"][$field];
- if($maxsize>0 && $allowed && $file["size"]>$maxsize)
- {
- $allowed = FALSE;
- $MissingCount++;
- $FormError["editlink"][$field] = language("lu_ferror_toolarge");
- }
- }
- }
- if($MissingCount==0)
- {
- $link->Set("Name",$name);
- $link->Set("Url",$url);
- $link->Set("Description",$desc);
- $ExpireInterval = $objConfig->Get("link_ExpireMod_Value") * $objConfig->Get("link_ExpireMod_Interval");
- if($ExpireInterval>0)
- $link->Set("Expire",adodb_date("U")+$ExpireInterval);
- $link->Update();
- if($perm==1)
- {
- $link->SendUserEventMail("LINK.MODIFY",$link->Get("ModifiedById"));
- $link->SendAdminEventMail("LINK.MODIFY");
- }
- else
- {
- $link->SendUserEventMail("LINK.MODIFY.PENDING",$link->Get("ModifiedById"));
- $link->SendAdminEventMail("LINK.MODIFY.PENDING");
- }
- saveCustomFields('l', $link->Get('ResourceId'), $link->type);
-
- /* handle any image uploads */
-
- $LinkResourceId= $link->Get("ResourceId");
- 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($LinkResourceId,$imgname);
- if(!is_object($img))
- {
- $img =& $objImageList->Add($imgname, "", $LinkResourceId,
- $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();
- }
- }
- }
-
- $application->SetVar('l_id', '');
- if(strlen($_GET["Confirm"]))
- {
- $var_list["t"] = $_GET["Confirm"];
- }
- else {
- $var_list["t"] = $_GET["DestTemplate"];
- }
- }
- }
- break;
- case "l_delete_link":
- $link = $objLinkList->GetItem($l_var_list["id"]);
- $catid = $link->GetPrimaryCategory();
- if($objSession->HasCatPermission("LINK.DELETE",$catid) ||
- ($objSession->Get("PortalUserId")==$link->Get("CreatedById") && $objSession->HasCatPermission("LINK.OWNER.DELETE",$catid)))
- {
- $link->Delete();
- }
- UpdateCategoryCount("Link", $catid, $objLinkList->GetListTypes());
- break;
- case "m_simple_search":
- $type = $objItemTypes->GetTypeByName("Link");
- $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) {
- $objLinkSearch = new clsSearchResults("Link",$objLinkList->classname);
- $objLinkSearch->SetKeywords($keywords);
- $objLinkSearch->AddSimpleFields('l');
-
- if (is_numeric($objConfig->Get("SearchRel_Pop_links"))) {
- $objLinkSearch->PctPop = ($objConfig->Get("SearchRel_Pop_links")/100);
- }
- if (is_numeric($objConfig->Get("SearchRel_Keyword_links"))) {
- $objLinkSearch->PctRelevance = ($objConfig->Get("SearchRel_Keyword_links")/100);
- }
- if (is_numeric($objConfig->Get("SearchRel_Rating_links"))) {
- $objLinkSearch->PctRating = ($objConfig->Get("SearchRel_Rating_links")/100);
- }
-
- $objLinkSearch->PerformSearch($type->Get("ItemType"),$SortOrder,FALSE);
- //$objLinkSearch->SetRelevence($type->Get("ItemType"), "LinkId");
- //echo "Finished Setting Link Relevence<br>\n";
- }
- break;
- case "m_adv_search":
- switch($_GET["type"])
- {
- case 4: /* link */
- //echo "Searching Links<br>";
- $objAdvSearch = new clsAdvancedSearchResults("Link",$objLinkList->classname, $_GET["type"]);
- foreach($objSearchConfig->Items as $field)
- {
- $fld = $field->Get("FieldName");
-
- $Verb = $_POST["verb"][$fld];
- if(!strlen($Verb) && $field->Get("FieldType")=="boolean")
- {
- if($_POST["value"][$field->Get("FieldName")]!=-1)
- {
- $Value = $_POST["value"][$fld];
- $Verb = "is";
- }
- }
- else
- {
- $Value = $_POST["value"][$fld];
- }
- switch( $_POST["andor"][$fld])
- {
- 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")
- {
- //echo "Adding LINK SearchField: [".$field->Get("TableName")."]; [".$field->Get("FieldName")."]; [$Verb]; [$Value]; [$Conjuction]<br>";
- $objAdvSearch->AddAdvancedField($field->Get("TableName"),$field->Get("FieldName"),$Verb,$Value,$Conjuction, 'l');
- }
-
- }
- $objAdvSearch->PerformSearch(4,NULL,TRUE);
- break;
- }
- break;
- case "m_simple_subsearch":
- $keywords = $_POST["keywords"];
- $type = $objItemTypes->GetTypeByName("Link");
-
- if(strlen($keywords))
- {
- $objLinkSearch = new clsSearchResults("Link",$objLinkList->classname);
- $objLinkSearch->SetKeywords($keywords);
- $objLinkSearch->AddSimpleFields('l');
- //$SearchResultIdList = $objLinkSearch->Result_IdList();
- if (is_numeric($objConfig->Get("SearchRel_Pop_links"))) {
- $objLinkSearch->PctPop = ($objConfig->Get("SearchRel_Pop_links")/100);
- }
- if (is_numeric($objConfig->Get("SearchRel_Keyword_links"))) {
- $objLinkSearch->PctRelevance = ($objConfig->Get("SearchRel_Keyword_links")/100);
- }
- if (is_numeric($objConfig->Get("SearchRel_Rating_links"))) {
- $objLinkSearch->PctRating = ($objConfig->Get("SearchRel_Rating_links")/100);
- }
-
- if(count($SearchResultIdList)>0)
- {
- $objLinkSearch->PerformSearch($type->Get("ItemType"),$SortOrder,FALSE,$SearchResultIdList);
- //$objLinkSearch->SetRelevence($type->Get("ItemType"), "LinkId");
- }
- }
- break;
-
-
- }
-?>
\ No newline at end of file
Property changes on: trunk/in-link/frontaction.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.36
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-link/module_init.php
===================================================================
--- trunk/in-link/module_init.php (revision 12828)
+++ trunk/in-link/module_init.php (nonexistent)
@@ -1,66 +0,0 @@
-<?php
- /* In-Link Module Initialization */
-$ItemTypes["link"]=4;
-$ItemTables[4] = "Link";
-$ParserFiles[] = "in-link/parser.php";
-
-require_once('link.php');
-
-/* Declare the link collection class */
-
-class clsLinkList extends _clsLinkList
-{
- function clsLinkList()
- {
- $this->_clsLinkList();
- $this->classname = "clsLink";
- }
-}
-
-/* Returns Main Item Collection */
-function &l_ItemCollection()
-{
- global $objLinkList;
- return $objLinkList;
-}
-
-/* create global link collection object */
-
- $objLinkList = new clsLinkList(); //object used to maintain a list of links
-
- if($l_var_list["id"])
- $objLinkList->SetCurrentItem($l_var_list["id"]);
- $objLinkList->Page = $l_var_list["p"];
-
-/*if there are customized tags for this module, include them below: */
-$tag_override = $pathtoroot."in-link/customtags.php";
-if(file_exists($tag_override))
-{
- require_once($tag_override);
-}
-
-/* Expire Links */
-$timeZones = array('1' => -12, '2' => -11, '3' => -10, '4' => -9, '5'=> -8, '6' => -7, '7' => -6, '8' => -5, '9' => -4, '10' => -3, '11' => -2, '12' => -1, '13' => 0, '14' => 1, '15' => 2, '16' => 3, '17' => 4, '18' => 5, '19' => 6, '20' => 7, '21' => 8, '22' => 9, '23' => 10, '24' => 11, '25' => 12, '26' => 13);
-
-$siteZone = $objConfig->Get("Config_Site_Time");
-$serverZone = $objConfig->Get("Config_Server_Time");
-$lastExpire = $objConfig->Get("LastExpirationTime");
-
-$diffZone = ($timeZones[$siteZone] < $timeZones[$serverZone]) ? 3600*($timeZones[$serverZone] - $timeZones[$siteZone]) : 0;
-
-$date = adodb_mktime() - $diffZone;
-$nowDate = adodb_date('j-m-y', $date);
-$lastExpireDate = $lastExpire? adodb_date('j-m-y', $lastExpire) : 0;
-
-//echo "DATA: $lastExpire, $nowDate, $lastExpireDate";
-
-if (!$lastExpire || ($nowDate != $lastExpireDate))
-{
- $ado = &GetADODBConnection();
- $sql = "UPDATE ".GetTablePrefix()."Link SET Status=0 WHERE Status=1 AND Expire!=0 AND (Expire <=$date)";
- $ado->Execute($sql);
- $objConfig->Set("LastExpirationTime", $date, 0, TRUE);
- $objConfig->Save();
-}
-
-?>
\ No newline at end of file
Property changes on: trunk/in-link/module_init.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-link/module_help/listing_type_edit.txt
===================================================================
--- trunk/in-link/module_help/listing_type_edit.txt (revision 12828)
+++ trunk/in-link/module_help/listing_type_edit.txt (nonexistent)
@@ -1,8 +0,0 @@
-<ul>
- <li>ID &ndash; the internal ID of the listing type generated by the system, read-only.</li>
- <li>Name &ndash; the name of the listing type, as it will appear on the front end when selecting a listing type for enhanced listings, or checking the enhanced listings. If you don&rsquo;t use In-commerce for processing enhanced listing payments, you may want to specify the listing price in this field, for example &ldquo;Premium Listing - $9.99/month&rdquo;.</li>
- <li>Duration &ndash; this is how long a listing will stay enhanced after approval of the enhanced listing request. The listing will automatically expire after this time passes, unless extended (renewed) by the user or the site administrator.</li>
- <li>Renewal reminder - how many days in advance should the enhanced listing renewal reminder be sent to the enhanced listing owners.</li>
- <li>Actions Upon Purchase &ndash; this group of fields specifies the actions that will be applied to the listing when enhanced request is approved. Please refer to the section In-Link/Managing Links/General of the manul for more information on the meaning of these settings. Each of the settings has &lsquo;Unchanged&rsquo; option, in addition to the options described in section In-Link/Managing Links/General of the manual. The &lsquo;Unchanged&rsquo; option specifies that no changes of the respective variable will take place when the enhanced listing is approved. It is recommended to use Editor&rsquo;s Pick flag for enhanced listings, since it&rsquo;s easy to configure In-link to display Editor&rsquo;s Pick links above all other links. Priority may also be used to control the sorting on the front end. Another option is to add the enhanced listings to some special category. For example, the site administrator may create a category called &ldquo;Premium Listings&rdquo; and configure the listing type to add the links to this category upon purchase.</li>
- <li>Actions Upon Expiration &ndash; this group of fields specifies the actions that will be applied to the listing when the enhancement expires or is disabled by the system administrator. The options are the same as the Actions Upon Purchase described above. A common practice is to set the actions upon expiration to undo the actions applied upon purchase. This will turn the enhanced listing back to regular when it expires.</li>
-</ul>
\ No newline at end of file
Property changes on: trunk/in-link/module_help/listing_type_edit.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-link/module_help/listing_type_list.txt
===================================================================
--- trunk/in-link/module_help/listing_type_list.txt (revision 12828)
+++ trunk/in-link/module_help/listing_type_list.txt (nonexistent)
@@ -1,9 +0,0 @@
-This section lists all Listing Types configured in the system. Each listing has ID, Name and Duration listed on the grid. <br/>
-<br/>
-This section has the following action buttons in the toolbar:<br/>
-<ul>
- <li>New &ndash; creates a new Listing Type.</li>
- <li>Edit &ndash; opens the edit form for selected Listing Types.</li>
- <li>Delete &ndash; deletes selected Listing Types after confirmation.</li>
- <li>View &ndash; opens the view menu for the grid. Please see section 5.1.6 for more information on using the view menu.</li>
-</ul>
\ No newline at end of file
Property changes on: trunk/in-link/module_help/listing_type_list.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-link/module_help/relations_edit.txt
===================================================================
--- trunk/in-link/module_help/relations_edit.txt (revision 12828)
+++ trunk/in-link/module_help/relations_edit.txt (nonexistent)
@@ -1,8 +0,0 @@
-This tab contains a list of all relations of this link. 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, links can be related to categories, articles (if In-newz is installed) and topics (if In-bulletin 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 link 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-link/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-link/module_help/listing_edit.txt
===================================================================
--- trunk/in-link/module_help/listing_edit.txt (revision 12828)
+++ trunk/in-link/module_help/listing_edit.txt (nonexistent)
@@ -1,10 +0,0 @@
-The add/edit form of the enhanced listing has the following fields:<br/>
-<ul>
- <li>ID &ndash; the internal id of the listing generated by the system, read only.</li>
- <li>Listing Type &ndash; the drop-down of the listing types configured in the system.</li>
- <li>Link Name &ndash; the name of the link that is being enhanced. The field has a &lsquo;Select&rsquo; button next to the name, which opens a link selector popup. You can choose a link from the catalog by using this popup.</li>
- <li>Status &ndash; the status of the enhanced listing. Changing the status and saving the enhanced listing will apply all specified actions upon purchase if the status is changed to Active, or actions upon expiration if the status is changed to Pending/Disabled.</li>
- <li>Pending renewal &ndash; controls the renewal status of the listing. Please note, that un-checking the pending renewal checkbox does not change the expiration date automatically.</li>
- <li>Purchase date &ndash; the date and time when the enhanced listing was purchased for the first time, the date is not changed when the listing is renewed.</li>
- <li>Expiration date &ndash; the date and time when the listing will expire.</li>
-</ul>
\ No newline at end of file
Property changes on: trunk/in-link/module_help/listing_edit.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-link/module_help/links_images.txt
===================================================================
--- trunk/in-link/module_help/links_images.txt (revision 12828)
+++ trunk/in-link/module_help/links_images.txt (nonexistent)
@@ -1,14 +0,0 @@
-This tab contains all images associated with the link. 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 link). 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-link/module_help/links_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-link/module_help/images_edit.txt
===================================================================
--- trunk/in-link/module_help/images_edit.txt (revision 12828)
+++ trunk/in-link/module_help/images_edit.txt (nonexistent)
@@ -1,14 +0,0 @@
-This tab contains all images associated with the link. 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 link). 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-link/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-link/module_help/reviews_edit.txt
===================================================================
--- trunk/in-link/module_help/reviews_edit.txt (revision 12828)
+++ trunk/in-link/module_help/reviews_edit.txt (nonexistent)
@@ -1,12 +0,0 @@
-This tab lists all reviews of the link, and allows the administrator to manage them. Reviews are little text articles that are attached to the link. They can be used to collect feedback from the front-end users, to provide details of the ratings, and for many other purposes.
-Reviews have their own status, independent from the link. They can be active, pending or disabled. The idea is very similar to the link status – only active reviews are displayed on the link detail 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. The date can be entered directly into the field, or by using the visual calendar tool.
-</ul>
\ No newline at end of file
Property changes on: trunk/in-link/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-link/module_help/listing_list.txt
===================================================================
--- trunk/in-link/module_help/listing_list.txt (revision 12828)
+++ trunk/in-link/module_help/listing_list.txt (nonexistent)
@@ -1,21 +0,0 @@
-This tab lists all enhanced listings in the system including pending and disabled. When a new enhanced listing is submitted by user, the new record will appear on this tab. Depending on whether the In-commerce module is installed or not, and on the Listing Type configuration (the Enable Purchasing setting), the enhanced listing records will appear on this tab immediately after the request is submitted, or upon approval of the order containing the enhanced listing purchase. In the latter case, the enhanced listing will be approved automatically, while in the former case the listing will be pending the administrator&rsquo;s approval.<br/>
-<br/>
-The grid displays the following columns:<br/>
-<ul>
- <li>ID &ndash; the internal ID of the listing, generated by the system. The icon in front of the ID indicates the status of the listing. A green question mark in the icon represents the listings, which are pending the administrator&rsquo;s approval, and a red &lsquo;x&rsquo; represents the disabled listings. A listing icon without either the question mark or the &lsquo;x&rsquo; represents an active enhanced listing.</li>
- <li>Listing type &ndash; the listing type corresponding to the listing. The text in this field is also a link to the listing type edit form.</li>
- <li>Link &ndash; the link being enhanced, the column displays the link name and its URL in the parenthesis. The text is also a link to the link edit form</li>
- <li>Pending Renewal &ndash; the status of the renewal of the enhancement. This column displays Yes/No values; Enhanced links become pending renewal only when the user has submitted a renewal request through the front end, and the In-commerce module is not installed or the listing type is configured to be processed manually. Otherwise, the pending order will appear under In-commerce Pending Orders section, and once approved, the enhanced listing will be automatically extended for the respective duration.</li>
- <li>Enabled On &ndash; the date and time when the enhanced listing was enabled.</li>
- <li>Expires On &ndash; the date and time when the enhanced listing is will expire.</li>
-</ul>
-<br/>
-This section has the following action buttons in the toolbar:<br/>
-<ul>
- <li>New Listing &ndash; creates a new enhanced listing.</li>
- <li>Edit &ndash; opens the edit form for the selected enhanced listings.</li>
- <li>Delete &ndash; deletes the selected enhanced listings after confirmation.</li>
- <li>Approve &ndash; approves the selected enhanced listings, and extends the expiration date by the duration specified in the Enhanced Listing Type settings.</li>
- <li>Deny &ndash; disables the enhanced listing. It also applies the actions specified in the listing type settings. Note, that the link itself stays enabled, and only its enhanced status is disabled.</li>
- <li>View &ndash; opens the view menu for the grid. Please see section 5.1.6 for more information on using the view menu.</li>
-</ul>
\ No newline at end of file
Property changes on: trunk/in-link/module_help/listing_list.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-link/module_help/dummy
===================================================================
Index: trunk/in-link/module_help/dummy
===================================================================
--- trunk/in-link/module_help/dummy (revision 12828)
+++ trunk/in-link/module_help/dummy (nonexistent)
Property changes on: trunk/in-link/module_help/dummy
___________________________________________________________________
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-link/module_help/links_edit.txt
===================================================================
--- trunk/in-link/module_help/links_edit.txt (revision 12828)
+++ trunk/in-link/module_help/links_edit.txt (nonexistent)
@@ -1,22 +0,0 @@
-This tab contains the main attributes of the link.
-<ul>
-<li> Enable HTML? - this check box enables or disables HTML code in the link name and description. 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> Link Id – this read-only field displays the unique internal system ID of the link.
-<li> Name * - this field contains the link name.
-<li> Description – this field contains the link description. The shortcut to the HTML editor next to this field will open a pop-up with an online HTML editor
-<li> URL * - this field contains the link URL. The URL can contain the protocol prefix (http://), but it does not have to.
-<li> Link Owner * - this field contains the name of the user who is owns this link. A link owner, given proper permissions, may modify the link on the front-end. By default, the link owner is the link creator. The administrator may change the link owner, by entering a different user name in this field, or by selecting it through a user pop up (shortcut to a user icon).
-<li>Automatic Filename – specifies whether the Filename used for mod_rewrite should be generated automatically from the link name, or entered manually. If checked, the Filename will be generated from the link name, replacing all special characters ( !@#$%^&*()+|\=-~`{}][:”’;,./?>< ) by the underscore character (“_”), and all multiple underscores with a single underscore. If the resulting name ends with an underscore followed by number, an additional letter will be appended, since the names ending with a number are reserved for system use. The resulting name will also be checked for uniqueness, and if it’s not unique, additional letters will be appended to the end of the name
-<li>Custom Filename – the filename used for the URL generation when using mod_rewrite. The field is disabled if Automatic Filename is On. If Automatic Filename is Off, the administrator may enter the filename manually, however it will still be checked for uniqueness, special characters and whether it ends with a number. In such cases the Filename will be automatically corrected before saving.
-<li> Status – this field contains the link status.
-<li> New – this field controls how the link ‘new' status is calculated by In-link.
-<li> Hot – this field controls how the link ‘hot’ status is calculated by In-link. In automatic mode, In-link will consider as ‘hot’ the X number of links with the most hits. X is defined under the In-link Output options.
-<li> Popularity – this field controls how the link ‘pop’ status is calculated by In-link. In automatic mode, In-link will consider those links 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 link.
-<li> Priority - this field contains the numeric link priority.
-<li> Created on * - this field contains the creation date of the link. It is automatically set by the system when the link 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> Expiration Date - this field contains the expiration date of the link. It is automatically set by the system when a link is created, using the creation date plus the predefined number of days, set in the In-link configuration. It can be changed by the administrator, by being entered directly into the field, or by using the visual calendar tool.
-<li> Rating – this field contains the numeric rating of the link. The rating is calculated as the average value of all ratings selected by users for this link. 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 link. Each time a user votes (selects rating) for the link 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> Hits – this field contains the number of link's hits. This value is incremented each time a user clicks on the link to go to the link's URL. The administrator can manually change the hits if necessary.
-</ul>
\ No newline at end of file
Property changes on: trunk/in-link/module_help/links_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-link/module_help/listing_type_shop_cart.txt
===================================================================
--- trunk/in-link/module_help/listing_type_shop_cart.txt (revision 12828)
+++ trunk/in-link/module_help/listing_type_shop_cart.txt (nonexistent)
@@ -1,6 +0,0 @@
-&nbsp;The tab allows configuring pricing and purchasing options for the enhanced listing types.<br/>
-<ul>
- <li>Enable Purchasing &ndash; controls whether the purchasing of this listing type should be processed through the In-commerce shopping cart and the standard checkout process, or manually by the administrator. </li>
- <li>Product Name &ndash; the name, as it will appear in the customers&rsquo; shopping carts and orders.</li>
- <li>Price - desired price for the enhanced listing type.</li>
-</ul>
\ No newline at end of file
Property changes on: trunk/in-link/module_help/listing_type_shop_cart.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-link/module_help/config_list_output.txt
===================================================================
--- trunk/in-link/module_help/config_list_output.txt (revision 12828)
+++ trunk/in-link/module_help/config_list_output.txt (nonexistent)
@@ -1,20 +0,0 @@
-This section allows the administrator to specify the default values for various link settings in In-link.
-<ul>
-<li> Order links by – this setting specifies the default primary sort order for the link 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 link), 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 ‘Link Name', the secondary order will be used to sort among links with the same name.
-<li> Number of links per page – specifies the default number of links 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> Number of links per page on a short listing – this setting is similar to the ‘ Number of links per page', but it applies to the front-end short link lists only. It can be overridden by setting the tag attributes in the appropriate templates.
-<li> Number of days for a link to be NEW – this setting specifies the number of days, from the date of creation, during which the link will be automatically marked ‘New' by the system. This setting will only apply to the links with the ‘New' flag set to ‘Automatic'.
-<li> Minimum rating for a link to be POP – this setting specifies the minimum rating of the link for it to be automatically marked ‘Popular’ by the system. This setting will only apply to the links with the ‘Popularity’ flag set to ‘Automatic’. Note, that for a link to be “popular” it will need to meet the “minimum votes” requirement set below.
-<li> Maximum number of HOT links – this setting specifies the maximum number “hot” links in the database. A “hot” link is the one that has more hits than the other links. For example, if this option is set to “2”, the In-portal system will pick the two links with the most hits and mark them as hot. (Of course, this will change real-time as links’ hits are updated, or as this setting changes). Please note, if more than one link has the maximum number of hits, the system will still enforce the maximum number requirement; therefore, there may be situations when a link with the most hits is not marked as “hot”.
-<li> Minimum number of votes to enable link rating – this setting specifies the minimum number of votes required for the link rating to be effective. Usually, when only a small number of users have voted on a link, 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 link – links with less than required number of votes will not be considered “popular”, even if their rating is high enough.
-<li> Enhanced Listings – this setting will enable the Enhanced listings functionality on the front end. Specifically, the “Enhance” option will appear on link listings under My Links section on the front end. To use the enhanced listing functionally, the site administrator needs to create at least one Listing Type under In-Link->Paid Listings section.
-<li>Allow Free Listings – controls if free (regular) listings should be allowed; effective only when the enhanced (paid) listings are on. </li>
-<li> Display editor PICKs above regular links – this setting will force all links, marked as ‘Editor's pick' to be displayed above the other links, regardless of their priority or sort order. Among themselves, ‘Editor's pick' links will be sorted according to the regular rules.
-<li> Display link URL in status bar – this setting toggles the display of the URL in the browsers status bar (usually at the bottom of the window). It is impossible to view the URL of the link by examining the link itself, because In-link uses an intermediate script to redirect visitors to the link destinations. If it is desirable that the visitors can see the destination of the link, enable this setting.
-<li> Allow Duplicate Reviews – this setting specifies the period during which the same user cannot submit another review on the same link. 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 link immediately after the first review.
-<li> Allow Duplicate Rating Votes - this setting specifies the period during which the same user cannot rate the same link again. The time can be entered in seconds, minutes, hours, days, months or years. If it is set to zero, the users can rate links without this limitation. Please note, that regardless of this setting, the same user will be able to rate another link immediately after the first rating.
-<li> Reviews Per Page - specifies the default number of reviews shown per page. This value applies both to the front-end and to the Administrative Console.
-<li> Sort reviews by - this setting specifies the default primary sort order for the review listings. It applies both on the front-end, and in the Administrative Console – in the link management section, Reviews tab. The first dropdown allows to select the field (an attribute of the review), 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 ‘Review Text', the secondary order will be used to sort among reviews with the same body.
-</ul>
\ No newline at end of file
Property changes on: trunk/in-link/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-link/module_help/duplicate_links.txt
===================================================================
--- trunk/in-link/module_help/duplicate_links.txt (revision 12828)
+++ trunk/in-link/module_help/duplicate_links.txt (nonexistent)
@@ -1,16 +0,0 @@
-This section allows the administrator to identify and manage duplicate links in the directory. By default, the section lists all duplicate links found in the system, identifying the duplicates by matching the URL field of the links. <br/>
-The field or fields used to locate the duplicates are controlled through View menu of the section, Group By sub-menu. Currently it provides the options to search for duplicates by link Name, URL or Name and URL pair.<br/>
-If duplicate links are found, they are displayed in the grid below the toolbar grouped by the selected field(s). The duplicate grid has the following fields:<br/>
-<ul>
- <li>Link &ndash; displays the link Name field</li>
- <li>Link URL &ndash; displays the link URL field</li>
- <li>Description &ndash; displays the description associated with the link</li>
- <li>Modified &ndash; displays link&rsquo;s last modification date and time</li>
-</ul>
-The section toolbar has the following buttons:<br/>
-<ul>
- <li>Edit &ndash; opens link editing form for all of the selected links. </li>
- <li>Delete &ndash; deletes selected links from the database</li>
- <li>Merge &ndash; merges the group of duplicates. Only one target link in duplicates group should be selected for merging. All non-selected links will be merged into selected one. The merge functions adds the target link to the categories of all non-selected links in the group and deletes non-selected links, resulting a single link in all of the categories instead of the duplicates. Please note that you will not see the link in the duplicates listing after merging, since it will not have duplicates any more.</li>
- <li>View &ndash; opens the view menu for the grid. Please see section 5.1.6 for more information on using the view menu.</li>
-</ul>
\ No newline at end of file
Property changes on: trunk/in-link/module_help/duplicate_links.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-link/module_help/custom_fields_list.txt
===================================================================
--- trunk/in-link/module_help/custom_fields_list.txt (revision 12828)
+++ trunk/in-link/module_help/custom_fields_list.txt (nonexistent)
@@ -1,11 +0,0 @@
-This section allows the administrator to manage the link custom fields. The link custom fields are useful when you need to store additional information about the links. For example, the links may have such custom fields, as the language of the destination site, the safe audience rating, the load times, etc. All custom fields will be automatically used in the Administrative Console, in the Link 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 links. 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>
\ No newline at end of file
Property changes on: trunk/in-link/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-link/module_help/links_reviews.txt
===================================================================
--- trunk/in-link/module_help/links_reviews.txt (revision 12828)
+++ trunk/in-link/module_help/links_reviews.txt (nonexistent)
@@ -1,12 +0,0 @@
-This tab lists all reviews of the link, and allows the administrator to manage them. Reviews are little text articles that are attached to the link. They can be used to collect feedback from the front-end users, to provide details of the ratings, and for many other purposes.
-Reviews have their own status, independent from the link. They can be active, pending or disabled. The idea is very similar to the link status – only active reviews are displayed on the link detail 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. The date can be entered directly into the field, or by using the visual calendar tool.
-</ul>
\ No newline at end of file
Property changes on: trunk/in-link/module_help/links_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-link/module_help/links_export.txt
===================================================================
--- trunk/in-link/module_help/links_export.txt (revision 12828)
+++ trunk/in-link/module_help/links_export.txt (nonexistent)
@@ -1,12 +0,0 @@
-<p>This page allows specifying the link export options. The following options are available:</p>
-<ul>
- <li>Export format - controls the format of the exported file, currently only CSV export is supported</li>
- <li>Fields separated by - a field delimiter for CSV format</li>
- <li>Fields enclosed by - a character used to enclose field values in the CSV file</li>
- <li>Line endings - controls character(s) used to specify end of line in resulting file - CR (carriage return) for Unix and CRLF (carriage return + line feed) for Windows</li>
- <li>Line endings inside fields - controls character(s) used to specify line breaks inside the field values. This character may be different from Line endings, especially when the output is used in Microsoft Excel (it uses LF for line breaks inside fields and CRLF for line (record) endings)</li>
- <li>Include field titles - if set to &quot;on&quot;, the first line of the exported file will contain field titles (leave this &quot;on&quot; if you plan to import the file back into In-portal after modifying in an external application)</li>
- <li>Export columns - lists the data columns available for export. Select and move to the left list box the columns you wish to export. If you plan to import the file back into In-portal, consider including &quot;LinkId&quot; column, as it will make it easier to match the data later.</li>
- <li>Category format - controls how the categories should be exported. If &quot;Category path in one field&quot; is selected, the category path of a link will be exported in one column separated by a character defined below. For example, if a link is under the category &quot;PHP -&gt; Software -&gt; Portal software&quot;, the field will contain &quot;PHP:Software:Portal software&quot;. If set to &quot;One field for each category level&quot; a field for each category level will be created. In the example above, the resulting file will contain at least 3 columns with titles &quot;Category1&quot;,&quot;Category2&quot; and &quot;Category3&quot;, each containing &quot;PHP&quot;, &quot;Software&quot;, &quot;Portal software&quot; accordingly.</li>
- <li>Export filename - specify the file name of the resulting file. The file will be created in the admin/export directory relative to the In-portal root directory and will be available for downloading immediately.</li>
-</ul>
\ No newline at end of file
Property changes on: trunk/in-link/module_help/links_export.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-link/module_help/links_custom.txt
===================================================================
--- trunk/in-link/module_help/links_custom.txt (revision 12828)
+++ trunk/in-link/module_help/links_custom.txt (nonexistent)
@@ -1 +0,0 @@
-This tab displays all custom fields configured in In-link, and allows the administrator to edit their information for this link.
\ No newline at end of file
Property changes on: trunk/in-link/module_help/links_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-link/module_help/email_settings_list.txt
===================================================================
--- trunk/in-link/module_help/email_settings_list.txt (revision 12828)
+++ trunk/in-link/module_help/email_settings_list.txt (nonexistent)
@@ -1 +0,0 @@
-This section lists all possible In-link 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-link/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-link/module_help/config_list_general.txt
===================================================================
--- trunk/in-link/module_help/config_list_general.txt (revision 12828)
+++ trunk/in-link/module_help/config_list_general.txt (nonexistent)
@@ -1,3 +0,0 @@
-This section contains general In-link settings, which are not related to links. In the current version, it has only one setting. ‘Select Module Root Category' allows the administrator to specify the module root category of In-link. 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 ‘Directory' 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.
-Logically, the module root category defines the portion of the catalog tree that is designated only for the In-link categories. If you are using the categories to store items from multiple modules, this setting is not applicable to your situation.
\ No newline at end of file
Property changes on: trunk/in-link/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-link/module_help/links_categories.txt
===================================================================
--- trunk/in-link/module_help/links_categories.txt (revision 12828)
+++ trunk/in-link/module_help/links_categories.txt (nonexistent)
@@ -1,2 +0,0 @@
-This tab manages the categories of the link. The list shows all categories to which this link belongs. The administrator can add and remove additional categories on this list. At least one category must be there, and exactly one category must be designated as the primary. The primary category determines the permissions for the link. To designate the primary category of the link, 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 link will appear in all of the categories it belongs to, in the Administrative Console as well as on the front-end.
\ No newline at end of file
Property changes on: trunk/in-link/module_help/links_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-link/module_help/links_relations.txt
===================================================================
--- trunk/in-link/module_help/links_relations.txt (revision 12828)
+++ trunk/in-link/module_help/links_relations.txt (nonexistent)
@@ -1,8 +0,0 @@
-This tab contains a list of all relations of this link. 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, links can be related to categories, articles (if In-newz is installed) and topics (if In-bulletin 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 link 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-link/module_help/links_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-link/module_help/links_import.txt
===================================================================
--- trunk/in-link/module_help/links_import.txt (revision 12828)
+++ trunk/in-link/module_help/links_import.txt (nonexistent)
@@ -1,13 +0,0 @@
-<p>This page allows configuring the link import options. The following options are available:</p>
-<ul>
- <li>Import Filename - allows to upload a file for importing or to select a file already on the server. The drop-down lists all the files found under admin/export directory relative to the In-portal root directory. This feature may be used to import large files that otherwise may not be uploaded directly due to PHP/Server limitations. In this case the administrator may upload the files to admin/export directory by other means, such as FTP, and then select them for importing.</li>
- <li>Fields separated by - fields delimiter for CSV format</li>
- <li>Fields enclosed by - a character used to enclose field values in CSV file</li>
- <li>Line endings - controls character(s) used to specify end of line in the file being imported - CR (carriage return) for Unix and CRLF (carriage return + line feed) for Windows</li>
- <li>Skip First row - skips the first row of the file being imported (usually the first row contains the column titles)</li>
- <li>Field Titles - if set to &quot;Automatic&quot; the system will try to detect the field order in the file being imported automatically. The field titles need to be exactly the same as listed below in the &quot;Available columns&quot; list box. If a file previously exported from In-portal is being imported back - this option will reliably detect the field order. If a custom file is being imported and it does not contain field titles row or field titles are different from those supported by In-portal, the order of the fields in the file should be configured manually be selecting the fields from the available box by moving them into the left list box, and by arranging them in the same descending order as they are in the file (going left to right).</li>
- <li>Import category - allows to specify the root category for link import. Any categories and sub-categories created during the import will be created in this category. The Home category is used by default.</li>
- <li>Category separator - a character used to delimit categories and sub-categories in the &quot;CategoryPath&quot; field. If categories and sub-categories are in separate columns, the separator character is not used. In this case the fields selected above should be Category1..CateogryN according to the file being imported or automatic.</li>
- <li>Replace duplicates - controls if the links being imported should replace (update) the same links found in the database. Setting this option is mandatory when you want to import the data back into In-portal after modifying it in an external application.</li>
- <li>Check duplicated by - controls which field of imported file should be used to locate duplicate links and to replace (update) them with the new data from the file. The option is used when &quot;Replace duplicates&quot; is on. The preferred option is &quot;Id field (LinkId)&quot;, used when you import a previously exported set of data back into In-portal. LinkId field should be present in the file being imported. Another option is to check the duplicates by Name and/or URL. If both Name and URL are selected - both fields will be used for matching imported records against the existing ones in the database. It is strongly recommended to use both fields to avoid possible data corruption.</li>
-</ul>
\ No newline at end of file
Property changes on: trunk/in-link/module_help/links_import.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-link/module_help/config_list_search.txt
===================================================================
--- trunk/in-link/module_help/config_list_search.txt (revision 12828)
+++ trunk/in-link/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 links attributes. Next to each field, there is a ‘Simple Search' checkbox, which includes this field in the simple search query. By default, only the ‘Name', the ‘Description' and the ‘URL' fields are 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 link'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 Link 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 link.
-<li> Search Relevance depends on _ % popularity - the percentage of relevance that is based on the link's popularity.
-<li> Search Relevance depends on _ % rating - the percentage of relevance that is based on the link's rating.
-</ul>
Property changes on: trunk/in-link/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-link/inlink_redirect.php
===================================================================
--- trunk/in-link/inlink_redirect.php (revision 12828)
+++ trunk/in-link/inlink_redirect.php (nonexistent)
@@ -1,47 +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-link');
- $relation_level = count( explode('/', REL_PATH) );
- define('FULL_PATH', realpath(dirname(__FILE__) . str_repeat('/..', $relation_level) ) );
- $FrontEnd = 1;
- require_once FULL_PATH.'/kernel/startup.php';
- // new startup: end
-
- $id = GetVar('linkid');
- if (!$id) {
- $application =& kApplication::Instance();
- $application->ApplicationDie('error: no link id specified');
- }
-
- $link = new clsLink($id);
-
- $link->debuglevel = 0;
- $link->ClearCacheData();
- $link->Increment("hits", true);
- $url = $link->Get("Url");
-
-// $protocol = 'http';
-
- if (preg_match('/^(http|ftp|mailto:)(.*)/U', $url)) {
- header('Location: '.$url);
- }
- else {
- header('Location: http://'.$url);
- }
-
- exit;
-?>
\ No newline at end of file
Property changes on: trunk/in-link/inlink_redirect.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-link/units/listing_types/listing_types_config.php
===================================================================
--- trunk/in-link/units/listing_types/listing_types_config.php (revision 12828)
+++ trunk/in-link/units/listing_types/listing_types_config.php (nonexistent)
@@ -1,126 +0,0 @@
-<?php
-
-$config = Array(
- 'Prefix' => 'lst',
- 'ItemClass' => Array('class'=>'kDBItem','file'=>'','build_event'=>'OnItemBuild'),
- 'ListClass' => Array('class'=>'kDBList','file'=>'','build_event'=>'OnListBuild'),
- 'EventHandlerClass' => Array('class'=>'ListingTypesEventHandler','file'=>'listing_types_event_handler.php','build_event'=>'OnBuild'),
- 'TagProcessorClass' => Array('class'=>'ListingTypesTagProcessor','file'=>'listing_types_tag_processor.php','build_event'=>'OnBuild'),
- 'AutoLoad' => true,
- 'AggregateTags' => Array(
- Array(
- 'AggregateTo' => 'l',
- 'AggregatedTagName' => 'ListListingTypes',
- 'LocalTagName' => 'PrintList',
- ),
- Array(
- 'AggregateTo' => 'l',
- 'AggregatedTagName' => 'ListingTypeField',
- 'LocalTagName' => 'Field',
- ),
- ),
- 'Hooks' => Array(),
- 'QueryString' => Array(
- 1 => 'id',
- 2 => 'page',
- 3 => 'event',
- 4 => 'mode',
- ),
- 'IDField' => 'ListingTypeId',
- 'TitleField' => 'Name',
- 'TitlePresets' => Array(
- 'default' => Array( 'new_status_labels' => Array('lst'=>'!la_title_AddingPaidListingType!'),
- 'edit_status_labels' => Array('lst'=>'!la_title_EditingPaidListingType!'),
- 'new_titlefield' => Array('lst'=>'!la_title_NewPaidListingType!'),
- ),
- 'listing_type_list'=>Array( 'prefixes' => Array('lst_List'),
- 'format' => "!la_title_PaidListingTypes! (#lst_recordcount#)",
- ),
- 'listing_type_edit'=>Array( 'prefixes' => Array('lst'),
- 'new_titlefield' => Array('lst'=>'!la_title_NewPaidListingType!'),
- 'format' => "#lst_status# '#lst_titlefield#' - !la_title_General!",
- ),
- 'listing_type_shop_cart'=>Array( 'prefixes' => Array('lst'),
- 'new_titlefield' => Array('lst'=>'!la_title_NewPaidListingType!'),
- 'format' => "#lst_status# '#lst_titlefield#' - !la_title_ShopCartEntry!",
- ),
-
-
- ),
-
- 'PermSection' => Array('main' => 'in-link:listing_types'),
-
- 'Sections' => Array(
- 'in-link:listing_types' => Array(
- 'parent' => 'in-link:paid_listings_folder',
- 'icon' => 'paid_listings',
- 'label' => 'la_tab_ListingTypes',
- 'url' => Array('t' => 'in-link/paid_listings/paid_listing_types_list', 'pass' => 'm'),
- 'permissions' => Array('view', 'add', 'edit', 'delete'),
- 'priority' => 8.2,
- 'type' => stTAB,
- ),
- ),
-
- 'TableName' => TABLE_PREFIX.'ListingTypes',
-
- 'ListSQLs' => Array( ''=>'SELECT * FROM %s',), // key - special, value - list select sql
-
- 'ItemSQLs' => Array( ''=>'SELECT * FROM %s',),
-
- 'ListSortings' => Array(
- '' => Array(
- 'Sorting' => Array('ListingTypeId' => 'asc'),
- )
- ),
-
- 'Fields' => Array
- (
- 'ListingTypeId' => Array('type' => 'int', 'not_null' => 1, 'default' => 0,),
- 'Name' => Array('type' => 'string','not_null' => '1','default' => '','required' => '1'),
- 'Description' => Array('type' => 'string', 'not_null' => 1, 'default' => ''),
- 'Duration' => Array('type' => 'int', 'not_null' => 1, 'default' => 0),
- 'DurationType' => Array('type' => 'int', 'not_null' => 1, 'default' => 0, 'formatter'=>'kOptionsFormatter','use_phrases' => 1,'options' => Array(1 => 'la_opt_sec', 2 => 'la_opt_min', 3 => 'la_opt_hour', 4 => 'la_opt_day', 5 => 'la_opt_week', 6 => 'la_opt_month', 7 => 'la_opt_year')),
- 'OnPurchaseEdPick' => Array('type' => 'int','not_null' => '1','formatter'=>'kOptionsFormatter','use_phrases' => 1,'options' => Array(3 => 'la_Unchanged', 1 => 'la_On', 0 => 'la_Off'), 'default' => 3),
-
- 'OnPurchaseStatus' => Array('type' => 'int','not_null' => '1','formatter'=>'kOptionsFormatter','use_phrases' => 1,'options' => Array(3 => 'la_Unchanged', 1 => 'la_Enabled', 0 => 'la_Disabled', 2 => 'la_Pending'),'default' => 3),
-
- 'OnPurchaseNew' => Array('type' => 'int','not_null' => '1','formatter'=>'kOptionsFormatter','use_phrases' => 1,'options' => Array(3 => 'la_Unchanged', 1 => 'la_On', 0 => 'la_Off', 2 => 'la_Auto'),'default' => 3),
- 'OnPurchasePop' => Array('type' => 'int','not_null' => '1','formatter'=>'kOptionsFormatter','use_phrases' => 1,'options' => Array(3 => 'la_Unchanged', 1 => 'la_On', 0 => 'la_Off', 2 => 'la_Auto'),'default' => 3),
- 'OnPurchaseHot' => Array('type' => 'int','not_null' => '1','formatter'=>'kOptionsFormatter','use_phrases' => 1,'options' => Array(3 => 'la_Unchanged', 1 => 'la_On', 0 => 'la_Off', 2 => 'la_Auto'),'default' => 3),
- 'OnPurchasePriorityAction' => Array('type' => 'int','not_null' => '1','formatter'=>'kOptionsFormatter','use_phrases' => 1,'options' => Array(0 => 'la_DontChange', 1 => 'la_SetEqualTo', 2 => 'la_IncreaseBy', 3 => 'la_DecreaseBy'),'default' => 0),
- 'OnPurchasePriorityValue' => Array('type' => 'int','not_null' => '1','default' => 1),
- 'OnPurchaseAddToCatEnabled' => Array('type' => 'int','not_null' => '1','default' => 0),
- 'OnPurchaseAddToCat' => Array('type' => 'int','not_null' => '1','default' => 0),
- 'OnExpireEdPick' => Array('type' => 'int','formatter'=>'kOptionsFormatter','use_phrases' => 1,'options' => Array(3 => 'la_Unchanged', 1 => 'la_On', 0 => 'la_Off'),'not_null' => '1','default' => 3),
- 'OnExpireNew' => Array('type' => 'int','not_null' => '1','formatter'=>'kOptionsFormatter','use_phrases' => 1,'options' => Array(3 => 'la_Unchanged', 1 => 'la_On', 0 => 'la_Off', 2 => 'la_Auto'),'default' => 3),
- 'OnExpirePop' => Array('type' => 'int','not_null' => '1','formatter'=>'kOptionsFormatter','use_phrases' => 1,'options' => Array(3 => 'la_Unchanged', 1 => 'la_On', 0 => 'la_Off', 2 => 'la_Auto'),'default' => 3),
- 'OnExpireHot' => Array('type' => 'int','not_null' => '1','formatter'=>'kOptionsFormatter','use_phrases' => 1,'options' => Array(3 => 'la_Unchanged', 1 => 'la_On', 0 => 'la_Off', 2 => 'la_Auto'),'default' => 3),
- 'OnExpirePriorityAction' => Array('type' => 'int','not_null' => '1','formatter'=>'kOptionsFormatter','use_phrases' => 1,'options' => Array(0 => 'la_DontChange', 1 => 'la_SetEqualTo', 2 => 'la_IncreaseBy', 3 => 'la_DecreaseBy'),'default' => 0),
- 'OnExpirePriorityValue' => Array('type' => 'int','not_null' => '1','default' => 1),
- 'OnExpireRemoveFromCatEnabled' => Array('type' => 'int','not_null' => '1','default' => 0),
- 'OnExpireRemoveFromCat' => Array('type' => 'int','not_null' => '1','default' => 0),
-
- 'OnExpireStatus' => Array('type' => 'int','not_null' => '1','formatter'=>'kOptionsFormatter','use_phrases' => 1,'options' => Array(3 => 'la_Unchanged', 1 => 'la_Enabled', 0 => 'la_Disabled', 2 => 'la_Pending'),'default' => 3),
- 'RenewalReminder' => Array('type' => 'int','not_null' => '1','default' => 0),
- 'EnableBuying' => Array('type' => 'int','not_null' => '1','default' => 0),
- 'ShopCartName' => Array('type' => 'string', 'default' => null),
- 'Price' => Array('type' => 'double','default' => ''),
- 'Recurring' => Array('type' => 'int','not_null' => '1','default' => 0),
- 'VirtualProductId' => Array('type' => 'int','not_null' => '1','default' => 0),
- ),
-
- 'Grids' => Array(
- 'Default' => Array(
- 'Icons' => Array('default'=>'icon16_listing_type.gif'),
- 'Fields' => Array(
- 'ListingTypeId' => Array( 'title'=>'la_col_Id' , 'data_block' => 'grid_checkbox_td'),
- 'Name' => Array( 'title'=>'la_col_Name' ),
- 'Duration' => Array( 'title'=>'la_col_Duration' , 'data_block' => 'duration_td'),
- ),
-
- ),
- ),
- );
-
-?>
\ No newline at end of file
Property changes on: trunk/in-link/units/listing_types/listing_types_config.php
___________________________________________________________________
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-link/units/listing_types/listing_types_event_handler.php
===================================================================
--- trunk/in-link/units/listing_types/listing_types_event_handler.php (revision 12828)
+++ trunk/in-link/units/listing_types/listing_types_event_handler.php (nonexistent)
@@ -1,73 +0,0 @@
-<?php
-
-class ListingTypesEventHandler extends kDBEventHandler {
-
- /**
- * Allows to override standart permission mapping
- *
- */
- function mapPermissions()
- {
- parent::mapPermissions();
- $permissions = Array(
- 'OnItemBuild' => Array('self' => true),
- );
-
- $this->permMapping = array_merge($this->permMapping, $permissions);
- }
-
- /**
- * Set's selected category to listing type
- *
- * @param kEvent $event
- */
- function OnProcessSelected(&$event)
- {
- $object =& $event->getObject();
- $selected_ids = $this->Application->GetVar('selected_ids');
-
- $object->SetDBField($this->Application->RecallVar('dst_field'), $selected_ids['c']);
- $this->RemoveRequiredFields($object);
- $object->Update();
-
- $this->finalizePopup($event);
- }
-
-
- function OnPreSaveListingType(&$event)
- {
- $event->redirect = false;
- $object =& $event->getObject( Array('skip_autoload' => true) );
- $this->RemoveRequiredFields($object);
- $event->CallSubEvent('OnPreSave');
- $this->Application->SetVar($event->getPrefixSpecial(true).'_id', $object->GetID());
- }
-
- function OnPreSave(&$event)
- {
- $object =& $event->getObject();
- $item_info = $this->Application->GetVar($event->Prefix);
- if(is_array($item_info))
- {
- $item_info = array_shift($item_info);
- if( getArrayValue($item_info, 'EnableBuying') )
- {
- $options = $object->GetFieldOptions('ShopCartName');
- $options['required'] = 1;
- $object->SetFieldOptions('ShopCartName', $options);
- }
- }
- parent::OnPreSave($event);
- }
-
- function OnEdit(&$event)
- {
- if ($this->Application->prefixRegistred('p')) {
- $this->Application->recallObject('p', null, Array('skip_autoload' => true));
- }
- parent::OnEdit($event);
- }
-}
-
-
-?>
\ No newline at end of file
Property changes on: trunk/in-link/units/listing_types/listing_types_event_handler.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-link/units/listing_types/listing_types_tag_processor.php
===================================================================
--- trunk/in-link/units/listing_types/listing_types_tag_processor.php (revision 12828)
+++ trunk/in-link/units/listing_types/listing_types_tag_processor.php (nonexistent)
@@ -1,35 +0,0 @@
-<?php
-
-class ListingTypesTagProcessor extends kDBTagProcessor {
-
- function CategoryPath($params)
- {
- $object =& $this->getObject($params);
- $params['cat_id'] = $object->GetDBField($params['field']);
-
- return $this->Application->ProcessParsedTag('c', 'CategoryPath', $params);
- }
-
- /**
- * Makes 1st listing type default
- *
- * @param Array $params
- * @return bool
- */
- function IsDefault($params)
- {
- static $listing_type_id = null;
-
- $object =& $this->getObject();
- /* @var $object kDBItem */
-
- if (!isset($listing_type_id)) {
- $listing_type_id = $object->GetID();
- }
-
- return $listing_type_id == $object->GetID();
- }
-}
-
-
-?>
\ No newline at end of file
Property changes on: trunk/in-link/units/listing_types/listing_types_tag_processor.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-link/units/listings/listings_tag_processor.php
===================================================================
--- trunk/in-link/units/listings/listings_tag_processor.php (revision 12828)
+++ trunk/in-link/units/listings/listings_tag_processor.php (nonexistent)
@@ -1,92 +0,0 @@
-<?php
-
-class ListingsTagProcessor extends kDBTagProcessor {
-
- /**
- * Returns a link for editing product
- *
- * @param Array $params
- * @return string
- */
- function ListingTypeLink($params)
- {
- $object =& $this->Application->recallObject($this->getPrefixSpecial(), $this->Prefix, $params);
-
- return $this->Application->HREF($params['edit_template'],'', Array(
- 'm_opener' => 'd',
- 'lst_mode' => 't',
- 'lst_event' => 'OnEdit',
- 'lst_id' => $object->GetDBField('ListingTypeId'),
- 'pass' => 'all,lst'
- ), 'index.php');
- }
-
- function LinkEditLink($params)
- {
- $object =& $this->Application->recallObject( $this->getPrefixSpecial(), $this->Prefix, $params );
-
- $sql = 'SELECT '.$this->Application->getUnitOption('l', 'IDField').'
- FROM '.$this->Application->getUnitOption('l', 'TableName').'
- WHERE ResourceId = '.$object->GetDBField('ItemResourceId');
-
- return $this->Application->HREF($params['edit_template'],'', Array(
- 'm_opener' => 'd',
- 'l_mode' => 't',
- 'l_event' => 'OnEdit',
- 'l_id' => $this->Conn->GetOne($sql),
- 'pass' => 'all,l'
- ));
- }
-
- function ExpirationDate($params)
- {
- $object =& $this->Application->recallObject( $this->getPrefixSpecial(), $this->Prefix, $params );
- $listing_type =& $this->Application->recallObject( 'lst', 'lst', $params );
-
- $dur_type_mapping = Array( 1 => 1,
- 2 => 60,
- 3 => 3600,
- 4 => 3600*24,
- 5 => 3600*24*7,
- 6 => 3600*24*365/12,
- 7 => 3600*24*365
- );
- $duration = $listing_type->GetDBField('Duration');
- $duration_type = $listing_type->GetDBField('DurationType');
- $expiration_interval = $duration * $dur_type_mapping[$duration_type];
- $expiration_date = adodb_mktime() + $expiration_interval;
-
- $lang =& $this->Application->recallObject('lang.current');
- $format = $lang->GetDBField('DateFormat');
- $expiration_date = adodb_date($format, $expiration_date);
-
- return $expiration_date;
- }
-
- function ExpirationTime($params)
- {
- $object =& $this->Application->recallObject( $this->getPrefixSpecial(), $this->Prefix, $params );
- $listing_type =& $this->Application->recallObject( 'lst', 'lst', $params );
-
- $dur_type_mapping = Array( 1 => 1,
- 2 => 60,
- 3 => 3600,
- 4 => 3600*24,
- 5 => 3600*24*7,
- 6 => 3600*24*365/12,
- 7 => 3600*24*365
- );
- $duration = $listing_type->GetDBField('Duration');
- $duration_type = $listing_type->GetDBField('DurationType');
- $expiration_interval = $duration * $dur_type_mapping[$duration_type];
- $expiration_date = adodb_mktime() + $expiration_interval;
-
- $lang =& $this->Application->recallObject('lang.current');
- $format = $lang->GetDBField('TimeFormat');
- $expiration_date = adodb_date($format, $expiration_date);
-
- return $expiration_date;
- }
-}
-
-?>
\ No newline at end of file
Property changes on: trunk/in-link/units/listings/listings_tag_processor.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-link/units/listings/listings_config.php
===================================================================
--- trunk/in-link/units/listings/listings_config.php (revision 12828)
+++ trunk/in-link/units/listings/listings_config.php (nonexistent)
@@ -1,144 +0,0 @@
-<?php
-
-$config = Array(
- 'Prefix' => 'ls',
- 'ItemClass' => Array('class'=>'kDBItem','file'=>'','build_event'=>'OnItemBuild'),
- 'ListClass' => Array('class'=>'kDBList','file'=>'','build_event'=>'OnListBuild'),
- 'EventHandlerClass' => Array('class'=>'ListingsEventHandler','file'=>'listings_event_handler.php','build_event'=>'OnBuild'),
- 'TagProcessorClass' => Array('class'=>'ListingsTagProcessor','file'=>'listings_tag_processor.php','build_event'=>'OnBuild'),
- 'AutoLoad' => true,
-
- 'Hooks' => Array(
- Array(
- 'Mode' => hAFTER,
- 'Conditional' => false,
- 'HookToPrefix' => 'l',
- 'HookToSpecial' => '*',
- 'HookToEvent' => Array('OnBeforeDeleteOriginal'),
- 'DoPrefix' => '',
- 'DoSpecial' => '*',
- 'DoEvent' => 'OnMoveEnhancement',
- ),
- ),
-
- 'QueryString' => Array(
- 1 => 'id',
- 2 => 'page',
- 3 => 'event',
- 4 => 'mode',
- ),
-
- 'RegularEvents' => Array(
- 'listings_expiration' => Array('EventName' => 'OnCheckExpiredPaidListings', 'RunInterval' => 1800, 'Type' => reAFTER),
- ),
-
- 'IDField' => 'ListingId',
- 'StatusField' => Array('Status', 'PendingRenewal'),
- 'TitleField' => 'LinkName',
-
- 'TitlePresets' => Array(
- 'default' => Array( 'new_status_labels' => Array('ls'=>'!la_title_AddingListing!'),
- 'edit_status_labels' => Array('ls'=>'!la_title_EditingListing!'),
- 'new_titlefield' => Array('ls'=>'!la_title_NewListing!'),
- ),
-
- 'listing_list' => Array('prefixes' => Array('ls_List'), 'format' => "!la_title_PaidListings! (#ls_recordcount#)",),
- 'listing_edit' => Array('prefixes' => Array('ls'), 'format' => "#ls_status# '#ls_titlefield#' - !la_title_General!",),
- ),
-
- 'PermSection' => Array('main' => 'in-link:paid_listings'),
-
- 'Sections' => Array(
- 'in-link:paid_listings_folder' => Array(
- 'parent' => 'in-link',
- 'icon' => 'paid_listings',
- 'label' => 'la_tab_PaidListings',
- 'permissions' => Array(),
- 'priority' => 8,
- 'type' => stTREE,
- ),
-
- 'in-link:paid_listings' => Array(
- 'parent' => 'in-link:paid_listings_folder',
- 'icon' => 'paid_listings',
- 'label' => 'la_tab_Listings',
- 'url' => Array('t' => 'in-link/paid_listings/paid_listings_list', 'pass' => 'm'),
- 'permissions' => Array('view', 'add', 'edit', 'delete', 'advanced:approve', 'advanced:decline'),
- 'priority' => 8.1,
- 'type' => stTAB,
- ),
- ),
-
- 'TableName' => TABLE_PREFIX.'Listings',
-
- 'ListSQLs' => Array( ''=>' SELECT %1$s.* %2$s
- FROM %1$s
- LEFT JOIN '.TABLE_PREFIX.'Link item_table ON item_table.ResourceId = %1$s.ItemResourceId
- LEFT JOIN '.TABLE_PREFIX.'PortalUser u ON u.PortalUserId = item_table.CreatedById'),
-
- 'ItemSQLs' => Array( ''=>' SELECT %1$s.* %2$s
- FROM %1$s
- LEFT JOIN '.TABLE_PREFIX.'Link item_table ON item_table.ResourceId = %1$s.ItemResourceId
- LEFT JOIN '.TABLE_PREFIX.'PortalUser u ON u.PortalUserId = item_table.CreatedById'),
-
- 'ListSortings' => Array(
- '' => Array(
- 'Sorting' => Array('PurchasedOn' => 'desc'),
- )
- ),
-
- 'CalculatedFields' => Array (
- '' => Array (
- 'LinkName' => 'CONCAT(item_table.Name, " (", item_table.Url, ")")',
- 'LinkOwner' => 'IF (ISNULL(u.Login), IF (item_table.CreatedById = -1, "root", IF (item_table.CreatedById = -2, "Guest", "n/a")), u.Login)',
- ),
- ),
- 'Fields' => Array
- (
- 'ListingId' => Array('type' => 'int', 'not_null' => 1, 'default' => 0,),
- 'ListingTypeId' => Array('type' => 'int', 'formatter'=>'kOptionsFormatter', 'options_sql'=>'SELECT %s FROM '.TABLE_PREFIX.'ListingTypes ORDER BY Name', 'option_key_field'=>'ListingTypeId', 'option_title_field'=>'Name', 'default' => 0,),
- 'ItemResourceId' => Array('type' => 'int', 'required' => 1, 'unique' => Array('ItemResourceId'), 'default' => NULL),
- 'PurchasedOn' => Array('type' => 'int', 'formatter'=>'kDateFormatter','default'=>'#NOW#'),
- 'ExpiresOn' => Array('type' => 'int', 'formatter'=>'kDateFormatter','default' => '#NOW#','required'=>1),
- 'Status' => Array('type' => 'int', 'not_null' => 1, 'default' => 2, 'formatter'=>'kOptionsFormatter','options' => Array(1 => 'la_Active', 2 => 'la_Pending', 0 => 'la_Disabled'),'use_phrases' => 1),
- 'PendingRenewal' => Array('type' => 'int','formatter'=>'kOptionsFormatter','options' => Array(0 => 'la_NotPendingRenewal', 1 => 'la_PendingRenewal'),'use_phrases' => 1, 'not_null' => 1, 'default' => 0),
- 'RenewalReminderSent' => Array('type' => 'int', 'not_null' => 1, 'default' => 0),
- ),
-
- 'VirtualFields' => Array (
- 'LinkName' => Array ('type' => 'string'),
- 'LinkOwner' => Array ('type' => 'string'),
- ),
-
- 'FilterMenu' => Array(
- 'Groups' => Array(
- Array('mode' => 'AND', 'filters' => Array(0,1,2), 'type' => WHERE_FILTER),
- Array('mode' => 'AND', 'filters' => Array(3), 'type' => WHERE_FILTER),
- ),
-
- 'Filters' => Array(
- 0 => Array('label' =>'la_Enabled', 'on_sql' => '', 'off_sql' => '%1$s.Status != 1' ),
- 1 => Array('label' => 'la_Disabled', 'on_sql' => '', 'off_sql' => '%1$s.Status != 0' ),
- 2 => Array('label' => 'la_Pending', 'on_sql' => '', 'off_sql' => '%1$s.Status != 2' ),
- 3 => Array('label' => 'la_PendingRenewal', 'on_sql' => '', 'off_sql' => '%1$s.PendingRenewal != 1' ),
- )
- ),
-
- 'Grids' => Array(
- 'Default' => Array(
- 'Icons' => Array('default'=>'icon17_custom.gif','1_0'=>'icon16_listing.gif','0_0'=>'icon16_listing_disabled.gif','2_0'=>'icon16_listing_pending.gif', '1_1'=>'icon16_listing_pending.gif','0_1'=>'icon16_listing_disabled.gif','2_1'=>'icon16_listing_pending.gif'),
- 'Fields' => Array(
- 'ListingId' => Array( 'title'=>'la_col_Id' , 'data_block' => 'grid_checkbox_td'),
- 'ListingTypeId' => Array( 'title'=>'la_col_ListingTypeName' , 'data_block' => 'listing_type_td'),
- 'LinkName' => Array( 'title'=>'la_col_LinkName' , 'data_block' => 'link_td'),
- 'LinkOwner' => Array( 'title'=>'la_col_LinkOwner'),
- 'PendingRenewal' => Array( 'title'=>'la_col_PendingRenewal' ),
- 'PurchasedOn' => Array( 'title'=>'la_col_PurchasedOn' ),
- 'ExpiresOn' => Array( 'title'=>'la_col_ExpiresOn' ),
- ),
-
- ),
- ),
- );
-
-?>
\ No newline at end of file
Property changes on: trunk/in-link/units/listings/listings_config.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.18
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-link/units/listings/listings_event_handler.php
===================================================================
--- trunk/in-link/units/listings/listings_event_handler.php (revision 12828)
+++ trunk/in-link/units/listings/listings_event_handler.php (nonexistent)
@@ -1,750 +0,0 @@
-<?php
-
-class ListingsEventHandler extends kDBEventHandler {
-
- /**
- * Allows to override standart permission mapping
- *
- */
- function mapPermissions()
- {
- parent::mapPermissions();
- $permissions = Array(
- // front
- 'OnRequestEnhancement' => Array ('self' => true),
- 'OnCancelEnhancement' => Array ('self' => true),
- 'OnExtendEnhancement' => Array ('self' => true),
-
- );
- $this->permMapping = array_merge($this->permMapping, $permissions);
- }
-
- /**
- * Adds selected link to listing
- *
- * @param kEvent $event
- */
- function OnProcessSelected(&$event)
- {
- $object =& $event->getObject();
-
- $selected_ids = $this->Application->GetVar('selected_ids');
- if ($selected_ids['l']) {
- $link_id = $selected_ids['l'];
- $sql = 'SELECT ResourceId
- FROM '.$this->Application->getUnitOption('l', 'TableName').'
- WHERE '.$this->Application->getUnitOption('l', 'IDField').' = '.$link_id;
-
- $object->SetDBField($this->Application->RecallVar('dst_field'), $this->Conn->GetOne($sql));
- $object->IgnoreValidation = true;
- // $this->RemoveRequiredFields($object);
- $object->Update();
- }
-
- $this->finalizePopup($event);
- }
-
- function OnPreSaveListing(&$event)
- {
- $event->redirect=false;
- $object =& $event->getObject( Array('skip_autoload' => true) );
- $object->IgnoreValidation = true;
- // $this->RemoveRequiredFields($object);
- $event->CallSubEvent('OnPreSave');
- $this->Application->SetVar($event->getPrefixSpecial(true).'_id', $object->GetId());
- return;
- }
-
- function OnBeforeItemUpdate(&$event)
- {
- $object =& $event->getObject();
- if($object->IgnoreValidation)
- {
- $object->UpdateFormattersMasterFields();
- }
- }
-
- function OnBeforeItemCreate(&$event)
- {
- $object =& $event->getObject();
- if($object->IgnoreValidation)
- {
- $object->UpdateFormattersMasterFields();
- }
- }
-
- /**
- * Enter description here...
- *
- * @param kEvent $event
- */
- function OnBeforeDeleteFromLive(&$event)
- {
- $object =& $event->getObject();
- $sql = 'SELECT * FROM '.$this->Application->getUnitOption($event->Prefix, 'TableName').'
- WHERE ListingId = '.$object->GetId();
- $original_values = $this->Conn->GetRow($sql);
-
- $type_modified = ($object->GetDBField('ListingTypeId') != $original_values['ListingTypeId']);
- $link_modified = ($object->GetDBField('ItemResourceId') != $original_values['ItemResourceId']);
- $status_modified = ($object->GetDBField('Status') != $original_values['Status']);
-
- if($status_modified)
- {
- $email_event = $object->GetDBField('Status') ? 'LINK.ENHANCE.APPROVE' : 'LINK.ENHANCE.APPROVE';
- $sql = 'SELECT CreatedById FROM '.$this->Application->getUnitOption('l', 'TableName').'
- WHERE ResourceId = '.$object->GetDBField('ItemResourceId');
- $email_event_user =& $this->Application->EmailEventUser($email_event, $this->Conn->GetOne($sql));
- $email_event_admin =& $this->Application->EmailEventAdmin($email_event);
- }
-
- if( $type_modified || $link_modified )
- {
- $this->ResetLink($original_values);
- }
-
- if( $status_modified || $type_modified || $link_modified )
- {
- $this->EnhanceLink($object, $original_values);
- }
-
- if( $status_modified && !($type_modified || $link_modified) )
- {
- $this->ResetLink($original_values);
- }
- }
-
- function EnhanceLink(&$object, $original_values)
- {
- if ($object->GetDBField('Status') != STATUS_ACTIVE) {
- return false;
- }
-
- if ($object->GetDBField('ExpiresOn') < adodb_mktime()) {
- $object->SetDBField('Status', STATUS_PENDING);
- $object->Update();
- $this->ResetLink($original_values);
- return false;
- }
-
- $this->UpdateLink('OnPurchase', $object->GetDBField('ItemResourceId'), $object->GetDBField('ListingTypeId'));
-
- $listtype_object =& $this->Application->recallObject('lst');
- if( $listtype_object->GetDBField('OnPurchaseAddToCatEnabled') )
- {
- $link_object =& $this->Application->recallObject('l');
- $add_to_cat = (int)$listtype_object->GetDBField('OnPurchaseAddToCat');
- $sql = 'DELETE FROM '.$this->Application->getUnitOption('l-ci', 'TableName').'
- WHERE CategoryId = '.$add_to_cat.'
- AND ItemResourceId = '.$link_object->GetDBField('ResourceId').'
- AND PrimaryCat = 0';
- $this->Conn->Query($sql);
- $sql = 'INSERT INTO '.$this->Application->getUnitOption('l-ci', 'TableName').'
- (CategoryId, ItemResourceId, PrimaryCat)
- VALUES ('.$add_to_cat.', '.$link_object->GetDBField('ResourceId').', 0)';
- $this->Conn->Query($sql);
- }
- }
-
- function ResetLink($original_values)
- {
- static $has_been_reset = Array();
-
- if( $original_values['Status'] != STATUS_ACTIVE ||
- getArrayValue($has_been_reset, $original_values['ListingId']) )
- {
- return;
- }
-
- $has_been_reset[$original_values['ListingId']] = 1;
-
- $this->UpdateLink('OnExpire', $original_values['ItemResourceId'], $original_values['ListingTypeId']);
-
- $listtype_object =& $this->Application->recallObject('lst');
- if( $listtype_object->GetDBField('OnExpireRemoveFromCatEnabled') )
- {
- $remove_from_cat = $listtype_object->GetDBField('OnExpireRemoveFromCat');
- $sql = 'DELETE FROM '.$this->Application->getUnitOption('l-ci', 'TableName').'
- WHERE ItemResourceId = '.$original_values['ItemResourceId'].'
- AND CategoryId = '.$remove_from_cat.'
- AND PrimaryCat = 0';
- $this->Conn->Query($sql);
- }
- }
-
- function UpdateLink($action_prefix, $resource_id, $listtype_id)
- {
-
- $link_object =& $this->Application->recallObject('l', null, Array('skip_autoload' => true));
- $link_object->Load($resource_id, 'ResourceId');
-
- // "-item", because can be called as regular after event, and just "lst" recalls list instead
- $listtype_object =& $this->Application->recallObject('lst.-item', null, Array('skip_autoload' => true));
- $listtype_object->Load($listtype_id);
-
- $action_fields = Array( 'EdPick' => 'EditorsPick',
- 'New' => 'NewItem',
- 'Hot' => 'HotItem',
- 'Pop' => 'PopItem',
- 'Status' => 'Status'
- );
- // $action_prefix = 'OnPurchase';
-
- foreach($action_fields as $action => $field)
- {
- $action_value = $listtype_object->GetDBField($action_prefix.$action);
- if( $action_value != 3 )
- {
- $link_object->SetDBField($field, $action_value);
- }
- }
-
- $priority_value = $listtype_object->GetDBField($action_prefix.'PriorityValue');
- switch( $listtype_object->GetDBField($action_prefix.'PriorityAction') )
- {
- case 1: // equal
- $link_object->SetDBField('Priority', $priority_value);
- break;
- case 2: // increase
- $original_priority = $link_object->GetDBField('Priority');
- $link_object->SetDBField('Priority', $original_priority + $priority_value);
- break;
- case 3: // decrease
- $original_priority = $link_object->GetDBField('Priority');
- $link_object->SetDBField('Priority', $original_priority - $priority_value);
- break;
- default:
- }
-
- $link_object->Update();
- }
-
- /**
- * Enter description here...
- *
- * @param kEvent $event
- */
- function OnRequestEnhancement(&$event)
- {
- if ($this->Application->isModuleEnabled('In-Commerce')) {
- $l_info = $this->Application->GetVar('l');
- if (!$l_info) {
- return false;
- }
-
- list ($link_id, $link_info) = each($l_info);
- $listing_type_id = $link_info['ListingTypeId'];
-
- $listing_type =& $this->Application->recallObject('lst', null, Array('skip_autoload' => true));
- $listing_type->Load($listing_type_id);
-
- if ($listing_type->GetDBField('EnableBuying')) {
- $add_to_cart_event = new kEvent('ord:OnAddVirtualProductToCart');
- $this->Application->HandleEvent($add_to_cart_event);
-
- if ($add_to_cart_event->redirect) {
- $event->SetRedirectParam('pass', 'm');
- $event->redirect = $add_to_cart_event->redirect;
- }
- return true;
- }
- }
-
- $event->CallSubEvent('OnListingCreate');
- }
-
- /**
- * Create listing or extend existing listing period
- *
- * @param kEvent $event
- */
- function OnListingCreate(&$event)
- {
- $object =& $event->getObject( Array('skip_autoload' => true) );
-
- switch ($event->Name) {
- case 'EnhanceLinkAfterOrderApprove':
- case 'EnhancedLinkOnCompleteOrder':
- // when order with listing virtual product is approved
- $fields = $event->getEventParam('field_values');
- $item_data = unserialize($fields['ItemData']);
- $listing_type_id = $item_data['ListingTypeId'];
- $link_id = $item_data['LinkId'];
-
- $new_processing = getArrayValue($item_data, 'HasNewProcessing');
- break;
-
- case 'OnListingCreate':
- // when requesting enhancement from front (and not via in-commerce)
- $links_info = $this->Application->GetVar('l');
- if (!$links_info) return false;
-
- $event->redirect = false;
- list($link_id, $link_info) = each($links_info);
- $listing_type_id = $link_info['ListingTypeId'];
-
- $new_processing = false;
- break;
- }
-
- // get resource_id of link beeing enhanced
- $sql = 'SELECT ResourceId
- FROM '.$this->Application->getUnitOption('l', 'TableName').'
- WHERE LinkId = '.$link_id;
- $resource_id = $this->Conn->GetOne($sql);
-
- // get listing by link's resource_id
- $object->Load($resource_id, 'ItemResourceId');
- if ($object->isLoaded()) {
- $original_values = $object->FieldValues;
- }
- else {
- // set initial fields to listing
- $object->SetDBField('ListingTypeId', $listing_type_id);
- $object->SetDBField('ItemResourceId', $resource_id);
-
- if ($event->Name == 'OnListingCreate' || $new_processing) {
- $item_status = STATUS_PENDING;
- }
- else {
- $item_status = STATUS_ACTIVE;
- }
-
- $object->SetDBField('Status', $item_status);
- }
-
- // set date of purchase for new listings
- $purchased_on = max(adodb_mktime(), $object->GetDBField('ExpiresOn'));
- if (!$object->isLoaded()) {
- $object->SetDBField('PurchasedOn_date', $purchased_on);
- $object->SetDBField('PurchasedOn_time', $purchased_on);
- }
-
- // set expiration time for listing
- $listing_type =& $this->Application->recallObject('lst', null, Array('skip_autoload' => true));
- $listing_type->Load($listing_type_id);
-
- $dur_type_mapping = Array( 1 => 1,
- 2 => 60,
- 3 => 3600,
- 4 => 3600*24,
- 5 => 3600*24*7,
- 6 => 3600*24*365/12,
- 7 => 3600*24*365
- );
- $duration = $listing_type->GetDBField('Duration');
- $duration_type = $listing_type->GetDBField('DurationType');
- $expiration_interval = $duration * $dur_type_mapping[$duration_type];
- $expiration_date = $purchased_on + $expiration_interval;
- $object->SetDBField('ExpiresOn_date', $expiration_date);
- $object->SetDBField('ExpiresOn_time', $expiration_date);
-
- // when extending enhancement mark listing as non-received renewal reminder
- $object->SetDBField('RenewalReminderSent', 0);
-
- $action = $object->isLoaded() ? 'Update' : 'Create';
- if ($object->$action()) {
- $event->status = erSUCCESS;
- switch ($event->Name) {
- case 'EnhanceLinkAfterOrderApprove':
- case 'EnhancedLinkOnCompleteOrder':
- // when order with listing virtual product is approved
- if (getArrayValue($original_values, 'Status') != STATUS_ACTIVE) {
- $this->EnhanceLink($object, Array());
- }
- break;
-
- case 'OnListingCreate':
- // when requesting enhancement from front (and not via in-commerce)
- $event->redirect = $this->Application->GetVar('success_template');
-
- $sql = 'SELECT CreatedById FROM '.$this->Application->getUnitOption('l', 'TableName').'
- WHERE ResourceId = '.$object->GetDBField('ItemResourceId');
- $email_event_user =& $this->Application->EmailEventUser('LINK.ENHANCE', $this->Conn->GetOne($sql));
- $email_event_admin =& $this->Application->EmailEventAdmin('LINK.ENHANCE');
- break;
- }
-
-
- }
- else {
- $event->status = erFAIL;
- }
-
-
- }
-
- /**
- * Enter description here...
- *
- * @param kEvent $event
- */
- function EnhancedLinkOnCompleteOrder(&$event)
- {
- // create enhancement, but pending
- $this->OnListingCreate($event);
-
- // save created listing_id back to itemdata
- $object =& $event->getObject( Array('skip_autoload' => true) );
- $fields = $event->getEventParam('field_values');
- $item_data = unserialize($fields['ItemData']);
- unset($item_data['ListingTypeId']);
- $item_data['ListingId'] = $object->GetID();
-
- $orditems_idfield = $this->Application->getUnitOption('orditems', 'IDField');
- $orditems_table = $this->Application->getUnitOption('orditems', 'TableName');
-
- $this->Conn->doUpdate( Array('ItemData' => serialize($item_data)), $orditems_table, $orditems_idfield.' = '.$fields['OrderItemId'] );
- }
-
- /**
- * Enter description here...
- *
- * @param kEvent $event
- */
- function EnhanceLinkAfterOrderApprove(&$event)
- {
- $object =& $event->getObject( Array('skip_autoload' => true) );
- $fields = $event->getEventParam('field_values');
- $item_data = unserialize($fields['ItemData']);
-
- if ( getArrayValue($item_data, 'HasNewProcessing') ) {
- // new processing: just approve created listing here
- $listing_id = $item_data['ListingId'];
- $object->Load($listing_id);
-
- // moved enhancement period to time admin approved enhancement
- $time_diff = adodb_mktime() - $object->GetDBField('PurchasedOn');
- $object->SetDBField('PurchasedOn_date', $object->GetDBField('PurchasedOn_date') + $time_diff);
- $object->SetDBField('PurchasedOn_time', $object->GetDBField('PurchasedOn_time') + $time_diff);
- $object->SetDBField('ExpiresOn_date', $object->GetDBField('ExpiresOn_date') + $time_diff);
- $object->SetDBField('ExpiresOn_time', $object->GetDBField('ExpiresOn_time') + $time_diff);
-
- $object->SetDBField('Status', STATUS_ACTIVE);
- $object->Update();
-
- $this->EnhanceLink($object, Array());
- return true;
- }
- else {
- // create listing & approve it at the same time
- $this->OnListingCreate($event);
- }
- }
-
- /**
- * Delete listing
- *
- * @param kEvent $event
- */
- function EnhanceLinkAfterOrderDeny(&$event)
- {
- $object =& $event->getObject( Array('skip_autoload' => true) );
- $fields = $event->getEventParam('field_values');
- $item_data = unserialize($fields['ItemData']);
- $listing_id = $item_data['ListingId'];
-
- $temp_handler =& $this->Application->recallObject($event->getPrefixSpecial().'_TempHandler', 'kTempTablesHandler');
- $temp_handler->DeleteItems($event->Prefix, $event->Special, Array($listing_id));
- }
-
- /**
- * Enter description here...
- *
- * @param kEvent $event
- */
- function ExpireLink(&$event)
- {
- $object =& $event->getObject( Array('skip_autoload' => true) );
- $fields = $event->getEventParam('field_values');
- $item_data = unserialize($fields['ItemData']);
- $sql = 'SELECT ListingId FROM '.$this->Application->getUnitOption($event->Prefix, 'TableName').'
- WHERE ItemResourceId = '.$item_data['LinkId'];
- $listing_id = $this->Conn->GetOne($sql);
- $object->Load($listing_id);
- $original_values = $object->FieldValues;
- $object->SetDBField('Status', 2);
-
- if($object->Update())
- {
- $event->status = erSUCCESS;
- $this->ResetLink($original_values);
- }
- else
- {
- $event->status = erFAIL;
- }
- }
-
- function iterateItems(&$event)
- {
- $object =& $event->getObject( Array('skip_autoload' => true) );
- $ids = $this->StoreSelectedIDs($event);
-
- if($event->Name == 'OnMassApprove')
- {
- foreach($ids as $id)
- {
- $object->Load($id);
- if($object->GetDBField('Status') != 1)
- {
- $original_values = $object->FieldValues;
- $object->SetDBField('Status', 1);
- $this->EnhanceLink($object, $original_values);
- }
- }
- }
- if($event->Name == 'OnMassDecline')
- {
- foreach($ids as $id)
- {
- $object->Load($id);
- if($object->GetDBField('Status') == 1)
- {
- $original_values = $object->FieldValues;
- $this->ResetLink($original_values);
-
- $sql = 'SELECT CreatedById FROM '.$this->Application->getUnitOption('l', 'TableName').'
- WHERE ResourceId = '.$object->GetDBField('ItemResourceId');
- $email_event_user =& $this->Application->EmailEventUser('LINK.ENHANCE.DENY', $this->Conn->GetOne($sql));
- $email_event_admin =& $this->Application->EmailEventAdmin('LINK.ENHANCE.DENY');
- }
- }
- }
- parent::iterateItems($event);
- if($event->Name == 'OnMassApprove')
- {
- $lst_object =& $this->Application->recallObject('lst', null, Array('skip_autoload' => true));
- $ids = $this->getSelectedIDs($event);
- if($ids)
- {
- foreach($ids as $id)
- {
- $object->Load($id);
- $sql = 'SELECT CreatedById FROM '.$this->Application->getUnitOption('l', 'TableName').'
- WHERE ResourceId = '.$object->GetDBField('ItemResourceId');
- $owner_id = $this->Conn->GetOne($sql);
- if($object->GetDBField('PendingRenewal') == 1)
- {
- $lst_object->Load( $object->GetDBField('ListingTypeId') );
- $dur_type_mapping = Array( 1 => 1,
- 2 => 60,
- 3 => 3600,
- 4 => 3600*24,
- 5 => 3600*24*7,
- 6 => 3600*24*365/12,
- 7 => 3600*24*365
- );
- $duration = $lst_object->GetDBField('Duration');
- $duration_type = $lst_object->GetDBField('DurationType');
- $expiration_interval = $duration * $dur_type_mapping[$duration_type];
- $renewal_begins = max( adodb_mktime(), $object->GetDBField('ExpiresOn') );
- $expiration_date = $renewal_begins + $expiration_interval;
-
- $object->SetDBField('ExpiresOn_date', $expiration_date);
- $object->SetDBField('ExpiresOn_time', $expiration_date);
-
- $object->SetDBField('RenewalReminderSent', 0);
- $object->SetDBField('PendingRenewal', 0);
-
- if( $object->Update() )
- {
- $event->status=erSUCCESS;
- $event->redirect_params = Array('opener' => 's'); //stay!
- $email_event_user =& $this->Application->EmailEventUser('LINK.ENHANCE.RENEW', $owner_id);
- $email_event_admin =& $this->Application->EmailEventAdmin('LINK.ENHANCE.RENEW');
- }
- else
- {
- $event->status=erFAIL;
- $event->redirect=false;
- break;
- }
- }
- else
- {
- $email_event_user =& $this->Application->EmailEventUser('LINK.ENHANCE.APPROVE', $owner_id);
- $email_event_admin =& $this->Application->EmailEventAdmin('LINK.ENHANCE.APPROVE');
- }
- }
- }
- }
- }
-
- /**
- * Redirects to cancel template on front-end
- *
- * @param kEvent $event
- */
- function OnCancel(&$event)
- {
- parent::OnCancel($event);
-
- if (!$this->Application->IsAdmin()) {
- $event->SetRedirectParam('opener', 's');
- $event->redirect = $this->Application->GetVar('cancel_template');
- }
- }
-
- /**
- * Checks that user is owner of link & returns listing id if permissions are ok
- *
- * @param kEvent $event
- * @return mixed
- */
- function verifyListingOwner(&$event)
- {
- $link_id = $this->Application->GetVar('l_id');
- $user_id = $this->Application->RecallVar('user_id');
- $sql = 'SELECT ResourceId
- FROM '.$this->Application->getUnitOption('l', 'TableName').'
- WHERE (LinkId = '.$link_id.') AND (CreatedById = '.$user_id.')';
- $resource_id = $this->Conn->GetOne($sql);
-
- if (!$resource_id) {
- $event->status = erFAIL;
- return false;
- }
-
- $sql = 'SELECT ListingId
- FROM '.$this->Application->getUnitOption($event->Prefix, 'TableName').'
- WHERE ItemResourceId = '.$resource_id;
-
- return $this->Conn->GetOne($sql);
- }
-
- function OnExtendEnhancement(&$event)
- {
- $listing_id = $this->verifyListingOwner($event);
- if (!$listing_id) {
- return ;
- }
-
- $object =& $event->getObject( Array('skip_autoload' => true) );
- $object->Load($listing_id);
-
- $object->SetDBField('PendingRenewal', 1);
- $object->Update();
- $event->redirect = $this->Application->GetVar('success_template');
-
- $sql = 'SELECT CreatedById FROM '.$this->Application->getUnitOption('l', 'TableName').'
- WHERE ResourceId = '.$object->GetDBField('ItemResourceId');
- $email_event_user =& $this->Application->EmailEventUser('LINK.ENHANCE.EXTEND', $this->Conn->GetOne($sql));
- $email_event_admin =& $this->Application->EmailEventAdmin('LINK.ENHANCE.EXTEND');
- }
-
- function OnCancelEnhancement(&$event)
- {
- $listing_id = $this->verifyListingOwner($event);
- if (!$listing_id) {
- return ;
- }
-
- $object =& $event->getObject( Array('skip_autoload' => true) );
- $object->Load($listing_id);
-
- $original_values = $object->FieldValues;
- $original_values['Status'] = 1;
- $this->ResetLink($original_values);
-
- $sql = 'SELECT CreatedById FROM '.$this->Application->getUnitOption('l', 'TableName').'
- WHERE ResourceId = '.$object->GetDBField('ItemResourceId');
- $email_event_user =& $this->Application->EmailEventUser('LINK.ENHANCE.CANCEL', $this->Conn->GetOne($sql));
- $email_event_admin =& $this->Application->EmailEventAdmin('LINK.ENHANCE.CANCEL');
-
- $object->Delete();
- $event->redirect = $this->Application->GetVar('success_template');
- }
-
- function OnCheckExpiredPaidListings(&$event)
- {
- $sql = 'SELECT ListingId FROM '.$this->Application->getUnitOption($event->Prefix, 'TableName').'
- WHERE ExpiresOn < '.adodb_mktime().' AND Status = 1';
- $expired_listings = $this->Conn->GetCol($sql);
- if(is_array($expired_listings) && count($expired_listings) > 0)
- {
- $object =& $this->Application->recallObject($event->Prefix.'.-item', null, Array('skip_autoload' => true));
- foreach($expired_listings as $listing_id)
- {
- $object->Load($listing_id);
- $original_values = $object->FieldValues;
- $this->ResetLink($original_values);
- $object->SetDBField('Status', 2);
- $object->Update();
-
- $sql = 'SELECT CreatedById FROM '.$this->Application->getUnitOption('l', 'TableName').'
- WHERE ResourceId = '.$object->GetDBField('ItemResourceId');
- $email_event_user =& $this->Application->EmailEventUser('LINK.ENHANCE.EXPIRE', $this->Conn->GetOne($sql));
- $email_event_admin =& $this->Application->EmailEventAdmin('LINK.ENHANCE.EXPIRE');
- }
- }
-
- $sql = 'SELECT ls.ListingId, l.CreatedById FROM '.$this->Application->getUnitOption($event->Prefix, 'TableName').' ls
- LEFT JOIN '.$this->Application->getUnitOption('lst', 'TableName').' lst
- ON ls.ListingTypeId = lst.ListingTypeId
- LEFT JOIN '.$this->Application->getUnitOption('l', 'TableName').' l
- ON ls.ItemResourceId = l.ResourceId
- WHERE ls.Status = 1
- AND ls.ExpiresOn < '.adodb_mktime().' + lst.RenewalReminder * 3600 *24
- AND ls.RenewalReminderSent = 0';
- $res = $this->Conn->Query($sql);
- if(is_array($res) && count($res) > 0)
- {
- $listing_ids = Array();
- foreach($res as $record)
- {
- $email_event_user =& $this->Application->EmailEventUser('LINK.ENHANCE.RENEWAL.NOTICE', $record['CreatedById']);
- $email_event_admin =& $this->Application->EmailEventAdmin('LINK.ENHANCE.RENEWAL.NOTICE');
- $listing_ids[] = $record['ListingId'];
- }
- $sql = 'UPDATE '.$this->Application->getUnitOption($event->Prefix, 'TableName').'
- SET RenewalReminderSent = 1
- WHERE ListingId IN ('.implode(',', $listing_ids).')';
- $this->Conn->Query($sql);
- }
- }
-
- function OnMassDelete(&$event)
- {
- $object =& $event->getObject( Array('skip_autoload' => true) );
- $ids = $this->StoreSelectedIDs($event);
-
- foreach($ids as $id)
- {
- $object->Load($id);
- if($object->GetDBField('Status') == 1)
- {
- $original_values = $object->FieldValues;
- $this->ResetLink($original_values);
- }
- }
- parent::OnMassDelete($event);
- }
-
- /**
- * Moves enhancement from original link to it's pending copy, that is going to be approved
- *
- * @param kEvent $event
- */
- function OnMoveEnhancement(&$event)
- {
- $id_field = $this->Application->getUnitOption($event->MasterEvent->Prefix, 'IDField');
- $item_table_name = $this->Application->getUnitOption($event->MasterEvent->Prefix, 'TableName');
-
- $pending_id = $event->MasterEvent->getEventParam('id');
- $original_id = $event->MasterEvent->getEventParam('original_id');
-
- $sql = 'SELECT ResourceId, '.$id_field.'
- FROM '.$item_table_name.'
- WHERE '.$id_field.' IN ('.$pending_id.','.$original_id.')';
- $resource_ids = $this->Conn->GetCol($sql, $id_field);
-
- $table_name = $this->Application->getUnitOption($event->Prefix, 'TableName');
- $sql = 'UPDATE '.$table_name.'
- SET ItemResourceId = '.$resource_ids[$pending_id].'
- WHERE ItemResourceId = '.$resource_ids[$original_id];
- $this->Conn->Query($sql);
- }
-}
-
-?>
\ No newline at end of file
Property changes on: trunk/in-link/units/listings/listings_event_handler.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.37
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-link/units/links/links_event_handler.php
===================================================================
--- trunk/in-link/units/links/links_event_handler.php (revision 12828)
+++ trunk/in-link/units/links/links_event_handler.php (nonexistent)
@@ -1,151 +0,0 @@
-<?php
-
- class LinksEventHandler extends kCatDBEventHandler {
-
- /**
- * Enter description here...
- *
- * @param kEvent $event
- */
- function SetCustomQuery(&$event)
- {
- parent::SetCustomQuery($event);
-
- $object =& $event->getObject();
- if (substr($event->Special, 0, 10) == 'duplicates') {
- $object->removeFilter('category_filter');
-
- $grouping = $this->getGrouping($event);
- switch ($event->Special) {
- case 'duplicates':
- foreach ($grouping as $group_field) {
- $object->AddGroupByField($group_field);
- }
- $object->addFilter('has_dupes_filter', 'DupeCount > 1', AGGREGATE_FILTER, FLT_SYSTEM);
- break;
-
- case 'duplicates-sub':
- $main_object =& $this->Application->recallObject($event->Prefix.'.duplicates');
- foreach ($grouping as $field_index => $group_field) {
- $object->addFilter('dupe_filter_'.$field_index, '%1$s.`'.$group_field.'` = '.$this->Conn->qstr($main_object->GetDBField($group_field)) );
- }
- break;
- }
- $object->addFilter('primary_filter', TABLE_PREFIX.'CategoryItems.PrimaryCat = 1');
- }
-
- }
-
- /**
- * Gets grouping fields
- *
- * @param kEvent $event
- * @return Array
- */
- function getGrouping(&$event)
- {
- // cut "sub" postfix from special
- $prefix_special = preg_replace('/(.*)-sub$/', '\\1', $event->getPrefixSpecial());
- $grouping = $this->Application->RecallVar($prefix_special.'_dupe_fields');
- if (!$grouping) {
- $grouping = '|Url|';
- $this->Application->StoreVar($prefix_special.'_dupe_fields', $grouping);
- }
- $grouping = explode('|', substr($grouping, 1, -1));
- return $grouping;
- }
-
- /**
- * Set groping fields for link duplicate checker
- *
- * @param kEvent $event
- */
- function OnSetGrouping(&$event)
- {
- $this->Application->LinkVar($event->getPrefixSpecial(true).'_dupe_fields', $event->getPrefixSpecial().'_dupe_fields');
- }
-
- /**
- * Merge duplicate links together (only categories) & delete duplicates
- *
- * @param kEvent $event
- */
- function OnMerge(&$event)
- {
- $grouping = $this->getGrouping($event);
- $ids = $this->StoreSelectedIDs($event);
- if (!$ids) return true;
-
- // check, that user has not selected multiple links from same group
- $primary_links = Array();
-
- $id_field = $this->Application->getUnitOption($event->Prefix, 'IDField');
- $table_name = $this->Application->getUnitOption($event->Prefix, 'TableName');
- $sql = 'SELECT *
- FROM '.$table_name.'
- WHERE '.$id_field.' IN ('.implode(',', $ids).')';
- $links = $this->Conn->Query($sql, $id_field);
-
- $groping_error = false;
- foreach ($links as $link_id => $link_data) {
- $group_key = '';
- foreach ($grouping as $grouping_field) {
- $group_key .= 'main_table.`'.$grouping_field.'` = '.$this->Conn->qstr($link_data[$grouping_field]).' AND ';
- }
- $group_key = preg_replace('/(.*) AND $/', '\\1', $group_key);
-
- if (isset($primary_links[$group_key])) {
- $groping_error = true;
- break;
- }
- else {
- $primary_links[$group_key] = $link_data['ResourceId'];
- }
- }
-
- if (!$groping_error) {
- $temp =& $this->Application->recallObject($event->getPrefixSpecial().'_TempHandler', 'kTempTablesHandler');
-
- $categories_sql = 'SELECT main_table.ResourceId, ci.CategoryId, main_table.'.$id_field.'
- FROM '.$table_name.' main_table
- LEFT JOIN '.TABLE_PREFIX.'CategoryItems ci ON main_table.ResourceId = ci.ItemResourceId
- WHERE %s';
-
- foreach ($primary_links as $group_key => $primary_resource_id) {
- $categories = Array();
- $group_links = Array();
- $group_categories = $this->Conn->Query(sprintf($categories_sql, $group_key));
- foreach ($group_categories as $category_data) {
- $group_links[ $category_data['ResourceId'] ] = $category_data[$id_field];
- $categories[$category_data['ResourceId'] == $primary_resource_id ? 'remove' : 'add'][] = $category_data['CategoryId'];
- }
- unset($group_links[$primary_resource_id]);
- $categories = array_unique( array_diff($categories['add'], $categories['remove']) );
- if ($categories) {
- // add link to other link categories
- $values_sql = '';
- foreach ($categories as $category_id) {
- $values_sql .= '('.$category_id.','.$primary_resource_id.',0),';
- }
- $values_sql = preg_replace('/(.*),$/', '\\1', $values_sql);
- $insert_sql = 'INSERT INTO '.TABLE_PREFIX.'CategoryItems (CategoryId,ItemResourceId,PrimaryCat) VALUES '.$values_sql;
- $this->Conn->Query($insert_sql);
- }
-
- // delete all links from group except primary
- $temp->DeleteItems($event->Prefix, $event->Special, array_values($group_links));
- }
-
-
- }
- else {
- $event->status = erFAIL;
- $event->redirect = false;
- $this->Application->SetVar($event->getPrefixSpecial().'_error', 1);
- }
-
- }
-
- }
-
-?>
\ No newline at end of file
Property changes on: trunk/in-link/units/links/links_event_handler.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-link/units/links/link_tag_processor.php
===================================================================
--- trunk/in-link/units/links/link_tag_processor.php (revision 12828)
+++ trunk/in-link/units/links/link_tag_processor.php (nonexistent)
@@ -1,222 +0,0 @@
-<?php
-
-class LinkTagProcessor extends kCatDBTagProcessor {
-
-
- /**
- * Returns object used in tag processor
- *
- * @access public
- * @return kDBBase
- */
- function &getObject($params = Array())
- {
- $object =& parent::getObject($params);
-
- // Forces item loading (compatibility with old theme)
- if (is_subclass_of($object, 'kDBItem')) {
- // force reload when using from old code
- $id = $this->Application->GetVar($this->Prefix.'_id');
- if ($object->isLoaded() && $object->GetID() != $id) {
- $object->Load($id);
- }
- }
-
- return $object;
- }
-
- function getListingInfo($resource_id, $field = null)
- {
- $sql = 'SELECT *
- FROM '.$this->Application->getUnitOption('ls', 'TableName').'
- WHERE ItemResourceId = '.$resource_id;
- $listing_info = $this->Conn->GetRow($sql);
- return isset($field) ? $listing_info[$field] : $listing_info;
- }
-
- /**
- * Detects listing enhancement status (enhanced or not)
- *
- * @param Array $params
- * @return int
- */
- function LinkIsEnhanced($params)
- {
- $object =& $this->getObject();
- /* @var $object kDBItem */
-
- if ($object->GetDBField('Status') == STATUS_PENDING || $object->GetDBField('Status') == STATUS_PENDING_EDITING) {
- return false;
- }
-
- $listing_type_id = $this->getListingInfo($object->GetDBField('ResourceId'), 'ListingTypeId');
-
- $this->Application->SetVar('lst_id', $listing_type_id); // compatibility with old-theme
- return $listing_type_id ? 1 : 0;
- }
-
- /**
- * Detects if enhancement is pending approval
- *
- * @param Array $params
- * @return int
- */
- function EnhancementIsPending($params)
- {
- $object =& $this->getObject();
- /* @var $object kDBItem */
-
- $status = $this->getListingInfo($object->GetDBField('ResourceId'), 'Status');
-
- return $status == STATUS_PENDING ? 1 : 0;
- }
-
- function ListingTypeField($params)
- {
- $object =& $this->getObject();
- /* @var $object kDBItem */
-
- $lst_id = $this->getListingInfo($object->GetDBField('ResourceId'), 'ListingTypeId');
-
- $lst_object =& $this->Application->recallObject('lst', null, Array('skip_autoload' => true));
- $lst_object->Load($lst_id);
-
- return $lst_object->GetField( $this->SelectParam($params, 'name,field') );
- }
-
- function EnhancementField($params)
- {
- $object =& $this->getObject();
- /* @var $object kDBItem */
-
- $listing_id = $this->getListingInfo($object->GetDBField('ResourceId'), 'ListingId');
-
- $listing_object =& $this->Application->recallObject('ls', null, Array('skip_autoload' => true));
- $listing_object->Load($listing_id);
-
- return $listing_object->GetField( $this->SelectParam($params, 'name,field') );
- }
-
- function IsRenewalPeriod($params)
- {
- $object =& $this->getObject();
- /* @var $object kDBItem */
-
- $listing_info = $this->getListingInfo($object->GetDBField('ResourceId'));
-
- $sql = 'SELECT RenewalReminder
- FROM '.$this->Application->getUnitOption('lst', 'TableName').'
- WHERE ListingTypeId = '.$listing_info['ListingTypeId'];
- $renewal_interval = $this->Conn->GetOne($sql) * 3600 * 24;
-
- return ($listing_info['ExpiresOn'] - adodb_mktime() < $renewal_interval) ? 1 : 0;
- }
-
- function FirstListingType($params)
- {
- static $first = true;
- if ($first) {
- $first = false;
- return true;
- }
- else {
- return false;
- }
- }
-
- function IsReocurringEnhancement($params)
- {
- $params['name'] = 'Recurring';
- return $this->ListingTypeField($params);
- }
-
- function EnhanceUsingInCommerce($params)
- {
- if (!$this->Application->isModuleEnabled('In-Commerce')) {
- return 0;
- }
-
- $object =& $this->getObject();
- /* @var $object kDBItem */
-
- $listtype_id = $this->getListingInfo($object->GetDBField('ResourceId'), 'ListingTypeId');
-
- $lst_object =& $this->Application->recallObject('lst', null, Array('skip_autoload' => true));
- $lst_object->Load($listtype_id);
-
- return $lst_object->GetDBField('EnableBuying');
- }
-
- function ClickLink($params)
- {
- $object =& $this->getObject($params);
-
- return $this->Application->HREF($params['t'], '', Array('l_id' => $object->GetID(), 'pass'=>'all,l' ));
- }
-
- function ListRelatedLinks($params)
- {
- return $this->PrintList2($params);
- }
-
- function LinkLink($params)
- {
- return $this->ItemLink($params, 'link');
- }
-
- function ListingDescription($params)
- {
- $listing_type =& $this->Application->recallObject('lst');
- /* @var $listing_type kDBItem */
-
- return $listing_type->GetDBField('Description');
- }
-
- function ListingTypeDetailsLink($params)
- {
- $listing_type =& $this->Application->recallObject('lst');
- $params['lst_id'] = $listing_type->GetID();
-
- return $this->Application->ProcessParsedTag('m', 'Link', $params);
- }
-
- function GroupTitle($params)
- {
- $object =& $this->getObject($params);
-
- $grouping = $this->Application->RecallVar($this->getPrefixSpecial().'_dupe_fields');
- $grouping = explode('|', substr($grouping, 1, -1));
-
- $ret = '';
- foreach ($grouping as $group_field) {
- $ret .= $object->GetField($group_field).', ';
- }
- return preg_replace('/(.*), $/', '\\1', $ret);
- }
-
- /**
- * Register hit & go to link url
- *
- * @param Array $params
- */
- function FollowLocation($params)
- {
- $object =& $this->getObject();
- /* @var $object kCatDBItem */
-
- if (!$object->isLoaded()) {
- trigger_error('No Link ID for redirect', E_USER_ERROR);
- }
-
- $object->RegisterHit();
- $url = $object->GetDBField('Url');
-
- if (!preg_match('/^(http|ftp|mailto:)(.*)/U', $url)) {
- $url = 'http://'.$url;
- }
-
- $this->Application->Redirect('external:'.$url);
- }
-}
-
-?>
\ No newline at end of file
Property changes on: trunk/in-link/units/links/link_tag_processor.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.20
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-link/units/links/links_config.php
===================================================================
--- trunk/in-link/units/links/links_config.php (revision 12828)
+++ trunk/in-link/units/links/links_config.php (nonexistent)
@@ -1,403 +0,0 @@
-<?php
-
-$config = Array(
- 'Prefix' => 'l',
- 'ItemClass' => Array('class'=>'kCatDBItem','file'=>'','build_event'=>'OnItemBuild'),
- 'ListClass' => Array('class'=>'kCatDBList','file'=>'','build_event'=>'OnListBuild'),
- 'EventHandlerClass' => Array('class' => 'LinksEventHandler', 'file' => 'links_event_handler.php', 'require_classes' => Array('kCatDBEventHandler'), 'build_event'=>'OnBuild'),
- 'TagProcessorClass' => Array('class'=>'LinkTagProcessor','file'=>'link_tag_processor.php', 'require_classes' => Array('kCatDBTagProcessor'), 'build_event'=>'OnBuild'),
- 'AutoLoad' => true,
-
- 'ConfigPriority' => 0,
- 'Hooks' => Array (
- Array (
- 'Mode' => hBEFORE,
- 'Conditional' => false,
- 'HookToPrefix' => '',
- 'HookToSpecial' => '*',
- 'HookToEvent' => Array('OnAfterConfigRead'),
- 'DoPrefix' => 'cdata',
- 'DoSpecial' => '*',
- 'DoEvent' => 'OnDefineCustomFields',
- ),
- ),
-
- 'QueryString' => Array(
- 1 => 'id',
- 2 => 'Page',
- 3 => 'Reviews_Page', // depricated (for old in-link)
- 4 => 'event',
- 5 => 'mode',
- ),
-
- 'AggregateTags' => Array (
- Array (
- 'AggregateTo' => 'l',
- 'AggregatedTagName' => 'ListLinks',
- 'LocalTagName' => 'PrintList2',
- ),
- ),
-
- 'CatalogItem' => true,
- 'AdminTemplatePath' => 'links',
- 'AdminTemplatePrefix' => 'links_',
- 'SearchConfigPostfix' => 'links',
-
- 'IDField' => 'LinkId',
- 'StatusField' => Array('Status'), // field, that is affected by Approve/Decline events
-
- 'ItemType' => 4,
-
- 'StatisticsInfo' => Array(
- 'pending' => Array(
- 'icon' => 'icon16_link_pending.gif',
- 'label' => 'la_Text_Links',
- 'js_url' => '#url#',
- 'url' => Array('t' => 'in-portal/advanced_view', 'SetTab' => 'l', 'pass' => 'm,l.showall', 'l.showall_event' => 'OnSetFilterPattern', 'l.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,
- ),
- ),
-
- 'TitlePhrase' => 'la_Text_Link', // phrase used to specify item type in relationship list
-
- 'ViewMenuPhrase' => 'la_title_Links',
- 'UsePendingEditing' => true, // item editing is controlled by LINK.ADD/EDIT, LINK.ADD/EDIT.PENDING permissions
-
- 'CatalogSelectorName' => 'linklist', // used in old catalog section
-
- 'ItemPropertyMappings' => Array(
- 'NewDays' => 'Link_NewDays', // number of days item to be NEW
- 'MinPopVotes' => 'Link_MinPopVotes', // minimum number of votes for an item to be POP
- 'MinPopRating' => 'Link_MinPopRating', // minimum rating for an item to be POP
- 'MaxHotNumber' => 'Link_MaxHotNumber', // maximum number of HOT items
-
- 'HotLimit' => 'Link_HotLimit', // variable name in inp_Cache table
- 'ClickField' => 'Hits', // item click count is stored here (in item table)
- ),
-
- 'TitleField' => 'Name',
-
- 'TitlePresets' => Array(
- 'default' => Array( 'new_status_labels' => Array('l'=>'!la_title_AddingLink!'),
- 'edit_status_labels' => Array('l'=>'!la_title_EditingLink!'),
- 'new_titlefield' => Array('l'=>'!la_title_NewLink!'),
- ),
-
- 'links_edit' => Array('prefixes' => Array('l'), 'format' => "#l_status# '#l_titlefield#' - !la_title_General!"),
-
- 'link_list'=>Array( 'prefixes' => Array('c_List', 'l_List'),
- 'format' => "!la_title_Categories! (#c_recordcount#) - !la_title_Links! (#l_recordcount#)",
- ),
- 'link_edit'=>Array( 'prefixes' => Array('l'),
- 'new_titlefield' => Array('l'=>'!la_title_NewLink!'),
- 'format' => "#l_status# '#l_titlefield#' - !la_title_General!",
- ),
-
- 'links_categories'=>Array('prefixes' => Array('l','l-ci_List'), 'format' => "#l_status# '#l_titlefield#' - !la_title_Categories!"),
- 'links_relations'=> Array('prefixes' => Array('l'), 'format' => "#l_status# '#l_titlefield#' - !la_title_Relations!"),
- 'links_images' => Array('prefixes' => Array('l'), 'format' => "#l_status# '#l_titlefield#' - !la_title_Images!"),
- 'links_reviews' => Array('prefixes' => Array('l'), 'format' => "#l_status# '#l_titlefield#' - !la_title_Reviews!"),
- 'links_custom' => Array('prefixes' => Array('l'), 'format' => "#l_status# '#l_titlefield#' - !la_title_Custom!"),
-
- 'images_edit' => Array( 'prefixes' => Array('l', 'l-img'),
- 'new_status_labels' => Array('l-img'=>'!la_title_Adding_Image!'),
- 'edit_status_labels' => Array('l-img'=>'!la_title_Editing_Image!'),
- 'new_titlefield' => Array('l-img'=>'!la_title_New_Image!'),
- 'format' => "#l_status# '#l_titlefield#' - #l-img_status# '#l-img_titlefield#'",
- ),
-
- 'reviews_edit' => Array( 'prefixes' => Array('l', 'l-rev'),
- 'new_status_labels' => Array('l-rev'=>"!la_title_Adding_Review! '!la_title_New_Review!'"),
- 'edit_status_labels' => Array('l-rev'=>'!la_title_Editing_Review!'),
- 'format' => "#l_status# '#l_titlefield#' - #l-rev_status#",
- ),
-
- 'relations_edit' => Array( 'prefixes' => Array('l', 'l-rel'),
- 'new_status_labels' => Array('l-rel'=>"!la_title_Adding_Relationship! '!la_title_New_Relationship!'"),
- 'edit_status_labels' => Array('l-rel'=>'!la_title_Editing_Relationship!'),
- 'format' => "#l_status# '#l_titlefield#' - #l-rel_status#",
- ),
-
- 'links_export' => Array('format' => '!la_title_LinksExport!'),
-
- 'links_import' => Array('format' => '!la_title_ImportLinks!'),
-
- 'duplicate_links' => Array('prefixes' => Array('l.duplicates_List'), 'format' => "!la_title_DuplicateLinks! (#l.duplicates_recordcount#)"),
-
- 'tree_in-link' => Array('format' => '!la_Text_Version! '.$this->Application->findModule('Name', 'In-Link', 'Version')),
- ),
-
- 'PermItemPrefix' => 'LINK',
-
- 'PermTabText' => 'In-Link',
- 'PermSection' => Array('main' => 'CATEGORY:in-link:links_list', 'search' => 'in-link:configuration_search', 'email' => 'in-link:configuration_email', 'custom' => 'in-link:configuration_custom'),
-
- 'Sections' => Array(
- 'in-link' => Array(
- 'parent' => 'in-portal:root',
- 'icon' => 'settings_in-link',
- 'label' => 'la_title_In-Link',
- 'url' => Array('t' => 'sections_list', 'pass_section' => true, 'pass' => 'm'),
- 'permissions' => Array('view'),
- 'priority' => 3.1,
- 'type' => stTREE,
- ),
-
- 'in-link:inlink_general' => Array(
- 'parent' => 'in-link',
- '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-link:configuration_output' => Array(
- 'parent' => 'in-link',
- '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-link:configuration_search' => Array(
- 'parent' => 'in-link',
- 'icon' => 'settings_search',
- 'label' => 'la_tab_ConfigSearch',
- 'url' => Array('t' => 'config/config_search', 'module_key' => 'links', 'pass_section' => true, 'pass' => 'm'),
- 'permissions' => Array('view', 'edit'),
- 'priority' => 3,
- 'type' => stTREE,
- ),
-
- 'in-link:configuration_email' => Array(
- 'parent' => 'in-link',
- 'icon' => 'settings_email',
- 'label' => 'la_tab_ConfigE-mail',
- 'url' => Array('t' => 'config/config_email', 'pass_section' => true, 'pass' => 'm'),
- 'permissions' => Array('view', 'edit'),
- 'priority' => 4,
- 'type' => stTREE,
- ),
-
- 'in-link:configuration_custom' => Array(
- 'parent' => 'in-link',
- 'icon' => 'settings_custom',
- 'label' => 'la_tab_ConfigCustom',
- 'url' => Array('t' => 'custom_fields/custom_fields_list', 'cf_type' => 4, 'pass_section' => true, 'pass' => 'm,cf'),
- 'permissions' => Array('view', 'add', 'edit', 'delete'),
- 'priority' => 5,
- 'type' => stTREE,
- ),
-
- 'in-link:duplicate_checker' => Array(
- 'parent' => 'in-link',
- 'icon' => 'duplicate_checker',
- 'label' => 'la_tab_DuplicateChecker',
- 'url' => Array('t' => 'in-link/duplicate_checker', 'pass' => 'm'),
- 'permissions' => Array('view', 'add', 'edit', 'delete'),
- 'priority' => 6,
- 'type' => stTREE,
- ),
-
- 'in-link:validation_list' => Array(
- 'parent' => 'in-link',
- 'icon' => 'validate',
- 'label' => 'la_tab_LinkValidation',
- 'url' => Array('index_file' => '../in-link/admin/validation.php', 'pass' => 'm'),
- 'permissions' => Array('view', 'add', 'edit'),
- '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' ),
- )
- ),
-
- 'TableName' => TABLE_PREFIX.'Link',
-
- 'CalculatedFields' => Array (
- '' => Array (
- 'UserName' => 'IF (ISNULL(u.Login), IF (%1$s.CreatedById = -1, "root", IF (%1$s.CreatedById = -2, "Guest", "n/a")), u.Login)',
- 'CategoryId' => TABLE_PREFIX.'%3$sCategoryItems.CategoryId',
- 'Filename' => TABLE_PREFIX.'%3$sCategoryItems.Filename',
- 'CategoryFilename' => TABLE_PREFIX.'Category.NamedParentPath',
- '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',
- ),
- ),
-
- 'CacheModRewrite' => true,
-
- 'AggregatedCalculatedFields' => Array(
-
- 'duplicates' => Array (
- 'DupeCount' => 'COUNT(*)',
- ),
- ),
-
-
- '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.CreatedById = u.PortalUserId
- LEFT JOIN '.TABLE_PREFIX.'%3$sLinkCustomData cust ON %1$s.ResourceId = cust.ResourceId',
-
- ), // key - special, value - list select sql
-
- 'ListSortings' => Array(
- '' => Array(
- 'ForcedSorting' => Array('EditorsPick' => 'desc', 'Priority' => 'desc'),
- 'Sorting' => Array('Name' => 'asc', 'Description' => 'desc'),
- )
- ),
- '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.CreatedById = u.PortalUserId
- LEFT JOIN '.TABLE_PREFIX.'%3$sLinkCustomData cust ON %1$s.ResourceId = cust.ResourceId'),
-
- 'SubItems' => Array('l-rev', 'l-ci', 'l-rel', 'l-img', 'l-cdata', 'l-fav'),
-
- 'Fields' => Array (
- 'LinkId' => Array('type' => 'int', 'not_null' => 1, 'default' => 0,),
- 'Name' => Array('type' => 'string', /*'formatter' => 'kMultiLanguage',*/ 'not_null' => 1, 'required' => 1, 'max_len' => 255, 'default' => ''),
- 'AutomaticFilename' => Array('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array(1 => 'la_Yes', 0 => 'la_No'), 'use_phrases' => 1, 'not_null' => 1, 'default' => 1),
- 'Description' => Array('type' => 'string', /*'formatter' => 'kMultiLanguage',*/ 'default' => null),
- 'Url' => Array('type' => 'string', 'not_null' => 1, 'required' => 1, 'default' => ''),
- 'CreatedOn' => Array('type' => 'int', 'formatter' => 'kDateFormatter', 'default' => '#NOW#'),
- 'Modified' => Array('type' => 'int', 'formatter' => 'kDateFormatter', 'default' => '#NOW#'),
- 'Expire' => Array('type' => 'int', 'formatter' => 'kDateFormatter', 'default' => null),
- 'Hits' => Array('type' => 'double', 'formatter' => 'kFormatter', 'format' => '%d', 'not_null' => 1, 'default' => 0),
- 'CachedRating' => Array('type' => 'string', 'not_null' => 1, 'formatter' => 'kFormatter', 'default' => 0),
- 'CachedVotesQty' => Array('type' => 'int', 'formatter' => 'kFormatter', 'not_null' => 1, 'default' => 0),
- 'CachedReviewsQty' => Array('type' => 'int', 'not_null' => 1, 'default' => 0),
- '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', 'not_null' => 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' => -1),
- 'Priority' => Array('type' => 'int', '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),
- 'EditorsPick' => Array('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array (1 => 'la_Yes', 0 => 'la_No'), 'use_phrases' => 1, 'not_null' => 1, 'default' => 0),
- 'ResourceId' => Array('type' => 'int', 'default' => null),
- '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),
- '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),
- '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),
- 'OrgId' => Array('type' => 'int', 'default' => null),
- ),
-
- 'VirtualFields' => Array(
- 'UserName' => Array('type' => 'string', 'default' => ''),
- 'DupeCount' => Array('type' => 'string', 'default' => ''),
-
- // export related fields: begin
- 'CategoryId' => Array('type' => 'int', 'default' => 0),
- 'ExportFormat' => Array('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array(1 => 'CSV', /*2 => 'XML'*/), 'default' => 1),
- 'ExportFilename' => Array('type' => 'string', 'default' => ''),
- 'FieldsSeparatedBy' => Array('type' => 'string', 'default' => ','),
- 'FieldsEnclosedBy' => Array('type' => 'string', 'default' => '"'),
- 'LineEndings' => Array('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array(1 => 'Windows', 2 => 'UNIX'), 'default' => 1),
- 'LineEndingsInside' => Array('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array(1 => 'CRLF', 2 => 'LF'), 'default' => 2),
- 'IncludeFieldTitles' => Array('type' => 'int', 'default' => 1),
- 'ExportColumns' => Array('type' => 'string', 'formatter' => 'kOptionsFormatter', 'options' => Array()),
- 'AvailableColumns' => Array('type' => 'string', 'formatter' => 'kOptionsFormatter', 'options' => Array()),
- 'CategoryFormat' => Array('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array(1 => 'la_MixedCategoryPath', 2 => 'la_SeparatedCategoryPath'), 'default' => 1),
- 'CategorySeparator' => Array('type' => 'string', 'default' => ':'),
- 'IsBaseCategory' => Array('type' => 'int', 'default' => 0),
- // export related fields: end
-
- // import related fields: begin
- 'FieldTitles' => Array('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array(1 => 'la_Automatic', 2 => 'la_Manual'), 'default' => 1),
- 'ImportSource' => Array('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array(1 => 'la_Upload', 2 => 'la_Local'), 'default' => 2),
- 'ImportFilename' => Array('type' => 'string', 'formatter' => 'kUploadFormatter', 'max_size' => MAX_UPLOAD_SIZE, 'upload_dir' => '/admin/export/'),
- 'ImportLocalFilename' => Array('type' => 'string', 'formatter' => 'kOptionsFormatter', 'default' => ''),
- 'CheckDuplicatesMethod' => Array('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array(1 => 'la_IDField', 2 => 'la_OtherFields'), 'default' => 1),
- 'ReplaceDuplicates' => Array('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array(0 => 'la_No', 1 => 'la_Yes'), 'use_phrases' => 1, 'default' => 0),
- 'DuplicateCheckFields' => Array('type' => 'string', 'formatter' => 'kOptionsFormatter', 'options' => Array('Name' => 'NAME', 'Url' => 'URL'), 'default' => '|Name|Url|'),
- 'SkipFirstRow' => Array('type' => 'int', 'formatter' => 'kOptionsFormatter', 'options' => Array(1 => 'la_Yes', 0 => 'la_No'), 'default' => 1),
- // import related fields: end
-
- 'ThumbnailImage' => Array('type' => 'string', 'default' => ''),
- 'FullImage' => Array('type' => 'string', 'default' => ''),
- 'ImageAlt' => Array('type' => 'string', 'default' => ''),
-
- 'Filename' => Array('type' => 'string','not_null' => 1,'default' => ''),
- 'CachedNavbar' => Array('type' => 'string', 'default' => ''),
- 'ParentPath' => Array('type' => 'string', 'default' => ''),
-
- // 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(0 => 'icon16_link_disabled.gif', 1 => 'icon16_link.gif', 2 => 'icon16_link_pending.gif', -2 => 'icon16_link_pending.gif', 'HOT' => 'icon16_link_hot.gif', 'POP' => 'icon16_link_pop.gif', 'NEW' => 'icon16_link_new.gif', 'PICK' => 'icon16_link_pick.gif'),
- 'Fields' => Array(
- 'Name' => Array( 'title'=>'la_col_LinkName' , 'data_block' => 'grid_checkbox_td'),
- 'Url' => Array( 'title'=>'la_col_LinkUrl' ),
- 'Description' => Array( 'title'=>'la_col_Description' ),
- 'Modified' => Array( 'title'=>'la_col_Modified' ),
- ),
-
- ),
-
-
- 'Duplicates' => Array( 'Icons' => Array('default' => 'icon16_link.gif'),
- 'Fields' => Array(
- 'Name' => Array( 'title'=>'la_col_LinkName' , 'data_block' => 'grid_checkbox_td'),
- 'Url' => Array( 'title'=>'la_col_LinkUrl' ),
- 'Description' => Array( 'title'=>'la_col_Description' ),
- 'Modified' => Array( 'title'=>'la_col_Modified' ),
- ),
-
- ),
- ),
-
-
- 'ConfigMapping' => Array(
- 'PerPage' => 'Perpage_Links',
- 'ShortListPerPage' => 'Perpage_Links_Short',
- 'DefaultSorting1Field' => 'Link_SortField',
- 'DefaultSorting2Field' => 'Link_SortField2',
- 'DefaultSorting1Dir' => 'Link_SortOrder',
- 'DefaultSorting2Dir' => 'Link_SortOrder2',
- ),
- );
-?>
\ No newline at end of file
Property changes on: trunk/in-link/units/links/links_config.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.75
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-link/parser.php
===================================================================
--- trunk/in-link/parser.php (revision 12828)
+++ trunk/in-link/parser.php (nonexistent)
@@ -1,1409 +0,0 @@
-<?php
-global $ItemTypes,$ParserFiles;
-
-/* this function is not a tag, but its used by the list-centric functions */
-function LoadLinkList($attribs=array())
-{
- global $objLinkList, $objSession, $l_var_list, $l_var_list_update, $CacheAttribs;
-
- static $PagingList;
-
- $ListType = strtolower(getArrayValue($attribs,'_listtype'));
-
- if(!strlen($ListType))
- $ListType="category";
-
- $LastList = $objSession->GetVariable("LinkListType");
- $LastShortType = $objSession->GetVariable("LinkShortList");
- $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)
- {
- $objLinkList->EnablePaging = TRUE;
- //echo "Last: $LastList, Short: $LastShortType Current: $ListType, Short:".$attribs["_shortlist"]."<br>\n";
- if($LastList != $ListType || $LastShortType != $attribs["_shortlist"])
- {
- //echo "Resetting Page..<br>\n";
- $l_var_list_update["p"] = 1;
- $l_var_list["p"] = 1;
- $objSession->SetVariable("LinkListType",$ListType);
- $objSession->SetVariable("LinkShortList",$attribs["_shortlist"]);
- $objLinkList->Page = 1;
- }
- else
- $objLinkList->Page=$l_var_list["p"];
- }
- else
- {
- if(is_numeric(getArrayValue($attribs,'_maxcount')))
- {
- $objLinkList->MaxListCount = $attribs["_maxcount"];
- }
- else {
- $objLinkList->MaxListCount = 10;
- }
-
- $objLinkList->EnablePaging = FALSE;
- }
- $objLinkList->ListType=$ListType;
-
- switch($ListType)
- {
- case "category":
- $objLinkList->LoadListCategory($attribs);
- break;
- case "myitems":
- $objLinkList->LoadMyItems($attribs);
- break;
- case "hot":
- $objLinkList->LoadHotItems($attribs);
- break;
- case "pop":
- $objLinkList->LoadPopItems($attribs);
- break;
- case "pick":
- $objLinkList->LoadPickItems($attribs);
- break;
- case "favorites":
- $objLinkList->LoadFavorites($attribs);
- break;
- case "search":
- $attribs['multiple'] = 'links';
- $objLinkList->LoadSearchItems($attribs);
- break;
- case "new":
- $objLinkList->LoadNewItems($attribs);
- break;
- case "my_new":
- $scope = $objSession->CurrentUser->Vars["LastLogin"];
- $attribs["_scope"] = $scope;
- $attribs["_show_since_last"] = 1;
- //print_pre($objSession->CurrentUser);
- if (is_numeric($scope) && $scope > 0) {
- $objLinkList->LoadNewItems($attribs);
- }
- break;
- default:
- $objLinkList->Clear();
- break;
- } /* end of switch */
-}
-
-
-function l_ParseEnv($str = NULL)
-{
- global $l_var_list, $objSession, $orderByClause, $objConfig;
-
- if ($str != NULL)
- {
- if( substr($str,0,2) == 'l-' )
- {
- $str = preg_replace('/^([a-zA-Z]+)-([0-9]+)-(.*)/','\\1\\2-\\3', $str);
- }
-
- $str = substr($str,1);
- $pieces = explode("-", $str);
- $l_var_list["id"] = $pieces[0];
- $l_var_list["p"] = $pieces[1];
- $l_var_list["rp"] = $pieces[2];
-// $l_var_list['event'] = $pieces[3];
- ResetPage('l');
- }
- else
- {
- $l_var_list["id"] = 0;
- $l_var_list["p"] = 1;
- $l_var_list["rp"] = 1;
-// $l_var_list['event'] = '';
- }
-}
-
-function l_LoadEnv()
-{
- global $objSession, $l_var_list;
-
- $str = $objSession->GetVariable("Env_Link");
- l_ParseEnv($str);
-}
-
-function l_SaveEnv($str="")
-{
- global $objSession;
-
- $str = $objSession->SetVariable("Env_Link",$str);
-}
-
-function l_BuildEnv()
-{
- $module_vars = Array('id','p','rp','event');
- return GenerateModuleEnv('l', $module_vars);
-}
-
-function l_BuildEnv_NEW()
-{
- $module_vars = Array('id' => 'l_id', 'p' => 'l_Page', 'rp' => 'l_Reviews_Page', 'event' => 'l_event');
- return GenerateModuleEnv_NEW('l', $module_vars);
-}
-
-/*
- @description: returns the date of the last modification to the link table
- @attrib: _Part:: part of the date to display
- @attrib: _local:bool: If set, returns the modified date for the current category (and subcats)
- @example: <inp:l_link_modified />
-*/
-function l_link_modified($attribs)
-{
- global $objConfig, $objCatList;
- $ret='';
- $CachedValue = GetTagCache("inlink","l_link_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,MAX(CreatedOn) as NewDate FROM ".GetTablePrefix()."Link ";
- $sql .= "INNER JOIN ".GetTablePrefix()."CategoryItems ON (".GetTablePrefix()."Link.ResourceId=".GetTablePrefix()."CategoryItems.ItemResourceId) ";
- $sql .= "WHERE $catwhere LIMIT 1";
- }
- else
- {
- $sql = "SELECT MAX(Modified) as ModDate, MAX(CreatedOn) As NewDate FROM ".GetTablePrefix()."Link LIMIT 1";
- }
- $rs = $ado->Execute($sql);
- if($rs && ! $rs->EOF)
- {
- $new = $rs->fields["NewDate"];
- $mod = $rs->fields["ModDate"];
- if($new>$mod) $mod = $new;
- if($mod)
- {
- $part = strtolower(getArrayValue($attribs,'_part'));
- $ret = $part?ExtractDatePart($part,$mod):LangDate($mod);
- }
- }
- if($ret) SaveTagCache("inlink","l_link_modified",$attribs,"",$ret);
- return $ret;
-}
-
-/*
- @description: returns the date of the last review for a link
- @attrib: _Part:: part of the date to display
- @attrib: _LinkId:int: if set, the link to display the review modified date
- @example: <inp:l_review_modified />
-*/
-function l_review_modified($attribs)
-{
- global $objConfig, $objLinkList;
-
- $LinkId = (int)$attribs["_linkid"];
- if($LinkId)
- {
- $link = $objLinkList->GetItem($LinkId);
- }
- else
- $link = $objLinkList->GetCurrentItem();
- if(is_object($link))
- {
- $ado = &GetADODBConnection();
- $ResId = $link->Get("ResourceId");
- $sql = "SELECT MAX(CreatedOn) as ModDate FROM ".GetTablePrefix()."ItemReview WHERE ItemId=$ResId AND Status=1 LIMIT 1";
- $rs = $ado->Execute($sql);
- if($rs && ! $rs->EOF)
- {
- $mod = $rs->fields["ModDate"];
- if($mod)
- {
- $part = strtolower($attribs["_part"]);
- if(strlen($part))
- {
- $ret = ExtractDatePart($part,$mod);
- }
- else
- {
- $ret = LangDate($mod);
- }
- }
- }
- }
- return $ret;
-}
-
-/*
- @description: returns a link to the link (directory) root category
- @attrib: _Category:int: Override the In-Link root category
- @attrib: _Template:tpl: The template to link to
- @example: <inp:l_root_link _Template="inlink/index" />
-*/
-function l_root_link($attribs = array())
-{
- global $objConfig, $l_var_list_update, $objModules;
-
- //$RootCat = (int)$objConfig->Get("Link_Root");
- $RootCat = $objModules->GetModuleRoot("In-Link");
- if($RootCat != -1)
- $attribs["_category"] = $RootCat;
- $l_var_list_update["p"] = "";
- $l_var_list_update["id"] = "";
- $l_var_list_update["cat"] = "";
- $l_var_list_update["rp"] = "";
-
- unset($l_var_list_update["p"],$l_var_list_update["id"],$l_var_list_update["cat"],$l_var_list_update["rp"]);
- $o = m_template_link($attribs);
- unset($l_var_list_update["p"],$l_var_list_update["id"],$l_var_list_update["cat"],$l_var_list_update["rp"]);
-
- return $o;
-
-}
-
-function l_form_load_values($FormName,$IdValue)
-{
- global $FormValues, $objLinkList;
-
- switch ($FormName) {
- case 'editlink':
- $l =& $objLinkList->GetItem($IdValue);
- $FormValues[$FormName]['name'] = stripslashes($l->Get('Name'));
- $FormValues[$FormName]['url'] = stripslashes($l->Get('Url'));
- $FormValues[$FormName]['description'] = stripslashes($l->Get('Description'));
- $l->LoadCustomFields();
- if (is_array($l->CustomFields)) {
- foreach ($l->CustomFields as $f => $v) {
- if (is_array($v)) {
- $FormValues[$FormName][$f] = $v;
- $FormValues[$FormName][strtolower($f)] = $v;
- }
- }
- }
- break;
- }
-}
-
-/*
- @description: Generates the ACTION property for a FORM tag used by In-Link
- @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>addlink: add a link to the database
- <LI>addlink_confirm: Confirm for addlink
- <LI>editlink: Modify an existing link
- <LI>editlink_confifirm: Confirmation for link modify
- <LI>l_rate: Form used to rate a link
- <LI>l_rate_confirm: Confirm for rate link
- <LI>l_addreview: add a review for a link
- <LI>l_review_confirm: Review confirmation
- <LI>l_delete_confirm: Form to confirm link delete (prior to delete)
- <LI>l_sort_links: Form to sort links and set number of results
- <LI>l_getting_rated: Form for external rating
- </UL>
- @example: <FORM enctype="multipart/form-data" method="POST" NAME="link_review" ACTION="<inp:l_form_action _Form="l_rate" _confirm="inlink/rate_confirm" />">
-*/
-function l_form_action($attribs = array())
-{
- global $var_list_update, $var_list, $l_var_list, $l_var_list_update, $objSession, $objLinkList;
-
- $var_list_update['t'] = getArrayValue($attribs, '_template') ? $attribs['_template'] : $var_list['t'];
-
- if( is_object($objLinkList) && $objLinkList->CurrentItem ) $l_var_list_update['id'] = $objLinkList->CurrentItem;
-
- $ret = '';
- $form = strtolower( $attribs['_form'] );
- $url_params = Array();
-
- switch($form)
- {
- case 'addlink':
- /* add link needs to be passed in: _CompleteTemplate=... _PendingTemplate=... _DestinationTemplate=... */
- if( !$objSession->SessionEnabled() )
- {
- $var_list_update['t'] = 'error_session';
- }
- else
- {
- $url_params = Array( 'Action' => 'l_add_link', 'DestTemplate' => $attribs['_finishtemplate'] );
- if ( $objSession->HasCatPermission('LINK.ADD.PENDING') )
- {
- $url_params['Confirm'] = $attribs[ getArrayValue($attribs, '_confirmpending') ? '_confirmpending' : '_confirm' ];
- $url_params['Action'] = 'l_add_link_confirm';
- }
-
- if ( $objSession->HasCatPermission('LINK.ADD') )
- {
- $url_params['Confirm'] = $attribs['_confirm'];
- $url_params['Action'] = 'l_add_link_confirm';
- }
- if( !$url_params['Confirm'] ) unset($url_params['Confirm']);
- }
- break;
-
- case 'addlink_confirm':
- $var_list_update['t'] = getArrayValue($_GET, 'DestTemplate') ? $_GET['DestTemplate'] : $var_list['t'];
- break;
-
- case 'editlink':
- if( !$objSession->SessionEnabled() )
- {
- $var_list_update['t'] = 'error_session';
- }
- else
- {
- $url_params = Array( 'Action' => 'l_edit_link', 'DestTemplate' => $attribs['_finishtemplate'] );
- if ( $objSession->HasCatPermission('LINK.MODIFY.PENDING') )
- {
- $url_params['Confirm'] = $attribs[ getArrayValue($attribs, '_confirmpending') ? '_confirmpending' : '_confirm' ];
- }
-
- if ( $objSession->HasCatPermission('LINK.MODIFY') )
- {
- $url_params['Confirm'] = $attribs['_confirm'];
- }
-
- if( !$url_params['Confirm'] ) unset($url_params['Confirm']);
- l_form_load_values( $form, $l_var_list['id'] );
- }
- break;
-
- case 'editlink_confirm':
- $var_list_update['t'] = getArrayValue($_GET, 'DestTemplate') ? $_GET['DestTemplate'] : $var_list['t'];
- break;
-
-
- case 'l_rate':
- if( !$objSession->SessionEnabled() )
- {
- $var_list_update['t'] = 'error_session';
- }
- else
- {
- $url_params = Array( 'Action' => 'l_rate_link', 'DestTemplate' => $attribs['_finishtemplate'] );
- if ( $objSession->HasCatPermission('LINK.RATE') && getArrayValue($attribs, '_confirm') ) $url_params['Confirm'] = $attribs['_confirm'];
- $l_var_list_update['id'] = $objLinkList->CurrentItem;
-
- if( getArrayValue($attribs, '_duplicate') ) $url_params['Duplicate'] = $attribs['_duplicate'];
- }
- break;
-
- case 'l_getting_rated':
- if( !$objSession->SessionEnabled() )
- {
- $var_list_update['t'] = 'error_session';
- }
- else
- {
- $url_params = Array( 'Action' => 'l_rate_link', 'DestTemplate' => $attribs['_finishtemplate'] );
- if ($objSession->HasCatPermission("LINK.RATE") && getArrayValue($attribs, '_confirm') ) $url_params['Confirm'] = $attribs['_confirm'];
- $var_list_update['t'] = 'inlink/rate';
- $l_var_list_update['id'] = $objLinkList->CurrentItem;
- if( getArrayValue($attribs, '_duplicate') ) $url_params['Duplicate'] = $attribs['_duplicate'];
- }
- break;
-
- case 'l_sort_links':
- $url_params = Array('Action' => 'l_sort_links');
- break;
-
- case 'l_rate_confirm':
- $l_var_list_update['id'] = $objLinkList->CurrentItem;
- $var_list_update['t'] = getArrayValue($_GET, 'DestTemplate') ? $_GET['DestTemplate'] : $var_list['t'];
- break;
-
- case 'l_addreview':
- if( !$objSession->SessionEnabled() )
- {
- $var_list_update['t'] = 'error_session';
- }
- else
- {
- $url_params = Array( 'Action' => 'l_add_review', 'DestTemplate' => $attribs['_finishtemplate'] );
- $l_var_list_update['id'] = $objLinkList->CurrentItem;
-
- if ( $objSession->HasCatPermission('LINK.REVIEW.PENDING') )
- {
- $url_params['Confirm'] = $attribs[ getArrayValue($attribs, '_confirmpending') ? '_confirmpending' : '_confirm' ];
- }
-
- if ( $objSession->HasCatPermission('LINK.REVIEW') ) $url_params['Confirm'] = $attribs['_confirm'];
- if( !$url_params['Confirm'] ) unset($url_params['Confirm']);
- }
- break;
-
- case 'l_review_confirm':
- $l_var_list_update["id"] = $objLinkList->CurrentItem;
- $var_list_update['t'] = getArrayValue($_GET, 'DestTemplate') ? $_GET['DestTemplate'] : $var_list['t'];
- break;
-
- case 'l_delete_confirm':
- if( !$objSession->SessionEnabled() )
- {
- $var_list_update['t'] = 'error_session';
- }
- else
- {
- if( getArrayValue($attribs, '_accept_template') ) $url_params['DestYes'] = $attribs['_accepttemplate'];
- if( getArrayValue($attribs, '_declinetemplate') ) $url_params['DestNo'] = $attribs['_declinetemplate'];
- }
- break;
- }
-
- $ret = HREF_Wrapper('', $url_params);
- unset($var_list_update['t']);
- return $ret;
-}
-
-/*
- @description: returns a list of links
- @attrib: _CatId:int: Override the current category
- @attrib: _useroot:bool: If set, the current category is changed to In-Link's root category
- @attrib: _ShortList:bool: If set, the Perpage_Links_Short setting is used instead of Perpage_links
- @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 links from the current category (default)
- <LI>Top: Most Popular & highest rated links
- <LI>Pop: Most Popular links
- <LI>New: List new links
- <LI>Hot: List links with the most click-throughs
- <LI>Pick: List editor's picks
- <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 link listed
- @attrib: _LastItemTemplate:tpl: Template used for the last link listed
- @attrib: _EdItemTemplate:tpl: Editors Pick template used for link list items
- @attrib: _ItemTemplate:tpl: default template used for link list items
- @attrib: _notable:bool: if not 0, a table is used to contain the link list (any extra HTML attributes are used for the table tag)
- @attrib: _Columns:int: the number of columns to use for table (defaults to 1)
- @example: <inp:l_list_links _ItemTemplate="inlink/catindex_element" _ShortList="0" />
-*/
-function l_list_links($attribs = array())
-{
- global $objConfig, $objSession, $var_list, $l_var_list, $objLinkList, $objCatList, $content_set;
-
- if(strlen($attribs["_itemtemplate"])==0)
- {
- $content_set = 0;
- return "ERROR -1";
- }
-
- $CatId = getArrayValue($attribs,'_catid');
- if (!is_numeric($CatId)) {
- $CatId = $objCatList->CurrentCategoryID();
- }
-
- if ((int)getArrayValue($attribs,'_useroot')) {
- $CatId = (int)$objConfig->Get("Link_Root");
- }
-
- $ListType = getArrayValue($attribs,'_listtype');
-
- if (!$ListType) $ListType = 'category';
-
- if ($ListType != "search") {
- $evar = $evar = $_GET["env"]; //m_BuildEnv().$objSession->GetVariable("Env_Link");
-
- $tagname = "l_list_links-".$ListType."-".(int)$attribs["_shortlist"];
- $CachedList = GetTagCache("inlink",$tagname,$attribs,$evar);
- if($CachedList) return $CachedList;
- }
-
- if ( ($attribs['_shortlist'] == 1) && $objConfig->Get('Perpage_Links_Short') ) {
- $objLinkList->PerPageVar = 'Perpage_Links_Short';
- }
- else {
- $objLinkList->PerPageVar = 'Perpage_Links';
- }
-
- //echo "PerPage ".$objLinkList->PerPageVar."<br>";
- //echo "ListType: ".$objLinkList->ListType." Passed: $ListType<br>";
- if($objLinkList->ListType != $ListType)
- {
- LoadLinkList($attribs);
- }
-
- $cols = (int)getArrayValue($attribs,'_columns');
- if (!$cols) $cols = 1;
-
- //echo "Items: ".$objLinkList->NumItems()."<br>";
-
- if ($objLinkList->NumItems() == 0) {
-
- $content_set = 0;
- return language('lu_no_links');
- }
-
- $html_attribs = ExtraAttributes($attribs);
- $o="";
- $notable = (getArrayValue($attribs,'_notable')!="0");
-
- if(!$notable)
- {
- $max_links = $objConfig->Get($objLinkList->PerPageVar);
-
- $items_to_print = $objLinkList->NumItems()>$max_links ? $max_links : $objLinkList->NumItems();
-
- if($cols==0)
- $cols = 1;
- $per_row = ceil($items_to_print/$cols);
- $count = 0;
- $row = 0;
- $total = 1;
- $o="<table $html_attribs><tr class=\"l_list_links\">";
- $o .= "<td valign=\"top\">";
- foreach($objLinkList->Items as $index => $link)
- {
- $parsed = 0;
- $objLinkList->CurrentItem = $index;
- if($count==$per_row)
- {
- $o .= "</td><td valign=\"top\">";
- $count=0;
- }
- if($row==0 && getArrayValue($attribs,'_firstitemtemplate') )
- {
- $o .= $link->ParseTemplate($attribs['_firstitemtemplate']);
- $parsed = 1;
- }
- if($row==$objLinkList->NumItems()-1 && !$parsed && getArrayValue($attribs,'_lastitemtemplate') )
- {
- $o .= $link->ParseTemplate($attribs['_lastitemtemplate']);
- $parsed = 1;
- }
- if(!$parsed)
- {
- if (getArrayValue($attribs, '_editemtemplate') && (int)$link->Get('EditorsPick'))
- {
- $o .= $link->ParseTemplate($attribs["_editemtemplate"]);
- }
- else
- {
- $o .= $link->ParseTemplate($attribs['_itemtemplate']);
- }
- }
- $row++;
- $count++;
- $total++;
-
- if ($total>$max_links) break;
- }
- $objLinkList->SetCurrentItem();
-
- if($count != $per_row) {
- $o .= "</td>";
- }
- $o .= "\n</tr></table>\n";
- }
- else
- {
- $keywords = $objSession->GetVariable("Search_Keywords");
-
- $links_showed = 0; //nl
- $max_links = $objConfig->Get($objLinkList->PerPageVar); //nl
- //echo "MaxLinks: $max_links<br>";
- foreach($objLinkList->Items as $index => $link)
- {
- //echo "<pre>"; print_r($link); echo "</pre>";
- $show = 1;
- /* if ($keywords) {
- if (strstr(strip_tags(strtolower($link->Data['Name'])), strtolower($keywords)) || strstr(strip_tags(strtolower($link->Data['Description'])), strtolower($keywords))) {
- $show = 1;
- }
- }
- else {
- $show = 1;
- }*/
-
- if ($show == 1) {
-
- $parsed = 0;
- $objLinkList->CurrentItem = $index;
- if($row==0 && strlen($attribs["_firstitemtemplate"]))
- {
- $o .= $link->ParseTemplate($attribs["_firstitemtemplate"]);
- $parsed = 1;
- }
- if($row==$objLinkList->NumItems()-1 && !$parsed && strlen($attribs["_lastitemtemplate"])>0)
- {
- $o .= $link->ParseTemplate($attribs["_lastitemtemplate"]);
- $parsed = 1;
- }
- if(!$parsed)
- {
- if (getArrayValue($attribs, '_editemtemplate') && (int)$link->Get('EditorsPick'))
- {
- $o .= $link->ParseTemplate($attribs["_editemtemplate"]);
- }
- else
- {
- $o .= $link->ParseTemplate($attribs['_itemtemplate']);
- }
- }
-
- $links_showed++; // nl
- if($links_showed == $max_links) break; //nl
- }
- }
- $objLinkList->SetCurrentItem();
- }
- $o.="\n";
- if(strlen($o))
- SaveTagCache("inlink",$tagname,$attribs,$evar,$o);
-
- global $l_var_list_update;
- $l_var_list_update = array();
- return $o;
-}
-
-
-/*
- @description: Used in conjuction with l_list_links. Returns the number if links in the list
- @attrib: _CatId:int: Override the current category
- @attrib: _useroot:bool: If set, the current category is changed to In-Link's root category
-
- @attrib: _ListType::Determines the type of list to generate<br>
- Possible values:<UL>
- <LI>Category: List links from the current category (default)
- <LI>Hot: Hot Links (Most Popular & highest rated links)
- <LI>Pop: Most Popular links
- <LI>New: List new links
- <LI>Hot: List links with the most click-throughs
- <LI>Pick: List editor's picks
- <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:l_list_count _ListType="Search" />
-*/
-function l_list_count($attribs = array())
-{
- global $objConfig, $objLinkList, $objCatList, $objSession;
-
- $CatId = getArrayValue($attribs,'_catid');
- if(!is_numeric($CatId))
- $CatId = $objCatList->CurrentCategoryID();
-
- if((int)getArrayValue($attribs,'_useroot'))
- $CatId = (int)$objConfig->Get("Link_Root");
-
- $ListType = getArrayValue($attribs,'_listtype');
- if(!strlen($ListType))
- $ListType="category";
-
- if ( ($attribs['_shortlist']) && $objConfig->Get('Perpage_Links_Short') ) {
- $objLinkList->PerPageVar = 'Perpage_Links_Short';
- }
- else {
- $objLinkList->PerPageVar = 'Perpage_Links';
- }
-
- if(!getArrayValue($attribs,'_today'))
- {
- if($objLinkList->ListType != $ListType)
- {
- LoadLinkList($attribs);
- }
- $o = 0;
- $keywords = $objSession->GetVariable("Search_Keywords");
- if ($keywords) {
-// foreach ($objLinkList->Items as $cat) {
- // if (strstr(strip_tags(strtolower($cat->Data['Name'])), strtolower($keywords)) || strstr(strip_tags(strtolower($cat->Data['Description'])), strtolower($keywords))) {
- // $o++;
- // }
-// }
-// echo "Counted: $o<br><br><br>";
-// echo "Reasly: ".$objLinkList->QueryItemCount."<br><br><br>";
-// }
-// else {
- $o = $objLinkList->QueryItemCount;
- }
- $o = $objLinkList->QueryItemCount; // only use when no highlighting issued
- }
- else
- {
- $o = $objLinkList->PerformItemCount($attribs);
- }
-
- if ($o == '') {
- $o = 0;
- }
- return $o;
-}
-
-
-/*
- @description: Used in conjuction with l_list_links. This function generates the page navigation
- for the list. If this tag is called before the list tag, this function will load
- the links. For that reason, the _ListType attribute is required if the pagnav
- tag preceeds the l_list_links tag in the template. Generally, it is good practice to
- duplicate all attributes set for l_list_links.
- @attrib: _PagesToList:int: Number of pages to list (default is 10)
- @attrib: _ShortList:bool: If set, uses the shortlist configuration value for links
- @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)
- @attrib: _ListType::Determines the type of list to generate<br>
- Possible values:<UL>
- <LI>Category: List links from the current category (default)
- <LI>Hot: Hot Links (Most Popular & highest rated links)
- <LI>Pop: Most Popular links
- <LI>New: List new links
- <LI>Hot: List links with the most click-throughs
- <LI>Pick: List editor's picks
- <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>
-
-*/
-function l_link_pagenav($attribs = array())
-{
- global $objLinkList, $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 ( ($attribs['_shortlist'] == 1) && $objConfig->Get('Perpage_Links_Short') ) {
- $objLinkList->PerPageVar = 'Perpage_Links_Short';
- }
- else {
- $objLinkList->PerPageVar = 'Perpage_Links';
- }
-
-
- $ListType = getArrayValue($attribs,'_listtype');
- if(!strlen($ListType))
- $ListType="category";
-
- if($objLinkList->ListType != $ListType) {
- LoadLinkList($attribs);
- }
-
- $o = $objLinkList->GetPageLinkList($DestTemplate, '', 10, true, '', ExtraAttributes($attribs) );
- if (strlen($image)) {
- $o_i = '<img src="'.$image.'" width="9" height="12" alt="">&nbsp;';
- }
- else
- {
- $o_i='';
- }
- if(strlen($o) && strlen($attribs["_label"]))
- $o = $o_i.language($attribs["_label"]).' '.$o;
- return $o;
-}
-
-/*
- @description: Used in conjuction with l_list_links. 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 link list.
- For that reason, the _ListType attribute is required if the pagnav
- tag preceeds the l_list_links tag in the template. Generally, it is good practice to
- duplicate all attributes set for l_list_links.
- @attrib: _root:bool: If set, the current category is set to In-Link's root category
- @attrib: _text:lang: language tag to include as text for the anchor tag
- @attrib: _ShortList:bool: If set, uses the shortlist configuration value for links
- @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 l_link_more($attribs = array())
-{
- global $objLinkList, $objConfig, $l_var_list_update, $objSession, $l_CachedList;
-
- $l_var_list_update['id'] = 0;
-
- $html_attribs = ExtraAttributes($attribs);
- $DestTemplate = $attribs["_template"];
-
- if ( ($attribs['_shortlist'] == 1) && $objConfig->Get('Perpage_Links_Short') ) {
- $objLinkList->PerPageVar = 'Perpage_Links_Short';
- }
- else {
- $objLinkList->PerPageVar = 'Perpage_Links';
- }
-
- $ListType = $attribs["_listtype"];
- if(!strlen($ListType))
- $ListType="category";
-
- if($ListType != "search")
- {
- $evar = $_GET["env"]; //m_BuildEnv().$objSession->GetVariable("Env_Link");
- $tagname = "l_list_links-".$ListType."-".(int)$attribs["_ShortList"];
- $CachedList = GetTagCache("inlink",$tagname,FALSE,$evar);
-
- if(strlen($CachedList))
- {
- $moretag = "l_link_more-".$ListType."-".(int)$attribs["_ShortList"];
- $CachedPageNav = GetTagCache("inlink",$moretag,FALSE,$evar);
- if(strlen($CachedPageNav))
- return $CachedPageNav;
- }
- }
- if($objLinkList->ListType != $ListType)
- LoadLinkList($attribs);
-
- if($objLinkList->QueryItemCount > $objConfig->Get($objLinkList->PerPageVar))
- {
- if($attribs["_root"])
- {
- $url = l_root_link($attribs);
- }
- else
- {
- $l_var_list_update["p"]=1;
- $url = m_template_link($attribs);
- unset($l_var_list_update["p"]);
- }
- $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\" />";
- }
- $o .= "</A>";
- }
- if(strlen($o) && strlen($CachedList)>0 && strlen($moretag)>0)
- SaveTagCache("inlink",$moretag,FALSE,$evar,$o);
- return $o;
-}
-
-/*
- @description: List items related to the current link
- @attrib: _ItemId:int: the link to use (If not set, the current link is used)
- @attrib: _ListItems:: List of item types to include (ie: _ListItems="Category,Topic")
- @attrib: _*Template:none: For each item type lsted in _ListItems, an item type template must be included
- (ie: _CategoryTemplate=".." _TopicTemplate="..")
- @example: <inp:l_related_items _ListItems="Category,Topic" _CategoryTemplate="cat_related" _LinkTemplate="inbulletin/topic_related" />
-*/
-function l_related_items($attribs)
-{
- global $objItemTypes, $objLinkList, $objCatList, $content_set;
- static $Related;
-
- global $LinkRelations;
-
- $id = getArrayValue($attribs,'_itemid');
- if(!is_numeric($id))
- {
- $c =& $objLinkList->GetCurrentItem();
- }
- else
- $c =& $objLinkList->GetItem($id);
-
- $data_sent=0;
- if(is_object($c))
- {
- $ResourceId = $c->Get("ResourceId");
- $IncludeList = explode(",",trim(strtolower($attribs["_listitems"])));
- $o = "";
-
- if(!is_object($LinkRelations))
- {
- //echo "<pre>"; print_r($c); echo "</pre>";
- $LinkRelations = new clsMultiTypeList();
- LoadRelatedItems($Related, $LinkRelations,$c->Get("ResourceId"));
- }
-
- if($LinkRelations->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($LinkRelations->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 "";
- }
-}
-
-/*
- @description: Returns the number of items related to the current link
- @attrib: _ItemId:int: the link to use (If not set, the current link is used)
- @attrib: _ItemType:: Name of item to count (ie: _ItemType="Category")
- @example: <inp:l_related_count _ItemType="Category" />
-*/
-function l_related_count($attribs)
-{
- global $objItemTypes, $objLinkList, $content_set;
- global $LinkRelations;
-
- $count = 0;
-
- $id = getArrayValue($attribs,'_itemid');
- if( !is_numeric($id) )
- {
- $c =& $objLinkList->GetCurrentItem();
- }
- else
- {
- $c =& $objLinkList->GetItem($id);
- }
-
- if( is_object($c) )
- {
- $ResourceId = $c->Get('ResourceId');
- if( !is_object($LinkRelations) )
- {
- $LinkRelations = new clsMultiTypeList();
- LoadRelatedItems($Related, $LinkRelations,$c->Get('ResourceId'));
- }
-
- if(strlen($attribs['_itemtype']))
- {
- $objType = $objItemTypes->GetTypeByName($item_type);
- $TargetType = is_object($objType) ? $objType->Get('ItemType') : '';
- }
-
- if( $LinkRelations->NumItems() > 0 )
- {
- for($x=0;$x<$LinkRelations->NumItems();$x++)
- {
- $a = $LinkRelations->GetItemByIndex($x);
- if($a->type == $TargetType || !strlen($TargetType)) $count++;
- }
- }
- }
- return $count;
-}
-
-/*
- @description: Returns a list of reviews for a link
- @attrib: _LinkId:int: the link to use (If not set, the current link is used)
- @attrib: _maxcount:int: Maximum number of reviews to list (defaults to all)
- @attrib: _ShortList:bool: If set, uses the shortlist configuration value for link reviews
- @attrib: _ReviewTemplate:tpl: template used to display the reviews
-*/
-function l_list_reviews($attribs = array())
-{
- global $objLinkList,$content_set, $l_var_list;
-
- $max = (int)$attribs["_maxcount"];
- $LinkId = (int)$attribs["_linkid"];
- if($LinkId)
- {
- $link =& $objLinkList->GetItem($LinkId);
- }
- else
- $link =& $objLinkList->GetCurrentItem();
-
- if(is_object($link))
- {
- if($link->ReviewsLoaded()==0)
- {
- if($attribs["_shortlist"])
- {
- $link->ReviewPerPageVar = "Perpage_LinkReviews_Short";
- }
- else
- {
- $link->ReviewPerPageVar = "Perpage_LinkReviews";
- }
- $ReviewList =& $link->GetItemReviews($l_var_list["rp"]);
- }
- else
- $ReviewList =& $link->Reviews;
-
- $o = "";
- $t = $attribs["_reviewtemplate"];
- if($ReviewList->NumItems()>0 && strlen($t))
- {
- foreach($ReviewList->Items as $r)
- {
- if($i >= $max && $max>0)
- break;
-
- $o .= $r->ParseTemplate($t);
- $i++;
- }
- }
- }
- if(!strlen($o))
- $content_set =0;
- return $o;
-}
-
-/*
- @description: Used in conjuction with l_list_reviews. 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 review list.
- Any extra HTML attributes are passed to the anchor tag used to create the link.
- @attrib: _LinkId:int: If set, the this value is used for a link ID (default to the current link)
- @attrib: _root:bool: If set, the current category is set to In-Link's root category
- @attrib: _text:lang: language tag to include as text for the anchor tag
- @attrib: _Template:tpl: Destination template of More link
- @attrib: _plaintext:: plain text to include as text for the anchor tag. The _text attribute takes presedence
- if both are included.
- @attrib: _ShortList:bool: If set, uses the shortlist configuration value for link reviews
- @attrib: _image:: URL to an image to include inside the anchor tag.
-*/
-function l_review_more($attribs)
-{
- global $objLinkList, $objConfig, $l_var_list_update, $l_var_list;
-
- $html_attribs = ExtraAttributes($attribs);
- $DestTemplate = $attribs["_template"];
-
- $LinkId = (int)$attribs["_linkid"];
- if($LinkId)
- {
- $link =& $objLinkList->GetItem($LinkId);
- }
- else
- $link =& $objLinkList->GetCurrentItem();
-
- if(is_object($link))
- {
- if($link->ReviewsLoaded()==0)
- {
- if($attribs["_shortlist"])
- {
- $link->ReviewPerPageVar = "Perpage_LinkReviews_Short";
- }
- else
- {
- $link->ReviewPerPageVar = "Perpage_LinkReviews";
- }
- $ReviewList =& $link->GetItemReviews($l_var_list["rp"]);
- }
- else
- $ReviewList =& $link->Reviews;
-
- if($ReviewList->ItemCount() < $ReviewList->QueryItemCount)
- {
- if($attribs["_root"])
- {
- $url = l_root_link($attribs);
- }
- else
- {
- $l_var_list_update['id'] = $l_var_list['id'];
- $url = m_template_link($attribs);
- }
- $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\" />";
- }
- $o .= "</A>";
- }
- }
- return $o;
-}
-
-/*
- @description: Used in conjuction with l_list_reviews. This function generates the page navigation
- for the list of reviews. If this tag is called before the list tag, this function will load
- the reviews. For that reason, the _ListType attribute is required if the pagnav
- tag preceeds the l_list_reviews tag in the template. Generally, it is good practice to
- duplicate all attributes set for l_list_reviews.
- @attrib: _PagesToList:int: Number of pages to list (default is 10)
- @attrib: _Template:tpl: destination template for page links (defaults to current template)
- @attrib: _ShortList:bool: If set, uses the shortlist configuration value for link reviews
- @attrib: _LinkId:int: If set, the this value is used for a link ID (default to the current link)
- @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 l_review_pagenav($attribs)
-{
- global $l_var_list, $l_var_list_update, $objLinkList;
-
- $DestTemplate = $attribs["_template"];
- $PagesToList = $attribs["_pagestolist"];
- if(!is_numeric($PagesToList))
- $PagesToList = 10;
- $LinkId = (int)$attribs["_linkid"];
- if($LinkId)
- {
- $link =& $objLinkList->GetItem($LinkId);
- }
- else
- $link =& $objLinkList->GetCurrentItem();
-
- if(is_object($link))
- {
- if($link->ReviewsLoaded()==0)
- {
- if($attribs["_shortlist"])
- {
- $link->ReviewPerPageVar = "Perpage_LinkReviews_Short";
- }
- else
- {
- $link->ReviewPerPageVar = "Perpage_LinkReviews";
- }
- $ReviewList =& $link->GetItemReviews($l_var_list["rp"]);
- }
- else
- $ReviewList =& $link->Reviews;
- $o = $ReviewList->GetPageLinkList($l_var_list_update,$DestTemplate);
- }
- if(strlen($o) && strlen($attribs["_label"]))
- $o = language($attribs["_label"]).$o;
- return $o;
-}
-
-/*
- @description: Parse a link item template
- @attrib: _ItemTemplate:tpl: Link template to parse
- @attrib: _LinkId:int: Link ID to parse (uses current link if not set)
-*/
-function l_link_detail($attribs = array())
-{
- global $objLinkList;
-
- $t = $attribs["_itemtemplate"];
- if(strlen($t))
- {
- $LinkId = (int)$attribs["_linkid"];
- if($LinkId)
- {
- $link = $objLinkList->GetItem($LinkId);
- }
- else
- $link = $objLinkList->GetCurrentItem();
- if(is_object($link))
- {
- $o = $link->ParseTemplate($t);
- }
- }
- return $o;
-}
-
- /*
- @description: Parse a link field and return the value
- @attrib: _Field:: Link field to parse
- @attrib: _LinkId:int: Link ID to parse (uses current link if not set)
- */
- function l_link_field($attribs = array())
- {
- global $objLinkList;
-
- $o = "";
- $field = $attribs["_field"];
- $LinkId = isset($attribs['_linkid']) ? (int)$attribs['_linkid'] : false;
- if($LinkId)
- {
- $link = $objLinkList->GetItem($LinkId);
- }
- else
- {
- $link = $objLinkList->GetCurrentItem();
- }
-
- if(strlen($field))
- {
- if(is_object($link))
- {
- $element = new clsHtmlTag();
- $element->name = $link->TagPrefix;
- $element->attributes = $attribs;
- $o = $link->ParseObject($element);
- }
- else
- $o = "";
- }
-
- if (substr($o, 0, 9) == "Undefined") {
- $attrib = Array();
- $attrib['_template'] = "error_template";
- $attrib['_unsecure'] = 1;
- $location = m_template_link($attrib);
- Header("Location: $location");
- }
-
- return $o;
- }
-
- function l_multiple_submit($params=Array())
- {
- global $objCatList,$objConfig,$objModules;
- $ret='';
- $root_cat_name=language($objConfig->Get('Root_Name'));
- $selected_tpl='<tr><td class="field-name"><input type="hidden" name="cat_ids['."%1\$s".']" value="'."%1\$s".'"><inp:m_language _Phrase="lu_submitting_to" /></td><td class="field-content-no-border"><b>'.$root_cat_name.'>'."%2\$s".'</b><input type="submit" class="button" name="item_action['."%1\$s".']" value="'.language('lu_remove').'"></td></tr>';
- if(getArrayValue($_POST,'cat_ids'))
- {
- foreach ($_POST['cat_ids'] as $cat_id)
- {
- $that_cat =& $objCatList->GetItem($cat_id);
- $ret.=sprintf($selected_tpl,$cat_id,$that_cat->GetNavbar());
- }
- }
-
-
- $ret .= '<tr><td class="field-name"><inp:m_language _Phrase="lu_additional_cats" /></td><td class="field-content-no-border">';
- $suggest_cat_id=isset($_POST['suggest_cat_id'])?$_POST['suggest_cat_id']:$objCatList->CurrentCategoryID();
- $suggest_cat=$objCatList->GetItem($suggest_cat_id);
-
- $ret.=$root_cat_name.' > '.$suggest_cat->GetNavbar().'&nbsp;<input type="hidden" name="suggest_cat_id" value="'.$suggest_cat_id.'"><select name="new_suggest_cat">';
-
-
- if($suggest_cat_id&&$suggest_cat_id!=$objModules->GetModuleRoot('In-Link') )
- {
- $ret.='<option value="0"><----</option>';
- }
- $db=&GetADODBConnection();
- $rs=$db->Execute('SELECT '.$objCatList->TitleField.', CategoryId FROM '.$objCatList->SourceTable.' WHERE ParentId = '.$suggest_cat_id.' AND Status = 1');
- $sub_cat_tpl = '<option value="%s">%s</option>';
- while(!$rs->EOF)
- {
- $sub_cat_rec =& $rs->fields;
- $ret.=sprintf($sub_cat_tpl,$sub_cat_rec['CategoryId'],$sub_cat_rec[$objCatList->TitleField]);
- $rs->MoveNext();
- }
-
- $ret .= '</select>
- <input type="submit" class="button" name="item_action[enter]" value="'.language('lu_enter').'">
- <input type="submit" class="button" name="item_action[new]" value="'.language('lu_add').'">
- </td></tr>';
-
-
-
- return $ret;
-
- }
-
- function l_home_cat()
- {
- global $objConfig;
- return language($objConfig->Get('Root_Name'));
- }
-
- function l_show_listings($params)
- {
- global $FormValues, $objConfig;
- $html_attribs = ExtraAttributes($params);
- $form = $params['_form'];
- $field = strtolower($params['_field']);
-
- if (isset($_POST[$field])) {
- $value = $_POST[$field];
- }
- elseif ( getArrayValue($FormValues, $form, $field) ) {
- $value = $FormValues[$form][$field];
- }
-
- $sql = 'SELECT Name, ListingTypeId FROM '.TABLE_PREFIX.'ListingTypes ORDER BY Name';
-
- $application =& kApplication::Instance();
- $db =& $application->GetADODBConnection();
- $options = $db->GetCol($sql, 'ListingTypeId');
-
- if ($objConfig->Get('Link_AllowFreeListings')) {
- $options = array_merge_recursive2(Array('' => language('lu_free_listing') ), $options);
- }
-
- if (!isset($value)) {
- list($option_key, $option_title) = each($options);
- $value = $option_key;
- }
-
- $ret = '';
- $tag_params = Array('name' => $params['_render_as']);
- foreach ($options as $option_key => $option_title) {
- $tag_params['IsSelected'] = $option_key == $value;
- $tag_params['ListingTypeId'] = $option_key;
- $tag_params['ListingTypeName'] = $option_title;
- $tag_params['IsFree'] = $option_key ? 0 : 1;
- $tag_params['DetailsLink'] = $application->HREF($params['_moreinfotemplate'], '', Array('listing_type' => $option_key, 'pass' => 'm') );
- $ret .= $application->ParseBlock($tag_params);
- }
- return $ret;
- }
-
-?>
Property changes on: trunk/in-link/parser.php
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.51
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-link/admin_templates/category_properties.tpl
===================================================================
--- trunk/in-link/admin_templates/category_properties.tpl (revision 12828)
+++ trunk/in-link/admin_templates/category_properties.tpl (nonexistent)
@@ -1,2 +0,0 @@
-<inp2:m_RenderElement name="subsection" title="!la_In-link!"/>
-<inp2:m_RenderElement name="inp_edit_box" prefix="c" field="cust_l_ItemTemplate" type_field="cust_l_ItemTemplate" title="!la_fld_cust_l_ItemTemplate!" size="50"/>
\ No newline at end of file
Property changes on: trunk/in-link/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-link/admin_templates/catalog_tab.tpl
===================================================================
--- trunk/in-link/admin_templates/catalog_tab.tpl (revision 12828)
+++ trunk/in-link/admin_templates/catalog_tab.tpl (nonexistent)
@@ -1,74 +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-link:new_link', '<inp2:m_phrase label="lu_btn_NewLink" escape="1"/>', function() {
- std_precreate_item('<inp2:m_param name="prefix"/>', 'in-link/links/links_edit');
- }, true
- ) );
- </inp2:m_if>
-
- <inp2:m_if check="m_ParamEquals" name="tab_init" value="2">
- <div id="links_div" prefix="<inp2:m_param name="prefix"/>" view_template="in-link/catalog_tab" edit_template="in-link/links/links_edit" category_id="-1" dep_buttons="new_link" class="catalog-tab"></div>
- <script type="text/javascript">$Catalog.registerTab('links');</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="table_white_selected" tag_name="td" PrefixSpecial="$prefix" IdField="LinkId" 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#
- <!-- links tab: begin -->
- <inp2:m_DefineElement name="item_caption_td" >
- <td class="table_white" id="<inp2:m_param name="PrefixSpecial"/>_<inp2:{$PrefixSpecial}_field field="$IdField"/>" sequence="<inp2:m_get param="{$PrefixSpecial}_sequence"/>" width="<inp2:m_param name="column_width"/>%">
- <inp2:m_inc param="{$PrefixSpecial}_sequence" by="1"/>
- <input type="<inp2:m_if check="m_ParamEquals" name="tab_mode" value="multi">checkbox<inp2:m_else/>radio</inp2:m_if>" name="<inp2:InputName field="$IdField" IdField="$IdField"/>" id="<inp2:InputName field="$IdField" IdField="$IdField"/>">
- <img src="<inp2:ModulePath />img/itemicons/<inp2:{$PrefixSpecial}_ItemIcon grid="$grid"/>">
-
- <span class="priority"><inp2:m_if check="FieldEquals" field="Priority" value="0"><inp2:m_else/><sup><inp2:Field field="Priority"/></sup></inp2:m_if></span>
-
- <a class="link" href="<inp2:ClickLink t="in-link/links/inlink_redirect" />" target="_blank"><inp2:Field field="Name"/></a>
- <inp2:m_RenderElement name="status_mark" field="EditorsPick" type="pick" PrefixSpecial="$PrefixSpecial"/>
- <inp2:m_RenderElement name="status_mark" field="IsPop" type="pop" PrefixSpecial="$PrefixSpecial"/>
- <inp2:m_RenderElement name="status_mark" field="IsNew" type="new" PrefixSpecial="$PrefixSpecial"/>
- <inp2:m_RenderElement name="status_mark" field="IsHot" type="hot" PrefixSpecial="$PrefixSpecial"/><br />
- <div style="padding-left: 3px">
- <inp2:m_if check="m_IsDebugMode">
- <span class="link_desc">[ID: <b><inp2:Field field="$IdField"/></b> / <b><inp2:Field field="OrgId"/></b>] Filename: <b><inp2:Field field="Filename"/></b></span>
- </inp2:m_if>
- <span class="link_desc"><inp2:Field field="Description" cut_first="100"/></span><br>
- <span class="link_detail">
- (Added: <inp2:Field name="CreatedOn"/> /
- Hits: <inp2:Field name="Hits"/> /
- Rating: <inp2:Field name="CachedRating" format="%.02f"/> /
- Votes: <inp2:Field name="CachedVotesQty"/> /
- Reviews: <inp2:Field name="CachedReviewsQty"/>)
- </span>
- </div>
- <br />
- </td>
- </inp2:m_DefineElement>
-
- <inp2:m_RenderElement name="kernel_form" form_name="links_form"/>
- <inp2:m_RenderElement name="white_grid" ajax="1" render_as="item_caption_td" PrefixSpecial="$prefix" IdField="LinkId" grid="Default" no_toolbar="no_toolbar" menu_filters="yes" tab_mode="$tab_mode"/>
- <inp2:m_RenderElement name="kernel_form_end"/>
- <!-- links tab: end -->
- </inp2:m_if>
-</inp2:m_DefineElement>
-
-<inp2:l_InitCatalogTab render_as="catalog_tab"/>
\ No newline at end of file
Property changes on: trunk/in-link/admin_templates/catalog_tab.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.19
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-link/admin_templates/export_progress.tpl
===================================================================
--- trunk/in-link/admin_templates/export_progress.tpl (revision 12828)
+++ trunk/in-link/admin_templates/export_progress.tpl (nonexistent)
@@ -1,21 +0,0 @@
-<inp2:m_RequireLogin permissions="LINK.VIEW"/>
-<inp2:m_include t="incs/header" nobody="yes"/>
-
-<body topmargin="0" leftmargin="8" marginheight="0" marginwidth="8" bgcolor="#FFFFFF">
-<script language="javascript" src="incs/ajax.js"></script>
-
-<inp2:m_RenderElement name="section_header" prefix="l" icon="icon46_tool_export" module="in-portal" title="!la_title_LinksExport!"/>
-
-<inp2:m_RenderElement name="blue_bar" prefix="l.export" title_preset="links_export" module="in-portal" icon="icon46_tool_export"/>
-<inp2:m_RenderElement name="ajax_progress_bar" cancel_action="cancel_action();"/>
-
-<script type="text/javascript">
- function cancel_action() {
- submit_event('l.export', 'OnExportCancel');
- }
-
- $LinkExport = new AjaxProgressBar('<inp2:m_t t="dummy" l.export_event="OnExportProgress" pass="m,l.export" js_escape="1"/>');
-</script>
-
-<inp2:m_include t="incs/footer"/>
-
\ No newline at end of file
Property changes on: trunk/in-link/admin_templates/export_progress.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/in-link/admin_templates/export.tpl
===================================================================
--- trunk/in-link/admin_templates/export.tpl (revision 12828)
+++ trunk/in-link/admin_templates/export.tpl (nonexistent)
@@ -1,125 +0,0 @@
-<inp2:m_RequireLogin permissions="LINK.VIEW"/>
-<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="l" icon="icon46_tool_export" module="in-portal" title="!la_title_LinksExport!"/>
-
-<inp2:m_RenderElement name="blue_bar" prefix="l.export" title_preset="links_export" module="in-portal" icon="icon46_tool_export"/>
-
-<!-- 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() {
- document.getElementById('hidden_export_columns').value = select_to_string('<inp2:l.export_InputName field="ExportColumns"/>');
- submit_event('l.export','OnExportBegin');
-
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('cancel', '<inp2:m_phrase label="la_ToolTip_Cancel" escape="1"/>', function() {
- submit_event('l.export','OnGoBack');
- }
- ) );
-
- 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_General!"/>
-
- <inp2:m_RenderElement name="inp_edit_radio" prefix="l.export" field="ExportFormat" title="la_fld_ExportFormat" use_phrases="0"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="l.export" field="FieldsSeparatedBy" title="la_fld_FieldsSeparatedBy" size="2" maxlength="1"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="l.export" field="FieldsEnclosedBy" title="la_fld_FieldsEnclosedBy" size="2" maxlength="1"/>
- <inp2:m_RenderElement name="inp_edit_radio" prefix="l.export" field="LineEndings" title="la_fld_LineEndings" use_phrases="0"/>
- <inp2:m_RenderElement name="inp_edit_radio" prefix="l.export" field="LineEndingsInside" title="la_fld_LineEndingsInside" use_phrases="0"/>
-
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="l.export" field="IncludeFieldTitles" title="la_fld_IncludeFieldTitles"/>
-
- <tr class="<inp2:m_odd_even odd="table-color1" even="table-color2"/>">
- <inp2:m_inc param="tab_index" by="1"/>
- <inp2:m_RenderElement name="inp_edit_field_caption" prefix="l.export" field="ExportColumns" title="la_fld_ExportColumns"/>
- <td>
- <table cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td>
- <input type="button" value="<inp2:m_phrase name="la_btn_Up"/>" onclick="move_options_up('<inp2:l.export_InputName field="ExportColumns"/>', 1)" class="button">
- <input type="button" value="<inp2:m_phrase name="la_btn_Down"/>" onclick="move_options_down('<inp2:l.export_InputName field="ExportColumns"/>', 1)" class="button"><br />
- <img src="img/spacer.gif" width="1" height="5" alt=""><br />
- </td>
- <td><img src="img/spacer.gif" width="45" height="1" alt=""><br></td>
- <td><inp2:m_phrase name="la_fld_AvailableColumns"/>:</td>
- </tr>
- <tr>
- <td>
- <select multiple id="<inp2:l.export_InputName field="ExportColumns"/>" size="15" style="width: 225px;">
- <inp2:l.export_PredefinedOptions field="ExportColumns" block="inp_option_item" selected="selected"/>
- </select>
- <input type="hidden" id="hidden_export_columns" name="<inp2:l.export_InputName field="ExportColumns"/>" value="<inp2:l.export_Field field="ExportColumns"/>" />
- </td>
- <td align="center">
- <input type="button" value="&nbsp;&laquo;&laquo;&nbsp;" onclick="move_selected('<inp2:l.export_InputName field="AvailableColumns"/>', '<inp2:l.export_InputName field="ExportColumns"/>')" class="button"><br>
- <img src="img/spacer.gif" width="1" height="4" alt=""><br>
- <input type="button" value="&nbsp;&raquo;&raquo;&nbsp;" onclick="move_selected('<inp2:l.export_InputName field="ExportColumns"/>', '<inp2:l.export_InputName field="AvailableColumns"/>'); select_sort('<inp2:l.export_InputName field="AvailableColumns"/>');" class="button">
- </td>
- <td>
- <select multiple id="<inp2:l.export_InputName field="AvailableColumns"/>" size="15" style="width: 225px;">
- <inp2:l.export_PredefinedOptions field="AvailableColumns" block="inp_option_item" selected="selected"/>
- </select>
- </td>
- </tr>
- </table>
- </td>
- <td class="error"><inp2:l.export_Error field="ExportColumns"/>&nbsp;</td>
- </tr>
-
- <tr class="<inp2:m_odd_even odd="table-color1" even="table-color2"/>">
- <inp2:m_RenderElement name="inp_edit_field_caption" prefix="l.export" field="CategoryFormat" title="la_fld_CategoryFormat"/>
- <td>
- <table cellspacing="0" cellpadding="0">
- <tr>
- <td rowspan="2" valign="top">
- <input type="radio"<inp2:m_if check="l.export_FieldEquals" field="CategoryFormat" value="1"> checked</inp2:m_if> name="<inp2:l.export_InputName field="CategoryFormat"/>" id="<inp2:l.export_InputName field="CategoryFormat"/>_1" value="1" />
- </td>
- <td>
- <label for="<inp2:l.export_InputName field="CategoryFormat"/>_1"><inp2:m_phrase label="la_MixedCategoryPath"/></label>
- </td>
- </tr>
- <tr>
- <td>
- <span class="<inp2:m_if check="l.export_HasError" field="CategorySeparator">error</inp2:m_if>"><inp2:m_phrase name="la_fld_CategorySeparator"/></span><inp2:m_if check="l.export_IsRequired" field="CategorySeparator"><span class="error"> *</span></inp2:m_if>:
- <input type="text" name="<inp2:l.export_InputName field="CategorySeparator"/>" id="<inp2:l.export_InputName field="CategorySeparator"/>" value="<inp2:l.export_Field field="CategorySeparator"/>" size="2" maxlength="1" /><br />
- (will look like "Category:Sub-category:Sub-sub-category")
-
- </td>
- </tr>
-
- <tr>
- <td rowspan="2" valign="top">
- <input type="radio"<inp2:m_if check="l.export_FieldEquals" field="CategoryFormat" value="2"> checked</inp2:m_if> name="<inp2:l.export_InputName field="CategoryFormat"/>" id="<inp2:l.export_InputName field="CategoryFormat"/>_2" value="2" />
- </td>
- <td>
- <label for="<inp2:l.export_InputName field="CategoryFormat"/>_2"><inp2:m_phrase label="la_SeparatedCategoryPath"/></label><br />
- (the fields will be titled Category1..CategoryN accordingly)
- </td>
- </tr>
- </table>
- </td>
- <td class="error"><inp2:l.export_Error field="CategorySeparator"/>&nbsp;</td>
- </tr>
-
- <inp2:m_if check="m_GetEquals" name="m_cat_id" value="0" inverse="inverse">
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="l.export" field="IsBaseCategory" title="la_fld_IsBaseCategory" />
- </inp2:m_if>
-
- <inp2:m_RenderElement name="inp_edit_box" prefix="l.export" field="ExportFilename" title="la_fld_ExportFilename" size="20" />
-</table>
-
-<inp2:m_include t="incs/footer"/>
Property changes on: trunk/in-link/admin_templates/export.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/in-link/admin_templates/import_progress.tpl
===================================================================
--- trunk/in-link/admin_templates/import_progress.tpl (revision 12828)
+++ trunk/in-link/admin_templates/import_progress.tpl (nonexistent)
@@ -1,20 +0,0 @@
-<inp2:m_RequireLogin permissions="LINK.VIEW"/>
-<inp2:m_include t="incs/header" nobody="yes"/>
-
-<body topmargin="0" leftmargin="8" marginheight="0" marginwidth="8" bgcolor="#FFFFFF">
-<script language="javascript" src="incs/ajax.js"></script>
-
-<inp2:m_RenderElement name="section_header" prefix="l" icon="icon46_tool_import" module="in-portal" title="!la_title_ImportLinks!"/>
-
-<inp2:m_RenderElement name="blue_bar" prefix="l.import" title_preset="links_import" module="in-portal" icon="icon46_tool_import"/>
-<inp2:m_RenderElement name="ajax_progress_bar" cancel_action="cancel_action();"/>
-
-<script type="text/javascript">
- function cancel_action() {
- submit_event('l.import', 'OnExportCancel');
- }
-
- $LinkImport = new AjaxProgressBar('<inp2:m_t t="dummy" l.import_event="OnExportProgress" pass="m,l.import" js_escape="1"/>');
-</script>
-
-<inp2:m_include t="incs/footer"/>
Property changes on: trunk/in-link/admin_templates/import_progress.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/in-link/admin_templates/paid_listings/paid_listing_type_edit.tpl
===================================================================
--- trunk/in-link/admin_templates/paid_listings/paid_listing_type_edit.tpl (revision 12828)
+++ trunk/in-link/admin_templates/paid_listings/paid_listing_type_edit.tpl (nonexistent)
@@ -1,223 +0,0 @@
-<inp2:m_RequireLogin permissions="in-link:listing_types.view" system="1"/>
-<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="lst" icon="icon46_listing_types" module="in-link" title="la_title_ListingTypes"/>
-
-<inp2:m_if check="mod_ModuleInstalled" name="In-Commerce">
-<inp2:m_include t="in-commerce/paid_listings/paid_listing_types_tabs"/>
-</inp2:m_if>
-
-<!--inp:m_ParseToVar var="UsersCount" tag="users:Records_Statistic mode='displayed'"/-->
-<inp2:m_RenderElement name="blue_bar" prefix="lst" title_preset="listing_type_edit" module="in-link" icon="icon46_listing_types"/>
-
-<!-- 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('lst','<inp2:lst_SaveEvent/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('cancel', '<inp2:m_phrase label="la_ToolTip_Cancel" escape="1"/>', function() {
- submit_event('lst','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('lst', '<inp2:lst_PrevId/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('next', '<inp2:m_phrase label="la_ToolTip_Next" escape="1"/>', function() {
- go_to_id('lst', '<inp2:lst_NextId/>');
- }
- ) );
-
- a_toolbar.Render();
-
- <inp2:m_if check="lst_IsSingle" >
- a_toolbar.HideButton('prev');
- a_toolbar.HideButton('next');
- a_toolbar.HideButton('sep1');
- <inp2:m_else/>
- <inp2:m_if check="lst_IsLast" >
- a_toolbar.DisableButton('next');
- </inp2:m_if>
- <inp2:m_if check="lst_IsFirst" >
- a_toolbar.DisableButton('prev');
- </inp2:m_if>
- </inp2:m_if>
- </script>
- </td>
- </tr>
-</tbody>
-</table>
-
-<inp2:lst_SaveWarning name="grid_save_warning"/>
-<table width="100%" border="0" cellspacing="0" cellpadding="4" class="tableborder">
- <inp2:m_RenderElement name="subsection" title="la_Text_PaidListingType"/>
- <inp2:m_RenderElement name="inp_label" prefix="lst" field="ListingTypeId" title="la_fld_ListingTypeId"/>
-
- <inp2:m_RenderElement name="inp_edit_box" prefix="lst" field="Name" title="la_fld_ListingTypeName" size="20"/>
-
- <inp2:m_RenderElement name="inp_edit_textarea" prefix="lst" field="Description" title="la_fld_ListingTypeDescription" rows="10" cols="40"/>
-
- <tr class="<inp2:m_odd_even odd="table-color1" even="table-color2"/>">
- <inp2:m_RenderElement name="inp_edit_field_caption" prefix="lst" field="Duration" title="la_fld_Duration" />
- <td>
- <input type="text" name="<inp2:lst_InputName field="Duration" />" id="<inp2:lst_InputName field="Duration" />" value="<inp2:lst_Field name="Duration" />" tabindex="<inp2:m_get param="tab_index"/>" size="5">
- <select tabindex="<inp2:m_get param="tab_index"/>" name="<inp2:lst_InputName field="DurationType"/>" id="<inp2:lst_InputName field="DurationType"/>">
- <inp2:lst_PredefinedOptions field="DurationType" block="inp_option_phrase" selected="selected" prefix="lst" />
- </select>
- </td>
- <td class="error"><inp2:lst_Error field="Duration"/>&nbsp;</td>
- </tr>
-
- <tr class="<inp2:m_odd_even odd="table-color1" even="table-color2"/>">
- <inp2:m_RenderElement name="inp_edit_field_caption" prefix="lst" field="RenewalReminder" title="la_fld_RenewalReminder" />
- <td>
- <input type="text" name="<inp2:lst_InputName field="RenewalReminder"/>" id="<inp2:lst_InputName field="RenewalReminder" />" value="<inp2:lst_Field field="RenewalReminder" />" tabindex="<inp2:m_get param="tab_index"/>" size="5">
- <inp2:m_Phrase label="la_days" />
- </td>
- <td class="error"><inp2:lst_Error field="RenewalReminder"/>&nbsp;</td>
- </tr>
-
- <tr class="<inp2:m_odd_even odd="table-color1" even="table-color2"/>">
- <td>&nbsp;</td>
- <td style="text-align: center"><inp2:m_phrase label="la_ActionsUponPurchase" /></td>
- <td style="text-align: center"><inp2:m_phrase label="la_ActionsUponExpire" /></td>
- </tr>
-
- <tr class="<inp2:m_odd_even odd="table-color1" even="table-color2"/>">
- <td><inp2:m_phrase label="la_fld_EditorsPick" /></td>
- <td>
- <nobr><inp2:lst_PredefinedOptions field="OnPurchaseEdPick" block="inp_radio_phrase" selected="checked" prefix="lst" /></nobr>
- </td>
- <td>
- <nobr><inp2:lst_PredefinedOptions field="OnExpireEdPick" block="inp_radio_phrase" selected="checked" prefix="lst" /></nobr>
- </td>
- </tr>
-
- <tr class="<inp2:m_odd_even odd="table-color1" even="table-color2"/>">
- <td><inp2:m_phrase label="la_fld_Status" /></td>
- <td>
- <nobr><inp2:lst_PredefinedOptions field="OnPurchaseStatus" block="inp_radio_phrase" selected="checked" prefix="lst" /></nobr>
- </td>
- <td>
- <nobr><inp2:lst_PredefinedOptions field="OnExpireStatus" block="inp_radio_phrase" selected="checked" prefix="lst" /></nobr>
- </td>
- </tr>
-
-
- <tr class="<inp2:m_odd_even odd="table-color1" even="table-color2"/>">
- <td><inp2:m_phrase label="la_fld_New" /></td>
- <td>
- <nobr><inp2:lst_PredefinedOptions field="OnPurchaseNew" block="inp_radio_phrase" selected="checked" prefix="lst" /></nobr>
- </td>
- <td>
- <nobr><inp2:lst_PredefinedOptions field="OnExpireNew" block="inp_radio_phrase" selected="checked" prefix="lst" /></nobr>
- </td>
- </tr>
-
- <tr class="<inp2:m_odd_even odd="table-color1" even="table-color2"/>">
- <td><inp2:m_phrase label="la_fld_Pop" /></td>
- <td>
- <nobr><inp2:lst_PredefinedOptions field="OnPurchasePop" block="inp_radio_phrase" selected="checked" prefix="lst" /></nobr>
- </td>
- <td>
- <nobr><inp2:lst_PredefinedOptions field="OnExpirePop" block="inp_radio_phrase" selected="checked" prefix="lst" /></nobr>
- </td>
- </tr>
-
- <tr class="<inp2:m_odd_even odd="table-color1" even="table-color2"/>">
- <td><inp2:m_phrase label="la_fld_Hot" /></td>
- <td>
- <nobr><inp2:lst_PredefinedOptions field="OnPurchaseHot" block="inp_radio_phrase" selected="checked" prefix="lst" /></nobr>
- </td>
- <td>
- <nobr><inp2:lst_PredefinedOptions field="OnExpireHot" block="inp_radio_phrase" selected="checked" prefix="lst" /></nobr>
- </td>
- </tr>
-
- <tr class="<inp2:m_odd_even odd="table-color1" even="table-color2"/>">
- <td><inp2:m_phrase label="la_fld_Priority" /></td>
- <td>
- <select tabindex="<inp2:m_get param="tab_index"/>" name="<inp2:lst_InputName field="OnPurchasePriorityAction"/>" id="<inp2:lst_InputName field="OnPurchasePriorityAction" />" onchange="check_priority('<inp2:lst_InputName field="OnPurchasePriorityAction" />', '<inp2:lst_InputName field="OnPurchasePriorityValue" />')">
- <inp2:lst_PredefinedOptions field="OnPurchasePriorityAction" block="inp_option_phrase" selected="selected" prefix="lst" />
- </select>
- <input type="text" name="<inp2:lst_InputName field="OnPurchasePriorityValue" />" id="<inp2:lst_InputName field="OnPurchasePriorityValue" />" value="<inp2:lst_Field field="OnPurchasePriorityValue" />" tabindex="<inp2:m_get param="tab_index"/>" size="5">
- </td>
- <td>
- <select tabindex="<inp2:m_get param="tab_index"/>" name="<inp2:lst_InputName field="OnExpirePriorityAction"/>" id="<inp2:lst_InputName field="OnExpirePriorityAction" />" onchange="check_priority('<inp2:lst_InputName field="OnExpirePriorityAction" />', '<inp2:lst_InputName field="OnExpirePriorityValue" />')">
- <inp2:lst_PredefinedOptions field="OnExpirePriorityAction" block="inp_option_phrase" selected="selected" prefix="lst" />
- </select>
- <input type="text" name="<inp2:lst_InputName field="OnExpirePriorityValue" />" id="<inp2:lst_InputName field="OnExpirePriorityValue" />" value="<inp2:lst_Field field="OnExpirePriorityValue" />" tabindex="<inp2:m_get param="tab_index"/>" size="5">
- </td>
- </tr>
-
- <inp2:m_DefineElement name="config_edit_cat" >
- <input type="hidden" name="<inp2:lst_InputName field="{$field}"/>" value="<inp2:lst_Field field="{$field}" />" />
- </inp2:m_DefineElement>
-
- <inp2:m_DefineElement name="category_selector">
- <a href="javascript:openSelector('lst', '<inp2:adm_SelectorLink prefix="lst" selection_mode="single" tab_prefixes="none"/>', '<inp2:m_param name="field"/>', null, 'OnPreSaveListingType');"><img src="img/icons/icon24_cat.gif" border="0" align="absmiddle" /></a>
- </inp2:m_DefineElement>
-
- <inp2:m_DefineElement name="category_caption" >
- <inp2:m_param name="separator"/><inp2:m_param name="cat_name"/>
- </inp2:m_DefineElement>
-
- <inp2:m_DefineElement name="root_cat_caption" >
- <inp2:m_param name="cat_name"/>
- </inp2:m_DefineElement>
-
- <tr class="<inp2:m_odd_even odd="table-color1" even="table-color2"/>">
- <td><inp2:m_phrase label="la_fld_Category" /></td>
- <td>
- <input type="hidden" id="<inp2:lst_InputName field="OnPurchaseAddToCatEnabled"/>" name="<inp2:lst_InputName field="OnPurchaseAddToCatEnabled"/>" value="<inp2:lst_Field field="OnPurchaseAddToCatEnabled" db="db"/>">
- <input tabindex="<inp2:m_get param="tab_index"/>" type="checkbox" id="_cb_<inp2:lst_InputName field="OnPurchaseAddToCatEnabled"/>" name="_cb_<inp2:lst_InputName field="OnPurchaseAddToCatEnabled"/>" <inp2:lst_Field field="OnPurchaseAddToCatEnabled" checked="checked" db="db"/> onclick="update_checkbox(this, document.getElementById('<inp2:lst_InputName field="OnPurchaseAddToCatEnabled"/>'))">
- <inp2:m_phrase label="la_AddTo" />
- <strong>
- <inp2:lst_CategoryPath separator=" &gt; " root_cat_render_as="root_cat_caption" render_as="category_caption" module="In-Link" field="OnPurchaseAddToCat" /></strong>
- <inp2:m_RenderElement name="config_edit_cat" field="OnPurchaseAddToCat" />
- <inp2:m_RenderElement name="category_selector" field="OnPurchaseAddToCat" />
- </td>
- <td>
- <input type="hidden" id="<inp2:lst_InputName field="OnExpireRemoveFromCatEnabled"/>" name="<inp2:lst_InputName field="OnExpireRemoveFromCatEnabled"/>" value="<inp2:lst_Field field="OnExpireRemoveFromCatEnabled" db="db"/>">
- <input tabindex="<inp2:m_get param="tab_index"/>" type="checkbox" id="_cb_<inp2:lst_InputName field="OnExpireRemoveFromCatEnabled"/>" name="_cb_<inp2:lst_InputName field="OnExpireRemoveFromCatEnabled"/>" <inp2:lst_Field field="OnExpireRemoveFromCatEnabled" checked="checked" db="db"/> onclick="update_checkbox(this, document.getElementById('<inp2:lst_InputName field="OnExpireRemoveFromCatEnabled"/>'))">
- <inp2:m_phrase label="la_RemoveFrom" />
- <strong>
- <inp2:lst_CategoryPath separator=" &gt; " root_cat_render_as="root_cat_caption" render_as="category_caption" module="In-Link" field="OnExpireRemoveFromCat" /></strong>
- <inp2:m_RenderElement name="config_edit_cat" field="OnExpireRemoveFromCat" />
- <inp2:m_RenderElement name="category_selector" field="OnExpireRemoveFromCat" />
- </td>
- </tr>
-
-</table>
-
-<input type="hidden" name="main_prefix" id="main_prefix" value="lst">
-
-<script type="text/javascript">
- function check_priority(option_field, value_field)
- {
- if(document.getElementById(option_field).value == 0)
- {
- document.getElementById(value_field).disabled = true;
- }
- else
- {
- document.getElementById(value_field).disabled = false;
- }
- }
-
- check_priority('<inp2:lst_InputName field="OnPurchasePriorityAction" />', '<inp2:lst_InputName field="OnPurchasePriorityValue" />');
- check_priority('<inp2:lst_InputName field="OnExpirePriorityAction" />', '<inp2:lst_InputName field="OnExpirePriorityValue" />')
-</script>
-
-<inp2:m_include t="incs/footer"/>
\ No newline at end of file
Property changes on: trunk/in-link/admin_templates/paid_listings/paid_listing_type_edit.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.22
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/in-link/admin_templates/paid_listings/paid_listings_list.tpl
===================================================================
--- trunk/in-link/admin_templates/paid_listings/paid_listings_list.tpl (revision 12828)
+++ trunk/in-link/admin_templates/paid_listings/paid_listings_list.tpl (nonexistent)
@@ -1,88 +0,0 @@
-<inp2:m_RequireLogin permissions="in-link:paid_listings.view" system="1"/>
-<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="ls" icon="icon46_paid_listings" module="in-link" title="la_title_PaidListings"/>
-
-<inp2:m_include t="in-link/paid_listings/paid_listing_types_tabs"/>
-
-<!--inp:m_ParseToVar var="UsersCount" tag="users:Records_Statistic mode='displayed'"/-->
-<inp2:m_RenderElement name="blue_bar" prefix="ls" title_preset="listing_list" module="in-link" icon="icon46_paid_listings"/>
-
-<!-- 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('in-link:new_listing', '<inp2:m_phrase label="la_ToolTip_NewListing" escape="1"/>',
- function() {
- std_precreate_item('ls', 'in-link/paid_listings/paid_listing_edit')
- } ) );
-
- function edit()
- {
- std_edit_item('ls', 'in-link/paid_listings/paid_listing_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('ls')
- } ) );
-
- a_toolbar.AddButton( new ToolBarSeparator('sep1') );
-
- a_toolbar.AddButton( new ToolBarButton('approve', '<inp2:m_phrase label="la_ToolTip_Approve" escape="1"/>', function() {
- submit_event('ls','OnMassApprove');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarButton('decline', '<inp2:m_phrase label="la_ToolTip_Decline" escape="1"/>', function() {
- submit_event('ls','OnMassDecline');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarSeparator('sep2') );
-
- a_toolbar.AddButton( new ToolBarButton('view', '<inp2:m_phrase label="la_ToolTip_View" escape="1"/>', function() {
- show_viewmenu(a_toolbar,'view');
- }
- ) );
-
- a_toolbar.Render();
-
- </script>
- </td>
- </tr>
-</tbody>
-</table>
-
-<inp2:m_DefineElement name="duration_td" >
- <td>
- <inp2:ls_Field name="Duration" />&nbsp;<inp2:ls_Field name="DurationType" />
- </td>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="listing_type_td" >
- <td>
- <a href="<inp2:ListingTypeLink edit_template="in-link/paid_listings/paid_listing_type_edit" />"><inp2:Field name="$field" /></a>
- </td>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="link_td" >
- <td>
- <a href="<inp2:LinkEditLink edit_template="in-link/links/links_edit"/>"><inp2:Field name="$field" /></a>
- </td>
-</inp2:m_DefineElement>
-
-<inp2:m_RenderElement name="grid" PrefixSpecial="ls" IdField="ListingId" grid="Default" menu_filters="yes"/>
-<script type="text/javascript">
- Grids['ls'].SetDependantToolbarButtons( new Array('edit','delete','approve','decline') );
-</script>
-
-
-<inp2:m_include t="incs/footer"/>
\ No newline at end of file
Property changes on: trunk/in-link/admin_templates/paid_listings/paid_listings_list.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/in-link/admin_templates/paid_listings/paid_listing_types_list.tpl
===================================================================
--- trunk/in-link/admin_templates/paid_listings/paid_listing_types_list.tpl (revision 12828)
+++ trunk/in-link/admin_templates/paid_listings/paid_listing_types_list.tpl (nonexistent)
@@ -1,64 +0,0 @@
-<inp2:m_RequireLogin permissions="in-link:listing_types.view" system="1"/>
-<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="lst" icon="icon46_listing_types" module="in-link" title="!la_title_PaidListingTypes!"/>
-
-<inp2:m_include t="in-link/paid_listings/paid_listing_types_tabs"/>
-
-<!--inp:m_ParseToVar var="UsersCount" tag="users:Records_Statistic mode='displayed'"/-->
-<inp2:m_RenderElement name="blue_bar" prefix="lst" title_preset="listing_type_list" module="in-link" icon="icon46_listing_types"/>
-
-<!-- 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('in-link:new_listing_type', '<inp2:m_phrase label="la_ToolTip_NewListType" escape="1"/>',
- function() {
- std_precreate_item('lst', 'in-link/paid_listings/paid_listing_type_edit')
- } ) );
-
- function edit()
- {
- std_edit_item('lst', 'in-link/paid_listings/paid_listing_type_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('lst')
- } ) );
-
- a_toolbar.AddButton( new ToolBarSeparator('sep1') );
-
- a_toolbar.AddButton( new ToolBarButton('view', '<inp2:m_phrase label="la_ToolTip_View" escape="1"/>', function() {
- show_viewmenu(a_toolbar,'view');
- }
- ) );
-
- a_toolbar.Render();
-
- </script>
- </td>
- </tr>
-</tbody>
-</table>
-
-<inp2:m_DefineElement name="duration_td" >
- <td>
- <inp2:lst_Field name="Duration" />&nbsp;<inp2:lst_Field name="DurationType" />
- </td>
-</inp2:m_DefineElement>
-
-<inp2:m_RenderElement name="grid" PrefixSpecial="lst" IdField="ListingTypeId" grid="Default" header_block="grid_column_title" data_block="grid_data_td" search="on"/>
-<script type="text/javascript">
- Grids['lst'].SetDependantToolbarButtons( new Array('edit','delete') );
-</script>
-
-
-<inp2:m_include t="incs/footer"/>
\ No newline at end of file
Property changes on: trunk/in-link/admin_templates/paid_listings/paid_listing_types_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/in-link/admin_templates/paid_listings/paid_listing_types_tabs.tpl
===================================================================
--- trunk/in-link/admin_templates/paid_listings/paid_listing_types_tabs.tpl (revision 12828)
+++ trunk/in-link/admin_templates/paid_listings/paid_listing_types_tabs.tpl (nonexistent)
@@ -1,11 +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:adm_ListTabs render_as="tab_direct" section_name="in-link:paid_listings_folder"/>
- </tr>
- </table>
- </td>
-</tr>
-</table>
\ No newline at end of file
Property changes on: trunk/in-link/admin_templates/paid_listings/paid_listing_types_tabs.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/in-link/admin_templates/paid_listings/paid_listing_edit.tpl
===================================================================
--- trunk/in-link/admin_templates/paid_listings/paid_listing_edit.tpl (revision 12828)
+++ trunk/in-link/admin_templates/paid_listings/paid_listing_edit.tpl (nonexistent)
@@ -1,113 +0,0 @@
-<inp2:m_RequireLogin permissions="in-link:paid_listings.view" system="1"/>
-<inp2:m_include t="incs/header" nobody="yes"/>
-
-<body topmargin="0" leftmargin="8" marginheight="0" marginwidth="8" bgcolor="#FFFFFF">
-
-<inp2:m_RenderElement prefix="ls" name="section_header" icon="icon46_paid_listings" module="in-link" title="la_title_PaidListings"/>
-
-<!--inp:m_ParseToVar var="UsersCount" tag="users:Records_Statistic mode='displayed'"/-->
-<inp2:m_RenderElement name="blue_bar" prefix="ls" title_preset="listing_edit" module="in-link" icon="icon46_paid_listings"/>
-
-<!-- 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('ls','<inp2:ls_SaveEvent/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('cancel', '<inp2:m_phrase label="la_ToolTip_Cancel" escape="1"/>', function() {
- submit_event('ls','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('ls', '<inp2:ls_PrevId/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('next', '<inp2:m_phrase label="la_ToolTip_Next" escape="1"/>', function() {
- go_to_id('ls', '<inp2:ls_NextId/>');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarSeparator('sep2') );
-
- a_toolbar.Render();
-
- <inp2:m_if check="ls_IsSingle" >
- a_toolbar.HideButton('prev');
- a_toolbar.HideButton('next');
- a_toolbar.HideButton('sep1');
- a_toolbar.HideButton('sep2');
- <inp2:m_else/>
- <inp2:m_if check="ls_IsLast" >
- a_toolbar.DisableButton('next');
- </inp2:m_if>
- <inp2:m_if check="ls_IsFirst" >
- a_toolbar.DisableButton('prev');
- </inp2:m_if>
- </inp2:m_if>
- </script>
- </td>
- </tr>
-</tbody>
-</table>
-
-<inp2:ls_SaveWarning name="grid_save_warning"/>
-<table width="100%" border="0" cellspacing="0" cellpadding="4" class="tableborder">
- <inp2:m_RenderElement name="subsection" title="la_Text_PaidListing"/>
- <inp2:m_RenderElement name="inp_label" prefix="ls" field="ListingId" title="la_fld_ListingId"/>
-
- <inp2:m_RenderElement name="inp_edit_options" prefix="ls" field="ListingTypeId" title="la_fld_ListingType" onchange="set_exp_date()" />
-
- <tr class="<inp2:m_odd_even odd="table-color1" even="table-color2"/>">
- <td>Link Name:</td>
- <td>
- <inp2:ls_Field name="LinkName" />
- <a href="javascript:select_link();"><img src="img/link_arrow.gif" border="0"></a>
- </td>
- <td><span class="error"><inp2:ls_Error field="ItemResourceId"/>&nbsp;</span></td>
- </tr>
-
- <inp2:m_RenderElement name="inp_edit_radio" prefix="ls" field="Status" title="la_fld_Status"/>
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="ls" field="PendingRenewal" title="la_fld_PendingRenewal"/>
- <inp2:m_RenderElement name="inp_edit_date_time" prefix="ls" field="PurchasedOn" title="la_fld_PurchasedOn"/>
- <inp2:m_RenderElement name="inp_edit_date_time" prefix="ls" field="ExpiresOn" title="la_fld_ExpiresOn"/>
-</table>
-
-<script type="text/javascript">
- function select_link()
- {
- openSelector('ls', '<inp2:adm_SelectorLink prefix="ls" selection_mode="single" tab_prefixes="l"/>', 'ItemResourceId', null, 'OnPreSaveListing');
- }
-
- function set_exp_date()
- {
- exp_date = exp_dates[document.getElementById('<inp2:ls_InputName field="ListingTypeId" />').value];
- exp_time = exp_times[document.getElementById('<inp2:ls_InputName field="ListingTypeId" />').value];
- if (typeof(exp_date) != 'undefined') {
- document.getElementById('<inp2:ls_InputName field="ExpiresOn_date" />').value = exp_date;
- document.getElementById('<inp2:ls_InputName field="ExpiresOn_time" />').value = exp_time;
- }
- }
-
- var exp_dates = new Array();
- var exp_times = new Array();
- <inp2:m_DefineElement name="exp_date_elem" >
- exp_dates[<inp2:Field name="ListingTypeId" />] = "<inp2:ls_ExpirationDate />";
- exp_times[<inp2:Field name="ListingTypeId" />] = "<inp2:ls_ExpirationTime />";
- </inp2:m_DefineElement>
- <inp2:lst_PrintList block="exp_date_elem" />
-
- <inp2:m_if check="m_getequals" param="ls_event" value="OnPreCreate">
- set_exp_date();
- </inp2:m_if>
-</script>
-
-<input type="hidden" name="main_prefix" id="main_prefix" value="ls">
-<inp2:m_include t="incs/footer"/>
\ No newline at end of file
Property changes on: trunk/in-link/admin_templates/paid_listings/paid_listing_edit.tpl
___________________________________________________________________
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-link/admin_templates/import.tpl
===================================================================
--- trunk/in-link/admin_templates/import.tpl (revision 12828)
+++ trunk/in-link/admin_templates/import.tpl (nonexistent)
@@ -1,226 +0,0 @@
-<inp2:m_RequireLogin permissions="LINK.VIEW"/>
-<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="l" icon="icon46_tool_import" module="in-portal" title="!la_title_ImportLinks!"/>
-
-<inp2:m_RenderElement name="blue_bar" prefix="l.import" title_preset="links_import" module="in-portal" icon="icon46_tool_import"/>
-
-<!-- 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() {
-
- document.getElementById('export_columns').value = select_to_string('<inp2:l.import_InputName field="ExportColumns"/>');
- submit_event('l.import','OnExportBegin');
-
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('cancel', '<inp2:m_phrase label="la_ToolTip_Cancel" escape="1"/>', function() {
- submit_event('l.import','OnGoBack');
- }
- ) );
-
- a_toolbar.Render();
-
- function check_radio($id)
- {
- document.getElementById($id).checked = true;
- }
-
- // gets value of checked radio button
- function get_checked($field_name) {
- var $ret = false;
- var $fields = document.getElementsByName($field_name);
-
- for(var $i = 0; $i < $fields.length; $i++) {
- if ($fields[$i].checked) {
- $ret = $fields[$i].value;
- break;
- }
- }
- return $ret;
- }
-
- // enable/disable form fields based on other field values
- function reflectFormFields()
- {
- var $auto_fields = get_checked('<inp2:l.import_InputName field="FieldTitles"/>') == 1 ? true : false;
-
- if ($auto_fields) {
- document.getElementById('_cb_<inp2:l.import_InputName field="SkipFirstRow"/>').checked = true;
- }
- document.getElementById('_cb_<inp2:l.import_InputName field="SkipFirstRow"/>').onchange();
- document.getElementById('<inp2:l.import_InputName field="ExportColumns"/>').disabled = $auto_fields;
- document.getElementById('<inp2:l.import_InputName field="AvailableColumns"/>').disabled = $auto_fields;
-
- var $btn = null;
- var $btns = Array('up', 'down', 'left', 'right');
- var $i = 0;
- while ($i < $btns.length) {
- $btn = document.getElementById('btn_move_'+$btns[$i]);
- $btn.disabled = $auto_fields;
- $btn.className = $auto_fields ? 'button-disabled' : 'button';
- $i++;
- }
- }
-
- registerHook('openSelector', hBEFORE, function() {
- document.getElementById('export_columns').value = select_to_string('<inp2:l.import_InputName field="ExportColumns"/>');
- } );
-
- </script>
- </td>
- </tr>
-</tbody>
-</table>
-
-
-<table width="100%" border="0" cellspacing="0" cellpadding="4" class="tableborder">
- <inp2:m_RenderElement name="subsection" title="!la_section_General!"/>
-
-
- <tr class="<inp2:m_odd_even odd="table-color1" even="table-color2"/>">
- <inp2:m_inc param="tab_index" by="1"/>
- <inp2:m_RenderElement name="inp_edit_field_caption" prefix="l.import" field="ImportSource" title="la_fld_ImportFilename"/>
- <td>
- <table border="0">
- <tr>
- <td>
- <input type="radio" name="<inp2:l.import_InputName field="ImportSource"/>" id="<inp2:l.import_InputName field="ImportSource"/>_1"<inp2:m_if check="l.import_FieldEquals" field="ImportSource" value="1"> checked</inp2:m_if> value="1" />
- </td>
- <td>
- <label for="<inp2:l.import_InputName field="ImportSource"/>_1">upload</label>
- </td>
- <td>
- <input type="file" name="<inp2:l.import_InputName field="ImportFilename"/>" id="<inp2:l.import_InputName field="ImportFilename"/>" onclick="check_radio('<inp2:l.import_InputName field="ImportSource"/>_1');">
- </td>
- </tr>
-
- <tr>
- <td>
- <input type="radio" name="<inp2:l.import_InputName field="ImportSource"/>" id="<inp2:l.import_InputName field="ImportSource"/>_2"<inp2:m_if check="l.import_FieldEquals" field="ImportSource" value="2"> checked</inp2:m_if> value="2" />
- </td>
- <td>
- <label for="<inp2:l.import_InputName field="ImportSource"/>_2">select</label>
- </td>
- <td>
- <select name="<inp2:l.import_InputName field="ImportLocalFilename"/>" onclick="check_radio('<inp2:l.import_InputName field="ImportSource"/>_2');">
- <inp2:l.import_PredefinedOptions field="ImportLocalFilename" block="inp_option_item" selected="selected"/>
- </select>
- </td>
- </tr>
-
- </table>
- </td>
- <td class="error"><inp2:l.import_Error field="ImportSource"/>&nbsp;</td>
- </tr>
-
- <inp2:m_RenderElement name="inp_edit_box" prefix="l.import" field="FieldsSeparatedBy" title="la_fld_FieldsSeparatedBy" size="2" maxlength="1"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="l.import" field="FieldsEnclosedBy" title="la_fld_FieldsEnclosedBy" size="2" maxlength="1"/>
- <inp2:m_RenderElement name="inp_edit_radio" prefix="l.import" field="LineEndings" title="la_fld_LineEndings" use_phrases="0"/>
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="l.import" field="SkipFirstRow" title="la_fld_SkipFirstRow"/>
- <inp2:m_RenderElement name="inp_edit_radio" prefix="l.import" field="FieldTitles" title="la_fld_FieldTitles" onclick="reflectFormFields();"/>
-
- <tr class="<inp2:m_odd_even odd="table-color1" even="table-color2"/>">
- <inp2:m_inc param="tab_index" by="1"/>
- <inp2:m_RenderElement name="inp_edit_field_caption" prefix="l.import" field="ExportColumns" title="la_fld_ExportColumns"/>
- <td>
- <table cellpadding="0" cellspacing="0" border="0">
- <tr>
- <td>
- <input type="button" value="<inp2:m_phrase name="la_btn_Up"/>" id="btn_move_up" onclick="move_options_up('<inp2:l.import_InputName field="ExportColumns"/>', 1)" class="button">
- <input type="button" value="<inp2:m_phrase name="la_btn_Down"/>" id="btn_move_down" onclick="move_options_down('<inp2:l.import_InputName field="ExportColumns"/>', 1)" class="button"><br />
- <img src="img/spacer.gif" width="1" height="5" alt=""><br />
- </td>
- <td><img src="img/spacer.gif" width="45" height="1" alt=""><br></td>
- <td><inp2:m_phrase name="la_fld_AvailableColumns"/>:</td>
- </tr>
- <tr>
- <td>
- <select multiple id="<inp2:l.import_InputName field="ExportColumns"/>" size="15" style="width: 225px;">
- <inp2:l.import_PredefinedOptions field="ExportColumns" block="inp_option_item" selected="selected"/>
- </select>
- <input type="hidden" id="export_columns" name="<inp2:l.import_InputName field="ExportColumns"/>" value="<inp2:l.import_Field field="ExportColumns"/>" />
- </td>
- <td align="center">
- <input type="button" value="&nbsp;&laquo;&laquo;&nbsp;" id="btn_move_left" onclick="move_selected('<inp2:l.import_InputName field="AvailableColumns"/>', '<inp2:l.import_InputName field="ExportColumns"/>')" class="button"><br>
- <img src="img/spacer.gif" width="1" height="4" alt=""><br>
- <input type="button" value="&nbsp;&raquo;&raquo;&nbsp;" id="btn_move_right" onclick="move_selected('<inp2:l.import_InputName field="ExportColumns"/>', '<inp2:l.import_InputName field="AvailableColumns"/>'); select_sort('<inp2:l.import_InputName field="AvailableColumns"/>');" class="button">
- </td>
- <td>
- <select multiple id="<inp2:l.import_InputName field="AvailableColumns"/>" size="15" style="width: 225px;">
- <inp2:l.import_PredefinedOptions field="AvailableColumns" block="inp_option_item" selected="selected"/>
- </select>
- </td>
- </tr>
- </table>
- </td>
- <td class="error"><inp2:l.import_Error field="ExportColumns"/>&nbsp;</td>
- </tr>
-
-<!-- CATEGORY SELECTOR: BEGIN -->
- <inp2:m_DefineElement name="root_cat_caption">
- <inp2:c_RootCategoryName/>
- </inp2:m_DefineElement>
-
- <inp2:m_DefineElement name="category_caption">
- <inp2:m_param name="separator"/><inp2:m_param name="cat_name"/>
- </inp2:m_DefineElement>
-
- <tr class="<inp2:m_odd_even odd="table-color1" even="table-color2"/>">
- <inp2:m_inc param="tab_index" by="1"/>
- <inp2:m_RenderElement name="inp_edit_field_caption" prefix="l.import" field="CategoryId" title="la_fld_ImportCategory"/>
- <td>
- <b><inp2:l.import_CategoryPath separator=" &gt; " root_cat_render_as="root_cat_caption" render_as="category_caption" session_var="ImportCategory"/></b>
- <input type="hidden" name="<inp2:l.import_InputName field="CategoryId"/>" value="<inp2:l.import_Field field="CategoryId" />" />
- <a href="javascript:openSelector('l.import', '<inp2:adm_SelectorLink prefix="l.import" selection_mode="single" tab_prefixes="none"/>', 'ImportCategory', null, 'OnSaveSettings');"><img src="img/icons/icon24_cat.gif" border="0" align="absmiddle" /></a>
- </td>
- <td class="error"><inp2:l.import_Error field="CategoryId"/>&nbsp;</td>
- </tr>
-<!-- CATEGORY SELECTOR: END -->
-
- <inp2:m_RenderElement name="inp_edit_box" prefix="l.import" field="CategorySeparator" title="la_fld_CategorySeparator" size="2" maxlength="1"/>
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="l.import" field="ReplaceDuplicates" title="la_fld_ReplaceDuplicates" />
-
- <tr class="<inp2:m_odd_even odd="table-color1" even="table-color2"/>">
- <inp2:m_RenderElement name="inp_edit_field_caption" prefix="l.import" field="CheckDuplicatesMethod" title="la_fld_CheckDuplicatesMethod"/>
- <td>
- <table cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top">
- <input type="radio"<inp2:m_if check="l.import_FieldEquals" field="CheckDuplicatesMethod" value="1"> checked</inp2:m_if> name="<inp2:l.import_InputName field="CheckDuplicatesMethod"/>" id="<inp2:l.import_InputName field="CheckDuplicatesMethod"/>_1" value="1" />
- </td>
- <td>
- <label for="<inp2:l.import_InputName field="CheckDuplicatesMethod"/>_1"><inp2:m_phrase name="la_IDField" />: LINKID</label>
- </td>
- </tr>
-
- <tr>
- <td valign="top">
- <input type="radio"<inp2:m_if check="l.import_FieldEquals" field="CheckDuplicatesMethod" value="2"> checked</inp2:m_if> name="<inp2:l.import_InputName field="CheckDuplicatesMethod"/>" id="<inp2:l.import_InputName field="CheckDuplicatesMethod"/>_2" value="2" />
- </td>
- <td>
- <label for="<inp2:l.import_InputName field="CheckDuplicatesMethod"/>_2"><inp2:m_phrase name="la_OtherFields" />: </label>
- <inp2:l.import_PredefinedOptions prefix="l.import" field="DuplicateCheckFields" block="inp_checkbox_item" selected="checked"/>
-
- <inp2:m_RenderElement prefix="l.import" name="inp_edit_hidden" field="DuplicateCheckFields"/>
- </td>
- </tr>
- </table>
- </td>
- <td class="error"><inp2:l.import_Error field="CheckDuplicatesMethod"/>&nbsp;</td>
- </tr>
-
-</table>
-
-<script language="javascript" type="text/javascript">
- reflectFormFields();
-</script>
-
-<inp2:m_include t="incs/footer"/>
-
\ No newline at end of file
Property changes on: trunk/in-link/admin_templates/import.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/in-link/admin_templates/links/links_reviews.tpl
===================================================================
--- trunk/in-link/admin_templates/links/links_reviews.tpl (revision 12828)
+++ trunk/in-link/admin_templates/links/links_reviews.tpl (nonexistent)
@@ -1,121 +0,0 @@
-<inp2:m_RequireLogin permissions="LINK.VIEW" perm_prefix="l"/>
-<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="l" icon="icon46_links" module="in-link" title="!la_title_Links!"/>
-
-<inp2:m_include t="in-link/links/links_tabs"/>
-
-<inp2:m_RenderElement name="blue_bar" prefix="l" title_preset="links_reviews" module="in-link" icon="icon46_links"/>
-
-<!-- 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('l','<inp2:l_SaveEvent/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('cancel', '<inp2:m_phrase label="la_ToolTip_Cancel" escape="1"/>', function() {
- submit_event('l','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('l', '<inp2:l_PrevId/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('next', '<inp2:m_phrase label="la_ToolTip_Next" escape="1"/>', function() {
- go_to_id('l', '<inp2:l_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('l-rev', 'in-link/links/review_edit')
- } ) );
-
- function edit()
- {
- std_edit_temp_item('l-rev', 'in-link/links/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('l-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('l-rev','OnMassApprove');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarButton('decline', '<inp2:m_phrase label="la_ToolTip_Decline" escape="1"/>', function() {
- submit_event('l-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('l-rev','OnMassMoveUp');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarButton('move_down', '<inp2:m_phrase label="la_ToolTip_MoveDown" escape="1"/>', function() {
- submit_event('l-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="l_IsSingle" >
- a_toolbar.HideButton('prev');
- a_toolbar.HideButton('next');
- a_toolbar.HideButton('sep1');
- <inp2:m_else/>
- <inp2:m_if check="l_IsLast" >
- a_toolbar.DisableButton('next');
- </inp2:m_if>
- <inp2:m_if check="l_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:{$PrefixSpecial}_InputName field="$IdField" IdField="$IdField"/>" id="<inp2:{$PrefixSpecial}_InputName field="$IdField" IdField="$IdField"/>">
- <img src="<inp2:ModulePath module="In-Portal"/>img/itemicons/<inp2:{$PrefixSpecial}_ItemIcon grid="$grid"/>">&nbsp;
- <inp2:{$PrefixSpecial}_field field="$field" no_special="no_special" cut_first="100"/>
- </td>
-</inp2:m_DefineElement>
-
-<inp2:m_RenderElement name="grid" PrefixSpecial="l-rev" IdField="ReviewId" grid="Default" menu_filters="yes"/>
-<script type="text/javascript">
- Grids['l-rev'].SetDependantToolbarButtons( new Array('edit','delete','approve','decline','move_up','move_down') );
-</script>
-
-<inp2:m_include t="incs/footer"/>
Property changes on: trunk/in-link/admin_templates/links/links_reviews.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/in-link/admin_templates/links/links_images.tpl
===================================================================
--- trunk/in-link/admin_templates/links/links_images.tpl (revision 12828)
+++ trunk/in-link/admin_templates/links/links_images.tpl (nonexistent)
@@ -1,110 +0,0 @@
-<inp2:m_RequireLogin permissions="LINK.VIEW" perm_prefix="l"/>
-<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="l" icon="icon46_links" module="in-link" title="!la_title_Links!"/>
-
-<inp2:m_include t="in-link/links/links_tabs"/>
-
-<inp2:m_RenderElement name="blue_bar" prefix="l" title_preset="links_images" module="in-link" icon="icon46_links"/>
-
-<!-- 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('l-img', 'in-link/links/images_edit');
- }
-
- a_toolbar = new ToolBar();
- a_toolbar.AddButton( new ToolBarButton('select', '<inp2:m_phrase label="la_ToolTip_Save" escape="1"/>', function() {
- submit_event('l','<inp2:l_SaveEvent/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('cancel', '<inp2:m_phrase label="la_ToolTip_Cancel" escape="1"/>', function() {
- submit_event('l','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('l', '<inp2:l_PrevId/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('next', '<inp2:m_phrase label="la_ToolTip_Next" escape="1"/>', function() {
- go_to_id('l', '<inp2:l_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('l-img', 'in-link/links/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('l-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('l-img','OnMassMoveUp');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarButton('move_down', '<inp2:m_phrase label="la_ToolTip_MoveDown" escape="1"/>', function() {
- submit_event('l-img','OnMassMoveDown');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarButton('primary_image', '<inp2:m_phrase label="la_ToolTip_SetPrimary" escape="1"/>', function() {
- submit_event('l-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="l_IsSingle" >
- a_toolbar.HideButton('prev');
- a_toolbar.HideButton('next');
- a_toolbar.HideButton('sep1');
- <inp2:m_else/>
- <inp2:m_if check="l_IsLast" >
- a_toolbar.DisableButton('next');
- </inp2:m_if>
- <inp2:m_if check="l_IsFirst" >
- a_toolbar.DisableButton('prev');
- </inp2:m_if>
- </inp2:m_if>
- </script>
- </td>
- </tr>
-</tbody>
-</table>
-
-<inp2:m_RenderElement name="grid" PrefixSpecial="l-img" IdField="ImageId" grid="Default" menu_filters="yes"/>
-<script type="text/javascript">
- Grids['l-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-link/admin_templates/links/links_images.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/in-link/admin_templates/links/inlink_redirect.tpl
===================================================================
--- trunk/in-link/admin_templates/links/inlink_redirect.tpl (revision 12828)
+++ trunk/in-link/admin_templates/links/inlink_redirect.tpl (nonexistent)
@@ -1 +0,0 @@
-<inp2:l_FollowLocation field="Url"/>
\ No newline at end of file
Property changes on: trunk/in-link/admin_templates/links/inlink_redirect.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-link/admin_templates/links/links_edit.tpl
===================================================================
--- trunk/in-link/admin_templates/links/links_edit.tpl (revision 12828)
+++ trunk/in-link/admin_templates/links/links_edit.tpl (nonexistent)
@@ -1,111 +0,0 @@
-<inp2:m_RequireLogin permissions="LINK.VIEW" perm_prefix="l"/>
-<inp2:m_include t="incs/header" nobody="yes"/>
-
-<body topmargin="0" leftmargin="8" marginheight="0" marginwidth="8" bgcolor="#FFFFFF" onload="reflect_filename();">
-<inp2:m_RenderElement name="section_header" prefix="l" icon="icon46_links" module="in-link" title="!la_title_Links!"/>
-
-<inp2:m_include t="in-link/links/links_tabs"/>
-
-<inp2:m_RenderElement name="blue_bar" prefix="l" title_preset="links_edit" module="in-link" icon="icon46_links"/>
-
-<!-- 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('l','<inp2:l_SaveEvent/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('cancel', '<inp2:m_phrase label="la_ToolTip_Cancel" escape="1"/>', function() {
- submit_event('l','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('l', '<inp2:l_PrevId/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('next', '<inp2:m_phrase label="la_ToolTip_Next" escape="1"/>', function() {
- go_to_id('l', '<inp2:l_NextId/>');
- }
- ) );
-
- //a_toolbar.AddButton( new ToolBarSeparator('sep2') );
-
- a_toolbar.Render();
-
- <inp2:m_if check="l_IsSingle" >
- a_toolbar.HideButton('prev');
- a_toolbar.HideButton('next');
- a_toolbar.HideButton('sep1');
- //a_toolbar.HideButton('sep2');
- <inp2:m_else/>
- <inp2:m_if check="l_IsLast" >
- a_toolbar.DisableButton('next');
- </inp2:m_if>
- <inp2:m_if check="l_IsFirst" >
- a_toolbar.DisableButton('prev');
- </inp2:m_if>
- </inp2:m_if>
- </script>
- </td>
- </tr>
-</tbody>
-</table>
-
-<inp2:l_SaveWarning name="grid_save_warning"/>
-<table width="100%" border="0" cellspacing="0" cellpadding="4" class="tableborder">
- <inp2:m_RenderElement name="subsection" prefix="l" title="la_section_Link" original_title="la_section_OriginalValues" display_original="1"/>
- <inp2:m_RenderElement name="inp_id_label" prefix="l" field="LinkId" title="!la_fld_Id!" display_original="1"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="l" field="Name" title="!la_fld_Name!" size="40" display_original="1"/>
- <inp2:m_RenderElement name="inp_edit_textarea" prefix="l" field="Description" title="!la_fld_Description!" cols="40" rows="5" display_original="1"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="l" field="Url" title="!la_fld_Url!" size="40" display_original="1"/>
- <inp2:m_RenderElement name="inp_edit_user" prefix="l" field="CreatedById" title="!la_fld_LinkOwner!" size="25" display_original="1"/>
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="l" field="AutomaticFilename" title="la_fld_AutomaticFilename" onchange="reflect_filename()" display_original="1"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="l" field="Filename" title="la_fld_Filename" size="53" display_original="1"/>
-
- <inp2:m_RenderElement name="subsection" prefix="l" title="la_section_Properties" original_title="la_section_OriginalValues" display_original="1"/>
- <inp2:m_if check="l_DisplayOriginal" display_original="1">
- <tr class="<inp2:m_odd_even odd="table-color1" even="table-color2"/>">
- <inp2:m_RenderElement name="inp_edit_field_caption" prefix="l" field="Status" title="!la_fld_Status!"/>
- <td colspan="3">
- <inp2:m_Phrase label="la_UseGridToApproveDecline" />
- </td>
- </tr>
- <inp2:m_else/>
- <inp2:m_RenderElement name="inp_edit_radio" prefix="l" field="Status" title="!la_fld_Status!" display_original="1"/>
- </inp2:m_if>
-
- <inp2:m_RenderElement name="inp_edit_radio" prefix="l" field="NewItem" title="!la_fld_New!" display_original="1"/>
- <inp2:m_RenderElement name="inp_edit_radio" prefix="l" field="HotItem" title="!la_fld_Hot!" display_original="1"/>
- <inp2:m_RenderElement name="inp_edit_radio" prefix="l" field="PopItem" title="!la_fld_Pop!" display_original="1"/>
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="l" field="EditorsPick" title="!la_fld_EditorsPick!" display_original="1"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="l" field="Priority" title="!la_fld_Priority!" size="4" display_original="1"/>
- <inp2:m_RenderElement name="inp_edit_date_time" prefix="l" field="CreatedOn" title="!la_fld_CreatedOn!" display_original="1"/>
- <inp2:m_RenderElement name="inp_edit_date_time" prefix="l" field="Expire" title="!la_fld_Expire!" size="12" display_original="1"/>
-
- <inp2:m_RenderElement name="subsection" prefix="l" title="la_section_Counters" original_title="la_section_OriginalValues" display_original="1"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="l" field="CachedRating" title="!la_fld_Rating!" hint_label="la_prompt_RatingLimits" size="4" display_original="1"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="l" field="CachedVotesQty" title="!la_fld_Votes!" hint_label="la_prompt_VoteLimits" size="4" display_original="1"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="l" field="Hits" title="!la_fld_Hits!" hint_label="la_prompt_HitLimits" size="4" display_original="1"/>
- <input type="hidden" name="Hits_original" id="Hits_original" value="<inp2:l_Field name="Hits" db="db" />" />
-
- <!-- custom fields: begin -->
- <inp2:m_include t="in-portal/incs/custom_blocks"/>
- <inp2:cf.general_PrintList render_as="cv_row_block" SourcePrefix="l" value_field="Value" per_page="-1" grid="Default" original_title="la_section_OriginalValues" display_original="1"/>
- <!-- custom fields: end -->
-</table>
-
-<script type="text/javascript">
- function reflect_filename()
- {
- var $checked = document.getElementById('_cb_<inp2:l_InputName field="AutomaticFilename"/>').checked;
- document.getElementById('<inp2:l_InputName field="Filename"/>').readOnly = $checked;
- }
-</script>
-<inp2:m_include t="incs/footer"/>
Property changes on: trunk/in-link/admin_templates/links/links_edit.tpl
___________________________________________________________________
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-link/admin_templates/links/relations_edit.tpl
===================================================================
--- trunk/in-link/admin_templates/links/relations_edit.tpl (revision 12828)
+++ trunk/in-link/admin_templates/links/relations_edit.tpl (nonexistent)
@@ -1,47 +0,0 @@
-<inp2:m_RequireLogin permissions="LINK.VIEW" perm_prefix="l"/>
-<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="l" icon="icon46_links" module="in-link" title="!la_title_Links!"/>
-
-<inp2:m_RenderElement name="blue_bar" prefix="l" title_preset="relations_edit" module="in-link" icon="icon46_links"/>
-
-<!-- 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('l-rel','<inp2:l-rel_SaveEvent/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('cancel', '<inp2:m_phrase label="la_ToolTip_Cancel" escape="1"/>', function() {
- submit_event('l-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="l-rel" field="SourceId"/>
- <inp2:m_RenderElement name="inp_edit_hidden" prefix="l-rel" field="SourceType"/>
- <inp2:m_RenderElement name="inp_edit_hidden" prefix="l-rel" field="TargetId"/>
- <inp2:m_RenderElement name="inp_edit_hidden" prefix="l-rel" field="TargetType"/>
-
- <inp2:m_RenderElement name="inp_id_label" prefix="l-rel" field="RelationshipId" title="!la_fld_RelationshipId!"/>
- <inp2:m_RenderElement name="inp_edit_relation" prefix="l-rel" field="TargetId" title="!la_fld_TargetId!"/>
- <inp2:m_RenderElement name="inp_edit_radio" prefix="l-rel" field="Type" title="!la_fld_RelationshipType!"/>
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="l-rel" field="Enabled" title="!la_fld_Enabled!"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="l-rel" field="Priority" title="!la_fld_Priority!" size="4"/>
-</table>
-<inp2:m_include t="incs/footer"/>
Property changes on: trunk/in-link/admin_templates/links/relations_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-link/admin_templates/links/links_tabs.tpl
===================================================================
--- trunk/in-link/admin_templates/links/links_tabs.tpl (revision 12828)
+++ trunk/in-link/admin_templates/links/links_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-link/links/links_edit" main_prefix="l"/>
- <inp2:m_RenderElement name="tab" title="la_tab_Categories" t="in-link/links/links_categories" main_prefix="l"/>
- <inp2:m_RenderElement name="tab" title="la_tab_Relations" t="in-link/links/links_relations" main_prefix="l"/>
-
- <inp2:m_RenderElement name="tab" title="la_tab_Images" t="in-link/links/links_images" main_prefix="l"/>
- <inp2:m_RenderElement name="tab" title="la_tab_Reviews" t="in-link/links/links_reviews" main_prefix="l"/>
- <inp2:m_RenderElement name="tab" title="la_tab_Custom" t="in-link/links/links_custom" main_prefix="l"/>
- </tr>
- </table>
- </td>
-</tr>
-</table>
\ No newline at end of file
Property changes on: trunk/in-link/admin_templates/links/links_tabs.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-link/admin_templates/links/links_custom.tpl
===================================================================
--- trunk/in-link/admin_templates/links/links_custom.tpl (revision 12828)
+++ trunk/in-link/admin_templates/links/links_custom.tpl (nonexistent)
@@ -1,68 +0,0 @@
-<inp2:m_RequireLogin permissions="LINK.VIEW" perm_prefix="l"/>
-<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="l" icon="icon46_links" module="in-link" title="!la_title_Links!"/>
-
-<inp2:m_include t="in-link/links/links_tabs"/>
-
-<inp2:m_RenderElement name="blue_bar" prefix="l" title_preset="links_custom" module="in-link" icon="icon46_links"/>
-
-<!-- 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('l','<inp2:l_SaveEvent/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('cancel', '<inp2:m_phrase label="la_ToolTip_Cancel" escape="1"/>', function() {
- submit_event('l','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('l', '<inp2:l_PrevId/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('next', '<inp2:m_phrase label="la_ToolTip_Next" escape="1"/>', function() {
- go_to_id('l', '<inp2:l_NextId/>');
- }
- ) );
-
- function edit(){ }
-
- a_toolbar.Render();
-
- <inp2:m_if check="l_IsSingle">
- a_toolbar.HideButton('prev');
- a_toolbar.HideButton('next');
- a_toolbar.HideButton('sep1');
- <inp2:m_else/>
- <inp2:m_if check="l_IsLast" >
- a_toolbar.DisableButton('next');
- </inp2:m_if>
- <inp2:m_if check="l_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_if check="l_DisplayOriginal" display_original="1">
- <inp2:m_RenderElement name="grid" PrefixSpecial="cf" IdField="CustomFieldId" SourcePrefix="l" value_field="Value" per_page="-1" grid="SeparateTabOriginal" header_block="grid_column_title_no_sorting" no_init="no_init" original_title="la_section_OriginalValues" display_original="1"/>
- <inp2:m_else/>
- <inp2:m_RenderElement name="grid" PrefixSpecial="cf" IdField="CustomFieldId" SourcePrefix="l" value_field="Value" per_page="-1" grid="SeparateTab" header_block="grid_column_title_no_sorting" no_init="no_init"/>
- </inp2:m_if>
-
-
-<inp2:m_include t="incs/footer"/>
Property changes on: trunk/in-link/admin_templates/links/links_custom.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/in-link/admin_templates/links/links_categories.tpl
===================================================================
--- trunk/in-link/admin_templates/links/links_categories.tpl (revision 12828)
+++ trunk/in-link/admin_templates/links/links_categories.tpl (nonexistent)
@@ -1,91 +0,0 @@
-<inp2:m_RequireLogin permissions="LINK.VIEW" perm_prefix="l"/>
-<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="l" icon="icon46_links" module="in-link" title="!la_title_Links!"/>
-
-<inp2:m_include t="in-link/links/links_tabs"/>
-
-<inp2:m_RenderElement name="blue_bar" prefix="l" title_preset="links_categories" module="in-link" icon="icon46_links"/>
-
-<!-- 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('l','<inp2:l_SaveEvent/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('cancel', '<inp2:m_phrase label="la_ToolTip_Cancel" escape="1"/>', function() {
- submit_event('l','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('l', '<inp2:l_PrevId/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('next', '<inp2:m_phrase label="la_ToolTip_Next" escape="1"/>', function() {
- go_to_id('l', '<inp2:l_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('l', '<inp2:adm_SelectorLink prefix="l" 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('l-ci')
- } ) );
-
- a_toolbar.AddButton( new ToolBarButton('primary_cat', '<inp2:m_phrase label="la_ToolTip_SetPrimaryCategory" escape="1"/>', function() {
- submit_event('l-ci','OnSetPrimary');
- }
- ) );
-
- a_toolbar.Render();
-
- <inp2:m_if check="l_IsSingle" >
- a_toolbar.HideButton('prev');
- a_toolbar.HideButton('next');
- a_toolbar.HideButton('sep1');
- <inp2:m_else/>
- <inp2:m_if check="l_IsLast" >
- a_toolbar.DisableButton('next');
- </inp2:m_if>
- <inp2:m_if check="l_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:{$PrefixSpecial}_InputName field="$IdField"/>" id="<inp2:{$PrefixSpecial}_InputName field="$IdField"/>">
- <img src="<inp2:ModulePath />img/itemicons/<inp2:{$PrefixSpecial}_ItemIcon grid="$grid"/>">&nbsp;
- <inp2:{$PrefixSpecial}_CategoryName field="$field" primary_title="!la_PrimaryCategory!" no_special="1"/>
- </td>
-</inp2:m_DefineElement>
-
-<inp2:m_RenderElement name="grid" PrefixSpecial="l-ci" IdField="CategoryId" grid="Default" header_block="grid_column_title" data_block="grid_data_td" search="on"/>
-<script type="text/javascript">
- Grids['l-ci'].SetDependantToolbarButtons( new Array('delete','primary_cat') );
-</script>
-
-<inp2:m_include t="incs/footer"/>
Property changes on: trunk/in-link/admin_templates/links/links_categories.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-link/admin_templates/links/images_edit.tpl
===================================================================
--- trunk/in-link/admin_templates/links/images_edit.tpl (revision 12828)
+++ trunk/in-link/admin_templates/links/images_edit.tpl (nonexistent)
@@ -1,59 +0,0 @@
-<inp2:m_RequireLogin permissions="LINK.VIEW" perm_prefix="l"/>
-<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="l" icon="icon46_links" module="in-link" title="!la_Text_Links!"/>
-
-<inp2:m_RenderElement name="blue_bar" prefix="l" title_preset="images_edit" module="in-link" icon="icon46_links"/>
-
-<!-- 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('l-img','<inp2:l-img_SaveEvent/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('cancel', '<inp2:m_phrase label="la_ToolTip_Cancel" escape="1"/>', function() {
- submit_event('l-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="l-img" field="ResourceId"/>
- <inp2:m_RenderElement name="inp_label" prefix="l-img" field="ImageId" title="!la_fld_ImageId!"/>
-
- <inp2:m_RenderElement name="inp_edit_box" prefix="l-img" field="Name" title="!la_fld_Name!" size="40"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="l-img" field="AltName" title="!la_fld_AltValue!" size="40"/>
-
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="l-img" field="Enabled" title="!la_fld_Enabled!" onchange="check_primary()" />
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="l-img" field="DefaultImg" title="!la_fld_Primary!" onchange="check_status()" />
- <inp2:m_RenderElement name="inp_edit_box" prefix="l-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="l-img"/>
-
- <inp2:m_RenderElement name="subsection" title="!la_section_FullSizeImage!"/>
- <inp2:m_RenderElement name="inp_edit_checkbox" prefix="l-img" field="SameImages" title="!la_fld_SameAsThumb!" onchange="toggle_fullsize()"/>
- <inp2:m_RenderElement name="fullsize_section" prefix="l-img"/>
-</table>
-
-<script type="text/javascript">
- <inp2:m_RenderElement name="images_edit_js" prefix="l-img"/>
- toggle_fullsize();
-</script>
-
-<inp2:m_include t="incs/footer"/>
\ No newline at end of file
Property changes on: trunk/in-link/admin_templates/links/images_edit.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/in-link/admin_templates/links/links_relations.tpl
===================================================================
--- trunk/in-link/admin_templates/links/links_relations.tpl (revision 12828)
+++ trunk/in-link/admin_templates/links/links_relations.tpl (nonexistent)
@@ -1,108 +0,0 @@
-<inp2:m_RequireLogin permissions="LINK.VIEW" perm_prefix="l"/>
-<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="l" icon="icon46_links" module="in-link" title="!la_title_Links!"/>
-
-<inp2:m_include t="in-link/links/links_tabs"/>
-
-<inp2:m_RenderElement name="blue_bar" prefix="l" title_preset="links_relations" module="in-link" icon="icon46_links"/>
-
-<!-- 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('l','<inp2:l_SaveEvent/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('cancel', '<inp2:m_phrase label="la_ToolTip_Cancel" escape="1"/>', function() {
- submit_event('l','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('l', '<inp2:l_PrevId/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('next', '<inp2:m_phrase label="la_ToolTip_Next" escape="1"/>', function() {
- go_to_id('l', '<inp2:l_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('l-rel', '<inp2:adm_SelectorLink prefix="l-rel" selection_mode="single" tab_prefixes="all"/>', 'TargetId', '950x600');
- } ) );
-
- function edit()
- {
- std_edit_temp_item('l-rel', 'in-link/links/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('l-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('l-rel','OnMassApprove');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarButton('decline', '<inp2:m_phrase label="la_ToolTip_Decline" escape="1"/>', function() {
- submit_event('l-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="l_IsSingle" >
- a_toolbar.HideButton('prev');
- a_toolbar.HideButton('next');
- a_toolbar.HideButton('sep1');
- //a_toolbar.HideButton('sep2');
- <inp2:m_else/>
- <inp2:m_if check="l_IsLast" >
- a_toolbar.DisableButton('next');
- </inp2:m_if>
- <inp2:m_if check="l_IsFirst" >
- a_toolbar.DisableButton('prev');
- </inp2:m_if>
- </inp2:m_if>
- </script>
- </td>
- </tr>
-</tbody>
-</table>
-
-<inp2:m_RenderElement name="grid" PrefixSpecial="l-rel" IdField="RelationshipId" grid="Default" menu_filters="yes"/>
-<script type="text/javascript">
- Grids['l-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-link/admin_templates/links/links_relations.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-link/admin_templates/links/links_catalog.tpl
===================================================================
--- trunk/in-link/admin_templates/links/links_catalog.tpl (revision 12828)
+++ trunk/in-link/admin_templates/links/links_catalog.tpl (nonexistent)
@@ -1,86 +0,0 @@
-<inp2:m_if check="m_GetConst" const="K4_LINKS">
- <inp2:m_if check="m_CheckPermission" permissions="LINK.VIEW">
- <link rel="icon" href="img/favicon.ico" type="image/x-icon" />
- <link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon" />
- <link rel="stylesheet" rev="stylesheet" href="incs/style.css" type="text/css" media="screen" />
-
- <script language="javascript" src="incs/is.js"></script>
- <script language="javascript" src="incs/script.js"></script>
- <script language="javascript" src="incs/in-portal.js"></script>
- <script language="javascript" src="incs/toolbar.js"></script>
- <script language="javascript" src="incs/grid.js"></script>
- <script language="javascript" src="incs/tabs.js"></script>
- <script language="javascript">
- var t = '<inp2:m_get param="t"/>';
- var popups = '1';
- var multiple_windows = '1';
- var main_title = '';
- var tpl_changed = 0;
-
- var img_path = "img/";
-
- </script>
-
- <inp2:m_include t="incs/in-portal"/>
-
- <script type="text/javascript">
- var a_toolbar = new ToolBar();
- </script>
-
-
-
- <inp2:m_DefineElement name="item_caption_td" >
- <td class="table_white" id="<inp2:m_param name="PrefixSpecial"/>_<inp2:{$PrefixSpecial}_field field="$IdField"/>" sequence="<inp2:m_get param="{$PrefixSpecial}_sequence"/>" width="<inp2:m_param name="column_width"/>%">
- <inp2:m_inc param="{$PrefixSpecial}_sequence" by="1"/>
- <input type="checkbox" name="<inp2:InputName field="$IdField" IdField="$IdField"/>" id="<inp2:InputName field="$IdField" IdField="$IdField"/>">
- <img src="<inp2:ModulePath />img/itemicons/<inp2:{$PrefixSpecial}_ItemIcon grid="$grid"/>">
-
- <span class="priority"><inp2:m_if check="FieldEquals" field="Priority" value="0"><inp2:m_else/><sup><inp2:Field field="Priority"/></sup></inp2:m_if></span>
-
- <a class="link" href="<inp2:ClickLink t="in-link/link_redirect" />" target="_blank"><inp2:Field field="Name"/></a>
-
- <inp2:m_if check="Field" name="EditorsPick"><span class="link_pick"><inp2:m_phrase label="lu_Pick"/></span></inp2:m_if>
- <inp2:m_if check="Field" name="IsPop"><span class="link_pop"><inp2:m_phrase label="lu_Pop"/></span></inp2:m_if>
- <inp2:m_if check="Field" name="IsNew"><span class="link_new"><inp2:m_phrase label="lu_New"/></span></inp2:m_if>
- <inp2:m_if check="Field" name="IsHot"><span class="link_top"><inp2:m_phrase label="lu_Hot"/></span></inp2:m_if><br>
- <div style="padding-left:3px">
- <span class="link_desc"><inp2:Field field="Description" cut_first="100"/></span><br>
- <span class="link_detail">
- (Added: <inp2:Field name="CreatedOn"/> /
- Hits: <inp2:Field name="Hits"/> /
- Rating: <inp2:Field name="CachedRating" format="%.02f"/> /
- Votes: <inp2:Field name="CachedVotesQty"/> /
- Reviews: <inp2:Field name="CachedReviewsQty"/>)
- </span>
- </div>
- <br />
- </td>
- </inp2:m_DefineElement>
-
-
- <div id="k4links" class="ini_tab" isTab="true" tabTitle="K4-Links" PrefixSpecial="l" ActionPrefix="k4:k4_actionHandler('$$event$$','$$prefix$$')" EditURL="in-link/links/links_edit">
-
- <inp2:m_include t="incs/blocks"/>
- <inp2:m_RenderElement name="kernel_form" form_name="k4links_form"/>
-
-
- <inp2:m_set fw_menu_included="1"/>
- <inp2:m_RenderElement name="white_grid" render_as="item_caption_td" PrefixSpecial="l" IdField="LinkId" grid="Default" no_toolbar="no_toolbar" menu_filters="yes"/>
-
- <script type="text/javascript">
-
- var CatsGrid = new InpGrid('categories');
-
- function init_links_grid()
- {
- Grids['l'].AddAlternativeGrid(CatsGrid);
- Grids['l'].SetDependantToolbarButtons( new Array('portal:edit','portal:delete','portal:approve','portal:decline','portal:cut','portal:copy','portal:move_up','portal:move_down') );
- Grids['l'].SetDependantToolbarButtons( new Array('portal:editcat'), 0 ); //invert dep button
- }
- theMainScript.AddOnLoad('init_links_grid()');
- </script>
- <inp2:m_RenderElement name="kernel_form_end"/>
- </div>
- <script>registerTab('k4links');</script>
- </inp2:m_if>
-</inp2:m_if>
\ No newline at end of file
Property changes on: trunk/in-link/admin_templates/links/links_catalog.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/in-link/admin_templates/links/review_edit.tpl
===================================================================
--- trunk/in-link/admin_templates/links/review_edit.tpl (revision 12828)
+++ trunk/in-link/admin_templates/links/review_edit.tpl (nonexistent)
@@ -1,58 +0,0 @@
-<inp2:m_RequireLogin permissions="LINK.VIEW" perm_prefix="l"/>
-<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="l" icon="icon46_links" module="in-link" title="!la_Text_Reviews!"/>
-
-<inp2:m_RenderElement name="blue_bar" prefix="l" title_preset="reviews_edit" module="in-link" icon="icon46_links"/>
-
-<!-- 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('l-rev','<inp2:l-rev_SaveEvent/>');
- }
- ) );
- a_toolbar.AddButton( new ToolBarButton('cancel', '<inp2:m_phrase label="la_ToolTip_Cancel" escape="1"/>', function() {
- submit_event('l-rev','OnCancel');
- }
- ) );
-
- a_toolbar.Render();
-
- <inp2:m_if check="l-rev_IsSingle" >
- a_toolbar.HideButton('prev');
- a_toolbar.HideButton('next');
- a_toolbar.HideButton('sep1');
- <inp2:m_else/>
- <inp2:m_if check="l-rev_IsLast" >
- a_toolbar.DisableButton('next');
- </inp2:m_if>
- <inp2:m_if check="l-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="l-rev" field="ItemId"/>
- <inp2:m_RenderElement name="inp_edit_checkbox_allow_html" prefix="l-rev" field="TextFormat"/>
- <inp2:m_RenderElement name="inp_label" prefix="l-rev" field="ReviewId" title="!la_fld_ReviewId!"/>
- <inp2:m_RenderElement name="inp_edit_user" prefix="l-rev" field="CreatedById" title="!la_fld_CreatedById!" class="text"/>
- <inp2:m_RenderElement name="inp_edit_textarea" prefix="l-rev" field="ReviewText" title="!la_fld_ReviewText!" cols="70" rows="8"/>
- <inp2:m_RenderElement name="inp_edit_options" prefix="l-rev" field="Rating" title="la_fld_Rating" use_phrases="1" class="text"/>
- <inp2:m_RenderElement name="subsection" title="!la_Text_General!"/>
- <inp2:m_RenderElement name="inp_edit_radio" prefix="l-rev" field="Status" title="!la_fld_Status!"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="l-rev" field="Priority" title="!la_fld_Priority!" size="3" class="text"/>
- <inp2:m_RenderElement name="inp_edit_date_time" prefix="l-rev" field="CreatedOn" title="!la_fld_CreatedOn!" size="20" class="text"/>
-</table>
-<inp2:m_include t="incs/footer"/>
Property changes on: trunk/in-link/admin_templates/links/review_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-link/admin_templates/export_finish.tpl
===================================================================
--- trunk/in-link/admin_templates/export_finish.tpl (revision 12828)
+++ trunk/in-link/admin_templates/export_finish.tpl (nonexistent)
@@ -1,33 +0,0 @@
-<inp2:m_RequireLogin permissions="LINK.VIEW"/>
-<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" icon="icon46_conf_regional" title="!la_title_LinksExport!"/>
-
-<inp2:m_RenderElement name="blue_bar" prefix="l.export" title_preset="links_export" module="in-link" icon="icon46_conf_regional"/>
-
-<!-- ToolBar --->
-
-<table width="100%" border="0" cellspacing="0" cellpadding="4" class="tableborder">
- <inp2:m_RenderElement name="subsection" title="!la_section_General!"/>
-
- <tr class="<inp2:m_odd_even odd="table-color1" even="table-color2"/>">
- <td>
- <inp2:m_phrase label="la_DownloadExportFile"/>
- <td>
- <a href="<inp2:l.export_ExportPath as_url="1"/>"><inp2:l.export_ExportPath /></a>
- </td>
- <td class="error">&nbsp;</td>
- </tr>
-
- <tr class="<inp2:m_odd_even odd="table-color1" even="table-color2"/>">
- <td colspan="3" align="left">
- <a href="javascript:submit_event('l.export','OnGoBack');"><inp2:m_phrase label="la_Continue"/></a>
- </td>
- </tr>
-
-
-</table>
-
-<inp2:m_include t="incs/footer"/>
-
\ No newline at end of file
Property changes on: trunk/in-link/admin_templates/export_finish.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-link/admin_templates/duplicate_checker.tpl
===================================================================
--- trunk/in-link/admin_templates/duplicate_checker.tpl (revision 12828)
+++ trunk/in-link/admin_templates/duplicate_checker.tpl (nonexistent)
@@ -1,172 +0,0 @@
-<inp2:m_RequireLogin permissions="in-link:duplicate_checker.view" system="1"/>
-<inp2:m_include t="incs/header" nobody="yes"/>
-
-<inp2:adm_SaveReturnScript/>
-
-<body topmargin="0" leftmargin="8" marginheight="0" marginwidth="8" bgcolor="#FFFFFF">
-<inp2:m_RenderElement name="section_header" prefix="l.duplicates" icon="icon46_duplicate_checker" module="in-link" title="la_title_LinksDuplicateChecker"/>
-
-<inp2:m_RenderElement name="blue_bar" prefix="l.duplicates" title_preset="duplicate_links" module="in-link" icon="icon46_duplicate_checker"/>
-
-<inp2:m_if check="m_GetEquals" name="fw_menu_included" value="">
- <link rel="stylesheet" rev="stylesheet" href="incs/nlsmenu.css" type="text/css" />
- <script type="text/javascript" src="js/nlsmenu.js"></script>
- <script type="text/javascript" src="js/nlsmenueffect_1_2_1.js"></script>
-
- <script type="text/javascript">
- var menuMgr = new NlsMenuManager("mgr");
- menuMgr.timeout = 500;
- menuMgr.flowOverFormElement = true;
- </script>
- <inp2:m_set fw_menu_included="1"/>
-</inp2:m_if>
-
-<!-- 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();
-
- function edit()
- {
- set_hidden_field('remove_specials[l.duplicates-sub]',1);
- <inp2:m_if check="m_ConstOn" name="K4_LINKS" inverse="inverse">
- document.getElementById($form_name).action = '<inp2:m_Link index_file="../in-link/admin/addlink.php" multiple_ids="1" no_amp="1" escape="1"/>';
- </inp2:m_if>
- std_edit_item('l.duplicates-sub', 'in-link/links/links_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('l.duplicates-sub')
- } ) );
-
- a_toolbar.AddButton( new ToolBarSeparator('sep1') );
-
- a_toolbar.AddButton( new ToolBarButton('in-portal:merge_links', '<inp2:m_phrase label="la_ToolTip_Merge" escape="1"/>', function() {
- submit_event('l.duplicates-sub','OnMerge');
- }
- ) );
-
- a_toolbar.AddButton( new ToolBarSeparator('sep2') );
-
- a_toolbar.AddButton( new ToolBarButton('view', '<inp2:m_phrase label="la_ToolTip_View" escape="1"/>', function() {
- show_viewmenu(a_toolbar,'view');
- }
- ) );
-
- a_toolbar.Render();
-
- function set_grouping($prefix_special, $dupe_fields)
- {
- set_hidden_field($prefix_special + '_dupe_fields', $dupe_fields);
- submit_event($prefix_special, 'OnSetGrouping');
-
- }
-
- </script>
- </td>
- </tr>
-</tbody>
-</table>
-
-
-
-<inp2:m_DefineElement name="duplicates_grid" main_prefix="" per_page="" main_special="" no_toolbar="" grid_filters="" search="on" header_block="grid_column_title" filter_block="grid_column_filter" data_block="grid_data_td" row_block="_row" SourcePrefix="" value_field="Value" ajax="0">
-
-
- <inp2:m_if check="m_GetEquals" name="{$PrefixSpecial}-sub_error" value="1">
- <table width="100%" border="0" cellspacing="0" cellpadding="4" class="table_border_<inp2:m_if check="m_ParamEquals" name="no_toolbar" value="no_toolbar" >nobottom<inp2:m_else/>notop</inp2:m_if>">
- <tr>
- <td valign="top" class="hint_red">
- <inp2:m_phrase name="la_merge_error"/>
- </td>
- </tr>
- </table>
- </inp2:m_if>
-
-
- <inp2:m_if check="m_RecallEquals" var="{$PrefixSpecial}-sub_search_keyword" value="" inverse="inverse" >
- <table width="100%" border="0" cellspacing="0" cellpadding="4" class="table_border_<inp2:m_if check="m_ParamEquals" name="no_toolbar" value="no_toolbar" >nobottom<inp2:m_else/>notop</inp2:m_if>">
- <tr>
- <td valign="top" class="hint_red">
- <inp2:m_phrase name="la_Warning_Filter"/>
- </td>
- </tr>
- </table>
- </inp2:m_if>
-
-
- <inp2:m_RenderElement name="grid_pagination" grid="$grid" PrefixSpecial="$PrefixSpecial" SearchPrefixSpecial="{$PrefixSpecial}-sub" main_special="$main_special" search="$search" no_toolbar="$no_toolbar"/>
-
- <table width="100%" border="0" cellspacing="0" cellpadding="4" class="tableborder">
- <tr class="subsectiontitle">
- <inp2:{$PrefixSpecial}_IterateGridFields grid="$grid" mode="header" block="$header_block" ajax="$ajax"/>
- </tr>
-
- <inp2:m_DefineElement name="sub_row">
- <tr class="<inp2:m_odd_even odd="table-color1" even="table-color2"/>" id="<inp2:m_param name="PrefixSpecial"/>_<inp2:{$PrefixSpecial}_field field="$IdField"/>" sequence="<inp2:m_get param="{$PrefixSpecial}_sequence"/>"><inp2:m_inc param="{$PrefixSpecial}_sequence" by="1"/>
- <inp2:IterateGridFields grid="$grid" mode="data" block="$data_block"/>
- </tr>
- </inp2:m_DefineElement>
-
- <inp2:m_DefineElement name="_row" >
- <tr class="subsectiontitle">
- <td colspan="<inp2:GridFieldsCount grid="$grid"/>">
- Link: <inp2:GroupTitle /> (Duplicates: <inp2:Field name="DupeCount"/>)
- </td>
- </tr>
- <inp2:$PrefixSpecial-sub_PrintList block="sub_row" grid="$grid" data_block="$data_block" requery="1" per_page="100"/>
- </inp2:m_DefineElement>
-
- <inp2:m_set {$PrefixSpecial}-sub_sequence="1" odd_even="table-color1"/>
- <inp2:{$PrefixSpecial}_PrintList block="$row_block" per_page="$per_page" main_special="$main_special" SourcePrefix="$SourcePrefix" value_field="$value_field"/>
-
- </table>
-
- <script type="text/javascript">
- <inp2:m_if check="m_ParamEquals" name="no_init" value="no_init" inverse="inverse">
- Grids['<inp2:m_param name="PrefixSpecial"/>'] = new Grid('<inp2:m_param name="PrefixSpecial"/>', 'selected_div', ':original', edit, a_toolbar);
- Grids['<inp2:m_param name="PrefixSpecial"/>'].AddItemsByIdMask('tr', /^<inp2:m_param name="PrefixSpecial"/>-sub_([0-9-]+)/, '<inp2:m_param name="PrefixSpecial"/>-sub[$$ID$$][<inp2:m_param name="IdField"/>]');
- Grids['<inp2:m_param name="PrefixSpecial"/>'].InitItems();
- </inp2:m_if>
-
- registerHook('ViewMenu', hBEFORE, function() {
- $Menus['<inp2:m_param name="PrefixSpecial"/>' + '_grouping_menu'] = menuMgr.createMenu(rs('<inp2:m_param name="PrefixSpecial"/>.grouping.menu'));
- $Menus['<inp2:m_param name="PrefixSpecial"/>' + '_grouping_menu'].applyBorder(false, false, false, false);
- $Menus['<inp2:m_param name="PrefixSpecial"/>' + '_grouping_menu'].dropShadow("none");
- $Menus['<inp2:m_param name="PrefixSpecial"/>' + '_grouping_menu'].showIcon = true;
- $Menus['<inp2:m_param name="PrefixSpecial"/>' + '_grouping_menu'].addItem(rs('<inp2:m_param name="PrefixSpecial"/>.group.name'), 'Name', 'javascript:set_grouping("<inp2:m_param name="PrefixSpecial"/>", "|Name|");' <inp2:m_if check="m_RecallEquals" name="{$PrefixSpecial}_dupe_fields" value="|Name|">,['img/check_on.gif']</inp2:m_if>);
- $Menus['<inp2:m_param name="PrefixSpecial"/>' + '_grouping_menu'].addItem(rs('<inp2:m_param name="PrefixSpecial"/>.group.url'), 'Url', 'javascript:set_grouping("<inp2:m_param name="PrefixSpecial"/>", "|Url|");' <inp2:m_if check="m_RecallEquals" name="{$PrefixSpecial}_dupe_fields" value="|Url|">,['img/check_on.gif']</inp2:m_if>);
- $Menus['<inp2:m_param name="PrefixSpecial"/>' + '_grouping_menu'].addItem(rs('<inp2:m_param name="PrefixSpecial"/>.group.name.url'), 'Name <inp2:m_phrase name="la_and"/> Url', 'javascript:set_grouping("<inp2:m_param name="PrefixSpecial"/>", "|Name|Url|");' <inp2:m_if check="m_RecallEquals" name="{$PrefixSpecial}_dupe_fields" value="|Name|Url|">,['img/check_on.gif']</inp2:m_if>);
- } );
-
- registerHook('ViewMenu', hAFTER, function() {
- $Menus['<inp2:m_param name="PrefixSpecial"/>' + '_view_menu'].addItem(
- rs('<inp2:m_param name="PrefixSpecial"/>.grouping.menu.item'),
- '<inp2:m_phrase name="la_menu_Grouping"/>',
- 'javascript:void()',
- null, true, null,
- rs('<inp2:m_param name="PrefixSpecial"/>.grouping.menu'),
- '<inp2:m_phrase name="la_menu_Grouping"/>' );
- } );
-
- <inp2:m_RenderElement name="nlsmenu_declaration" pass_params="true"/>
- $ViewMenus = new Array('<inp2:m_param name="PrefixSpecial"/>');
- </script>
- <input type="hidden" id="<inp2:m_param name="PrefixSpecial"/>_Sort1" name="<inp2:m_param name="PrefixSpecial"/>_Sort1" value="">
- <input type="hidden" id="<inp2:m_param name="PrefixSpecial"/>_Sort1_Dir" name="<inp2:m_param name="PrefixSpecial"/>_Sort1_Dir" value="asc">
-</inp2:m_DefineElement>
-
-
-<inp2:m_RenderElement name="duplicates_grid" PrefixSpecial="l.duplicates" IdField="LinkId" grid="Duplicates" />
-<script type="text/javascript">
- Grids['l.duplicates'].SetDependantToolbarButtons( new Array('edit','delete','merge_links') );
-</script>
-
-
-<inp2:m_include t="incs/footer"/>
\ No newline at end of file
Property changes on: trunk/in-link/admin_templates/duplicate_checker.tpl
___________________________________________________________________
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-link/admin_templates/img/toolbar/tool_new_link.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/toolbar/tool_new_link.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-link/admin_templates/img/toolbar/tool_new_listing_type.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/toolbar/tool_new_listing_type.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-link/admin_templates/img/toolbar/tool_new_listing_f2.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/toolbar/tool_new_listing_f2.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-link/admin_templates/img/toolbar/tool_new_listing.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/toolbar/tool_new_listing.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-link/admin_templates/img/toolbar/tool_new_link_f2.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/toolbar/tool_new_link_f2.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-link/admin_templates/img/toolbar/tool_new_link_f3.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/toolbar/tool_new_link_f3.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-link/admin_templates/img/toolbar/tool_new_listing_type_f2.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/toolbar/tool_new_listing_type_f2.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-link/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-link/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-link/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-link/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-link/admin_templates/img/icons/icon46_links.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/icons/icon46_links.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-link/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-link/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-link/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-link/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-link/admin_templates/img/icons/icon46_list_settings_in-link.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/icons/icon46_list_settings_in-link.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-link/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-link/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-link/admin_templates/img/icons/icon46_listing_types.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/icons/icon46_listing_types.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-link/admin_templates/img/icons/icon46_list_validate.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/icons/icon46_list_validate.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-link/admin_templates/img/icons/icon24_duplicate_checker.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/icons/icon24_duplicate_checker.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-link/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-link/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-link/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-link/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-link/admin_templates/img/icons/icon46_list_paid_listings.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/icons/icon46_list_paid_listings.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-link/admin_templates/img/icons/icon46_duplicate_checker.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/icons/icon46_duplicate_checker.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-link/admin_templates/img/icons/icon46_list_duplicate_checker.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/icons/icon46_list_duplicate_checker.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-link/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-link/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-link/admin_templates/img/icons/icon24_paid_listings.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/icons/icon24_paid_listings.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-link/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-link/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-link/admin_templates/img/icons/icon46_paid_listings.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/icons/icon46_paid_listings.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-link/admin_templates/img/icons/icon24_settings_in-link.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/icons/icon24_settings_in-link.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-link/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-link/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-link/admin_templates/img/icons/icon46_settings_in-link.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/icons/icon46_settings_in-link.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-link/admin_templates/img/icons/icon24_validate.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/icons/icon24_validate.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-link/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-link/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-link/admin_templates/img/itemicons/icon16_link_disabled.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/itemicons/icon16_link_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-link/admin_templates/img/itemicons/icon16_link_pick.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/itemicons/icon16_link_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-link/admin_templates/img/itemicons/icon16_listing_type.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/itemicons/icon16_listing_type.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-link/admin_templates/img/itemicons/icon16_link.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/itemicons/icon16_link.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-link/admin_templates/img/itemicons/icon16_custom.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/itemicons/icon16_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-link/admin_templates/img/itemicons/icon16_link_hot.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/itemicons/icon16_link_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-link/admin_templates/img/itemicons/icon16_link_pending.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/itemicons/icon16_link_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-link/admin_templates/img/itemicons/icon16_listing.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/itemicons/icon16_listing.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-link/admin_templates/img/itemicons/icon16_listing_pending.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/itemicons/icon16_listing_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-link/admin_templates/img/itemicons/icon16_link_pop.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/itemicons/icon16_link_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-link/admin_templates/img/itemicons/icon16_link_new.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/itemicons/icon16_link_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-link/admin_templates/img/itemicons/icon16_listing_disabled.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/in-link/admin_templates/img/itemicons/icon16_listing_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/themes/default/inlink/link_element.tpl
===================================================================
--- trunk/themes/default/inlink/link_element.tpl (revision 12828)
+++ trunk/themes/default/inlink/link_element.tpl (nonexistent)
@@ -1,57 +0,0 @@
-<table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top"><img src="inlink/img/ic_pointer.gif" width="16" height="20" alt="" /><br /></td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td class="item-small">
- <a href="<inp:link _field="redirect" />"<inp:link _field="additional_params"/>><inp:link _field="name" /></a>
- <inp:link _field="hot"><img src="img/ic_hot.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_hot" />" /></inp><inp:link _field="new"><img src="img/ic_new.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_new" />" /></inp><inp:link _field="pop"><img src="img/ic_pop.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_pop" />" /></inp><inp:link _field="pick"><img src="img/ic_pick.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_editors_pick" />" /></inp>
- <inp:link _Field="rating" _DisplayMode="graphical" _OffImage="img/star.gif" _OnImage="img/star_rate.gif" /><br />
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td><p><inp:link _field="description" /></p></td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td class="comments" nowrap>
- <inp:m_language _Phrase="lu_added" />: <inp:link _field="date" />;
- <inp:m_language _Phrase="lu_hits" />: <inp:link _field="hits" />,
- <inp:m_language _Phrase="lu_rating" />: <inp:link _Field="rating" _DisplayMode="numerical" />,
- <inp:m_language _Phrase="lu_reviews" />: <inp:link _Field="reviews" />,
- <inp:m_language _Phrase="lu_votes" />: <inp:link _Field="votes" />
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td class="dott-line">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><a href="<inp:link _field="cat_link" _Template="__default__" />"><img src="img/ic_details.gif" width="16" height="16" alt="" /></a><br /></td>
- <td class="links-action"><a href="<inp:link _field="cat_link" _Template="__default__" />"><inp:m_language _Phrase="lu_details" /></a></td>
-
- <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
-
- <td><a href="<inp:link _field="cat_link" _template="inlink/rate" />"><img src="img/ic_rateit.gif" width="22" height="16" alt="" /></a><br /></td>
- <td class="links-action"><a href="<inp:link _field="cat_link" _template="inlink/rate" />"><inp:m_language _Phrase="lu_rateit" /></a></td>
-
- <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
-
- <td><a href="<inp:link _field="cat_link" _template="inlink/reviews" />"><img src="img/ic_reviews.gif" width="16" height="16" alt="" /></a><br /></td>
- <td class="links-action"><a href="<inp:link _field="cat_link" _template="inlink/reviews" />"><inp:m_language _Phrase="lu_reviews" /></a></td>
-
- <inp:m_perm_text _Perm="login">
- <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
- <td><a href="<inp:m_access_template_link _Template="" _DeniedTemplate="login" _Perm="login" _field="add_favorite_link" />"><inp:link _Field="favorite_toggle" _AddImage="img/ic_addtofav.gif" _DelImage="img/ic_removefromfav.gif" _ImgWidth="16" _ImgHeight="16" _ImgAlt="" /></a><br /></td>
- <td nowrap="nowrap" class="links-action"><inp:link _Field="favorite_toggle" _AddLabel="lu_add_to_favorites" _DelLabel="lu_remove_from_favorites" _DenyTemplate="login" _DestTemplate="__default__"/></td>
- </inp>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-<br />
-
Property changes on: trunk/themes/default/inlink/link_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/inlink/quicklinks/edpick.tpl
===================================================================
--- trunk/themes/default/inlink/quicklinks/edpick.tpl (revision 12828)
+++ trunk/themes/default/inlink/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="inlink/quicklinks/edpick/links.tpl" _DataExists=1 />
-</table>
-
Property changes on: trunk/themes/default/inlink/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/inlink/quicklinks/new.tpl
===================================================================
--- trunk/themes/default/inlink/quicklinks/new.tpl (revision 12828)
+++ trunk/themes/default/inlink/quicklinks/new.tpl (nonexistent)
@@ -1,6 +0,0 @@
-<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="inlink/quicklinks/new/links.tpl" _DataExists=1 />
-</table>
Property changes on: trunk/themes/default/inlink/quicklinks/new.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/inlink/quicklinks/new/links_element.tpl
===================================================================
--- trunk/themes/default/inlink/quicklinks/new/links_element.tpl (revision 12828)
+++ trunk/themes/default/inlink/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/inlink/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/inlink/quicklinks/new/links.tpl
===================================================================
--- trunk/themes/default/inlink/quicklinks/new/links.tpl (revision 12828)
+++ trunk/themes/default/inlink/quicklinks/new/links.tpl (nonexistent)
@@ -1,17 +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-Link" _Text="lu_links" _Template="new.tpl" _Root="1" />
- <span class="statistics">(<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>
- </td>
-</tr>
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/quicklinks/new/links.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/inlink/quicklinks/edpick/links_element.tpl
===================================================================
--- trunk/themes/default/inlink/quicklinks/edpick/links_element.tpl (revision 12828)
+++ trunk/themes/default/inlink/quicklinks/edpick/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/inlink/quicklinks/edpick/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/inlink/quicklinks/edpick/links.tpl
===================================================================
--- trunk/themes/default/inlink/quicklinks/edpick/links.tpl (revision 12828)
+++ trunk/themes/default/inlink/quicklinks/edpick/links.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-Link" _Text="lu_links" _Template="pick.tpl" _Root="1" />
- <span class="statistics">(<inp:l_list_count _ListType="pick" _Paging="0" _ShortList="1" />)</span>
- <img src="img/arr_more.gif" width="16" height="7" alt="" />
- </td>
- </tr>
- <inp:l_list_links _ListType="pick" _NoTable="1" _Paging="0" _ShortList="1" _ItemTemplate="inlink/quicklinks/edpick/links_element.tpl" _DataExists=1 />
- <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/inlink/quicklinks/edpick/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/inlink/delete_confirm.tpl
===================================================================
--- trunk/themes/default/inlink/delete_confirm.tpl (revision 12828)
+++ trunk/themes/default/inlink/delete_confirm.tpl (nonexistent)
@@ -1,128 +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">&nbsp;</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 width="10000" valign="top" class="bgr-path">&nbsp;</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" ACTION="<inp:l_form_action _Form="l_delete_confirm" _Template="inlink/my_items" />">
- <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_delete_confirm_title" /></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_confirm_link_delete_subtitle" /></h2>
- <inp:m_language _Phrase="lu_delete_link_question" /><br />
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><inp:m_language _Phrase="lu_yes" /></td>
- <td><input type="radio" name="Action" id="" value="l_delete_link"><br /></td>
- </tr>
- <tr>
- <td><inp:m_language _Phrase="lu_no" /></td>
- <td><input type="radio" name="Action" id="" value="_"><br /></td>
- </tr>
- </table>
- <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="confirm" value="<inp:m_language _Phrase="lu_button_ok" />" class="button"><br><br>
- </td>
- </tr>
- </FORM>
- </table>
-
- <inp:l_link_detail _ItemTemplate="inlink/detail/link.tpl" />
-
-
- </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="inlink/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/inlink/delete_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/inlink/my_items/myitem_element.tpl
===================================================================
--- trunk/themes/default/inlink/my_items/myitem_element.tpl (revision 12828)
+++ trunk/themes/default/inlink/my_items/myitem_element.tpl (nonexistent)
@@ -1,72 +0,0 @@
-<table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top"><img src="inlink/img/ic_pointer.gif" width="16" height="20" alt="" /><br /></td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td class="item-small">
- <a href="<inp:link _field="redirect" />"<inp:link _field="additional_params"/>><inp:link _field="name" /></a>
- <inp:link _Field="rating" _DisplayMode="graphical" _OffImage="img/star.gif" _OnImage="img/star_rate.gif" />
- <inp:link _Field="pending_approval">
- <span class="error"><inp:m_language _phrase="lu_pending_approval"/></span>
- </inp>
- <br /><span class="comments"><inp:m_language _Phrase="lu_category" />:</span> <span class="tips">
- <a href="<inp:link _field="cat_link" _Template="__default__" />"><inp:link _field="fullpath" /></a></span>
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td><p><inp:link _field="description" /></p></td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td class="comments">
- <inp:m_language _Phrase="lu_added" />: <inp:link _field="date" />;
- <inp:m_language _Phrase="lu_hits" />: <inp:link _field="hits" />,
- <inp:m_language _Phrase="lu_rating" />: <inp:link _Field="rating" _DisplayMode="numerical" />,
- <inp:m_language _Phrase="lu_reviews" />: <inp:link _Field="reviews" />,
- <inp:m_language _Phrase="lu_votes" />: <inp:link _Field="votes" />
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td class="dott-line">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/ic_details.gif" width="16" height="16" alt="" /><br /></td>
- <td class="links-action"><a href="<inp:link _field="cat_link" _Template="__default__" />"><inp:m_language _Phrase="lu_details" /></a></td>
- <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
- <td><img src="img/ic_reviews.gif" width="16" height="16" alt="" /><br /></td>
- <td class="links-action"><a href="<inp:link _field="cat_link" _template="inlink/reviews" />"><inp:m_language _Phrase="lu_reviews" /></a></td>
- <inp:link _field="edit_link" >
- <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"><a href="<inp:link _field="edit_link" _template="inlink/edit_link.tpl" />"><inp:m_language _Phrase="lu_edit" /></a></td>
- </inp>
-
- <inp2:m_if check="m_ConfigEquals" option="Link_EnhancedLinks" value="1">
- <inp:link _Field="pending_approval" _Not="1">
- <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
- </inp>
- <inp:link _field="is_enhanced">
- <td><img src="img/ic_edit.gif" width="16" height="16" alt="" /><br /></td>
- <td class="links-action"><a href="<inp:link _field="edit_link" _template="inlink/edit_link/extend_enhancement" />"><inp2:m_Phrase label="lu_ExtendCancelEnhancement" /></a></td>
- </inp>
- <inp:link _field="is_enhanced" _not="1">
- <td><img src="img/ic_edit.gif" width="16" height="16" alt="" /><br /></td>
- <td class="links-action"><a href="<inp:link _field="edit_link" _template="inlink/edit_link/enhance_link" />"><inp2:m_Phrase label="lu_Enhance" /></a></td>
- </inp>
- </inp2:m_if>
-
- <inp:link _field="delete_link" >
- <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">
- <a href="<inp:link _field="delete_link" _template="inlink/delete_confirm.tpl" />"><inp:m_language _Phrase="lu_delete" /></a></td>
- </inp>
- </tr>
- </table>
- </td>
- </tr>
- </table><br /><br />
Property changes on: trunk/themes/default/inlink/my_items/myitem_element.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/inlink/my_items/right/edpick.tpl
===================================================================
--- trunk/themes/default/inlink/my_items/right/edpick.tpl (revision 12828)
+++ trunk/themes/default/inlink/my_items/right/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="inlink/my_items/right/edpick/links.tpl" _DataExists=1 />
-</table>
-
Property changes on: trunk/themes/default/inlink/my_items/right/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/inlink/my_items/right/actionbox.tpl
===================================================================
--- trunk/themes/default/inlink/my_items/right/actionbox.tpl (revision 12828)
+++ trunk/themes/default/inlink/my_items/right/actionbox.tpl (nonexistent)
@@ -1,45 +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" width="10000" 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="inlink/suggest_link" />"><img src="img/act_link.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="inlink/suggest_link" />"><inp:m_language _Phrase="lu_suggest_link" /></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>
-<!-- end action box -->
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/my_items/right/actionbox.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/inlink/my_items/right/edpick/links_element.tpl
===================================================================
--- trunk/themes/default/inlink/my_items/right/edpick/links_element.tpl (revision 12828)
+++ trunk/themes/default/inlink/my_items/right/edpick/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/inlink/my_items/right/edpick/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/inlink/my_items/right/edpick/links.tpl
===================================================================
--- trunk/themes/default/inlink/my_items/right/edpick/links.tpl (revision 12828)
+++ trunk/themes/default/inlink/my_items/right/edpick/links.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-Link" _Text="lu_links" _Template="index_pick" _Root="1" />
- <span class="statistics">(<inp:l_list_count _ListType="pick" _Paging="0" _MaxCount="3" _ShortList="1" />)</span>
- <img src="img/arr_more.gif" width="16" height="7" alt="" />
- </td>
- </tr>
- <inp:l_list_links _ListType="pick" _Paging="0" _ShortList="1" _ItemTemplate="inlink/my_items/right/edpick/links_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/inlink/my_items/right/edpick/links.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/inlink/my_items/right.tpl
===================================================================
--- trunk/themes/default/inlink/my_items/right.tpl (revision 12828)
+++ trunk/themes/default/inlink/my_items/right.tpl (nonexistent)
@@ -1,19 +0,0 @@
-<!-- Template=right.tpl -->
-
-<!-- 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="inlink/quicklinks/edpick.tpl" _DataExists="1" />
-<!-- quick links box \\-->
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/my_items/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/inlink/pick.tpl
===================================================================
--- trunk/themes/default/inlink/pick.tpl (revision 12828)
+++ trunk/themes/default/inlink/pick.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">
- <!-- 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="548" 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 -->
-
- <!-- links -->
- <inp:include _template="inlink/pick/links.tpl" />
- <!-- end links -->
- </td>
-
- <!-- start vertical white line in main conent table -->
- <td><img src="img/s.gif" width="1" height="1" alt="" /></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="inlink/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>
Property changes on: trunk/themes/default/inlink/pick.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/default/inlink/main.tpl
===================================================================
--- trunk/themes/default/inlink/main.tpl (revision 12828)
+++ trunk/themes/default/inlink/main.tpl (nonexistent)
@@ -1,65 +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_links_updated" />: <inp:l_link_modified />&nbsp;</td>
- </tr>
- </table>
- <!-- end links update line -->
-
- <!-- links -->
- <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-links">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="5"><h2><inp:m_module_link _Module="In-Link" _Template="index" _Text="lu_links" _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"><inp:m_language _Phrase="lu_total_links" />:&nbsp;<span><inp:m_itemcount _ItemType="Link" _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="Link" _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="5" height="1" alt="" /><br /></td>
- </tr>
- </table>
-
- <!-- links content -->
- <br />
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top">
- <inp:l_list_links _ListType="pick" _CatInfo="0" _ShortList="1" _NoTable="0" _ItemTemplate="inlink/main/main_element.tpl" border="0" cellspacing="0" cellpadding="0" _Columns=2 width="98%" />
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td align="right" valign="top" class="posts">
- <a href="<inp:l_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 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/inlink/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/inlink/related_links.tpl
===================================================================
--- trunk/themes/default/inlink/related_links.tpl (revision 12828)
+++ trunk/themes/default/inlink/related_links.tpl (nonexistent)
@@ -1,43 +0,0 @@
-<!-- related links 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-updatelight"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- </tr>
-</table>
-<!-- end related links line -->
-
-<!-- related links -->
-<img src="img/s.gif" width="1" height="5" 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>
- <h3><inp:m_language _Phrase="lu_related_links" /> <span>(<inp:l_related_count _ItemType="Link" />)</span></h3>
- </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>
-
- <!-- related item content -->
- <br />
- <inp:l_related_items _ListItems="Link" _LinkTemplate="inlink/related_element" _Columns="2" _NoTable="0" />
- <!-- end item content -->
- </td>
- </tr>
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
-</table>
-<!-- end related links -->
-
-
-
Property changes on: trunk/themes/default/inlink/related_links.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/inlink/main_popitems.tpl
===================================================================
--- trunk/themes/default/inlink/main_popitems.tpl (revision 12828)
+++ trunk/themes/default/inlink/main_popitems.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-Link" _Text="lu_links" _Template="index" _Root="1" />
- <span>(<inp:l_list_count _ListType="pop" _Paging="0" _ShortList="1" />)</span>
- <img src="img/arr_more.gif" width="16" height="7" alt="" />
- </td>
- </tr>
- <inp:l_list_links _ListType="pop" _Paging="0" _ShortList="1" _ItemTemplate="inlink/popitems_element" />
- <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/inlink/main_popitems.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/inlink/detail_zoom.tpl
===================================================================
--- trunk/themes/default/inlink/detail_zoom.tpl (revision 12828)
+++ trunk/themes/default/inlink/detail_zoom.tpl (nonexistent)
@@ -1,87 +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 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"><inp:m_navbar _RootTemplate="index.tpl" _Template="__default__" _LinkCurrent="1" _separator=" &gt; " /></td>
- </tr>
- </table>
- </td>
- <!--<td width="10000" valign="top" class="bgr-path">&nbsp;</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_details_updated" />: <inp:l_link_field _Field="modified" /></td>
- </tr>
- </table>
- <!-- end details update line -->
-
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top">
- <h1><inp:m_language _Phrase="lu_link_details" /></h1>
- <inp:l_link_detail _ItemTemplate="inlink/detail_zoom/link.tpl" />
- </td>
- </tr>
- </table>
-
-
- <!-- related categories //-->
- <inp:include _Template="inlink/detail_zoom/related_category.tpl" _DataExists=1 />
- <!-- related categories \\-->
-
- <!-- related links //-->
- <inp:include _Template="inlink/detail_zoom/related_links.tpl" _DataExists=1 />
- <!-- related links \\-->
-
- <!-- related news //-->
- <inp:perm_include _Module="In-News" _Template="inlink/detail_zoom/related_news.tpl" _DataExists=1 />
- <!-- related news \\-->
-
- <inp:include _Template="inlink/detail_zoom/review.tpl" />
- </td>
-
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
-
- <!-- right column //-->
- <td valign="top" height="100%" class="open-box"><inp:include _template="inlink/detail/right.tpl" /></td>
- <!-- right column \\-->
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
- <inp:include _template="common/footer" />
-</table>
-
-</body>
-</html>
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/detail_zoom.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/inlink/trash/popitems_element.tpl
===================================================================
--- trunk/themes/default/inlink/trash/popitems_element.tpl (revision 12828)
+++ trunk/themes/default/inlink/trash/popitems_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/inlink/trash/popitems_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/inlink/trash/main_popitems.tpl
===================================================================
--- trunk/themes/default/inlink/trash/main_popitems.tpl (revision 12828)
+++ trunk/themes/default/inlink/trash/main_popitems.tpl (nonexistent)
@@ -1,17 +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-Link" _Text="lu_links" _Template="index" _Root="1" />
- <img src="img/arr_more.gif" width="16" height="7" alt="" />
- </td>
- </tr>
- <inp:l_list_links _ListType="pop" _Paging="0" _ShortList="1" _ItemTemplate="inlink/popitems_element" />
- <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/inlink/trash/main_popitems.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/inlink/suggest_link.tpl
===================================================================
--- trunk/themes/default/inlink/suggest_link.tpl (revision 12828)
+++ trunk/themes/default/inlink/suggest_link.tpl (nonexistent)
@@ -1,104 +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__" _LinkCurrent="1" _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 width="10000" valign="top" class="bgr-path">&nbsp;</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="inlink/img/ic_mylinks_big.gif" width="46" height="46" alt="" /><br /></td>
- <td><h1><inp:m_language _Phrase="lu_suggest_link" /></h1></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
-
- <!-- end page title -->
- <inp:perm_include _Template="inlink/suggest_link/suggest_link_form" _noaccess="access_denied.tpl" _Permission="LINK.ADD,LINK.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="inlink/suggest_link/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/inlink/suggest_link.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/inlink/sort_link.tpl
===================================================================
--- trunk/themes/default/inlink/sort_link.tpl (revision 12828)
+++ trunk/themes/default/inlink/sort_link.tpl (nonexistent)
@@ -1,83 +0,0 @@
-<TABLE width="100%" border="0" cellspacing="0" cellpadding="0" align="center" bgColor="#f7f7ff">
-
- <TR>
-
- <TD nowrap>
-
- <SPAN class="stats"><B>
-
- <inp:m_language _Phrase="lu_links" /></B>
-
- </SPAN></TD>
-
-
-
- <FORM name="l_sort_links" method="POST" action="<inp:l_form_action _Form="l_sort_links"/>">
-
-
-
- <TD class="small" nowrap>
-
- <DIV align="right">
-
- <P>
-
- <inp:m_language _Phrase="lu_show" />
-
- <SELECT name="Perpage_Links" class="small">
-
- <inp:m_form_option _Field="Perpage_Links" _Form="l_sort_links" _value="10" _PlainText="10" />
-
- <inp:m_form_option _Field="Perpage_Links" _Form="l_sort_links" _value="20" _PlainText="20" />
-
- <inp:m_form_option _Field="Perpage_Links" _Form="l_sort_links" _value="50" _PlainText="50" />
-
- </SELECT>
-
- <inp:m_language _Phrase="lu_sort_by" />
-
- <SELECT name="Link_SortField" class="small">
-
- <inp:m_form_option _Field="Link_SortField" _Form="l_sort_links" _value="Name" _LangText="lu_link_name" />
-
- <inp:m_form_option _Field="Link_SortField" _Form="l_sort_links" _value="CreatedOn" _LangText="lu_date" />
-
- <inp:m_form_option _Field="Link_SortField" _Form="l_sort_links" _value="Description" _LangText="lu_field_description" />
-
- <inp:m_form_option _Field="Link_SortField" _Form="l_sort_links" _value="CreatedById" _LangText="la_Text_Users" />
-
- <inp:m_form_option _Field="Link_SortField" _Form="l_sort_links" _value="Url" _LangText="lu_field_url" />
-
- <inp:m_form_option _Field="Link_SortField" _Form="l_sort_links" _value="CachedRating" _LangText="lu_rating" />
-
- <inp:m_form_option _Field="Link_SortField" _Form="l_sort_links" _value="CachedVotesQty" _LangText="lu_votes" />
-
- <inp:m_form_option _Field="Link_SortField" _Form="l_sort_links" _value="Hits" _LangText="lu_hits" />
-
- <inp:m_form_option _Field="Link_SortField" _Form="l_sort_links" _value="EditorsPick" _LangText="lu_editors_pick" />
-
- </SELECT>
-
- <SELECT name="Link_SortOrder" class="small">
-
- <inp:m_form_option _Field="Link_SortOrder" _Form="l_sort_links" _value="ASC" _LangText="lu_Ascending" />
-
- <inp:m_form_option _Field="Link_SortOrder" _Form="l_sort_links" _value="DESC" _LangText="lu_Descending" />
-
- </SELECT>
-
- <INPUT type="hidden" name="start" value="0">
-
- <INPUT type="submit" class="button" value="<inp:m_language _Phrase="lu_button_go" />">
-
- <A href="#"> </A> </P>
-
- </DIV>
-
- </TD>
-
- </FORM>
-
- </TR>
-
- </TABLE>
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/sort_link.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/inlink/rate.tpl
===================================================================
--- trunk/themes/default/inlink/rate.tpl (revision 12828)
+++ trunk/themes/default/inlink/rate.tpl (nonexistent)
@@ -1,94 +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" _LinkCurrent="1" _Template="__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 width="10000" valign="top" class="bgr-path">&nbsp;</td>-->
- </tr>
- </table>
- <!-- path \\-->
-
- <!-- 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_details_updated" />: <inp:l_link_field _Field="modified" /></td>
- </tr>
- </table>
- <!-- end details update line -->
-
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top">
- <img src="img/s.gif" width="0" height="5" alt="" /><br />
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="50"><img src="inlink/img/ic_mylinks_big.gif" width="46" height="46" alt="" /></td>
- <td><h1><inp:m_language _Phrase="lu_rate_link" /></h1></td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top">
- <br />
- <inp:perm_include _Template="inlink/rate/rate_form.tpl" _noaccess="access_denied.tpl" _Permission="LINK.RATE" />
- </td>
- </tr>
- </table>
- </td>
-
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
-
- <!-- right column //-->
- <td valign="top" height="100%" class="open-box"><inp:include _template="inlink/rate/right.tpl" /></td>
- <!-- right column \\-->
-
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
- <inp:include _template="common/footer" />
-</table>
Property changes on: trunk/themes/default/inlink/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/inlink/menu_my_items.tpl
===================================================================
--- trunk/themes/default/inlink/menu_my_items.tpl (revision 12828)
+++ trunk/themes/default/inlink/menu_my_items.tpl (nonexistent)
@@ -1,5 +0,0 @@
-<TR>
- <td align="center"><a href="<inp:m_template_link _Template="inlink/my_items" />"><img src="inlink/img/ic_mylinks.gif" width="24" height="20" alt="" /></a><br /></td>
- <td class="item-my"><a href="<inp:m_template_link _Template="inlink/my_items" />"><inp:m_language _Phrase="lu_my_links" /></a> <span class="item-my-stat">(<inp:m_itemcount _ItemType="Link" _ListType="myitems" _Owner="1" _NoCache="1" />)</span></td>
-
-</TR>
Property changes on: trunk/themes/default/inlink/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/inlink/detail/related_category.tpl
===================================================================
--- trunk/themes/default/inlink/detail/related_category.tpl (revision 12828)
+++ trunk/themes/default/inlink/detail/related_category.tpl (nonexistent)
@@ -1,42 +0,0 @@
-<!-- related categories 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-updatelight"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- </tr>
-</table>
-<!-- end related categories line -->
-
-<!-- related categories -->
-<img src="img/s.gif" width="1" height="5" 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>
- <h3><inp:m_language _Phrase="lu_related_categories" /> <span>(<inp:l_related_count _ItemType="Category" />)</span></h3>
- </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>
-
- <!-- related categories content -->
- <br />
- <inp:l_related_items _ListItems="Category" _CategoryTemplate="inlink/detail/related_category_element.tpl" _NoTable="1" />
- <!-- end categories content -->
- </td>
- </tr>
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
-</table>
-<!-- end related categories -->
-
-
Property changes on: trunk/themes/default/inlink/detail/related_category.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/inlink/detail/review.tpl
===================================================================
--- trunk/themes/default/inlink/detail/review.tpl (revision 12828)
+++ trunk/themes/default/inlink/detail/review.tpl (nonexistent)
@@ -1,49 +0,0 @@
-<!-- reviews 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_reviews_updated" />: <inp:l_review_modified /></td>
- </tr>
-</table>
-<!-- end reviews update line -->
-<!-- reviews -->
-<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><h2><inp:m_language _Phrase="lu_reviews" /><span>(<inp:l_link_field _field="reviews" />)</span></h2></td>
- </tr>
- <tr>
- <td class="statistics"><inp:m_language _Phrase="lu_added_today" />:&nbsp;<span>(<inp:l_link_field _field="reviews" _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="300" height="1" alt="" /><br /></td>
- </tr>
- </table>
-
- <!-- review content -->
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <TR><TD>
- <inp:l_list_reviews _ShortList="1" _ReviewTemplate="misc/review_detail_element.tpl" />
- </TD></TR>
- <tr>
- <td align="right" class="posts"><inp:l_review_more _Template="inlink/reviews" _Text="lu_more" _image="img/arr_more.gif" /></td>
- </tr>
- </table>
- <!-- end review content -->
- </td>
-</tr>
-<tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="20" alt="" /><br /></td>
-</tr>
-</table>
-<!-- end reviews -->
-
Property changes on: trunk/themes/default/inlink/detail/review.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/inlink/detail/link.tpl
===================================================================
--- trunk/themes/default/inlink/detail/link.tpl (revision 12828)
+++ trunk/themes/default/inlink/detail/link.tpl (nonexistent)
@@ -1,60 +0,0 @@
-<!-- Template: inlink/detail/link.tpl -->
-<script type="text/javascript">
-function zoom(url)
-{
- var width = 200;
- var height = 200;
- var screen_x = (screen.availWidth-width)/2;
- var screen_y = (screen.availHeight-height)/2;
- window.open(url, 'zoomed', 'width='+width+',height='+height+',resizable=yes,left='+screen_x+',top='+screen_y);
-}
-</script>
-
-<table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="3">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><H2><inp:m_language _Phrase="lu_link_details" /></H2></td>
- <td>&nbsp;&nbsp;&nbsp;</td>
- <td><inp:link _Field="rating" _DisplayMode="graphical" _OffImage="img/star.gif" _OnImage="img/star_rate.gif" alt="rating" title="rating"/><br /></td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td valign="top">
- <table width="100" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><a href="<inp:link _field="redirect" />"<inp:link _field="additional_params"/>><img src="<inp:link _field="image" _Thumbnail="1" _Name="main" _defaulturl="img/noimage.gif" />" border="0" alt="jump to site" /></a><br /></td>
- </tr>
-
- <tr><td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td></tr>
-
- <inp:link _field="image" _Name="main" _Thumbnail="0" _NoThumbnail="1" >
- <tr>
- <td align="right" class="bgr-updatefill">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td align="right" class="bgr-updatefill">
- <a href="javascript:zoom('<inp:m_template_link _Template="showimage.tpl" _unsecure="1" _Query="&url=<inp:link _field="image" _Thumbnail="0" _Name="main" _defaulturl="img/noimage.gif" />" />')"><img src="img/ic_zoom.gif" width="16" height="16" alt="<inp:m_language _Phrase="lu_zoom" />" /></a><br /></td>
- <td class="bgr-updatefill" nowrap><span class="zoom">
- <a href="javascript:zoom('<inp:m_template_link _Template="showimage.tpl" _unsecure="1" _Query="&url=<inp:link _field="image" _Thumbnail="0" _Name="main" _defaulturl="img/noimage.gif" />" />')"><inp:m_language _Phrase="lu_zoom" /></a></span>&nbsp;</td>
- <tr></table></td>
- </tr>
- </inp>
- </table>
- <br />
- </td>
- <td><img src="img/s.gif" width="10" height="1" alt="" /><br /></td>
- <td valign="top" class="comments" width="100000000">
- <inp:m_language _Phrase="lu_added" />: <inp:link _field="date" />;<BR />
- <inp:m_language _Phrase="lu_hits" />: <inp:link _field="hits" />,
- <inp:m_language _Phrase="lu_rating" />: <inp:link _Field="rating" _DisplayMode="numerical" />,
- <inp:m_language _Phrase="lu_reviews" />: <inp:link _Field="reviews" />,
- <inp:m_language _Phrase="lu_votes" />: <inp:link _Field="votes" />
- <p><inp:link _field="description" /></p>
- </td>
- </tr>
-</table>
-<!-- End Template: inlink/detail/link.tpl -->
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/detail/link.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/inlink/detail/right/actionbox.tpl
===================================================================
--- trunk/themes/default/inlink/detail/right/actionbox.tpl (revision 12828)
+++ trunk/themes/default/inlink/detail/right/actionbox.tpl (nonexistent)
@@ -1,81 +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" width="10000" 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="inlink/suggest_link" />"><img src="img/act_link.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="inlink/suggest_link" />"><inp:m_language _Phrase="lu_suggest_link" /></a></td>
- </tr>
-
- </table>
- </td>
- </tr>
- <tr>
- <td height="10" bgcolor="#64A1DF" class="path">&nbsp; <inp:m_language _Phrase="lu_subaction_prompt" /></td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- <tr>
- <td class="bgr-act valign="top">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="3"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- </tr>
- <inp:m_perm_text _Perm="login">
- <tr>
- <td valign="top"><inp:l_link_field _Field="favorite_toggle" _DelImage="img/act_remove_from_favor.gif" _AddImage="img/act_favor.gif" /><br /></td>
- <td height="1"><img src="img/s.gif" width="5" height="20" alt="" /><br /></td>
- <td valign="top" class="box-links">
- <inp:l_link_field _Field="favorite_toggle" _AddLabel="lu_add_to_favorites" _DelLabel="lu_remove_from_favorites" />
- </td>
- </tr>
- </inp>
- <tr>
- <td valign="top"><a href="<inp:l_link_field _field="link" _template="inlink/rate" />"><img src="img/act_rate.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:l_link_field _field="link" _template="inlink/rate" />"><inp:m_language _Phrase="lu_rateit" /></a></td>
- </tr>
- <tr>
- <td valign="top"><a href="<inp:l_link_field _Field="link" _Template="inlink/addreview" />"><img src="img/act_review.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:l_link_field _Field="link" _Template="inlink/addreview" />"><inp:m_language _Phrase="lu_add_review" /></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/inlink/detail/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/inlink/detail/related_category_element.tpl
===================================================================
--- trunk/themes/default/inlink/detail/related_category_element.tpl (revision 12828)
+++ trunk/themes/default/inlink/detail/related_category_element.tpl (nonexistent)
@@ -1,18 +0,0 @@
-<table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top">
- <a href="<inp:cat _field="link" />"><img src="img/ic_folder.gif" border=0 width="16" height="14" alt="" /></a><br /></td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td class="item"><A href="<inp:cat _field="link" _Mod_Template="index" />"><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/inlink/detail/related_category_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/inlink/detail/related_links.tpl
===================================================================
--- trunk/themes/default/inlink/detail/related_links.tpl (revision 12828)
+++ trunk/themes/default/inlink/detail/related_links.tpl (nonexistent)
@@ -1,43 +0,0 @@
-<!-- related links 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-updatelight"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- </tr>
-</table>
-<!-- end related links line -->
-
-<!-- related links -->
-<img src="img/s.gif" width="1" height="5" 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>
- <h3><inp:m_language _Phrase="lu_related_links" /> <span>(<inp:l_related_count _ItemType="Link" />)</span></h3>
- </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>
-
- <!-- related item content -->
- <br />
- <inp:l_related_items _ListItems="Link" _LinkTemplate="inlink/related_element" _Columns="2" _NoTable="0" />
- <!-- end item content -->
- </td>
- </tr>
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
-</table>
-<!-- end related links -->
-
-
-
Property changes on: trunk/themes/default/inlink/detail/related_links.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/inlink/detail/related_news.tpl
===================================================================
--- trunk/themes/default/inlink/detail/related_news.tpl (revision 12828)
+++ trunk/themes/default/inlink/detail/related_news.tpl (nonexistent)
@@ -1,43 +0,0 @@
-<!-- related links 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-updatelight"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- </tr>
-</table>
-<!-- end related news line -->
-
-<!-- related news -->
-<img src="img/s.gif" width="1" height="5" 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>
- <h3><inp:m_language _Phrase="lu_related_news" /> <span>(<inp:l_related_count _ItemType="Article" />)</span></h3>
- </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>
-
- <!-- related item content -->
- <br />
- <inp:l_related_items _ListItems="Article" _ArticleTemplate="innews/related_element" _Columns="2" _NoTable="0" />
- <!-- end item content -->
- </td>
- </tr>
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
-</table>
-<!-- end related news -->
-
-
-
Property changes on: trunk/themes/default/inlink/detail/related_news.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/inlink/detail/right.tpl
===================================================================
--- trunk/themes/default/inlink/detail/right.tpl (revision 12828)
+++ trunk/themes/default/inlink/detail/right.tpl (nonexistent)
@@ -1,19 +0,0 @@
-<!-- Template=inlink/detail/right.tpl -->
-
-<!-- login box //-->
-<inp:m_loginbox _LoginTemplate="misc/right_login.tpl" _LoggedInTemplate="misc/right_loggedin.tpl" />
-<!-- login box \\-->
-
-<!-- search box //-->
-<inp:include _Template="misc/right_searchbox" />
-<!-- search box \\-->
-
-<!-- recommend box //-->
-<inp:include _Template="misc/right_recommend" />
-<!-- recommend box \\-->
-
-<inp:include _Template="inlink/detail/right/actionbox.tpl" />
-
-<!-- quick links box //-->
-<inp:include _Template="inlink/quicklinks/edpick.tpl" _DataExists="1"/>
-<!-- quick links box \\-->
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/detail/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/inlink/related_element.tpl
===================================================================
--- trunk/themes/default/inlink/related_element.tpl (revision 12828)
+++ trunk/themes/default/inlink/related_element.tpl (nonexistent)
@@ -1,38 +0,0 @@
-<table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top"><img src="inlink/img/ic_pointer.gif" width="16" height="20" alt="" /><br /></td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td class="item-small"><a href="<inp:link _field="redirect" />"<inp:link _field="additional_params"/>><inp:link _field="name" /></a>
- <inp:link _field="hot"><img src="img/ic_hot.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_hot" />" /></inp>
- <inp:link _field="new"><img src="img/ic_new.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_new" />" /></inp>
- <inp:link _field="pop"><img src="img/ic_pop.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_pop" />" /></inp>
- <inp:link _field="pick"><img src="img/ic_pick.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_editors_pick" />" /></inp>
- <inp:link _Field="rating" _DisplayMode="graphical" _OffImage="img/star.gif" _OnImage="img/star_rate.gif" /></td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td><p><inp:link _field="description" /></p></td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td class="comments">
- <inp:m_language _Phrase="lu_added" />: <inp:link _field="date" />;
- <inp:m_language _Phrase="lu_hits" />: <inp:link _field="hits" />,
- <inp:m_language _Phrase="lu_rating" />: <inp:link _Field="rating" _DisplayMode="numerical" />,
- <inp:m_language _Phrase="lu_reviews" />: <inp:link _Field="reviews" />,
- <inp:m_language _Phrase="lu_votes" />: <inp:link _Field="votes" /></td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td class="dott-line">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><a href="<inp:link _field="cat_link" _template="__default__" />"><img src="img/ic_details.gif" width="16" height="16" alt="" /></a><br /></td>
- <td nowrap="nowrap" class="links-action"><a href="<inp:link _field="cat_link" _template="__default__" />"><inp:m_language _Phrase="lu_details" /></a></td>
- </tr>
- </table>
- </td>
-</table>
Property changes on: trunk/themes/default/inlink/related_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/inlink/edit_link/edit_confirm_pending.tpl
===================================================================
--- trunk/themes/default/inlink/edit_link/edit_confirm_pending.tpl (revision 12828)
+++ trunk/themes/default/inlink/edit_link/edit_confirm_pending.tpl (nonexistent)
@@ -1,97 +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">
- <!-- 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 style="background: url('img/bgr_path.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"><inp:m_navbar _RootTemplate="index" _separator=" &gt; " /></td>
- </tr>
- </table>
- </td>
- <td width="10000" valign="top" class="bgr-path">&nbsp;</td>
- </tr>
- </table>
- <!-- end navbar -->
-
-
- <!-- 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="editlink_confirm" ACTION="<inp:l_form_action _Form="editlink_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_modify_link" /></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_modifylink_pending_confirm" /></h2>
- <inp:m_language _Phrase="lu_modifylink_pending_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>
-
- <!-- 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">
- <inp:include _template="inlink/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/inlink/edit_link/edit_confirm_pending.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/inlink/edit_link/enhance_confirm.tpl
===================================================================
--- trunk/themes/default/inlink/edit_link/enhance_confirm.tpl (revision 12828)
+++ trunk/themes/default/inlink/edit_link/enhance_confirm.tpl (nonexistent)
@@ -1,44 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<title>In-Portal</title>
-<inp2:m_include template="blocks/common/html_head" />
-</head>
-
-<body>
-<inp2:m_include template="common/pagetop.tpl" />
-
-<!--inp2:m_include template="blocks/common/header" /-->
-
-<img src="img/s.gif"/><br/>
-
-<table class="main-table">
- <tr valign="top">
- <td class="main-column-center">
-
- <inp2:m_include template="inlink/blocks/common/my_account_bluebar" title_phrase="lu_my_links" />
-
- <inp2:m_include template="inlink/blocks/links/link_enhance_confirmation" />
-
- </td>
- <td class="main-column-right">
-
- <inp:m_loginbox _LoginTemplate="misc/right_login" _LoggedInTemplate="misc/right_loggedin.tpl" />
- <!--inp2:m_include template="blocks/common/login" /-->
-
- <inp:include _Template="misc/right_searchbox.tpl" />
-
- <inp:include _Template="misc/right_recommend.tpl" />
-
- <inp:include _Template="inlink/quicklinks/new.tpl" _DataExists="1"/>
-
- </td>
- </tr>
-</table>
-
-<table>
- <inp2:m_include template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/edit_link/enhance_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/inlink/edit_link/enhance_link.tpl
===================================================================
--- trunk/themes/default/inlink/edit_link/enhance_link.tpl (revision 12828)
+++ trunk/themes/default/inlink/edit_link/enhance_link.tpl (nonexistent)
@@ -1,44 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<title>In-Portal</title>
-<inp2:m_include template="blocks/common/html_head" />
-</head>
-
-<body>
-<inp2:m_include template="common/pagetop.tpl" />
-
-<!--inp2:m_include template="blocks/common/header" /-->
-
-<img src="img/s.gif"/><br/>
-
-<table class="main-table">
- <tr valign="top">
- <td class="main-column-center">
-
- <inp2:m_include template="inlink/blocks/common/my_account_bluebar" title_phrase="lu_my_links" />
-
- <inp2:m_include template="inlink/blocks/links/link_enhance_form" data_exists="1"/>
-
- </td>
- <td class="main-column-right">
-
- <inp:m_loginbox _LoginTemplate="misc/right_login" _LoggedInTemplate="misc/right_loggedin.tpl" />
- <!--inp2:m_include template="blocks/common/login" /-->
-
- <inp:include _Template="misc/right_searchbox.tpl" />
-
- <inp:include _Template="misc/right_recommend.tpl" />
-
- <inp:include _Template="inlink/quicklinks/new.tpl" _DataExists="1"/>
-
- </td>
- </tr>
-</table>
-
-<table>
- <inp2:m_include template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/edit_link/enhance_link.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/inlink/edit_link/edit_confirm.tpl
===================================================================
--- trunk/themes/default/inlink/edit_link/edit_confirm.tpl (revision 12828)
+++ trunk/themes/default/inlink/edit_link/edit_confirm.tpl (nonexistent)
@@ -1,96 +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">
- <!-- 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 style="background: url('img/bgr_path.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"><inp:m_navbar _RootTemplate="index" _separator=" &gt; " /></td>
- </tr>
- </table>
- </td>
- <td width="10000" valign="top" class="bgr-path">&nbsp;</td>
- </tr>
- </table>
- <!-- end navbar -->
-
- <!-- 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="editlink_confirm" ACTION="<inp:l_form_action _Form="editlink_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_modify_link" /></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_modifylink_confirm" /></h2>
- <inp:m_language _Phrase="lu_modifylink_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>
-
- <!-- 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">
- <inp:include _template="inlink/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/inlink/edit_link/edit_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/inlink/edit_link/extend_enhancement.tpl
===================================================================
--- trunk/themes/default/inlink/edit_link/extend_enhancement.tpl (revision 12828)
+++ trunk/themes/default/inlink/edit_link/extend_enhancement.tpl (nonexistent)
@@ -1,44 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<title>In-Portal</title>
-<inp2:m_include template="blocks/common/html_head" />
-</head>
-
-<body>
-<inp2:m_include template="common/pagetop.tpl" />
-
-<!--inp2:m_include template="blocks/common/header" /-->
-
-<img src="img/s.gif"/><br/>
-
-<table class="main-table">
- <tr valign="top">
- <td class="main-column-center">
-
- <inp2:m_include template="inlink/blocks/common/my_account_bluebar" title_phrase="lu_my_links" />
-
- <inp2:m_include template="inlink/blocks/links/link_extend_enhancement" />
-
- </td>
- <td class="main-column-right">
-
- <inp:m_loginbox _LoginTemplate="misc/right_login" _LoggedInTemplate="misc/right_loggedin.tpl" />
- <!--inp2:m_include template="blocks/common/login" /-->
-
- <inp:include _Template="misc/right_searchbox.tpl" />
-
- <inp:include _Template="misc/right_recommend.tpl" />
-
- <inp:include _Template="inlink/quicklinks/new.tpl" _DataExists="1"/>
-
- </td>
- </tr>
-</table>
-
-<table>
- <inp2:m_include template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/edit_link/extend_enhancement.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/inlink/edit_link/extend_enhancement_confirmation.tpl
===================================================================
--- trunk/themes/default/inlink/edit_link/extend_enhancement_confirmation.tpl (revision 12828)
+++ trunk/themes/default/inlink/edit_link/extend_enhancement_confirmation.tpl (nonexistent)
@@ -1,44 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<title>In-Portal</title>
-<inp2:m_include template="blocks/common/html_head" />
-</head>
-
-<body>
-<inp2:m_include template="common/pagetop.tpl" />
-
-<!--inp2:m_include template="blocks/common/header" /-->
-
-<img src="img/s.gif"/><br/>
-
-<table class="main-table">
- <tr valign="top">
- <td class="main-column-center">
-
- <inp2:m_include template="inlink/blocks/common/my_account_bluebar" title_phrase="lu_my_links" />
-
- <inp2:m_include template="inlink/blocks/links/link_extend_confirm" />
-
- </td>
- <td class="main-column-right">
-
- <inp:m_loginbox _LoginTemplate="misc/right_login" _LoggedInTemplate="misc/right_loggedin.tpl" />
- <!--inp2:m_include template="blocks/common/login" /-->
-
- <inp:include _Template="misc/right_searchbox.tpl" />
-
- <inp:include _Template="misc/right_recommend.tpl" />
-
- <inp:include _Template="inlink/quicklinks/new.tpl" _DataExists="1"/>
-
- </td>
- </tr>
-</table>
-
-<table>
- <inp2:m_include template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/edit_link/extend_enhancement_confirmation.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/inlink/edit_link/link_cancel_confirm.tpl
===================================================================
--- trunk/themes/default/inlink/edit_link/link_cancel_confirm.tpl (revision 12828)
+++ trunk/themes/default/inlink/edit_link/link_cancel_confirm.tpl (nonexistent)
@@ -1,44 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<title>In-Portal</title>
-<inp2:m_include template="blocks/common/html_head" />
-</head>
-
-<body>
-<inp2:m_include template="common/pagetop.tpl" />
-
-<!--inp2:m_include template="blocks/common/header" /-->
-
-<img src="img/s.gif"/><br/>
-
-<table class="main-table">
- <tr valign="top">
- <td class="main-column-center">
-
- <inp2:m_include template="inlink/blocks/common/my_account_bluebar" title_phrase="lu_my_links" />
-
- <inp2:m_include template="inlink/blocks/links/link_cancel_confirmation" />
-
- </td>
- <td class="main-column-right">
-
- <inp:m_loginbox _LoginTemplate="misc/right_login" _LoggedInTemplate="misc/right_loggedin.tpl" />
- <!--inp2:m_include template="blocks/common/login" /-->
-
- <inp:include _Template="misc/right_searchbox.tpl" />
-
- <inp:include _Template="misc/right_recommend.tpl" />
-
- <inp:include _Template="inlink/quicklinks/new.tpl" _DataExists="1"/>
-
- </td>
- </tr>
-</table>
-
-<table>
- <inp2:m_include template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/edit_link/link_cancel_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/inlink/edit_link/edit_link_form.tpl
===================================================================
--- trunk/themes/default/inlink/edit_link/edit_link_form.tpl (revision 12828)
+++ trunk/themes/default/inlink/edit_link/edit_link_form.tpl (nonexistent)
@@ -1,81 +0,0 @@
-<!-- suggest link content -->
- <FORM enctype="multipart/form-data" method="POST" NAME="editlink" ACTION="<inp:l_form_action _Form="editlink" _Confirm="inlink/edit_link/edit_confirm.tpl" _ConfirmPending="inlink/edit_link/edit_confirm_pending.tpl" _FinishTemplate="inlink/my_items" />">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="2">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><h2><inp:m_language _Phrase="lu_link_information" /></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="editlink" _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"><inp:m_form_prompt _Form="editlink" _Field="name" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_prompt_linkname" /> <span class="error">*</span></td>
- <td class="field-content-input"><inp:m_form_input type="text" class="input" style="width:235px;" _field="name" _Form="editlink" _Required="1" /><br /></td>
- </tr>
- <tr>
- <td CLASS="field-name"><inp:m_form_prompt _Form="editlink" _Field="url" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_prompt_linkurl" /> <span class="error">*</span></td>
- <td class="field-content-input"><inp:m_form_input type="text" class="input" _field="url" _Form="editlink" _Required="1" style="width:235px;" /><br /></td>
- </tr>
- <tr>
- <td CLASS="field-name"><inp:m_form_prompt _Form="editlink" _Field="description" _langtext="lu_prompt_linkdesc" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" /> <span class="error">*</span></td>
- <td class="field-content-input"><inp:m_form_textarea class="textarea" _field="description" _Form="editlink" _Required="1" COLS="50" ROWS="5" style="width:235px;" /><br /></td>
- </tr>
-
-
- <tr>
- <td CLASS="field-name"><inp:m_form_prompt _Form="editlink" _Field="main_thumb" _langtext="lu_prompt_thumbnail" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" /> <span class="error">*</span></td>
- <td class="field-content-input"><inp:m_form_imageupload class="input" _field="main_thumb" _ImageName="main" _thumbnail="1" _Form="editlink" _Required="0" style="width:235px;" /><br /></td>
- </tr>
- <tr>
- <td CLASS="field-name"><inp:m_form_prompt _Form="editlink" _Field="main_full" _langtext="lu_prompt_fullimage" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" /> <span class="error">*</span></td>
- <td class="field-content-input"><inp:m_form_imageupload class="input" _field="main_full" _ImageName="main" _thumbnail="0" _Form="editlink" _Required="0" style="width:235px;" /><br /></td>
- </tr>
- <inp2:m_if check="m_ConfigEquals" option="Link_EnhancedLinks" value="1">
- <tr>
- <td class="field-name"><inp2:m_phrase label="lu_ListingType" /></td>
- <td class="field-content-input">
- <inp2:m_if check="l_LinkIsEnhanced">
- <strong><inp2:l_ListingTypeField name="Name" /></strong>
- <inp2:m_if check="l_EnhancementIsPending">
- (<inp2:m_Phrase label="lu_PendingEnhancement" />)
- </inp2:m_if>
- <a href="<inp2:m_Link template="inlink/edit_link/extend_enhancement" pass="all,l"/>"><inp2:m_Phrase label="lu_ExtendCancelEnhancement" /></a>
- <inp2:m_else />
- <a href="<inp2:m_Link template="inlink/edit_link/enhance_link" pass="all,l"/>"><inp2:m_Phrase label="lu_EnhanceLink" /></a>
- </inp2:m_if>
- <br />
- </td>
- </tr>
- </inp2:m_if>
- <tr>
- <td CLASS="field-name">&nbsp;</td>
- <td><img src="img/s.gif" width="300" height="1" alt="" /><br /></td>
- </tr>
- <!-- buttons -->
- <tr>
- <td CLASS="field-name">&nbsp;</td>
- <TD class="field-content-input">
- <INPUT type="submit" name="buttons[]" value="<inp:m_language _Phrase="lu_modify_link" />" class="button">
- <INPUT type="button" name="cancel" value="<inp:m_language _Phrase="lu_cancel" />" class="button" onClick="javascript:history.back();">
- </td>
- </tr>
- <tr>
- <td colspan="2" class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /><br /></td>
- </tr>
- <!-- end buttons -->
- </table>
- </FORM>
-
Property changes on: trunk/themes/default/inlink/edit_link/edit_link_form.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/default/inlink/blocks/common/my_account_bluebar.tpl
===================================================================
--- trunk/themes/default/inlink/blocks/common/my_account_bluebar.tpl (revision 12828)
+++ trunk/themes/default/inlink/blocks/common/my_account_bluebar.tpl (nonexistent)
@@ -1,15 +0,0 @@
-<table class="main-path">
- <tr valign="middle">
- <td>
- <div class="nav-bar">
- <img src="img/ic_homepath.gif" align="absmiddle" width="17" height="24" alt="" />
- <a href="<inp:m_template_link _Template="index" _Category="0" />"><inp2:m_Phrase label="lu_home" /></a> >
- <a href="<inp:m_template_link _template="my_account" />"><inp2:m_Phrase label="lu_myaccount" /></a> > <inp2:m_Phrase label="$title_phrase" />
- </div>
- </td>
- <td class="main-path-language">
- <img src="<inp:m_lang_field _Field="icon" _default="img/ic_flag.gif"/>" width="18" height="12" alt="" align="absmiddle" />
- <span onclick="showSeg('langmenu',true); "><inp:m_lang_field _Field="LocalName" />&nbsp;&nbsp;
- </td>
- </tr>
-</table>
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/blocks/common/my_account_bluebar.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/inlink/blocks/links/listing_details.tpl
===================================================================
--- trunk/themes/default/inlink/blocks/links/listing_details.tpl (revision 12828)
+++ trunk/themes/default/inlink/blocks/links/listing_details.tpl (nonexistent)
@@ -1,20 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<title><inp2:conf_ConfigValue name="Site_Name"/></title>
-<inp2:m_include template="blocks/common/html_head" />
-</head>
-<body>
-
-<div style="padding: 10px;">
- <p>
- <inp2:l_ListingDescription/>
- </p>
-
- <center>
- <a href="javascript:window.close();"><inp2:m_Phrase name="lu_close_window"/></a>
- </center>
-</div>
-
-</body>
-</html>
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/blocks/links/listing_details.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/inlink/blocks/links/link_enhance_form.tpl
===================================================================
--- trunk/themes/default/inlink/blocks/links/link_enhance_form.tpl (revision 12828)
+++ trunk/themes/default/inlink/blocks/links/link_enhance_form.tpl (nonexistent)
@@ -1,48 +0,0 @@
-<form method="POST" enctype="multipart/form-data" action="<inp2:m_Link pass="all,l,ls" />">
- <table class="block-no-border bgr-myaccount" style="margin-left: 15px; margin-right: 1px;">
- <tr>
- <td colspan="3">
- <h1><img src="inlink/img/ic_newlink.gif" width="46" height="46" alt="" align="absmiddle" /> <inp2:m_phrase label="lu_EnhanceLink" /></h1>
- </td>
- </tr>
- <tr>
- <td colspan="3" style="padding-bottom: 15px;">
- <h2><inp2:m_phrase label="lu_ChooseListingType" /></h2>
- </td>
- </tr>
- <script language="javascript" type="text/javascript">
- function show_details(url) {
- window.open(url, 'listing_details', 'width=673,height=606,resizable=yes');
- }
-
- </script>
- <inp2:m_DefineElement name="ListingTypeRow">
- <tr>
- <td style="padding: 3px;">
- <input type="radio" name="<inp2:l_InputName field="ListingTypeId" />" id="<inp2:l_InputName field="ListingTypeId" />_<inp2:Field name="ListingTypeId" />" value="<inp2:Field name="ListingTypeId" />" <inp2:m_if check="l_FirstListingType">checked="checked"</inp2:m_if> />
- </td>
- <td style="padding: 3px;">
- <label for="<inp2:l_InputName field="ListingTypeId" />_<inp2:Field name="ListingTypeId" />"><inp2:Field name="Name" /> - <inp2:Field name="Duration" /> <inp2:Field name="DurationType" /> <inp2:m_if check="mod_ModuleInstalled" name="In-Commerce">(<inp2:Field name="Price" currency="selected"/>)</inp2:m_if></label>
- </td>
- <td>
- <a href="javascript:show_details('<inp2:l_ListingTypeDetailsLink template="inlink/blocks/links/listing_details"/>');"><inp2:m_Phrase name="lu_more_info"/></a>
- </td>
- </tr>
- </inp2:m_DefineElement>
- <inp2:l_ListListingTypes render_as="ListingTypeRow" />
- <tr>
- <td colspan="3" style="padding-top: 15px;">
-
- <inp2:m_if check="mod_ModuleInstalled" name="In-Commerce">
- <inp2:m_Phrase label="lu_notice_SubscriptionAddToCart" /><br /><br />
- </inp2:m_if>
- <input type="hidden" name="shop_cart_template" value="in-commerce/shop_cart/shop_cart" />
- <input type="hidden" name="success_template" value="inlink/edit_link/enhance_confirm" />
- <input type="submit" class="button" name="events[ls][OnRequestEnhancement]" value="<inp2:m_phrase label="lu_EnhanceLink" />" />
- <input type="hidden" name="cancel_template" value="inlink/my_items" />
- <input type="submit" class="button" name="events[ls][OnCancel]" value="<inp2:m_Phrase label="lu_Cancel" />" />
-
- </td>
- </tr>
- </table>
-</form>
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/blocks/links/link_enhance_form.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/default/inlink/blocks/links/link_cancel_confirmation.tpl
===================================================================
--- trunk/themes/default/inlink/blocks/links/link_cancel_confirmation.tpl (revision 12828)
+++ trunk/themes/default/inlink/blocks/links/link_cancel_confirmation.tpl (nonexistent)
@@ -1,33 +0,0 @@
-<form method="POST" enctype="multipart/form-data" action="<inp2:m_FormAction />">
- <table class="block-no-border bgr-myaccount" style="margin-left: 15px; margin-right: 1px;">
- <tr>
- <td>
- <h1><img src="img/ic_confirm_big.gif" width="46" height="46" alt="" align="absmiddle" /> <inp2:m_phrase label="lu_ConfirmCancelEnhancement" /></h1>
- </td>
- </tr>
- <tr>
- <td class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /></td>
- </tr>
- <tr>
- <td style="padding-bottom: 15px; padding-right: 15px">
- <h2><inp2:m_phrase label="lu_AreYouSureToCancelEnhancement" /></h2>
- </td>
- </tr>
- <tr>
- <td style="padding-bottom: 15px; padding-right: 40px">
- <inp2:m_Phrase label="lu_CancelEnhancementConfirmation" />
- </td>
- </tr>
- <tr>
- <td class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /></td>
- </tr>
- <tr>
- <td style="padding-top: 15px; padding-right: 15px">
- <input type="hidden" name="success_template" value="inlink/my_items" />
- <input type="submit" class="button" name="events[ls][OnCancelEnhancement]" value="<inp2:m_phrase label="lu_yes" />" />
- <input type="hidden" name="cancel_template" value="inlink/my_items" />
- <input type="submit" class="button" name="events[ls][OnCancel]" value="<inp2:m_Phrase label="lu_no" />" />
- </td>
- </tr>
- </table>
-</form>
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/blocks/links/link_cancel_confirmation.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/inlink/blocks/links/link_enhance_confirmation.tpl
===================================================================
--- trunk/themes/default/inlink/blocks/links/link_enhance_confirmation.tpl (revision 12828)
+++ trunk/themes/default/inlink/blocks/links/link_enhance_confirmation.tpl (nonexistent)
@@ -1,30 +0,0 @@
-<table class="block-no-border bgr-myaccount" style="margin-left: 15px; margin-right: 1px;">
- <tr>
- <td>
- <h1><img src="img/ic_confirm_big.gif" width="46" height="46" alt="" align="absmiddle" /> <inp2:m_phrase label="lu_title_confirm" /></h1>
- </td>
- </tr>
- <tr>
- <td class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /></td>
- </tr>
- <tr>
- <td style="padding-bottom: 15px;">
- <h2><inp2:m_phrase label="lu_LinkEnhancementResults" /></h2>
- </td>
- </tr>
- <tr>
- <td style="padding-bottom: 15px; padding-right: 40px">
- <inp2:m_Phrase label="lu_EnhanceLinkConfirmation" />
- </td>
- </tr>
- <tr>
- <td class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /></td>
- </tr>
- <tr>
- <td style="padding-top: 15px;">
- <form enctype="multipart/form-data" method="POST" action="<inp2:m_Link template="inlink/my_items" pass="all" />">
- <input type="submit" class="button" value="<inp2:m_Phrase label="lu_ok" />" />
- </form>
- </td>
- </tr>
-</table>
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/blocks/links/link_enhance_confirmation.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/inlink/blocks/links/link_extend_enhancement.tpl
===================================================================
--- trunk/themes/default/inlink/blocks/links/link_extend_enhancement.tpl (revision 12828)
+++ trunk/themes/default/inlink/blocks/links/link_extend_enhancement.tpl (nonexistent)
@@ -1,31 +0,0 @@
-<table class="block-no-border bgr-myaccount" style="margin-left: 15px; margin-right: 1px;">
- <tr>
- <td colspan="2">
- <h1><img src="inlink/img/ic_newlink.gif" width="46" height="46" alt="" align="absmiddle" /> <inp2:m_phrase label="lu_ExtendCancelEnhancement" /></h1><br />
- </td>
- </tr>
- <tr>
- <td>
- <table class="block-no-border" style="width: 60%">
- <tr>
- <td><inp2:m_Phrase label="lu_ListingTypeName" />:</td>
- <td><inp2:l_ListingTypeField name="Name" /></td>
- </tr>
- <tr>
- <td><inp2:m_Phrase label="lu_ListingExpirationDate" />:</td>
- <td><inp2:l_EnhancementField name="ExpiresOn_date" /></td>
- </tr>
- </table><br />
- <inp2:m_if check="l_IsRenewalPeriod">
- <a href="<inp2:m_Link template="inlink/edit_link/extend_enhancement_confirmation" pass="all,l" />"><inp2:m_Phrase label="lu_ExtendEnhancement" /></a><br /><br />
- </inp2:m_if>
- <inp2:m_if check="l_IsReocurringEnhancement">
- <inp2:m_Phrase label="lu_EnhancementSetToRenewOn" /> <inp2:l_EnhancementField name="ExpiresOn_date" />,
- <a href="<inp2:m_Link template="inlink/edit_link/link_cancel_confirm" pass="all,l" />"><inp2:m_Phrase label="lu_ClickHere" /></a>
- <inp2:m_Phrase label="lu_ToCancelEnhancement" />
- <inp2:m_else />
- <a href="<inp2:m_Link template="inlink/edit_link/link_cancel_confirm" pass="all,l" />"><inp2:m_Phrase label="lu_CancelEnhancement" /></a>
- </inp2:m_if>
- </td>
- </tr>
-</table>
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/blocks/links/link_extend_enhancement.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/inlink/blocks/links/link_extend_confirm.tpl
===================================================================
--- trunk/themes/default/inlink/blocks/links/link_extend_confirm.tpl (revision 12828)
+++ trunk/themes/default/inlink/blocks/links/link_extend_confirm.tpl (nonexistent)
@@ -1,38 +0,0 @@
-<form method="POST" enctype="multipart/form-data" action="<inp2:m_FormAction />">
- <table class="block-no-border bgr-myaccount" style="margin-left: 15px; margin-right: 1px;">
- <tr>
- <td>
- <h1><img src="img/ic_confirm_big.gif" width="46" height="46" alt="" align="absmiddle" /> <inp2:m_Phrase label="lu_ConfirmExtendEnhancement" /></h1>
- </td>
- </tr>
- <tr>
- <td class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /></td>
- </tr>
- <tr>
- <td style="padding-bottom: 15px;">
- <h2><inp2:m_phrase label="lu_AreYouSureToExtendEnhancement" /></h2>
- </td>
- </tr>
- <tr>
- <td style="padding-bottom: 15px; padding-right: 40px">
- <inp2:m_Phrase label="lu_ExtendEnhancementConfirmation" />
- </td>
- </tr>
- <tr>
- <td class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /></td>
- </tr>
- <tr>
- <td style="padding-top: 15px;">
- <inp2:m_if check="l_EnhanceUsingInCommerce">
- <input type="hidden" name="shop_cart_template" value="in-commerce/shop_cart/shop_cart" />
- <input type="submit" class="button" name="events[ord][OnAddVirtualProductToCart]" value="<inp2:m_phrase label="lu_yes" />" />
- <inp2:m_else />
- <input type="hidden" name="success_template" value="inlink/my_items" />
- <input type="submit" class="button" name="events[ls][OnExtendEnhancement]" value="<inp2:m_Phrase label="lu_yes" />" />
- </inp2:m_if>
- <input type="hidden" name="cancel_template" value="inlink/my_items" />
- <input type="submit" class="button" name="events[ls][OnCancel]" value="<inp2:m_Phrase label="lu_no" />" />
- </td>
- </tr>
- </table>
-</form>
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/blocks/links/link_extend_confirm.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/inlink/my_account/new_links.tpl
===================================================================
--- trunk/themes/default/inlink/my_account/new_links.tpl (revision 12828)
+++ trunk/themes/default/inlink/my_account/new_links.tpl (nonexistent)
@@ -1,131 +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 -->
-
- <!-- links -->
-
-<!-- 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_links_updated" />: <inp:l_link_modified /></td>
- </tr>
- </table>
- <!-- end links update line -->
-
- <!-- links -->
- <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="inlink/img/ic_mylinks_big.gif" width="46" height="46" alt="" /><br /></td>
- <td valign="top" width="10000" class="bgr-links">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="5"><h2><inp:m_language _Phrase="lu_new_since_links" /> <span>(<inp:l_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_links" />:&nbsp;<span><inp:m_itemcount _ItemType="Link" /></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="Link" _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 -->
- <inp:include _Template="inlink/sort_link.tpl" />
- <br />
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top">
- <inp:l_list_links _ListType="my_new" _CatInfo="1" _ItemTemplate="inlink/pick/link_element.tpl" _ShortList="0" />
- </td>
- </tr>
- <tr>
- <td align="right" valign="top" class="pagination">
- <inp:l_link_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>
- </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="inlink/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>
-
Property changes on: trunk/themes/default/inlink/my_account/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/inlink/my_account/links.tpl
===================================================================
--- trunk/themes/default/inlink/my_account/links.tpl (revision 12828)
+++ trunk/themes/default/inlink/my_account/links.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="inlink/my_items" />"><img src="img/ic_mylinks46.gif" width="46" height="46" alt="" /></a><br />
-</td>
-<td width="10000" class="item">
- <a href="<inp:m_template_link _Template="inlink/my_items" />"><inp:m_language _Phrase="lu_my_links" /></a>
- <p><inp:m_language _Phrase="lu_my_links_description" /></p>
-</td>
-<td><img src="img/s.gif" width="30" height="1" alt="" /><br /></td>
Property changes on: trunk/themes/default/inlink/my_account/links.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/inlink/my_account/new_items.tpl
===================================================================
--- trunk/themes/default/inlink/my_account/new_items.tpl (revision 12828)
+++ trunk/themes/default/inlink/my_account/new_items.tpl (nonexistent)
@@ -1,21 +0,0 @@
- <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="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_links" /></h1><br/><br/></td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td><inp:l_list_links _ItemTemplate="inlink/index/link_element.tpl" _ShortList="1" _ListType="my_new" /></td>
- </tr>
- <tr>
- <td align="right"><inp:l_link_more _ShortList="1" _ListType="my_new" _Template="inlink/my_account/new_links" _text="lu_more" _image="img/arr_more.gif" /></td>
- </table>
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/my_account/new_items.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/inlink/right_newlinks.tpl
===================================================================
--- trunk/themes/default/inlink/right_newlinks.tpl (revision 12828)
+++ trunk/themes/default/inlink/right_newlinks.tpl (nonexistent)
@@ -1,6 +0,0 @@
-<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="inlink/main_newitems" _DataExists=1 />
-</table>
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/right_newlinks.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/inlink/index.tpl
===================================================================
--- trunk/themes/default/inlink/index.tpl (revision 12828)
+++ trunk/themes/default/inlink/index.tpl (nonexistent)
@@ -1,77 +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 width="10000" valign="top" class="bgr-path">&nbsp;</td>-->
- </tr>
- </table>
- <!-- path \\-->
- <inp:include _Template="inlink/index/categories.tpl" _DataExists=1 _NoDataTemplate="inlink/index/no_categories" />
-
- <!-- related categories //-->
- <inp:include _Template="catindex_relcats" _DataExists=1 />
- <!-- related categories \\-->
-
- <!-- links //-->
- <inp:include _template="inlink/index/links.tpl" _DataExists=1 _NoDataTemplate="inlink/index/no_links.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="inlink/index/right" /></td>
- <!-- right column \\-->
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
-
- <inp:include _Template="common/footer.tpl" />
-</table>
-
-</body>
-</html>
Property changes on: trunk/themes/default/inlink/index.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/inlink/new.tpl
===================================================================
--- trunk/themes/default/inlink/new.tpl (revision 12828)
+++ trunk/themes/default/inlink/new.tpl (nonexistent)
@@ -1,68 +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">
- <!-- 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="545" height="1" alt="" /><br /></td>
- <td bgcolor="#61b0ec"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- <tr>
- <td style="background: url('img/bgr_path.jpg')" colspan="2">
- <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"><inp:m_navbar _RootTemplate="index" _separator=" &gt; " /></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <!-- end navbar -->
-
- <!-- links -->
- <inp:include _template="inlink/new/links.tpl" />
- <!-- end links -->
- </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>
- <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top">
- <img src="img/s.gif" width="1" height="1" alt="" /><br />
- </td>
- </tr>
- <tr>
- <td valign="top" height="100%" class="open-box">
- <inp:include _template="inlink/new/right.tpl" />
- </td>
- </tr>
- </table>
- </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/inlink/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/inlink/img/menubar.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inlink/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/inlink/img/ic_mylinks.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inlink/img/ic_mylinks.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/inlink/img/ic_newlink.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inlink/img/ic_newlink.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/inlink/img/ic_head_directory.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inlink/img/ic_head_directory.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/inlink/img/ic_links.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inlink/img/ic_links.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/inlink/img/ic_pointer.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inlink/img/ic_pointer.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/inlink/img/ic_mylinks46.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inlink/img/ic_mylinks46.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/inlink/img/bgr_links.jpg
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inlink/img/bgr_links.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/inlink/img/ic_mylinks_big.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default/inlink/img/ic_mylinks_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/inlink/edit_link.tpl
===================================================================
--- trunk/themes/default/inlink/edit_link.tpl (revision 12828)
+++ trunk/themes/default/inlink/edit_link.tpl (nonexistent)
@@ -1,91 +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">
- <!-- 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 style="background: url('img/bgr_path.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"><inp:m_navbar _RootTemplate="index" _separator=" &gt; " /></td>
- </tr>
- </table>
- </td>
- <td width="10000" valign="top" class="bgr-path">&nbsp;</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="inlink/img/ic_newlink.gif" width="46" height="46" alt="" /><br /></td>
- <td><h1><inp:m_language _Phrase="lu_modify_link" /></h1></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <!-- end page title -->
-
- <inp:include _Template="inlink/edit_link/edit_link_form.tpl" _noaccess="access_denied.tpl" _Permission="LINK.ADD,LINK.ADD.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">
- <inp:include _template="inlink/detail/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/inlink/edit_link.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/inlink/detail_zoom/related_category.tpl
===================================================================
--- trunk/themes/default/inlink/detail_zoom/related_category.tpl (revision 12828)
+++ trunk/themes/default/inlink/detail_zoom/related_category.tpl (nonexistent)
@@ -1,42 +0,0 @@
-<!-- related categories 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-updatelight"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- </tr>
-</table>
-<!-- end related categories line -->
-
-<!-- related categories -->
-<img src="img/s.gif" width="1" height="5" 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>
- <h3><inp:m_language _Phrase="lu_related_categories" /> <span>(<inp:l_related_count _ItemType="Category" />)</span></h3>
- </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>
-
- <!-- related categories content -->
- <br />
- <inp:l_related_items _ListItems="Category" _CategoryTemplate="inlink/detail/related_category_element.tpl" _NoTable="1" />
- <!-- end categories content -->
- </td>
- </tr>
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
-</table>
-<!-- end related categories -->
-
-
Property changes on: trunk/themes/default/inlink/detail_zoom/related_category.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/inlink/detail_zoom/review.tpl
===================================================================
--- trunk/themes/default/inlink/detail_zoom/review.tpl (revision 12828)
+++ trunk/themes/default/inlink/detail_zoom/review.tpl (nonexistent)
@@ -1,49 +0,0 @@
-<!-- reviews 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_reviews_updated" />: <inp:l_review_modified /></td>
- </tr>
-</table>
-<!-- end reviews update line -->
-<!-- reviews -->
-<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><h2><inp:m_language _Phrase="lu_reviews" /><span>(<inp:l_link_field _field="reviews" />)</span></h2></td>
- </tr>
- <tr>
- <td class="statistics"><inp:m_language _Phrase="lu_added_today" />:&nbsp;<span>(<inp:l_link_field _field="reviews" _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="300" height="1" alt="" /><br /></td>
- </tr>
- </table>
-
- <!-- review content -->
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <TR><TD>
- <inp:l_list_reviews _ShortList="1" _ReviewTemplate="misc/review_detail_element.tpl" />
- </TD></TR>
- <tr>
- <td align="right" class="posts"><inp:l_review_more _Template="inlink/reviews" _Text="lu_more" _image="img/arr_more.gif" /></td>
- </tr>
- </table>
- <!-- end review content -->
- </td>
-</tr>
-<tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="20" alt="" /><br /></td>
-</tr>
-</table>
-<!-- end reviews -->
-
Property changes on: trunk/themes/default/inlink/detail_zoom/review.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/inlink/detail_zoom/link.tpl
===================================================================
--- trunk/themes/default/inlink/detail_zoom/link.tpl (revision 12828)
+++ trunk/themes/default/inlink/detail_zoom/link.tpl (nonexistent)
@@ -1,41 +0,0 @@
-<table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="3">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><H2><inp:link _field="name" /><H2></td>
- <td>&nbsp;&nbsp;&nbsp;</td>
- <td><inp:link _Field="rating" _DisplayMode="graphical" _OffImage="img/star.gif" _OnImage="img/star_rate.gif" /></td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td>
- <table width="200" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="2"><a href="<inp:link _field="redirect" />"<inp:link _field="additional_params"/>><img src="<inp:link _field="image" _name="main" _Thumbnail="0" _defaulturl="img/noimage.gif" />" alt="jump to site" /></a><br /></td>
- </tr>
- <tr><td colspan="2"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td></tr>
- <tr>
- <td align="right" class="bgr-updatefill" width="10000"><a href="#"><img src="img/ic_zoom.gif" width="16" height="16" alt="enlarge picture" /></a><br /></td>
- <td class="bgr-updatefill" nowrap><span class="zoom"><a href="<inp:m_template_link _Template="__default__" />"><inp:m_language _Phrase="lu_back" /></a></span>&nbsp;</td>
- </tr>
- <tr>
- <td colspan="2" class="bgr-path"><img src="img/s.gif" width="1" height="2" alt="" /><br /></td>
- </tr>
- </table>
- <br />
- </td>
- <td><img src="img/s.gif" width="10" height="1" alt="" /><br /></td>
- <td valign="top" class="comments" width="10000">
- <inp:m_language _Phrase="lu_added" />: <inp:link _field="date" />;<BR />
- <inp:m_language _Phrase="lu_hits" />: <inp:link _field="hits" />,
- <inp:m_language _Phrase="lu_rating" />: <inp:link _Field="rating" _DisplayMode="numerical" />,
- <inp:m_language _Phrase="lu_reviews" />: <inp:link _Field="reviews" />,
- <inp:m_language _Phrase="lu_votes" />: <inp:link _Field="votes" />
- <p><inp:link _field="description" /></p>
- </td>
- </tr>
-</table>
-
Property changes on: trunk/themes/default/inlink/detail_zoom/link.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/inlink/detail_zoom/right/actionbox.tpl
===================================================================
--- trunk/themes/default/inlink/detail_zoom/right/actionbox.tpl (revision 12828)
+++ trunk/themes/default/inlink/detail_zoom/right/actionbox.tpl (nonexistent)
@@ -1,77 +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" width="10000" 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="inlink/suggest_link" />"><img src="img/act_link.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="inlink/suggest_link" />"><inp:m_language _Phrase="lu_suggest_link" /></a></td>
- </tr>
- <tr>
- <td valign="top"><a href="<inp:l_link_field _Field="link" _Template="inlink/addreview" />"><img src="img/act_review.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:l_link_field _Field="link" _Template="inlink/addreview" />"><inp:m_language _Phrase="lu_add_review" /></a></td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td height="10" bgcolor="#64A1DF" class="path">&nbsp; <inp:m_language _Phrase="lu_subaction_prompt" /></td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- <tr>
- <td class="bgr-act valign="top">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="3"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- </tr>
- <inp:m_perm_text _Perm="login">
- <tr>
- <td valign="top"><a href="<inp:l_link_field _field="add_favorite_link" />"><img src="img/act_favor.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:l_link_field _field="add_favorite_link" />"><inp:m_language _Phrase="lu_add_to_favorites" /></a></td>
- </tr>
- </inp>
- <tr>
- <td valign="top"><a href="<inp:l_link_field _field="link" _template="inlink/rate" />"><img src="img/act_rate.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:l_link_field _field="link" _template="inlink/rate" />"><inp:m_language _Phrase="lu_rateit" /></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/inlink/detail_zoom/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/inlink/detail_zoom/related_category_element.tpl
===================================================================
--- trunk/themes/default/inlink/detail_zoom/related_category_element.tpl (revision 12828)
+++ trunk/themes/default/inlink/detail_zoom/related_category_element.tpl (nonexistent)
@@ -1,16 +0,0 @@
-<table border="0" cellspacing="0" cellpadding="0">
-<tr>
- <td><A href="<inp:cat _field="link" _Template="main" />"><img src="img/ic_subfolder.gif" BORDER=0 width="16" height="14" alt="" /></A><br /></td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td class="item"><A href="<inp:cat _field="link" _Mod_Template="index" />"><inp:cat_name /></a> <span class="comments">(<inp:m_language _Phrase="lu_cats" /> <inp:cat_num_cats />)</span>
- <SPAN class="cat-pick"><inp:cat_pick /></SPAN>
- <SPAN class="cat-new"><inp:cat_new/></SPAN> </td>
-</tr>
-<tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td><img src="img/s.gif" width="1" height="3" alt="" /><br /><inp:cat_desc/> &nbsp; &nbsp;<span class="comments">(<inp:m_language _Phrase="lu_added" /> <inp:cat _field="date" />)</span></td>
-</tr>
-</table>
-<BR />
-
Property changes on: trunk/themes/default/inlink/detail_zoom/related_category_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/inlink/detail_zoom/related_links.tpl
===================================================================
--- trunk/themes/default/inlink/detail_zoom/related_links.tpl (revision 12828)
+++ trunk/themes/default/inlink/detail_zoom/related_links.tpl (nonexistent)
@@ -1,43 +0,0 @@
-<!-- related links 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-updatelight"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- </tr>
-</table>
-<!-- end related links line -->
-
-<!-- related links -->
-<img src="img/s.gif" width="1" height="5" 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>
- <h3><inp:m_language _Phrase="lu_related_links" /> <span>(<inp:l_related_count _ItemType="Link" />)</span></h3>
- </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>
-
- <!-- related item content -->
- <br />
- <inp:l_related_items _ListItems="Link" _LinkTemplate="inlink/related_element" _Columns="2" _NoTable="0" />
- <!-- end item content -->
- </td>
- </tr>
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
-</table>
-<!-- end related links -->
-
-
-
Property changes on: trunk/themes/default/inlink/detail_zoom/related_links.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/inlink/detail_zoom/related_news.tpl
===================================================================
--- trunk/themes/default/inlink/detail_zoom/related_news.tpl (revision 12828)
+++ trunk/themes/default/inlink/detail_zoom/related_news.tpl (nonexistent)
@@ -1,43 +0,0 @@
-<!-- related links 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-updatelight"><img src="img/s.gif" width="1" height="10" alt="" /><br /></td>
- </tr>
-</table>
-<!-- end related news line -->
-
-<!-- related news -->
-<img src="img/s.gif" width="1" height="5" 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>
- <h3><inp:m_language _Phrase="lu_related_news" /> <span>(<inp:l_related_count _ItemType="Article" />)</span></h3>
- </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>
-
- <!-- related item content -->
- <br />
- <inp:l_related_items _ListItems="Article" _ArticleTemplate="innews/related_element" _Columns="2" _NoTable="0" />
- <!-- end item content -->
- </td>
- </tr>
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
-</table>
-<!-- end related news -->
-
-
-
Property changes on: trunk/themes/default/inlink/detail_zoom/related_news.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/inlink/detail_zoom/right.tpl
===================================================================
--- trunk/themes/default/inlink/detail_zoom/right.tpl (revision 12828)
+++ trunk/themes/default/inlink/detail_zoom/right.tpl (nonexistent)
@@ -1,19 +0,0 @@
-<!-- Template=inlink/detail/right.tpl -->
-
-<!-- login box //-->
-<inp:m_loginbox _LoginTemplate="misc/right_login.tpl" _LoggedInTemplate="misc/right_loggedin.tpl" />
-<!-- login box \\-->
-
-<!-- search box //-->
-<inp:include _Template="misc/right_searchbox" />
-<!-- search box \\-->
-
-<!-- recommend box //-->
-<inp:include _Template="misc/right_recommend" />
-<!-- recommend box \\-->
-
-<inp:include _Template="inlink/detail/right/actionbox.tpl" />
-
-<!-- quick links box //-->
-<inp:include _Template="inlink/index/right/edpick.tpl" _DataExists="1"/>
-<!-- quick links box \\-->
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/detail_zoom/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/inlink/main/main_element.tpl
===================================================================
--- trunk/themes/default/inlink/main/main_element.tpl (revision 12828)
+++ trunk/themes/default/inlink/main/main_element.tpl (nonexistent)
@@ -1,7 +0,0 @@
-<table border="0" cellspacing="0" cellpadding="0">
-<tr>
- <td><img src="inlink/img/ic_pointer.gif" width="16" height="20" alt="" /><br /></td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td class="item-small"><a href="<inp:link _Field="cat_link" _Template="__default__" />"<inp:link _field="additional_params"/>><inp:link _field="name" /></a></td>
-</TR>
-</TABLE>
Property changes on: trunk/themes/default/inlink/main/main_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/inlink/main/favorites_element.tpl
===================================================================
--- trunk/themes/default/inlink/main/favorites_element.tpl (revision 12828)
+++ trunk/themes/default/inlink/main/favorites_element.tpl (nonexistent)
@@ -1,53 +0,0 @@
-<table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top"><img src="inlink/img/ic_pointer.gif" width="16" height="20" alt="" /><br /></td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td class="item-small">
- <a href="<inp:link _field="redirect" />"<inp:link _field="additional_params"/>><inp:link _field="name" /></a>
- <inp:link _field="hot"><img src="img/ic_hot.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_hot" />" /></inp>
- <inp:link _field="new"><img src="img/ic_new.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_new" />" /></inp>
- <inp:link _field="pop"><img src="img/ic_pop.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_pop" />" /></inp>
- <inp:link _field="pick"><img src="img/ic_pick.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_editors_pick" />" /></inp>
- <inp:link _Field="rating" _DisplayMode="graphical" _OffImage="img/star.gif" _OnImage="img/star_rate.gif" />
- <br /><span class="comments"><inp:m_language _Phrase="lu_category" />:</span> <span class="tips">
- <a href="<inp:link _field="cat_link" _Template="__default__" />"><inp:link _field="fullpath" /></a></span>
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td><p><inp:link _field="description" /></p></td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td class="comments">
- <inp:m_language _Phrase="lu_added" />: <inp:link _field="date" />;
- <inp:m_language _Phrase="lu_hits" />: <inp:link _field="hits" />,
- <inp:m_language _Phrase="lu_rating" />: <inp:link _Field="rating" _DisplayMode="numerical" />,
- <inp:m_language _Phrase="lu_reviews" />: <inp:link _Field="reviews" />,
- <inp:m_language _Phrase="lu_votes" />: <inp:link _Field="votes" />
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td class="dott-line">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/ic_details.gif" width="16" height="16" alt="" /><br /></td>
- <td class="links-action"><a href="<inp:link _field="link" _Template="__default__" />"><inp:m_language _Phrase="lu_details" /></a></td>
- <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
- <td><img src="img/ic_rateit.gif" width="22" height="16" alt="" /><br /></td>
- <td class="links-action"><a href="<inp:link _field="link" _template="inlink/rate" />"><inp:m_language _Phrase="lu_rateit" /></a></td>
- <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
- <td><img src="img/ic_reviews.gif" width="16" height="16" alt="" /><br /></td>
- <td class="links-action"><a href="<inp:link _field="link" _template="inlink/reviews" />"><inp:m_language _Phrase="lu_reviews" /></a></td>
- <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
- <td><a href="<inp:link _field="add_favorite_link" />"><img src="img/ic_removefromfav.gif" width="16" height="16" alt="" /></a><br /></td>
- <td class="links-action"><inp:link _Field="favorite_toggle" _AddLabel="lu_add_to_favorites" _DelLabel="lu_remove_from_favorites" /></td>
- </tr>
- </table>
- </td>
- </tr>
-</table><br /><br />
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/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/inlink/main/favorites.tpl
===================================================================
--- trunk/themes/default/inlink/main/favorites.tpl (revision 12828)
+++ trunk/themes/default/inlink/main/favorites.tpl (nonexistent)
@@ -1,46 +0,0 @@
-<!-- links -->
-<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 border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="2"><h2><inp:m_language _Phrase="lu_links" /> <span>(<inp:l_list_count _ListType="favorites" _ShortList="1" />)</span></h2></td>
- </tr>
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></td>
- </tr>
- <tr>
- <td class="statistics"><inp:m_language _Phrase="lu_added_today" />:&nbsp;<span>(<inp:l_list_count _owner="1" _ListType="favorites" _ShortList="1" _ItemType="Link" _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>
-
- <!-- links content -->
- <br />
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top">
- <inp:l_list_links _ShortList="1" _ListType="favorites" _ItemTemplate="inlink/main/favorites_element.tpl" />
- </td>
- </tr>
- <tr>
- <td align="right" valign="top" class="pagination">
- <inp:l_link_more _ShortList="1" _ListType="favorites" _Template="inlink/item_favorites" _text="lu_more" _image="img/arr_more.gif" />
- </td>
- </tr>
- </table>
- <!-- end links content -->
- </td>
- </tr>
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="20" alt="" /><br /></td>
- </tr>
-</table>
-<!-- end links -->
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/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/inlink/main/edpick/links_element.tpl
===================================================================
--- trunk/themes/default/inlink/main/edpick/links_element.tpl (revision 12828)
+++ trunk/themes/default/inlink/main/edpick/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/inlink/main/edpick/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/inlink/main/edpick/links.tpl
===================================================================
--- trunk/themes/default/inlink/main/edpick/links.tpl (revision 12828)
+++ trunk/themes/default/inlink/main/edpick/links.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-Link" _Text="lu_links" _Template="pick" _Root="1" />
- <span class="statistics">(<inp:l_list_count _ListType="pick" _Paging="0" _MaxCount="3" _ShortList="1" />)</span>
- <img src="img/arr_more.gif" width="16" height="7" alt="" />
- </td>
- </tr>
- <inp:l_list_links _ListType="pick" _NoTable="1" _Paging="0" _MaxCount="3" _ShortList="1" _ItemTemplate="inlink/main/edpick/links_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/inlink/main/edpick/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/inlink/pick/link_element.tpl
===================================================================
--- trunk/themes/default/inlink/pick/link_element.tpl (revision 12828)
+++ trunk/themes/default/inlink/pick/link_element.tpl (nonexistent)
@@ -1,60 +0,0 @@
-<table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top"><img src="inlink/img/ic_pointer.gif" width="16" height="20" alt="" /><br /></td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td class="item-small">
- <a href="<inp:link _field="redirect" />"<inp:link _field="additional_params"/>><inp:link _field="name" /></a>
- <inp:link _field="hot"><img src="img/ic_hot.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_hot" />" /></inp>
- <inp:link _field="new"><img src="img/ic_new.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_new" />" /></inp>
- <inp:link _field="pop"><img src="img/ic_pop.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_pop" />" /></inp>
- <inp:link _field="pick"><img src="img/ic_pick.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_editors_pick" />" /></inp>
- <inp:link _Field="rating" _DisplayMode="graphical" _OffImage="img/star.gif" _OnImage="img/star_rate.gif" />
- <br /><span class="comments"><inp:m_language _Phrase="lu_category" />:</span> <span class="tips">
- <a href="<inp:link _field="cat_link" _Template="__default__" />"><inp:link _field="fullpath" /></a></span>
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td><p><inp:link _field="description" /></p></td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td class="comments">
- <inp:m_language _Phrase="lu_added" />: <inp:link _field="date" />;
- <inp:m_language _Phrase="lu_hits" />: <inp:link _field="hits" />,
- <inp:m_language _Phrase="lu_rating" />: <inp:link _Field="rating" _DisplayMode="numerical" />,
- <inp:m_language _Phrase="lu_reviews" />: <inp:link _Field="reviews" />,
- <inp:m_language _Phrase="lu_votes" />: <inp:link _Field="votes" />
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td class="dott-line">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/ic_details.gif" width="16" height="16" alt="" /><br /></td>
- <td class="links-action"><a href="<inp:link _field="cat_link" _Template="__default__" />"><inp:m_language _Phrase="lu_details" /></a></td>
- <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
- <td><img src="img/ic_rateit.gif" width="22" height="16" alt="" /><br /></td>
- <td class="links-action"><a href="<inp:link _field="cat_link" _template="inlink/rate" />"><inp:m_language _Phrase="lu_rateit" /></a></td>
- <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
- <td><img src="img/ic_reviews.gif" width="16" height="16" alt="" /><br /></td>
- <td class="links-action"><a href="<inp:link _field="cat_link" _template="inlink/reviews" />"><inp:m_language _Phrase="lu_reviews" /></a></td>
-
- <inp:m_perm_text _Perm="login">
- <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
- <td>
- <a href="<inp:m_access_template_link _Template="" _DeniedTemplate="login" _Perm="login" _field="add_favorite_link" />"><inp:link _Field="favorite_toggle" _AddImage="img/ic_addtofav.gif" _DelImage="img/ic_removefromfav.gif" _ImgWidth="16" _ImgHeight="16" _ImgAlt="" /></a><br />
- </td>
- <td nowrap="nowrap" class="links-action"><inp:link _Field="favorite_toggle" _AddLabel="lu_add_to_favorites" _DelLabel="lu_remove_from_favorites" _DenyTemplate="login" _DestTemplate="inlink/pick"/></td>
- </inp>
-
- </tr>
- </table>
- </td>
- </tr>
-</table>
-
Property changes on: trunk/themes/default/inlink/pick/link_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/inlink/pick/links.tpl
===================================================================
--- trunk/themes/default/inlink/pick/links.tpl (revision 12828)
+++ trunk/themes/default/inlink/pick/links.tpl (nonexistent)
@@ -1,64 +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_links_updated" />: <inp:l_link_modified /></td>
- </tr>
- </table>
- <!-- end links update line -->
-
- <!-- links -->
- <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="inlink/img/ic_mylinks_big.gif" width="46" height="46" alt="" /><br /></td>
- <td valign="top" width="10000" class="bgr-links">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="5"><h2><inp:m_language _Phrase="lu_pick_links" /> <span>(<inp:l_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_links" />:&nbsp;<span><inp:m_itemcount _ItemType="Link" /></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="Link" _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 -->
- <inp:include _Template="inlink/sort_link.tpl" />
- <br />
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top">
- <inp:l_list_links _ListType="pick" _CatInfo="1" _ItemTemplate="inlink/pick/link_element.tpl" _ShortList="0" />
- </td>
- </tr>
- <tr>
- <td align="right" valign="top" class="pagination">
- <inp:l_link_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/inlink/pick/links.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/inlink/pick/right.tpl
===================================================================
--- trunk/themes/default/inlink/pick/right.tpl (revision 12828)
+++ trunk/themes/default/inlink/pick/right.tpl (nonexistent)
@@ -1,18 +0,0 @@
-<!-- Template=inlink/new/right.tpl -->
-
-<!-- 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="inlink/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/inlink/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/inlink/advsearch/adv_searchtype_options.tpl
===================================================================
--- trunk/themes/default/inlink/advsearch/adv_searchtype_options.tpl (revision 12828)
+++ trunk/themes/default/inlink/advsearch/adv_searchtype_options.tpl (nonexistent)
@@ -1 +0,0 @@
-<OPTION VALUE="4"><inp:m_language _Phrase="lu_links" /></OPTION>
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/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/inlink/catindex.tpl
===================================================================
--- trunk/themes/default/inlink/catindex.tpl (revision 12828)
+++ trunk/themes/default/inlink/catindex.tpl (nonexistent)
@@ -1,62 +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_links_updated" />: <inp:l_link_modified /></td>
- </tr>
- </table>
- <!-- end links update line -->
-
- <!-- links -->
- <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-links">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="5"><h2><inp:m_language _Phrase="lu_links" /> <span>(<inp:l_list_count _ShortList="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_links" />:&nbsp;<span><inp:m_itemcount _ItemType="Link" _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="Link" _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="5" height="1" alt="" /><br /></td>
- </tr>
- </table>
-
- <!-- links content -->
- <br />
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top">
- <inp:l_list_links _ItemTemplate="inlink/catindex/catindex_element.tpl" _ShortList="1" />
- </td>
- </tr>
- <tr>
- <td align="right" valign="top" class="pagination">
- <inp:l_link_more _Template="__default__" _text="lu_more" _image="img/arr_more.gif" />
- </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/inlink/catindex.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/inlink/addreview/review_access_denied.tpl
===================================================================
--- trunk/themes/default/inlink/addreview/review_access_denied.tpl (revision 12828)
+++ trunk/themes/default/inlink/addreview/review_access_denied.tpl (nonexistent)
@@ -1,63 +0,0 @@
-<SPAN CLASS="error">
-<inp:m_language _Phrase="lu_review_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/inlink/addreview/review_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/inlink/addreview/review_form.tpl
===================================================================
--- trunk/themes/default/inlink/addreview/review_form.tpl (revision 12828)
+++ trunk/themes/default/inlink/addreview/review_form.tpl (nonexistent)
@@ -1,52 +0,0 @@
-<!-- suggest link content -->
-<inp:l_link_detail _ItemTemplate="inlink/detail/link.tpl" />
- <FORM enctype="multipart/form-data" method="POST" NAME="addreview" ACTION="<inp:l_form_action _Form="l_addreview" _Confirm="inlink/addreview/review_confirm.tpl" _ConfirmPending="inlink/addreview/review_confirm_pending" _FinishTemplate="inlink/reviews" />">
- <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_add_review" /></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="l_addreview" _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><inp:m_form_prompt _Form="l_addreview" _Field="review" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_prompt_review" /> <span class="error">*</span></td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td><inp:m_form_textarea class="textarea" _field="review" _Form="l_addreview" _Required="1" COLS="50" ROWS="5" style="wilth:235px;" /><br /></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_add_review" />" class="button">
- <INPUT type="button" name="cancel" value="<inp:m_language _Phrase="lu_cancel" />" class="button" onClick="javascript:document.location='<inp:m_template_link _Unsecure="1" _Template="inlink/detail.tpl" />';">
- </td>
- </tr>
- <!-- end buttons -->
- </table>
- </FORM>
-
Property changes on: trunk/themes/default/inlink/addreview/review_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/inlink/addreview/review_confirm.tpl
===================================================================
--- trunk/themes/default/inlink/addreview/review_confirm.tpl (revision 12828)
+++ trunk/themes/default/inlink/addreview/review_confirm.tpl (nonexistent)
@@ -1,109 +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 width="10000" valign="top" class="bgr-path">&nbsp;</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:l_form_action _Form="l_review_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_title_confirm" /></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_link_review_confirm" /></h2>
- <inp:m_language _Phrase="lu_link_addreview_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="inlink/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/inlink/addreview/review_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/inlink/addreview/review_confirm_pending.tpl
===================================================================
--- trunk/themes/default/inlink/addreview/review_confirm_pending.tpl (revision 12828)
+++ trunk/themes/default/inlink/addreview/review_confirm_pending.tpl (nonexistent)
@@ -1,95 +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">
- <!-- 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 style="background: url('img/bgr_path.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"><inp:m_navbar _RootTemplate="index" _separator=" &gt; " /></td>
- </tr>
- </table>
- </td>
- <td width="10000" valign="top" class="bgr-path">&nbsp;</td>
- </tr>
- </table>
- <!-- end navbar -->
-
- <!-- 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:l_form_action _Form="l_review_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_title_confirm" /></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_link_review_confirm_pending" /></h2>
- <inp:m_language _Phrase="lu_link_addreview_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>
-
- <!-- 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">
- <inp:include _template="inlink/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/inlink/addreview/review_confirm_pending.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/inlink/addreview/right.tpl
===================================================================
--- trunk/themes/default/inlink/addreview/right.tpl (revision 12828)
+++ trunk/themes/default/inlink/addreview/right.tpl (nonexistent)
@@ -1,19 +0,0 @@
-<!-- Template=inlink/detail/right.tpl -->
-
-<!-- login box //-->
-<inp:m_loginbox _LoginTemplate="misc/right_login.tpl" _LoggedInTemplate="misc/right_loggedin.tpl" />
-<!-- login box \\-->
-
-<!-- search box //-->
-<inp:include _Template="misc/right_searchbox" />
-<!-- search box \\-->
-
-<!-- recommend box //-->
-<inp:include _Template="misc/right_recommend" />
-<!-- recommend box \\-->
-
-<inp:include _Template="inlink/detail/right/actionbox.tpl" />
-
-<!-- quick links box //-->
-<inp:include _Template="inlink/quicklinks/edpick.tpl" _DataExists="1" />
-<!-- quick links box \\-->
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/addreview/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/inlink/item_favorites.tpl
===================================================================
--- trunk/themes/default/inlink/item_favorites.tpl (revision 12828)
+++ trunk/themes/default/inlink/item_favorites.tpl (nonexistent)
@@ -1,93 +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><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">
- <!-- 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="" /></td>-->
- </tr>
- <tr>
- <td style="background: url('img/bgr_path.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"><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_link_favorites" />
- </td>
- </tr>
- </table>
- </td>
- <!--<td valign="top" class="bgr-path"><img src="img/s.gif" width="1" height="1" alt="" /></td>-->
- </tr>
- </table>
- <!-- end navbar -->
- <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_link_favorites" /> <span>(<inp:l_list_count _ShortList="0" _ListType="favorites" _Paging="1" />)</span></h1></td>
- </tr>
- </table>
- <!-- end page title -->
- <br />
- <inp:include _Template="inlink/sort_link.tpl" />
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="40" height="1" alt="" /><br /></td>
- <td valign="top">
- <inp:l_list_links _ShortList="0" _ListType="favorites" _ItemTemplate="inlink/main/favorites_element.tpl" />
- </td>
- </tr>
- <tr>
- <td colspan="2" align="right" valign="top" class="pagination">
- <inp:l_link_pagenav _ListType="favorites" _Label="lu_page_label" _ShortList="0" />
- </td>
- </tr>
- </table>
- </TD>
- </TR>
- </TABLE>
- </td>
-
- <!-- start vertical white line in main conent table -->
- <td><img src="img/s.gif" width="1" height="1" alt="" /></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="inlink/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/inlink/item_favorites.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/inlink/menubar_element.tpl
===================================================================
--- trunk/themes/default/inlink/menubar_element.tpl (revision 12828)
+++ trunk/themes/default/inlink/menubar_element.tpl (nonexistent)
@@ -1,6 +0,0 @@
-<td>
-<inp:m_module_link _Module="In-Link" _image="inlink/img/ic_head_directory.gif" onmouseover="highlight_link('menubar_link','#ffffff');" onmouseout="highlight_link('menubar_link','');" _Template="index" _Root="1" id="navbar_link_image" />
-</td>
-<td nowrap="nowrap"><inp:m_module_link _Module="In-Link" _Text="lu_directory" _Template="index" _Root="1" id="menubar_link" /></td>
-<td><img src="img/ic_head_separ.gif" width="11" height="24" alt="" /></td>
-
Property changes on: trunk/themes/default/inlink/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/inlink/suggest_link/suggest_confirm_pending.tpl
===================================================================
--- trunk/themes/default/inlink/suggest_link/suggest_confirm_pending.tpl (revision 12828)
+++ trunk/themes/default/inlink/suggest_link/suggest_confirm_pending.tpl (nonexistent)
@@ -1,107 +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 width="10000" valign="top" class="bgr-path">&nbsp;</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="addlink_confirm" ACTION="<inp:l_form_action _Form="addlink_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_title_confirm" /></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_addlink_confirm_pending" /></h2>
- <inp:m_language _Phrase="lu_addlink_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="inlink/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/inlink/suggest_link/suggest_confirm_pending.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/inlink/suggest_link/suggest_link_form.tpl
===================================================================
--- trunk/themes/default/inlink/suggest_link/suggest_link_form.tpl (revision 12828)
+++ trunk/themes/default/inlink/suggest_link/suggest_link_form.tpl (nonexistent)
@@ -1,102 +0,0 @@
-<!-- suggest link content -->
-<FORM enctype="multipart/form-data" method="POST" NAME="addlink" ACTION="<inp:l_form_action _Form="addlink" _Confirm="inlink/suggest_link/suggest_confirm.tpl" _ConfirmPending="inlink/suggest_link/suggest_confirm_pending.tpl" _FinishTemplate="inlink/index" />">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="2">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td class="tips" colspan="3">(<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="l_addlink" _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"><inp:m_language _Phrase="lu_submitting_to" /></td>
- <td class="field-content-input"><b><inp:l_home_cat /> > <inp:m_category_field _Field="cachednavbar" /></b></td>
- </tr>
- <inp:l_multiple_submit _Form="l_addlink" />
-
- <tr>
- <td class="field-name"><inp:m_form_prompt _Form="l_addlink" _Field="name" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_prompt_linkname" /> <span class="error">*</span></td>
- <td class="field-content-input"><inp:m_form_input type="text" class="input" style="width:235px;" _field="name" _Form="l_addlink" _Required="1" /><br /></td>
- </tr>
- <tr>
- <td class="field-name"><inp:m_form_prompt _Form="l_addlink" _Field="url" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_prompt_linkurl" /> <span class="error">*</span></td>
- <td class="field-content-input"><inp:m_form_input type="text" class="input" _field="url" _Form="l_addlink" _Required="1" style="width:235px;" /><br /></td>
- </tr>
- <tr>
- <td class="field-name"><inp:m_form_prompt _Form="l_addlink" _Field="description" _langtext="lu_prompt_linkdesc" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" /> <span class="error">*</span></td>
- <td class="field-content-input"><inp:m_form_textarea class="textarea" _field="description" _Form="l_addlink" _Required="1" COLS="50" ROWS="5" style="width:235px;" /><br /></td>
- </tr>
-
- <tr>
- <td CLASS="field-name"><inp:m_form_prompt _Form="l_addlink" _Field="main_thumb" _langtext="lu_prompt_thumbnail" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" /> </td>
- <td class="field-content-input"><inp:m_form_imageupload class="input" _field="main_thumb" _ImageName="main" _thumbnail="1" _Form="l_addlink" _Required="0" style="width:235px;" /><br /></td>
- </tr>
- <tr>
- <td CLASS="field-name"><inp:m_form_prompt _Form="l_addlink" _Field="main_full" _langtext="lu_prompt_fullimage" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" /></td>
- <td class="field-content-input"><inp:m_form_imageupload class="input" _field="main_full" _ImageName="main" _thumbnail="0" _Form="l_addlink" _Required="0" style="width:235px;" /><br /></td>
- </tr>
-
- <inp2:m_if check="m_ConfigEquals" name="Link_EnhancedLinks" value="1">
- <tr>
- <td CLASS="field-name"><inp:m_form_prompt _Form="l_addlink" _Field="listing_type" _langtext="lu_prompt_listing_type" _Template="misc/form_prompt" _ErrorTemplate="misc/form_prompt_error" /></td>
- <td class="field-content-input">
- <table>
- <script language="javascript" type="text/javascript">
- function show_details(url) {
- window.open(url, 'listing_details', 'width=673,height=606,resizable=yes');
- }
-
- </script>
-
- <inp2:m_DefineElement name="listing_element">
- <tr>
- <td>
- <input type="radio" name="listing_type" id="listing_type_<inp2:m_param name="ListingTypeId"/>" value="<inp2:m_param name="ListingTypeId"/>"<inp2:m_if check="m_ParamEquals" name="IsSelected" value="1"> checked</inp2:m_if>>
- </td>
- <td>
- <label for="listing_type_<inp2:m_param name="ListingTypeId"/>"><inp2:m_param name="ListingTypeName"/></label>
- </td>
- <td>
- <inp2:m_if check="m_ParamEquals" name="IsFree" value="0">
- <a href="javascript:show_details('<inp2:m_param name="DetailsLink"/>');"><inp2:m_Phrase name="lu_more_info"/></a>
- </inp2:m_if>
- </td>
- </tr>
-
- </inp2:m_DefineElement>
-
- <inp:l_show_listings _Form="l_addlink" _Field="listing_type" _render_as="listing_element" _MoreInfoTemplate="inlink/blocks/links/listing_details" />
- </table>
- <!--<input type="hidden" name="required[]" value="listing_type" />-->
- </td>
- </tr>
- </inp2:m_if>
-
- <tr>
- <td CLASS="field-name">&nbsp;</td>
- <td><img src="img/s.gif" width="300" height="1" alt="" /><br /></td>
- </tr>
- <!-- buttons -->
- <tr>
- <td CLASS="field-name">&nbsp;</td>
- <TD class="field-content-input">
- <INPUT type="submit" name="buttons[]" value="<inp:m_language _Phrase="lu_suggest_link" />" class="button">
- <INPUT type="button" name="cancel" value="<inp:m_language _Phrase="lu_cancel" />" class="button" onClick="javascript:history.back();">
- </td>
- </tr>
- <tr><td colspan="2" class="bgr-updatefill"><img src="img/s.gif" width="300" height="1" alt="" /><br /></td></tr>
- <!-- end buttons -->
- </table><br /><br />
- <input type="hidden" name="shop_cart_template" value="in-commerce/shop_cart/shop_cart" />
-</FORM>
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/suggest_link/suggest_link_form.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/themes/default/inlink/suggest_link/suggest_confirm.tpl
===================================================================
--- trunk/themes/default/inlink/suggest_link/suggest_confirm.tpl (revision 12828)
+++ trunk/themes/default/inlink/suggest_link/suggest_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 width="10000" valign="top" class="bgr-path">&nbsp;</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="addlink_confirm" ACTION="<inp:l_form_action _Form="addlink_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_title_confirm" /></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_addlink_confirm" /></h2>
- <inp:m_language _Phrase="lu_addlink_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="inlink/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/inlink/suggest_link/suggest_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/inlink/suggest_link/right.tpl
===================================================================
--- trunk/themes/default/inlink/suggest_link/right.tpl (revision 12828)
+++ trunk/themes/default/inlink/suggest_link/right.tpl (nonexistent)
@@ -1,13 +0,0 @@
-<!-- Template=right.tpl -->
-
-<!-- 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 \\-->
-
-<!-- quick links box //-->
-<inp:include _Template="inlink/quicklinks/edpick.tpl" _DataExists="1" />
-<!-- quick links box \\-->
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/suggest_link/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/inlink/addreview.tpl
===================================================================
--- trunk/themes/default/inlink/addreview.tpl (revision 12828)
+++ trunk/themes/default/inlink/addreview.tpl (nonexistent)
@@ -1,92 +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__" _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 width="10000" valign="top" class="bgr-path">&nbsp;</td>-->
- </tr>
- </table>
- <!-- path \\-->
-
-
- <!-- 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_details_updated" />: <inp:l_link_field _Field="modified" /></td>
- </tr>
- </table>
- <!-- end details update line -->
-
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top">
- <h1><img src="inlink/img/ic_mylinks_big.gif" width="46" align="middle" height="46" alt="" /> <inp:l_link_field _Field="Name" /></h1>
- </td>
- </TR>
- <TR>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top">
- <inp:perm_include _Template="inlink/addreview/review_form.tpl" _noaccess="access_denied.tpl" _Permission="LINK.REVIEW,LINK.REVIEW.PENDING" />
- </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="inlink/addreview/right.tpl" /></td>
- <!-- right column \\-->
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
- <inp:include _template="common/footer.tpl" />
-</table>
-
Property changes on: trunk/themes/default/inlink/addreview.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/inlink/new/links.tpl
===================================================================
--- trunk/themes/default/inlink/new/links.tpl (revision 12828)
+++ trunk/themes/default/inlink/new/links.tpl (nonexistent)
@@ -1,63 +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_links_updated" />: <inp:l_link_modified /></td>
- </tr>
- </table>
- <!-- end links update line -->
-
- <!-- links -->
- <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="inlink/img/ic_mylinks_big.gif" width="46" height="46" alt="" /><br /></td>
- <td valign="top" width="10000" class="bgr-links">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="5"><h2><inp:m_language _Phrase="lu_new_links" /> <span>(<inp:l_list_count _ListType="new" _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_links" />:&nbsp;<span><inp:m_itemcount _ItemType="Link" _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="Link" _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="5" height="1" alt="" /><br /></td>
- </tr>
- </table>
-
- <!-- links content -->
- <br />
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top">
- <inp:l_list_links _ListType="new" _CatInfo="1" _ItemTemplate="inlink/link_element.tpl" _ShortList="0" />
- </td>
- </tr>
- <tr>
- <td align="right" valign="top" class="pagination">
- <inp:l_link_pagenav _ListType="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>
-
Property changes on: trunk/themes/default/inlink/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/inlink/new/right.tpl
===================================================================
--- trunk/themes/default/inlink/new/right.tpl (revision 12828)
+++ trunk/themes/default/inlink/new/right.tpl (nonexistent)
@@ -1,19 +0,0 @@
-<!-- Template=inlink/new/right.tpl -->
-
-<!-- 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="inlink/quicklinks/edpick.tpl" _DataExists="1"/>
-<!-- quick links box \\-->
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/new/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/inlink/my_items.tpl
===================================================================
--- trunk/themes/default/inlink/my_items.tpl (revision 12828)
+++ trunk/themes/default/inlink/my_items.tpl (nonexistent)
@@ -1,134 +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_links" />
- </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-links">
- <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="inlink/img/ic_mylinks_big.gif" width="46" height="46" alt="" /><br /></td>
- <td><h1><inp:m_language _Phrase="lu_my_links" /> <span>(<inp:l_list_count _ListType="myitems" _CatInfo="1" _Paging="1" />)</span></h1><span class="statistics"><inp:m_language _Phrase="lu_added_today" />:&nbsp;<span>(<inp:m_itemcount _ItemType="Link" _ListType="myitems" _Owner="1" _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 />
- <!-- end page title -->
-
- <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:l_link_pagenav _ListType="myitems" _CatInfo="1" _Label="lu_page_label" _PageIcon="img/ic_pages.gif" /></td>
- </tr>
- </table><img src="img/s.gif" width="1" height="10" alt="" /><br />
-
-
-
- <inp:include _Template="inlink/sort_link.tpl"/>
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top"><inp:l_list_links _ListType="myitems" _CatInfo="0" _ItemTemplate="inlink/my_items/myitem_element.tpl" /></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="inlink/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/inlink/my_items.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/inlink/rate/getting_rated.tpl
===================================================================
--- trunk/themes/default/inlink/rate/getting_rated.tpl (revision 12828)
+++ trunk/themes/default/inlink/rate/getting_rated.tpl (nonexistent)
@@ -1,63 +0,0 @@
-<inp:l_link_detail _ItemTemplate="inlink/detail/link.tpl" />
-<!-- 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:l_form_action _Form="l_getting_rated" _Confirm="inlink/rate/rate_confirm.tpl" _Duplicate="inlink/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_link" /></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="l_rate" _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="l_rate" 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="l_rate" _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="l_rate" 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="l_rate" _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="l_rate" 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="l_rate" _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="l_rate" 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="l_rate" _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="l_rate" VALUE="1" /><img src="<inp:m_theme_url />img/star_rate.gif"></TD>
-<TD><inp:m_form_prompt _Form="l_rate" _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="l_rate" VALUE="0" /></TD>
-<TD><inp:m_form_prompt _Form="l_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="<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/inlink/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/inlink/rate/rate_form.tpl
===================================================================
--- trunk/themes/default/inlink/rate/rate_form.tpl (revision 12828)
+++ trunk/themes/default/inlink/rate/rate_form.tpl (nonexistent)
@@ -1,109 +0,0 @@
-<inp:l_link_detail _ItemTemplate="inlink/detail/link.tpl" />
-<!-- rate link content -->
- <FORM enctype="multipart/form-data" method="POST" NAME="addrating" ACTION="<inp:l_form_action _Form="l_rate" _Confirm="inlink/rate/rate_confirm.tpl" _Duplicate="inlink/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_link" /></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="l_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="l_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="l_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="l_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="l_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="l_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="l_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="l_rate" VALUE="2" />
- <IMG SRC="img/star_rate.gif"><IMG SRC="img/star_rate.gif">
- </TD>
- <TD>
- <inp:m_form_prompt _Form="l_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="l_rate" VALUE="1" />
- <IMG SRC="img/star_rate.gif">
- </TD>
- <TD>
- <inp:m_form_prompt _Form="l_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="l_rate" VALUE="0" />
-
- </TD>
- <TD>
- <inp:m_form_prompt _Form="l_rate" _Field="review" _Template="misc/form_prompt.tpl" _ErrorTemplate="misc/form_prompt_error.tpl" _langtext="lu_rating_0" />
- </td>
- </tr>
-
- <tr>
- <td width="100%" colspan="4"><img src="img/s.gif" width="1" height="20" alt="" /></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="__default__" />';">
- </td>
- </tr>
- <!-- end buttons -->
- </table>
- </FORM>
- <table width="500">
- <tr><td align="right"><a href="<inp:m_template_link _Unsecure="1" _Template="inlink/get_rated.tpl" />" class="link"><inp:m_language _Phrase="lu_getting_rated" /></a></td></tr>
- </table>
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/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/inlink/rate/rate_confirm.tpl
===================================================================
--- trunk/themes/default/inlink/rate/rate_confirm.tpl (revision 12828)
+++ trunk/themes/default/inlink/rate/rate_confirm.tpl (nonexistent)
@@ -1,98 +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">
- <!-- 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="548" height="1" alt="" /><br /></td>
- <td bgcolor="#61b0ec"><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- </tr>
- <tr>
- <td style="background: url('img/bgr_path.jpg')" colspan="2">
- <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"><inp:m_navbar _RootTemplate="index" _separator=" &gt; " /></td>
- </tr>
- </table>
- </td>
-
- </tr>
- </table>
- <!-- end navbar -->
-
- <!-- 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:l_form_action _Form="l_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_title_confirm" /></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_link_rate_confirm" /></h2>
- <inp:m_language _Phrase="lu_link_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>
-
- <!-- 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="inlink/rate/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/inlink/rate/rate_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/inlink/rate/rate_duplicate.tpl
===================================================================
--- trunk/themes/default/inlink/rate/rate_duplicate.tpl (revision 12828)
+++ trunk/themes/default/inlink/rate/rate_duplicate.tpl (nonexistent)
@@ -1,127 +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">&nbsp;</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>
-
-
- <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">
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
-
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <!-- error msg -->
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="50"><img src="img/ic_error_big.gif" width="46" height="46" alt="" /><br /></td>
- <td><h1><inp:m_language _Phrase="lu_error_title" /></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="1" height="1" alt="" /><br /></TD>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>
- <br />
- <h2><inp:m_language _Phrase="lu_link_rate_confirm" /></h2>
- <span class="error"><inp:m_language _Phrase="lu_link_rate_confirm_duplicate_text" /></span>
- <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="1" 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 /></td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>
- <FORM method="POST" NAME="addreview_confirm" ACTION="<inp:l_form_action _Form="l_rate_confirm" />">
- <INPUT type="submit" name="buttons[]" value="<inp:m_language _Phrase="lu_button_ok" />" class="button">
- </FORM>
- </td>
- </tr>
- </table>
- <!-- end error msg -->
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="5" alt="" /><br /></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/inlink/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/inlink/rate/rate_access_denied.tpl
===================================================================
--- trunk/themes/default/inlink/rate/rate_access_denied.tpl (revision 12828)
+++ trunk/themes/default/inlink/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/inlink/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/inlink/rate/right.tpl
===================================================================
--- trunk/themes/default/inlink/rate/right.tpl (revision 12828)
+++ trunk/themes/default/inlink/rate/right.tpl (nonexistent)
@@ -1,19 +0,0 @@
-<!-- Template=inlink/detail/right.tpl -->
-
-<!-- login box //-->
-<inp:m_loginbox _LoginTemplate="misc/right_login.tpl" _LoggedInTemplate="misc/right_loggedin.tpl" />
-<!-- login box \\-->
-
-<!-- search box //-->
-<inp:include _Template="misc/right_searchbox" />
-<!-- search box \\-->
-
-<!-- recommend box //-->
-<inp:include _Template="misc/right_recommend" />
-<!-- recommend box \\-->
-
-<inp:include _Template="inlink/detail/right/actionbox.tpl" />
-
-<!-- quick links box //-->
-<inp:include _Template="inlink/quicklinks/edpick.tpl" _DataExists="1"/>
-<!-- quick links box \\-->
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/rate/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/inlink/popitems_element.tpl
===================================================================
--- trunk/themes/default/inlink/popitems_element.tpl (revision 12828)
+++ trunk/themes/default/inlink/popitems_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/inlink/popitems_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/inlink/index/no_links.tpl
===================================================================
--- trunk/themes/default/inlink/index/no_links.tpl (revision 12828)
+++ trunk/themes/default/inlink/index/no_links.tpl (nonexistent)
@@ -1,16 +0,0 @@
-<!-- Template: no_links.tpl //-->
-<!-- no links -->
-<br /><br />
-<table width="100%" border="0" 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_links" /></td> </tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- end no links -->
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/index/no_links.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/inlink/index/link_element.tpl
===================================================================
--- trunk/themes/default/inlink/index/link_element.tpl (revision 12828)
+++ trunk/themes/default/inlink/index/link_element.tpl (nonexistent)
@@ -1,61 +0,0 @@
-<table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top"><img src="inlink/img/ic_pointer.gif" width="16" height="20" alt="" /><br /></td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td class="item-small">
- <a href="<inp:link _field="redirect" />"<inp:link _field="additional_params"/>><inp:link _field="name" /></a>
- <inp:link _field="hot"><img src="img/ic_hot.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_hot" />" /></inp>
- <inp:link _field="new"><img src="img/ic_new.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_new" />" /></inp>
- <inp:link _field="pop"><img src="img/ic_pop.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_pop" />" /></inp>
- <inp:link _field="pick"><img src="img/ic_pick.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_editors_pick" />" /></inp>
-
- <inp:link _field="favorite"><img src="img/ic_favorite.gif" width="11" height="11" alt="favorite" /></inp>
- <inp:link _Field="rating" _DisplayMode="graphical" _OffImage="img/star.gif" _OnImage="img/star_rate.gif" /><br />
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td><p><inp:link _field="description" /></p></td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td class="comments" nowrap>
- <inp:m_language _Phrase="lu_added" />: <inp:link _field="date" />;
- <inp:m_language _Phrase="lu_hits" />: <inp:link _field="hits" />,
- <inp:m_language _Phrase="lu_rating" />: <inp:link _Field="rating" _DisplayMode="numerical" />,
- <inp:m_language _Phrase="lu_reviews" />: <inp:link _Field="reviews" />,
- <inp:m_language _Phrase="lu_votes" />: <inp:link _Field="votes" />
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td class="dott-line">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><a href="<inp:link _field="link" _template="__default__" />"><img src="img/ic_details.gif" width="16" height="16" alt="" /></a><br /></td>
- <td nowrap="nowrap" class="links-action"><a href="<inp:link _field="link" _template="__default__" />"><inp:m_language _Phrase="lu_details" /></a></td>
-
- <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
-
- <td><a href="<inp:link _field="link" _template="inlink/rate" />"><img src="img/ic_rateit.gif" width="22" height="16" alt="" /></a><br /></td>
- <td nowrap="nowrap" class="links-action"><a href="<inp:link _field="link" _template="inlink/rate" />"><inp:m_language _Phrase="lu_rateit" /></a></td>
-
- <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
-
- <td><a href="<inp:link _field="link" _template="inlink/reviews" />"><img src="img/ic_reviews.gif" width="16" height="16" alt="" /></a><br /></td>
- <td nowrap="nowrap" class="links-action"><a href="<inp:link _field="link" _template="inlink/reviews" />"><inp:m_language _Phrase="lu_reviews" /></a></td>
-
- <inp:m_perm_text _Perm="login">
- <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
- <td><a href="<inp:m_access_template_link _Template="" _DeniedTemplate="login" _Perm="login" _field="add_favorite_link" />"><inp:link _Field="favorite_toggle" _AddImage="img/ic_addtofav.gif" _DelImage="img/ic_removefromfav.gif" _ImgWidth="16" _ImgHeight="16" _ImgAlt="" /></a><br /></td>
- <td nowrap="nowrap" class="links-action"><inp:link _Field="favorite_toggle" _AddLabel="lu_add_to_favorites" _DelLabel="lu_remove_from_favorites" _DenyTemplate="login" _DestTemplate="__default__"/></td>
- </inp>
- </tr>
- </table>
- </td>
- </tr>
-</table><br /><br />
-
Property changes on: trunk/themes/default/inlink/index/link_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/inlink/index/categories.tpl
===================================================================
--- trunk/themes/default/inlink/index/categories.tpl (revision 12828)
+++ trunk/themes/default/inlink/index/categories.tpl (nonexistent)
@@ -1,62 +0,0 @@
-<!-- Template: categories.tpl -->
-<inp:m_init_cats />
-<!-- 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 />&nbsp;</td>
- </tr>
-</table>
-<!-- categories update line \\-->
-
-<inp:include _Template="sort_cats.tpl" />
-
-<!-- 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-categories">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top" colspan="4">
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="50"><img src="inlink/img/ic_mylinks_big.gif" width="46" height="46" alt="" /></td>
- <td><h1><inp:m_category_field _Field="name" /></h1></td>
- </tr>
- </table><br />
-
- <H2><inp:m_language _Phrase="lu_cats" /></H2>
- </td>
- </tr>
- <tr>
- <td colspan="4"><img src="img/s.gif" width="1" height="5" alt="" /><br /></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" _today="1" _GroupOnly="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>
-
- <!-- categories content //-->
- <br /><inp:m_list_cats _NoTable="0" _columns="2" _ItemTemplate="categories/catlist_element" border="0" cellspacing="0" cellpadding="0" width="98%" _DataExists=1 /><br/>
- <inp:l_cat_pagenav _Label="lu_page_label" _ShortList="0"/>
- <!-- categories content \\-->
-
- </td>
- </tr>
-</table>
-<!-- end categories -->
-
Property changes on: trunk/themes/default/inlink/index/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/themes/default/inlink/index/sitemap_cat_element.tpl
===================================================================
--- trunk/themes/default/inlink/index/sitemap_cat_element.tpl (revision 12828)
+++ trunk/themes/default/inlink/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/inlink/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/inlink/index/right/actionbox.tpl
===================================================================
--- trunk/themes/default/inlink/index/right/actionbox.tpl (revision 12828)
+++ trunk/themes/default/inlink/index/right/actionbox.tpl (nonexistent)
@@ -1,45 +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="inlink/suggest_link" />"><img src="img/act_link.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="inlink/suggest_link" />"><inp:m_language _Phrase="lu_suggest_link" /></a></td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td class="bgr-act-bottom"><img src="img/s.gif" width="1" height="1" alt="" /></td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /></td>
- </tr>
-</table>
-<!-- end action box -->
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/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/inlink/index/sitemap_subcat_element.tpl
===================================================================
--- trunk/themes/default/inlink/index/sitemap_subcat_element.tpl (revision 12828)
+++ trunk/themes/default/inlink/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/inlink/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/inlink/index/links.tpl
===================================================================
--- trunk/themes/default/inlink/index/links.tpl (revision 12828)
+++ trunk/themes/default/inlink/index/links.tpl (nonexistent)
@@ -1,75 +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_links_updated" />: <inp:l_link_modified />&nbsp;</td>
- </tr>
- </table>
- <!-- end links update line -->
-
- <inp:include _Template="inlink/sort_link.tpl" />
-
- <!-- links -->
- <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-links">
- <img src="img/s.gif" width="1" height="5" alt="" /><br />
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="5"><h2><inp:m_language _Phrase="lu_links" /> <span>(<inp:l_list_count _ShortList="0" _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_links" />:&nbsp;<span><inp:m_itemcount _ItemType="Link" _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="Link" _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="5" height="1" alt="" /><br /></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
-
- <!-- links content //-->
- <br />
-
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <!--<td><img src="img/s.gif" width="30" height="1" alt="" /><br /></td>-->
- <td valign="top">
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top"><inp:l_list_links _ItemTemplate="inlink/index/link_element.tpl" _ShortList="0" /></td>
- </tr>
- <tr>
- <td align="right" valign="top" class="pagination"><inp:l_link_pagenav _Label="lu_page_label" _ShortList="0" /></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <!-- 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>
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/index/links.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/inlink/index/no_categories.tpl
===================================================================
--- trunk/themes/default/inlink/index/no_categories.tpl (revision 12828)
+++ trunk/themes/default/inlink/index/no_categories.tpl (nonexistent)
@@ -1,29 +0,0 @@
-<!-- Template: no_categories.tpl -->
-
-<!--
-<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>
--->
-
-<!-- No categories (current category header) -->
-<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">
- <tr>
- <td valign="top" width="50"><img src="inlink/img/ic_mylinks_big.gif" width="46" height="46" alt="" /></td>
- <td><h1><inp:m_category_field _Field="name" /></h1></td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-
-<!-- end no categories -->
-
Property changes on: trunk/themes/default/inlink/index/no_categories.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/inlink/index/right.tpl
===================================================================
--- trunk/themes/default/inlink/index/right.tpl (revision 12828)
+++ trunk/themes/default/inlink/index/right.tpl (nonexistent)
@@ -1,23 +0,0 @@
-<!-- Template=right.tpl -->
-
-<!-- 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 \\-->
-
-
-<inp:include _Template="inlink/index/right/actionbox.tpl" />
-
-
-<!-- quick links box //-->
-<inp:include _Template="inlink/quicklinks/edpick.tpl" _DataExists="1" />
-<!-- quick links box \\-->
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/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/inlink/edit_confirm.tpl
===================================================================
--- trunk/themes/default/inlink/edit_confirm.tpl (revision 12828)
+++ trunk/themes/default/inlink/edit_confirm.tpl (nonexistent)
@@ -1,96 +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">
- <!-- 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 style="background: url('img/bgr_path.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"><inp:m_navbar _RootTemplate="index" _separator=" &gt; " /></td>
- </tr>
- </table>
- </td>
- <td width="10000" valign="top" class="bgr-path">&nbsp;</td>
- </tr>
- </table>
- <!-- end navbar -->
-
- <!-- 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="editlink_confirm" ACTION="<inp:l_form_action _Form="editlink_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_modify_link" /></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_modifylink_confirm" /></h2>
- <inp:m_language _Phrase="lu_modifylink_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>
-
- <!-- 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">
- <inp:include _template="inlink/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/inlink/edit_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/inlink/get_rated.tpl
===================================================================
--- trunk/themes/default/inlink/get_rated.tpl (revision 12828)
+++ trunk/themes/default/inlink/get_rated.tpl (nonexistent)
@@ -1,94 +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" _LinkCurrent="1" _Template="__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 width="10000" valign="top" class="bgr-path">&nbsp;</td>-->
- </tr>
- </table>
- <!-- path \\-->
-
- <!-- 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_details_updated" />: <inp:l_link_field _Field="modified" /></td>
- </tr>
- </table>
- <!-- end details update line -->
-
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top">
- <img src="img/s.gif" width="0" height="5" alt="" /><br />
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="50"><img src="inlink/img/ic_mylinks_big.gif" width="46" height="46" alt="" /></td>
- <td><h1><inp:m_language _Phrase="lu_getting_rated" /></h1></td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top">
- <br />
- <inp:perm_include _Template="inlink/rate/getting_rated.tpl" _noaccess="access_denied.tpl" _Permission="LINK.RATE" />
- </td>
- </tr>
- </table>
- </td>
-
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
-
- <!-- right column //-->
- <td valign="top" height="100%" class="open-box"><inp:include _template="inlink/rate/right.tpl" /></td>
- <!-- right column \\-->
-
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
- <inp:include _template="common/footer" />
-</table>
Property changes on: trunk/themes/default/inlink/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/inlink/detail.tpl
===================================================================
--- trunk/themes/default/inlink/detail.tpl (revision 12828)
+++ trunk/themes/default/inlink/detail.tpl (nonexistent)
@@ -1,108 +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__" _LinkCurrent="1" _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 width="10000" valign="top" class="bgr-path">&nbsp;</td>-->
- </tr>
- </table>
- <!-- path \\-->
-
- <!-- 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_details_updated" />: <inp:l_link_field _Field="modified" />&nbsp;</td>
- </tr>
- </table>
- <!-- end details update line -->
-
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top">
- <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="inlink/img/ic_mylinks_big.gif" width="46" height="46" alt="" /></td>
- <td><h1><inp:l_link_field _Field="Name" /></h1></td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td><inp:l_link_detail _ItemTemplate="inlink/detail/link.tpl" /></td>
- </tr>
- </table>
-
- <!-- related categories //-->
- <inp:include _Template="inlink/detail/related_category.tpl" _DataExists=1 />
- <!-- related categories \\-->
-
- <!-- related links //-->
- <inp:include _Template="inlink/detail/related_links.tpl" _DataExists=1 />
- <!-- related links \\-->
-
- <!-- related news //-->
- <inp:perm_include _Module="In-News" _Template="inlink/detail/related_news.tpl" _DataExists=1 />
- <!-- related news \\-->
-
- <inp:include _Template="inlink/detail/review.tpl" />
- </td>
-
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
-
- <!-- right column //-->
- <td valign="top" height="100%" class="open-box"><inp:include _template="inlink/detail/right.tpl" /></td>
- <!-- right column \\-->
- </tr>
- </table>
- </td>
- </tr>
- <!-- end content -->
-
- <inp:include _template="common/footer" />
-</table>
-
-</body>
-</html>
Property changes on: trunk/themes/default/inlink/detail.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/inlink/reviews.tpl
===================================================================
--- trunk/themes/default/inlink/reviews.tpl (revision 12828)
+++ trunk/themes/default/inlink/reviews.tpl (nonexistent)
@@ -1,90 +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 _LinkCurrent="1" _Template="__default__" _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 width="10000" valign="top" class="bgr-path">&nbsp;</td>-->
- </tr>
- </table>
- <!-- path \\-->
-
-
- <!-- 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_details_updated" />: <inp:l_link_field _Field="modified" /></td>
- </tr>
- </table>
- <!-- end details update line -->
-
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top">
- <h1><inp:m_language _Phrase="lu_link_reviews" /></h1>
- <inp:l_link_detail _ItemTemplate="inlink/detail/link.tpl" />
- </td>
- </tr>
- </table>
-
- <inp:include _Template="inlink/reviews/review_list.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="inlink/detail/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/inlink/reviews.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/inlink/search_results/item_results.tpl
===================================================================
--- trunk/themes/default/inlink/search_results/item_results.tpl (revision 12828)
+++ trunk/themes/default/inlink/search_results/item_results.tpl (nonexistent)
@@ -1,177 +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="545" 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_link_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_link_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_links" /> <span>(<inp:l_list_count _ListType="Search" _Paging="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="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="50" height="1" alt="" /><br /></td>
- <td valign="top">
- <inp:include _Template="inlink/sort_link.tpl" />
- <inp:l_list_links _ShortList="0" _ListType="search" _ItemTemplate="inlink/search_results/search_results_element.tpl" />
- </TD>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td align="right" valign="top" class="pagination">
- <inp:l_link_pagenav _ShortList="0" _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 height="100%">
- <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <img src="img/s.gif" width="1" height="1" alt="" /><br />
- </td>
- </tr>
- <tr>
- <td valign="top" class="open-box" height="100%">
- <inp:include _template="inlink/index/right.tpl" />
- </td>
- </tr>
- </table>
- </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/inlink/search_results/item_results.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/inlink/search_results/search_count.tpl
===================================================================
--- trunk/themes/default/inlink/search_results/search_count.tpl (revision 12828)
+++ trunk/themes/default/inlink/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="inlink/img/ic_pointer.gif" width="16" height="20" alt="" /><br /></td>
-<td><inp:m_language _Phrase="lu_links" /> - <span class="item"><a href="<inp:m_template_link _Anchor="links" />"><inp:l_list_count _ListType="Search" /></a></span></td>
Property changes on: trunk/themes/default/inlink/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/inlink/search_results/short_results.tpl
===================================================================
--- trunk/themes/default/inlink/search_results/short_results.tpl (revision 12828)
+++ trunk/themes/default/inlink/search_results/short_results.tpl (nonexistent)
@@ -1,39 +0,0 @@
-<!-- links -->
-<img src="img/s.gif" width="1" height="15" alt="" /><br />
-<table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top"><a name="links"></a>
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <h2><inp:m_language _Phrase="lu_links" /> <span>(<inp:l_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>
- <!-- links content -->
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/s.gif" width="1" height="1" alt="" /><br /></td>
- <td valign="top">
- <inp:l_list_links _ShortList="1" _ListType="search" _ItemTemplate="inlink/search_results/search_results_element" _DataExists="1" />
- </TD>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td align="right" valign="top" class="pagination">
- <inp:l_link_more _ShortList="1" _ListType="search" _Template="inlink/search_results/item_results" _text="lu_more" _image="img/arr_more.gif" />
- </td>
- </tr>
-
- </table>
- <!-- end links content -->
- </td>
- </tr>
- <tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="20" alt="" /><br /></td>
- </tr>
-</table>
-<!-- end links -->
Property changes on: trunk/themes/default/inlink/search_results/short_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/default/inlink/search_results/search_results_element.tpl
===================================================================
--- trunk/themes/default/inlink/search_results/search_results_element.tpl (revision 12828)
+++ trunk/themes/default/inlink/search_results/search_results_element.tpl (nonexistent)
@@ -1,64 +0,0 @@
-<table border="0" cellspacing="0" cellpadding="0" class="relevance-bar" width="40" height="5">
-<tr><td>
-<inp:link _Field="relevance" _DisplayMode="bar" _OffBackGroundColor="white" _OnBackGroundColor="red" _OnImage="img/relevance/rel.gif" /></td>
-</tr>
-</table>
-
-<table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top"><img src="inlink/img/ic_pointer.gif" width="16" height="20" alt="" /><br /></td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td class="item-small">
- <a href="<inp:link _field="redirect" />"<inp:link _field="additional_params"/>><inp:link _field="name" /></a>
- <inp:link _field="hot"><img src="img/ic_hot.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_hot" />" /></inp>
- <inp:link _field="new"><img src="img/ic_new.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_new" />" /></inp>
- <inp:link _field="pop"><img src="img/ic_pop.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_pop" />" /></inp>
- <inp:link _field="pick"><img src="img/ic_pick.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_editors_pick" />" /></inp>
- <inp:link _Field="rating" _DisplayMode="graphical" _OffImage="img/star.gif" _OnImage="img/star_rate.gif" />
- <br /><span class="comments"><inp:m_language _Phrase="lu_category" />:</span> <span class="tips">
- <a href="<inp:link _field="cat_link" _Template="__default__" />"><inp:link _field="fullpath" /></a></span>
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td><p><inp:link _field="description" /></p></td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td class="comments">
- <inp:m_language _Phrase="lu_added" />: <inp:link _field="date" />;
- <inp:m_language _Phrase="lu_hits" />: <inp:link _field="hits" />,
- <inp:m_language _Phrase="lu_rating" />: <inp:link _Field="rating" _DisplayMode="numerical" />,
- <inp:m_language _Phrase="lu_reviews" />: <inp:link _Field="reviews" />,
- <inp:m_language _Phrase="lu_votes" />: <inp:link _Field="votes" />
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td class="dott-line">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="img/ic_details.gif" width="16" height="16" alt="" /><br /></td>
- <td class="links-action"><a href="<inp:link _field="link" _template="__default__" />"><inp:m_language _Phrase="lu_details" /></a></td>
- <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
- <td><img src="img/ic_rateit.gif" width="22" height="16" alt="" /><br /></td>
- <td class="links-action"><a href="<inp:link _field="link" _template="inlink/rate" />"><inp:m_language _Phrase="lu_rateit" /></a></td>
- <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
- <td><img src="img/ic_reviews.gif" width="16" height="16" alt="" /><br /></td>
- <td class="links-action"><a href="<inp:link _field="link" _template="inlink/reviews" />"><inp:m_language _Phrase="lu_reviews" /></a></td>
-
- <inp:link _field="perm" _Perm="favorites">
- <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
- <td><a href="<inp:link _field="add_favorite_link" />"><img src="img/ic_addtofav.gif" width="16" height="16" alt="" /></a><br /></td>
- <td nowrap="nowrap" class="links-action"><inp:link _Field="favorite_toggle" _AddLabel="lu_add_to_favorites" _DelLabel="lu_remove_from_favorites" /></td>
- </inp>
-
- </tr>
- </table>
- </td>
- </tr>
-</table>
-
Property changes on: trunk/themes/default/inlink/search_results/search_results_element.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/inlink/reviews/review_list.tpl
===================================================================
--- trunk/themes/default/inlink/reviews/review_list.tpl (revision 12828)
+++ trunk/themes/default/inlink/reviews/review_list.tpl (nonexistent)
@@ -1,49 +0,0 @@
-<!-- reviews 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_reviews_updated" />:<inp:l_review_modified /></td>
- </tr>
-</table>
-<!-- end reviews update line -->
-<!-- reviews -->
-<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><h2><inp:m_language _Phrase="lu_reviews" /><span>(<inp:l_link_field _field="reviews" />)</span></h2></td>
- </tr>
- <tr>
- <td class="statistics"><inp:m_language _Phrase="lu_added_today" />:&nbsp;<span>(<inp:l_link_field _field="reviews" _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="300" height="1" alt="" /><br /></td>
- </tr>
- </table>
-
- <!-- review content -->
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <TR><TD>
- <inp:l_list_reviews _ReviewTemplate="inlink/reviews/review_detail_element.tpl" />
- </TD></TR>
- <tr>
- <td align="right" class="pagination"><inp:l_review_pagenav _Label="lu_page_label"/></td>
- </tr>
- </table>
- <!-- end review content -->
- </td>
-</tr>
-<tr>
- <td colspan="2"><img src="img/s.gif" width="1" height="20" alt="" /><br /></td>
-</tr>
-</table>
-<!-- end reviews -->
-
Property changes on: trunk/themes/default/inlink/reviews/review_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/inlink/reviews/review_detail_element.tpl
===================================================================
--- trunk/themes/default/inlink/reviews/review_detail_element.tpl (revision 12828)
+++ trunk/themes/default/inlink/reviews/review_detail_element.tpl (nonexistent)
@@ -1,14 +0,0 @@
-<TABLE BORDER=0>
-<tr>
- <td valign="top" class="reviewer">
- <img src="img/s.gif" width="120" height="1" alt="" /><br />
- <inp:m_language _Phrase="lu_by" /> <inp:review _field="reviewer" _usertag="login" /><br />
- <span class="tips"><inp:m_language _Phrase="lu_added" />: <inp:review _field="date" /></span>
- </td>
- <td><img src="img/s.gif" width="20" height="1" alt="" /><br /></td>
- <td valign="top" ALIGN="left">
- <inp:review _field="text" /><br />
- <img src="img/s.gif" width="1" height="15" alt="" /><br />
- </td>
-</tr>
-</TABLE>
Property changes on: trunk/themes/default/inlink/reviews/review_detail_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/inlink/catindex/catindex.tpl
===================================================================
--- trunk/themes/default/inlink/catindex/catindex.tpl (revision 12828)
+++ trunk/themes/default/inlink/catindex/catindex.tpl (nonexistent)
@@ -1,62 +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_links_updated" />: <inp:l_link_modified /></td>
- </tr>
- </table>
- <!-- end links update line -->
-
- <!-- links -->
- <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-links">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td colspan="5"><h2><inp:m_language _Phrase="lu_links" /> <span>(<inp:l_list_count _ShortList="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_links" />:&nbsp;<span><inp:m_itemcount _ItemType="Link" _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="Link" _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="5" height="1" alt="" /><br /></td>
- </tr>
- </table>
-
- <!-- links content -->
- <br />
- <table width="98%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top">
- <inp:l_list_links _ItemTemplate="inlink/catindex/catindex_element.tpl" _ShortList="1" />
- </td>
- </tr>
- <tr>
- <td align="right" valign="top" class="pagination">
- <inp:l_link_more _Template="__default__" _text="lu_more" _image="img/arr_more.gif" />
- </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/inlink/catindex/catindex.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/inlink/catindex/catindex_element.tpl
===================================================================
--- trunk/themes/default/inlink/catindex/catindex_element.tpl (revision 12828)
+++ trunk/themes/default/inlink/catindex/catindex_element.tpl (nonexistent)
@@ -1,58 +0,0 @@
-<table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td valign="top"><img src="inlink/img/ic_pointer.gif" width="16" height="20" alt="" /><br /></td>
- <td><img src="img/s.gif" width="5" height="1" alt="" /><br /></td>
- <td class="item-small">
- <a href="<inp:link _field="redirect" />"<inp:link _field="additional_params"/>><inp:link _field="name" /></a>
- <inp:link _field="hot"><img src="img/ic_hot.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_hot" />" /></inp><inp:link _field="new"><img src="img/ic_new.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_new" />" /></inp><inp:link _field="pop"><img src="img/ic_pop.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_pop" />" /></inp><inp:link _field="pick"><img src="img/ic_pick.gif" width="11" height="11" alt="<inp:m_language _Phrase="lu_editors_pick" />" /></inp>
- <inp:link _Field="rating" _DisplayMode="graphical" _OffImage="img/star.gif" _OnImage="img/star_rate.gif" /><br />
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td><p><inp:link _field="description" /></p></td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td class="comments" nowrap>
- <inp:m_language _Phrase="lu_added" />: <inp:link _field="date" />;
- <inp:m_language _Phrase="lu_hits" />: <inp:link _field="hits" />,
- <inp:m_language _Phrase="lu_rating" />: <inp:link _Field="rating" _DisplayMode="numerical" />,
- <inp:m_language _Phrase="lu_reviews" />: <inp:link _Field="reviews" />,
- <inp:m_language _Phrase="lu_votes" />: <inp:link _Field="votes" />
- </td>
- </tr>
- <tr>
- <td>&nbsp;</td>
- <td>&nbsp;</td>
- <td class="dott-line">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><a href="<inp:link _field="link" _Template="__default__" />"><img src="img/ic_details.gif" width="16" height="16" alt="" /></a><br /></td>
- <td class="links-action"><a href="<inp:link _field="link" _Template="__default__" />"><inp:m_language _Phrase="lu_details" /></a></td>
-
- <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
-
- <td><a href="<inp:link _field="link" _template="inlink/rate" />"><img src="img/ic_rateit.gif" width="22" height="16" alt="" /></a><br /></td>
- <td class="links-action"><a href="<inp:link _field="link" _template="inlink/rate" />"><inp:m_language _Phrase="lu_rateit" /></a></td>
-
- <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
-
- <td><a href="<inp:link _field="link" _template="inlink/reviews" />"><img src="img/ic_reviews.gif" width="16" height="16" alt="" /></a><br /></td>
- <td class="links-action"><a href="<inp:link _field="link" _template="inlink/reviews" />"><inp:m_language _Phrase="lu_reviews" /></a></td>
-
- <inp:m_perm_text _Perm="login">
- <td><img src="img/sep.gif" width="21" height="9" alt="" /><br /></td>
- <td><inp:link _Field="favorite_toggle" _AddImage="img/ic_addtofav.gif" _DelImage="img/ic_addtofav.gif" _DenyTemplate="login" _DenyTemplate="favorite_error.tpl" _DestTemplate="__default__"/></td>
- <td nowrap="nowrap" class="links-action"><inp:link _Field="favorite_toggle" _AddLabel="lu_add_to_favorites" _DelLabel="lu_remove_from_favorites" _DenyTemplate="favorite_error.tpl" _DestTemplate="__default__"/></td>
- </inp>
-
- </tr>
- </table>
- </td>
- </tr>
-</table>
-<br />
-
Property changes on: trunk/themes/default/inlink/catindex/catindex_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/inlink/catindex/no_items.tpl
===================================================================
--- trunk/themes/default/inlink/catindex/no_items.tpl (revision 12828)
+++ trunk/themes/default/inlink/catindex/no_items.tpl (nonexistent)
@@ -1,16 +0,0 @@
-<!-- Template: no_links.tpl //-->
-<!-- no links -->
-<br /><br />
-<table width="100%" border="0" 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_links" /></td> </tr>
- </table>
- </td>
- </tr>
-</table>
-<!-- end no links -->
\ No newline at end of file
Property changes on: trunk/themes/default/inlink/catindex/no_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/default2007/inlink/module_info.xml
===================================================================
--- trunk/themes/default2007/inlink/module_info.xml (revision 12828)
+++ trunk/themes/default2007/inlink/module_info.xml (nonexistent)
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<module_info>
- <category_template>inlink/index</category_template>
- <item_template>inlink/detail</item_template>
-</module_info>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inlink/module_info.xml
___________________________________________________________________
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/inlink/designs/links.tpl
===================================================================
--- trunk/themes/default2007/inlink/designs/links.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/designs/links.tpl (nonexistent)
@@ -1,129 +0,0 @@
-<inp2:m_DefineElement name="no_links">
- <inp2:m_phrase name="lu_NoLinks"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="link_element">
- <td>
- <div class="horizontal-separator"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="1" alt="" /><br /></div>
- <table>
- <tr>
- <td class="link-picture-padding">
- <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:LinkLink template="__default__"/>" title="<inp2:Field name="Name" html_escape="1"/>"><inp2:Image render_as="image_element" Primary="1" DefaultImage="platform/img/no_picture.gif" MaxWidth="thumbnail"/></a>
- </td>
- <td class="link-text-padding" valign="top">
- <a href="<inp2:LinkLink template="__default__"/>" class="text-title"><inp2:Field name="Name"/></a> <!--(Owner: <inp2:Field name="CreatedById"/>)-->
-
- <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 />
-
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="4" alt="" /><br />
- <inp2:Field name="Description" nl2br="1"/>
-
- <br /><br />
-
- <span class="item-statistics">
- <inp2:m_phrase name="lu_Added"/>: <inp2:Field name="CreatedOn" format="_regional_DateFormat"/>,
- <inp2:m_phrase name="lu_Hits"/>: <inp2:Field name="Hits"/>,
- <inp2:m_phrase name="lu_Reviews"/>: <inp2:Field name="CachedReviewsQty"/>,
- <inp2:m_phrase name="lu_Rating"/>: <inp2:Field name="CachedRating"/>,
- <inp2:m_phrase name="lu_Votes"/>: <inp2:Field name="CachedVotesQty"/>
- </span>
-
- <br />
-
- <inp2:m_if check="IsFavorite">
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/ic_removefromfav.gif" width="11" height="10" alt="" /> <a class="item-action" href="<inp2:FavoriteToggleLink/>"><inp2:m_phrase name="lu_btn_RemoveFromFavorites"/></a>
- <inp2:m_else/>
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/ic_addtofav.gif" width="11" height="10" alt="" /> <a class="item-action" href="<inp2:FavoriteToggleLink template="platform/my_account/my_favorites"/>"><inp2:m_phrase name="lu_btn_AddToFavorites"/></a>
- </inp2:m_if>
-
- &nbsp;|&nbsp;
-
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/reviews.gif" width="14" height="10" alt="" /> <a class="item-action" href="<inp2:LinkLink template="inlink/links/add_review"/>"><inp2:m_phrase name="lu_btn_AddReview"/></a>
- </td>
- </tr>
- </table>
- </td>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="my_link_element">
- <td>
- <div class="horizontal-separator"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="1" alt="" /><br /></div>
- <table class="fullwidth">
- <tr>
- <td class="link-picture-padding">
- <a href="<inp2:LinkLink template="__default__"/>" title="<inp2:Field name="Name" html_escape="1"/>"><inp2:Image render_as="image_element" Primary="1" DefaultImage="platform/img/no_picture.gif" MaxWidth="thumbnail"/></a><br />
- </td>
- <td class="link-text-padding" valign="top">
- <a href="<inp2:LinkLink template="__default__"/>"><inp2:Field name="Name"/></a> <inp2:m_if check="IsPending"><span class="pending-item"><strong><inp2:m_phrase name="lu_PendingItem"/> (OrgId: <inp2:Field name="OrgId"/>)</strong></span></inp2:m_if>
-
- <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 />
- <span class="item-statistics">
- <inp2:m_phrase name="lu_Added"/>: <inp2:Field name="CreatedOn" format="_regional_DateFormat"/>,
- <inp2:m_phrase name="lu_Hits"/>: <inp2:Field name="Hits"/>,
- <inp2:m_phrase name="lu_Reviews"/>: <inp2:Field name="CachedReviewsQty"/>,
- <inp2:m_phrase name="lu_Rating"/>: <inp2:Field name="CachedRating"/>,
- <inp2:m_phrase name="lu_Votes"/>: <inp2:Field name="CachedVotesQty"/>
- </span><br />
-
- <inp2:m_phrase name="lu_ItemPrimaryCategory"/>: <strong><inp2:CategoryPath separator="&gt;" render_as="category_path_element"/></strong><br />
- <inp2:Field name="Description" nl2br="1"/>
-
- <br /><br />
- <table>
- <tr>
- <td>
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/ic_details.gif" width="14" height="13" alt="" /> <a class="item-action" href="<inp2:LinkLink template="__default__"/>"><inp2:m_phrase name="lu_btn_Details"/></a>
- </td>
-
- <inp2:m_if check="HasPermission" permissions="LINK.MODIFY|LINK.MODIFY.PENDING|LINK.OWNER.MODIFY|LINK.OWNER.MODIFY.PENDING">
- <td>
- &nbsp;|&nbsp; <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/ic_edit.gif" width="11" height="10" alt="" /> <a class="item-action" href="<inp2:LinkLink template="inlink/links/modify_link"/>"><inp2:m_phrase name="lu_btn_Modify"/></a>
- </td>
- </inp2:m_if>
-
- <inp2:m_if check="m_ConfigEquals" option="Link_EnhancedLinks" value="1">
- <td>
- &nbsp;|&nbsp; <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/ic_edit.gif" width="11" height="10" alt="" />
- <inp2:m_if check="LinkIsEnhanced">
- <a class="item-action" href="<inp2:LinkLink template="inlink/links/enhancements/extend_enhancement"/>"><inp2:m_phrase name="lu_btn_ExtendCancelEnhancement"/></a>
- <inp2:m_else/>
- <a class="item-action" href="<inp2:LinkLink template="inlink/links/enhancements/enhance_link"/>"><inp2:m_phrase name="lu_btn_Enhance"/></a>
- </inp2:m_if>
- </td>
- </inp2:m_if>
-
- <inp2:m_if check="HasPermission" permissions="LINK.DELETE|LINK.OWNER.DELETE">
- <td>
- &nbsp;|&nbsp; <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/ic_delete.gif" width="11" height="10" alt="" /> <a class="item-action" href="<inp2:LinkLink l_event="OnDelete"/>" onclick="return confirm('<inp2:m_phrase name="lu_DeleteLinkConfirm" js_escape="1"/>');"><inp2:m_phrase name="lu_btn_Delete"/></a>
- </td>
- </inp2:m_if>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </td>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="link_short_element">
- <td>
- <a href="<inp2:LinkLink template="__default__"/>"><inp2:Field name="Name"/></a>
- </td>
-</inp2:m_DefineElement>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inlink/designs/links.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.34
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inlink/designs/enhancements.tpl
===================================================================
--- trunk/themes/default2007/inlink/designs/enhancements.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/designs/enhancements.tpl (nonexistent)
@@ -1,29 +0,0 @@
-<inp2:m_DefineElement name="no_enhancements">
- <inp2:m_Phrase name="lu_NoEnhancments"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="listing_type_element">
- <tr>
- <td colspan="<inp2:m_if check="m_ModuleEnabled" module="In-Commerce">4<inp2:m_else/>3</inp2:m_if>">
- <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 width="20">
- <input type="radio" name="<inp2:l_InputName field="ListingTypeId" />" value="<inp2:Field name="ListingTypeId"/>" <inp2:m_if check="IsDefault">checked="checked"</inp2:m_if>/>
- </td>
- <td width="250">
- <a href="<inp2:l_ListingTypeDetailsLink template="inlink/links/enhancements/enhancement_details"/>" onclick="return open_window(this.href, 'listing_details', 545, 420);"><inp2:Field name="Name" /></a>
- </td>
- <td width="100">
- <inp2:Field name="Duration" /> <inp2:Field name="DurationType" />
- </td>
-
- <inp2:m_if check="m_ModuleEnabled" module="In-Commerce">
- <td>
- <inp2:Field name="Price" currency="selected"/>
- </td>
- </inp2:m_if>
- </tr>
-</inp2:m_DefineElement>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inlink/designs/enhancements.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/inlink/elements/side_boxes/hot.tpl
===================================================================
--- trunk/themes/default2007/inlink/elements/side_boxes/hot.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/elements/side_boxes/hot.tpl (nonexistent)
@@ -1,18 +0,0 @@
-<!-- popular links -->
-<inp2:l_InitList list_name="hot_links" types="hot" parent_cat_id="0" recursive="1" per_page="short_list"/>
-
-<inp2:m_Capture to_var="header">
- <a href="<inp2:m_Link template="inlink/links/hot_links" m_cat_id="0" />"><inp2:m_phrase name="lu_title_HotLinks"/></a> (<inp2:l_TotalRecords list_name="hot_links"/>)
-</inp2:m_Capture>
-
-<inp2:m_include template="inlink/designs/links"/>
-
-<inp2:m_DefineElement name="all_hot_links">
- <a href="<inp2:m_Link template="inlink/links/hot_links" m_cat_id="0" />"><inp2:m_Phrase label="lu_More" /></a>
-</inp2:m_DefineElement>
-
-<table width="100%" style="border-width: 0px;">
- <inp2:l_ListLinks list_name="hot_links" render_as="link_short_element" direction="H"/>
-</table>
-<inp2:l_MoreLink list_name="hot_links" render_as="all_hot_links"/>
-<!-- // popular links -->
\ No newline at end of file
Property changes on: trunk/themes/default2007/inlink/elements/side_boxes/hot.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/inlink/elements/side_boxes/pick.tpl
===================================================================
--- trunk/themes/default2007/inlink/elements/side_boxes/pick.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/elements/side_boxes/pick.tpl (nonexistent)
@@ -1,18 +0,0 @@
-<!-- popular links -->
-<inp2:l_InitList list_name="pick_links" types="pick" parent_cat_id="0" recursive="1" per_page="short_list"/>
-
-<inp2:m_Capture to_var="header">
- <a href="<inp2:m_Link template="inlink/links/pick_links" m_cat_id="0" />"><inp2:m_phrase name="lu_title_PickLinks"/></a> (<inp2:l_TotalRecords list_name="pick_links"/>)
-</inp2:m_Capture>
-
-<inp2:m_include template="inlink/designs/links"/>
-
-<inp2:m_DefineElement name="all_pick_links">
- <a href="<inp2:m_Link template="inlink/links/pick_links" m_cat_id="0" />"><inp2:m_Phrase label="lu_More" /></a>
-</inp2:m_DefineElement>
-
-<table width="100%" style="border-width: 0px;">
- <inp2:l_ListLinks list_name="pick_links" render_as="link_short_element" direction="H"/>
-</table>
-<inp2:l_MoreLink list_name="pick_links" render_as="all_pick_links"/>
-<!-- // popular links -->
\ No newline at end of file
Property changes on: trunk/themes/default2007/inlink/elements/side_boxes/pick.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/inlink/elements/side_boxes/pop.tpl
===================================================================
--- trunk/themes/default2007/inlink/elements/side_boxes/pop.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/elements/side_boxes/pop.tpl (nonexistent)
@@ -1,18 +0,0 @@
-<!-- popular links -->
-<inp2:l_InitList list_name="pop_links" types="pop" parent_cat_id="0" recursive="1" per_page="short_list"/>
-
-<inp2:m_Capture to_var="header">
- <a href="<inp2:m_Link template="inlink/links/pop_links" m_cat_id="0" />"><inp2:m_phrase name="lu_title_PopLinks"/></a> (<inp2:l_TotalRecords list_name="pop_links"/>)
-</inp2:m_Capture>
-
-<inp2:m_include template="inlink/designs/links"/>
-
-<inp2:m_DefineElement name="all_pop_links">
- <a href="<inp2:m_Link template="inlink/links/pop_links" m_cat_id="0" />"><inp2:m_Phrase label="lu_More" /></a>
-</inp2:m_DefineElement>
-
-<table width="100%" style="border-width: 0px;">
- <inp2:l_ListLinks list_name="pop_links" render_as="link_short_element" direction="H"/>
-</table>
-<inp2:l_MoreLink list_name="pop_links" render_as="all_pop_links"/>
-<!-- // popular links -->
\ No newline at end of file
Property changes on: trunk/themes/default2007/inlink/elements/side_boxes/pop.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/inlink/elements/side_boxes/new.tpl
===================================================================
--- trunk/themes/default2007/inlink/elements/side_boxes/new.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/elements/side_boxes/new.tpl (nonexistent)
@@ -1,18 +0,0 @@
-<!-- popular links -->
-<inp2:l_InitList list_name="new_links" types="new" parent_cat_id="0" recursive="1" per_page="short_list"/>
-
-<inp2:m_Capture to_var="header">
- <a href="<inp2:m_Link template="inlink/links/new_links" m_cat_id="0" />"><inp2:m_phrase name="lu_title_NewLinks"/></a> (<inp2:l_TotalRecords list_name="new_links"/>)
-</inp2:m_Capture>
-
-<inp2:m_include template="inlink/designs/links"/>
-
-<inp2:m_DefineElement name="all_new_links">
- <a href="<inp2:m_Link template="inlink/links/new_links" m_cat_id="0" />"><inp2:m_Phrase label="lu_More" /></a>
-</inp2:m_DefineElement>
-
-<table width="100%" style="border-width: 0px;">
- <inp2:l_ListLinks list_name="new_links" render_as="link_short_element" direction="H"/>
-</table>
-<inp2:l_MoreLink list_name="new_links" render_as="all_new_links"/>
-<!-- // popular links -->
\ No newline at end of file
Property changes on: trunk/themes/default2007/inlink/elements/side_boxes/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/default2007/inlink/elements/side_boxes/action_box.tpl
===================================================================
--- trunk/themes/default2007/inlink/elements/side_boxes/action_box.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/elements/side_boxes/action_box.tpl (nonexistent)
@@ -1,39 +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="l"/>
- <inp2:m_RenderElement name="box_element" template="inlink/links/suggest_link" title="lu_SuggestLink" prefix="l"/>
-
- <inp2:m_if check="m_Param" name="item_actions">
- <tr>
- <td>-</td>
- <td>
- <inp2:m_if check="l_IsFavorite">
- <a href="<inp2:l_FavoriteToggleLink/>">
- <inp2:m_phrase name="lu_btn_RemoveFromFavorites"/>
- </a>
- <inp2:m_else/>
- <a href="<inp2:l_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:l_LinkLink template="inlink/links/add_review"/>"><inp2:m_phrase name="lu_btn_ReviewThisLink"/></a>
- </td>
- </tr>
-
- <tr>
- <td>-</td>
- <td>
- <a href="<inp2:l_LinkLink template="inlink/links/rate"/>" class="static"><inp2:m_phrase name="lu_btn_RateThisLink"/></a>
- </td>
- </tr>
- </inp2:m_if>
-</table>
Property changes on: trunk/themes/default2007/inlink/elements/side_boxes/action_box.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/inlink/elements/sorting.tpl
===================================================================
--- trunk/themes/default2007/inlink/elements/sorting.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/elements/sorting.tpl (nonexistent)
@@ -1,42 +0,0 @@
-<table class="fullwidth">
- <tr>
- <td class="category-statistics">
- <inp2:m_phrase name="lu_TotalLinks"/>: <inp2:l_TotalRecords list_name="$list_name"/> &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_LinksUpdated"/>: 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 align="right">
- <form method="post" action="<inp2:m_FormAction />">
- <inp2:m_Phrase label="lu_SortLinksBy"/>:
-
- <select class="input-select" name="<inp2:l_CombinedSortingDropDownName/>">
- <option value="Name|asc" <inp2:l_SortingSelected sorting="Name|asc" selected='selected="selected"'/>> <inp2:m_Phrase label="lu_LinkNameAZ"/></option>
- <option value="Name|desc" <inp2:l_SortingSelected sorting="Name|desc" selected='selected="selected"'/>> <inp2:m_Phrase label="lu_LinkNameZA"/></option>
- <option value="CreatedOn|asc" <inp2:l_SortingSelected sorting="CreatedOn|asc" selected='selected="selected"'/>> <inp2:m_Phrase label="lu_RecentToOld"/></option>
- <option value="CreatedOn|desc" <inp2:l_SortingSelected sorting="CreatedOn|desc" selected='selected="selected"'/>> <inp2:m_Phrase label="lu_OldToRecent"/></option>
- <option value="Description|asc" <inp2:l_SortingSelected sorting="Description|asc" selected='selected="selected"'/>> <inp2:m_Phrase label="lu_DescriptionAZ"/></option>
- <option value="Description|desc" <inp2:l_SortingSelected sorting="Description|desc" selected='selected="selected"'/>> <inp2:m_Phrase label="lu_DescriptionZA"/></option>
- <option value="CachedRating|asc" <inp2:l_SortingSelected sorting="CachedRating|asc" selected='selected="selected"'/>> <inp2:m_Phrase label="lu_RatingLH"/></option>
- <option value="CachedRating|desc" <inp2:l_SortingSelected sorting="CachedRating|desc" selected='selected="selected"'/>> <inp2:m_Phrase label="lu_RatingHL"/></option>
- <option value="CachedVotesQty|asc" <inp2:l_SortingSelected sorting="CachedVotesQty|asc" selected='selected="selected"'/>> <inp2:m_Phrase label="lu_VotesLH"/></option>
- <option value="CachedVotesQty|desc" <inp2:l_SortingSelected sorting="CachedVotesQty|desc" selected='selected="selected"'/>> <inp2:m_Phrase label="lu_VotesHL"/></option>
- <option value="Hits|asc" <inp2:l_SortingSelected sorting="Hits|asc" selected='selected="selected"'/>> <inp2:m_Phrase label="lu_HitsLH"/></option>
- <option value="Hits|desc" <inp2:l_SortingSelected sorting="Hits|desc" selected='selected="selected"'/>> <inp2:m_Phrase label="lu_HitsHL"/></option>
- </select>
-
- <input type="submit" class="button" name="<inp2:l_SubmitName event="OnSetSortingDirect"/>" value="<inp2:m_Phrase label="lu_btn_Sort"/>" />
- </form>
- </td>
- </tr>
-</table>
-
-<img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="10" alt="" /><br />
\ No newline at end of file
Property changes on: trunk/themes/default2007/inlink/elements/sorting.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/inlink/elements/html_head.tpl
===================================================================
--- trunk/themes/default2007/inlink/elements/html_head.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/elements/html_head.tpl (nonexistent)
@@ -1,3 +0,0 @@
-<link rel="stylesheet" rev="stylesheet" href="<inp2:m_TemplatesBase module="In-Link"/>inc/styles.css" type="text/css" />
-<script type="text/javascript" src="<inp2:m_TemplatesBase module="In-Link"/>inc/script.js"></script>
-
Property changes on: trunk/themes/default2007/inlink/elements/html_head.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/inlink/elements/content_boxes/home_page_items.tpl
===================================================================
--- trunk/themes/default2007/inlink/elements/content_boxes/home_page_items.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/elements/content_boxes/home_page_items.tpl (nonexistent)
@@ -1,21 +0,0 @@
-<inp2:m_RenderElement design="content_box">
- <inp2:l_InitList list_name="pick_links" per_page="short_list" m_cat_id="0" recursive="1" types="pick"/>
-
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_PickLinks"/> (<inp2:l_TotalRecords list_name="pick_links"/>)
- </inp2:m_Capture>
-
- <inp2:m_include template="inlink/designs/links"/>
-
- <table class="fullwidth">
- <inp2:l_ListLinks list_name="pick_links" render_as="link_short_element" columns="2" direction="H"/>
- </table>
-
- <div style="text-align: right;">
- <a href="<inp2:m_Link template="inlink/links/pick_links"/>"><inp2:m_phrase name="lu_More"/></a>
- </div>
-</inp2:m_RenderElement>
-
-
-
-
Property changes on: trunk/themes/default2007/inlink/elements/content_boxes/home_page_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/default2007/inlink/elements/content_boxes/my_favorites.tpl
===================================================================
--- trunk/themes/default2007/inlink/elements/content_boxes/my_favorites.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/elements/content_boxes/my_favorites.tpl (nonexistent)
@@ -1,21 +0,0 @@
-<!-- favorite links -->
-<inp2:m_RenderElement design="content_box" data_exists="1">
- <inp2:l_InitList list_name="favorite_links" types="favorites" except="displayed" parent_cat_id="0" recursive="1"/>
-
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_FavoriteLinks"/> (<inp2:l_TotalRecords list_name="favorite_links"/>)
- </inp2:m_Capture>
-
- <inp2:m_include template="inlink/designs/links"/>
-
- <table class="fullwidth item-listing">
- <inp2:l_ListLinks list_name="favorite_links" render_as="link_element" direction="H"/>
- </table>
-
- <inp2:m_if check="l_TotalRecords" list_name="favorite_links">
- <inp2:m_Set favorites_found="1"/>
- </inp2:m_if>
-
- <inp2:m_include template="platform/elements/pagination" prefix="l" list_name="favorite_links"/>
-</inp2:m_RenderElement>
-<!-- // favorite links -->
\ No newline at end of file
Property changes on: trunk/themes/default2007/inlink/elements/content_boxes/my_favorites.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/inlink/elements/content_boxes/search_results.tpl
===================================================================
--- trunk/themes/default2007/inlink/elements/content_boxes/search_results.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/elements/content_boxes/search_results.tpl (nonexistent)
@@ -1,27 +0,0 @@
-<inp2:m_RenderElement design="content_box" data_exists="1">
- <inp2:l_InitList list_name="link_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_LinkSearchResults"/> (<inp2:l_TotalRecords list_name="link_search_results" />)
- </inp2:m_Capture>
-
- <inp2:m_include template="inlink/designs/links"/>
- <inp2:m_include template="platform/designs/search_results"/>
-
- <table class="fullwidth item-listing">
- <inp2:l_ListLinks list_name="link_search_results" render_as="link_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="l_TotalRecords" list_name="link_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="inlink/links/search_results" />"><inp2:m_Phrase label="lu_More"/>...</a>
- </inp2:m_DefineElement>
-
- <inp2:l_MoreLink list_name="link_search_results" render_as="more_link" />
-</inp2:m_RenderElement>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inlink/elements/content_boxes/search_results.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/inlink/elements/menu.xml.tpl
===================================================================
--- trunk/themes/default2007/inlink/elements/menu.xml.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/elements/menu.xml.tpl (nonexistent)
@@ -1 +0,0 @@
-<inp2:m_RenderElement name="dmenu_element" module="In-link" icon="menu_links.gif"/>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inlink/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/inlink/links/modify_link.tpl
===================================================================
--- trunk/themes/default2007/inlink/links/modify_link.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/links/modify_link.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,
- "
- design="blue_box"/>
-
- <inp2:m_RenderElement name="inlink/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_MyLinks,__item__,lu_title_ModifyLink" templates="platform/my_account/my_account,inlink/my_account/my_links,__default__,inlink/links/modify_link"/>
-
- <!-- modify link -->
- <inp2:m_RenderElement design="content_box">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_ModifyLink"/>
- </inp2:m_Capture>
-
- <inp2:m_if check="l_HasPermission" permissions="LINK.MODIFY|LINK.MODIFY.PENDING|LINK.OWNER.MODIFY|LINK.OWNER.MODIFY.PENDING">
- <span class="field-required">*</span> <inp2:m_phrase name="lu_IndicatesRequired"/><br /><br />
-
- <inp2:m_if check="l_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/>" enctype="multipart/form-data">
- <table class="form-data fullwidth">
- <inp2:m_RenderElement name="inp_edit_box" prefix="l" field="Name" title="lu_fld_Name"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="l" field="Url" title="lu_fld_Url"/>
- <inp2:m_RenderElement name="inp_edit_textarea" prefix="l" field="Description" cols="60" rows="8" title="lu_fld_Description"/>
-
- <inp2:m_RenderElement name="inp_edit_image_upload" prefix="l" field="PrimaryImage" title="lu_fld_PrimaryImage"/>
- <inp2:m_RenderElement name="inp_edit_image_upload" prefix="l" field="Image1" title="lu_fld_Image1"/>
- <inp2:m_RenderElement name="inp_edit_image_upload" prefix="l" field="Image2" title="lu_fld_Image2" is_last="1"/>
-
- <inp2:m_RenderElement design="inp_edit_buttons">
- <input type="hidden" name="modify_confirm_template" value="inlink/links/modify_confirm"/>
- <input type="hidden" name="modify_pending_confirm_template" value="inlink/links/modify_pending_confirm"/>
- <input class="button" type="submit" name="events[l][OnUpdate]" value="<inp2:m_phrase label="lu_btn_Update"/>"/>
- </inp2:m_RenderElement>
- </table>
- </form>
- <inp2:m_else/>
- <inp2:m_phrase name="lu_text_NoModifyLinkPermission"/>
- </inp2:m_if>
- </inp2:m_RenderElement>
- <!-- // modify link -->
-</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/inlink/links/modify_link.tpl
___________________________________________________________________
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/themes/default2007/inlink/links/pop_links.tpl
===================================================================
--- trunk/themes/default2007/inlink/links/pop_links.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/links/pop_links.tpl (nonexistent)
@@ -1,40 +0,0 @@
-<inp2:m_DefineElement name="sidebar">
- <inp2:m_RenderElements
- elements="
- platform/elements/side_boxes/login,
- platform/elements/side_boxes/search,
- inlink/elements/side_boxes/action_box,
- "
- design="blue_box"/>
-
- <inp2:m_RenderElement name="inlink/elements/side_boxes/new" design="blue_box" data_exists="1"/>
- <inp2:m_RenderElement name="inlink/elements/side_boxes/hot" design="blue_box" data_exists="1"/>
- <inp2:m_RenderElement name="inlink/elements/side_boxes/pick" design="blue_box" data_exists="1"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar" titles="lu_title_PopLinks" templates="inlink/links/pop_links"/>
-
- <!-- links in category -->
- <inp2:m_RenderElement design="content_box" data_exists="1" block_no_data="no_links">
- <inp2:l_InitList list_name="pop_links" m_cat_id="0" recursive="1" types="pop"/>
-
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_PopLinks"/>
- </inp2:m_Capture>
-
- <inp2:m_include template="inlink/designs/links"/>
-
- <inp2:m_include template="inlink/elements/sorting" list_name="pop_links"/>
-
- <table class="fullwidth item-listing">
- <inp2:l_ListLinks list_name="pop_links" render_as="link_element" direction="H"/>
- </table>
-
- <inp2:m_include template="platform/elements/pagination" prefix="l" list_name="pop_links"/>
- </inp2:m_RenderElement>
- <!-- // links in category -->
-
-</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/inlink/links/pop_links.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/default2007/inlink/links/new_links.tpl
===================================================================
--- trunk/themes/default2007/inlink/links/new_links.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/links/new_links.tpl (nonexistent)
@@ -1,40 +0,0 @@
-<inp2:m_DefineElement name="sidebar">
- <inp2:m_RenderElements
- elements="
- platform/elements/side_boxes/login,
- platform/elements/side_boxes/search,
- inlink/elements/side_boxes/action_box,
- "
- design="blue_box"/>
-
- <inp2:m_RenderElement name="inlink/elements/side_boxes/hot" design="blue_box" data_exists="1"/>
- <inp2:m_RenderElement name="inlink/elements/side_boxes/pop" design="blue_box" data_exists="1"/>
- <inp2:m_RenderElement name="inlink/elements/side_boxes/pick" design="blue_box" data_exists="1"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar" titles="lu_title_NewLinks" templates="inlink/links/new_links"/>
-
- <!-- links in category -->
- <inp2:m_RenderElement design="content_box" data_exists="1" block_no_data="no_links">
- <inp2:l_InitList list_name="new_links" m_cat_id="0" recursive="1" types="new"/>
-
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_NewLinks"/>
- </inp2:m_Capture>
-
- <inp2:m_include template="inlink/designs/links"/>
-
- <inp2:m_include template="inlink/elements/sorting" list_name="new_links"/>
-
- <table class="fullwidth item-listing">
- <inp2:l_ListLinks list_name="new_links" render_as="link_element" direction="H"/>
- </table>
-
- <inp2:m_include template="platform/elements/pagination" prefix="l" list_name="new_links"/>
- </inp2:m_RenderElement>
- <!-- // links in category -->
-
-</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/inlink/links/new_links.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/inlink/links/suggest_confirm.tpl
===================================================================
--- trunk/themes/default2007/inlink/links/suggest_confirm.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/links/suggest_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,
- inlink/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_SuggestLinkConfirm" templates="inlink/links/suggest_confirm" show_category="1"/>
-
- <!-- suggest link confirm -->
- <inp2:m_RenderElement design="content_box">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_SuggestLinkConfirm"/>
- </inp2:m_Capture>
-
- <inp2:m_phrase name="lu_text_SuggestLinkConfirm"/><br /><br />
- <a href="<inp2:m_Link template="inlink/my_account/my_links" m_cat_id="0"/>"><inp2:m_phrase name="lu_text_MyLinks"/></a>
- </inp2:m_RenderElement>
- <!-- // suggest link 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/inlink/links/suggest_confirm.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/inlink/links/suggest_link.tpl
===================================================================
--- trunk/themes/default2007/inlink/links/suggest_link.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/links/suggest_link.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,
- inlink/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_SuggestLink" templates="inlink/links/suggest_link" show_category="1"/>
-
- <!-- suggest link -->
- <inp2:m_RenderElement design="content_box">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_SuggestLink"/>
- </inp2:m_Capture>
-
- <inp2:m_if check="l_HasPermission" permissions="LINK.ADD|LINK.ADD.PENDING">
- <inp2:l_PresetFormFields/>
- <span class="field-required">*</span> <inp2:m_phrase name="lu_IndicatesRequired"/><br /><br />
-
- <inp2:m_if check="l_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/>" enctype="multipart/form-data">
- <table class="form-data fullwidth">
- <inp2:m_RenderElement name="inp_edit_box" prefix="l" field="Name" title="lu_fld_Name"/>
- <inp2:m_RenderElement name="inp_edit_box" prefix="l" field="Url" title="lu_fld_Url"/>
- <inp2:m_RenderElement name="inp_edit_textarea" prefix="l" field="Description" cols="30" rows="5" title="lu_fld_Description"/>
-
- <inp2:m_RenderElement name="inp_edit_image_upload" prefix="l" field="PrimaryImage" title="lu_fld_PrimaryImage"/>
- <inp2:m_RenderElement name="inp_edit_image_upload" prefix="l" field="Image1" title="lu_fld_Image1"/>
- <inp2:m_RenderElement name="inp_edit_image_upload" prefix="l" field="Image2" title="lu_fld_Image2" is_last="1"/>
-
- <inp2:m_RenderElement design="inp_edit_buttons">
- <input type="hidden" name="suggest_confirm_template" value="inlink/links/suggest_confirm"/>
- <input type="hidden" name="suggest_pending_confirm_template" value="inlink/links/suggest_pending_confirm"/>
- <input class="button" type="submit" name="events[l][OnCreate]" value="<inp2:m_phrase label="lu_btn_Create"/>"/>
- </inp2:m_RenderElement>
- </table>
- </form>
- <inp2:m_else/>
- <inp2:m_phrase name="lu_text_NoSuggestLinkPermission"/>
- </inp2:m_if>
- </inp2:m_RenderElement>
- <!-- // suggest link -->
-</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/inlink/links/suggest_link.tpl
___________________________________________________________________
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/themes/default2007/inlink/links/add_review_pending_confirm.tpl
===================================================================
--- trunk/themes/default2007/inlink/links/add_review_pending_confirm.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/links/add_review_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,
- inlink/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_AddLinkReviewPendingConfirm" templates="__default__,inlink/links/add_review_pending_confirm" show_category="1"/>
-
- <!-- add link review pending confirm -->
- <inp2:m_RenderElement design="content_box">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_AddLinkReviewPendingConfirm"/>
- </inp2:m_Capture>
-
- <inp2:m_phrase name="lu_text_AddLinkReviewPendingConfirm"/><br /><br />
- <a href="<inp2:l_LinkLink template="__default__"/>"><inp2:l_Field name="Name"/></a>
- </inp2:m_RenderElement>
- <!-- // add link review 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/inlink/links/add_review_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/inlink/links/modify_pending_confirm.tpl
===================================================================
--- trunk/themes/default2007/inlink/links/modify_pending_confirm.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/links/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,
- inlink/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_MyLinks,__item__,lu_title_ModifyLinkPendingConfirm" templates="platform/my_account/my_account,inlink/my_account/my_links,__default__,inlink/links/modify_pending_confirm"/>
-
- <!-- modify link pending confirm -->
- <inp2:m_RenderElement design="content_box">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_ModifyLinkPendingConfirm"/>
- </inp2:m_Capture>
-
- <inp2:m_phrase name="lu_text_ModifyLinkPendingConfirm"/><br /><br />
- <a href="<inp2:m_Link template="inlink/my_account/my_links" m_cat_id="0"/>"><inp2:m_phrase name="lu_text_MyLinks"/></a>
- </inp2:m_RenderElement>
- <!-- // modify link 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/inlink/links/modify_pending_confirm.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/inlink/links/suggest_pending_confirm.tpl
===================================================================
--- trunk/themes/default2007/inlink/links/suggest_pending_confirm.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/links/suggest_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,
- inlink/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_SuggestLinkPendingConfirm" templates="inlink/links/suggest_pending_confirm" show_category="1"/>
-
- <!-- suggest link pending confirm -->
- <inp2:m_RenderElement design="content_box">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_SuggestLinkPendingConfirm"/>
- </inp2:m_Capture>
-
- <inp2:m_phrase name="lu_text_SuggestLinkPendingConfirm"/><br /><br />
- <a href="<inp2:m_Link template="inlink/my_account/my_links" m_cat_id="0"/>"><inp2:m_phrase name="lu_text_MyLinks"/></a>
- </inp2:m_RenderElement>
- <!-- // suggest link 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/inlink/links/suggest_pending_confirm.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/inlink/links/pick_links.tpl
===================================================================
--- trunk/themes/default2007/inlink/links/pick_links.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/links/pick_links.tpl (nonexistent)
@@ -1,40 +0,0 @@
-<inp2:m_DefineElement name="sidebar">
- <inp2:m_RenderElements
- elements="
- platform/elements/side_boxes/login,
- platform/elements/side_boxes/search,
- inlink/elements/side_boxes/action_box,
- "
- design="blue_box"/>
-
- <inp2:m_RenderElement name="inlink/elements/side_boxes/new" design="blue_box" data_exists="1"/>
- <inp2:m_RenderElement name="inlink/elements/side_boxes/hot" design="blue_box" data_exists="1"/>
- <inp2:m_RenderElement name="inlink/elements/side_boxes/pop" design="blue_box" data_exists="1"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar" titles="lu_title_PickLinks" templates="inlink/links/pick_links"/>
-
- <!-- links in category -->
- <inp2:m_RenderElement design="content_box" data_exists="1" block_no_data="no_links">
- <inp2:l_InitList list_name="pick_links" m_cat_id="0" recursive="1" types="pick"/>
-
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_PickLinks"/>
- </inp2:m_Capture>
-
- <inp2:m_include template="inlink/designs/links"/>
-
- <inp2:m_include template="inlink/elements/sorting" list_name="pick_links"/>
-
- <table class="fullwidth item-listing">
- <inp2:l_ListLinks list_name="pick_links" render_as="link_element" direction="H"/>
- </table>
-
- <inp2:m_include template="platform/elements/pagination" prefix="l" list_name="pick_links"/>
- </inp2:m_RenderElement>
- <!-- // links in category -->
-
-</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/inlink/links/pick_links.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/default2007/inlink/links/add_review.tpl
===================================================================
--- trunk/themes/default2007/inlink/links/add_review.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/links/add_review.tpl (nonexistent)
@@ -1,87 +0,0 @@
-<inp2:m_RequireLogin login_template="platform/login/register" permissions="LINK.REVIEW|LINK.REVIEW.PENDING"/>
-<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="inlink/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="__item__,lu_title_Reviews" templates="__default__,inlink/links/add_review" show_category="1"/>
-
- <!-- add review -->
- <inp2:m_RenderElement design="content_box">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_LinkDetails"/>
- </inp2:m_Capture>
-
- <table width="100%">
- <tr>
- <td style="width: 120px;" valign="top">
- <inp2:l_Image render_as="image_element" primary="1" thumbnail="1" DefaultImage="platform/img/no_picture.gif" MaxWidth="120"/><br />
- </td>
- <td valign="top">
- Name: <a href="<inp2:l_LinkLink template="__default__"/>"><inp2:l_Field name="Name"/></a> (Owner: <inp2:l_Field name="CreatedById"/>)
-
- <inp2:m_if check="l_IsPending"><span class="pending-item"><strong><inp2:m_phrase name="lu_PendingItem"/></strong></span></inp2:m_if>
- <inp2:m_if check="l_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="l_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="l_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="l_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="l_IsFavorite"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/icon_favorite.gif" alt="<inp2:m_phrase name="lu_Favorite"/>"/></inp2:m_if>
- <br />
- Description:<br />
- <inp2:l_Field name="Description" nl2br="1"/>
- </td>
- </tr>
- </table>
- </inp2:m_RenderElement>
-
- <inp2:m_RenderElement design="content_box">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_ReviewThisLink"/>
- </inp2:m_Capture>
-
-
- <inp2:m_if check="l_HasPermission" permissions="LINK.REVIEW|LINK.REVIEW.PENDING">
- <inp2:m_if check="l-rev_AlreadyReviewed">
- <inp2:m_Phrase label="lu_ErrorAlreadyReviewed"/>
- <table>
- <inp2:l-rev_PrintList render_as="review_element" type="current_user"/>
- </table>
- <inp2:m_include template="platform/elements/pagination" prefix="l-rev"/>
- <inp2:m_else/>
- <inp2:l-rev_PresetFormFields/>
- <span class="field-required">*</span> <inp2:m_phrase name="lu_IndicatesRequired"/><br /><br />
-
- <inp2:m_if check="l-rev_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_radio" prefix="l-rev" field="Rating" title="lu_fld_Rating"/>
- <inp2:m_RenderElement name="inp_edit_textarea" prefix="l-rev" field="ReviewText" rows="8" cols="40" title="lu_fld_ReviewText" is_last="1"/>
-
- <inp2:m_RenderElement design="inp_edit_buttons">
- <input type="hidden" name="success_template" value="inlink/links/add_review_confirm" />
- <input type="hidden" name="success_pending_template" value="inlink/links/add_review_pending_confirm" />
- <input class="button" type="submit" name="events[l-rev][OnCreate]" value="<inp2:m_phrase label="lu_btn_Create"/>" />
- </inp2:m_RenderElement>
- </table>
- </form>
- </inp2:m_if>
- <inp2:m_else/>
- <inp2:m_phrase name="lu_text_NoLinkReviewPermission"/>
- </inp2:m_if>
- </inp2:m_RenderElement>
- <!-- // add review -->
-</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/inlink/links/add_review.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/inlink/links/enhancements/enhance_confirm.tpl
===================================================================
--- trunk/themes/default2007/inlink/links/enhancements/enhance_confirm.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/links/enhancements/enhance_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,
- inlink/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_MyLinks,__item__,lu_title_EnhancementConfirmation" templates="platform/my_account/my_account,inlink/my_account/my_links,__default__,inlink/links/enhancements/enhance_confirm"/>
-
- <!-- enhance link confirm -->
- <inp2:m_RenderElement design="content_box">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_EnhancementConfirmation"/>
- </inp2:m_Capture>
-
- <inp2:m_phrase name="lu_text_EnhancementConfirmation"/><br /><br />
- <a href="<inp2:m_Link template="inlink/my_account/my_links" m_cat_id="0"/>"><inp2:m_Phrase name="lu_MyLinks"/></a>
- </inp2:m_RenderElement>
- <!-- // enhance link 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/inlink/links/enhancements/enhance_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/inlink/links/enhancements/enhance_link.tpl
===================================================================
--- trunk/themes/default2007/inlink/links/enhancements/enhance_link.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/links/enhancements/enhance_link.tpl (nonexistent)
@@ -1,74 +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,
- inlink/elements/side_boxes/action_box,
- "
- design="blue_box"/>
-
- <inp2:m_RenderElement name="inlink/elements/side_boxes/new" design="blue_box" data_exists="1"/>
- <inp2:m_RenderElement name="inlink/elements/side_boxes/hot" design="blue_box" data_exists="1"/>
- <inp2:m_RenderElement name="inlink/elements/side_boxes/pop" design="blue_box" data_exists="1"/>
- <inp2:m_RenderElement name="inlink/elements/side_boxes/pick" design="blue_box" data_exists="1"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar" titles="lu_title_MyAccount,lu_title_MyLinks,__item__,lu_title_EnhanceLink" templates="platform/my_account/my_account,inlink/my_account/my_links,__default__,inlinks/links/enhancements/enhance_link"/>
-
- <!-- links in category -->
- <inp2:m_RenderElement design="content_box" data_exists="1" block_no_data="no_enhancements">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_EnhanceLink"/>
- </inp2:m_Capture>
-
- <inp2:m_RenderElement name="subsection" title="lu_ChooseListingType"/>
-
- <inp2:m_include template="inlink/designs/enhancements"/>
-
- <inp2:m_if check="m_ModuleEnabled" module="In-Commerce">
- <inp2:m_Phrase label="lu_notice_SubscriptionAddToCart" /><br /><br />
- </inp2:m_if>
-
- <form method="POST" action="<inp2:m_Link pass="all,l,ls"/>">
- <table class="fullwidth">
- <tr>
- <td colspan="<inp2:m_if check="m_ModuleEnabled" module="In-Commerce">4<inp2:m_else/>3</inp2:m_if>">
- <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 colspan="2">
- <inp2:m_Phrase name="lu_col_Name"/>
- </td>
- <td>
- <inp2:m_Phrase name="lu_col_Duration"/>
- </td>
-
- <inp2:m_if check="m_ModuleEnabled" module="In-Commerce">
- <td>
- <inp2:m_Phrase name="lu_col_Price"/>
- </td>
- </inp2:m_if>
- </tr>
- <inp2:lst_PrintList render_as="listing_type_element"/>
- </table>
-
- <table class="fullwidth">
- <inp2:m_RenderElement design="inp_edit_buttons">
- <input type="submit" class="button" name="events[ls][OnRequestEnhancement]" value="<inp2:m_phrase label="lu_btn_EnhanceLink" />"/>
- <input type="submit" class="button" name="events[ls][OnCancel]" value="<inp2:m_Phrase label="lu_btn_Cancel" />"/>
-
- <input type="hidden" name="shop_cart_template" value="in-commerce/shop_cart/shop_cart" />
- <input type="hidden" name="success_template" value="inlink/links/enhancements/enhance_confirm" />
- <input type="hidden" name="cancel_template" value="inlink/my_account/my_links" />
- </inp2:m_RenderElement>
- </table>
- </form>
- </inp2:m_RenderElement>
- <!-- // links in category -->
-
-</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/inlink/links/enhancements/enhance_link.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/inlink/links/enhancements/extend_enhancement.tpl
===================================================================
--- trunk/themes/default2007/inlink/links/enhancements/extend_enhancement.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/links/enhancements/extend_enhancement.tpl (nonexistent)
@@ -1,64 +0,0 @@
-<inp2:m_RequireLogin template="platform/login/register"/>
-
-<inp2:m_DefineElement name="sidebar">
- <inp2:m_RenderElements
- elements="
- platform/elements/side_boxes/login,
- platform/elements/side_boxes/search,
- inlink/elements/side_boxes/action_box,
- "
- design="blue_box"/>
-
- <inp2:m_RenderElement name="inlink/elements/side_boxes/new" design="blue_box" data_exists="1"/>
- <inp2:m_RenderElement name="inlink/elements/side_boxes/hot" design="blue_box" data_exists="1"/>
- <inp2:m_RenderElement name="inlink/elements/side_boxes/pop" design="blue_box" data_exists="1"/>
- <inp2:m_RenderElement name="inlink/elements/side_boxes/pick" design="blue_box" data_exists="1"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar" titles="lu_title_MyAccount,lu_title_MyLinks,__item__,lu_title_ExtendCancelEnhancement" templates="platform/my_account/my_account,inlink/my_account/my_links,__default__,inlinks/links/enhancements/extend_enhancement"/>
-
- <!-- extend/cancel enhancment -->
- <inp2:m_RenderElement design="content_box">
-
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_ExtendCancelEnhancement"/>
- </inp2:m_Capture>
-
- <table>
- <tr>
- <td>
- <strong><inp2:m_Phrase label="lu_fld_ListingTypeName" /></strong>:
- </td>
- <td>
- <inp2:l_ListingTypeField name="Name" />
- </td>
- </tr>
- <tr>
- <td>
- <strong><inp2:m_Phrase label="lu_fld_ListingExpirationDate" /></strong>:
- </td>
- <td>
- <inp2:l_EnhancementField name="ExpiresOn_date" />
- </td>
- </tr>
- </table>
- <br />
-
- <inp2:m_if check="l_IsRenewalPeriod">
- <a href="<inp2:l_LinkLink template="inlink/edit_link/extend_enhancement_confirmation"/>"><inp2:m_Phrase label="lu_btn_ExtendEnhancement" /></a><br />
- <br />
- </inp2:m_if>
-
- <inp2:m_if check="l_IsReocurringEnhancement">
- <inp2:m_Phrase label="lu_EnhancementSetToRenewOn" /> <inp2:l_EnhancementField name="ExpiresOn_date" />,
- <a href="<inp2:l_LinkLink template="inlink/edit_link/link_cancel_confirm"/>"><inp2:m_Phrase label="lu_ClickHere" /></a>
- <inp2:m_Phrase label="lu_ToCancelEnhancement" />
- <inp2:m_else />
- <input type="button" class="button" onclick="redirect('<inp2:l_LinkLink template="inlink/edit_link/link_cancel_confirm"/>');" value="<inp2:m_Phrase label="lu_btn_CancelEnhancement" />"/>
- </inp2:m_if>
- </inp2:m_RenderElement>
- <!-- // extend/cancel enhancment -->
-</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/inlink/links/enhancements/extend_enhancement.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/inlink/links/enhancements/enhancement_details.tpl
===================================================================
--- trunk/themes/default2007/inlink/links/enhancements/enhancement_details.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/links/enhancements/enhancement_details.tpl (nonexistent)
@@ -1,26 +0,0 @@
-<inp2:m_DefineElement name="content">
- <!-- enhancement details -->
- <inp2:m_RenderElement design="content_box">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_EnhancementDetails"/>
- </inp2:m_Capture>
-
- <strong><inp2:m_Phrase name="lu_fld_Name"/></strong>:
- <inp2:lst_Field name="Name" /><br />
-
- <inp2:m_if check="lst_Field" name="Description">
- <inp2:lst_Field name="Description"/><br />
- </inp2:m_if>
-
- <strong><inp2:m_Phrase name="lu_fld_Duration"/></strong>:
- <inp2:lst_Field name="Duration" /> <inp2:lst_Field name="DurationType" /><br />
-
- <inp2:m_if check="m_ModuleEnabled" module="In-Commerce">
- <strong><inp2:m_Phrase name="lu_fld_Price"/></strong>:
- <inp2:lst_Field name="Price" currency="selected"/><br />
- </inp2:m_if>
- </inp2:m_RenderElement>
- <!-- // enhancement details -->
-</inp2:m_DefineElement>
-
-<inp2:m_include template="platform/designs/popup_design" pass_params="1"/>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inlink/links/enhancements/enhancement_details.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/inlink/links/visit_link.tpl
===================================================================
--- trunk/themes/default2007/inlink/links/visit_link.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/links/visit_link.tpl (nonexistent)
@@ -1 +0,0 @@
-<inp2:l_FollowLocation field="Url"/>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inlink/links/visit_link.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/inlink/links/add_review_confirm.tpl
===================================================================
--- trunk/themes/default2007/inlink/links/add_review_confirm.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/links/add_review_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,
- inlink/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_AddLinkReviewConfirm" templates="__default__,inlink/links/add_review_confirm" show_category="1"/>
-
- <!-- link add review confirm -->
- <inp2:m_RenderElement design="content_box">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_AddLinkReviewConfirm"/>
- </inp2:m_Capture>
-
- <inp2:m_phrase name="lu_text_AddLinkReviewConfirm"/><br /><br />
- <a href="<inp2:l_LinkLink template="__default__"/>"><inp2:l_Field name="Name"/></a>
- </inp2:m_RenderElement>
- <!-- // link add review 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/inlink/links/add_review_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/inlink/links/modify_confirm.tpl
===================================================================
--- trunk/themes/default2007/inlink/links/modify_confirm.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/links/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,
- inlink/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_MyLinks,__item__,lu_title_ModifyLinkConfirm" templates="platform/my_account/my_account,inlink/my_account/my_links,__default__,inlink/links/modify_confirm"/>
-
- <!-- modify link confirm -->
- <inp2:m_RenderElement design="content_box">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_ModifyLinkConfirm"/>
- </inp2:m_Capture>
-
- <inp2:m_phrase name="lu_text_ModifyLinkConfirm"/><br /><br />
- <a href="<inp2:m_Link template="inlink/my_account/my_links" m_cat_id="0"/>"><inp2:m_phrase name="lu_text_MyLinks"/></a>
- </inp2:m_RenderElement>
- <!-- // modify link 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/inlink/links/modify_confirm.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/inlink/links/search_results.tpl
===================================================================
--- trunk/themes/default2007/inlink/links/search_results.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/links/search_results.tpl (nonexistent)
@@ -1,38 +0,0 @@
-<inp2:m_DefineElement name="sidebar">
- <inp2:m_RenderElements
- elements="
- platform/elements/side_boxes/login,
- platform/elements/side_boxes/search,
- inlink/elements/side_boxes/action_box,
- "
- design="blue_box"/>
-
- <inp2:m_RenderElement name="inlink/elements/side_boxes/new" design="blue_box" data_exists="1"/>
- <inp2:m_RenderElement name="inlink/elements/side_boxes/pop" design="blue_box" data_exists="1"/>
- <inp2:m_RenderElement name="inlink/elements/side_boxes/pick" design="blue_box" data_exists="1"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar" titles="lu_title_LinkSearchResults" templates="inlink/search/search_results"/>
-
- <inp2:m_RenderElement design="content_box">
- <inp2:l_InitList list_name="link_search_results" types="search" parent_cat_id="any" recursive="1"/>
-
- <inp2:m_Capture to_var="header">
- <inp2:m_Phrase label="lu_title_LinkSearchResults"/>
- </inp2:m_Capture>
-
- <inp2:m_include template="inlink/elements/sorting" list_name="link_search_results"/>
-
- <inp2:m_include template="inlink/designs/links"/>
- <inp2:m_include template="platform/designs/search_results"/>
-
- <table class="fullwidth item-listing">
- <inp2:l_ListLinks list_name="link_search_results" render_as="link_element" show_relevance="1"/>
- </table>
-
- <inp2:m_include template="platform/elements/pagination" prefix="l" list_name="link_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/inlink/links/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/inlink/links/hot_links.tpl
===================================================================
--- trunk/themes/default2007/inlink/links/hot_links.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/links/hot_links.tpl (nonexistent)
@@ -1,40 +0,0 @@
-<inp2:m_DefineElement name="sidebar">
- <inp2:m_RenderElements
- elements="
- platform/elements/side_boxes/login,
- platform/elements/side_boxes/search,
- inlink/elements/side_boxes/action_box,
- "
- design="blue_box"/>
-
- <inp2:m_RenderElement name="inlink/elements/side_boxes/new" design="blue_box" data_exists="1"/>
- <inp2:m_RenderElement name="inlink/elements/side_boxes/pop" design="blue_box" data_exists="1"/>
- <inp2:m_RenderElement name="inlink/elements/side_boxes/pick" design="blue_box" data_exists="1"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar" titles="lu_title_HotLinks" templates="inlink/links/hot_links"/>
-
- <!-- links in category -->
- <inp2:m_RenderElement design="content_box" data_exists="1" block_no_data="no_links">
- <inp2:l_InitList list_name="hot_links" m_cat_id="0" recursive="1" types="hot"/>
-
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_HotLinks"/>
- </inp2:m_Capture>
-
- <inp2:m_include template="inlink/designs/links"/>
-
- <inp2:m_include template="inlink/elements/sorting" list_name="hot_links"/>
-
- <table class="fullwidth item-listing">
- <inp2:l_ListLinks list_name="hot_links" render_as="link_element" direction="H"/>
- </table>
-
- <inp2:m_include template="platform/elements/pagination" prefix="l" list_name="hot_links"/>
- </inp2:m_RenderElement>
- <!-- // links in category -->
-
-</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/inlink/links/hot_links.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/default2007/inlink/my_account/my_links.tpl
===================================================================
--- trunk/themes/default2007/inlink/my_account/my_links.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/my_account/my_links.tpl (nonexistent)
@@ -1,39 +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,
- inlink/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_MyLinks" templates="platform/my_account/my_account,inlink/my_account/my_links"/>
-
- <!-- my links -->
- <inp2:m_RenderElement design="content_box" data_exists="1" block_no_data="no_links">
- <inp2:l_InitList list_name="my_links" types="my_items" except="displayed" parent_cat_id="0" recursive="1"/>
-
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_MyLinks"/>
- </inp2:m_Capture>
-
- <inp2:m_include template="inlink/designs/links"/>
-
- <inp2:m_include template="inlink/elements/sorting" list_name="my_links"/>
-
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="1" height="10" alt="" /><br />
-
- <table class="item-listing fullwidth">
- <inp2:l_ListLinks list_name="my_links" render_as="my_link_element" direction="H"/>
- </table>
-
- <inp2:m_include template="platform/elements/pagination" prefix="l" list_name="my_links"/>
- </inp2:m_RenderElement>
- <!-- // my links -->
-
-</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/inlink/my_account/my_links.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/themes/default2007/inlink/my_account/my_items.tpl
===================================================================
--- trunk/themes/default2007/inlink/my_account/my_items.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/my_account/my_items.tpl (nonexistent)
@@ -1,9 +0,0 @@
-<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="inlink/my_account/my_links" title="lu_MyLinks"/>
- </inp2:m_if>
-
- <inp2:m_if check="m_ParamEquals" name="place" value="contentbox">
- <inp2:m_RenderElement name="my_account_element" template="inlink/my_account/my_links" title="lu_MyLinks" description="lu_description_MyLinks"/>
- </inp2:m_if>
-</inp2:m_if>
\ No newline at end of file
Property changes on: trunk/themes/default2007/inlink/my_account/my_items.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/inlink/index.tpl
===================================================================
--- trunk/themes/default2007/inlink/index.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/index.tpl (nonexistent)
@@ -1,45 +0,0 @@
-<inp2:m_DefineElement name="sidebar">
-
- <inp2:m_RenderElements
- elements="
- platform/elements/side_boxes/login,
- platform/elements/side_boxes/search,
- inlink/elements/side_boxes/action_box,
- "
- design="blue_box"/>
-
- <inp2:m_RenderElement name="inlink/elements/side_boxes/new" design="blue_box" data_exists="1"/>
- <inp2:m_RenderElement name="inlink/elements/side_boxes/pop" design="blue_box" data_exists="1"/>
- <inp2:m_RenderElement name="inlink/elements/side_boxes/hot" design="blue_box" data_exists="1"/>
- <inp2:m_RenderElement name="inlink/elements/side_boxes/pick" design="blue_box" data_exists="1"/>
-
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar"/>
-
- <inp2:m_include template="platform/elements/content_boxes/sub_categories"/>
-
- <!-- links in category -->
- <inp2:m_RenderElement design="content_box" data_exists="1" block_no_data="no_links">
- <inp2:l_InitList list_name="items_in_current_cat" except="displayed" />
-
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_Links"/>
- </inp2:m_Capture>
-
- <inp2:m_include template="inlink/designs/links"/>
-
- <inp2:m_include template="inlink/elements/sorting" list_name="items_in_current_cat"/>
-
- <table class="fullwidth item-listing">
- <inp2:l_ListLinks list_name="items_in_current_cat" render_as="link_element" direction="H"/>
- </table>
-
- <inp2:m_include template="platform/elements/pagination" prefix="l" list_name="items_in_current_cat"/>
- </inp2:m_RenderElement>
- <!-- // links in category -->
-
-</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/inlink/index.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.19
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inlink/detail.tpl
===================================================================
--- trunk/themes/default2007/inlink/detail.tpl (revision 12828)
+++ trunk/themes/default2007/inlink/detail.tpl (nonexistent)
@@ -1,113 +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="inlink/elements/side_boxes/action_box" item_actions="1" design="blue_box"/>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="additional_image_element">
- <td>
- <a href="<inp2:ImageSrc MaxWidth="fullsize"/>" target="_blank">
- <img src="<inp2:m_param name="img_path"/>" title="<inp2:m_param name="alt"/>" alt="<inp2:m_param name="alt"/>" <inp2:m_param name="img_size"/> border="0" /><br />
- </a>
- </td>
- <inp2:m_if check="m_Param" name="not_last">
- <td>
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/s.gif" width="8" height="1" alt="" />
- </td>
- </inp2:m_if>
-</inp2:m_DefineElement>
-
-<inp2:m_DefineElement name="content">
- <inp2:m_include template="platform/elements/navigation_bar" titles="__item__,lu_title_LinkDetails" templates="__default__,inlink/detail" show_category="1"/>
-
- <!-- link details -->
- <inp2:m_RenderElement design="content_box">
-
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_title_LinkDetails"/>
- </inp2:m_Capture>
-
- <table class="fullwidth">
- <tr>
- <td width="25" valign="top">
- <img src="<inp2:m_TemplatesBase module="In-Portal"/>img/link_icon.gif" width="16" height="23" alt="" />
- </td>
- <td valign="top">
-
- <span class="text-title"><inp2:l_Field name="Name"/></span>
-
- <inp2:m_if check="l_IsPending"><span class="pending-item"><strong><inp2:m_phrase name="lu_PendingItem"/></strong></span></inp2:m_if>
- <inp2:m_if check="l_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="l_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="l_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="l_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="l_IsFavorite"><img src="<inp2:m_TemplatesBase module="In-Portal"/>img/icon_favorite.gif" alt="<inp2:m_phrase name="lu_Favorite"/>"/></inp2:m_if>
- <inp2:l_VotesIndicator render_as="rating_element"/>
-
- <br />
-
- <span class="item-statistics">
- <inp2:m_phrase name="lu_Added"/>: <inp2:l_Field name="CreatedOn" format="_regional_DateFormat"/>,
- <inp2:m_phrase name="lu_Hits"/>: <inp2:l_Field name="Hits"/>,
- <inp2:m_phrase name="lu_Rating"/>: <inp2:l_Field name="CachedRating"/>,
- <inp2:m_phrase name="lu_Reviews"/>: <inp2:l_Field name="CachedReviewsQty"/>,
- <inp2:m_phrase name="lu_Votes"/>: <inp2:l_Field name="CachedVotesQty"/>
- </span>
- </td>
- </tr>
- </table>
-
- <table>
- <tr>
- <td class="link-picture-padding" style="padding-left:25px" valign="top">
- <a href="<inp2:l_ImageSrc MaxWidth="fullsize" DefaultImage="platform/img/no_picture.gif"/>" target="_blank">
- <inp2:l_Image render_as="image_element" Primary="1" MaxWidth="thumbnail" DefaultImage="platform/img/no_picture.gif"/><br />
- </a>
- </td>
- <td class="link-text-padding" valign="top">
- <input type="button" class="button" value="<inp2:m_phrase name="lu_btn_VisitLink"/>" onclick="redirect('<inp2:l_LinkLink template="inlink/links/visit_link"/>');"/><br /><br />
-
- <inp2:l_Field name="Description" nl2br="1"/>
- </td>
- </tr>
- </table>
- <br />
-
- <inp2:m_if check="l_HasAdditionalImages">
- <inp2:m_RenderElement name="subsection" title="lu_section_AdditionalImages"/>
- <table>
- <tr>
- <inp2:l_ListImages render_as="additional_image_element" types="additional" per_page="-1" no_table="1" MaxWidth="thumbnail" DefaultImage="platform/img/no_picture.gif"/>
- </tr>
- </table>
- </inp2:m_if>
-
- </inp2:m_RenderElement>
- <!-- // link details -->
-
- <!-- link reviews -->
- <inp2:m_DefineElement name="no_reviews">
- <inp2:m_phrase name="lu_NoReviews"/>
- </inp2:m_DefineElement>
-
- <inp2:m_RenderElement design="content_box" data_exists="1" block_no_data="no_reviews">
- <inp2:m_Capture to_var="header">
- <inp2:m_phrase name="lu_section_Reviews"/> (<inp2:l-rev_TotalRecords/>)
- </inp2:m_Capture>
-
- <table>
- <inp2:l-rev_PrintList render_as="review_element"/>
- </table>
-
- <inp2:m_include template="platform/elements/pagination" prefix="l-rev"/>
- </inp2:m_RenderElement>
- <!-- // link reviews -->
-
-</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/inlink/detail.tpl
___________________________________________________________________
Deleted: cvs2svn:cvs-rev
## -1 +0,0 ##
-1.25
\ No newline at end of property
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: trunk/themes/default2007/inlink/inc/styles.css
===================================================================
--- trunk/themes/default2007/inlink/inc/styles.css (revision 12828)
+++ trunk/themes/default2007/inlink/inc/styles.css (nonexistent)
@@ -1,10 +0,0 @@
-/* --- Listing Element Styles --- */
-.link-picture-padding {
- padding: 20px 5px 20px 20px;
- vertical-align: top;
- width: 120px;
-}
-
-.link-text-padding {
- padding: 20px 5px;
-}
\ No newline at end of file
Property changes on: trunk/themes/default2007/inlink/inc/styles.css
___________________________________________________________________
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/inlink/inc/script.js
===================================================================
Index: trunk/themes/default2007/inlink/inc/script.js
===================================================================
--- trunk/themes/default2007/inlink/inc/script.js (revision 12828)
+++ trunk/themes/default2007/inlink/inc/script.js (nonexistent)
Property changes on: trunk/themes/default2007/inlink/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/inlink/img/menu_links.gif
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: trunk/themes/default2007/inlink/img/menu_links.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