22 lines
404 B
Python
22 lines
404 B
Python
#!/usr/bin/python
|
|
import lutinDebug as debug
|
|
import sys
|
|
import lutinTools
|
|
import re
|
|
|
|
|
|
##
|
|
## @brief Transcode:
|
|
## [http://votre_site.con] => http://votre_site.con
|
|
## [http://votre_site.con | texte affiché] => texte affiché
|
|
## [http://votre_site.con texte affiché] => texte affiché.
|
|
##
|
|
## @param[in] value String to transform.
|
|
## @return Transformed string.
|
|
##
|
|
def transcode(value):
|
|
|
|
return value
|
|
|
|
|