Part I. IO-Slaves
 

IO-Slaves

audiocd
 

audiocd

Rik Hemsley

Revision 2.20.00 (2001-07-14)

Allows treating audio CDs like a “real” filesystem, where tracks are represented as files and, when copied from the folder, are digitally extracted from the CD. This ensures a perfect copy of the audio data.

To see how this slave works, insert an audio CD in your CD-ROM drive and type audiocd:/ into Konqueror. Within a few seconds you should see a list of tracks and some folders.

Audio CDs don't really have folders, but the audiocd slave provides them as a convenience. If you look inside these folders you will see that they all contain the same number of tracks. If you are connected to the Internet, some folders will have the actual track titles shown as the filenames.

The reason that these separate folders exist are so that you can choose in which format you would like to listen to (or copy) the tracks on the CD.

If you drag a track from the Ogg Vorbis folder and drop it on another Konqueror window open at your home folder, you should see a progress window showing you that the track is being extracted from the CD and saved to a file. Note that Ogg Vorbis is a compressed format, so the file in your home folder will appear a great deal smaller than it would have been if you had copied the raw data.

The mechanism behind this is quite simple. When the audiocd slave is asked to retrieve a track from the Ogg Vorbis folder, it starts extracting the digital audio data from the CD. As it sends the data over to the file in your home folder, it simultaneously encodes it in Ogg Vorbis format (CD audio isn't in any particular format to start with, it's just raw binary data.)

You could also try dragging a file ending in .wav and dropping it on the KDE Media Player, Noatun. In this case, the procedure that happens behind the scenes is similar, except that instead of encoding the audio data in Ogg Vorbis format, it is put through a very simple conversion, from raw binary data (which the .cda files in the toplevel folder represent) to “RIFF WAV” format, a non-compressed format that most media players understand.

Noatun should quite happily play the .wav file, but if it has trouble, you may consider using the paranoia_level option, explained below.

Options

device

Set the path to the audio CD device, e.g. audiocd:/?device=/dev/sdc. Normally, the slave will try to find a CD drive with an audio CD inserted, but if it fails or you have more than one CD drive, you may want to try this option. Note that the configuration dialog allows you to set a default value for this option.

paranoia_level

Set the amount of error detection and correction used when extracting data.

Level 0

No detection or correction. Only useful if you have a perfect CD drive (unlikely).

Level 1

Enable basic error checking and correction.

Level 2

Default. Specifies that only a perfect extraction will be accepted.

Note that there is a disadvantage to level 2. Extraction can be very slow, so real-time digital playback may not work properly. If you have a good quality CD drive (note that more expensive does not necessarily mean better quality) then you probably won't experience very slow extraction, but a poor drive may take days (!) to extract the audio from one CD.

use_cddb

Specify that track names for the inserted CD will be looked up on the Internet CD Database. Audio CDs don't have track names, but the Internet CD Database is a clever system which uses a special unique identifier generated from the number and length of tracks on each CD to cross-reference a track listing. Track listings are contributed by the Internet community and made available to all.

You can submit your own track listings using KsCD, the KDE CD player.

This option is on by default. If your Internet connection is not set up correctly, you may find that your CD tracks don't appear. In this case, you can try audiocd:/?use_cddb=0 to switch this option off.

cddb_server

Set the Internet CD Database server to contact. By default, this is freedb.freedb.org:888, which means server freedb.freedb.org at port 888.

Examples

audiocd:/?device=/dev/scd0&paranoia_level=0&use_cddb=0

Gives a listing of the tracks on the audio CD inserted in /dev/scd0, which on Linux® specifies the first SCSI CD-ROM device. If you copy tracks from the CD, digital extraction will be performed without error correction or detection. No Internet CD Database will be contacted.

Frequently Asked Question

1. I get The file or folder / does not exist. How do I fix that? I have an audio CD in my drive!
1.

I get The file or folder / does not exist. How do I fix that? I have an audio CD in my drive!

Try running cdparanoia -vsQ as yourself (not root). Do you see a track list? If not, make sure you have permission to access the CD device. If you're using SCSI emulation (possible if you have an IDE CD writer) then make sure you check that you have read and write permissions on the generic SCSI device, which is probably /dev/sg0, /dev/sg1, etc.. If it still doesn't work, try typing audiocd:/?device=/dev/sg0 (or similar) to tell kio_audiocd which device your CD-ROM is.

bzip
 

bzip

Lauri Watts


bzip is a compression program. It is rarely used today, having been replaced with bzip2, which offers much better compression.

The bzip kioslave is not directly usable, and is intended for use as a filter. For example, the tar kioslave can filter a file through the bzip kioslave, in order to display the contents of a tar.bz file directly in a Konqueror window.

If you click on a file compressed with a bz extension in Konqueror, this kioslave is used to uncompress it and display it as a normal (uncompressed) file.

If you are a developer, and would like to use the bzip filter, you can find documentation on using kioslaves at http://developer.kde.org

bzip2
 

bzip2

Lauri Watts


Bzip2 is a compression program

The bzip2 kioslave is not directly usable, and is intended for use as a filter. For example, the tar kioslave can filter a file through the bzip2 kioslave, in order to display the contents of a tar.bz2 file directly in a Konqueror window.

If you click on a file compressed with a .bz2 in Konqueror, this kioslave is used to uncompress it and display it as a normal (uncompressed) file.

If you are a developer, and would like to use the bzip2 filter, you can find documentation on using kioslaves at http://developer.kde.org

See the manual: bzip2.

cgi
 

cgi

Lauri Watts


The CGI slave provides a way to execute CGI programs without the need to have a running web server. This can for example be used for local testing of CGI programs or for using search engines that only provide a CGI frontend like the one from Doxygen.

The slave implements the cgi: protocol. It uses the filename from the given URL and searches a configurable list of folders. If it finds an executable with the given name it executes it, passes the arguments of the URL and sets the environment variables needed by CGI programs.

Data URLs
 

Data URLs

Leo Savernik


Data URLs allow small document data to be included in the URL itself. This is useful for very small HTML testcases or other occasions that do not justify a document of their own.

data:,bla (note the comma after the colon) will deliver a text document that contains nothing but bla

The last example delivered a text document. For HTML documents one has to specify the MIME type text/html: data:text/html,<title>Testcase</title><p>This is a testcase</p>. This will produce exactly the same output as if the content had been loaded from a document of its own.

Specifying alternate charsets is also possible. Note that 8-Bit characters have to be escaped by a percentage sign and their two-digit hexadecimal codes: data:;charset=iso-8859-1,Gr%FC%DFe aus Schl%E4gl results in Grüße aus Schlägl whereas omitting the charset attribute might lead to something like Gr??e aus Schl?gl

The full documentation is available in the KDE Helpcenter

file
 

file

Ferdinand Gassauer


The file protocol is used by all KDE applications to display locally available files.

Entering file:/directoryname in Konqueror lists the files of this folder.

finger
 

finger

Lauri Watts


Finger is a program to display information about users.

If finger is enabled on the remote machine, you may be given information on the user's real name, if they are logged in or not, if they have mail, and if they have a .plan file in their home folder, it might be displayed for you.

Finger is normally associated with a user@hostname address, which may or may not be the same as a users email address.

Most Internet Service Providers no longer allow finger access, so, you may find that you get no useful answer for most people.

Other people use their local .plan file to hold such information as PGP keys, the fact they are on vacation, and all sorts of information.

Use the finger kioslave like this: finger://username@hostname

See the manual: finger.

fish
 

fish

Jörg Walter

Revision 1.1.1 (2002-06-23)

Allows you to access another computer's files using a simple SSH shell account and standard UNIX® utilities on the remote side. This way, no server software is needed and you gain access to that computer's files as if they were local (or on NFS, since it is slower than local access). It uses the same protocol as MidnightCommander's #sh VFS handler.

Fish should work with any roughly POSIX compatible UNIX® based remote computer. It uses the shell commands cat, chgrp, chmod, chown, cp, dd, env, expr, grep, ls, mkdir, mv, rm, rmdir, sed, and wc. Fish starts /bin/sh as its shell and expects it to be a Bourne shell (or compatible, like bash). If the sed and file commands are available, as well as a /etc/apache/magic file with MIME type signatures, these will be used to guess MIME types.

If Perl is available on the remote machine, it will be used instead. Then only env and /bin/sh are needed. Using Perl has the additional benefit of being faster.

Fish may even work on Windows® machines, if tools like Cygwin are installed. All the above utilities must be in the system PATH, and the initial shell must be able to process the command echo FISH:;/bin/sh correctly.

Floppy
 

Floppy

Alexander Neundorf


The floppy ioslave gives you easy access to the floppy disk drives installed on your system.

The drive letter becomes the first subdirectory in the floppy URL. Let's say there is a file logo.png on your floppy disk in drive A, then the URL will be floppy:/a/logo.png

If you want to access drive B, floppy:/b will do it. floppy:/ is a shortcut for floppy:/a.

Note

Note that floppy:/logo.png means you have a disk drive named logo.png.

To use it you need to have the mtools package installed, and the floppy ioslave supports everything the various mtools command line utilities support. You don't have to mount your floppy disks, simply enter floppy:/ in any KDE 3.x app and you will be able to read from and write to your floppy drive.

It works also with USB sticks, ZIP and JAZ drives. You can use e.g. floppy:/u for the USB stick and floppy:/z for the zip drive. To make this work, you might need to adjust your /etc/mtools file, see the manpage for documentation.

The ioslave gives read and write access to the floppy drive, but not simultaneously. While you can read and write to the floppy during the same session, reading and writing have to happen one after the other, not at the same time.

Author: Alexander Neundorf <neundorf@kde.org>

FTP
 

FTP

Lauri Watts


FTP is the Internet service used to transfer a data file from the disk of one computer to the disk of another, regardless of the operating system type.

Similar to other Internet applications, FTP uses the client-server approach — a user invokes an FTP program on the computer, instructs it to contact a remote computer, and then requests the transfer of one or more files. The local FTP program becomes a client that uses TCP to contact an FTP server program on the remote computer. Each time the user requests a file transfer, the client and the server programs cooperate to send a copy of the data across the Internet.

FTP servers which allow “anonymous FTP” permit any user, not only users with accounts on the host, to browse the “ftp” archives and download files. Some FTP servers are configured to allow users to upload files.

FTP is commonly used to retrieve information and obtain software stored in files at FTP archive sites throughout the world.

Source: Paraphrased from http://tlc.nlm.nih.gov/resources/tutorials/internetdistlrn/ftpdef.htm

See the manual: ftp.

gopher
 

gopher

Lauri Watts


gopher began as a distributed campus information service at the University of Minnesota. Gopher allows the user to access information on Gopher servers running on Internet hosts.

Gopher is an Internet information browsing service that uses a menu-driven interface. Users select information from menus, which may return another menu or display a text file. An item may reside on a Gopher server you originally queried, or it may be on another Gopher server (or another host). Gopher can “tunnel” from one Gopher to another without the user knowing that the server and/or host machine have changed. Gopher keeps the exact location of computers hidden from the user, providing the “illusion” of a single, large set of interconnected menus.

Gopher permits the user to record an item's location in a “bookmark” thereby allowing users to follow a “bookmark” directly to a particular item without searching the menu system. Gopher menus are not standardized, inasmuch as each Gopher server is individually determined.

Source: http://tlc.nlm.nih.gov/resources/tutorials/internetdistlrn/gophrdef.htm

gzip
 

gzip

Lauri Watts


gzip is a compression program

The gzip kioslave is not directly usable, and is intended for use as a filter. For example, the tar kioslave can filter a file through the gzip kioslave, in order to display the contents of a tar.gz file directly in a Konqueror window.

If you click on a file compressed with a gz extension in Konqueror, this kioslave is used to uncompress it and display it as a normal (uncompressed) file.

If you are a developer, and would like to use the gzip filter, you can find documentation on using kioslaves at http://developer.kde.org

See the manual: gzip.

help
 

help

Ferdinand Gassauer


The help system of KDE

See The KHelpCenter.

http
 

http

Lauri Watts


http is the HyperText Transfer Protocol.

The http kioslave is used by all KDE applications to handle connections to http servers, that is, web servers. The most common usage is to view web pages in the Konqueror web browser.

You can use the http kioslave in Konqueror by giving it a URL. http://www.kde.org.

See the manual: http.

https
 

https

Ferdinand Gassauer


HTTPS is HTTP encapsulated in an SSL/TLS stream.

SSL is the Secure Sockets Layer protocol, a security protocol that provides communications privacy over the Internet. The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery.

TLS stands for Transport Layer Security

imap
 

imap

Michael Haeckel


The IMAP4rev1 protocol (Internet Message Access Protocol) allows access to messages in mail folders on a server. Unlike POP3, which is designed to download the mails and delete them from the server, the purpose of IMAP is to store all mails on the server to be able to access these mails from everywhere. Messages can be stored on the server, retrieved from there or moved between folders.

This plugin is currently mainly used by KMail, but you can also use it in any other KDE application that uses kioslave plugins.

For example in Konqueror, simply type imap://username@your.mail.server/ to get your IMAP folders listed. You can then deal with the folders and mails like with folders and files on a local file system. IMAP URLs are defined in RFC 2192.

imaps
 

imaps

Michael Haeckel


IMAPS is the IMAP protocol encrypted via SSL.

Info
 

Info

Lauri Watts


Info is a type of documentation. The documents are in a file format called texinfo, and can be read on the command line with the info program.

The Info ioslave allows you to read the info pages installed on your system, from within Konqueror. You can use it very easily:

info:/gcc

This would show you the top level node of the Info documentation for the gcc compiler.

Info is a GNU replacement for man, but is not widely used outside of GNU software.

You can quite easily browse the info documentation you have installed from within the KHelpCenter application, or you can use the info ioslave directly from within both Konqueror and the mini-cli.

lan
 

lan

Ferdinand Gassauer


This protocol is intended to provide a kind of “network neighborhood” but only relying on the TCP/IP protocol stack and with the ability to use other protocols than just SMB.

The lan kioslave can use FTP, HTTP, SMB, NFS, and FISH

It must first be configured in KControl, Network->LAN-Browsing and for more information see the Lan Browsing manual.

ldap
 

ldap

Lauri Watts


ldap is the lightweight directory access protocol. It provides access to an X.500 directory, or to a stand-alone LDAP server.

You can use the ldap kioslave as follows:

ldap://host:port/ou=People,o=where,c=de??sub for a subtree-query

or ldap://host:port/cn=MM,ou=People,o=where,c=de??base for a complete branch.

mailto
 

mailto

Ferdinand Gassauer


The mailto kioslave is used when you click on a mailto link in an HTML page. Konqueror will open the preferred mail client you have configured, with a composer window. Any information supplied in the URL will be filled in for you.

See the manual: mailto.

mac
 

mac

Johnathan Riddell


The mac ioslave lets you read an HFS+ partition from Konqueror or any other KDE file dialog. It uses hfsplus tools, so you will need these installed for it to work.

Enter mac:/ into Konqueror and you should see the contents of your Mac® OS partition. If you have not used kio-mac before, you will probably get an error message saying you have not specified the right partition. Enter something like mac:/?dev=/dev/hda2 to specify the partition (if you don't know which partition Mac® OS is on, you can probably guess by changing hda2 to hda3 and so on or use the print command from mac-fdisk). This partition will be used the next time, so you do not have to specify it each time.

Hfsplus tools let you see the file and copy data from the HFS+ partition, but not to copy data to it or change the filenames.

HFS+ actually keeps two files for every one you see (called forks), a resource fork and a data fork. The default copy mode when you are copying files across to your native drive is raw data, which means it only copies the data fork. Text files are copied in text mode (same as raw format but changes the line endings to be UNIX® friendly and gets rid of some extra characters - strongly advised for text files), unless you specify otherwise. You can also copy the files across in Mac Binary II format or specify text or raw format with another query: mac:/myfile?mode=b or mac:/myfile?mode=t. See the hpcopy man page for more.

Note that you need permissions to read your HFS+ partition. How you get this depends on your distribution.

For some reason some folders in Mac® OS end in a funny tall “f” character. This seems to confuse hfstools.

Man
 

Man

Lauri Watts


Using the man ioslave you are able to read the man pages installed on your system. It is easy to use:

man:/

See the sections of the manual, click to find the rest.

man:fopen

See the man page of fopen.

There is also a shortcut: #fopen, which has the same effect as above.

If you don't find all your man pages, adjust the environment variables MANPATH and MANSECT.

As with any other KDE ioslave, it is possible to enter a URL, like man:socket in any KDE application. Try it in KWrite and you will see the man page in HTML format.

Contact mailing list: <kde-devel@kde.org>

mrml
 

mrml

Carsten Pfeiffer


MRML stands for Multimedia Retrieval Markup Language. MRML is an XML-based protocol to provide standardized access to Multimedia retrieval software. See http://www.mrml.net for more information.

kio_mrml is used for the Image Finding feature in KDE

e.g. type mrml:/ or mrml:/some.other.server in Konqueror to start searching for images.

news
 

news

Lauri Watts


The news kioslave is used when you click on a news link on a web page. It will open KNode, and if the group referred to in the news link is available from your server, it will subscribe you to the group, in the first available account you have configured in KNode

You can unsubscribe from within KNode if you decide you don't want to read the group, by right clicking and selecting Unsubscribe from Group.

nfs
 

nfs

Lauri Watts


Sun's NFS protocol provides transparent remote access to shared file systems across networks. The NFS protocol is designed to be machine, operating system, network architecture, and transport protocol independent. This independence is achieved through the use of Remote Procedure Call (RPC) primitives built on top of an eXternal Data Representation (XDR).

The supporting MOUNT protocol performs the operating system-specific functions that allow clients to attach remote folder trees to a point within the local file system. The mount process also allows the server to grant remote access privileges to a restricted set of clients via export control.

The Lock Manager provides support for file locking when used in the NFS environment. The Network Lock Manager (NLM) protocol isolates the inherently stateful aspects of file locking into a separate protocol.

Source: http://www.networksorcery.com/enp/protocol/nfs.htm

See the manual: nfs.

nntp
 

nntp

Lauri Watts


The nntp kioslave accesses NNTP servers directly.

This kioslave can not be used with servers that do not implement the GROUP command, including some versions of the popular INN news server which is often used by ISPs. It does work with leafnode, which many people use to keep an offline cache of news articles on their own hard drive or within their LAN.

You can use the nntp kioslave by typing nntp://yourserver/groupname into the Konqueror URL bar.

If you enter a group name, as above, and the group is available, you will see the messages stored for that group as icons in Konqueror.

Clicking on a message will display it as plain text, including all headers. This could be useful for debugging a news client to news server connection, for example, to ensure that your new leafnode server is working correctly.

If you don't enter a group name, and only the server name, you will see a list of available groups.

Please be aware that this could take an enormous amount of time, and will cause a lot of network traffic. Some commercial usenet servers have 60,000 or more groups available, and doing such a thing may cause your desktop to freeze.

pop3
 

pop3

Ferdinand Gassauer


The Post Office Protocol (POP3) allows a user's workstation to access mail from a mailbox server.

pop3s
 

pop3s

Ferdinand Gassauer


POP3S is the POP3 protocol encrypted via SSL.

print
 

print

Kurt Pfeifle

Revision 1.00.00 (2002-06-23)

The print KIOSlave gives quick access to browse different KDEPrint sections via “virtual folders”. These folders provide some information about and quick access to your print subsystem.

print:/ represents one more of those useful KIOSlaves implemented by KDE. To access it, just type print:/ into the address field of Konqueror. print:/ doesn't purely provide “read-only” access to your print subsystem, but it also allows you to change settings of your printers, of your print system and lets you create new printers and classes.

You are asked for the Administrator or root password, if you are not allowed a view or an operation as a normal user.

You can bookmark frequently used shortcuts like print:/manager

Valid syntax is either print:/[path-to-virtual-folder] or print:[path-to-virtual-folder]

Note, that some of the views and actions offered do heavily depend on the print subsystem that is installed on your box and presently activated for KDE. Pages showing printer information display only those parts that are valid for the KDE selected print subsystem. (So if you normally run CUPS, but switched temporarily to “Generic UNIX LPD Printing”, which is possible, you will see less printer info, because LPD is not capable of using the same amount of print settings as are possible in CUPS).

Valid syntax to access different virtual folders and a short explanation of what they represent:

Some examples

print:/ (i.e. the root of print-kioslave)

virtual root for browsing your print subsystem. It displays subfolders “classes”, “printers”, “manager”, and “specials”

print:/classes or print:classes

view your printer classes (supported by and useful for CUPS only)

print:/classes/class_name or print:classes/class_name

view all members of the named printer class (supported by and useful only for CUPS)

print:/printers or print:printers

lists all your printers. Clicking on a printer name shows more info about that printer.

print:/printers/printer_name or print:printers/printer_name

displays useful info about the named printer

print:/manager or print:manager

opens a page very similar to the KDEPrint Manager module inside the KDE Control Center. Switch to a different printing system here or do every other administrative task.

This is the most important of access points to your printing system.

print:/specials or print:specials

lists all presently available “special printers”: Likely you'll see:

  • The two that let you save a printfile to disk, in PostScript® or PDF format.

  • One that sends it as a PDF attachment via KMail.

  • And last, send it via fax, if you have one of the supported fax backends active, Hylafax or efax.

Tip

You can also put print:/manager or similar as the command in the “Quick Command” utility (started via Alt+F2)

You can learn more about printing and KDEPrint's powerful abilities by reading the KDEPrint Handbook locally or at the KDEPrint Website where there are documents online (HTML and PDF),containing Tutorials, as well as FAQs and Tips and Tricks related to printing in general.

rlan
 

rlan

The KDE team


Not yet documented

rlogin
 

rlogin

Christian Bunting


Using Konqueror you can start up an rlogin session with a server hosting the rlogin service.

To use this kioslave feature, in the Konqueror URL bar, type rlogin:/host_to_connect_to

This will initialize Konsole with an rlogin session, prompting you for your password.

The rlogin kioslave uses the username of the account you are currently using in KDE.

After you have successfully entered your password, you can begin your remote session.

See the manual: rlogin.

sftp
 

sftp

Ferdinand Gassauer


SFTP is a Secure file transfer protocol. sftp is an interactive file transfer program, similar to ftp, but it performs all operations over an encrypted ssh transport. It may use many of the features of ssh, including public key authentication and compression.

See the manual: sftp.

SMB
 

SMB

Alexander Neundorf


The smb ioslave enables you to browse the shares of a Windows® (or Samba) network.

To see the workgroups, enter smb:/.

smb:/a_workgroup will list the hosts in this workgroup.

To see the shares of a host, enter smb://the_host or smb:/a_workgroup/the_host.

To access a share directly enter smb://the_host/the_share or smb:/a_workgroup/the_host/the_share

The smb ioslave is a wrapper around the command line tool smbclient, which is part of the Samba package. This means you need to have Samba installed to use this ioslave.

To be able to authenticate to Windows® NT Domain Controllers, you need at least Samba 2.0. To access the shares of Windows® 2000 machines, you need at least Samba 2.0.7. To be able to write to Windows shares, you need at least Samba 2.2.4 or the patch from http://lisa-home.sourceforge.net/smbclientpatch.html.

You can set your default user name and password in the KControl in Network->Windows Shares. This is especially useful if you are a member of a Windows® NT domain. There you can also set your workgroup name, but in most cases this is not required.

This ioslave is tested and developed using mainly Samba 2.0.7, but other versions of Samba should work too.

Author: Alexander Neundorf <neundorf@kde.org>

smtp
 

smtp

Ferdinand Gassauer


A protocol to send mail from the client workstation to the mail server.

See : Simple Mail Transfer Protocol .

tar
 

tar

Ferdinand Gassauer


An archiving program designed to store and extract files from an archive file known as a tarfile. A tarfile may be made on a tape drive, however, it is also common to write a tarfile to a normal file.

See the manual: tar.

telnet
 

telnet

Ferdinand Gassauer


The network terminal protocol (TELNET) allows a user to log in on any other computer on the network supporting TELNET.

See the manual: telnet.

thumbnail
 

thumbnail

Carsten Pfeiffer


The thumbnail kioslave is used by KDE for network transparent and persistent generation of thumbnails.

The thumbnail kioslave uses plugins to generate the actual thumbnails. You can enable viewing of these thumbnails from the View->Preview submenu, available in Konqueror in file manager mode.

The thumbnail kioslave is not directly useful to a user, but if you are a developer, you can use it within your own applications to create file previews.

See the documentation in the sources for more information. You will find these at $KDEDIR/include/kio/thumbcreator.h or in the source folder kdebase/kioslave/thumbnail

webdav
 

webdav

Hamish Rodda


WebDAV is a Distributed Authoring and Versioning protocol for the World Wide Web. It allows for easy management of documents and scripts on a http server, and has additional features designed to simplify version management amongst multiple authors.

Usage of this protocol is simple. Type the location you want to view, similar to a http URL except for the webdav:// protocol name at the start. An example is webdav://www.hostname.com/path/. If you specify a folder name, a list of files and folders will be displayed, and you can manipulate these folders and files just as you would with any other filesystem.

WebDAV Features

Locking

File locking allows users to lock a file, informing others that they are currently working on this file. This way, editing can be done without fear that the changes may be overwritten by another person who is also editing the same document.

Source file access

WebDAV allows access to the script which is called to produce a specific page, so changes can be made to the script itself.

Per-document property support

Arbitrary properties may be set to assist identification of a document, such as the author.

To take advantage of these additional capabilities, you will need an application which supports them. No application currently supports them through this kioslave.

webdavs
 

webdavs

Hamish Rodda


WebDAVS is the WebDAV protocol encrypted via SSL.