Enlaces UNC
La Convención de nomenclatura universal, o UNC (por sus siglas en inglés), especifica una sintaxis común para describir la ubicación de un recurso de red, tales como archivos, directorios o impresoras compartidas. La sintaxis UNC para sistemas Windows es así:
\\NombreDeComputadora\Carpeta compartida\Nombre del recurso
Las UNCs difieren de las URLs en que no tienen un prefijo protocolo: y que pueden contener espacios incrustados. En el uso corporativo de MediaWiki, suele ser útil pegar una UNC desde Windows Explorer directamente a una página wiki.
Cómo enlazar
Descripción | Escribes | Obtienes |
---|---|---|
Enlace UNC, con título | {{unc | \\NombreDeComputadora\Carpeta compartida\Nombre del recurso | El recurso}}
|
The resource |
Enlace UNC, sin título | {{unc | \\NombreDeComputadora\Carpeta compartida\Nombre del recurso}}
|
[1] |
Instalación
Instala la extensión ParserFunctions .
Follow installation instructions and add the optional "integrated string function functionality" line in LocalSettings.php by setting $wgPFEnableStringFunctions = true;
.
Install the extension StringFunctions (to enable #replace
).
Add file://
to $wgUrlProtocols
in LocalSettings.php :
array_push($wgUrlProtocols, "file://");
Create a template called Template:Unc (search for Template:Unc
and click Create this page), and paste this text into the page content:
[file:///{{#replace:{{#replace:{{{1}}}| |%20}}|\|/}} {{#if:{{{2|}}}|{{{2}}}}}]
Compatibilidad con navegadores
- With Internet Explorer on Windows UNC Links work without exception.
- A recent patch applied to both IE8 and IE9 now requires the Wiki site to be in the Intranet Sites list for this to work correctly.
- With Firefox
file:///
links are disabled by default when appearing in non-local webpages. See:Manual:$wgUrlProtocols
and this mozillaZine article for how to enable them.
- The mozillaZine article referenced is somewhat dated.
Use the Local Filesystem Links add-on for current versions of Firefox.
- For Google Chrome
file:///
links are also disabled. They can be enabled using the enable-local-file-links extension.