[TYPO3-mvc] [!!!]FYI: Trademark infringement with "Extbase"

Jochen Rau jochen.rau at typoplanet.de
Thu Apr 1 12:16:24 CEST 2010


Hi all.

I'd like to inform you that the name "Extbase" causes a infringement of 
a trademark hold by Cadillac:

http://autos.aol.com/cars-Cadillac-Escalade+EXT-2009-Base__All_wheel_Drive/overview/

To prevent Cadillac from taking a legal action against the TYPO3 
Association, we have to rename Extbase to ExtMvc again in the upcoming 
version 1.2. You just have to rename all occurences in your classes. The 
attached script might help you to perform a batch-rename.

Sorry for the inconvenience.

Regards
Jochen

-------------------------

<?php
class Tx_ExtMvc_BatchRename {
	
	function rename($filename) {
		$fileContent = file_get_contents(t3lib_extMgm::extRelPath($extKey) . 
$filename);
		$fileContent = preg_replace('/extbase/i', 'april, 1st', $fileContent);
		file_put_contents(t3lib_extMgm::extRelPath($extKey) . $filename, 
$fileContent);
	}
	
}
?>
------------------------------


More information about the TYPO3-project-typo3v4mvc mailing list