DokuWiki

It's better when it's simple

User Tools

Site Tools


plugin:smblink

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
plugin:smblink [2011-02-21 15:12] – old revision restored lupo49plugin:smblink [2023-10-31 00:07] (current) Klap-in
Line 1: Line 1:
-~~NOTOC~~ +====== smblink Plugin ======
- +
-====== smblink ======+
  
 ---- plugin ---- ---- plugin ----
-description: A replacement for doku's default Windows Share Link feature which supports firefox.+description: A replacement for DokuWiki's default Windows Share Link feature which supports Firefox
 author     : enki author     : enki
 email      : enki1337@gmail.com email      : enki1337@gmail.com
 type       : syntax type       : syntax
 lastupdate : 2009-02-09 lastupdate : 2009-02-09
-compatible : rc2007-05-24+compatible : 2007-06-26
 depends    :  depends    : 
 conflicts  conflicts 
 similar    :  similar    : 
 tags       : samba, smb, share, links, Firefox tags       : samba, smb, share, links, Firefox
-downloadurl: http://doku-smblink.googlecode.com/files/smblink.zip+downloadurl: https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/doku-smblink/smblink.zip
 ---- ----
- 
-^ Download | [[http://doku-smblink.googlecode.com/files/smblink.zip|smblink.zip]] | 
  
 ===== Description ===== ===== Description =====
Line 118: Line 114:
 The plugin doesn't work with Windows 7 Prof. german (64bit) and Firefox 3.6.3 (german). The plugin doesn't work with Windows 7 Prof. german (64bit) and Firefox 3.6.3 (german).
 The errormessage is "Für die Dateierweiterung ".js" gibt es kein Skriptmodul." which means there is no module for .js-fileextension in wscript.exe in Windows 7 Professional - out of the box. The errormessage is "Für die Dateierweiterung ".js" gibt es kein Skriptmodul." which means there is no module for .js-fileextension in wscript.exe in Windows 7 Professional - out of the box.
- 
-==== FCKG Lite ==== 
-SMBLINK interferes with the plugin [[plugin:fckglite|FCKG Lite]]. For reasons unknown it is not possible to edit pages/sections which contain links to Windows shares with FCKG Lite, when the plugin SMBLINK is activated. It would be great if someone found a way to fix this. 
  
 ==== Firefox-Addon ==== ==== Firefox-Addon ====
 If you don't want to install the smblink-hack, there is a Firefox Addon which allows to open links to local files: [[https://addons.mozilla.org/de/firefox/addon/locallink/|Localllink]]. With the Addon installed, you can right-click on links to windows shares and chose the option to open these links in a "local context" If you don't want to install the smblink-hack, there is a Firefox Addon which allows to open links to local files: [[https://addons.mozilla.org/de/firefox/addon/locallink/|Localllink]]. With the Addon installed, you can right-click on links to windows shares and chose the option to open these links in a "local context"
 +
 +==== spaces in file path====
 +
 +Will there be support for linking to a file path that includes spaces?
 +
 ===== Source Code ===== ===== Source Code =====
  
Line 157: Line 155:
             'name'   => 'SMB Plugin',             'name'   => 'SMB Plugin',
             'desc'   => 'Makes filesystem links globally accessible, even through firefox.',             'desc'   => 'Makes filesystem links globally accessible, even through firefox.',
-            'url'    => 'http://www.dokuwiki.org/',+            'url'    => 'http://www.dokuwiki.org/plugin:smblink',
         );         );
     }     }
Line 241: Line 239:
 ===== url-handlers ===== ===== url-handlers =====
  
 +== Support Drive Letters ==
 Extend the url-handlers to support driver letters. Modify the ''url_protocol_handler.js'' of the ''url-handlers.zip'' Extend the url-handlers to support driver letters. Modify the ''url_protocol_handler.js'' of the ''url-handlers.zip''
  
Line 267: Line 266:
 </code> </code>
  
 +== Support deeper directory structures ===
  
 +A path like //myserver/share/deeper/still is handled badly as it links to //myserver/share only under ceratin circumstances. Here is a Bugfix:
  
 +In line 79 replace
 +  arg = arg.replace("/", "\\")
 +with
 +  arg = arg.replace(/\//g, "\\")
  
 +Otherwise %%//%%myserver/share/deeper/still will be changed to %%\\%%myserver\share**/**share**/**deeper**/**still which the explorer can't open (look at the slashes).
plugin/smblink.1298297562.txt.gz · Last modified: 2011-02-21 15:12 by lupo49

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki