r21325: delete children in reverse order since the array is manipulated during the...
[Samba/gbeck.git] / webapps / qooxdoo-0.6.3-sdk / frontend / framework / source / class / qx / net / Protocol.js
blobf28f0770c44eaf07c90aefc18e533ab8b96c676c
1 /* ************************************************************************\r
2 \r
3    qooxdoo - the new era of web development\r
4 \r
5    http://qooxdoo.org\r
6 \r
7    Copyright:\r
8      2004-2006 by 1&1 Internet AG, Germany, http://www.1and1.org\r
9 \r
10    License:\r
11      LGPL 2.1: http://www.gnu.org/licenses/lgpl.html\r
13    Authors:\r
14      * Sebastian Werner (wpbasti)\r
15      * Andreas Ecker (ecker)\r
17 ************************************************************************ */\r
19 /* ************************************************************************\r
22 ************************************************************************ */\r
24 qx.OO.defineClass("qx.net.Protocol",\r
25 {\r
26   HTTP : "http",\r
27   HTTPS : "https",\r
28   FTP : "ftp",\r
29   FILE : "file",\r
31   URI_HTTP : "http://",\r
32   URI_HTTPS : "https://",\r
33   URI_FTP : "ftp://",\r
34   URI_FILE : "file://"\r
35 });\r