You are here

README.txt in Transliteration 6

Same filename and directory in other branches
  1. 5.2 README.txt
  2. 5 README.txt
  3. 6.3 README.txt
  4. 6.2 README.txt
  5. 7.3 README.txt
-- SUMMARY --

The purpose of this module is to provide a central transliteration service for
other Drupal modules, as well as sanitizing the file names when uploading new
files.

For a full description visit the project page:
  http://drupal.org/project/transliteration
Bug reports, feature suggestions and latest developments:
  http://drupal.org/project/issues/transliteration


-- REQUIREMENTS --

None.


-- INSTALLATION --

1. Copy the transliteration module to your modules directory and enable it on
   the Modules page (admin/build/modules).

   During installation or update all filenames containing invalid characters
   will be automatically converted.

2. That's it. The names of all new uploaded files will now automatically be
   transliterated and cleaned from invalid characters.


-- INTEGRATION --

Module developers that want to make use of transliteration to clean input
strings should code similar to the following:

if (module_exists('transliteration')) {
  $transliterated = transliteration_get($string);
}

Take a look at transliteration.module for an explanation of additional function
parameters.


-- CONTACT --

Authors:
* Stefan M. Kudwien (smk-ka) - dev@unleashedmind.com
* Daniel F. Kudwien (sun) - dev@unleashedmind.com

This project has been sponsored by UNLEASHED MIND
Specialized in consulting and planning of Drupal powered sites, UNLEASHED
MIND offers installation, development, theming, customization, and hosting
to get you started. Visit http://www.unleashedmind.com for more information.

The transliteration is based on MediaWiki's UtfNormal.php
(http://www.mediawiki.org) and CPAN's Text::Unidecode library
(http://search.cpan.org/~sburke/Text-Unidecode-0.04/lib/Text/Unidecode.pm).

File

README.txt
View source
  1. -- SUMMARY --
  2. The purpose of this module is to provide a central transliteration service for
  3. other Drupal modules, as well as sanitizing the file names when uploading new
  4. files.
  5. For a full description visit the project page:
  6. http://drupal.org/project/transliteration
  7. Bug reports, feature suggestions and latest developments:
  8. http://drupal.org/project/issues/transliteration
  9. -- REQUIREMENTS --
  10. None.
  11. -- INSTALLATION --
  12. 1. Copy the transliteration module to your modules directory and enable it on
  13. the Modules page (admin/build/modules).
  14. During installation or update all filenames containing invalid characters
  15. will be automatically converted.
  16. 2. That's it. The names of all new uploaded files will now automatically be
  17. transliterated and cleaned from invalid characters.
  18. -- INTEGRATION --
  19. Module developers that want to make use of transliteration to clean input
  20. strings should code similar to the following:
  21. if (module_exists('transliteration')) {
  22. $transliterated = transliteration_get($string);
  23. }
  24. Take a look at transliteration.module for an explanation of additional function
  25. parameters.
  26. -- CONTACT --
  27. Authors:
  28. * Stefan M. Kudwien (smk-ka) - dev@unleashedmind.com
  29. * Daniel F. Kudwien (sun) - dev@unleashedmind.com
  30. This project has been sponsored by UNLEASHED MIND
  31. Specialized in consulting and planning of Drupal powered sites, UNLEASHED
  32. MIND offers installation, development, theming, customization, and hosting
  33. to get you started. Visit http://www.unleashedmind.com for more information.
  34. The transliteration is based on MediaWiki's UtfNormal.php
  35. (http://www.mediawiki.org) and CPAN's Text::Unidecode library
  36. (http://search.cpan.org/~sburke/Text-Unidecode-0.04/lib/Text/Unidecode.pm).