diff --git a/typo3/class.db_list.inc b/typo3/class.db_list.inc index deec38772897f36e1763d4e7fdf37d6588b6e9af..0ad9135f7b839d10b874f2424bf698926ea174b6 100644 --- a/typo3/class.db_list.inc +++ b/typo3/class.db_list.inc @@ -25,18 +25,9 @@ * This copyright notice MUST APPEAR in all copies of the script! ***************************************************************/ -/** - * Include file extending t3lib_recordList - * Shared between Web>List (db_list.php) and Web>Page (sysext/cms/layout/db_layout.php) - * - * Revised for TYPO3 3.6 December/2003 by Kasper SkÃ¥rhøj - * XHTML compliant - * - * @author Kasper SkÃ¥rhøj <kasperYYYY@typo3.com> - */ - /** * Child class for rendering of Web > List (not the final class. see class.db_list_extra) + * Shared between Web>List (db_list.php) and Web>Page (sysext/cms/layout/db_layout.php) * * @author Kasper SkÃ¥rhøj <kasperYYYY@typo3.com> * @package TYPO3 @@ -958,10 +949,4 @@ class recordList extends t3lib_recordList { } } } - - -if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['typo3/class.db_list.inc'])) { - include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['typo3/class.db_list.inc']); -} - ?> \ No newline at end of file diff --git a/typo3/class.db_list_extra.inc b/typo3/class.db_list_extra.inc index 57758c7a9c8a3c777cde86fd8cb828c0ea0b6f3f..ac928928e400fb00c81f5dcc4740fa95574241db 100644 --- a/typo3/class.db_list_extra.inc +++ b/typo3/class.db_list_extra.inc @@ -25,16 +25,6 @@ * This copyright notice MUST APPEAR in all copies of the script! ***************************************************************/ -/** - * Include file extending recordList which extended t3lib_recordList - * Used specifically for the Web>List module (db_list.php) - * - * Revised for TYPO3 3.6 December/2003 by Kasper SkÃ¥rhøj - * XHTML compliant - * - * @author Kasper SkÃ¥rhøj <kasperYYYY@typo3.com> - */ - /** * Class for rendering of Web>List module * @@ -1838,9 +1828,4 @@ class localRecordList extends recordList { exit; } } - -if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['typo3/class.db_list_extra.inc'])) { - include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['typo3/class.db_list_extra.inc']); -} - ?> \ No newline at end of file diff --git a/typo3/class.file_list.inc b/typo3/class.file_list.inc index 7ab575dcce6dfe93fb1222dfa8f14df636f2a829..afd93c5b21e5f868bcedcc4f569c99bd76d69bdb 100644 --- a/typo3/class.file_list.inc +++ b/typo3/class.file_list.inc @@ -25,14 +25,6 @@ * This copyright notice MUST APPEAR in all copies of the script! ***************************************************************/ -/** - * Include file extending t3lib_recordList - * - * Revised for TYPO3 3.6 2/2003 by Kasper SkÃ¥rhøj - * - * @author Kasper SkÃ¥rhøj <kasperYYYY@typo3.com> - */ - /** * Class for rendering of File>Filelist * @@ -763,9 +755,4 @@ class fileList extends t3lib_recordList { return count($infoData) ? '<a href="#" onclick="' . htmlspecialchars('top.launchView( \'_FILE\', \'' . $fileOrFolderObject->getCombinedIdentifier() . '\'); return false;') . '" title="' . htmlspecialchars(t3lib_div::fixed_lgd_cs(implode(' / ', $infoData), 100)) . '">' . count($infoData) . '</a>' : '-'; } } - -if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['typo3/class.file_list.inc'])) { - include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['typo3/class.file_list.inc']); -} - ?> \ No newline at end of file diff --git a/typo3/sysext/cms/tslib/media/scripts/fe_adminLib.inc b/typo3/sysext/cms/tslib/media/scripts/fe_adminLib.inc index aa409f5dea54d002212b70d512f1b83bc6f4f64f..9893e06f3af7f8dab7c650a98f1ebc8b614717ec 100755 --- a/typo3/sysext/cms/tslib/media/scripts/fe_adminLib.inc +++ b/typo3/sysext/cms/tslib/media/scripts/fe_adminLib.inc @@ -24,15 +24,10 @@ * * This copyright notice MUST APPEAR in all copies of the script! ***************************************************************/ + /** * FE admin lib * - * Revised for TYPO3 3.6 June/2003 by Kasper SkÃ¥rhøj - * - * @author Kasper SkÃ¥rhøj <kasperYYYY@typo3.com> - */ - -/** * This library provides a HTML-template file based framework for Front End creating/editing/deleting records authenticated by email or fe_user login. * It is used in the extensions "direct_mail_subscription" and "feuser_admin" (and the deprecated(!) static template "plugin.feadmin.dmailsubscription" and "plugin.feadmin.fe_users" which are the old versions of these two extensions) * Further the extensions "t3consultancies" and "t3references" also uses this library but contrary to the "direct_mail_subscription" and "feuser_admin" extensions which relies on external HTML templates which must be adapted these two extensions delivers the HTML template code from inside. @@ -1585,9 +1580,4 @@ class user_feAdmin { return $var; } } - - -if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['media/scripts/fe_adminLib.inc'])) { - include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['media/scripts/fe_adminLib.inc']); -} ?> \ No newline at end of file diff --git a/typo3/sysext/cms/tslib/media/scripts/plaintextLib.inc b/typo3/sysext/cms/tslib/media/scripts/plaintextLib.inc index 3f84ca50fd313bc0b9d2c498619c60364f066de3..edb2b0363d2fa23410d4535de6a8e39b4fc71d8f 100644 --- a/typo3/sysext/cms/tslib/media/scripts/plaintextLib.inc +++ b/typo3/sysext/cms/tslib/media/scripts/plaintextLib.inc @@ -24,15 +24,10 @@ * * This copyright notice MUST APPEAR in all copies of the script! ***************************************************************/ + /** * Generating plain text content of content elements for Direct Mails * - * Revised for TYPO3 3.6 June/2003 by Kasper SkÃ¥rhøj - * - * @author Kasper SkÃ¥rhøj <kasperYYYY@typo3.com> - */ - -/** * Alternative rendering of content elements for Plain Text emails. That means text-only output. No HTML at all. Used by the Direct Mail extension. * Normally the plain text output should appear with type=99. * To use this library you can include the static template "plugin.alt.plaintext" @@ -632,8 +627,4 @@ class user_plaintext { return $this->cObj->getCurrentVal(); } } - -if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['media/scripts/plaintextLib.inc'])) { - include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['media/scripts/plaintextLib.inc']); -} ?> \ No newline at end of file diff --git a/typo3/sysext/cms/tslib/media/scripts/wapversionLib.inc b/typo3/sysext/cms/tslib/media/scripts/wapversionLib.inc index 2f99d62ee6f89f711e7a18fe60bb4a60c5f713f2..1b37c57cda577d8c10679cbb5d5f9469b655d406 100755 --- a/typo3/sysext/cms/tslib/media/scripts/wapversionLib.inc +++ b/typo3/sysext/cms/tslib/media/scripts/wapversionLib.inc @@ -26,14 +26,8 @@ ***************************************************************/ /** - * Contains class for creating WAP pages for TYPO3 + * Class for creating WAP pages for TYPO3 * - * Revised for TYPO3 3.6 June/2003 by Kasper SkÃ¥rhøj - * - * @author Kasper SkÃ¥rhøj <kasperYYYY@typo3.com> - */ - -/** * Class that creates the current page and content element records as an WML structure using the library "t3lib_xml" * It is demonstrated in use in the testsite package on page "59" * The static template "plugin.alt.wap" is used to trigger this WML creation as well. That template contains this set of TypoScript lines which triggers the WML creation and disables all regular HTML headers @@ -383,50 +377,4 @@ class user_wapversion { return $newMenu; } } - -// AND HERE just some debugging content: Basically a valid WML deck. - - /* -switch($id) { - case 1: - <wml> - <card id="Hallo" ontimer="#Login" title="wapportal.dk"> - <timer value="35"/> - <p> - <img src="/images/logo.wbmp" alt="WAPPORTAL"/> - asf asdf asdf - </p> - </card> - <card id="Login" title="wapportal.dk" newcontext="true"> - <p>Mobil nr: - <input name="Login" title="Mobil nr:" value="" format="*N" size="15"/>Kodeord: - <input name="Passwd" title="Kodeord:" value="" type="password" format="*N" size="12"/> - <anchor>Login !<go href="/wap/portal/DeckPortal/menu.wml?sid=FGBNRru&rnd=107915&login=$(Login:u)&pwd=$(Passwd:u)"/></anchor> - <br/> - <anchor>Gæst<go href="/wap/portal/DeckPortal/menu.wml?sid=FGBNRru&rnd=107916&login=visitor&pwd=visitor"></go></anchor> - </p> - </card> - </wml> - break; - default: - <wml> - <template> - <do type="accept" label="Back"><prev/></do> - </template> - <card id="index1" title="Hovedside"> - <p>Hej Kasper. - Dette er noget - <img src="/images/logo.wbmp" alt="WAPPORTAL"/> - tekst.</p> - - </card> - </wml> - break; -} -*/ - -if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['media/scripts/wapversionLib.inc'])) { - include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['media/scripts/wapversionLib.inc']); -} - ?> \ No newline at end of file diff --git a/typo3/sysext/cms/tslib/media/scripts/xmlversionLib.inc b/typo3/sysext/cms/tslib/media/scripts/xmlversionLib.inc index 98ee721d7c54d443b8ded15f74ae05bd4f6fb242..805058bef975e5bed72931237c020606e57f1444 100644 --- a/typo3/sysext/cms/tslib/media/scripts/xmlversionLib.inc +++ b/typo3/sysext/cms/tslib/media/scripts/xmlversionLib.inc @@ -28,12 +28,6 @@ /** * Example class showing how one could make XML export of page content elements in TYPO3 * - * Revised for TYPO3 3.6 June/2003 by Kasper SkÃ¥rhøj - * - * @author Kasper SkÃ¥rhøj <kasperYYYY@typo3.com> - */ - -/** * Class that creates the current page and content element records as an XML structure using the library "t3lib_xml" * It is demonstrated in use in the testsite package on page "59" * The static template "plugin.alt.xml" is used to trigger this XML creation as well. That template contains this set of TypoScript lines which triggers the XML creation and disables all regular HTML headers @@ -111,8 +105,4 @@ class user_xmlversion { } } } - -if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['media/scripts/xmlversionLib.inc'])) { - include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['media/scripts/xmlversionLib.inc']); -} ?> \ No newline at end of file diff --git a/typo3/sysext/statictemplates/media/scripts/fe_adminLib.inc b/typo3/sysext/statictemplates/media/scripts/fe_adminLib.inc index 5b2b4431cc982a9451d787c110fb72dd0afe1c12..19b2fa373402cd8f54c40cfe3681134e3bc1f12a 100644 --- a/typo3/sysext/statictemplates/media/scripts/fe_adminLib.inc +++ b/typo3/sysext/statictemplates/media/scripts/fe_adminLib.inc @@ -24,14 +24,10 @@ * * This copyright notice MUST APPEAR in all copies of the script! ***************************************************************/ + /** * FE admin lib * - * Revised for TYPO3 3.6 June/2003 by Kasper SkÃ¥rhøj - * - * @author Kasper SkÃ¥rhøj <kasperYYYY@typo3.com> - */ -/** * This library provides a HTML-template file based framework for Front End creating/editing/deleting records authenticated by email or fe_user login. * It is used in the extensions "direct_mail_subscription" and "feuser_admin" (and the deprecated(!) static template "plugin.feadmin.dmailsubscription" and "plugin.feadmin.fe_users" which are the old versions of these two extensions) * Further the extensions "t3consultancies" and "t3references" also uses this library but contrary to the "direct_mail_subscription" and "feuser_admin" extensions which relies on external HTML templates which must be adapted these two extensions delivers the HTML template code from inside. @@ -1751,9 +1747,4 @@ class user_feAdmin { return $var; } } - - -if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['media/scripts/fe_adminLib.inc'])) { - include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['media/scripts/fe_adminLib.inc']); -} ?> \ No newline at end of file diff --git a/typo3/sysext/statictemplates/media/scripts/plaintextLib.inc b/typo3/sysext/statictemplates/media/scripts/plaintextLib.inc index 2719e22d060fef66fcc9f72c6cdfcdecf4fed31b..cb3ed2b154fdc8e7c2ba62e3809f8d48312d6dc4 100644 --- a/typo3/sysext/statictemplates/media/scripts/plaintextLib.inc +++ b/typo3/sysext/statictemplates/media/scripts/plaintextLib.inc @@ -24,17 +24,10 @@ * * This copyright notice MUST APPEAR in all copies of the script! ***************************************************************/ + /** * Generating plain text content of content elements for Direct Mails * - * Revised for TYPO3 3.6 June/2003 by Kasper SkÃ¥rhøj - * - * @author Kasper SkÃ¥rhøj <kasperYYYY@typo3.com> - */ - - - -/** * Alternative rendering of content elements for Plain Text emails. That means text-only output. No HTML at all. Used by the Direct Mail extension. * Normally the plain text output should appear with type=99. * To use this library you can include the static template "plugin.alt.plaintext" @@ -665,11 +658,4 @@ class user_plaintext { return $this->cObj->getCurrentVal(); } } - - - - -if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['media/scripts/plaintextLib.inc'])) { - include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['media/scripts/plaintextLib.inc']); -} ?> \ No newline at end of file diff --git a/typo3/sysext/statictemplates/media/scripts/wapversionLib.inc b/typo3/sysext/statictemplates/media/scripts/wapversionLib.inc index 42537f9acbb0bedc044bd4f67eaa32ae9260a4a1..67a573d6261abe675380673f274b012ed5745581 100644 --- a/typo3/sysext/statictemplates/media/scripts/wapversionLib.inc +++ b/typo3/sysext/statictemplates/media/scripts/wapversionLib.inc @@ -24,14 +24,10 @@ * * This copyright notice MUST APPEAR in all copies of the script! ***************************************************************/ + /** * Contains class for creating WAP pages for TYPO3 * - * Revised for TYPO3 3.6 June/2003 by Kasper SkÃ¥rhøj - * - * @author Kasper SkÃ¥rhøj <kasperYYYY@typo3.com> - */ -/** * Class that creates the current page and content element records as an WML structure using the library "t3lib_xml" * It is demonstrated in use in the testsite package on page "59" * The static template "plugin.alt.wap" is used to trigger this WML creation as well. That template contains this set of TypoScript lines which triggers the WML creation and disables all regular HTML headers @@ -379,55 +375,4 @@ class user_wapversion { return $newMenu; } } - - -// AND HERE just some debugging content: Basically a valid WML deck. - - /* -switch($id) { - case 1: - <wml> - <card id="Hallo" ontimer="#Login" title="wapportal.dk"> - <timer value="35"/> - <p> - <img src="/images/logo.wbmp" alt="WAPPORTAL"/> - asf asdf asdf - </p> - </card> - <card id="Login" title="wapportal.dk" newcontext="true"> - <p>Mobil nr: - <input name="Login" title="Mobil nr:" value="" format="*N" size="15"/>Kodeord: - <input name="Passwd" title="Kodeord:" value="" type="password" format="*N" size="12"/> - <anchor>Login !<go href="/wap/portal/DeckPortal/menu.wml?sid=FGBNRru&rnd=107915&login=$(Login:u)&pwd=$(Passwd:u)"/></anchor> - <br/> - <anchor>Gæst<go href="/wap/portal/DeckPortal/menu.wml?sid=FGBNRru&rnd=107916&login=visitor&pwd=visitor"></go></anchor> - </p> - </card> - </wml> - break; - default: - <wml> - <template> - <do type="accept" label="Back"><prev/></do> - </template> - <card id="index1" title="Hovedside"> - <p>Hej Kasper. - Dette er noget - <img src="/images/logo.wbmp" alt="WAPPORTAL"/> - tekst.</p> - - </card> - </wml> - break; -} -*/ - - - - -if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['media/scripts/wapversionLib.inc'])) { - include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['media/scripts/wapversionLib.inc']); -} - - ?> \ No newline at end of file diff --git a/typo3/sysext/statictemplates/media/scripts/xmenu_layers.diff b/typo3/sysext/statictemplates/media/scripts/xmenu_layers.diff deleted file mode 100644 index d416ef8ff30f813956964997c274634d9c9f52ab..0000000000000000000000000000000000000000 --- a/typo3/sysext/statictemplates/media/scripts/xmenu_layers.diff +++ /dev/null @@ -1,61 +0,0 @@ -# The files gmenu_layers and tmenu_layers should be exactly the same except -# these differences: ---- gmenu_layers.php 2006-07-04 19:44:39.000000000 +0200 -+++ tmenu_layers.php 2006-07-04 19:44:39.000000000 +0200 -@@ -25,5 +25,5 @@ - * This copyright notice MUST APPEAR in all copies of the script! - ***************************************************************/ - /** -- * Contains the GMENU_LAYERS extension class, tslib_gmenu_layers -+ * Contains the TMENU_LAYERS extension class, tslib_tmenu_layers - * -@@ -38,7 +38,7 @@ - * - * - * -- * 84: class tslib_gmenu_layers extends tslib_gmenu -+ * 84: class tslib_tmenu_layers extends tslib_tmenu - * 116: function extProc_init() - * 134: function extProc_RO($key) - * 150: function extProc_beforeLinking($key) -@@ -72,8 +72,8 @@ - - - /** -- * Class extending tslib_gmenu for the creation of DHTML menus -- * NOTICE: The contents of this class is made so that it can be copied EXACTLY AS IS to the tmenu_layers class! See notes in class (for BEGIN/END) and also "diff.xmenu_layers.txt" -+ * Class extending tslib_tmenu for the creation of text based DHTML menus -+ * NOTICE: The contents of this class is copied EXACTLY AS IS from gmenu_layers class! See notes in class (for BEGIN/END) and also 'diff.xmenu_layers.txt' - * - * @author Kasper Skaarhoj <kasperYYYY@typo3.com> - * @package TYPO3 -@@ -81,9 +81,9 @@ - * @link http://typo3.org/doc.0.html?&tx_extrepmgm_pi1[extUid]=270&tx_extrepmgm_pi1[tocEl]=385&cHash=648519dd66 - * @see diff.xmenu_layers.txt - */ --class tslib_gmenu_layers extends tslib_gmenu { -+class tslib_tmenu_layers extends tslib_tmenu { - --// FULL DUPLICATE TO tmenu_layers BEGIN: -+// FULL DUPLICATE FROM gmenu_layers BEGIN: - - var $GMENU_fixKey='layers'; - var $divLayers=Array(); -@@ -460,13 +460,13 @@ - } - } - --// FULL DUPLICATE TO tmenu_layers END: -+// FULL DUPLICATE FROM gmenu_layers END: - - --$GLOBALS['TSFE']->tmpl->menuclasses.=',gmenu_layers'; -+$GLOBALS['TSFE']->tmpl->menuclasses.=',tmenu_layers'; - --if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['media/scripts/gmenu_layers.php']) { -- include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['media/scripts/gmenu_layers.php']); -+if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['media/scripts/tmenu_layers.php']) { -+ include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['media/scripts/tmenu_layers.php']); - } - - ?> diff --git a/typo3/sysext/statictemplates/media/scripts/xmlversionLib.inc b/typo3/sysext/statictemplates/media/scripts/xmlversionLib.inc index 952128f694f25a73bfca153403189f330476bb7e..02e8c9b50e149b80c92a0c613b68b98d86f537ea 100644 --- a/typo3/sysext/statictemplates/media/scripts/xmlversionLib.inc +++ b/typo3/sysext/statictemplates/media/scripts/xmlversionLib.inc @@ -24,14 +24,10 @@ * * This copyright notice MUST APPEAR in all copies of the script! ***************************************************************/ + /** * Example class showing how one could make XML export of page content elements in TYPO3 * - * Revised for TYPO3 3.6 June/2003 by Kasper SkÃ¥rhøj - * - * @author Kasper SkÃ¥rhøj <kasperYYYY@typo3.com> - */ -/** * Class that creates the current page and content element records as an XML structure using the library "t3lib_xml" * It is demonstrated in use in the testsite package on page "59" * The static template "plugin.alt.xml" is used to trigger this XML creation as well. That template contains this set of TypoScript lines which triggers the XML creation and disables all regular HTML headers @@ -108,10 +104,4 @@ class user_xmlversion { } } } - - - -if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['media/scripts/xmlversionLib.inc'])) { - include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE]['XCLASS']['media/scripts/xmlversionLib.inc']); -} ?> \ No newline at end of file