Skip to content
This repository has been archived by the owner on Jan 1, 2020. It is now read-only.

Commit

Permalink
FIX: SQL TYPE/ENGINE patch
Browse files Browse the repository at this point in the history
  • Loading branch information
jdlx committed Mar 26, 2011
1 parent 113d766 commit 0b2dbb5
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion redaxo/include/addons/cronjob/install.sql
Expand Up @@ -12,4 +12,4 @@ CREATE TABLE IF NOT EXISTS `%TABLE_PREFIX%630_cronjobs` (
`updatedate` int(11) NOT NULL,
`updateuser` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) TYPE=MyISAM ;
) ENGINE=MyISAM ;
4 changes: 2 additions & 2 deletions redaxo/include/addons/image_manager/install.sql
Expand Up @@ -6,7 +6,7 @@ CREATE TABLE IF NOT EXISTS `%TABLE_PREFIX%679_types` (
`description` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) TYPE=MyISAM;
) ENGINE=MyISAM;

INSERT INTO `%TABLE_PREFIX%679_types` (`id`, `status`, `name`, `description`) VALUES
(1, 1, 'rex_mediapool_detail', 'Zur Darstellung von Bildern in der Detailansicht im Medienpool'),
Expand All @@ -27,7 +27,7 @@ CREATE TABLE IF NOT EXISTS `%TABLE_PREFIX%679_type_effects` (
`createdate` int(11) NOT NULL,
`createuser` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) TYPE=MyISAM;
) ENGINE=MyISAM;

INSERT INTO `%TABLE_PREFIX%679_type_effects` (`id`, `type_id`, `effect`, `parameters`, `prior`) VALUES
(1, 1, 'resize', 'a:6:{s:15:\"rex_effect_crop\";a:5:{s:21:\"rex_effect_crop_width\";s:0:\"\";s:22:\"rex_effect_crop_height\";s:0:\"\";s:28:\"rex_effect_crop_offset_width\";s:0:\"\";s:29:\"rex_effect_crop_offset_height\";s:0:\"\";s:24:\"rex_effect_crop_position\";s:13:\"middle_center\";}s:22:\"rex_effect_filter_blur\";a:3:{s:29:\"rex_effect_filter_blur_amount\";s:2:\"80\";s:29:\"rex_effect_filter_blur_radius\";s:1:\"8\";s:32:\"rex_effect_filter_blur_threshold\";s:1:\"3\";}s:25:\"rex_effect_filter_sharpen\";a:3:{s:32:\"rex_effect_filter_sharpen_amount\";s:2:\"80\";s:32:\"rex_effect_filter_sharpen_radius\";s:3:\"0.5\";s:35:\"rex_effect_filter_sharpen_threshold\";s:1:\"3\";}s:15:\"rex_effect_flip\";a:1:{s:20:\"rex_effect_flip_flip\";s:1:\"X\";}s:23:\"rex_effect_insert_image\";a:5:{s:34:\"rex_effect_insert_image_brandimage\";s:0:\"\";s:28:\"rex_effect_insert_image_hpos\";s:5:\"right\";s:28:\"rex_effect_insert_image_vpos\";s:6:\"bottom\";s:33:\"rex_effect_insert_image_padding_x\";s:3:\"-10\";s:33:\"rex_effect_insert_image_padding_y\";s:3:\"-10\";}s:17:\"rex_effect_resize\";a:4:{s:23:\"rex_effect_resize_width\";s:3:\"200\";s:24:\"rex_effect_resize_height\";s:3:\"200\";s:23:\"rex_effect_resize_style\";s:7:\"maximum\";s:31:\"rex_effect_resize_allow_enlarge\";s:11:\"not_enlarge\";}}', 1),
Expand Down
Expand Up @@ -19,7 +19,7 @@
*
* @param string Pfad + Dateinamen zur SQL-Datei
*
* @return array Gibt ein Assoc. Array zurück.
* @return array Gibt ein Assoc. Array zurück.
* 'state' => boolean (Status ob fehler aufgetreten sind)
* 'message' => Evtl. Status/Fehlermeldung
*/
Expand All @@ -42,7 +42,7 @@ function rex_a1_import_db($filename)

$conts = rex_get_file_contents($filename);

// Versionsstempel prüfen
// Versionsstempel prüfen
// ## Redaxo Database Dump Version x.x
$version = strpos($conts, '## Redaxo Database Dump Version '.$REX['VERSION']);
if($version === false)
Expand All @@ -53,7 +53,7 @@ function rex_a1_import_db($filename)
// Versionsstempel entfernen
$conts = trim(str_replace('## Redaxo Database Dump Version '.$REX['VERSION'], '', $conts));

// Prefix prüfen
// Prefix prüfen
// ## Prefix xxx_
if(preg_match('/^## Prefix ([a-zA-Z0-9\_]*)/', $conts, $matches) && isset($matches[1]))
{
Expand All @@ -69,7 +69,7 @@ function rex_a1_import_db($filename)
}


// Charset prüfen
// Charset prüfen
// ## charset xxx_
if(preg_match('/^## charset ([a-zA-Z0-9\_\-]*)/', $conts, $matches) && isset($matches[1]))
{
Expand All @@ -92,7 +92,7 @@ function rex_a1_import_db($filename)
// Prefix im export mit dem der installation angleichen
if($REX['TABLE_PREFIX'] != $prefix)
{
// Hier case-insensitiv ersetzen, damit alle möglich Schreibweisen (TABLE TablE, tAblE,..) ersetzt werden
// Hier case-insensitiv ersetzen, damit alle möglich Schreibweisen (TABLE TablE, tAblE,..) ersetzt werden
// Dies ist wichtig, da auch SQLs innerhalb von Ein/Ausgabe der Module vom rex-admin verwendet werden
$conts = preg_replace('/(TABLES? `?)' . preg_quote($prefix, '/') .'/i', '$1'. $REX['TABLE_PREFIX'], $conts);
$conts = preg_replace('/(INTO `?)' . preg_quote($prefix, '/') .'/i', '$1'. $REX['TABLE_PREFIX'], $conts);
Expand Down Expand Up @@ -151,7 +151,7 @@ function rex_a1_import_db($filename)
$msg .= $I18N->msg('im_export_database_imported').'. '.$I18N->msg('im_export_entry_count', count($lines)).'<br />';
unset($lines);

// prüfen, ob eine user tabelle angelegt wurde
// prüfen, ob eine user tabelle angelegt wurde
$tables = rex_sql::showTables();
$user_table_found = in_array($REX['TABLE_PREFIX'].'user', $tables);

Expand All @@ -175,7 +175,7 @@ function rex_a1_import_db($filename)
lasttrydate int(11) NOT NULL DEFAULT 0,
session_id varchar(255) NOT NULL,
PRIMARY KEY(user_id)
) TYPE=MyISAM';
) ENGINE=MyISAM';

if(rex_lang_is_utf8())
$create_user_table .= ' DEFAULT CHARSET=utf8';
Expand All @@ -187,7 +187,7 @@ function rex_a1_import_db($filename)
$error = $db->getError();
if($error != '')
{
// evtl vorhergehende meldungen löschen, damit nur der fehler angezeigt wird
// evtl vorhergehende meldungen löschen, damit nur der fehler angezeigt wird
$msg = '';
$msg .= $error;
}
Expand Down Expand Up @@ -222,7 +222,7 @@ function rex_a1_import_db($filename)
*
* @param string Pfad + Dateinamen zum Tar-Archiv
*
* @return array Gibt ein Assoc. Array zurück.
* @return array Gibt ein Assoc. Array zurück.
* 'state' => boolean (Status ob fehler aufgetreten sind)
* 'message' => Evtl. Status/Fehlermeldung
*/
Expand Down Expand Up @@ -309,7 +309,7 @@ function rex_a1_export_db($filename)
// ----- EXTENSION POINT
rex_register_extension_point('A1_BEFORE_DB_EXPORT');

// Versionsstempel hinzufügen
// Versionsstempel hinzufügen
fwrite($fp, '## Redaxo Database Dump Version '.$REX['VERSION'].$nl);
fwrite($fp, '## Prefix '.$REX['TABLE_PREFIX'].$nl);
fwrite($fp, '## charset '.$I18N->msg('htmlcharset').$nl.$nl);
Expand Down Expand Up @@ -467,7 +467,7 @@ function rex_a1_export_files($folders)
}

/**
* Fügt einem Tar-Archiv ein Ordner von Dateien hinzu
* Fügt einem Tar-Archiv ein Ordner von Dateien hinzu
* @access protected
*/
function _rex_a1_add_folder_to_tar(& $tar, $path, $dir)
Expand All @@ -478,7 +478,7 @@ function _rex_a1_add_folder_to_tar(& $tar, $path, $dir)
$isMediafolder = realpath($path.$dir) == $REX['MEDIAFOLDER'];
while (false !== ($file = readdir($handle)))
{
// Alles exportieren, außer ...
// Alles exportieren, außer ...
// - addons verzeichnis im mediafolder (wird bei addoninstallation wiedererstellt)
// - svn infos
// - tmp prefix Dateien
Expand Down
2 changes: 1 addition & 1 deletion redaxo/include/addons/metainfo/install.sql
Expand Up @@ -23,7 +23,7 @@ CREATE TABLE `%TABLE_PREFIX%62_type` (
`dbtype` varchar(255) NOT NULL,
`dblength` int(11) NOT NULL,
PRIMARY KEY (`id`)
) TYPE=MyISAM ;
) ENGINE=MyISAM ;

INSERT INTO %TABLE_PREFIX%62_type VALUES (1, 'text', 'text', 0);
INSERT INTO %TABLE_PREFIX%62_type VALUES (2, 'textarea', 'text', 0);
Expand Down
20 changes: 10 additions & 10 deletions redaxo/include/install/redaxo4_3.sql
@@ -1,16 +1,16 @@
## Redaxo Database Dump Version 4
## Prefix rex_

CREATE TABLE `rex_action` ( `id` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL , `preview` text NULL , `presave` text NULL , `postsave` text NULL , `previewmode` tinyint(4) NULL , `presavemode` tinyint(4) NULL , `postsavemode` tinyint(4) NULL , `createuser` varchar(255) NOT NULL , `createdate` int(11) NOT NULL , `updateuser` varchar(255) NOT NULL , `updatedate` int(11) NOT NULL , `revision` int(11) NOT NULL , PRIMARY KEY (`id`)) TYPE=MyISAM;
CREATE TABLE `rex_article` ( `pid` int(11) NOT NULL auto_increment, `id` int(11) NOT NULL , `re_id` int(11) NOT NULL , `name` varchar(255) NOT NULL , `catname` varchar(255) NOT NULL , `catprior` int(11) NOT NULL , `attributes` text NOT NULL , `startpage` tinyint(1) NOT NULL , `prior` int(11) NOT NULL , `path` varchar(255) NOT NULL , `status` tinyint(1) NOT NULL , `createdate` int(11) NOT NULL , `updatedate` int(11) NOT NULL , `template_id` int(11) NOT NULL , `clang` int(11) NOT NULL , `createuser` varchar(255) NOT NULL , `updateuser` varchar(255) NOT NULL , `revision` int(11) NOT NULL , PRIMARY KEY (`pid`)) TYPE=MyISAM;
CREATE TABLE `rex_article_slice` ( `id` int(11) NOT NULL auto_increment, `clang` int(11) NOT NULL , `ctype` int(11) NOT NULL , `re_article_slice_id` int(11) NOT NULL ,`value1` text NULL , `value2` text NULL , `value3` text NULL , `value4` text NULL , `value5` text NULL , `value6` text NULL , `value7` text NULL , `value8` text NULL , `value9` text NULL , `value10` text NULL , `value11` text NULL , `value12` text NULL , `value13` text NULL , `value14` text NULL , `value15` text NULL , `value16` text NULL , `value17` text NULL , `value18` text NULL , `value19` text NULL , `value20` text NULL , `file1` varchar(255) NULL , `file2` varchar(255) NULL , `file3` varchar(255) NULL , `file4` varchar(255) NULL , `file5` varchar(255) NULL , `file6` varchar(255) NULL , `file7` varchar(255) NULL , `file8` varchar(255) NULL , `file9` varchar(255) NULL , `file10` varchar(255) NULL , `filelist1` text NULL , `filelist2` text NULL , `filelist3` text NULL , `filelist4` text NULL , `filelist5` text NULL , `filelist6` text NULL , `filelist7` text NULL , `filelist8` text NULL , `filelist9` text NULL , `filelist10` text NULL , `link1` varchar(10) NULL , `link2` varchar(10) NULL , `link3` varchar(10) NULL , `link4` varchar(10) NULL , `link5` varchar(10) NULL , `link6` varchar(10) NULL , `link7` varchar(10) NULL , `link8` varchar(10) NULL , `link9` varchar(10) NULL , `link10` varchar(10) NULL , `linklist1` text NULL , `linklist2` text NULL , `linklist3` text NULL , `linklist4` text NULL , `linklist5` text NULL , `linklist6` text NULL , `linklist7` text NULL , `linklist8` text NULL , `linklist9` text NULL , `linklist10` text NULL , `php` text NULL , `html` text NULL ,`article_id` int(11) NOT NULL , `modultyp_id` int(11) NOT NULL , `createdate` int(11) NOT NULL , `updatedate` int(11) NOT NULL , `createuser` varchar(255) NOT NULL , `updateuser` varchar(255) NOT NULL , `next_article_slice_id` int(11) NULL , `revision` int(11) NOT NULL , PRIMARY KEY (`id`,`re_article_slice_id`,`article_id`,`modultyp_id`)) TYPE=MyISAM;
CREATE TABLE `rex_clang` ( `id` int(11) NOT NULL , `name` varchar(255) NOT NULL , `revision` int(11) NOT NULL , PRIMARY KEY (`id`)) TYPE=MyISAM;
CREATE TABLE `rex_file` ( `file_id` int(11) NOT NULL auto_increment, `re_file_id` int(11) NOT NULL , `category_id` int(11) NOT NULL , `attributes` text NULL , `filetype` varchar(255) NULL , `filename` varchar(255) NULL , `originalname` varchar(255) NULL , `filesize` varchar(255) NULL , `width` int(11) NULL , `height` int(11) NULL , `title` varchar(255) NULL , `createdate` int(11) NOT NULL , `updatedate` int(11) NOT NULL , `createuser` varchar(255) NOT NULL , `updateuser` varchar(255) NOT NULL , `revision` int(11) NOT NULL , PRIMARY KEY (`file_id`)) TYPE=MyISAM;
CREATE TABLE `rex_file_category` ( `id` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL , `re_id` int(11) NOT NULL , `path` varchar(255) NOT NULL , `createdate` int(11) NOT NULL , `updatedate` int(11) NOT NULL , `createuser` varchar(255) NOT NULL , `updateuser` varchar(255) NOT NULL , `attributes` text NULL , `revision` int(11) NOT NULL , PRIMARY KEY (`id`,`name`)) TYPE=MyISAM;
CREATE TABLE `rex_module` ( `id` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL , `category_id` int(11) NOT NULL , `ausgabe` text NOT NULL , `eingabe` text NOT NULL , `createuser` varchar(255) NOT NULL , `updateuser` varchar(255) NOT NULL , `createdate` int(11) NOT NULL , `updatedate` int(11) NOT NULL , `attributes` text NULL , `revision` int(11) NOT NULL , PRIMARY KEY (`id`,`category_id`)) TYPE=MyISAM;
CREATE TABLE `rex_module_action` ( `id` int(11) NOT NULL auto_increment, `module_id` int(11) NOT NULL , `action_id` int(11) NOT NULL , `revision` int(11) NOT NULL , PRIMARY KEY (`id`)) TYPE=MyISAM;
CREATE TABLE `rex_template` ( `id` int(11) NOT NULL auto_increment, `label` varchar(255) NULL , `name` varchar(255) NULL , `content` text NULL , `active` tinyint(1) NULL , `createuser` varchar(255) NOT NULL , `updateuser` varchar(255) NOT NULL , `createdate` int(11) NOT NULL , `updatedate` int(11) NOT NULL , `attributes` text NULL , `revision` int(11) NOT NULL , PRIMARY KEY (`id`)) TYPE=MyISAM;
CREATE TABLE `rex_user` ( `user_id` int(11) NOT NULL auto_increment, `name` varchar(255) , `description` text , `login` varchar(50) NOT NULL , `psw` varchar(50) NOT NULL , `status` varchar(5) NOT NULL , `rights` text NOT NULL , `login_tries` tinyint(4) DEFAULT 0 , `createuser` varchar(255) NOT NULL , `updateuser` varchar(255) NOT NULL , `createdate` int(11) NOT NULL , `updatedate` int(11) NOT NULL , `lasttrydate` int(11) DEFAULT 0 , `session_id` varchar(255) , `cookiekey` varchar(255) , `revision` int(11) NOT NULL, PRIMARY KEY(`user_id`))TYPE=MyISAM;
CREATE TABLE `rex_action` ( `id` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL , `preview` text NULL , `presave` text NULL , `postsave` text NULL , `previewmode` tinyint(4) NULL , `presavemode` tinyint(4) NULL , `postsavemode` tinyint(4) NULL , `createuser` varchar(255) NOT NULL , `createdate` int(11) NOT NULL , `updateuser` varchar(255) NOT NULL , `updatedate` int(11) NOT NULL , `revision` int(11) NOT NULL , PRIMARY KEY (`id`)) ENGINE=MyISAM;
CREATE TABLE `rex_article` ( `pid` int(11) NOT NULL auto_increment, `id` int(11) NOT NULL , `re_id` int(11) NOT NULL , `name` varchar(255) NOT NULL , `catname` varchar(255) NOT NULL , `catprior` int(11) NOT NULL , `attributes` text NOT NULL , `startpage` tinyint(1) NOT NULL , `prior` int(11) NOT NULL , `path` varchar(255) NOT NULL , `status` tinyint(1) NOT NULL , `createdate` int(11) NOT NULL , `updatedate` int(11) NOT NULL , `template_id` int(11) NOT NULL , `clang` int(11) NOT NULL , `createuser` varchar(255) NOT NULL , `updateuser` varchar(255) NOT NULL , `revision` int(11) NOT NULL , PRIMARY KEY (`pid`)) ENGINE=MyISAM;
CREATE TABLE `rex_article_slice` ( `id` int(11) NOT NULL auto_increment, `clang` int(11) NOT NULL , `ctype` int(11) NOT NULL , `re_article_slice_id` int(11) NOT NULL ,`value1` text NULL , `value2` text NULL , `value3` text NULL , `value4` text NULL , `value5` text NULL , `value6` text NULL , `value7` text NULL , `value8` text NULL , `value9` text NULL , `value10` text NULL , `value11` text NULL , `value12` text NULL , `value13` text NULL , `value14` text NULL , `value15` text NULL , `value16` text NULL , `value17` text NULL , `value18` text NULL , `value19` text NULL , `value20` text NULL , `file1` varchar(255) NULL , `file2` varchar(255) NULL , `file3` varchar(255) NULL , `file4` varchar(255) NULL , `file5` varchar(255) NULL , `file6` varchar(255) NULL , `file7` varchar(255) NULL , `file8` varchar(255) NULL , `file9` varchar(255) NULL , `file10` varchar(255) NULL , `filelist1` text NULL , `filelist2` text NULL , `filelist3` text NULL , `filelist4` text NULL , `filelist5` text NULL , `filelist6` text NULL , `filelist7` text NULL , `filelist8` text NULL , `filelist9` text NULL , `filelist10` text NULL , `link1` varchar(10) NULL , `link2` varchar(10) NULL , `link3` varchar(10) NULL , `link4` varchar(10) NULL , `link5` varchar(10) NULL , `link6` varchar(10) NULL , `link7` varchar(10) NULL , `link8` varchar(10) NULL , `link9` varchar(10) NULL , `link10` varchar(10) NULL , `linklist1` text NULL , `linklist2` text NULL , `linklist3` text NULL , `linklist4` text NULL , `linklist5` text NULL , `linklist6` text NULL , `linklist7` text NULL , `linklist8` text NULL , `linklist9` text NULL , `linklist10` text NULL , `php` text NULL , `html` text NULL ,`article_id` int(11) NOT NULL , `modultyp_id` int(11) NOT NULL , `createdate` int(11) NOT NULL , `updatedate` int(11) NOT NULL , `createuser` varchar(255) NOT NULL , `updateuser` varchar(255) NOT NULL , `next_article_slice_id` int(11) NULL , `revision` int(11) NOT NULL , PRIMARY KEY (`id`,`re_article_slice_id`,`article_id`,`modultyp_id`)) ENGINE=MyISAM;
CREATE TABLE `rex_clang` ( `id` int(11) NOT NULL , `name` varchar(255) NOT NULL , `revision` int(11) NOT NULL , PRIMARY KEY (`id`)) ENGINE=MyISAM;
CREATE TABLE `rex_file` ( `file_id` int(11) NOT NULL auto_increment, `re_file_id` int(11) NOT NULL , `category_id` int(11) NOT NULL , `attributes` text NULL , `filetype` varchar(255) NULL , `filename` varchar(255) NULL , `originalname` varchar(255) NULL , `filesize` varchar(255) NULL , `width` int(11) NULL , `height` int(11) NULL , `title` varchar(255) NULL , `createdate` int(11) NOT NULL , `updatedate` int(11) NOT NULL , `createuser` varchar(255) NOT NULL , `updateuser` varchar(255) NOT NULL , `revision` int(11) NOT NULL , PRIMARY KEY (`file_id`)) ENGINE=MyISAM;
CREATE TABLE `rex_file_category` ( `id` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL , `re_id` int(11) NOT NULL , `path` varchar(255) NOT NULL , `createdate` int(11) NOT NULL , `updatedate` int(11) NOT NULL , `createuser` varchar(255) NOT NULL , `updateuser` varchar(255) NOT NULL , `attributes` text NULL , `revision` int(11) NOT NULL , PRIMARY KEY (`id`,`name`)) ENGINE=MyISAM;
CREATE TABLE `rex_module` ( `id` int(11) NOT NULL auto_increment, `name` varchar(255) NOT NULL , `category_id` int(11) NOT NULL , `ausgabe` text NOT NULL , `eingabe` text NOT NULL , `createuser` varchar(255) NOT NULL , `updateuser` varchar(255) NOT NULL , `createdate` int(11) NOT NULL , `updatedate` int(11) NOT NULL , `attributes` text NULL , `revision` int(11) NOT NULL , PRIMARY KEY (`id`,`category_id`)) ENGINE=MyISAM;
CREATE TABLE `rex_module_action` ( `id` int(11) NOT NULL auto_increment, `module_id` int(11) NOT NULL , `action_id` int(11) NOT NULL , `revision` int(11) NOT NULL , PRIMARY KEY (`id`)) ENGINE=MyISAM;
CREATE TABLE `rex_template` ( `id` int(11) NOT NULL auto_increment, `label` varchar(255) NULL , `name` varchar(255) NULL , `content` text NULL , `active` tinyint(1) NULL , `createuser` varchar(255) NOT NULL , `updateuser` varchar(255) NOT NULL , `createdate` int(11) NOT NULL , `updatedate` int(11) NOT NULL , `attributes` text NULL , `revision` int(11) NOT NULL , PRIMARY KEY (`id`)) ENGINE=MyISAM;
CREATE TABLE `rex_user` ( `user_id` int(11) NOT NULL auto_increment, `name` varchar(255) , `description` text , `login` varchar(50) NOT NULL , `psw` varchar(50) NOT NULL , `status` varchar(5) NOT NULL , `rights` text NOT NULL , `login_tries` tinyint(4) DEFAULT 0 , `createuser` varchar(255) NOT NULL , `updateuser` varchar(255) NOT NULL , `createdate` int(11) NOT NULL , `updatedate` int(11) NOT NULL , `lasttrydate` int(11) DEFAULT 0 , `session_id` varchar(255) , `cookiekey` varchar(255) , `revision` int(11) NOT NULL, PRIMARY KEY(`user_id`))ENGINE=MyISAM;

INSERT INTO `rex_clang` VALUES ('0','deutsch', 0);

Expand Down

5 comments on commit 0b2dbb5

@staabm
Copy link
Member

@staabm staabm commented on 0b2dbb5 Jan 23, 2012

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What happened to those umlauts?

@jdlx
Copy link
Contributor

@jdlx jdlx commented on 0b2dbb5 Jan 23, 2012

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GitHub hickup.. due to recent encoding change i assume (happened before), the files are ok..

@jdlx
Copy link
Contributor

@jdlx jdlx commented on 0b2dbb5 Jan 23, 2012

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@gharlan
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it is only the conversion from iso to utf8...

(edit: I haven't seen jan's answers before I posted this... )

@jdlx
Copy link
Contributor

@jdlx jdlx commented on 0b2dbb5 Jan 23, 2012

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe we'd file an issue @ github.. it's at least disturbing, leads to unnecessary discussions and eventually needless commits..

Please sign in to comment.