diff --git a/typo3/sysext/dbal/res/oracle/realurl.diff b/typo3/sysext/dbal/res/oracle/realurl.diff deleted file mode 100644 index dab08d66cc31ccb4be638b0cf470697a1ef668bf..0000000000000000000000000000000000000000 --- a/typo3/sysext/dbal/res/oracle/realurl.diff +++ /dev/null @@ -1,66 +0,0 @@ -Index: ext_tables.sql -=================================================================== ---- ext_tables.sql (revision 29851) -+++ ext_tables.sql (working copy) -@@ -7,7 +7,7 @@ - language_id int(11) DEFAULT '0' NOT NULL, - rootpage_id int(11) DEFAULT '0' NOT NULL, - mpvar tinytext NOT NULL, -- pagepath text NOT NULL, -+ pagepath varchar(4000) NOT NULL, - expire int(11) DEFAULT '0' NOT NULL, - - PRIMARY KEY (cache_id), -@@ -41,7 +41,7 @@ - CREATE TABLE tx_realurl_chashcache ( - spurl_hash char(32) DEFAULT '' NOT NULL, - chash_string varchar(32) DEFAULT '' NOT NULL, -- spurl_string text, -+ spurl_string varchar(4000), - - PRIMARY KEY (spurl_hash), - KEY chash_string (chash_string) -@@ -55,7 +55,7 @@ - CREATE TABLE tx_realurl_urldecodecache ( - url_hash char(32) DEFAULT '' NOT NULL, - spurl tinytext NOT NULL, -- content blob NOT NULL, -+ content varchar(4000) NOT NULL, - page_id int(11) DEFAULT '0' NOT NULL, - rootpage_id int(11) DEFAULT '0' NOT NULL, - tstamp int(11) DEFAULT '0' NOT NULL, -@@ -73,7 +73,7 @@ - url_hash char(32) DEFAULT '' NOT NULL, - origparams tinytext NOT NULL, - internalExtras tinytext NOT NULL, -- content text NOT NULL, -+ content varchar(4000) NOT NULL, - page_id int(11) DEFAULT '0' NOT NULL, - tstamp int(11) DEFAULT '0' NOT NULL, - -@@ -83,9 +83,9 @@ - - CREATE TABLE tx_realurl_errorlog ( - url_hash int(11) DEFAULT '0' NOT NULL, -- url text NOT NULL, -- error text NOT NULL, -- last_referer text NOT NULL, -+ url varchar(4000) NOT NULL, -+ error varchar(4000) NOT NULL, -+ last_referer varchar(4000) NOT NULL, - counter int(11) DEFAULT '0' NOT NULL, - cr_date int(11) DEFAULT '0' NOT NULL, - tstamp int(11) DEFAULT '0' NOT NULL, -@@ -97,9 +97,9 @@ - - CREATE TABLE tx_realurl_redirects ( - url_hash int(11) DEFAULT '0' NOT NULL, -- url text NOT NULL, -- destination text NOT NULL, -- last_referer text NOT NULL, -+ url varchar(4000) NOT NULL, -+ destination varchar(4000) NOT NULL, -+ last_referer varchar(4000) NOT NULL, - counter int(11) DEFAULT '0' NOT NULL, - tstamp int(11) DEFAULT '0' NOT NULL, - has_moved int(11) DEFAULT '0' NOT NULL, diff --git a/typo3/sysext/dbal/res/oracle/templavoila.diff b/typo3/sysext/dbal/res/oracle/templavoila.diff deleted file mode 100644 index 7a6de97ff3373e791fdf6281f53b50c06ad0e8b4..0000000000000000000000000000000000000000 --- a/typo3/sysext/dbal/res/oracle/templavoila.diff +++ /dev/null @@ -1,13 +0,0 @@ -Index: ext_tables.sql -=================================================================== ---- ext_tables.sql (revision 29620) -+++ ext_tables.sql (working copy) -@@ -24,7 +24,7 @@ - title varchar(60) DEFAULT '' NOT NULL, - datastructure varchar(100) DEFAULT '' NOT NULL, - fileref tinytext, -- templatemapping blob, -+ templatemapping mediumtext, - previewicon tinytext, - description tinytext, - rendertype varchar(32) DEFAULT '' NOT NULL, diff --git a/typo3/sysext/impexp/doc/TODO.txt b/typo3/sysext/impexp/doc/TODO.txt deleted file mode 100644 index 2bdd02e30000c07af116c301027fdd94d1d8f4a5..0000000000000000000000000000000000000000 --- a/typo3/sysext/impexp/doc/TODO.txt +++ /dev/null @@ -1,26 +0,0 @@ -General: -- Add an "alias" field to tt_content elements (unique for the PAGE like the "pid" field). [I'm not clear anymore about what this should be used for... - maybe anchors in links to content elements? I guess so...] -- Cronjob script which can export selected presets? - -Export of files: -- Include all files from a path like fileadmin/xxx/ - -Import of files: -- Optional folder to import files in (fileadmin/) -- If file exists on import, optional if it should be written? - -IMPORT: -- Better logging to system - -********* -NOTES: -********* -Input Charset conversion NOTE: - - T3D + XML/PHP4: Traverse array and convert proper places (meta data, header summaries, record values) - - Serialized/binary content in fields may be mal-formed? - - XML/PHP5: May be converted automatically without we can do anything. - - May break encapsulated text files which are not base64 encoded - - May break serialized strings - -Size limit: -- The import/export module may die (without warnings!) if the amounts of data becomes too large. For instance a file of 12Mb could not be handled with 32 MB ram configured for PHP. Of course the max_exec_time may also expire during a large import/export.