licenses.list.txt 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. ====================COPYRIGHT====================
  2. #define LOWER(c) (unsigned char)(c | 0x20)
  3. #define IS_ALPHA(c) (LOWER(c) >= 'a' && LOWER(c) <= 'z')
  4. #define IS_NUM(c) ((c) >= '0' && (c) <= '9')
  5. #define IS_ALPHANUM(c) (IS_ALPHA(c) || IS_NUM(c))
  6. #define IS_HEX(c) (IS_NUM(c) || (LOWER(c) >= 'a' && LOWER(c) <= 'f'))
  7. #define IS_MARK(c) ((c) == '-' || (c) == '_' || (c) == '.' || \
  8. (c) == '!' || (c) == '~' || (c) == '*' || (c) == '\'' || (c) == '(' || \
  9. (c) == ')')
  10. #define IS_USERINFO_CHAR(c) (IS_ALPHANUM(c) || IS_MARK(c) || (c) == '%' || \
  11. (c) == ';' || (c) == ':' || (c) == '&' || (c) == '=' || (c) == '+' || \
  12. (c) == '$' || (c) == ',')
  13. ====================COPYRIGHT====================
  14. /* Copyright Joyent, Inc. and other Node contributors.
  15. ====================File: AUTHORS====================
  16. # Authors ordered by first contribution.
  17. Ryan Dahl <ry@tinyclouds.org>
  18. Jeremy Hinegardner <jeremy@hinegardner.org>
  19. Sergey Shepelev <temotor@gmail.com>
  20. Joe Damato <ice799@gmail.com>
  21. tomika <tomika_nospam@freemail.hu>
  22. Phoenix Sol <phoenix@burninglabs.com>
  23. Cliff Frey <cliff@meraki.com>
  24. Ewen Cheslack-Postava <ewencp@cs.stanford.edu>
  25. Santiago Gala <sgala@apache.org>
  26. Tim Becker <tim.becker@syngenio.de>
  27. Jeff Terrace <jterrace@gmail.com>
  28. Ben Noordhuis <info@bnoordhuis.nl>
  29. Nathan Rajlich <nathan@tootallnate.net>
  30. Mark Nottingham <mnot@mnot.net>
  31. Aman Gupta <aman@tmm1.net>
  32. Tim Becker <tim.becker@kuriositaet.de>
  33. Sean Cunningham <sean.cunningham@mandiant.com>
  34. Peter Griess <pg@std.in>
  35. Salman Haq <salman.haq@asti-usa.com>
  36. Cliff Frey <clifffrey@gmail.com>
  37. Jon Kolb <jon@b0g.us>
  38. Fouad Mardini <f.mardini@gmail.com>
  39. Paul Querna <pquerna@apache.org>
  40. Felix Geisendörfer <felix@debuggable.com>
  41. koichik <koichik@improvement.jp>
  42. Andre Caron <andre.l.caron@gmail.com>
  43. Ivo Raisr <ivosh@ivosh.net>
  44. James McLaughlin <jamie@lacewing-project.org>
  45. David Gwynne <loki@animata.net>
  46. Thomas LE ROUX <thomas@november-eleven.fr>
  47. Randy Rizun <rrizun@ortivawireless.com>
  48. Andre Louis Caron <andre.louis.caron@usherbrooke.ca>
  49. Simon Zimmermann <simonz05@gmail.com>
  50. Erik Dubbelboer <erik@dubbelboer.com>
  51. Martell Malone <martellmalone@gmail.com>
  52. Bertrand Paquet <bpaquet@octo.com>
  53. BogDan Vatra <bogdan@kde.org>
  54. Peter Faiman <peter@thepicard.org>
  55. Corey Richardson <corey@octayn.net>
  56. Tóth Tamás <tomika_nospam@freemail.hu>
  57. Cam Swords <cam.swords@gmail.com>
  58. Chris Dickinson <christopher.s.dickinson@gmail.com>
  59. Uli Köhler <ukoehler@btronik.de>
  60. Charlie Somerville <charlie@charliesomerville.com>
  61. Patrik Stutz <patrik.stutz@gmail.com>
  62. Fedor Indutny <fedor.indutny@gmail.com>
  63. runner <runner.mei@gmail.com>
  64. Alexis Campailla <alexis@janeasystems.com>
  65. David Wragg <david@wragg.org>
  66. Vinnie Falco <vinnie.falco@gmail.com>
  67. Alex Butum <alexbutum@linux.com>
  68. Rex Feng <rexfeng@gmail.com>
  69. Alex Kocharin <alex@kocharin.ru>
  70. Mark Koopman <markmontymark@yahoo.com>
  71. Helge Heß <me@helgehess.eu>
  72. Alexis La Goutte <alexis.lagoutte@gmail.com>
  73. George Miroshnykov <george.miroshnykov@gmail.com>
  74. Maciej Małecki <me@mmalecki.com>
  75. Marc O'Morain <github.com@marcomorain.com>
  76. Jeff Pinner <jpinner@twitter.com>
  77. Timothy J Fontaine <tjfontaine@gmail.com>
  78. Akagi201 <akagi201@gmail.com>
  79. Romain Giraud <giraud.romain@gmail.com>
  80. Jay Satiro <raysatiro@yahoo.com>
  81. Arne Steen <Arne.Steen@gmx.de>
  82. Kjell Schubert <kjell.schubert@gmail.com>
  83. Olivier Mengué <dolmen@cpan.org>
  84. ====================MIT====================
  85. * Permission is hereby granted, free of charge, to any person obtaining a copy
  86. * of this software and associated documentation files (the "Software"), to
  87. * deal in the Software without restriction, including without limitation the
  88. * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  89. * sell copies of the Software, and to permit persons to whom the Software is
  90. * furnished to do so, subject to the following conditions:
  91. *
  92. * The above copyright notice and this permission notice shall be included in
  93. * all copies or substantial portions of the Software.
  94. *
  95. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  96. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  97. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  98. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  99. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  100. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  101. * IN THE SOFTWARE.
  102. ====================MIT====================
  103. Permission is hereby granted, free of charge, to any person obtaining a copy
  104. of this software and associated documentation files (the "Software"), to
  105. deal in the Software without restriction, including without limitation the
  106. rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  107. sell copies of the Software, and to permit persons to whom the Software is
  108. furnished to do so, subject to the following conditions:
  109. The above copyright notice and this permission notice shall be included in
  110. all copies or substantial portions of the Software.
  111. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  112. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  113. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  114. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  115. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  116. FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  117. IN THE SOFTWARE.