1 /* 2 * Copyright 2007, Haiku. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * François Revol, revol@free.fr 7 */ 8 9 #define APP_SIGNATURE "application/x-vnd.Haiku-urlwrapper" 10 11 /* NetPositive Bookmark file type */ 12 #define HANDLE_BOOKMARK_FILES 13 14 /* M$IE .url files */ 15 #define HANDLE_URL_FILES 16 17 /* file: redirects to Tracker */ 18 #define HANDLE_FILE 19 20 /* http: downloads with wget in a Terminal */ 21 #define HANDLE_HTTP_WGET 22 23 /* query: BeOS/Haiku-specific: this should allow putting queries in web pages :) */ 24 #define HANDLE_QUERY 25 26 /* mid: cid: as per RFC 2392 */ 27 /* http://www.rfc-editor.org/rfc/rfc2392.txt query MAIL:cid */ 28 /* UNIMPLEMENTED */ 29 //#define HANDLE_MID_CID 30 31 /* sh: executes a shell command (before warning user of danger) */ 32 #define HANDLE_SH 33 34 /* beshare: optionaly connect to a server and start a query */ 35 #define HANDLE_BESHARE 36 37 /* icq: msn: ... should open im_client to this user */ 38 /* UNIMPLEMENTED */ 39 //#define HANDLE_IM 40 41 /* mms: rtp: rtsp: opens the stream with VLC */ 42 #define HANDLE_VLC 43 44 /* audio: redirects SoundPlay-urls for shoutcast streams */ 45 /* UNIMPLEMENTED */ 46 //#define HANDLE_AUDIO 47 48