glib2 2.2.4-x64-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2228) hide show
  1. checksums.yaml +7 -0
  2. data/README +40 -0
  3. data/Rakefile +157 -0
  4. data/ext/glib2/depend +18 -0
  5. data/ext/glib2/extconf.rb +80 -0
  6. data/ext/glib2/glib2.def +147 -0
  7. data/ext/glib2/rbgcompat.h +29 -0
  8. data/ext/glib2/rbglib.c +1158 -0
  9. data/ext/glib2/rbglib.h +202 -0
  10. data/ext/glib2/rbglib2conversions.h +57 -0
  11. data/ext/glib2/rbglib_bookmarkfile.c +546 -0
  12. data/ext/glib2/rbglib_convert.c +197 -0
  13. data/ext/glib2/rbglib_error.c +164 -0
  14. data/ext/glib2/rbglib_fileutils.c +119 -0
  15. data/ext/glib2/rbglib_gettext.c +48 -0
  16. data/ext/glib2/rbglib_i18n.c +40 -0
  17. data/ext/glib2/rbglib_int64.c +165 -0
  18. data/ext/glib2/rbglib_io_constants.c +30 -0
  19. data/ext/glib2/rbglib_iochannel.c +824 -0
  20. data/ext/glib2/rbglib_iochannel_win32_socket.c +56 -0
  21. data/ext/glib2/rbglib_iochannelerror.c +49 -0
  22. data/ext/glib2/rbglib_keyfile.c +755 -0
  23. data/ext/glib2/rbglib_maincontext.c +565 -0
  24. data/ext/glib2/rbglib_mainloop.c +121 -0
  25. data/ext/glib2/rbglib_messages.c +148 -0
  26. data/ext/glib2/rbglib_pollfd.c +112 -0
  27. data/ext/glib2/rbglib_shell.c +64 -0
  28. data/ext/glib2/rbglib_shellerror.c +34 -0
  29. data/ext/glib2/rbglib_source.c +242 -0
  30. data/ext/glib2/rbglib_spawn.c +245 -0
  31. data/ext/glib2/rbglib_spawnerror.c +53 -0
  32. data/ext/glib2/rbglib_threads.c +61 -0
  33. data/ext/glib2/rbglib_timer.c +127 -0
  34. data/ext/glib2/rbglib_ucs4.c +79 -0
  35. data/ext/glib2/rbglib_unichar.c +201 -0
  36. data/ext/glib2/rbglib_unicode.c +90 -0
  37. data/ext/glib2/rbglib_utf16.c +78 -0
  38. data/ext/glib2/rbglib_utf8.c +257 -0
  39. data/ext/glib2/rbglib_utils.c +339 -0
  40. data/ext/glib2/rbglib_win32.c +112 -0
  41. data/ext/glib2/rbglibdeprecated.c +56 -0
  42. data/ext/glib2/rbglibdeprecated.h +34 -0
  43. data/ext/glib2/rbgobj_boxed.c +295 -0
  44. data/ext/glib2/rbgobj_closure.c +345 -0
  45. data/ext/glib2/rbgobj_convert.c +195 -0
  46. data/ext/glib2/rbgobj_enumflags.c +109 -0
  47. data/ext/glib2/rbgobj_enums.c +401 -0
  48. data/ext/glib2/rbgobj_flags.c +522 -0
  49. data/ext/glib2/rbgobj_object.c +885 -0
  50. data/ext/glib2/rbgobj_param.c +378 -0
  51. data/ext/glib2/rbgobj_paramspecs.c +311 -0
  52. data/ext/glib2/rbgobj_signal.c +978 -0
  53. data/ext/glib2/rbgobj_strv.c +44 -0
  54. data/ext/glib2/rbgobj_type.c +846 -0
  55. data/ext/glib2/rbgobj_typeinstance.c +128 -0
  56. data/ext/glib2/rbgobj_typeinterface.c +149 -0
  57. data/ext/glib2/rbgobj_typemodule.c +72 -0
  58. data/ext/glib2/rbgobj_typeplugin.c +57 -0
  59. data/ext/glib2/rbgobj_value.c +395 -0
  60. data/ext/glib2/rbgobj_valuearray.c +100 -0
  61. data/ext/glib2/rbgobj_valuetypes.c +243 -0
  62. data/ext/glib2/rbgobject.c +387 -0
  63. data/ext/glib2/rbgobject.h +301 -0
  64. data/ext/glib2/rbgprivate.h +178 -0
  65. data/ext/glib2/rbgutil.c +183 -0
  66. data/ext/glib2/rbgutil.h +119 -0
  67. data/ext/glib2/rbgutil_callback.c +272 -0
  68. data/ext/glib2/rbgutil_list.c +173 -0
  69. data/ext/glib2/rbgutil_list.h +85 -0
  70. data/ext/glib2/rbgutildeprecated.c +252 -0
  71. data/ext/glib2/rbgutildeprecated.h +63 -0
  72. data/extconf.rb +49 -0
  73. data/lib/2.0/glib2.so +0 -0
  74. data/lib/2.1/glib2.so +0 -0
  75. data/lib/2.2/glib2.so +0 -0
  76. data/lib/glib-mkenums.rb +214 -0
  77. data/lib/glib2.rb +231 -0
  78. data/lib/glib2/deprecatable.rb +153 -0
  79. data/lib/gnome2-raketask.rb +8 -0
  80. data/lib/gnome2/rake/external-package.rb +227 -0
  81. data/lib/gnome2/rake/native-binary-build-task.rb +129 -0
  82. data/lib/gnome2/rake/package-task.rb +273 -0
  83. data/lib/gnome2/rake/package.rb +152 -0
  84. data/lib/gnome2/rake/source-download-task.rb +82 -0
  85. data/lib/gnome2/rake/windows-binary-build-task.rb +303 -0
  86. data/lib/gnome2/rake/windows-binary-download-task.rb +181 -0
  87. data/lib/mkmf-gnome2.rb +637 -0
  88. data/sample/bookmarkfile.rb +66 -0
  89. data/sample/idle.rb +41 -0
  90. data/sample/iochannel.rb +44 -0
  91. data/sample/keyfile.rb +62 -0
  92. data/sample/shell.rb +36 -0
  93. data/sample/spawn.rb +25 -0
  94. data/sample/timeout.rb +28 -0
  95. data/sample/timeout2.rb +35 -0
  96. data/sample/timer.rb +40 -0
  97. data/sample/type-register.rb +103 -0
  98. data/sample/type-register2.rb +104 -0
  99. data/sample/utils.rb +54 -0
  100. data/test/glib-test-init.rb +5 -0
  101. data/test/glib-test-utils.rb +12 -0
  102. data/test/run-test.rb +21 -0
  103. data/test/test_enum.rb +99 -0
  104. data/test/test_file_utils.rb +53 -0
  105. data/test/test_flags.rb +129 -0
  106. data/test/test_glib2.rb +122 -0
  107. data/test/test_iochannel.rb +275 -0
  108. data/test/test_key_file.rb +42 -0
  109. data/test/test_mkenums.rb +25 -0
  110. data/test/test_poll_fd.rb +26 -0
  111. data/test/test_signal.rb +20 -0
  112. data/test/test_source.rb +63 -0
  113. data/test/test_spawn.rb +33 -0
  114. data/test/test_timeout.rb +28 -0
  115. data/test/test_unicode.rb +394 -0
  116. data/test/test_utils.rb +37 -0
  117. data/test/test_value.rb +31 -0
  118. data/test/test_win32.rb +13 -0
  119. data/vendor/local/bin/certtool.exe +0 -0
  120. data/vendor/local/bin/danetool.exe +0 -0
  121. data/vendor/local/bin/envsubst.exe +0 -0
  122. data/vendor/local/bin/gdbus-codegen +39 -0
  123. data/vendor/local/bin/gdbus.exe +0 -0
  124. data/vendor/local/bin/gettext.exe +0 -0
  125. data/vendor/local/bin/gettext.sh +121 -0
  126. data/vendor/local/bin/gio-querymodules.exe +0 -0
  127. data/vendor/local/bin/glib-compile-resources.exe +0 -0
  128. data/vendor/local/bin/glib-compile-schemas.exe +0 -0
  129. data/vendor/local/bin/glib-genmarshal.exe +0 -0
  130. data/vendor/local/bin/glib-gettextize +187 -0
  131. data/vendor/local/bin/glib-mkenums +565 -0
  132. data/vendor/local/bin/gnutls-cli-debug.exe +0 -0
  133. data/vendor/local/bin/gnutls-cli.exe +0 -0
  134. data/vendor/local/bin/gnutls-serv.exe +0 -0
  135. data/vendor/local/bin/gobject-query.exe +0 -0
  136. data/vendor/local/bin/gresource.exe +0 -0
  137. data/vendor/local/bin/gsettings.exe +0 -0
  138. data/vendor/local/bin/gspawn-win64-helper-console.exe +0 -0
  139. data/vendor/local/bin/gspawn-win64-helper.exe +0 -0
  140. data/vendor/local/bin/iconv.exe +0 -0
  141. data/vendor/local/bin/libasprintf-0.dll +0 -0
  142. data/vendor/local/bin/libcharset-1.dll +0 -0
  143. data/vendor/local/bin/libffi-6.dll +0 -0
  144. data/vendor/local/bin/libgio-2.0-0.dll +0 -0
  145. data/vendor/local/bin/libglib-2.0-0.dll +0 -0
  146. data/vendor/local/bin/libgmodule-2.0-0.dll +0 -0
  147. data/vendor/local/bin/libgmp-10.dll +0 -0
  148. data/vendor/local/bin/libgnutls-28.def +861 -0
  149. data/vendor/local/bin/libgnutls-28.dll +0 -0
  150. data/vendor/local/bin/libgnutls-openssl-27.dll +0 -0
  151. data/vendor/local/bin/libgnutls-openssl-28.def +228 -0
  152. data/vendor/local/bin/libgnutls-xssl-0.dll +0 -0
  153. data/vendor/local/bin/libgnutls-xssl-28.def +13 -0
  154. data/vendor/local/bin/libgobject-2.0-0.dll +0 -0
  155. data/vendor/local/bin/libgthread-2.0-0.dll +0 -0
  156. data/vendor/local/bin/libhogweed-2-5.dll +0 -0
  157. data/vendor/local/bin/libiconv-2.dll +0 -0
  158. data/vendor/local/bin/libintl-8.dll +0 -0
  159. data/vendor/local/bin/libnettle-4-7.dll +0 -0
  160. data/vendor/local/bin/nettle-hash.exe +0 -0
  161. data/vendor/local/bin/nettle-lfib-stream.exe +0 -0
  162. data/vendor/local/bin/ngettext.exe +0 -0
  163. data/vendor/local/bin/ocsptool.exe +0 -0
  164. data/vendor/local/bin/pkcs1-conv.exe +0 -0
  165. data/vendor/local/bin/psktool.exe +0 -0
  166. data/vendor/local/bin/sexp-conv.exe +0 -0
  167. data/vendor/local/bin/srptool.exe +0 -0
  168. data/vendor/local/include/autosprintf.h +67 -0
  169. data/vendor/local/include/gio-win32-2.0/gio/gwin32inputstream.h +82 -0
  170. data/vendor/local/include/gio-win32-2.0/gio/gwin32outputstream.h +81 -0
  171. data/vendor/local/include/glib-2.0/gio/gaction.h +98 -0
  172. data/vendor/local/include/glib-2.0/gio/gactiongroup.h +161 -0
  173. data/vendor/local/include/glib-2.0/gio/gactiongroupexporter.h +45 -0
  174. data/vendor/local/include/glib-2.0/gio/gactionmap.h +95 -0
  175. data/vendor/local/include/glib-2.0/gio/gappinfo.h +313 -0
  176. data/vendor/local/include/glib-2.0/gio/gapplication.h +236 -0
  177. data/vendor/local/include/glib-2.0/gio/gapplicationcommandline.h +122 -0
  178. data/vendor/local/include/glib-2.0/gio/gasyncinitable.h +124 -0
  179. data/vendor/local/include/glib-2.0/gio/gasyncresult.h +85 -0
  180. data/vendor/local/include/glib-2.0/gio/gbufferedinputstream.h +133 -0
  181. data/vendor/local/include/glib-2.0/gio/gbufferedoutputstream.h +86 -0
  182. data/vendor/local/include/glib-2.0/gio/gbytesicon.h +52 -0
  183. data/vendor/local/include/glib-2.0/gio/gcancellable.h +118 -0
  184. data/vendor/local/include/glib-2.0/gio/gcharsetconverter.h +63 -0
  185. data/vendor/local/include/glib-2.0/gio/gcontenttype.h +71 -0
  186. data/vendor/local/include/glib-2.0/gio/gconverter.h +96 -0
  187. data/vendor/local/include/glib-2.0/gio/gconverterinputstream.h +80 -0
  188. data/vendor/local/include/glib-2.0/gio/gconverteroutputstream.h +80 -0
  189. data/vendor/local/include/glib-2.0/gio/gcredentials.h +85 -0
  190. data/vendor/local/include/glib-2.0/gio/gdatainputstream.h +180 -0
  191. data/vendor/local/include/glib-2.0/gio/gdataoutputstream.h +125 -0
  192. data/vendor/local/include/glib-2.0/gio/gdbusactiongroup.h +54 -0
  193. data/vendor/local/include/glib-2.0/gio/gdbusaddress.h +65 -0
  194. data/vendor/local/include/glib-2.0/gio/gdbusauthobserver.h +51 -0
  195. data/vendor/local/include/glib-2.0/gio/gdbusconnection.h +663 -0
  196. data/vendor/local/include/glib-2.0/gio/gdbuserror.h +109 -0
  197. data/vendor/local/include/glib-2.0/gio/gdbusinterface.h +81 -0
  198. data/vendor/local/include/glib-2.0/gio/gdbusinterfaceskeleton.h +127 -0
  199. data/vendor/local/include/glib-2.0/gio/gdbusintrospection.h +325 -0
  200. data/vendor/local/include/glib-2.0/gio/gdbusmenumodel.h +45 -0
  201. data/vendor/local/include/glib-2.0/gio/gdbusmessage.h +197 -0
  202. data/vendor/local/include/glib-2.0/gio/gdbusmethodinvocation.h +97 -0
  203. data/vendor/local/include/glib-2.0/gio/gdbusnameowning.h +115 -0
  204. data/vendor/local/include/glib-2.0/gio/gdbusnamewatching.h +102 -0
  205. data/vendor/local/include/glib-2.0/gio/gdbusobject.h +78 -0
  206. data/vendor/local/include/glib-2.0/gio/gdbusobjectmanager.h +94 -0
  207. data/vendor/local/include/glib-2.0/gio/gdbusobjectmanagerclient.h +146 -0
  208. data/vendor/local/include/glib-2.0/gio/gdbusobjectmanagerserver.h +93 -0
  209. data/vendor/local/include/glib-2.0/gio/gdbusobjectproxy.h +79 -0
  210. data/vendor/local/include/glib-2.0/gio/gdbusobjectskeleton.h +96 -0
  211. data/vendor/local/include/glib-2.0/gio/gdbusproxy.h +214 -0
  212. data/vendor/local/include/glib-2.0/gio/gdbusserver.h +60 -0
  213. data/vendor/local/include/glib-2.0/gio/gdbusutils.h +55 -0
  214. data/vendor/local/include/glib-2.0/gio/gdrive.h +259 -0
  215. data/vendor/local/include/glib-2.0/gio/gemblem.h +61 -0
  216. data/vendor/local/include/glib-2.0/gio/gemblemedicon.h +81 -0
  217. data/vendor/local/include/glib-2.0/gio/gfile.h +1250 -0
  218. data/vendor/local/include/glib-2.0/gio/gfileattribute.h +84 -0
  219. data/vendor/local/include/glib-2.0/gio/gfileenumerator.h +144 -0
  220. data/vendor/local/include/glib-2.0/gio/gfileicon.h +57 -0
  221. data/vendor/local/include/glib-2.0/gio/gfileinfo.h +1070 -0
  222. data/vendor/local/include/glib-2.0/gio/gfileinputstream.h +114 -0
  223. data/vendor/local/include/glib-2.0/gio/gfileiostream.h +121 -0
  224. data/vendor/local/include/glib-2.0/gio/gfilemonitor.h +98 -0
  225. data/vendor/local/include/glib-2.0/gio/gfilenamecompleter.h +79 -0
  226. data/vendor/local/include/glib-2.0/gio/gfileoutputstream.h +122 -0
  227. data/vendor/local/include/glib-2.0/gio/gfilterinputstream.h +78 -0
  228. data/vendor/local/include/glib-2.0/gio/gfilteroutputstream.h +78 -0
  229. data/vendor/local/include/glib-2.0/gio/gicon.h +101 -0
  230. data/vendor/local/include/glib-2.0/gio/ginetaddress.h +124 -0
  231. data/vendor/local/include/glib-2.0/gio/ginetaddressmask.h +85 -0
  232. data/vendor/local/include/glib-2.0/gio/ginetsocketaddress.h +78 -0
  233. data/vendor/local/include/glib-2.0/gio/ginitable.h +99 -0
  234. data/vendor/local/include/glib-2.0/gio/ginputstream.h +201 -0
  235. data/vendor/local/include/glib-2.0/gio/gio.h +167 -0
  236. data/vendor/local/include/glib-2.0/gio/gioenums.h +1816 -0
  237. data/vendor/local/include/glib-2.0/gio/gioenumtypes.h +167 -0
  238. data/vendor/local/include/glib-2.0/gio/gioerror.h +53 -0
  239. data/vendor/local/include/glib-2.0/gio/giomodule.h +169 -0
  240. data/vendor/local/include/glib-2.0/gio/gioscheduler.h +54 -0
  241. data/vendor/local/include/glib-2.0/gio/giostream.h +135 -0
  242. data/vendor/local/include/glib-2.0/gio/giotypes.h +535 -0
  243. data/vendor/local/include/glib-2.0/gio/gloadableicon.h +99 -0
  244. data/vendor/local/include/glib-2.0/gio/gmemoryinputstream.h +90 -0
  245. data/vendor/local/include/glib-2.0/gio/gmemoryoutputstream.h +107 -0
  246. data/vendor/local/include/glib-2.0/gio/gmenu.h +182 -0
  247. data/vendor/local/include/glib-2.0/gio/gmenuexporter.h +40 -0
  248. data/vendor/local/include/glib-2.0/gio/gmenumodel.h +305 -0
  249. data/vendor/local/include/glib-2.0/gio/gmount.h +276 -0
  250. data/vendor/local/include/glib-2.0/gio/gmountoperation.h +140 -0
  251. data/vendor/local/include/glib-2.0/gio/gnativevolumemonitor.h +61 -0
  252. data/vendor/local/include/glib-2.0/gio/gnetworkaddress.h +78 -0
  253. data/vendor/local/include/glib-2.0/gio/gnetworking.h +82 -0
  254. data/vendor/local/include/glib-2.0/gio/gnetworkmonitor.h +93 -0
  255. data/vendor/local/include/glib-2.0/gio/gnetworkservice.h +76 -0
  256. data/vendor/local/include/glib-2.0/gio/gnotification.h +97 -0
  257. data/vendor/local/include/glib-2.0/gio/goutputstream.h +254 -0
  258. data/vendor/local/include/glib-2.0/gio/gpermission.h +127 -0
  259. data/vendor/local/include/glib-2.0/gio/gpollableinputstream.h +105 -0
  260. data/vendor/local/include/glib-2.0/gio/gpollableoutputstream.h +105 -0
  261. data/vendor/local/include/glib-2.0/gio/gpollableutils.h +64 -0
  262. data/vendor/local/include/glib-2.0/gio/gpropertyaction.h +47 -0
  263. data/vendor/local/include/glib-2.0/gio/gproxy.h +128 -0
  264. data/vendor/local/include/glib-2.0/gio/gproxyaddress.h +86 -0
  265. data/vendor/local/include/glib-2.0/gio/gproxyaddressenumerator.h +74 -0
  266. data/vendor/local/include/glib-2.0/gio/gproxyresolver.h +95 -0
  267. data/vendor/local/include/glib-2.0/gio/gremoteactiongroup.h +75 -0
  268. data/vendor/local/include/glib-2.0/gio/gresolver.h +212 -0
  269. data/vendor/local/include/glib-2.0/gio/gresource.h +129 -0
  270. data/vendor/local/include/glib-2.0/gio/gseekable.h +103 -0
  271. data/vendor/local/include/glib-2.0/gio/gsettings.h +331 -0
  272. data/vendor/local/include/glib-2.0/gio/gsettingsbackend.h +158 -0
  273. data/vendor/local/include/glib-2.0/gio/gsettingsschema.h +104 -0
  274. data/vendor/local/include/glib-2.0/gio/gsimpleaction.h +59 -0
  275. data/vendor/local/include/glib-2.0/gio/gsimpleactiongroup.h +97 -0
  276. data/vendor/local/include/glib-2.0/gio/gsimpleasyncresult.h +162 -0
  277. data/vendor/local/include/glib-2.0/gio/gsimplepermission.h +45 -0
  278. data/vendor/local/include/glib-2.0/gio/gsimpleproxyresolver.h +89 -0
  279. data/vendor/local/include/glib-2.0/gio/gsocket.h +289 -0
  280. data/vendor/local/include/glib-2.0/gio/gsocketaddress.h +82 -0
  281. data/vendor/local/include/glib-2.0/gio/gsocketaddressenumerator.h +91 -0
  282. data/vendor/local/include/glib-2.0/gio/gsocketclient.h +197 -0
  283. data/vendor/local/include/glib-2.0/gio/gsocketconnectable.h +75 -0
  284. data/vendor/local/include/glib-2.0/gio/gsocketconnection.h +115 -0
  285. data/vendor/local/include/glib-2.0/gio/gsocketcontrolmessage.h +109 -0
  286. data/vendor/local/include/glib-2.0/gio/gsocketlistener.h +150 -0
  287. data/vendor/local/include/glib-2.0/gio/gsocketservice.h +91 -0
  288. data/vendor/local/include/glib-2.0/gio/gsrvtarget.h +59 -0
  289. data/vendor/local/include/glib-2.0/gio/gsubprocess.h +167 -0
  290. data/vendor/local/include/glib-2.0/gio/gsubprocesslauncher.h +116 -0
  291. data/vendor/local/include/glib-2.0/gio/gtask.h +158 -0
  292. data/vendor/local/include/glib-2.0/gio/gtcpconnection.h +69 -0
  293. data/vendor/local/include/glib-2.0/gio/gtcpwrapperconnection.h +69 -0
  294. data/vendor/local/include/glib-2.0/gio/gtestdbus.h +72 -0
  295. data/vendor/local/include/glib-2.0/gio/gthemedicon.h +68 -0
  296. data/vendor/local/include/glib-2.0/gio/gthreadedsocketservice.h +81 -0
  297. data/vendor/local/include/glib-2.0/gio/gtlsbackend.h +96 -0
  298. data/vendor/local/include/glib-2.0/gio/gtlscertificate.h +92 -0
  299. data/vendor/local/include/glib-2.0/gio/gtlsclientconnection.h +71 -0
  300. data/vendor/local/include/glib-2.0/gio/gtlsconnection.h +154 -0
  301. data/vendor/local/include/glib-2.0/gio/gtlsdatabase.h +247 -0
  302. data/vendor/local/include/glib-2.0/gio/gtlsfiledatabase.h +58 -0
  303. data/vendor/local/include/glib-2.0/gio/gtlsinteraction.h +148 -0
  304. data/vendor/local/include/glib-2.0/gio/gtlspassword.h +110 -0
  305. data/vendor/local/include/glib-2.0/gio/gtlsserverconnection.h +61 -0
  306. data/vendor/local/include/glib-2.0/gio/gvfs.h +132 -0
  307. data/vendor/local/include/glib-2.0/gio/gvolume.h +251 -0
  308. data/vendor/local/include/glib-2.0/gio/gvolumemonitor.h +154 -0
  309. data/vendor/local/include/glib-2.0/gio/gzlibcompressor.h +62 -0
  310. data/vendor/local/include/glib-2.0/gio/gzlibdecompressor.h +58 -0
  311. data/vendor/local/include/glib-2.0/glib-object.h +40 -0
  312. data/vendor/local/include/glib-2.0/glib-unix.h +119 -0
  313. data/vendor/local/include/glib-2.0/glib.h +112 -0
  314. data/vendor/local/include/glib-2.0/glib/deprecated/gallocator.h +88 -0
  315. data/vendor/local/include/glib-2.0/glib/deprecated/gcache.h +75 -0
  316. data/vendor/local/include/glib-2.0/glib/deprecated/gcompletion.h +83 -0
  317. data/vendor/local/include/glib-2.0/glib/deprecated/gmain.h +139 -0
  318. data/vendor/local/include/glib-2.0/glib/deprecated/grel.h +105 -0
  319. data/vendor/local/include/glib-2.0/glib/deprecated/gthread.h +293 -0
  320. data/vendor/local/include/glib-2.0/glib/galloca.h +103 -0
  321. data/vendor/local/include/glib-2.0/glib/garray.h +238 -0
  322. data/vendor/local/include/glib-2.0/glib/gasyncqueue.h +109 -0
  323. data/vendor/local/include/glib-2.0/glib/gatomic.h +281 -0
  324. data/vendor/local/include/glib-2.0/glib/gbacktrace.h +64 -0
  325. data/vendor/local/include/glib-2.0/glib/gbase64.h +61 -0
  326. data/vendor/local/include/glib-2.0/glib/gbitlock.h +76 -0
  327. data/vendor/local/include/glib-2.0/glib/gbookmarkfile.h +255 -0
  328. data/vendor/local/include/glib-2.0/glib/gbytes.h +90 -0
  329. data/vendor/local/include/glib-2.0/glib/gcharset.h +43 -0
  330. data/vendor/local/include/glib-2.0/glib/gchecksum.h +101 -0
  331. data/vendor/local/include/glib-2.0/glib/gconvert.h +199 -0
  332. data/vendor/local/include/glib-2.0/glib/gdataset.h +150 -0
  333. data/vendor/local/include/glib-2.0/glib/gdate.h +309 -0
  334. data/vendor/local/include/glib-2.0/glib/gdatetime.h +264 -0
  335. data/vendor/local/include/glib-2.0/glib/gdir.h +64 -0
  336. data/vendor/local/include/glib-2.0/glib/genviron.h +78 -0
  337. data/vendor/local/include/glib-2.0/glib/gerror.h +118 -0
  338. data/vendor/local/include/glib-2.0/glib/gfileutils.h +207 -0
  339. data/vendor/local/include/glib-2.0/glib/ggettext.h +63 -0
  340. data/vendor/local/include/glib-2.0/glib/ghash.h +185 -0
  341. data/vendor/local/include/glib-2.0/glib/ghmac.h +78 -0
  342. data/vendor/local/include/glib-2.0/glib/ghook.h +202 -0
  343. data/vendor/local/include/glib-2.0/glib/ghostutils.h +43 -0
  344. data/vendor/local/include/glib-2.0/glib/gi18n-lib.h +36 -0
  345. data/vendor/local/include/glib-2.0/glib/gi18n.h +32 -0
  346. data/vendor/local/include/glib-2.0/glib/giochannel.h +413 -0
  347. data/vendor/local/include/glib-2.0/glib/gkeyfile.h +320 -0
  348. data/vendor/local/include/glib-2.0/glib/glist.h +152 -0
  349. data/vendor/local/include/glib-2.0/glib/gmacros.h +366 -0
  350. data/vendor/local/include/glib-2.0/glib/gmain.h +614 -0
  351. data/vendor/local/include/glib-2.0/glib/gmappedfile.h +58 -0
  352. data/vendor/local/include/glib-2.0/glib/gmarkup.h +262 -0
  353. data/vendor/local/include/glib-2.0/glib/gmem.h +298 -0
  354. data/vendor/local/include/glib-2.0/glib/gmessages.h +407 -0
  355. data/vendor/local/include/glib-2.0/glib/gnode.h +322 -0
  356. data/vendor/local/include/glib-2.0/glib/goption.h +377 -0
  357. data/vendor/local/include/glib-2.0/glib/gpattern.h +53 -0
  358. data/vendor/local/include/glib-2.0/glib/gpoll.h +127 -0
  359. data/vendor/local/include/glib-2.0/glib/gprimes.h +50 -0
  360. data/vendor/local/include/glib-2.0/glib/gprintf.h +57 -0
  361. data/vendor/local/include/glib-2.0/glib/gqsort.h +45 -0
  362. data/vendor/local/include/glib-2.0/glib/gquark.h +68 -0
  363. data/vendor/local/include/glib-2.0/glib/gqueue.h +190 -0
  364. data/vendor/local/include/glib-2.0/glib/grand.h +99 -0
  365. data/vendor/local/include/glib-2.0/glib/gregex.h +610 -0
  366. data/vendor/local/include/glib-2.0/glib/gscanner.h +303 -0
  367. data/vendor/local/include/glib-2.0/glib/gsequence.h +171 -0
  368. data/vendor/local/include/glib-2.0/glib/gshell.h +59 -0
  369. data/vendor/local/include/glib-2.0/glib/gslice.h +98 -0
  370. data/vendor/local/include/glib-2.0/glib/gslist.h +143 -0
  371. data/vendor/local/include/glib-2.0/glib/gspawn.h +307 -0
  372. data/vendor/local/include/glib-2.0/glib/gstdio.h +171 -0
  373. data/vendor/local/include/glib-2.0/glib/gstrfuncs.h +306 -0
  374. data/vendor/local/include/glib-2.0/glib/gstring.h +189 -0
  375. data/vendor/local/include/glib-2.0/glib/gstringchunk.h +57 -0
  376. data/vendor/local/include/glib-2.0/glib/gtestutils.h +421 -0
  377. data/vendor/local/include/glib-2.0/glib/gthread.h +271 -0
  378. data/vendor/local/include/glib-2.0/glib/gthreadpool.h +92 -0
  379. data/vendor/local/include/glib-2.0/glib/gtimer.h +74 -0
  380. data/vendor/local/include/glib-2.0/glib/gtimezone.h +89 -0
  381. data/vendor/local/include/glib-2.0/glib/gtrashstack.h +101 -0
  382. data/vendor/local/include/glib-2.0/glib/gtree.h +104 -0
  383. data/vendor/local/include/glib-2.0/glib/gtypes.h +482 -0
  384. data/vendor/local/include/glib-2.0/glib/gunicode.h +860 -0
  385. data/vendor/local/include/glib-2.0/glib/gurifuncs.h +83 -0
  386. data/vendor/local/include/glib-2.0/glib/gutils.h +374 -0
  387. data/vendor/local/include/glib-2.0/glib/gvariant.h +452 -0
  388. data/vendor/local/include/glib-2.0/glib/gvarianttype.h +380 -0
  389. data/vendor/local/include/glib-2.0/glib/gversion.h +55 -0
  390. data/vendor/local/include/glib-2.0/glib/gversionmacros.h +345 -0
  391. data/vendor/local/include/glib-2.0/glib/gwin32.h +134 -0
  392. data/vendor/local/include/glib-2.0/gmodule.h +115 -0
  393. data/vendor/local/include/glib-2.0/gobject/gbinding.h +149 -0
  394. data/vendor/local/include/glib-2.0/gobject/gboxed.h +122 -0
  395. data/vendor/local/include/glib-2.0/gobject/gclosure.h +297 -0
  396. data/vendor/local/include/glib-2.0/gobject/genums.h +273 -0
  397. data/vendor/local/include/glib-2.0/gobject/glib-types.h +358 -0
  398. data/vendor/local/include/glib-2.0/gobject/gmarshal.h +385 -0
  399. data/vendor/local/include/glib-2.0/gobject/gobject.h +672 -0
  400. data/vendor/local/include/glib-2.0/gobject/gobjectnotifyqueue.c +197 -0
  401. data/vendor/local/include/glib-2.0/gobject/gparam.h +447 -0
  402. data/vendor/local/include/glib-2.0/gobject/gparamspecs.h +1164 -0
  403. data/vendor/local/include/glib-2.0/gobject/gsignal.h +604 -0
  404. data/vendor/local/include/glib-2.0/gobject/gsourceclosure.h +38 -0
  405. data/vendor/local/include/glib-2.0/gobject/gtype.h +1990 -0
  406. data/vendor/local/include/glib-2.0/gobject/gtypemodule.h +278 -0
  407. data/vendor/local/include/glib-2.0/gobject/gtypeplugin.h +134 -0
  408. data/vendor/local/include/glib-2.0/gobject/gvalue.h +194 -0
  409. data/vendor/local/include/glib-2.0/gobject/gvaluearray.h +104 -0
  410. data/vendor/local/include/glib-2.0/gobject/gvaluecollector.h +254 -0
  411. data/vendor/local/include/glib-2.0/gobject/gvaluetypes.h +300 -0
  412. data/vendor/local/include/gmp.h +2301 -0
  413. data/vendor/local/include/gnutls/abstract.h +454 -0
  414. data/vendor/local/include/gnutls/compat.h +401 -0
  415. data/vendor/local/include/gnutls/crypto.h +117 -0
  416. data/vendor/local/include/gnutls/dtls.h +92 -0
  417. data/vendor/local/include/gnutls/gnutls.h +2299 -0
  418. data/vendor/local/include/gnutls/ocsp.h +257 -0
  419. data/vendor/local/include/gnutls/openpgp.h +366 -0
  420. data/vendor/local/include/gnutls/openssl.h +329 -0
  421. data/vendor/local/include/gnutls/pkcs11.h +356 -0
  422. data/vendor/local/include/gnutls/pkcs12.h +135 -0
  423. data/vendor/local/include/gnutls/tpm.h +79 -0
  424. data/vendor/local/include/gnutls/x509.h +1192 -0
  425. data/vendor/local/include/gnutls/xssl.h +125 -0
  426. data/vendor/local/include/iconv.h +242 -0
  427. data/vendor/local/include/libcharset.h +46 -0
  428. data/vendor/local/include/libintl.h +464 -0
  429. data/vendor/local/include/localcharset.h +42 -0
  430. data/vendor/local/include/nettle/aes.h +85 -0
  431. data/vendor/local/include/nettle/arcfour.h +66 -0
  432. data/vendor/local/include/nettle/arctwo.h +82 -0
  433. data/vendor/local/include/nettle/asn1.h +144 -0
  434. data/vendor/local/include/nettle/base16.h +106 -0
  435. data/vendor/local/include/nettle/base64.h +153 -0
  436. data/vendor/local/include/nettle/bignum.h +121 -0
  437. data/vendor/local/include/nettle/blowfish.h +76 -0
  438. data/vendor/local/include/nettle/buffer.h +98 -0
  439. data/vendor/local/include/nettle/camellia.h +82 -0
  440. data/vendor/local/include/nettle/cast128.h +77 -0
  441. data/vendor/local/include/nettle/cbc.h +76 -0
  442. data/vendor/local/include/nettle/ctr.h +62 -0
  443. data/vendor/local/include/nettle/des-compat.h +154 -0
  444. data/vendor/local/include/nettle/des.h +111 -0
  445. data/vendor/local/include/nettle/dsa.h +293 -0
  446. data/vendor/local/include/nettle/ecc-curve.h +45 -0
  447. data/vendor/local/include/nettle/ecc.h +261 -0
  448. data/vendor/local/include/nettle/ecdsa.h +94 -0
  449. data/vendor/local/include/nettle/gcm.h +186 -0
  450. data/vendor/local/include/nettle/gosthash94.h +88 -0
  451. data/vendor/local/include/nettle/hmac.h +202 -0
  452. data/vendor/local/include/nettle/knuth-lfib.h +75 -0
  453. data/vendor/local/include/nettle/macros.h +238 -0
  454. data/vendor/local/include/nettle/md2.h +69 -0
  455. data/vendor/local/include/nettle/md4.h +73 -0
  456. data/vendor/local/include/nettle/md5-compat.h +50 -0
  457. data/vendor/local/include/nettle/md5.h +76 -0
  458. data/vendor/local/include/nettle/memxor.h +22 -0
  459. data/vendor/local/include/nettle/nettle-meta.h +232 -0
  460. data/vendor/local/include/nettle/nettle-stdint.h +286 -0
  461. data/vendor/local/include/nettle/nettle-types.h +92 -0
  462. data/vendor/local/include/nettle/pbkdf2.h +77 -0
  463. data/vendor/local/include/nettle/pgp.h +240 -0
  464. data/vendor/local/include/nettle/pkcs1.h +106 -0
  465. data/vendor/local/include/nettle/realloc.h +41 -0
  466. data/vendor/local/include/nettle/ripemd160.h +78 -0
  467. data/vendor/local/include/nettle/rsa-compat.h +131 -0
  468. data/vendor/local/include/nettle/rsa.h +419 -0
  469. data/vendor/local/include/nettle/salsa20.h +93 -0
  470. data/vendor/local/include/nettle/serpent.h +81 -0
  471. data/vendor/local/include/nettle/sexp.h +212 -0
  472. data/vendor/local/include/nettle/sha.h +34 -0
  473. data/vendor/local/include/nettle/sha1.h +78 -0
  474. data/vendor/local/include/nettle/sha2.h +156 -0
  475. data/vendor/local/include/nettle/sha3.h +176 -0
  476. data/vendor/local/include/nettle/twofish.h +78 -0
  477. data/vendor/local/include/nettle/umac.h +241 -0
  478. data/vendor/local/include/nettle/yarrow.h +137 -0
  479. data/vendor/local/lib/charset.alias +4 -0
  480. data/vendor/local/lib/gio/modules/libgiognutls.a +0 -0
  481. data/vendor/local/lib/gio/modules/libgiognutls.dll +0 -0
  482. data/vendor/local/lib/gio/modules/libgiognutls.dll.a +0 -0
  483. data/vendor/local/lib/gio/modules/libgiognutls.la +41 -0
  484. data/vendor/local/lib/glib-2.0/include/glibconfig.h +199 -0
  485. data/vendor/local/lib/gthread-2.0.def +3 -0
  486. data/vendor/local/lib/libasprintf.a +0 -0
  487. data/vendor/local/lib/libasprintf.dll.a +0 -0
  488. data/vendor/local/lib/libasprintf.la +41 -0
  489. data/vendor/local/lib/libcharset.a +0 -0
  490. data/vendor/local/lib/libcharset.dll.a +0 -0
  491. data/vendor/local/lib/libcharset.la +41 -0
  492. data/vendor/local/lib/libffi-3.2.1/include/ffi.h +487 -0
  493. data/vendor/local/lib/libffi-3.2.1/include/ffitarget.h +150 -0
  494. data/vendor/local/lib/libffi.a +0 -0
  495. data/vendor/local/lib/libffi.dll.a +0 -0
  496. data/vendor/local/lib/libffi.la +41 -0
  497. data/vendor/local/lib/libgio-2.0.dll.a +0 -0
  498. data/vendor/local/lib/libgio-2.0.la +41 -0
  499. data/vendor/local/lib/libglib-2.0.dll.a +0 -0
  500. data/vendor/local/lib/libglib-2.0.la +41 -0
  501. data/vendor/local/lib/libgmodule-2.0.dll.a +0 -0
  502. data/vendor/local/lib/libgmodule-2.0.la +41 -0
  503. data/vendor/local/lib/libgmp.dll.a +0 -0
  504. data/vendor/local/lib/libgmp.la +41 -0
  505. data/vendor/local/lib/libgnutls-openssl.a +0 -0
  506. data/vendor/local/lib/libgnutls-openssl.dll.a +0 -0
  507. data/vendor/local/lib/libgnutls-openssl.la +41 -0
  508. data/vendor/local/lib/libgnutls-xssl.a +0 -0
  509. data/vendor/local/lib/libgnutls-xssl.dll.a +0 -0
  510. data/vendor/local/lib/libgnutls-xssl.la +41 -0
  511. data/vendor/local/lib/libgnutls.a +0 -0
  512. data/vendor/local/lib/libgnutls.dll.a +0 -0
  513. data/vendor/local/lib/libgnutls.la +41 -0
  514. data/vendor/local/lib/libgobject-2.0.dll.a +0 -0
  515. data/vendor/local/lib/libgobject-2.0.la +41 -0
  516. data/vendor/local/lib/libgthread-2.0.dll.a +0 -0
  517. data/vendor/local/lib/libgthread-2.0.la +41 -0
  518. data/vendor/local/lib/libhogweed.a +0 -0
  519. data/vendor/local/lib/libhogweed.dll.a +0 -0
  520. data/vendor/local/lib/libiconv.dll.a +0 -0
  521. data/vendor/local/lib/libiconv.la +41 -0
  522. data/vendor/local/lib/libintl.a +0 -0
  523. data/vendor/local/lib/libintl.dll.a +0 -0
  524. data/vendor/local/lib/libintl.la +41 -0
  525. data/vendor/local/lib/libnettle.a +0 -0
  526. data/vendor/local/lib/libnettle.dll.a +0 -0
  527. data/vendor/local/lib/pkgconfig/gio-2.0.pc +18 -0
  528. data/vendor/local/lib/pkgconfig/gio-windows-2.0.pc +11 -0
  529. data/vendor/local/lib/pkgconfig/glib-2.0.pc +16 -0
  530. data/vendor/local/lib/pkgconfig/gmodule-2.0.pc +14 -0
  531. data/vendor/local/lib/pkgconfig/gmodule-export-2.0.pc +14 -0
  532. data/vendor/local/lib/pkgconfig/gmodule-no-export-2.0.pc +14 -0
  533. data/vendor/local/lib/pkgconfig/gnutls.pc +24 -0
  534. data/vendor/local/lib/pkgconfig/gobject-2.0.pc +12 -0
  535. data/vendor/local/lib/pkgconfig/gthread-2.0.pc +11 -0
  536. data/vendor/local/lib/pkgconfig/hogweed.pc +18 -0
  537. data/vendor/local/lib/pkgconfig/libffi.pc +11 -0
  538. data/vendor/local/lib/pkgconfig/nettle.pc +11 -0
  539. data/vendor/local/lib/pkgconfig/patched +0 -0
  540. data/vendor/local/share/aclocal/glib-2.0.m4 +211 -0
  541. data/vendor/local/share/aclocal/glib-gettext.m4 +435 -0
  542. data/vendor/local/share/aclocal/gsettings.m4 +83 -0
  543. data/vendor/local/share/bash-completion/completions/gapplication +55 -0
  544. data/vendor/local/share/bash-completion/completions/gdbus +33 -0
  545. data/vendor/local/share/bash-completion/completions/gresource +58 -0
  546. data/vendor/local/share/bash-completion/completions/gsettings +84 -0
  547. data/vendor/local/share/doc/gettext/bind_textdomain_codeset.3.html +158 -0
  548. data/vendor/local/share/doc/gettext/bindtextdomain.3.html +154 -0
  549. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext.html +8 -0
  550. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceManager.html +305 -0
  551. data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceSet.html +356 -0
  552. data/vendor/local/share/doc/gettext/csharpdoc/begin.html +11 -0
  553. data/vendor/local/share/doc/gettext/csharpdoc/index.html +10 -0
  554. data/vendor/local/share/doc/gettext/csharpdoc/namespaces.html +6 -0
  555. data/vendor/local/share/doc/gettext/envsubst.1.html +139 -0
  556. data/vendor/local/share/doc/gettext/gettext.1.html +188 -0
  557. data/vendor/local/share/doc/gettext/gettext.3.html +182 -0
  558. data/vendor/local/share/doc/gettext/javadoc2/allclasses-frame.html +25 -0
  559. data/vendor/local/share/doc/gettext/javadoc2/deprecated-list.html +87 -0
  560. data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/GettextResource.html +321 -0
  561. data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/package-frame.html +26 -0
  562. data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/package-summary.html +103 -0
  563. data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/package-tree.html +99 -0
  564. data/vendor/local/share/doc/gettext/javadoc2/help-doc.html +136 -0
  565. data/vendor/local/share/doc/gettext/javadoc2/index-all.html +111 -0
  566. data/vendor/local/share/doc/gettext/javadoc2/index.html +22 -0
  567. data/vendor/local/share/doc/gettext/javadoc2/overview-tree.html +96 -0
  568. data/vendor/local/share/doc/gettext/javadoc2/package-list +1 -0
  569. data/vendor/local/share/doc/gettext/javadoc2/packages.html +26 -0
  570. data/vendor/local/share/doc/gettext/javadoc2/serialized-form.html +87 -0
  571. data/vendor/local/share/doc/gettext/javadoc2/stylesheet.css +29 -0
  572. data/vendor/local/share/doc/gettext/ngettext.1.html +194 -0
  573. data/vendor/local/share/doc/gettext/ngettext.3.html +138 -0
  574. data/vendor/local/share/doc/gettext/textdomain.3.html +140 -0
  575. data/vendor/local/share/doc/libasprintf/autosprintf_all.html +174 -0
  576. data/vendor/local/share/doc/libiconv/iconv.1.html +206 -0
  577. data/vendor/local/share/doc/libiconv/iconv.3.html +207 -0
  578. data/vendor/local/share/doc/libiconv/iconv_close.3.html +90 -0
  579. data/vendor/local/share/doc/libiconv/iconv_open.3.html +318 -0
  580. data/vendor/local/share/doc/libiconv/iconv_open_into.3.html +120 -0
  581. data/vendor/local/share/doc/libiconv/iconvctl.3.html +189 -0
  582. data/vendor/local/share/gdb/auto-load/libglib-2.0.so.0.4200.1-gdb.py +10 -0
  583. data/vendor/local/share/gdb/auto-load/libgobject-2.0.so.0.4200.1-gdb.py +10 -0
  584. data/vendor/local/share/gettext/ABOUT-NLS +1282 -0
  585. data/vendor/local/share/glib-2.0/codegen/__init__.py +27 -0
  586. data/vendor/local/share/glib-2.0/codegen/__init__.pyc +0 -0
  587. data/vendor/local/share/glib-2.0/codegen/__init__.pyo +0 -0
  588. data/vendor/local/share/glib-2.0/codegen/codegen.py +3412 -0
  589. data/vendor/local/share/glib-2.0/codegen/codegen.pyc +0 -0
  590. data/vendor/local/share/glib-2.0/codegen/codegen.pyo +0 -0
  591. data/vendor/local/share/glib-2.0/codegen/codegen_docbook.py +329 -0
  592. data/vendor/local/share/glib-2.0/codegen/codegen_docbook.pyc +0 -0
  593. data/vendor/local/share/glib-2.0/codegen/codegen_docbook.pyo +0 -0
  594. data/vendor/local/share/glib-2.0/codegen/codegen_main.py +201 -0
  595. data/vendor/local/share/glib-2.0/codegen/codegen_main.pyc +0 -0
  596. data/vendor/local/share/glib-2.0/codegen/codegen_main.pyo +0 -0
  597. data/vendor/local/share/glib-2.0/codegen/config.py +25 -0
  598. data/vendor/local/share/glib-2.0/codegen/config.pyc +0 -0
  599. data/vendor/local/share/glib-2.0/codegen/config.pyo +0 -0
  600. data/vendor/local/share/glib-2.0/codegen/dbustypes.py +424 -0
  601. data/vendor/local/share/glib-2.0/codegen/dbustypes.pyc +0 -0
  602. data/vendor/local/share/glib-2.0/codegen/dbustypes.pyo +0 -0
  603. data/vendor/local/share/glib-2.0/codegen/parser.py +288 -0
  604. data/vendor/local/share/glib-2.0/codegen/parser.pyc +0 -0
  605. data/vendor/local/share/glib-2.0/codegen/parser.pyo +0 -0
  606. data/vendor/local/share/glib-2.0/codegen/utils.py +102 -0
  607. data/vendor/local/share/glib-2.0/codegen/utils.pyc +0 -0
  608. data/vendor/local/share/glib-2.0/codegen/utils.pyo +0 -0
  609. data/vendor/local/share/glib-2.0/gdb/glib.py +257 -0
  610. data/vendor/local/share/glib-2.0/gdb/gobject.py +295 -0
  611. data/vendor/local/share/glib-2.0/gettext/po/Makefile.in.in +268 -0
  612. data/vendor/local/share/glib-2.0/schemas/gschema.dtd +73 -0
  613. data/vendor/local/share/glib-2.0/schemas/gschemas.compiled +0 -0
  614. data/vendor/local/share/gtk-doc/html/gio/ExampleAnimal.html +1537 -0
  615. data/vendor/local/share/gtk-doc/html/gio/ExampleCat.html +679 -0
  616. data/vendor/local/share/gtk-doc/html/gio/ExampleObject.html +572 -0
  617. data/vendor/local/share/gtk-doc/html/gio/ExampleObjectManagerClient.html +561 -0
  618. data/vendor/local/share/gtk-doc/html/gio/GAction.html +832 -0
  619. data/vendor/local/share/gtk-doc/html/gio/GActionGroup.html +1242 -0
  620. data/vendor/local/share/gtk-doc/html/gio/GActionMap.html +507 -0
  621. data/vendor/local/share/gtk-doc/html/gio/GAppInfo.html +2160 -0
  622. data/vendor/local/share/gtk-doc/html/gio/GAppInfoMonitor.html +151 -0
  623. data/vendor/local/share/gtk-doc/html/gio/GApplication.html +2448 -0
  624. data/vendor/local/share/gtk-doc/html/gio/GApplicationCommandLine.html +981 -0
  625. data/vendor/local/share/gtk-doc/html/gio/GAsyncInitable.html +769 -0
  626. data/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html +511 -0
  627. data/vendor/local/share/gtk-doc/html/gio/GBufferedInputStream.html +705 -0
  628. data/vendor/local/share/gtk-doc/html/gio/GBufferedOutputStream.html +393 -0
  629. data/vendor/local/share/gtk-doc/html/gio/GCancellable.html +861 -0
  630. data/vendor/local/share/gtk-doc/html/gio/GCharsetConverter.html +317 -0
  631. data/vendor/local/share/gtk-doc/html/gio/GConverter.html +467 -0
  632. data/vendor/local/share/gtk-doc/html/gio/GCredentials.html +564 -0
  633. data/vendor/local/share/gtk-doc/html/gio/GDBusActionGroup.html +161 -0
  634. data/vendor/local/share/gtk-doc/html/gio/GDBusAuthObserver.html +390 -0
  635. data/vendor/local/share/gtk-doc/html/gio/GDBusConnection.html +4687 -0
  636. data/vendor/local/share/gtk-doc/html/gio/GDBusInterface.html +329 -0
  637. data/vendor/local/share/gtk-doc/html/gio/GDBusInterfaceSkeleton.html +882 -0
  638. data/vendor/local/share/gtk-doc/html/gio/GDBusMenuModel.html +152 -0
  639. data/vendor/local/share/gtk-doc/html/gio/GDBusMessage.html +2484 -0
  640. data/vendor/local/share/gtk-doc/html/gio/GDBusMethodInvocation.html +903 -0
  641. data/vendor/local/share/gtk-doc/html/gio/GDBusObject.html +404 -0
  642. data/vendor/local/share/gtk-doc/html/gio/GDBusObjectManager.html +592 -0
  643. data/vendor/local/share/gtk-doc/html/gio/GDBusObjectManagerClient.html +1281 -0
  644. data/vendor/local/share/gtk-doc/html/gio/GDBusObjectManagerServer.html +505 -0
  645. data/vendor/local/share/gtk-doc/html/gio/GDBusObjectProxy.html +260 -0
  646. data/vendor/local/share/gtk-doc/html/gio/GDBusObjectSkeleton.html +491 -0
  647. data/vendor/local/share/gtk-doc/html/gio/GDBusProxy.html +2170 -0
  648. data/vendor/local/share/gtk-doc/html/gio/GDBusServer.html +635 -0
  649. data/vendor/local/share/gtk-doc/html/gio/GDataInputStream.html +1595 -0
  650. data/vendor/local/share/gtk-doc/html/gio/GDataOutputStream.html +699 -0
  651. data/vendor/local/share/gtk-doc/html/gio/GDrive.html +1873 -0
  652. data/vendor/local/share/gtk-doc/html/gio/GEmblem.html +354 -0
  653. data/vendor/local/share/gtk-doc/html/gio/GEmblemedIcon.html +325 -0
  654. data/vendor/local/share/gtk-doc/html/gio/GFile.html +9688 -0
  655. data/vendor/local/share/gtk-doc/html/gio/GFileDescriptorBased.html +145 -0
  656. data/vendor/local/share/gtk-doc/html/gio/GFileEnumerator.html +713 -0
  657. data/vendor/local/share/gtk-doc/html/gio/GFileIOStream.html +352 -0
  658. data/vendor/local/share/gtk-doc/html/gio/GFileIcon.html +200 -0
  659. data/vendor/local/share/gtk-doc/html/gio/GFileInfo.html +4261 -0
  660. data/vendor/local/share/gtk-doc/html/gio/GFileInputStream.html +293 -0
  661. data/vendor/local/share/gtk-doc/html/gio/GFileMonitor.html +475 -0
  662. data/vendor/local/share/gtk-doc/html/gio/GFileOutputStream.html +345 -0
  663. data/vendor/local/share/gtk-doc/html/gio/GFilenameCompleter.html +287 -0
  664. data/vendor/local/share/gtk-doc/html/gio/GFilterInputStream.html +249 -0
  665. data/vendor/local/share/gtk-doc/html/gio/GFilterOutputStream.html +251 -0
  666. data/vendor/local/share/gtk-doc/html/gio/GIOModule.html +592 -0
  667. data/vendor/local/share/gtk-doc/html/gio/GIOStream.html +772 -0
  668. data/vendor/local/share/gtk-doc/html/gio/GIcon.html +479 -0
  669. data/vendor/local/share/gtk-doc/html/gio/GInetAddress.html +1044 -0
  670. data/vendor/local/share/gtk-doc/html/gio/GInetSocketAddress.html +419 -0
  671. data/vendor/local/share/gtk-doc/html/gio/GInitable.html +455 -0
  672. data/vendor/local/share/gtk-doc/html/gio/GInputStream.html +1164 -0
  673. data/vendor/local/share/gtk-doc/html/gio/GLoadableIcon.html +354 -0
  674. data/vendor/local/share/gtk-doc/html/gio/GMemoryInputStream.html +308 -0
  675. data/vendor/local/share/gtk-doc/html/gio/GMemoryOutputStream.html +577 -0
  676. data/vendor/local/share/gtk-doc/html/gio/GMenu.html +1877 -0
  677. data/vendor/local/share/gtk-doc/html/gio/GMenuModel.html +1205 -0
  678. data/vendor/local/share/gtk-doc/html/gio/GMount.html +1929 -0
  679. data/vendor/local/share/gtk-doc/html/gio/GMountOperation.html +1197 -0
  680. data/vendor/local/share/gtk-doc/html/gio/GNetworkAddress.html +451 -0
  681. data/vendor/local/share/gtk-doc/html/gio/GNetworkMonitor.html +499 -0
  682. data/vendor/local/share/gtk-doc/html/gio/GNetworkService.html +421 -0
  683. data/vendor/local/share/gtk-doc/html/gio/GOutputStream.html +1561 -0
  684. data/vendor/local/share/gtk-doc/html/gio/GPermission.html +672 -0
  685. data/vendor/local/share/gtk-doc/html/gio/GPollableInputStream.html +411 -0
  686. data/vendor/local/share/gtk-doc/html/gio/GPollableOutputStream.html +411 -0
  687. data/vendor/local/share/gtk-doc/html/gio/GProxy.html +455 -0
  688. data/vendor/local/share/gtk-doc/html/gio/GProxyAddress.html +580 -0
  689. data/vendor/local/share/gtk-doc/html/gio/GProxyResolver.html +395 -0
  690. data/vendor/local/share/gtk-doc/html/gio/GRemoteActionGroup.html +290 -0
  691. data/vendor/local/share/gtk-doc/html/gio/GResolver.html +1171 -0
  692. data/vendor/local/share/gtk-doc/html/gio/GSeekable.html +441 -0
  693. data/vendor/local/share/gtk-doc/html/gio/GSettings.html +3485 -0
  694. data/vendor/local/share/gtk-doc/html/gio/GSettingsBackend.html +755 -0
  695. data/vendor/local/share/gtk-doc/html/gio/GSimpleAction.html +540 -0
  696. data/vendor/local/share/gtk-doc/html/gio/GSimpleActionGroup.html +319 -0
  697. data/vendor/local/share/gtk-doc/html/gio/GSimpleAsyncResult.html +1634 -0
  698. data/vendor/local/share/gtk-doc/html/gio/GSimplePermission.html +129 -0
  699. data/vendor/local/share/gtk-doc/html/gio/GSimpleProxyResolver.html +433 -0
  700. data/vendor/local/share/gtk-doc/html/gio/GSocket.html +3696 -0
  701. data/vendor/local/share/gtk-doc/html/gio/GSocketAddress.html +374 -0
  702. data/vendor/local/share/gtk-doc/html/gio/GSocketClient.html +2079 -0
  703. data/vendor/local/share/gtk-doc/html/gio/GSocketConnectable.html +623 -0
  704. data/vendor/local/share/gtk-doc/html/gio/GSocketConnection.html +631 -0
  705. data/vendor/local/share/gtk-doc/html/gio/GSocketControlMessage.html +330 -0
  706. data/vendor/local/share/gtk-doc/html/gio/GSocketListener.html +868 -0
  707. data/vendor/local/share/gtk-doc/html/gio/GSocketService.html +329 -0
  708. data/vendor/local/share/gtk-doc/html/gio/GSrvTarget.html +424 -0
  709. data/vendor/local/share/gtk-doc/html/gio/GSubprocess.html +1601 -0
  710. data/vendor/local/share/gtk-doc/html/gio/GTask.html +2562 -0
  711. data/vendor/local/share/gtk-doc/html/gio/GTcpConnection.html +209 -0
  712. data/vendor/local/share/gtk-doc/html/gio/GTcpWrapperConnection.html +211 -0
  713. data/vendor/local/share/gtk-doc/html/gio/GTestDBus.html +510 -0
  714. data/vendor/local/share/gtk-doc/html/gio/GThemedIcon.html +464 -0
  715. data/vendor/local/share/gtk-doc/html/gio/GThreadedSocketService.html +241 -0
  716. data/vendor/local/share/gtk-doc/html/gio/GTlsBackend.html +432 -0
  717. data/vendor/local/share/gtk-doc/html/gio/GTlsCertificate.html +590 -0
  718. data/vendor/local/share/gtk-doc/html/gio/GTlsClientConnection.html +550 -0
  719. data/vendor/local/share/gtk-doc/html/gio/GTlsConnection.html +1294 -0
  720. data/vendor/local/share/gtk-doc/html/gio/GTlsDatabase.html +1091 -0
  721. data/vendor/local/share/gtk-doc/html/gio/GTlsFileDatabase.html +208 -0
  722. data/vendor/local/share/gtk-doc/html/gio/GTlsInteraction.html +735 -0
  723. data/vendor/local/share/gtk-doc/html/gio/GTlsPassword.html +662 -0
  724. data/vendor/local/share/gtk-doc/html/gio/GTlsServerConnection.html +193 -0
  725. data/vendor/local/share/gtk-doc/html/gio/GUnixConnection.html +553 -0
  726. data/vendor/local/share/gtk-doc/html/gio/GUnixCredentialsMessage.html +268 -0
  727. data/vendor/local/share/gtk-doc/html/gio/GUnixFDList.html +455 -0
  728. data/vendor/local/share/gtk-doc/html/gio/GUnixFDMessage.html +349 -0
  729. data/vendor/local/share/gtk-doc/html/gio/GUnixInputStream.html +314 -0
  730. data/vendor/local/share/gtk-doc/html/gio/GUnixOutputStream.html +314 -0
  731. data/vendor/local/share/gtk-doc/html/gio/GUnixSocketAddress.html +612 -0
  732. data/vendor/local/share/gtk-doc/html/gio/GVfs.html +358 -0
  733. data/vendor/local/share/gtk-doc/html/gio/GVolume.html +1391 -0
  734. data/vendor/local/share/gtk-doc/html/gio/GVolumeMonitor.html +926 -0
  735. data/vendor/local/share/gtk-doc/html/gio/GZlibCompressor.html +330 -0
  736. data/vendor/local/share/gtk-doc/html/gio/GZlibDecompressor.html +220 -0
  737. data/vendor/local/share/gtk-doc/html/gio/annotation-glossary.html +76 -0
  738. data/vendor/local/share/gtk-doc/html/gio/api-index-2-18.html +148 -0
  739. data/vendor/local/share/gtk-doc/html/gio/api-index-2-20.html +157 -0
  740. data/vendor/local/share/gtk-doc/html/gio/api-index-2-22.html +1083 -0
  741. data/vendor/local/share/gtk-doc/html/gio/api-index-2-24.html +210 -0
  742. data/vendor/local/share/gtk-doc/html/gio/api-index-2-26.html +1640 -0
  743. data/vendor/local/share/gtk-doc/html/gio/api-index-2-28.html +715 -0
  744. data/vendor/local/share/gtk-doc/html/gio/api-index-2-30.html +686 -0
  745. data/vendor/local/share/gtk-doc/html/gio/api-index-2-32.html +725 -0
  746. data/vendor/local/share/gtk-doc/html/gio/api-index-2-34.html +268 -0
  747. data/vendor/local/share/gtk-doc/html/gio/api-index-2-36.html +259 -0
  748. data/vendor/local/share/gtk-doc/html/gio/api-index-2-38.html +161 -0
  749. data/vendor/local/share/gtk-doc/html/gio/api-index-2-40.html +369 -0
  750. data/vendor/local/share/gtk-doc/html/gio/api-index-2-42.html +50 -0
  751. data/vendor/local/share/gtk-doc/html/gio/api-index-deprecated.html +198 -0
  752. data/vendor/local/share/gtk-doc/html/gio/api-index-full.html +9512 -0
  753. data/vendor/local/share/gtk-doc/html/gio/application.html +80 -0
  754. data/vendor/local/share/gtk-doc/html/gio/async.html +48 -0
  755. data/vendor/local/share/gtk-doc/html/gio/ch01.html +232 -0
  756. data/vendor/local/share/gtk-doc/html/gio/ch02.html +114 -0
  757. data/vendor/local/share/gtk-doc/html/gio/ch03.html +45 -0
  758. data/vendor/local/share/gtk-doc/html/gio/ch30.html +75 -0
  759. data/vendor/local/share/gtk-doc/html/gio/ch31.html +217 -0
  760. data/vendor/local/share/gtk-doc/html/gio/ch31s02.html +41 -0
  761. data/vendor/local/share/gtk-doc/html/gio/ch31s03.html +39 -0
  762. data/vendor/local/share/gtk-doc/html/gio/ch32.html +56 -0
  763. data/vendor/local/share/gtk-doc/html/gio/ch32s02.html +59 -0
  764. data/vendor/local/share/gtk-doc/html/gio/ch32s03.html +159 -0
  765. data/vendor/local/share/gtk-doc/html/gio/ch32s04.html +46 -0
  766. data/vendor/local/share/gtk-doc/html/gio/ch32s05.html +48 -0
  767. data/vendor/local/share/gtk-doc/html/gio/ch32s06.html +278 -0
  768. data/vendor/local/share/gtk-doc/html/gio/ch32s07.html +160 -0
  769. data/vendor/local/share/gtk-doc/html/gio/ch33.html +116 -0
  770. data/vendor/local/share/gtk-doc/html/gio/ch33s02.html +142 -0
  771. data/vendor/local/share/gtk-doc/html/gio/ch33s03.html +202 -0
  772. data/vendor/local/share/gtk-doc/html/gio/ch33s04.html +97 -0
  773. data/vendor/local/share/gtk-doc/html/gio/ch33s05.html +931 -0
  774. data/vendor/local/share/gtk-doc/html/gio/conversion.html +44 -0
  775. data/vendor/local/share/gtk-doc/html/gio/extending-gio.html +131 -0
  776. data/vendor/local/share/gtk-doc/html/gio/extending.html +41 -0
  777. data/vendor/local/share/gtk-doc/html/gio/failable_initialization.html +38 -0
  778. data/vendor/local/share/gtk-doc/html/gio/file_mon.html +33 -0
  779. data/vendor/local/share/gtk-doc/html/gio/file_ops.html +50 -0
  780. data/vendor/local/share/gtk-doc/html/gio/gapplication-tool.html +288 -0
  781. data/vendor/local/share/gtk-doc/html/gio/gdbus-codegen.html +1098 -0
  782. data/vendor/local/share/gtk-doc/html/gio/gdbus-convenience.html +65 -0
  783. data/vendor/local/share/gtk-doc/html/gio/gdbus-lowlevel.html +59 -0
  784. data/vendor/local/share/gtk-doc/html/gio/gdbus-org.gtk.GDBus.Example.ObjectManager.Animal.html +161 -0
  785. data/vendor/local/share/gtk-doc/html/gio/gdbus-org.gtk.GDBus.Example.ObjectManager.Cat.html +51 -0
  786. data/vendor/local/share/gtk-doc/html/gio/gdbus.html +300 -0
  787. data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Addresses.html +390 -0
  788. data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Introspection-Data.html +1572 -0
  789. data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Utilities.html +398 -0
  790. data/vendor/local/share/gtk-doc/html/gio/gio-Desktop-file-based-GAppInfo.html +1131 -0
  791. data/vendor/local/share/gtk-doc/html/gio/gio-Extension-Points.html +613 -0
  792. data/vendor/local/share/gtk-doc/html/gio/gio-GActionGroup-exporter.html +192 -0
  793. data/vendor/local/share/gtk-doc/html/gio/gio-GBytesIcon.html +162 -0
  794. data/vendor/local/share/gtk-doc/html/gio/gio-GContentType.html +595 -0
  795. data/vendor/local/share/gtk-doc/html/gio/gio-GConverterInputstream.html +214 -0
  796. data/vendor/local/share/gtk-doc/html/gio/gio-GConverterOutputstream.html +214 -0
  797. data/vendor/local/share/gtk-doc/html/gio/gio-GDBusError.html +1106 -0
  798. data/vendor/local/share/gtk-doc/html/gio/gio-GFileAttribute.html +650 -0
  799. data/vendor/local/share/gtk-doc/html/gio/gio-GIOError.html +539 -0
  800. data/vendor/local/share/gtk-doc/html/gio/gio-GIOScheduler.html +365 -0
  801. data/vendor/local/share/gtk-doc/html/gio/gio-GInetAddressMask.html +443 -0
  802. data/vendor/local/share/gtk-doc/html/gio/gio-GMenuModel-exporter.html +183 -0
  803. data/vendor/local/share/gtk-doc/html/gio/gio-GNotification.html +670 -0
  804. data/vendor/local/share/gtk-doc/html/gio/gio-GPropertyAction.html +177 -0
  805. data/vendor/local/share/gtk-doc/html/gio/gio-GResource.html +1141 -0
  806. data/vendor/local/share/gtk-doc/html/gio/gio-GSettingsSchema-GSettingsSchemaSource.html +1186 -0
  807. data/vendor/local/share/gtk-doc/html/gio/gio-GSubprocessLauncher.html +931 -0
  808. data/vendor/local/share/gtk-doc/html/gio/gio-GWin32InputStream.html +258 -0
  809. data/vendor/local/share/gtk-doc/html/gio/gio-GWin32OutputStream.html +259 -0
  810. data/vendor/local/share/gtk-doc/html/gio/gio-Owning-Bus-Names.html +658 -0
  811. data/vendor/local/share/gtk-doc/html/gio/gio-TLS-Overview.html +321 -0
  812. data/vendor/local/share/gtk-doc/html/gio/gio-Unix-Mounts.html +1398 -0
  813. data/vendor/local/share/gtk-doc/html/gio/gio-Watching-Bus-Names.html +575 -0
  814. data/vendor/local/share/gtk-doc/html/gio/gio-gnetworking.h.html +94 -0
  815. data/vendor/local/share/gtk-doc/html/gio/gio-gpollableutils.html +475 -0
  816. data/vendor/local/share/gtk-doc/html/gio/gio-hierarchy.html +188 -0
  817. data/vendor/local/share/gtk-doc/html/gio/gio-querymodules.html +53 -0
  818. data/vendor/local/share/gtk-doc/html/gio/gio.devhelp2 +2715 -0
  819. data/vendor/local/share/gtk-doc/html/gio/glib-compile-resources.html +209 -0
  820. data/vendor/local/share/gtk-doc/html/gio/glib-compile-schemas.html +111 -0
  821. data/vendor/local/share/gtk-doc/html/gio/gresource-tool.html +111 -0
  822. data/vendor/local/share/gtk-doc/html/gio/gsettings-tool.html +178 -0
  823. data/vendor/local/share/gtk-doc/html/gio/gvfs-overview.png +0 -0
  824. data/vendor/local/share/gtk-doc/html/gio/highlevel-socket.html +60 -0
  825. data/vendor/local/share/gtk-doc/html/gio/home.png +0 -0
  826. data/vendor/local/share/gtk-doc/html/gio/icons.html +53 -0
  827. data/vendor/local/share/gtk-doc/html/gio/index.html +646 -0
  828. data/vendor/local/share/gtk-doc/html/gio/index.sgml +4046 -0
  829. data/vendor/local/share/gtk-doc/html/gio/left-insensitive.png +0 -0
  830. data/vendor/local/share/gtk-doc/html/gio/left.png +0 -0
  831. data/vendor/local/share/gtk-doc/html/gio/menu-example.png +0 -0
  832. data/vendor/local/share/gtk-doc/html/gio/menu-model.png +0 -0
  833. data/vendor/local/share/gtk-doc/html/gio/migrating.html +82 -0
  834. data/vendor/local/share/gtk-doc/html/gio/networking.html +75 -0
  835. data/vendor/local/share/gtk-doc/html/gio/permissions.html +39 -0
  836. data/vendor/local/share/gtk-doc/html/gio/pt01.html +40 -0
  837. data/vendor/local/share/gtk-doc/html/gio/pt02.html +572 -0
  838. data/vendor/local/share/gtk-doc/html/gio/resolver.html +53 -0
  839. data/vendor/local/share/gtk-doc/html/gio/resources.html +33 -0
  840. data/vendor/local/share/gtk-doc/html/gio/right-insensitive.png +0 -0
  841. data/vendor/local/share/gtk-doc/html/gio/right.png +0 -0
  842. data/vendor/local/share/gtk-doc/html/gio/running-gio-apps.html +189 -0
  843. data/vendor/local/share/gtk-doc/html/gio/settings.html +42 -0
  844. data/vendor/local/share/gtk-doc/html/gio/streaming.html +107 -0
  845. data/vendor/local/share/gtk-doc/html/gio/style.css +476 -0
  846. data/vendor/local/share/gtk-doc/html/gio/subprocesses.html +38 -0
  847. data/vendor/local/share/gtk-doc/html/gio/testing.html +33 -0
  848. data/vendor/local/share/gtk-doc/html/gio/tls.html +62 -0
  849. data/vendor/local/share/gtk-doc/html/gio/tools.html +56 -0
  850. data/vendor/local/share/gtk-doc/html/gio/types.html +44 -0
  851. data/vendor/local/share/gtk-doc/html/gio/up-insensitive.png +0 -0
  852. data/vendor/local/share/gtk-doc/html/gio/up.png +0 -0
  853. data/vendor/local/share/gtk-doc/html/gio/utils.html +33 -0
  854. data/vendor/local/share/gtk-doc/html/gio/volume_mon.html +47 -0
  855. data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_breadth-first_traversal.svg +134 -0
  856. data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_inorder.svg +753 -0
  857. data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_postorder.svg +750 -0
  858. data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_preorder.svg +750 -0
  859. data/vendor/local/share/gtk-doc/html/glib/annotation-glossary.html +81 -0
  860. data/vendor/local/share/gtk-doc/html/glib/api-index-2-10.html +167 -0
  861. data/vendor/local/share/gtk-doc/html/glib/api-index-2-12.html +307 -0
  862. data/vendor/local/share/gtk-doc/html/glib/api-index-2-14.html +562 -0
  863. data/vendor/local/share/gtk-doc/html/glib/api-index-2-16.html +357 -0
  864. data/vendor/local/share/gtk-doc/html/glib/api-index-2-18.html +108 -0
  865. data/vendor/local/share/gtk-doc/html/glib/api-index-2-2.html +119 -0
  866. data/vendor/local/share/gtk-doc/html/glib/api-index-2-20.html +86 -0
  867. data/vendor/local/share/gtk-doc/html/glib/api-index-2-22.html +189 -0
  868. data/vendor/local/share/gtk-doc/html/glib/api-index-2-24.html +423 -0
  869. data/vendor/local/share/gtk-doc/html/glib/api-index-2-26.html +389 -0
  870. data/vendor/local/share/gtk-doc/html/glib/api-index-2-28.html +122 -0
  871. data/vendor/local/share/gtk-doc/html/glib/api-index-2-30.html +252 -0
  872. data/vendor/local/share/gtk-doc/html/glib/api-index-2-32.html +343 -0
  873. data/vendor/local/share/gtk-doc/html/glib/api-index-2-34.html +116 -0
  874. data/vendor/local/share/gtk-doc/html/glib/api-index-2-36.html +116 -0
  875. data/vendor/local/share/gtk-doc/html/glib/api-index-2-38.html +111 -0
  876. data/vendor/local/share/gtk-doc/html/glib/api-index-2-4.html +399 -0
  877. data/vendor/local/share/gtk-doc/html/glib/api-index-2-40.html +158 -0
  878. data/vendor/local/share/gtk-doc/html/glib/api-index-2-42.html +35 -0
  879. data/vendor/local/share/gtk-doc/html/glib/api-index-2-6.html +416 -0
  880. data/vendor/local/share/gtk-doc/html/glib/api-index-2-8.html +157 -0
  881. data/vendor/local/share/gtk-doc/html/glib/api-index-deprecated.html +596 -0
  882. data/vendor/local/share/gtk-doc/html/glib/api-index-full.html +9013 -0
  883. data/vendor/local/share/gtk-doc/html/glib/deprecated.html +47 -0
  884. data/vendor/local/share/gtk-doc/html/glib/file-name-encodings.png +0 -0
  885. data/vendor/local/share/gtk-doc/html/glib/glib-Arrays.html +1130 -0
  886. data/vendor/local/share/gtk-doc/html/glib/glib-Asynchronous-Queues.html +1242 -0
  887. data/vendor/local/share/gtk-doc/html/glib/glib-Atomic-Operations.html +944 -0
  888. data/vendor/local/share/gtk-doc/html/glib/glib-Automatic-String-Completion.html +614 -0
  889. data/vendor/local/share/gtk-doc/html/glib/glib-Balanced-Binary-Trees.html +958 -0
  890. data/vendor/local/share/gtk-doc/html/glib/glib-Base64-Encoding.html +440 -0
  891. data/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html +1155 -0
  892. data/vendor/local/share/gtk-doc/html/glib/glib-Bookmark-file-parser.html +2442 -0
  893. data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Arrays.html +1513 -0
  894. data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Order-Macros.html +2152 -0
  895. data/vendor/local/share/gtk-doc/html/glib/glib-Caches.html +540 -0
  896. data/vendor/local/share/gtk-doc/html/glib/glib-Character-Set-Conversion.html +1299 -0
  897. data/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html +2164 -0
  898. data/vendor/local/share/gtk-doc/html/glib/glib-Data-Checksums.html +644 -0
  899. data/vendor/local/share/gtk-doc/html/glib/glib-Data-HMACs.html +549 -0
  900. data/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html +662 -0
  901. data/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html +2808 -0
  902. data/vendor/local/share/gtk-doc/html/glib/glib-Deprecated-Thread-APIs.html +2101 -0
  903. data/vendor/local/share/gtk-doc/html/glib/glib-Double-ended-Queues.html +1860 -0
  904. data/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html +1941 -0
  905. data/vendor/local/share/gtk-doc/html/glib/glib-Dynamic-Loading-of-Modules.html +664 -0
  906. data/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html +1226 -0
  907. data/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html +2516 -0
  908. data/vendor/local/share/gtk-doc/html/glib/glib-GDateTime.html +2430 -0
  909. data/vendor/local/share/gtk-doc/html/glib/glib-GTimeZone.html +664 -0
  910. data/vendor/local/share/gtk-doc/html/glib/glib-GVariant.html +6967 -0
  911. data/vendor/local/share/gtk-doc/html/glib/glib-GVariantType.html +1842 -0
  912. data/vendor/local/share/gtk-doc/html/glib/glib-Glob-style-pattern-matching.html +373 -0
  913. data/vendor/local/share/gtk-doc/html/glib/glib-Hash-Tables.html +2260 -0
  914. data/vendor/local/share/gtk-doc/html/glib/glib-Hook-Functions.html +1817 -0
  915. data/vendor/local/share/gtk-doc/html/glib/glib-Hostname-Utilities.html +287 -0
  916. data/vendor/local/share/gtk-doc/html/glib/glib-I18N.html +814 -0
  917. data/vendor/local/share/gtk-doc/html/glib/glib-IO-Channels.html +2662 -0
  918. data/vendor/local/share/gtk-doc/html/glib/glib-Key-value-file-parser.html +3457 -0
  919. data/vendor/local/share/gtk-doc/html/glib/glib-Keyed-Data-Lists.html +1007 -0
  920. data/vendor/local/share/gtk-doc/html/glib/glib-Lexical-Scanner.html +1878 -0
  921. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html +1375 -0
  922. data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Slices.html +625 -0
  923. data/vendor/local/share/gtk-doc/html/glib/glib-Message-Logging.html +947 -0
  924. data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html +1180 -0
  925. data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Utility-Functions.html +2274 -0
  926. data/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html +1995 -0
  927. data/vendor/local/share/gtk-doc/html/glib/glib-Numerical-Definitions.html +236 -0
  928. data/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html +3551 -0
  929. data/vendor/local/share/gtk-doc/html/glib/glib-Pointer-Arrays.html +1059 -0
  930. data/vendor/local/share/gtk-doc/html/glib/glib-Quarks.html +378 -0
  931. data/vendor/local/share/gtk-doc/html/glib/glib-Random-Numbers.html +775 -0
  932. data/vendor/local/share/gtk-doc/html/glib/glib-Relations-and-Tuples.html +660 -0
  933. data/vendor/local/share/gtk-doc/html/glib/glib-Sequences.html +2054 -0
  934. data/vendor/local/share/gtk-doc/html/glib/glib-Shell-related-Utilities.html +302 -0
  935. data/vendor/local/share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html +1491 -0
  936. data/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html +1560 -0
  937. data/vendor/local/share/gtk-doc/html/glib/glib-Spawning-Processes.html +1165 -0
  938. data/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html +593 -0
  939. data/vendor/local/share/gtk-doc/html/glib/glib-String-Chunks.html +374 -0
  940. data/vendor/local/share/gtk-doc/html/glib/glib-String-Utility-Functions.html +4052 -0
  941. data/vendor/local/share/gtk-doc/html/glib/glib-Strings.html +1797 -0
  942. data/vendor/local/share/gtk-doc/html/glib/glib-Testing.html +3149 -0
  943. data/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html +5082 -0
  944. data/vendor/local/share/gtk-doc/html/glib/glib-Thread-Pools.html +774 -0
  945. data/vendor/local/share/gtk-doc/html/glib/glib-Threads.html +3183 -0
  946. data/vendor/local/share/gtk-doc/html/glib/glib-Timers.html +319 -0
  947. data/vendor/local/share/gtk-doc/html/glib/glib-Trash-Stacks.html +254 -0
  948. data/vendor/local/share/gtk-doc/html/glib/glib-Type-Conversion-Macros.html +309 -0
  949. data/vendor/local/share/gtk-doc/html/glib/glib-UNIX-specific-utilities-and-integration.html +618 -0
  950. data/vendor/local/share/gtk-doc/html/glib/glib-URI-Functions.html +508 -0
  951. data/vendor/local/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html +4995 -0
  952. data/vendor/local/share/gtk-doc/html/glib/glib-Version-Information.html +483 -0
  953. data/vendor/local/share/gtk-doc/html/glib/glib-Warnings-and-Assertions.html +598 -0
  954. data/vendor/local/share/gtk-doc/html/glib/glib-Windows-Compatibility-Functions.html +585 -0
  955. data/vendor/local/share/gtk-doc/html/glib/glib-building.html +438 -0
  956. data/vendor/local/share/gtk-doc/html/glib/glib-changes.html +153 -0
  957. data/vendor/local/share/gtk-doc/html/glib/glib-compiling.html +145 -0
  958. data/vendor/local/share/gtk-doc/html/glib/glib-core.html +68 -0
  959. data/vendor/local/share/gtk-doc/html/glib/glib-cross-compiling.html +165 -0
  960. data/vendor/local/share/gtk-doc/html/glib/glib-data-types.html +100 -0
  961. data/vendor/local/share/gtk-doc/html/glib/glib-fundamentals.html +57 -0
  962. data/vendor/local/share/gtk-doc/html/glib/glib-gettextize.html +96 -0
  963. data/vendor/local/share/gtk-doc/html/glib/glib-programming.html +76 -0
  964. data/vendor/local/share/gtk-doc/html/glib/glib-regex-syntax.html +2217 -0
  965. data/vendor/local/share/gtk-doc/html/glib/glib-resources.html +124 -0
  966. data/vendor/local/share/gtk-doc/html/glib/glib-running.html +295 -0
  967. data/vendor/local/share/gtk-doc/html/glib/glib-utilities.html +126 -0
  968. data/vendor/local/share/gtk-doc/html/glib/glib.devhelp2 +2399 -0
  969. data/vendor/local/share/gtk-doc/html/glib/glib.html +72 -0
  970. data/vendor/local/share/gtk-doc/html/glib/gtester-report.html +81 -0
  971. data/vendor/local/share/gtk-doc/html/glib/gtester.html +187 -0
  972. data/vendor/local/share/gtk-doc/html/glib/gvariant-format-strings.html +1338 -0
  973. data/vendor/local/share/gtk-doc/html/glib/gvariant-text.html +667 -0
  974. data/vendor/local/share/gtk-doc/html/glib/home.png +0 -0
  975. data/vendor/local/share/gtk-doc/html/glib/index.html +358 -0
  976. data/vendor/local/share/gtk-doc/html/glib/index.sgml +2782 -0
  977. data/vendor/local/share/gtk-doc/html/glib/left-insensitive.png +0 -0
  978. data/vendor/local/share/gtk-doc/html/glib/left.png +0 -0
  979. data/vendor/local/share/gtk-doc/html/glib/mainloop-states.gif +0 -0
  980. data/vendor/local/share/gtk-doc/html/glib/right-insensitive.png +0 -0
  981. data/vendor/local/share/gtk-doc/html/glib/right.png +0 -0
  982. data/vendor/local/share/gtk-doc/html/glib/style.css +476 -0
  983. data/vendor/local/share/gtk-doc/html/glib/tools.html +41 -0
  984. data/vendor/local/share/gtk-doc/html/glib/up-insensitive.png +0 -0
  985. data/vendor/local/share/gtk-doc/html/glib/up.png +0 -0
  986. data/vendor/local/share/gtk-doc/html/gobject/GBinding.html +981 -0
  987. data/vendor/local/share/gtk-doc/html/gobject/GTypeModule.html +814 -0
  988. data/vendor/local/share/gtk-doc/html/gobject/GTypePlugin.html +558 -0
  989. data/vendor/local/share/gtk-doc/html/gobject/annotation-glossary.html +76 -0
  990. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-10.html +80 -0
  991. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-12.html +50 -0
  992. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-14.html +46 -0
  993. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-18.html +43 -0
  994. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-2.html +35 -0
  995. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-22.html +43 -0
  996. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-24.html +68 -0
  997. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-26.html +196 -0
  998. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-28.html +42 -0
  999. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-30.html +65 -0
  1000. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-32.html +76 -0
  1001. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-34.html +58 -0
  1002. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-36.html +51 -0
  1003. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-38.html +68 -0
  1004. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-4.html +173 -0
  1005. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-40.html +35 -0
  1006. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-42.html +35 -0
  1007. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-6.html +39 -0
  1008. data/vendor/local/share/gtk-doc/html/gobject/api-index-2-8.html +39 -0
  1009. data/vendor/local/share/gtk-doc/html/gobject/api-index-deprecated.html +132 -0
  1010. data/vendor/local/share/gtk-doc/html/gobject/api-index-full.html +2999 -0
  1011. data/vendor/local/share/gtk-doc/html/gobject/ch01s02.html +136 -0
  1012. data/vendor/local/share/gtk-doc/html/gobject/chapter-gobject.html +290 -0
  1013. data/vendor/local/share/gtk-doc/html/gobject/chapter-gtype.html +263 -0
  1014. data/vendor/local/share/gtk-doc/html/gobject/chapter-intro.html +92 -0
  1015. data/vendor/local/share/gtk-doc/html/gobject/chapter-signal.html +214 -0
  1016. data/vendor/local/share/gtk-doc/html/gobject/glib-genmarshal.html +380 -0
  1017. data/vendor/local/share/gtk-doc/html/gobject/glib-mkenums.html +337 -0
  1018. data/vendor/local/share/gtk-doc/html/gobject/glue.png +0 -0
  1019. data/vendor/local/share/gtk-doc/html/gobject/gobject-Boxed-Types.html +677 -0
  1020. data/vendor/local/share/gtk-doc/html/gobject/gobject-Closures.html +3510 -0
  1021. data/vendor/local/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html +1110 -0
  1022. data/vendor/local/share/gtk-doc/html/gobject/gobject-GParamSpec.html +1937 -0
  1023. data/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html +1101 -0
  1024. data/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html +3395 -0
  1025. data/vendor/local/share/gtk-doc/html/gobject/gobject-Standard-Parameter-and-Value-Types.html +7262 -0
  1026. data/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html +4119 -0
  1027. data/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html +6080 -0
  1028. data/vendor/local/share/gtk-doc/html/gobject/gobject-Value-arrays.html +644 -0
  1029. data/vendor/local/share/gtk-doc/html/gobject/gobject-Varargs-Value-Collection.html +309 -0
  1030. data/vendor/local/share/gtk-doc/html/gobject/gobject-memory.html +234 -0
  1031. data/vendor/local/share/gtk-doc/html/gobject/gobject-properties.html +392 -0
  1032. data/vendor/local/share/gtk-doc/html/gobject/gobject-query.html +128 -0
  1033. data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp2 +838 -0
  1034. data/vendor/local/share/gtk-doc/html/gobject/gtype-conventions.html +141 -0
  1035. data/vendor/local/share/gtk-doc/html/gobject/gtype-instantiable-classed.html +288 -0
  1036. data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable-classed.html +378 -0
  1037. data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable.html +76 -0
  1038. data/vendor/local/share/gtk-doc/html/gobject/home.png +0 -0
  1039. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-chainup.html +98 -0
  1040. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-code.html +88 -0
  1041. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-construction.html +172 -0
  1042. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-destruction.html +117 -0
  1043. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-methods.html +250 -0
  1044. data/vendor/local/share/gtk-doc/html/gobject/howto-gobject.html +270 -0
  1045. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-implement.html +137 -0
  1046. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-override.html +133 -0
  1047. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-prerequisite.html +123 -0
  1048. data/vendor/local/share/gtk-doc/html/gobject/howto-interface-properties.html +153 -0
  1049. data/vendor/local/share/gtk-doc/html/gobject/howto-interface.html +149 -0
  1050. data/vendor/local/share/gtk-doc/html/gobject/howto-signals.html +121 -0
  1051. data/vendor/local/share/gtk-doc/html/gobject/index.html +201 -0
  1052. data/vendor/local/share/gtk-doc/html/gobject/index.sgml +869 -0
  1053. data/vendor/local/share/gtk-doc/html/gobject/left-insensitive.png +0 -0
  1054. data/vendor/local/share/gtk-doc/html/gobject/left.png +0 -0
  1055. data/vendor/local/share/gtk-doc/html/gobject/pr01.html +72 -0
  1056. data/vendor/local/share/gtk-doc/html/gobject/pt01.html +80 -0
  1057. data/vendor/local/share/gtk-doc/html/gobject/pt02.html +67 -0
  1058. data/vendor/local/share/gtk-doc/html/gobject/pt03.html +55 -0
  1059. data/vendor/local/share/gtk-doc/html/gobject/right-insensitive.png +0 -0
  1060. data/vendor/local/share/gtk-doc/html/gobject/right.png +0 -0
  1061. data/vendor/local/share/gtk-doc/html/gobject/rn01.html +85 -0
  1062. data/vendor/local/share/gtk-doc/html/gobject/rn02.html +47 -0
  1063. data/vendor/local/share/gtk-doc/html/gobject/signal.html +378 -0
  1064. data/vendor/local/share/gtk-doc/html/gobject/style.css +476 -0
  1065. data/vendor/local/share/gtk-doc/html/gobject/tools-ginspector.html +35 -0
  1066. data/vendor/local/share/gtk-doc/html/gobject/tools-gob.html +40 -0
  1067. data/vendor/local/share/gtk-doc/html/gobject/tools-gtkdoc.html +63 -0
  1068. data/vendor/local/share/gtk-doc/html/gobject/tools-refdb.html +48 -0
  1069. data/vendor/local/share/gtk-doc/html/gobject/tools-vala.html +43 -0
  1070. data/vendor/local/share/gtk-doc/html/gobject/up-insensitive.png +0 -0
  1071. data/vendor/local/share/gtk-doc/html/gobject/up.png +0 -0
  1072. data/vendor/local/share/info/autosprintf.info +133 -0
  1073. data/vendor/local/share/info/dir +43 -0
  1074. data/vendor/local/share/info/gmp.info +181 -0
  1075. data/vendor/local/share/info/gmp.info-1 +7073 -0
  1076. data/vendor/local/share/info/gmp.info-2 +3865 -0
  1077. data/vendor/local/share/info/gnutls-client-server-use-case.png +0 -0
  1078. data/vendor/local/share/info/gnutls-guile.info +1589 -0
  1079. data/vendor/local/share/info/gnutls-handshake-sequence.png +0 -0
  1080. data/vendor/local/share/info/gnutls-handshake-state.png +0 -0
  1081. data/vendor/local/share/info/gnutls-internals.png +0 -0
  1082. data/vendor/local/share/info/gnutls-layers.png +0 -0
  1083. data/vendor/local/share/info/gnutls-logo.png +0 -0
  1084. data/vendor/local/share/info/gnutls-modauth.png +0 -0
  1085. data/vendor/local/share/info/gnutls-pgp.png +0 -0
  1086. data/vendor/local/share/info/gnutls-x509.png +0 -0
  1087. data/vendor/local/share/info/gnutls.info +1371 -0
  1088. data/vendor/local/share/info/gnutls.info-1 +7371 -0
  1089. data/vendor/local/share/info/gnutls.info-2 +7842 -0
  1090. data/vendor/local/share/info/gnutls.info-3 +11715 -0
  1091. data/vendor/local/share/info/gnutls.info-4 +6737 -0
  1092. data/vendor/local/share/info/gnutls.info-5 +2308 -0
  1093. data/vendor/local/share/info/libffi.info +765 -0
  1094. data/vendor/local/share/info/pkcs11-vision.png +0 -0
  1095. data/vendor/local/share/license/gettext/AUTHORS +2 -0
  1096. data/vendor/local/share/license/gettext/COPYING +13 -0
  1097. data/vendor/local/share/license/glib-networking/AUTHORS +0 -0
  1098. data/vendor/local/share/license/glib-networking/COPYING +481 -0
  1099. data/vendor/local/share/license/glib/AUTHORS +40 -0
  1100. data/vendor/local/share/license/glib/COPYING +482 -0
  1101. data/vendor/local/share/license/gmp/AUTHORS +100 -0
  1102. data/vendor/local/share/license/gmp/COPYING +674 -0
  1103. data/vendor/local/share/license/gnutls/AUTHORS +92 -0
  1104. data/vendor/local/share/license/gnutls/COPYING +674 -0
  1105. data/vendor/local/share/license/libiconv/AUTHORS +1 -0
  1106. data/vendor/local/share/license/libiconv/COPYING +674 -0
  1107. data/vendor/local/share/license/libiconv/COPYING.LIB +482 -0
  1108. data/vendor/local/share/license/nettle/AUTHORS +1 -0
  1109. data/vendor/local/share/license/nettle/COPYING.LIB +510 -0
  1110. data/vendor/local/share/locale/af/LC_MESSAGES/glib20.mo +0 -0
  1111. data/vendor/local/share/locale/am/LC_MESSAGES/glib20.mo +0 -0
  1112. data/vendor/local/share/locale/an/LC_MESSAGES/glib-networking.mo +0 -0
  1113. data/vendor/local/share/locale/an/LC_MESSAGES/glib20.mo +0 -0
  1114. data/vendor/local/share/locale/ar/LC_MESSAGES/glib-networking.mo +0 -0
  1115. data/vendor/local/share/locale/ar/LC_MESSAGES/glib20.mo +0 -0
  1116. data/vendor/local/share/locale/as/LC_MESSAGES/glib-networking.mo +0 -0
  1117. data/vendor/local/share/locale/as/LC_MESSAGES/glib20.mo +0 -0
  1118. data/vendor/local/share/locale/ast/LC_MESSAGES/glib20.mo +0 -0
  1119. data/vendor/local/share/locale/az/LC_MESSAGES/glib20.mo +0 -0
  1120. data/vendor/local/share/locale/be/LC_MESSAGES/gettext-runtime.mo +0 -0
  1121. data/vendor/local/share/locale/be/LC_MESSAGES/glib-networking.mo +0 -0
  1122. data/vendor/local/share/locale/be/LC_MESSAGES/glib20.mo +0 -0
  1123. data/vendor/local/share/locale/be@latin/LC_MESSAGES/glib20.mo +0 -0
  1124. data/vendor/local/share/locale/bg/LC_MESSAGES/gettext-runtime.mo +0 -0
  1125. data/vendor/local/share/locale/bg/LC_MESSAGES/glib-networking.mo +0 -0
  1126. data/vendor/local/share/locale/bg/LC_MESSAGES/glib20.mo +0 -0
  1127. data/vendor/local/share/locale/bn/LC_MESSAGES/glib20.mo +0 -0
  1128. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/glib-networking.mo +0 -0
  1129. data/vendor/local/share/locale/bn_IN/LC_MESSAGES/glib20.mo +0 -0
  1130. data/vendor/local/share/locale/bs/LC_MESSAGES/glib20.mo +0 -0
  1131. data/vendor/local/share/locale/ca/LC_MESSAGES/gettext-runtime.mo +0 -0
  1132. data/vendor/local/share/locale/ca/LC_MESSAGES/glib-networking.mo +0 -0
  1133. data/vendor/local/share/locale/ca/LC_MESSAGES/glib20.mo +0 -0
  1134. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/glib-networking.mo +0 -0
  1135. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/glib20.mo +0 -0
  1136. data/vendor/local/share/locale/cs/LC_MESSAGES/gettext-runtime.mo +0 -0
  1137. data/vendor/local/share/locale/cs/LC_MESSAGES/glib-networking.mo +0 -0
  1138. data/vendor/local/share/locale/cs/LC_MESSAGES/glib20.mo +0 -0
  1139. data/vendor/local/share/locale/cs/LC_MESSAGES/gnutls.mo +0 -0
  1140. data/vendor/local/share/locale/cy/LC_MESSAGES/glib20.mo +0 -0
  1141. data/vendor/local/share/locale/da/LC_MESSAGES/gettext-runtime.mo +0 -0
  1142. data/vendor/local/share/locale/da/LC_MESSAGES/glib-networking.mo +0 -0
  1143. data/vendor/local/share/locale/da/LC_MESSAGES/glib20.mo +0 -0
  1144. data/vendor/local/share/locale/de/LC_MESSAGES/gettext-runtime.mo +0 -0
  1145. data/vendor/local/share/locale/de/LC_MESSAGES/glib-networking.mo +0 -0
  1146. data/vendor/local/share/locale/de/LC_MESSAGES/glib20.mo +0 -0
  1147. data/vendor/local/share/locale/de/LC_MESSAGES/gnutls.mo +0 -0
  1148. data/vendor/local/share/locale/dz/LC_MESSAGES/glib20.mo +0 -0
  1149. data/vendor/local/share/locale/el/LC_MESSAGES/gettext-runtime.mo +0 -0
  1150. data/vendor/local/share/locale/el/LC_MESSAGES/glib-networking.mo +0 -0
  1151. data/vendor/local/share/locale/el/LC_MESSAGES/glib20.mo +0 -0
  1152. data/vendor/local/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo +0 -0
  1153. data/vendor/local/share/locale/en@boldquot/LC_MESSAGES/gnutls.mo +0 -0
  1154. data/vendor/local/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo +0 -0
  1155. data/vendor/local/share/locale/en@quot/LC_MESSAGES/gnutls.mo +0 -0
  1156. data/vendor/local/share/locale/en@shaw/LC_MESSAGES/glib20.mo +0 -0
  1157. data/vendor/local/share/locale/en_CA/LC_MESSAGES/glib-networking.mo +0 -0
  1158. data/vendor/local/share/locale/en_CA/LC_MESSAGES/glib20.mo +0 -0
  1159. data/vendor/local/share/locale/en_GB/LC_MESSAGES/glib-networking.mo +0 -0
  1160. data/vendor/local/share/locale/en_GB/LC_MESSAGES/glib20.mo +0 -0
  1161. data/vendor/local/share/locale/eo/LC_MESSAGES/gettext-runtime.mo +0 -0
  1162. data/vendor/local/share/locale/eo/LC_MESSAGES/glib-networking.mo +0 -0
  1163. data/vendor/local/share/locale/eo/LC_MESSAGES/glib20.mo +0 -0
  1164. data/vendor/local/share/locale/eo/LC_MESSAGES/gnutls.mo +0 -0
  1165. data/vendor/local/share/locale/es/LC_MESSAGES/gettext-runtime.mo +0 -0
  1166. data/vendor/local/share/locale/es/LC_MESSAGES/glib-networking.mo +0 -0
  1167. data/vendor/local/share/locale/es/LC_MESSAGES/glib20.mo +0 -0
  1168. data/vendor/local/share/locale/et/LC_MESSAGES/gettext-runtime.mo +0 -0
  1169. data/vendor/local/share/locale/et/LC_MESSAGES/glib-networking.mo +0 -0
  1170. data/vendor/local/share/locale/et/LC_MESSAGES/glib20.mo +0 -0
  1171. data/vendor/local/share/locale/eu/LC_MESSAGES/glib-networking.mo +0 -0
  1172. data/vendor/local/share/locale/eu/LC_MESSAGES/glib20.mo +0 -0
  1173. data/vendor/local/share/locale/fa/LC_MESSAGES/glib-networking.mo +0 -0
  1174. data/vendor/local/share/locale/fa/LC_MESSAGES/glib20.mo +0 -0
  1175. data/vendor/local/share/locale/fi/LC_MESSAGES/gettext-runtime.mo +0 -0
  1176. data/vendor/local/share/locale/fi/LC_MESSAGES/glib-networking.mo +0 -0
  1177. data/vendor/local/share/locale/fi/LC_MESSAGES/glib20.mo +0 -0
  1178. data/vendor/local/share/locale/fi/LC_MESSAGES/gnutls.mo +0 -0
  1179. data/vendor/local/share/locale/fr/LC_MESSAGES/gettext-runtime.mo +0 -0
  1180. data/vendor/local/share/locale/fr/LC_MESSAGES/glib-networking.mo +0 -0
  1181. data/vendor/local/share/locale/fr/LC_MESSAGES/glib20.mo +0 -0
  1182. data/vendor/local/share/locale/fr/LC_MESSAGES/gnutls.mo +0 -0
  1183. data/vendor/local/share/locale/fur/LC_MESSAGES/glib-networking.mo +0 -0
  1184. data/vendor/local/share/locale/ga/LC_MESSAGES/gettext-runtime.mo +0 -0
  1185. data/vendor/local/share/locale/ga/LC_MESSAGES/glib20.mo +0 -0
  1186. data/vendor/local/share/locale/gl/LC_MESSAGES/gettext-runtime.mo +0 -0
  1187. data/vendor/local/share/locale/gl/LC_MESSAGES/glib-networking.mo +0 -0
  1188. data/vendor/local/share/locale/gl/LC_MESSAGES/glib20.mo +0 -0
  1189. data/vendor/local/share/locale/gu/LC_MESSAGES/glib-networking.mo +0 -0
  1190. data/vendor/local/share/locale/gu/LC_MESSAGES/glib20.mo +0 -0
  1191. data/vendor/local/share/locale/he/LC_MESSAGES/glib-networking.mo +0 -0
  1192. data/vendor/local/share/locale/he/LC_MESSAGES/glib20.mo +0 -0
  1193. data/vendor/local/share/locale/hi/LC_MESSAGES/glib-networking.mo +0 -0
  1194. data/vendor/local/share/locale/hi/LC_MESSAGES/glib20.mo +0 -0
  1195. data/vendor/local/share/locale/hr/LC_MESSAGES/gettext-runtime.mo +0 -0
  1196. data/vendor/local/share/locale/hr/LC_MESSAGES/glib20.mo +0 -0
  1197. data/vendor/local/share/locale/hu/LC_MESSAGES/gettext-runtime.mo +0 -0
  1198. data/vendor/local/share/locale/hu/LC_MESSAGES/glib-networking.mo +0 -0
  1199. data/vendor/local/share/locale/hu/LC_MESSAGES/glib20.mo +0 -0
  1200. data/vendor/local/share/locale/hy/LC_MESSAGES/glib20.mo +0 -0
  1201. data/vendor/local/share/locale/id/LC_MESSAGES/gettext-runtime.mo +0 -0
  1202. data/vendor/local/share/locale/id/LC_MESSAGES/glib-networking.mo +0 -0
  1203. data/vendor/local/share/locale/id/LC_MESSAGES/glib20.mo +0 -0
  1204. data/vendor/local/share/locale/is/LC_MESSAGES/glib20.mo +0 -0
  1205. data/vendor/local/share/locale/it/LC_MESSAGES/gettext-runtime.mo +0 -0
  1206. data/vendor/local/share/locale/it/LC_MESSAGES/glib-networking.mo +0 -0
  1207. data/vendor/local/share/locale/it/LC_MESSAGES/glib20.mo +0 -0
  1208. data/vendor/local/share/locale/it/LC_MESSAGES/gnutls.mo +0 -0
  1209. data/vendor/local/share/locale/ja/LC_MESSAGES/gettext-runtime.mo +0 -0
  1210. data/vendor/local/share/locale/ja/LC_MESSAGES/glib-networking.mo +0 -0
  1211. data/vendor/local/share/locale/ja/LC_MESSAGES/glib20.mo +0 -0
  1212. data/vendor/local/share/locale/ka/LC_MESSAGES/glib20.mo +0 -0
  1213. data/vendor/local/share/locale/kk/LC_MESSAGES/glib-networking.mo +0 -0
  1214. data/vendor/local/share/locale/kk/LC_MESSAGES/glib20.mo +0 -0
  1215. data/vendor/local/share/locale/km/LC_MESSAGES/glib-networking.mo +0 -0
  1216. data/vendor/local/share/locale/kn/LC_MESSAGES/glib-networking.mo +0 -0
  1217. data/vendor/local/share/locale/kn/LC_MESSAGES/glib20.mo +0 -0
  1218. data/vendor/local/share/locale/ko/LC_MESSAGES/gettext-runtime.mo +0 -0
  1219. data/vendor/local/share/locale/ko/LC_MESSAGES/glib-networking.mo +0 -0
  1220. data/vendor/local/share/locale/ko/LC_MESSAGES/glib20.mo +0 -0
  1221. data/vendor/local/share/locale/ku/LC_MESSAGES/glib20.mo +0 -0
  1222. data/vendor/local/share/locale/locale.alias +75 -0
  1223. data/vendor/local/share/locale/lt/LC_MESSAGES/glib-networking.mo +0 -0
  1224. data/vendor/local/share/locale/lt/LC_MESSAGES/glib20.mo +0 -0
  1225. data/vendor/local/share/locale/lv/LC_MESSAGES/glib-networking.mo +0 -0
  1226. data/vendor/local/share/locale/lv/LC_MESSAGES/glib20.mo +0 -0
  1227. data/vendor/local/share/locale/mai/LC_MESSAGES/glib20.mo +0 -0
  1228. data/vendor/local/share/locale/mg/LC_MESSAGES/glib20.mo +0 -0
  1229. data/vendor/local/share/locale/mk/LC_MESSAGES/glib20.mo +0 -0
  1230. data/vendor/local/share/locale/ml/LC_MESSAGES/glib-networking.mo +0 -0
  1231. data/vendor/local/share/locale/ml/LC_MESSAGES/glib20.mo +0 -0
  1232. data/vendor/local/share/locale/mn/LC_MESSAGES/glib20.mo +0 -0
  1233. data/vendor/local/share/locale/mr/LC_MESSAGES/glib-networking.mo +0 -0
  1234. data/vendor/local/share/locale/mr/LC_MESSAGES/glib20.mo +0 -0
  1235. data/vendor/local/share/locale/ms/LC_MESSAGES/glib20.mo +0 -0
  1236. data/vendor/local/share/locale/ms/LC_MESSAGES/gnutls.mo +0 -0
  1237. data/vendor/local/share/locale/nb/LC_MESSAGES/gettext-runtime.mo +0 -0
  1238. data/vendor/local/share/locale/nb/LC_MESSAGES/glib-networking.mo +0 -0
  1239. data/vendor/local/share/locale/nb/LC_MESSAGES/glib20.mo +0 -0
  1240. data/vendor/local/share/locale/nds/LC_MESSAGES/glib20.mo +0 -0
  1241. data/vendor/local/share/locale/ne/LC_MESSAGES/glib20.mo +0 -0
  1242. data/vendor/local/share/locale/nl/LC_MESSAGES/gettext-runtime.mo +0 -0
  1243. data/vendor/local/share/locale/nl/LC_MESSAGES/glib-networking.mo +0 -0
  1244. data/vendor/local/share/locale/nl/LC_MESSAGES/glib20.mo +0 -0
  1245. data/vendor/local/share/locale/nl/LC_MESSAGES/gnutls.mo +0 -0
  1246. data/vendor/local/share/locale/nn/LC_MESSAGES/gettext-runtime.mo +0 -0
  1247. data/vendor/local/share/locale/nn/LC_MESSAGES/glib20.mo +0 -0
  1248. data/vendor/local/share/locale/oc/LC_MESSAGES/glib20.mo +0 -0
  1249. data/vendor/local/share/locale/or/LC_MESSAGES/glib-networking.mo +0 -0
  1250. data/vendor/local/share/locale/or/LC_MESSAGES/glib20.mo +0 -0
  1251. data/vendor/local/share/locale/pa/LC_MESSAGES/glib-networking.mo +0 -0
  1252. data/vendor/local/share/locale/pa/LC_MESSAGES/glib20.mo +0 -0
  1253. data/vendor/local/share/locale/pl/LC_MESSAGES/gettext-runtime.mo +0 -0
  1254. data/vendor/local/share/locale/pl/LC_MESSAGES/glib-networking.mo +0 -0
  1255. data/vendor/local/share/locale/pl/LC_MESSAGES/glib20.mo +0 -0
  1256. data/vendor/local/share/locale/pl/LC_MESSAGES/gnutls.mo +0 -0
  1257. data/vendor/local/share/locale/ps/LC_MESSAGES/glib20.mo +0 -0
  1258. data/vendor/local/share/locale/pt/LC_MESSAGES/gettext-runtime.mo +0 -0
  1259. data/vendor/local/share/locale/pt/LC_MESSAGES/glib-networking.mo +0 -0
  1260. data/vendor/local/share/locale/pt/LC_MESSAGES/glib20.mo +0 -0
  1261. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo +0 -0
  1262. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/glib-networking.mo +0 -0
  1263. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/glib20.mo +0 -0
  1264. data/vendor/local/share/locale/ro/LC_MESSAGES/gettext-runtime.mo +0 -0
  1265. data/vendor/local/share/locale/ro/LC_MESSAGES/glib-networking.mo +0 -0
  1266. data/vendor/local/share/locale/ro/LC_MESSAGES/glib20.mo +0 -0
  1267. data/vendor/local/share/locale/ru/LC_MESSAGES/gettext-runtime.mo +0 -0
  1268. data/vendor/local/share/locale/ru/LC_MESSAGES/glib-networking.mo +0 -0
  1269. data/vendor/local/share/locale/ru/LC_MESSAGES/glib20.mo +0 -0
  1270. data/vendor/local/share/locale/rw/LC_MESSAGES/glib20.mo +0 -0
  1271. data/vendor/local/share/locale/si/LC_MESSAGES/glib20.mo +0 -0
  1272. data/vendor/local/share/locale/sk/LC_MESSAGES/gettext-runtime.mo +0 -0
  1273. data/vendor/local/share/locale/sk/LC_MESSAGES/glib-networking.mo +0 -0
  1274. data/vendor/local/share/locale/sk/LC_MESSAGES/glib20.mo +0 -0
  1275. data/vendor/local/share/locale/sl/LC_MESSAGES/gettext-runtime.mo +0 -0
  1276. data/vendor/local/share/locale/sl/LC_MESSAGES/glib-networking.mo +0 -0
  1277. data/vendor/local/share/locale/sl/LC_MESSAGES/glib20.mo +0 -0
  1278. data/vendor/local/share/locale/sq/LC_MESSAGES/glib20.mo +0 -0
  1279. data/vendor/local/share/locale/sr/LC_MESSAGES/gettext-runtime.mo +0 -0
  1280. data/vendor/local/share/locale/sr/LC_MESSAGES/glib-networking.mo +0 -0
  1281. data/vendor/local/share/locale/sr/LC_MESSAGES/glib20.mo +0 -0
  1282. data/vendor/local/share/locale/sr@ije/LC_MESSAGES/glib20.mo +0 -0
  1283. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/glib-networking.mo +0 -0
  1284. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/glib20.mo +0 -0
  1285. data/vendor/local/share/locale/sv/LC_MESSAGES/gettext-runtime.mo +0 -0
  1286. data/vendor/local/share/locale/sv/LC_MESSAGES/glib-networking.mo +0 -0
  1287. data/vendor/local/share/locale/sv/LC_MESSAGES/glib20.mo +0 -0
  1288. data/vendor/local/share/locale/sv/LC_MESSAGES/gnutls.mo +0 -0
  1289. data/vendor/local/share/locale/ta/LC_MESSAGES/glib-networking.mo +0 -0
  1290. data/vendor/local/share/locale/ta/LC_MESSAGES/glib20.mo +0 -0
  1291. data/vendor/local/share/locale/te/LC_MESSAGES/glib-networking.mo +0 -0
  1292. data/vendor/local/share/locale/te/LC_MESSAGES/glib20.mo +0 -0
  1293. data/vendor/local/share/locale/tg/LC_MESSAGES/glib-networking.mo +0 -0
  1294. data/vendor/local/share/locale/tg/LC_MESSAGES/glib20.mo +0 -0
  1295. data/vendor/local/share/locale/th/LC_MESSAGES/glib-networking.mo +0 -0
  1296. data/vendor/local/share/locale/th/LC_MESSAGES/glib20.mo +0 -0
  1297. data/vendor/local/share/locale/tl/LC_MESSAGES/glib20.mo +0 -0
  1298. data/vendor/local/share/locale/tr/LC_MESSAGES/gettext-runtime.mo +0 -0
  1299. data/vendor/local/share/locale/tr/LC_MESSAGES/glib-networking.mo +0 -0
  1300. data/vendor/local/share/locale/tr/LC_MESSAGES/glib20.mo +0 -0
  1301. data/vendor/local/share/locale/tt/LC_MESSAGES/glib20.mo +0 -0
  1302. data/vendor/local/share/locale/ug/LC_MESSAGES/glib-networking.mo +0 -0
  1303. data/vendor/local/share/locale/ug/LC_MESSAGES/glib20.mo +0 -0
  1304. data/vendor/local/share/locale/uk/LC_MESSAGES/gettext-runtime.mo +0 -0
  1305. data/vendor/local/share/locale/uk/LC_MESSAGES/glib-networking.mo +0 -0
  1306. data/vendor/local/share/locale/uk/LC_MESSAGES/glib20.mo +0 -0
  1307. data/vendor/local/share/locale/uk/LC_MESSAGES/gnutls.mo +0 -0
  1308. data/vendor/local/share/locale/vi/LC_MESSAGES/gettext-runtime.mo +0 -0
  1309. data/vendor/local/share/locale/vi/LC_MESSAGES/glib-networking.mo +0 -0
  1310. data/vendor/local/share/locale/vi/LC_MESSAGES/glib20.mo +0 -0
  1311. data/vendor/local/share/locale/vi/LC_MESSAGES/gnutls.mo +0 -0
  1312. data/vendor/local/share/locale/wa/LC_MESSAGES/glib20.mo +0 -0
  1313. data/vendor/local/share/locale/xh/LC_MESSAGES/glib20.mo +0 -0
  1314. data/vendor/local/share/locale/yi/LC_MESSAGES/glib20.mo +0 -0
  1315. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo +0 -0
  1316. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/glib-networking.mo +0 -0
  1317. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/glib20.mo +0 -0
  1318. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gnutls.mo +0 -0
  1319. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo +0 -0
  1320. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/glib-networking.mo +0 -0
  1321. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/glib20.mo +0 -0
  1322. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo +0 -0
  1323. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/glib-networking.mo +0 -0
  1324. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/glib20.mo +0 -0
  1325. data/vendor/local/share/man/man1/certtool.1 +741 -0
  1326. data/vendor/local/share/man/man1/envsubst.1 +54 -0
  1327. data/vendor/local/share/man/man1/gettext.1 +69 -0
  1328. data/vendor/local/share/man/man1/gnutls-cli-debug.1 +165 -0
  1329. data/vendor/local/share/man/man1/gnutls-cli.1 +420 -0
  1330. data/vendor/local/share/man/man1/gnutls-serv.1 +453 -0
  1331. data/vendor/local/share/man/man1/iconv.1 +108 -0
  1332. data/vendor/local/share/man/man1/ngettext.1 +68 -0
  1333. data/vendor/local/share/man/man1/ocsptool.1 +335 -0
  1334. data/vendor/local/share/man/man1/p11tool.1 +320 -0
  1335. data/vendor/local/share/man/man1/psktool.1 +129 -0
  1336. data/vendor/local/share/man/man1/srptool.1 +164 -0
  1337. data/vendor/local/share/man/man1/tpmtool.1 +223 -0
  1338. data/vendor/local/share/man/man3/bind_textdomain_codeset.3 +72 -0
  1339. data/vendor/local/share/man/man3/bindtextdomain.3 +69 -0
  1340. data/vendor/local/share/man/man3/dcgettext.3 +1 -0
  1341. data/vendor/local/share/man/man3/dcngettext.3 +1 -0
  1342. data/vendor/local/share/man/man3/dgettext.3 +1 -0
  1343. data/vendor/local/share/man/man3/dngettext.3 +1 -0
  1344. data/vendor/local/share/man/man3/ffi.3 +41 -0
  1345. data/vendor/local/share/man/man3/ffi_call.3 +103 -0
  1346. data/vendor/local/share/man/man3/ffi_prep_cif.3 +68 -0
  1347. data/vendor/local/share/man/man3/ffi_prep_cif_var.3 +73 -0
  1348. data/vendor/local/share/man/man3/gettext.3 +99 -0
  1349. data/vendor/local/share/man/man3/gnutls_alert_get.3 +40 -0
  1350. data/vendor/local/share/man/man3/gnutls_alert_get_name.3 +36 -0
  1351. data/vendor/local/share/man/man3/gnutls_alert_get_strname.3 +37 -0
  1352. data/vendor/local/share/man/man3/gnutls_alert_send.3 +47 -0
  1353. data/vendor/local/share/man/man3/gnutls_alert_send_appropriate.3 +46 -0
  1354. data/vendor/local/share/man/man3/gnutls_alpn_get_selected_protocol.3 +42 -0
  1355. data/vendor/local/share/man/man3/gnutls_alpn_set_protocols.3 +48 -0
  1356. data/vendor/local/share/man/man3/gnutls_anon_allocate_client_credentials.3 +36 -0
  1357. data/vendor/local/share/man/man3/gnutls_anon_allocate_server_credentials.3 +36 -0
  1358. data/vendor/local/share/man/man3/gnutls_anon_free_client_credentials.3 +34 -0
  1359. data/vendor/local/share/man/man3/gnutls_anon_free_server_credentials.3 +34 -0
  1360. data/vendor/local/share/man/man3/gnutls_anon_set_params_function.3 +37 -0
  1361. data/vendor/local/share/man/man3/gnutls_anon_set_server_dh_params.3 +37 -0
  1362. data/vendor/local/share/man/man3/gnutls_anon_set_server_params_function.3 +37 -0
  1363. data/vendor/local/share/man/man3/gnutls_auth_client_get_type.3 +38 -0
  1364. data/vendor/local/share/man/man3/gnutls_auth_get_type.3 +42 -0
  1365. data/vendor/local/share/man/man3/gnutls_auth_server_get_type.3 +38 -0
  1366. data/vendor/local/share/man/man3/gnutls_bye.3 +60 -0
  1367. data/vendor/local/share/man/man3/gnutls_certificate_activation_time_peers.3 +38 -0
  1368. data/vendor/local/share/man/man3/gnutls_certificate_allocate_credentials.3 +36 -0
  1369. data/vendor/local/share/man/man3/gnutls_certificate_client_get_request_status.3 +37 -0
  1370. data/vendor/local/share/man/man3/gnutls_certificate_client_set_retrieve_function.3 +62 -0
  1371. data/vendor/local/share/man/man3/gnutls_certificate_expiration_time_peers.3 +37 -0
  1372. data/vendor/local/share/man/man3/gnutls_certificate_free_ca_names.3 +41 -0
  1373. data/vendor/local/share/man/man3/gnutls_certificate_free_cas.3 +36 -0
  1374. data/vendor/local/share/man/man3/gnutls_certificate_free_credentials.3 +38 -0
  1375. data/vendor/local/share/man/man3/gnutls_certificate_free_crls.3 +34 -0
  1376. data/vendor/local/share/man/man3/gnutls_certificate_free_keys.3 +35 -0
  1377. data/vendor/local/share/man/man3/gnutls_certificate_get_crt_raw.3 +48 -0
  1378. data/vendor/local/share/man/man3/gnutls_certificate_get_issuer.3 +44 -0
  1379. data/vendor/local/share/man/man3/gnutls_certificate_get_ours.3 +39 -0
  1380. data/vendor/local/share/man/man3/gnutls_certificate_get_peers.3 +46 -0
  1381. data/vendor/local/share/man/man3/gnutls_certificate_get_peers_subkey_id.3 +41 -0
  1382. data/vendor/local/share/man/man3/gnutls_certificate_send_x509_rdn_sequence.3 +42 -0
  1383. data/vendor/local/share/man/man3/gnutls_certificate_server_set_request.3 +39 -0
  1384. data/vendor/local/share/man/man3/gnutls_certificate_server_set_retrieve_function.3 +50 -0
  1385. data/vendor/local/share/man/man3/gnutls_certificate_set_dh_params.3 +39 -0
  1386. data/vendor/local/share/man/man3/gnutls_certificate_set_key.3 +56 -0
  1387. data/vendor/local/share/man/man3/gnutls_certificate_set_ocsp_status_request_file.3 +47 -0
  1388. data/vendor/local/share/man/man3/gnutls_certificate_set_ocsp_status_request_function.3 +56 -0
  1389. data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key.3 +47 -0
  1390. data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_file.3 +43 -0
  1391. data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_file2.3 +51 -0
  1392. data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_mem.3 +43 -0
  1393. data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_mem2.3 +51 -0
  1394. data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_keyring_file.3 +43 -0
  1395. data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_keyring_mem.3 +45 -0
  1396. data/vendor/local/share/man/man3/gnutls_certificate_set_params_function.3 +37 -0
  1397. data/vendor/local/share/man/man3/gnutls_certificate_set_pin_function.3 +44 -0
  1398. data/vendor/local/share/man/man3/gnutls_certificate_set_retrieve_function.3 +65 -0
  1399. data/vendor/local/share/man/man3/gnutls_certificate_set_retrieve_function2.3 +68 -0
  1400. data/vendor/local/share/man/man3/gnutls_certificate_set_rsa_export_params.3 +37 -0
  1401. data/vendor/local/share/man/man3/gnutls_certificate_set_trust_list.3 +45 -0
  1402. data/vendor/local/share/man/man3/gnutls_certificate_set_verify_flags.3 +37 -0
  1403. data/vendor/local/share/man/man3/gnutls_certificate_set_verify_function.3 +51 -0
  1404. data/vendor/local/share/man/man3/gnutls_certificate_set_verify_limits.3 +40 -0
  1405. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_crl.3 +45 -0
  1406. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_crl_file.3 +43 -0
  1407. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_crl_mem.3 +43 -0
  1408. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key.3 +51 -0
  1409. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_file.3 +58 -0
  1410. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_file2.3 +62 -0
  1411. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_mem.3 +54 -0
  1412. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_mem2.3 +58 -0
  1413. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_simple_pkcs12_file.3 +63 -0
  1414. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_simple_pkcs12_mem.3 +64 -0
  1415. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_system_trust.3 +42 -0
  1416. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_trust.3 +50 -0
  1417. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_trust_file.3 +52 -0
  1418. data/vendor/local/share/man/man3/gnutls_certificate_set_x509_trust_mem.3 +48 -0
  1419. data/vendor/local/share/man/man3/gnutls_certificate_type_get.3 +37 -0
  1420. data/vendor/local/share/man/man3/gnutls_certificate_type_get_id.3 +36 -0
  1421. data/vendor/local/share/man/man3/gnutls_certificate_type_get_name.3 +36 -0
  1422. data/vendor/local/share/man/man3/gnutls_certificate_type_list.3 +36 -0
  1423. data/vendor/local/share/man/man3/gnutls_certificate_type_set_priority.3 +42 -0
  1424. data/vendor/local/share/man/man3/gnutls_certificate_verification_status_print.3 +47 -0
  1425. data/vendor/local/share/man/man3/gnutls_certificate_verify_peers2.3 +51 -0
  1426. data/vendor/local/share/man/man3/gnutls_certificate_verify_peers3.3 +55 -0
  1427. data/vendor/local/share/man/man3/gnutls_check_version.3 +41 -0
  1428. data/vendor/local/share/man/man3/gnutls_cipher_add_auth.3 +44 -0
  1429. data/vendor/local/share/man/man3/gnutls_cipher_decrypt.3 +45 -0
  1430. data/vendor/local/share/man/man3/gnutls_cipher_decrypt2.3 +49 -0
  1431. data/vendor/local/share/man/man3/gnutls_cipher_deinit.3 +36 -0
  1432. data/vendor/local/share/man/man3/gnutls_cipher_encrypt.3 +42 -0
  1433. data/vendor/local/share/man/man3/gnutls_cipher_encrypt2.3 +46 -0
  1434. data/vendor/local/share/man/man3/gnutls_cipher_get.3 +36 -0
  1435. data/vendor/local/share/man/man3/gnutls_cipher_get_block_size.3 +35 -0
  1436. data/vendor/local/share/man/man3/gnutls_cipher_get_id.3 +36 -0
  1437. data/vendor/local/share/man/man3/gnutls_cipher_get_iv_size.3 +37 -0
  1438. data/vendor/local/share/man/man3/gnutls_cipher_get_key_size.3 +36 -0
  1439. data/vendor/local/share/man/man3/gnutls_cipher_get_name.3 +36 -0
  1440. data/vendor/local/share/man/man3/gnutls_cipher_get_tag_size.3 +35 -0
  1441. data/vendor/local/share/man/man3/gnutls_cipher_init.3 +46 -0
  1442. data/vendor/local/share/man/man3/gnutls_cipher_list.3 +41 -0
  1443. data/vendor/local/share/man/man3/gnutls_cipher_set_iv.3 +40 -0
  1444. data/vendor/local/share/man/man3/gnutls_cipher_set_priority.3 +41 -0
  1445. data/vendor/local/share/man/man3/gnutls_cipher_suite_get_name.3 +41 -0
  1446. data/vendor/local/share/man/man3/gnutls_cipher_suite_info.3 +50 -0
  1447. data/vendor/local/share/man/man3/gnutls_cipher_tag.3 +43 -0
  1448. data/vendor/local/share/man/man3/gnutls_compression_get.3 +36 -0
  1449. data/vendor/local/share/man/man3/gnutls_compression_get_id.3 +36 -0
  1450. data/vendor/local/share/man/man3/gnutls_compression_get_name.3 +36 -0
  1451. data/vendor/local/share/man/man3/gnutls_compression_list.3 +36 -0
  1452. data/vendor/local/share/man/man3/gnutls_compression_set_priority.3 +46 -0
  1453. data/vendor/local/share/man/man3/gnutls_credentials_clear.3 +33 -0
  1454. data/vendor/local/share/man/man3/gnutls_credentials_set.3 +59 -0
  1455. data/vendor/local/share/man/man3/gnutls_db_check_entry.3 +38 -0
  1456. data/vendor/local/share/man/man3/gnutls_db_check_entry_time.3 +36 -0
  1457. data/vendor/local/share/man/man3/gnutls_db_get_default_cache_expiration.3 +35 -0
  1458. data/vendor/local/share/man/man3/gnutls_db_get_ptr.3 +36 -0
  1459. data/vendor/local/share/man/man3/gnutls_db_remove_session.3 +39 -0
  1460. data/vendor/local/share/man/man3/gnutls_db_set_cache_expiration.3 +36 -0
  1461. data/vendor/local/share/man/man3/gnutls_db_set_ptr.3 +36 -0
  1462. data/vendor/local/share/man/man3/gnutls_db_set_remove_function.3 +39 -0
  1463. data/vendor/local/share/man/man3/gnutls_db_set_retrieve_function.3 +44 -0
  1464. data/vendor/local/share/man/man3/gnutls_db_set_store_function.3 +39 -0
  1465. data/vendor/local/share/man/man3/gnutls_deinit.3 +35 -0
  1466. data/vendor/local/share/man/man3/gnutls_dh_get_group.3 +44 -0
  1467. data/vendor/local/share/man/man3/gnutls_dh_get_peers_public_bits.3 +37 -0
  1468. data/vendor/local/share/man/man3/gnutls_dh_get_prime_bits.3 +41 -0
  1469. data/vendor/local/share/man/man3/gnutls_dh_get_pubkey.3 +41 -0
  1470. data/vendor/local/share/man/man3/gnutls_dh_get_secret_bits.3 +38 -0
  1471. data/vendor/local/share/man/man3/gnutls_dh_params_cpy.3 +39 -0
  1472. data/vendor/local/share/man/man3/gnutls_dh_params_deinit.3 +33 -0
  1473. data/vendor/local/share/man/man3/gnutls_dh_params_export2_pkcs3.3 +47 -0
  1474. data/vendor/local/share/man/man3/gnutls_dh_params_export_pkcs3.3 +48 -0
  1475. data/vendor/local/share/man/man3/gnutls_dh_params_export_raw.3 +45 -0
  1476. data/vendor/local/share/man/man3/gnutls_dh_params_generate2.3 +47 -0
  1477. data/vendor/local/share/man/man3/gnutls_dh_params_import_pkcs3.3 +44 -0
  1478. data/vendor/local/share/man/man3/gnutls_dh_params_import_raw.3 +42 -0
  1479. data/vendor/local/share/man/man3/gnutls_dh_params_init.3 +36 -0
  1480. data/vendor/local/share/man/man3/gnutls_dh_set_prime_bits.3 +52 -0
  1481. data/vendor/local/share/man/man3/gnutls_digest_get_id.3 +37 -0
  1482. data/vendor/local/share/man/man3/gnutls_digest_get_name.3 +36 -0
  1483. data/vendor/local/share/man/man3/gnutls_digest_list.3 +38 -0
  1484. data/vendor/local/share/man/man3/gnutls_dtls_cookie_send.3 +56 -0
  1485. data/vendor/local/share/man/man3/gnutls_dtls_cookie_verify.3 +52 -0
  1486. data/vendor/local/share/man/man3/gnutls_dtls_get_data_mtu.3 +39 -0
  1487. data/vendor/local/share/man/man3/gnutls_dtls_get_mtu.3 +40 -0
  1488. data/vendor/local/share/man/man3/gnutls_dtls_get_timeout.3 +41 -0
  1489. data/vendor/local/share/man/man3/gnutls_dtls_prestate_set.3 +42 -0
  1490. data/vendor/local/share/man/man3/gnutls_dtls_set_data_mtu.3 +48 -0
  1491. data/vendor/local/share/man/man3/gnutls_dtls_set_mtu.3 +41 -0
  1492. data/vendor/local/share/man/man3/gnutls_dtls_set_timeouts.3 +51 -0
  1493. data/vendor/local/share/man/man3/gnutls_ecc_curve_get.3 +39 -0
  1494. data/vendor/local/share/man/man3/gnutls_ecc_curve_get_name.3 +38 -0
  1495. data/vendor/local/share/man/man3/gnutls_ecc_curve_get_size.3 +37 -0
  1496. data/vendor/local/share/man/man3/gnutls_ecc_curve_list.3 +38 -0
  1497. data/vendor/local/share/man/man3/gnutls_error_is_fatal.3 +46 -0
  1498. data/vendor/local/share/man/man3/gnutls_error_to_alert.3 +44 -0
  1499. data/vendor/local/share/man/man3/gnutls_est_record_overhead_size.3 +49 -0
  1500. data/vendor/local/share/man/man3/gnutls_fingerprint.3 +50 -0
  1501. data/vendor/local/share/man/man3/gnutls_global_deinit.3 +37 -0
  1502. data/vendor/local/share/man/man3/gnutls_global_init.3 +54 -0
  1503. data/vendor/local/share/man/man3/gnutls_global_set_audit_log_function.3 +42 -0
  1504. data/vendor/local/share/man/man3/gnutls_global_set_log_function.3 +39 -0
  1505. data/vendor/local/share/man/man3/gnutls_global_set_log_level.3 +38 -0
  1506. data/vendor/local/share/man/man3/gnutls_global_set_mem_functions.3 +48 -0
  1507. data/vendor/local/share/man/man3/gnutls_global_set_mutex.3 +47 -0
  1508. data/vendor/local/share/man/man3/gnutls_global_set_time_function.3 +37 -0
  1509. data/vendor/local/share/man/man3/gnutls_handshake.3 +61 -0
  1510. data/vendor/local/share/man/man3/gnutls_handshake_description_get_name.3 +36 -0
  1511. data/vendor/local/share/man/man3/gnutls_handshake_get_last_in.3 +41 -0
  1512. data/vendor/local/share/man/man3/gnutls_handshake_get_last_out.3 +41 -0
  1513. data/vendor/local/share/man/man3/gnutls_handshake_set_hook_function.3 +55 -0
  1514. data/vendor/local/share/man/man3/gnutls_handshake_set_max_packet_length.3 +42 -0
  1515. data/vendor/local/share/man/man3/gnutls_handshake_set_post_client_hello_function.3 +49 -0
  1516. data/vendor/local/share/man/man3/gnutls_handshake_set_private_extensions.3 +42 -0
  1517. data/vendor/local/share/man/man3/gnutls_handshake_set_random.3 +46 -0
  1518. data/vendor/local/share/man/man3/gnutls_handshake_set_timeout.3 +41 -0
  1519. data/vendor/local/share/man/man3/gnutls_hash.3 +42 -0
  1520. data/vendor/local/share/man/man3/gnutls_hash_deinit.3 +38 -0
  1521. data/vendor/local/share/man/man3/gnutls_hash_fast.3 +44 -0
  1522. data/vendor/local/share/man/man3/gnutls_hash_get_len.3 +38 -0
  1523. data/vendor/local/share/man/man3/gnutls_hash_init.3 +42 -0
  1524. data/vendor/local/share/man/man3/gnutls_hash_output.3 +38 -0
  1525. data/vendor/local/share/man/man3/gnutls_heartbeat_allowed.3 +40 -0
  1526. data/vendor/local/share/man/man3/gnutls_heartbeat_enable.3 +42 -0
  1527. data/vendor/local/share/man/man3/gnutls_heartbeat_get_timeout.3 +41 -0
  1528. data/vendor/local/share/man/man3/gnutls_heartbeat_ping.3 +48 -0
  1529. data/vendor/local/share/man/man3/gnutls_heartbeat_pong.3 +39 -0
  1530. data/vendor/local/share/man/man3/gnutls_heartbeat_set_timeouts.3 +46 -0
  1531. data/vendor/local/share/man/man3/gnutls_hex2bin.3 +44 -0
  1532. data/vendor/local/share/man/man3/gnutls_hex_decode.3 +43 -0
  1533. data/vendor/local/share/man/man3/gnutls_hex_encode.3 +43 -0
  1534. data/vendor/local/share/man/man3/gnutls_hmac.3 +42 -0
  1535. data/vendor/local/share/man/man3/gnutls_hmac_deinit.3 +38 -0
  1536. data/vendor/local/share/man/man3/gnutls_hmac_fast.3 +48 -0
  1537. data/vendor/local/share/man/man3/gnutls_hmac_get_len.3 +38 -0
  1538. data/vendor/local/share/man/man3/gnutls_hmac_init.3 +49 -0
  1539. data/vendor/local/share/man/man3/gnutls_hmac_output.3 +38 -0
  1540. data/vendor/local/share/man/man3/gnutls_hmac_set_nonce.3 +39 -0
  1541. data/vendor/local/share/man/man3/gnutls_init.3 +54 -0
  1542. data/vendor/local/share/man/man3/gnutls_key_generate.3 +41 -0
  1543. data/vendor/local/share/man/man3/gnutls_kx_get.3 +36 -0
  1544. data/vendor/local/share/man/man3/gnutls_kx_get_id.3 +37 -0
  1545. data/vendor/local/share/man/man3/gnutls_kx_get_name.3 +36 -0
  1546. data/vendor/local/share/man/man3/gnutls_kx_list.3 +38 -0
  1547. data/vendor/local/share/man/man3/gnutls_kx_set_priority.3 +42 -0
  1548. data/vendor/local/share/man/man3/gnutls_load_file.3 +42 -0
  1549. data/vendor/local/share/man/man3/gnutls_mac_get.3 +36 -0
  1550. data/vendor/local/share/man/man3/gnutls_mac_get_id.3 +37 -0
  1551. data/vendor/local/share/man/man3/gnutls_mac_get_key_size.3 +36 -0
  1552. data/vendor/local/share/man/man3/gnutls_mac_get_name.3 +36 -0
  1553. data/vendor/local/share/man/man3/gnutls_mac_get_nonce_size.3 +37 -0
  1554. data/vendor/local/share/man/man3/gnutls_mac_list.3 +38 -0
  1555. data/vendor/local/share/man/man3/gnutls_mac_set_priority.3 +42 -0
  1556. data/vendor/local/share/man/man3/gnutls_ocsp_req_add_cert.3 +46 -0
  1557. data/vendor/local/share/man/man3/gnutls_ocsp_req_add_cert_id.3 +57 -0
  1558. data/vendor/local/share/man/man3/gnutls_ocsp_req_deinit.3 +33 -0
  1559. data/vendor/local/share/man/man3/gnutls_ocsp_req_export.3 +38 -0
  1560. data/vendor/local/share/man/man3/gnutls_ocsp_req_get_cert_id.3 +61 -0
  1561. data/vendor/local/share/man/man3/gnutls_ocsp_req_get_extension.3 +54 -0
  1562. data/vendor/local/share/man/man3/gnutls_ocsp_req_get_nonce.3 +43 -0
  1563. data/vendor/local/share/man/man3/gnutls_ocsp_req_get_version.3 +36 -0
  1564. data/vendor/local/share/man/man3/gnutls_ocsp_req_import.3 +40 -0
  1565. data/vendor/local/share/man/man3/gnutls_ocsp_req_init.3 +36 -0
  1566. data/vendor/local/share/man/man3/gnutls_ocsp_req_print.3 +46 -0
  1567. data/vendor/local/share/man/man3/gnutls_ocsp_req_randomize_nonce.3 +37 -0
  1568. data/vendor/local/share/man/man3/gnutls_ocsp_req_set_extension.3 +44 -0
  1569. data/vendor/local/share/man/man3/gnutls_ocsp_req_set_nonce.3 +42 -0
  1570. data/vendor/local/share/man/man3/gnutls_ocsp_resp_check_crt.3 +43 -0
  1571. data/vendor/local/share/man/man3/gnutls_ocsp_resp_deinit.3 +33 -0
  1572. data/vendor/local/share/man/man3/gnutls_ocsp_resp_export.3 +38 -0
  1573. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_certs.3 +51 -0
  1574. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_extension.3 +54 -0
  1575. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_nonce.3 +44 -0
  1576. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_produced.3 +36 -0
  1577. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_responder.3 +44 -0
  1578. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_response.3 +49 -0
  1579. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_signature.3 +38 -0
  1580. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_signature_algorithm.3 +38 -0
  1581. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_single.3 +64 -0
  1582. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_status.3 +37 -0
  1583. data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_version.3 +37 -0
  1584. data/vendor/local/share/man/man3/gnutls_ocsp_resp_import.3 +40 -0
  1585. data/vendor/local/share/man/man3/gnutls_ocsp_resp_init.3 +36 -0
  1586. data/vendor/local/share/man/man3/gnutls_ocsp_resp_print.3 +46 -0
  1587. data/vendor/local/share/man/man3/gnutls_ocsp_resp_verify.3 +59 -0
  1588. data/vendor/local/share/man/man3/gnutls_ocsp_resp_verify_direct.3 +53 -0
  1589. data/vendor/local/share/man/man3/gnutls_ocsp_status_request_enable_client.3 +47 -0
  1590. data/vendor/local/share/man/man3/gnutls_ocsp_status_request_get.3 +43 -0
  1591. data/vendor/local/share/man/man3/gnutls_ocsp_status_request_is_checked.3 +42 -0
  1592. data/vendor/local/share/man/man3/gnutls_openpgp_crt_check_hostname.3 +39 -0
  1593. data/vendor/local/share/man/man3/gnutls_openpgp_crt_deinit.3 +33 -0
  1594. data/vendor/local/share/man/man3/gnutls_openpgp_crt_export.3 +44 -0
  1595. data/vendor/local/share/man/man3/gnutls_openpgp_crt_export2.3 +42 -0
  1596. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_auth_subkey.3 +42 -0
  1597. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_creation_time.3 +35 -0
  1598. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_expiration_time.3 +36 -0
  1599. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_fingerprint.3 +40 -0
  1600. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_key_id.3 +39 -0
  1601. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_key_usage.3 +39 -0
  1602. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_name.3 +45 -0
  1603. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_pk_algorithm.3 +43 -0
  1604. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_pk_dsa_raw.3 +47 -0
  1605. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_pk_rsa_raw.3 +43 -0
  1606. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_preferred_key_id.3 +38 -0
  1607. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_revoked_status.3 +38 -0
  1608. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_count.3 +38 -0
  1609. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_creation_time.3 +39 -0
  1610. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_expiration_time.3 +40 -0
  1611. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_fingerprint.3 +44 -0
  1612. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_id.3 +39 -0
  1613. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_idx.3 +39 -0
  1614. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_algorithm.3 +47 -0
  1615. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_dsa_raw.3 +49 -0
  1616. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_rsa_raw.3 +45 -0
  1617. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_revoked_status.3 +40 -0
  1618. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_usage.3 +45 -0
  1619. data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_version.3 +35 -0
  1620. data/vendor/local/share/man/man3/gnutls_openpgp_crt_import.3 +41 -0
  1621. data/vendor/local/share/man/man3/gnutls_openpgp_crt_init.3 +35 -0
  1622. data/vendor/local/share/man/man3/gnutls_openpgp_crt_print.3 +44 -0
  1623. data/vendor/local/share/man/man3/gnutls_openpgp_crt_set_preferred_key_id.3 +42 -0
  1624. data/vendor/local/share/man/man3/gnutls_openpgp_crt_verify_ring.3 +50 -0
  1625. data/vendor/local/share/man/man3/gnutls_openpgp_crt_verify_self.3 +41 -0
  1626. data/vendor/local/share/man/man3/gnutls_openpgp_keyring_check_id.3 +40 -0
  1627. data/vendor/local/share/man/man3/gnutls_openpgp_keyring_deinit.3 +33 -0
  1628. data/vendor/local/share/man/man3/gnutls_openpgp_keyring_get_crt.3 +42 -0
  1629. data/vendor/local/share/man/man3/gnutls_openpgp_keyring_get_crt_count.3 +36 -0
  1630. data/vendor/local/share/man/man3/gnutls_openpgp_keyring_import.3 +41 -0
  1631. data/vendor/local/share/man/man3/gnutls_openpgp_keyring_init.3 +35 -0
  1632. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_deinit.3 +33 -0
  1633. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export.3 +50 -0
  1634. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export2.3 +46 -0
  1635. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_dsa_raw.3 +49 -0
  1636. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_rsa_raw.3 +51 -0
  1637. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_subkey_dsa_raw.3 +51 -0
  1638. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_subkey_rsa_raw.3 +53 -0
  1639. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_fingerprint.3 +42 -0
  1640. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_key_id.3 +39 -0
  1641. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_pk_algorithm.3 +45 -0
  1642. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_preferred_key_id.3 +38 -0
  1643. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_revoked_status.3 +38 -0
  1644. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_count.3 +38 -0
  1645. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_creation_time.3 +39 -0
  1646. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_expiration_time.3 +40 -0
  1647. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_fingerprint.3 +44 -0
  1648. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_id.3 +41 -0
  1649. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_idx.3 +39 -0
  1650. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_pk_algorithm.3 +47 -0
  1651. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_revoked_status.3 +40 -0
  1652. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_import.3 +45 -0
  1653. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_init.3 +35 -0
  1654. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_sec_param.3 +39 -0
  1655. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_set_preferred_key_id.3 +42 -0
  1656. data/vendor/local/share/man/man3/gnutls_openpgp_privkey_sign_hash.3 +44 -0
  1657. data/vendor/local/share/man/man3/gnutls_openpgp_send_cert.3 +38 -0
  1658. data/vendor/local/share/man/man3/gnutls_openpgp_set_recv_key_function.3 +39 -0
  1659. data/vendor/local/share/man/man3/gnutls_pcert_deinit.3 +35 -0
  1660. data/vendor/local/share/man/man3/gnutls_pcert_import_openpgp.3 +44 -0
  1661. data/vendor/local/share/man/man3/gnutls_pcert_import_openpgp_raw.3 +48 -0
  1662. data/vendor/local/share/man/man3/gnutls_pcert_import_x509.3 +44 -0
  1663. data/vendor/local/share/man/man3/gnutls_pcert_import_x509_raw.3 +46 -0
  1664. data/vendor/local/share/man/man3/gnutls_pcert_list_import_x509_raw.3 +50 -0
  1665. data/vendor/local/share/man/man3/gnutls_pem_base64_decode.3 +46 -0
  1666. data/vendor/local/share/man/man3/gnutls_pem_base64_decode_alloc.3 +46 -0
  1667. data/vendor/local/share/man/man3/gnutls_pem_base64_encode.3 +47 -0
  1668. data/vendor/local/share/man/man3/gnutls_pem_base64_encode_alloc.3 +45 -0
  1669. data/vendor/local/share/man/man3/gnutls_perror.3 +34 -0
  1670. data/vendor/local/share/man/man3/gnutls_pk_algorithm_get_name.3 +36 -0
  1671. data/vendor/local/share/man/man3/gnutls_pk_bits_to_sec_param.3 +41 -0
  1672. data/vendor/local/share/man/man3/gnutls_pk_get_id.3 +40 -0
  1673. data/vendor/local/share/man/man3/gnutls_pk_get_name.3 +38 -0
  1674. data/vendor/local/share/man/man3/gnutls_pk_list.3 +40 -0
  1675. data/vendor/local/share/man/man3/gnutls_pk_to_sign.3 +38 -0
  1676. data/vendor/local/share/man/man3/gnutls_pkcs11_add_provider.3 +42 -0
  1677. data/vendor/local/share/man/man3/gnutls_pkcs11_copy_secret_key.3 +47 -0
  1678. data/vendor/local/share/man/man3/gnutls_pkcs11_copy_x509_crt.3 +45 -0
  1679. data/vendor/local/share/man/man3/gnutls_pkcs11_copy_x509_privkey.3 +48 -0
  1680. data/vendor/local/share/man/man3/gnutls_pkcs11_deinit.3 +35 -0
  1681. data/vendor/local/share/man/man3/gnutls_pkcs11_delete_url.3 +41 -0
  1682. data/vendor/local/share/man/man3/gnutls_pkcs11_get_pin_function.3 +38 -0
  1683. data/vendor/local/share/man/man3/gnutls_pkcs11_get_raw_issuer.3 +49 -0
  1684. data/vendor/local/share/man/man3/gnutls_pkcs11_init.3 +48 -0
  1685. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_deinit.3 +35 -0
  1686. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export.3 +49 -0
  1687. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export2.3 +44 -0
  1688. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export3.3 +46 -0
  1689. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export_url.3 +42 -0
  1690. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_get_info.3 +46 -0
  1691. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_get_type.3 +38 -0
  1692. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_import_url.3 +45 -0
  1693. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_init.3 +38 -0
  1694. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_list_import_url.3 +47 -0
  1695. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_list_import_url2.3 +48 -0
  1696. data/vendor/local/share/man/man3/gnutls_pkcs11_obj_set_pin_function.3 +41 -0
  1697. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_deinit.3 +33 -0
  1698. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_export_url.3 +40 -0
  1699. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_generate.3 +48 -0
  1700. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_generate2.3 +58 -0
  1701. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_get_info.3 +44 -0
  1702. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_get_pk_algorithm.3 +39 -0
  1703. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_import_url.3 +43 -0
  1704. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_init.3 +36 -0
  1705. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_set_pin_function.3 +41 -0
  1706. data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_status.3 +38 -0
  1707. data/vendor/local/share/man/man3/gnutls_pkcs11_reinit.3 +40 -0
  1708. data/vendor/local/share/man/man3/gnutls_pkcs11_set_pin_function.3 +39 -0
  1709. data/vendor/local/share/man/man3/gnutls_pkcs11_set_token_function.3 +38 -0
  1710. data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_flags.3 +41 -0
  1711. data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_info.3 +45 -0
  1712. data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_mechanism.3 +43 -0
  1713. data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_random.3 +42 -0
  1714. data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_url.3 +44 -0
  1715. data/vendor/local/share/man/man3/gnutls_pkcs11_token_init.3 +42 -0
  1716. data/vendor/local/share/man/man3/gnutls_pkcs11_token_set_pin.3 +44 -0
  1717. data/vendor/local/share/man/man3/gnutls_pkcs11_type_get_name.3 +40 -0
  1718. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_decrypt.3 +39 -0
  1719. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_deinit.3 +33 -0
  1720. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_encrypt.3 +40 -0
  1721. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_count.3 +36 -0
  1722. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_data.3 +42 -0
  1723. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_friendly_name.3 +42 -0
  1724. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_key_id.3 +42 -0
  1725. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_type.3 +37 -0
  1726. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_init.3 +38 -0
  1727. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_crl.3 +39 -0
  1728. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_crt.3 +39 -0
  1729. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_data.3 +41 -0
  1730. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_friendly_name.3 +43 -0
  1731. data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_key_id.3 +43 -0
  1732. data/vendor/local/share/man/man3/gnutls_pkcs12_deinit.3 +33 -0
  1733. data/vendor/local/share/man/man3/gnutls_pkcs12_export.3 +50 -0
  1734. data/vendor/local/share/man/man3/gnutls_pkcs12_export2.3 +47 -0
  1735. data/vendor/local/share/man/man3/gnutls_pkcs12_generate_mac.3 +38 -0
  1736. data/vendor/local/share/man/man3/gnutls_pkcs12_get_bag.3 +43 -0
  1737. data/vendor/local/share/man/man3/gnutls_pkcs12_import.3 +45 -0
  1738. data/vendor/local/share/man/man3/gnutls_pkcs12_init.3 +38 -0
  1739. data/vendor/local/share/man/man3/gnutls_pkcs12_set_bag.3 +38 -0
  1740. data/vendor/local/share/man/man3/gnutls_pkcs12_simple_parse.3 +84 -0
  1741. data/vendor/local/share/man/man3/gnutls_pkcs12_verify_mac.3 +38 -0
  1742. data/vendor/local/share/man/man3/gnutls_pkcs7_deinit.3 +33 -0
  1743. data/vendor/local/share/man/man3/gnutls_pkcs7_delete_crl.3 +39 -0
  1744. data/vendor/local/share/man/man3/gnutls_pkcs7_delete_crt.3 +39 -0
  1745. data/vendor/local/share/man/man3/gnutls_pkcs7_export.3 +50 -0
  1746. data/vendor/local/share/man/man3/gnutls_pkcs7_export2.3 +47 -0
  1747. data/vendor/local/share/man/man3/gnutls_pkcs7_get_crl_count.3 +37 -0
  1748. data/vendor/local/share/man/man3/gnutls_pkcs7_get_crl_raw.3 +45 -0
  1749. data/vendor/local/share/man/man3/gnutls_pkcs7_get_crt_count.3 +37 -0
  1750. data/vendor/local/share/man/man3/gnutls_pkcs7_get_crt_raw.3 +49 -0
  1751. data/vendor/local/share/man/man3/gnutls_pkcs7_import.3 +44 -0
  1752. data/vendor/local/share/man/man3/gnutls_pkcs7_init.3 +38 -0
  1753. data/vendor/local/share/man/man3/gnutls_pkcs7_set_crl.3 +39 -0
  1754. data/vendor/local/share/man/man3/gnutls_pkcs7_set_crl_raw.3 +38 -0
  1755. data/vendor/local/share/man/man3/gnutls_pkcs7_set_crt.3 +40 -0
  1756. data/vendor/local/share/man/man3/gnutls_pkcs7_set_crt_raw.3 +39 -0
  1757. data/vendor/local/share/man/man3/gnutls_prf.3 +64 -0
  1758. data/vendor/local/share/man/man3/gnutls_prf_raw.3 +62 -0
  1759. data/vendor/local/share/man/man3/gnutls_priority_certificate_type_list.3 +40 -0
  1760. data/vendor/local/share/man/man3/gnutls_priority_cipher_list.3 +40 -0
  1761. data/vendor/local/share/man/man3/gnutls_priority_compression_list.3 +40 -0
  1762. data/vendor/local/share/man/man3/gnutls_priority_deinit.3 +33 -0
  1763. data/vendor/local/share/man/man3/gnutls_priority_ecc_curve_list.3 +40 -0
  1764. data/vendor/local/share/man/man3/gnutls_priority_get_cipher_suite_index.3 +45 -0
  1765. data/vendor/local/share/man/man3/gnutls_priority_init.3 +102 -0
  1766. data/vendor/local/share/man/man3/gnutls_priority_kx_list.3 +40 -0
  1767. data/vendor/local/share/man/man3/gnutls_priority_mac_list.3 +40 -0
  1768. data/vendor/local/share/man/man3/gnutls_priority_protocol_list.3 +40 -0
  1769. data/vendor/local/share/man/man3/gnutls_priority_set.3 +38 -0
  1770. data/vendor/local/share/man/man3/gnutls_priority_set_direct.3 +45 -0
  1771. data/vendor/local/share/man/man3/gnutls_priority_sign_list.3 +40 -0
  1772. data/vendor/local/share/man/man3/gnutls_privkey_decrypt_data.3 +45 -0
  1773. data/vendor/local/share/man/man3/gnutls_privkey_deinit.3 +35 -0
  1774. data/vendor/local/share/man/man3/gnutls_privkey_get_pk_algorithm.3 +42 -0
  1775. data/vendor/local/share/man/man3/gnutls_privkey_get_type.3 +39 -0
  1776. data/vendor/local/share/man/man3/gnutls_privkey_import_ext.3 +52 -0
  1777. data/vendor/local/share/man/man3/gnutls_privkey_import_ext2.3 +58 -0
  1778. data/vendor/local/share/man/man3/gnutls_privkey_import_openpgp.3 +50 -0
  1779. data/vendor/local/share/man/man3/gnutls_privkey_import_openpgp_raw.3 +47 -0
  1780. data/vendor/local/share/man/man3/gnutls_privkey_import_pkcs11.3 +49 -0
  1781. data/vendor/local/share/man/man3/gnutls_privkey_import_pkcs11_url.3 +41 -0
  1782. data/vendor/local/share/man/man3/gnutls_privkey_import_tpm_raw.3 +51 -0
  1783. data/vendor/local/share/man/man3/gnutls_privkey_import_tpm_url.3 +55 -0
  1784. data/vendor/local/share/man/man3/gnutls_privkey_import_url.3 +44 -0
  1785. data/vendor/local/share/man/man3/gnutls_privkey_import_x509.3 +49 -0
  1786. data/vendor/local/share/man/man3/gnutls_privkey_import_x509_raw.3 +50 -0
  1787. data/vendor/local/share/man/man3/gnutls_privkey_init.3 +38 -0
  1788. data/vendor/local/share/man/man3/gnutls_privkey_set_pin_function.3 +44 -0
  1789. data/vendor/local/share/man/man3/gnutls_privkey_sign_data.3 +52 -0
  1790. data/vendor/local/share/man/man3/gnutls_privkey_sign_hash.3 +55 -0
  1791. data/vendor/local/share/man/man3/gnutls_privkey_sign_raw_data.3 +51 -0
  1792. data/vendor/local/share/man/man3/gnutls_privkey_status.3 +41 -0
  1793. data/vendor/local/share/man/man3/gnutls_protocol_get_id.3 +36 -0
  1794. data/vendor/local/share/man/man3/gnutls_protocol_get_name.3 +36 -0
  1795. data/vendor/local/share/man/man3/gnutls_protocol_get_version.3 +35 -0
  1796. data/vendor/local/share/man/man3/gnutls_protocol_list.3 +38 -0
  1797. data/vendor/local/share/man/man3/gnutls_protocol_set_priority.3 +39 -0
  1798. data/vendor/local/share/man/man3/gnutls_psk_allocate_client_credentials.3 +37 -0
  1799. data/vendor/local/share/man/man3/gnutls_psk_allocate_server_credentials.3 +37 -0
  1800. data/vendor/local/share/man/man3/gnutls_psk_client_get_hint.3 +39 -0
  1801. data/vendor/local/share/man/man3/gnutls_psk_free_client_credentials.3 +34 -0
  1802. data/vendor/local/share/man/man3/gnutls_psk_free_server_credentials.3 +34 -0
  1803. data/vendor/local/share/man/man3/gnutls_psk_server_get_username.3 +36 -0
  1804. data/vendor/local/share/man/man3/gnutls_psk_set_client_credentials.3 +48 -0
  1805. data/vendor/local/share/man/man3/gnutls_psk_set_client_credentials_function.3 +48 -0
  1806. data/vendor/local/share/man/man3/gnutls_psk_set_params_function.3 +37 -0
  1807. data/vendor/local/share/man/man3/gnutls_psk_set_server_credentials_file.3 +40 -0
  1808. data/vendor/local/share/man/man3/gnutls_psk_set_server_credentials_function.3 +48 -0
  1809. data/vendor/local/share/man/man3/gnutls_psk_set_server_credentials_hint.3 +43 -0
  1810. data/vendor/local/share/man/man3/gnutls_psk_set_server_dh_params.3 +37 -0
  1811. data/vendor/local/share/man/man3/gnutls_psk_set_server_params_function.3 +37 -0
  1812. data/vendor/local/share/man/man3/gnutls_pubkey_deinit.3 +35 -0
  1813. data/vendor/local/share/man/man3/gnutls_pubkey_encrypt_data.3 +45 -0
  1814. data/vendor/local/share/man/man3/gnutls_pubkey_export.3 +54 -0
  1815. data/vendor/local/share/man/man3/gnutls_pubkey_export2.3 +49 -0
  1816. data/vendor/local/share/man/man3/gnutls_pubkey_get_key_id.3 +52 -0
  1817. data/vendor/local/share/man/man3/gnutls_pubkey_get_key_usage.3 +40 -0
  1818. data/vendor/local/share/man/man3/gnutls_pubkey_get_openpgp_key_id.3 +56 -0
  1819. data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_algorithm.3 +42 -0
  1820. data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_dsa_raw.3 +47 -0
  1821. data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_ecc_raw.3 +45 -0
  1822. data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_ecc_x962.3 +43 -0
  1823. data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_rsa_raw.3 +43 -0
  1824. data/vendor/local/share/man/man3/gnutls_pubkey_get_preferred_hash_algorithm.3 +47 -0
  1825. data/vendor/local/share/man/man3/gnutls_pubkey_get_verify_algorithm.3 +43 -0
  1826. data/vendor/local/share/man/man3/gnutls_pubkey_import.3 +46 -0
  1827. data/vendor/local/share/man/man3/gnutls_pubkey_import_dsa_raw.3 +48 -0
  1828. data/vendor/local/share/man/man3/gnutls_pubkey_import_ecc_raw.3 +45 -0
  1829. data/vendor/local/share/man/man3/gnutls_pubkey_import_ecc_x962.3 +43 -0
  1830. data/vendor/local/share/man/man3/gnutls_pubkey_import_openpgp.3 +45 -0
  1831. data/vendor/local/share/man/man3/gnutls_pubkey_import_openpgp_raw.3 +47 -0
  1832. data/vendor/local/share/man/man3/gnutls_pubkey_import_pkcs11.3 +43 -0
  1833. data/vendor/local/share/man/man3/gnutls_pubkey_import_pkcs11_url.3 +43 -0
  1834. data/vendor/local/share/man/man3/gnutls_pubkey_import_privkey.3 +45 -0
  1835. data/vendor/local/share/man/man3/gnutls_pubkey_import_rsa_raw.3 +43 -0
  1836. data/vendor/local/share/man/man3/gnutls_pubkey_import_tpm_raw.3 +50 -0
  1837. data/vendor/local/share/man/man3/gnutls_pubkey_import_tpm_url.3 +51 -0
  1838. data/vendor/local/share/man/man3/gnutls_pubkey_import_url.3 +43 -0
  1839. data/vendor/local/share/man/man3/gnutls_pubkey_import_x509.3 +43 -0
  1840. data/vendor/local/share/man/man3/gnutls_pubkey_import_x509_crq.3 +43 -0
  1841. data/vendor/local/share/man/man3/gnutls_pubkey_import_x509_raw.3 +45 -0
  1842. data/vendor/local/share/man/man3/gnutls_pubkey_init.3 +38 -0
  1843. data/vendor/local/share/man/man3/gnutls_pubkey_print.3 +48 -0
  1844. data/vendor/local/share/man/man3/gnutls_pubkey_set_key_usage.3 +42 -0
  1845. data/vendor/local/share/man/man3/gnutls_pubkey_set_pin_function.3 +44 -0
  1846. data/vendor/local/share/man/man3/gnutls_pubkey_verify_data.3 +48 -0
  1847. data/vendor/local/share/man/man3/gnutls_pubkey_verify_data2.3 +47 -0
  1848. data/vendor/local/share/man/man3/gnutls_pubkey_verify_hash.3 +48 -0
  1849. data/vendor/local/share/man/man3/gnutls_pubkey_verify_hash2.3 +47 -0
  1850. data/vendor/local/share/man/man3/gnutls_random_art.3 +47 -0
  1851. data/vendor/local/share/man/man3/gnutls_range_split.3 +47 -0
  1852. data/vendor/local/share/man/man3/gnutls_record_can_use_length_hiding.3 +42 -0
  1853. data/vendor/local/share/man/man3/gnutls_record_check_corked.3 +38 -0
  1854. data/vendor/local/share/man/man3/gnutls_record_check_pending.3 +38 -0
  1855. data/vendor/local/share/man/man3/gnutls_record_cork.3 +39 -0
  1856. data/vendor/local/share/man/man3/gnutls_record_disable_padding.3 +39 -0
  1857. data/vendor/local/share/man/man3/gnutls_record_get_direction.3 +44 -0
  1858. data/vendor/local/share/man/man3/gnutls_record_get_discarded.3 +38 -0
  1859. data/vendor/local/share/man/man3/gnutls_record_get_max_size.3 +36 -0
  1860. data/vendor/local/share/man/man3/gnutls_record_overhead_size.3 +36 -0
  1861. data/vendor/local/share/man/man3/gnutls_record_recv.3 +56 -0
  1862. data/vendor/local/share/man/man3/gnutls_record_recv_seq.3 +50 -0
  1863. data/vendor/local/share/man/man3/gnutls_record_send.3 +64 -0
  1864. data/vendor/local/share/man/man3/gnutls_record_send_range.3 +51 -0
  1865. data/vendor/local/share/man/man3/gnutls_record_set_max_empty_records.3 +41 -0
  1866. data/vendor/local/share/man/man3/gnutls_record_set_max_size.3 +48 -0
  1867. data/vendor/local/share/man/man3/gnutls_record_set_timeout.3 +43 -0
  1868. data/vendor/local/share/man/man3/gnutls_record_uncork.3 +49 -0
  1869. data/vendor/local/share/man/man3/gnutls_rehandshake.3 +56 -0
  1870. data/vendor/local/share/man/man3/gnutls_rnd.3 +42 -0
  1871. data/vendor/local/share/man/man3/gnutls_rnd_refresh.3 +38 -0
  1872. data/vendor/local/share/man/man3/gnutls_rsa_export_get_modulus_bits.3 +36 -0
  1873. data/vendor/local/share/man/man3/gnutls_rsa_export_get_pubkey.3 +42 -0
  1874. data/vendor/local/share/man/man3/gnutls_rsa_params_cpy.3 +38 -0
  1875. data/vendor/local/share/man/man3/gnutls_rsa_params_deinit.3 +33 -0
  1876. data/vendor/local/share/man/man3/gnutls_rsa_params_export_pkcs1.3 +46 -0
  1877. data/vendor/local/share/man/man3/gnutls_rsa_params_export_raw.3 +51 -0
  1878. data/vendor/local/share/man/man3/gnutls_rsa_params_generate2.3 +44 -0
  1879. data/vendor/local/share/man/man3/gnutls_rsa_params_import_pkcs1.3 +43 -0
  1880. data/vendor/local/share/man/man3/gnutls_rsa_params_import_raw.3 +49 -0
  1881. data/vendor/local/share/man/man3/gnutls_rsa_params_init.3 +35 -0
  1882. data/vendor/local/share/man/man3/gnutls_safe_renegotiation_status.3 +39 -0
  1883. data/vendor/local/share/man/man3/gnutls_sec_param_get_name.3 +38 -0
  1884. data/vendor/local/share/man/man3/gnutls_sec_param_to_pk_bits.3 +43 -0
  1885. data/vendor/local/share/man/man3/gnutls_server_name_get.3 +59 -0
  1886. data/vendor/local/share/man/man3/gnutls_server_name_set.3 +50 -0
  1887. data/vendor/local/share/man/man3/gnutls_session_channel_binding.3 +45 -0
  1888. data/vendor/local/share/man/man3/gnutls_session_enable_compatibility_mode.3 +42 -0
  1889. data/vendor/local/share/man/man3/gnutls_session_force_valid.3 +37 -0
  1890. data/vendor/local/share/man/man3/gnutls_session_get_data.3 +43 -0
  1891. data/vendor/local/share/man/man3/gnutls_session_get_data2.3 +42 -0
  1892. data/vendor/local/share/man/man3/gnutls_session_get_desc.3 +38 -0
  1893. data/vendor/local/share/man/man3/gnutls_session_get_id.3 +47 -0
  1894. data/vendor/local/share/man/man3/gnutls_session_get_id2.3 +41 -0
  1895. data/vendor/local/share/man/man3/gnutls_session_get_ptr.3 +37 -0
  1896. data/vendor/local/share/man/man3/gnutls_session_get_random.3 +44 -0
  1897. data/vendor/local/share/man/man3/gnutls_session_is_resumed.3 +36 -0
  1898. data/vendor/local/share/man/man3/gnutls_session_resumption_requested.3 +36 -0
  1899. data/vendor/local/share/man/man3/gnutls_session_set_data.3 +47 -0
  1900. data/vendor/local/share/man/man3/gnutls_session_set_id.3 +42 -0
  1901. data/vendor/local/share/man/man3/gnutls_session_set_premaster.3 +55 -0
  1902. data/vendor/local/share/man/man3/gnutls_session_set_ptr.3 +37 -0
  1903. data/vendor/local/share/man/man3/gnutls_session_ticket_enable_client.3 +39 -0
  1904. data/vendor/local/share/man/man3/gnutls_session_ticket_enable_server.3 +42 -0
  1905. data/vendor/local/share/man/man3/gnutls_session_ticket_key_generate.3 +40 -0
  1906. data/vendor/local/share/man/man3/gnutls_set_default_export_priority.3 +46 -0
  1907. data/vendor/local/share/man/man3/gnutls_set_default_priority.3 +45 -0
  1908. data/vendor/local/share/man/man3/gnutls_sign_algorithm_get.3 +38 -0
  1909. data/vendor/local/share/man/man3/gnutls_sign_algorithm_get_client.3 +38 -0
  1910. data/vendor/local/share/man/man3/gnutls_sign_algorithm_get_requested.3 +50 -0
  1911. data/vendor/local/share/man/man3/gnutls_sign_callback_get.3 +40 -0
  1912. data/vendor/local/share/man/man3/gnutls_sign_callback_set.3 +50 -0
  1913. data/vendor/local/share/man/man3/gnutls_sign_get_hash_algorithm.3 +38 -0
  1914. data/vendor/local/share/man/man3/gnutls_sign_get_id.3 +36 -0
  1915. data/vendor/local/share/man/man3/gnutls_sign_get_name.3 +36 -0
  1916. data/vendor/local/share/man/man3/gnutls_sign_get_pk_algorithm.3 +38 -0
  1917. data/vendor/local/share/man/man3/gnutls_sign_is_secure.3 +33 -0
  1918. data/vendor/local/share/man/man3/gnutls_sign_list.3 +36 -0
  1919. data/vendor/local/share/man/man3/gnutls_srp_allocate_client_credentials.3 +37 -0
  1920. data/vendor/local/share/man/man3/gnutls_srp_allocate_server_credentials.3 +37 -0
  1921. data/vendor/local/share/man/man3/gnutls_srp_base64_decode.3 +46 -0
  1922. data/vendor/local/share/man/man3/gnutls_srp_base64_decode_alloc.3 +44 -0
  1923. data/vendor/local/share/man/man3/gnutls_srp_base64_encode.3 +46 -0
  1924. data/vendor/local/share/man/man3/gnutls_srp_base64_encode_alloc.3 +45 -0
  1925. data/vendor/local/share/man/man3/gnutls_srp_free_client_credentials.3 +34 -0
  1926. data/vendor/local/share/man/man3/gnutls_srp_free_server_credentials.3 +34 -0
  1927. data/vendor/local/share/man/man3/gnutls_srp_server_get_username.3 +37 -0
  1928. data/vendor/local/share/man/man3/gnutls_srp_set_client_credentials.3 +44 -0
  1929. data/vendor/local/share/man/man3/gnutls_srp_set_client_credentials_function.3 +53 -0
  1930. data/vendor/local/share/man/man3/gnutls_srp_set_prime_bits.3 +45 -0
  1931. data/vendor/local/share/man/man3/gnutls_srp_set_server_credentials_file.3 +43 -0
  1932. data/vendor/local/share/man/man3/gnutls_srp_set_server_credentials_function.3 +56 -0
  1933. data/vendor/local/share/man/man3/gnutls_srp_verifier.3 +51 -0
  1934. data/vendor/local/share/man/man3/gnutls_srtp_get_keys.3 +54 -0
  1935. data/vendor/local/share/man/man3/gnutls_srtp_get_mki.3 +42 -0
  1936. data/vendor/local/share/man/man3/gnutls_srtp_get_profile_id.3 +40 -0
  1937. data/vendor/local/share/man/man3/gnutls_srtp_get_profile_name.3 +39 -0
  1938. data/vendor/local/share/man/man3/gnutls_srtp_get_selected_profile.3 +40 -0
  1939. data/vendor/local/share/man/man3/gnutls_srtp_set_mki.3 +41 -0
  1940. data/vendor/local/share/man/man3/gnutls_srtp_set_profile.3 +41 -0
  1941. data/vendor/local/share/man/man3/gnutls_srtp_set_profile_direct.3 +44 -0
  1942. data/vendor/local/share/man/man3/gnutls_store_commitment.3 +60 -0
  1943. data/vendor/local/share/man/man3/gnutls_store_pubkey.3 +58 -0
  1944. data/vendor/local/share/man/man3/gnutls_strerror.3 +39 -0
  1945. data/vendor/local/share/man/man3/gnutls_strerror_name.3 +40 -0
  1946. data/vendor/local/share/man/man3/gnutls_supplemental_get_name.3 +37 -0
  1947. data/vendor/local/share/man/man3/gnutls_tdb_deinit.3 +33 -0
  1948. data/vendor/local/share/man/man3/gnutls_tdb_init.3 +36 -0
  1949. data/vendor/local/share/man/man3/gnutls_tdb_set_store_commitment_func.3 +40 -0
  1950. data/vendor/local/share/man/man3/gnutls_tdb_set_store_func.3 +40 -0
  1951. data/vendor/local/share/man/man3/gnutls_tdb_set_verify_func.3 +39 -0
  1952. data/vendor/local/share/man/man3/gnutls_tpm_get_registered.3 +39 -0
  1953. data/vendor/local/share/man/man3/gnutls_tpm_key_list_deinit.3 +35 -0
  1954. data/vendor/local/share/man/man3/gnutls_tpm_key_list_get_url.3 +47 -0
  1955. data/vendor/local/share/man/man3/gnutls_tpm_privkey_delete.3 +41 -0
  1956. data/vendor/local/share/man/man3/gnutls_tpm_privkey_generate.3 +64 -0
  1957. data/vendor/local/share/man/man3/gnutls_transport_get_int.3 +39 -0
  1958. data/vendor/local/share/man/man3/gnutls_transport_get_int2.3 +41 -0
  1959. data/vendor/local/share/man/man3/gnutls_transport_get_ptr.3 +37 -0
  1960. data/vendor/local/share/man/man3/gnutls_transport_get_ptr2.3 +39 -0
  1961. data/vendor/local/share/man/man3/gnutls_transport_set_errno.3 +43 -0
  1962. data/vendor/local/share/man/man3/gnutls_transport_set_errno_function.3 +42 -0
  1963. data/vendor/local/share/man/man3/gnutls_transport_set_int.3 +38 -0
  1964. data/vendor/local/share/man/man3/gnutls_transport_set_int2.3 +42 -0
  1965. data/vendor/local/share/man/man3/gnutls_transport_set_ptr.3 +37 -0
  1966. data/vendor/local/share/man/man3/gnutls_transport_set_ptr2.3 +40 -0
  1967. data/vendor/local/share/man/man3/gnutls_transport_set_pull_function.3 +42 -0
  1968. data/vendor/local/share/man/man3/gnutls_transport_set_pull_timeout_function.3 +48 -0
  1969. data/vendor/local/share/man/man3/gnutls_transport_set_push_function.3 +44 -0
  1970. data/vendor/local/share/man/man3/gnutls_transport_set_vec_push_function.3 +43 -0
  1971. data/vendor/local/share/man/man3/gnutls_url_is_supported.3 +39 -0
  1972. data/vendor/local/share/man/man3/gnutls_verify_stored_pubkey.3 +67 -0
  1973. data/vendor/local/share/man/man3/gnutls_x509_crl_check_issuer.3 +39 -0
  1974. data/vendor/local/share/man/man3/gnutls_x509_crl_deinit.3 +33 -0
  1975. data/vendor/local/share/man/man3/gnutls_x509_crl_export.3 +49 -0
  1976. data/vendor/local/share/man/man3/gnutls_x509_crl_export2.3 +47 -0
  1977. data/vendor/local/share/man/man3/gnutls_x509_crl_get_authority_key_gn_serial.3 +57 -0
  1978. data/vendor/local/share/man/man3/gnutls_x509_crl_get_authority_key_id.3 +51 -0
  1979. data/vendor/local/share/man/man3/gnutls_x509_crl_get_crt_count.3 +36 -0
  1980. data/vendor/local/share/man/man3/gnutls_x509_crl_get_crt_serial.3 +45 -0
  1981. data/vendor/local/share/man/man3/gnutls_x509_crl_get_dn_oid.3 +46 -0
  1982. data/vendor/local/share/man/man3/gnutls_x509_crl_get_extension_data.3 +53 -0
  1983. data/vendor/local/share/man/man3/gnutls_x509_crl_get_extension_info.3 +56 -0
  1984. data/vendor/local/share/man/man3/gnutls_x509_crl_get_extension_oid.3 +48 -0
  1985. data/vendor/local/share/man/man3/gnutls_x509_crl_get_issuer_dn.3 +46 -0
  1986. data/vendor/local/share/man/man3/gnutls_x509_crl_get_issuer_dn2.3 +43 -0
  1987. data/vendor/local/share/man/man3/gnutls_x509_crl_get_issuer_dn_by_oid.3 +58 -0
  1988. data/vendor/local/share/man/man3/gnutls_x509_crl_get_next_update.3 +37 -0
  1989. data/vendor/local/share/man/man3/gnutls_x509_crl_get_number.3 +46 -0
  1990. data/vendor/local/share/man/man3/gnutls_x509_crl_get_raw_issuer_dn.3 +40 -0
  1991. data/vendor/local/share/man/man3/gnutls_x509_crl_get_signature.3 +40 -0
  1992. data/vendor/local/share/man/man3/gnutls_x509_crl_get_signature_algorithm.3 +37 -0
  1993. data/vendor/local/share/man/man3/gnutls_x509_crl_get_this_update.3 +35 -0
  1994. data/vendor/local/share/man/man3/gnutls_x509_crl_get_version.3 +35 -0
  1995. data/vendor/local/share/man/man3/gnutls_x509_crl_import.3 +43 -0
  1996. data/vendor/local/share/man/man3/gnutls_x509_crl_init.3 +40 -0
  1997. data/vendor/local/share/man/man3/gnutls_x509_crl_list_import.3 +49 -0
  1998. data/vendor/local/share/man/man3/gnutls_x509_crl_list_import2.3 +50 -0
  1999. data/vendor/local/share/man/man3/gnutls_x509_crl_print.3 +43 -0
  2000. data/vendor/local/share/man/man3/gnutls_x509_crl_privkey_sign.3 +50 -0
  2001. data/vendor/local/share/man/man3/gnutls_x509_crl_set_authority_key_id.3 +45 -0
  2002. data/vendor/local/share/man/man3/gnutls_x509_crl_set_crt.3 +40 -0
  2003. data/vendor/local/share/man/man3/gnutls_x509_crl_set_crt_serial.3 +42 -0
  2004. data/vendor/local/share/man/man3/gnutls_x509_crl_set_next_update.3 +38 -0
  2005. data/vendor/local/share/man/man3/gnutls_x509_crl_set_number.3 +44 -0
  2006. data/vendor/local/share/man/man3/gnutls_x509_crl_set_this_update.3 +38 -0
  2007. data/vendor/local/share/man/man3/gnutls_x509_crl_set_version.3 +40 -0
  2008. data/vendor/local/share/man/man3/gnutls_x509_crl_sign.3 +43 -0
  2009. data/vendor/local/share/man/man3/gnutls_x509_crl_sign2.3 +48 -0
  2010. data/vendor/local/share/man/man3/gnutls_x509_crl_verify.3 +51 -0
  2011. data/vendor/local/share/man/man3/gnutls_x509_crq_deinit.3 +34 -0
  2012. data/vendor/local/share/man/man3/gnutls_x509_crq_export.3 +51 -0
  2013. data/vendor/local/share/man/man3/gnutls_x509_crq_export2.3 +48 -0
  2014. data/vendor/local/share/man/man3/gnutls_x509_crq_get_attribute_by_oid.3 +50 -0
  2015. data/vendor/local/share/man/man3/gnutls_x509_crq_get_attribute_data.3 +53 -0
  2016. data/vendor/local/share/man/man3/gnutls_x509_crq_get_attribute_info.3 +54 -0
  2017. data/vendor/local/share/man/man3/gnutls_x509_crq_get_basic_constraints.3 +52 -0
  2018. data/vendor/local/share/man/man3/gnutls_x509_crq_get_challenge_password.3 +42 -0
  2019. data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn.3 +45 -0
  2020. data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn2.3 +43 -0
  2021. data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn_by_oid.3 +57 -0
  2022. data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn_oid.3 +44 -0
  2023. data/vendor/local/share/man/man3/gnutls_x509_crq_get_extension_by_oid.3 +53 -0
  2024. data/vendor/local/share/man/man3/gnutls_x509_crq_get_extension_data.3 +53 -0
  2025. data/vendor/local/share/man/man3/gnutls_x509_crq_get_extension_info.3 +56 -0
  2026. data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_id.3 +52 -0
  2027. data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_purpose_oid.3 +50 -0
  2028. data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_rsa_raw.3 +44 -0
  2029. data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_usage.3 +50 -0
  2030. data/vendor/local/share/man/man3/gnutls_x509_crq_get_pk_algorithm.3 +43 -0
  2031. data/vendor/local/share/man/man3/gnutls_x509_crq_get_private_key_usage_period.3 +43 -0
  2032. data/vendor/local/share/man/man3/gnutls_x509_crq_get_subject_alt_name.3 +60 -0
  2033. data/vendor/local/share/man/man3/gnutls_x509_crq_get_subject_alt_othername_oid.3 +58 -0
  2034. data/vendor/local/share/man/man3/gnutls_x509_crq_get_version.3 +37 -0
  2035. data/vendor/local/share/man/man3/gnutls_x509_crq_import.3 +45 -0
  2036. data/vendor/local/share/man/man3/gnutls_x509_crq_init.3 +37 -0
  2037. data/vendor/local/share/man/man3/gnutls_x509_crq_print.3 +45 -0
  2038. data/vendor/local/share/man/man3/gnutls_x509_crq_privkey_sign.3 +52 -0
  2039. data/vendor/local/share/man/man3/gnutls_x509_crq_set_attribute_by_oid.3 +47 -0
  2040. data/vendor/local/share/man/man3/gnutls_x509_crq_set_basic_constraints.3 +44 -0
  2041. data/vendor/local/share/man/man3/gnutls_x509_crq_set_challenge_password.3 +39 -0
  2042. data/vendor/local/share/man/man3/gnutls_x509_crq_set_dn.3 +41 -0
  2043. data/vendor/local/share/man/man3/gnutls_x509_crq_set_dn_by_oid.3 +52 -0
  2044. data/vendor/local/share/man/man3/gnutls_x509_crq_set_key.3 +39 -0
  2045. data/vendor/local/share/man/man3/gnutls_x509_crq_set_key_purpose_oid.3 +46 -0
  2046. data/vendor/local/share/man/man3/gnutls_x509_crq_set_key_rsa_raw.3 +43 -0
  2047. data/vendor/local/share/man/man3/gnutls_x509_crq_set_key_usage.3 +40 -0
  2048. data/vendor/local/share/man/man3/gnutls_x509_crq_set_private_key_usage_period.3 +40 -0
  2049. data/vendor/local/share/man/man3/gnutls_x509_crq_set_pubkey.3 +41 -0
  2050. data/vendor/local/share/man/man3/gnutls_x509_crq_set_subject_alt_name.3 +48 -0
  2051. data/vendor/local/share/man/man3/gnutls_x509_crq_set_version.3 +39 -0
  2052. data/vendor/local/share/man/man3/gnutls_x509_crq_sign.3 +41 -0
  2053. data/vendor/local/share/man/man3/gnutls_x509_crq_sign2.3 +50 -0
  2054. data/vendor/local/share/man/man3/gnutls_x509_crq_verify.3 +41 -0
  2055. data/vendor/local/share/man/man3/gnutls_x509_crt_check_hostname.3 +52 -0
  2056. data/vendor/local/share/man/man3/gnutls_x509_crt_check_issuer.3 +40 -0
  2057. data/vendor/local/share/man/man3/gnutls_x509_crt_check_revocation.3 +41 -0
  2058. data/vendor/local/share/man/man3/gnutls_x509_crt_cpy_crl_dist_points.3 +40 -0
  2059. data/vendor/local/share/man/man3/gnutls_x509_crt_deinit.3 +33 -0
  2060. data/vendor/local/share/man/man3/gnutls_x509_crt_export.3 +50 -0
  2061. data/vendor/local/share/man/man3/gnutls_x509_crt_export2.3 +46 -0
  2062. data/vendor/local/share/man/man3/gnutls_x509_crt_get_activation_time.3 +36 -0
  2063. data/vendor/local/share/man/man3/gnutls_x509_crt_get_authority_info_access.3 +100 -0
  2064. data/vendor/local/share/man/man3/gnutls_x509_crt_get_authority_key_gn_serial.3 +58 -0
  2065. data/vendor/local/share/man/man3/gnutls_x509_crt_get_authority_key_id.3 +48 -0
  2066. data/vendor/local/share/man/man3/gnutls_x509_crt_get_basic_constraints.3 +50 -0
  2067. data/vendor/local/share/man/man3/gnutls_x509_crt_get_ca_status.3 +45 -0
  2068. data/vendor/local/share/man/man3/gnutls_x509_crt_get_crl_dist_points.3 +53 -0
  2069. data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn.3 +46 -0
  2070. data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn2.3 +43 -0
  2071. data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn_by_oid.3 +60 -0
  2072. data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn_oid.3 +48 -0
  2073. data/vendor/local/share/man/man3/gnutls_x509_crt_get_expiration_time.3 +39 -0
  2074. data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_by_oid.3 +50 -0
  2075. data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_data.3 +51 -0
  2076. data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_info.3 +55 -0
  2077. data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_oid.3 +48 -0
  2078. data/vendor/local/share/man/man3/gnutls_x509_crt_get_fingerprint.3 +46 -0
  2079. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer.3 +42 -0
  2080. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_alt_name.3 +64 -0
  2081. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_alt_name2.3 +58 -0
  2082. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_alt_othername_oid.3 +61 -0
  2083. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn.3 +46 -0
  2084. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn2.3 +43 -0
  2085. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn_by_oid.3 +60 -0
  2086. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn_oid.3 +48 -0
  2087. data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_unique_id.3 +47 -0
  2088. data/vendor/local/share/man/man3/gnutls_x509_crt_get_key_id.3 +50 -0
  2089. data/vendor/local/share/man/man3/gnutls_x509_crt_get_key_purpose_oid.3 +51 -0
  2090. data/vendor/local/share/man/man3/gnutls_x509_crt_get_key_usage.3 +48 -0
  2091. data/vendor/local/share/man/man3/gnutls_x509_crt_get_pk_algorithm.3 +44 -0
  2092. data/vendor/local/share/man/man3/gnutls_x509_crt_get_pk_dsa_raw.3 +45 -0
  2093. data/vendor/local/share/man/man3/gnutls_x509_crt_get_pk_rsa_raw.3 +41 -0
  2094. data/vendor/local/share/man/man3/gnutls_x509_crt_get_policy.3 +48 -0
  2095. data/vendor/local/share/man/man3/gnutls_x509_crt_get_preferred_hash_algorithm.3 +46 -0
  2096. data/vendor/local/share/man/man3/gnutls_x509_crt_get_private_key_usage_period.3 +44 -0
  2097. data/vendor/local/share/man/man3/gnutls_x509_crt_get_proxy.3 +49 -0
  2098. data/vendor/local/share/man/man3/gnutls_x509_crt_get_raw_dn.3 +39 -0
  2099. data/vendor/local/share/man/man3/gnutls_x509_crt_get_raw_issuer_dn.3 +39 -0
  2100. data/vendor/local/share/man/man3/gnutls_x509_crt_get_serial.3 +43 -0
  2101. data/vendor/local/share/man/man3/gnutls_x509_crt_get_signature.3 +40 -0
  2102. data/vendor/local/share/man/man3/gnutls_x509_crt_get_signature_algorithm.3 +38 -0
  2103. data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject.3 +42 -0
  2104. data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_alt_name.3 +61 -0
  2105. data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_alt_name2.3 +56 -0
  2106. data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_alt_othername_oid.3 +59 -0
  2107. data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_key_id.3 +44 -0
  2108. data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_unique_id.3 +45 -0
  2109. data/vendor/local/share/man/man3/gnutls_x509_crt_get_verify_algorithm.3 +45 -0
  2110. data/vendor/local/share/man/man3/gnutls_x509_crt_get_version.3 +35 -0
  2111. data/vendor/local/share/man/man3/gnutls_x509_crt_import.3 +45 -0
  2112. data/vendor/local/share/man/man3/gnutls_x509_crt_import_pkcs11.3 +41 -0
  2113. data/vendor/local/share/man/man3/gnutls_x509_crt_import_pkcs11_url.3 +44 -0
  2114. data/vendor/local/share/man/man3/gnutls_x509_crt_init.3 +36 -0
  2115. data/vendor/local/share/man/man3/gnutls_x509_crt_list_import.3 +54 -0
  2116. data/vendor/local/share/man/man3/gnutls_x509_crt_list_import2.3 +53 -0
  2117. data/vendor/local/share/man/man3/gnutls_x509_crt_list_import_pkcs11.3 +45 -0
  2118. data/vendor/local/share/man/man3/gnutls_x509_crt_list_verify.3 +62 -0
  2119. data/vendor/local/share/man/man3/gnutls_x509_crt_print.3 +48 -0
  2120. data/vendor/local/share/man/man3/gnutls_x509_crt_privkey_sign.3 +48 -0
  2121. data/vendor/local/share/man/man3/gnutls_x509_crt_set_activation_time.3 +39 -0
  2122. data/vendor/local/share/man/man3/gnutls_x509_crt_set_authority_info_access.3 +50 -0
  2123. data/vendor/local/share/man/man3/gnutls_x509_crt_set_authority_key_id.3 +41 -0
  2124. data/vendor/local/share/man/man3/gnutls_x509_crt_set_basic_constraints.3 +42 -0
  2125. data/vendor/local/share/man/man3/gnutls_x509_crt_set_ca_status.3 +40 -0
  2126. data/vendor/local/share/man/man3/gnutls_x509_crt_set_crl_dist_points.3 +42 -0
  2127. data/vendor/local/share/man/man3/gnutls_x509_crt_set_crl_dist_points2.3 +46 -0
  2128. data/vendor/local/share/man/man3/gnutls_x509_crt_set_crq.3 +40 -0
  2129. data/vendor/local/share/man/man3/gnutls_x509_crt_set_crq_extensions.3 +41 -0
  2130. data/vendor/local/share/man/man3/gnutls_x509_crt_set_dn.3 +41 -0
  2131. data/vendor/local/share/man/man3/gnutls_x509_crt_set_dn_by_oid.3 +52 -0
  2132. data/vendor/local/share/man/man3/gnutls_x509_crt_set_expiration_time.3 +40 -0
  2133. data/vendor/local/share/man/man3/gnutls_x509_crt_set_extension_by_oid.3 +46 -0
  2134. data/vendor/local/share/man/man3/gnutls_x509_crt_set_issuer_dn.3 +41 -0
  2135. data/vendor/local/share/man/man3/gnutls_x509_crt_set_issuer_dn_by_oid.3 +56 -0
  2136. data/vendor/local/share/man/man3/gnutls_x509_crt_set_key.3 +40 -0
  2137. data/vendor/local/share/man/man3/gnutls_x509_crt_set_key_purpose_oid.3 +44 -0
  2138. data/vendor/local/share/man/man3/gnutls_x509_crt_set_key_usage.3 +38 -0
  2139. data/vendor/local/share/man/man3/gnutls_x509_crt_set_pin_function.3 +44 -0
  2140. data/vendor/local/share/man/man3/gnutls_x509_crt_set_policy.3 +47 -0
  2141. data/vendor/local/share/man/man3/gnutls_x509_crt_set_private_key_usage_period.3 +40 -0
  2142. data/vendor/local/share/man/man3/gnutls_x509_crt_set_proxy.3 +46 -0
  2143. data/vendor/local/share/man/man3/gnutls_x509_crt_set_proxy_dn.3 +47 -0
  2144. data/vendor/local/share/man/man3/gnutls_x509_crt_set_pubkey.3 +41 -0
  2145. data/vendor/local/share/man/man3/gnutls_x509_crt_set_serial.3 +45 -0
  2146. data/vendor/local/share/man/man3/gnutls_x509_crt_set_subject_alt_name.3 +47 -0
  2147. data/vendor/local/share/man/man3/gnutls_x509_crt_set_subject_alternative_name.3 +45 -0
  2148. data/vendor/local/share/man/man3/gnutls_x509_crt_set_subject_key_id.3 +41 -0
  2149. data/vendor/local/share/man/man3/gnutls_x509_crt_set_version.3 +45 -0
  2150. data/vendor/local/share/man/man3/gnutls_x509_crt_sign.3 +41 -0
  2151. data/vendor/local/share/man/man3/gnutls_x509_crt_sign2.3 +48 -0
  2152. data/vendor/local/share/man/man3/gnutls_x509_crt_verify.3 +46 -0
  2153. data/vendor/local/share/man/man3/gnutls_x509_crt_verify_data.3 +46 -0
  2154. data/vendor/local/share/man/man3/gnutls_x509_crt_verify_hash.3 +46 -0
  2155. data/vendor/local/share/man/man3/gnutls_x509_dn_deinit.3 +36 -0
  2156. data/vendor/local/share/man/man3/gnutls_x509_dn_export.3 +50 -0
  2157. data/vendor/local/share/man/man3/gnutls_x509_dn_export2.3 +47 -0
  2158. data/vendor/local/share/man/man3/gnutls_x509_dn_get_rdn_ava.3 +58 -0
  2159. data/vendor/local/share/man/man3/gnutls_x509_dn_import.3 +43 -0
  2160. data/vendor/local/share/man/man3/gnutls_x509_dn_init.3 +41 -0
  2161. data/vendor/local/share/man/man3/gnutls_x509_dn_oid_known.3 +41 -0
  2162. data/vendor/local/share/man/man3/gnutls_x509_dn_oid_name.3 +42 -0
  2163. data/vendor/local/share/man/man3/gnutls_x509_policy_release.3 +36 -0
  2164. data/vendor/local/share/man/man3/gnutls_x509_privkey_cpy.3 +39 -0
  2165. data/vendor/local/share/man/man3/gnutls_x509_privkey_deinit.3 +33 -0
  2166. data/vendor/local/share/man/man3/gnutls_x509_privkey_export.3 +52 -0
  2167. data/vendor/local/share/man/man3/gnutls_x509_privkey_export2.3 +49 -0
  2168. data/vendor/local/share/man/man3/gnutls_x509_privkey_export2_pkcs8.3 +58 -0
  2169. data/vendor/local/share/man/man3/gnutls_x509_privkey_export_dsa_raw.3 +48 -0
  2170. data/vendor/local/share/man/man3/gnutls_x509_privkey_export_ecc_raw.3 +48 -0
  2171. data/vendor/local/share/man/man3/gnutls_x509_privkey_export_pkcs8.3 +61 -0
  2172. data/vendor/local/share/man/man3/gnutls_x509_privkey_export_rsa_raw.3 +50 -0
  2173. data/vendor/local/share/man/man3/gnutls_x509_privkey_export_rsa_raw2.3 +56 -0
  2174. data/vendor/local/share/man/man3/gnutls_x509_privkey_fix.3 +37 -0
  2175. data/vendor/local/share/man/man3/gnutls_x509_privkey_generate.3 +49 -0
  2176. data/vendor/local/share/man/man3/gnutls_x509_privkey_get_key_id.3 +50 -0
  2177. data/vendor/local/share/man/man3/gnutls_x509_privkey_get_pk_algorithm.3 +37 -0
  2178. data/vendor/local/share/man/man3/gnutls_x509_privkey_get_pk_algorithm2.3 +39 -0
  2179. data/vendor/local/share/man/man3/gnutls_x509_privkey_import.3 +46 -0
  2180. data/vendor/local/share/man/man3/gnutls_x509_privkey_import2.3 +52 -0
  2181. data/vendor/local/share/man/man3/gnutls_x509_privkey_import_dsa_raw.3 +48 -0
  2182. data/vendor/local/share/man/man3/gnutls_x509_privkey_import_ecc_raw.3 +48 -0
  2183. data/vendor/local/share/man/man3/gnutls_x509_privkey_import_openssl.3 +48 -0
  2184. data/vendor/local/share/man/man3/gnutls_x509_privkey_import_pkcs8.3 +59 -0
  2185. data/vendor/local/share/man/man3/gnutls_x509_privkey_import_rsa_raw.3 +50 -0
  2186. data/vendor/local/share/man/man3/gnutls_x509_privkey_import_rsa_raw2.3 +54 -0
  2187. data/vendor/local/share/man/man3/gnutls_x509_privkey_init.3 +36 -0
  2188. data/vendor/local/share/man/man3/gnutls_x509_privkey_sec_param.3 +39 -0
  2189. data/vendor/local/share/man/man3/gnutls_x509_privkey_sign_data.3 +59 -0
  2190. data/vendor/local/share/man/man3/gnutls_x509_privkey_sign_hash.3 +45 -0
  2191. data/vendor/local/share/man/man3/gnutls_x509_privkey_verify_params.3 +36 -0
  2192. data/vendor/local/share/man/man3/gnutls_x509_rdn_get.3 +44 -0
  2193. data/vendor/local/share/man/man3/gnutls_x509_rdn_get_by_oid.3 +51 -0
  2194. data/vendor/local/share/man/man3/gnutls_x509_rdn_get_oid.3 +47 -0
  2195. data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_cas.3 +45 -0
  2196. data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_crls.3 +50 -0
  2197. data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_named_crt.3 +56 -0
  2198. data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_system_trust.3 +43 -0
  2199. data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_trust_file.3 +49 -0
  2200. data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_trust_mem.3 +48 -0
  2201. data/vendor/local/share/man/man3/gnutls_x509_trust_list_deinit.3 +37 -0
  2202. data/vendor/local/share/man/man3/gnutls_x509_trust_list_get_issuer.3 +45 -0
  2203. data/vendor/local/share/man/man3/gnutls_x509_trust_list_init.3 +40 -0
  2204. data/vendor/local/share/man/man3/gnutls_x509_trust_list_remove_cas.3 +48 -0
  2205. data/vendor/local/share/man/man3/gnutls_x509_trust_list_remove_trust_file.3 +46 -0
  2206. data/vendor/local/share/man/man3/gnutls_x509_trust_list_remove_trust_mem.3 +44 -0
  2207. data/vendor/local/share/man/man3/gnutls_x509_trust_list_verify_crt.3 +50 -0
  2208. data/vendor/local/share/man/man3/gnutls_x509_trust_list_verify_named_crt.3 +53 -0
  2209. data/vendor/local/share/man/man3/iconv.3 +92 -0
  2210. data/vendor/local/share/man/man3/iconv_close.3 +31 -0
  2211. data/vendor/local/share/man/man3/iconv_open.3 +205 -0
  2212. data/vendor/local/share/man/man3/iconv_open_into.3 +47 -0
  2213. data/vendor/local/share/man/man3/iconvctl.3 +67 -0
  2214. data/vendor/local/share/man/man3/ngettext.3 +60 -0
  2215. data/vendor/local/share/man/man3/textdomain.3 +57 -0
  2216. data/vendor/local/share/man/man3/xssl_client_init.3 +56 -0
  2217. data/vendor/local/share/man/man3/xssl_cred_deinit.3 +37 -0
  2218. data/vendor/local/share/man/man3/xssl_cred_init.3 +48 -0
  2219. data/vendor/local/share/man/man3/xssl_deinit.3 +36 -0
  2220. data/vendor/local/share/man/man3/xssl_flush.3 +39 -0
  2221. data/vendor/local/share/man/man3/xssl_get_session.3 +35 -0
  2222. data/vendor/local/share/man/man3/xssl_getdelim.3 +49 -0
  2223. data/vendor/local/share/man/man3/xssl_printf.3 +45 -0
  2224. data/vendor/local/share/man/man3/xssl_read.3 +43 -0
  2225. data/vendor/local/share/man/man3/xssl_server_init.3 +50 -0
  2226. data/vendor/local/share/man/man3/xssl_sinit.3 +44 -0
  2227. data/vendor/local/share/man/man3/xssl_write.3 +47 -0
  2228. metadata +2311 -0
@@ -0,0 +1,57 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>GLib Reference Manual: GLib Fundamentals</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="GLib Reference Manual">
8
+ <link rel="up" href="index.html" title="GLib Reference Manual">
9
+ <link rel="prev" href="glib-resources.html" title="Mailing lists and bug reports">
10
+ <link rel="next" href="glib-Version-Information.html" title="Version Information">
11
+ <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts"></td>
17
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
18
+ <td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
19
+ <td><a accesskey="p" href="glib-resources.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
20
+ <td><a accesskey="n" href="glib-Version-Information.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
21
+ </tr></table>
22
+ <div class="chapter">
23
+ <div class="titlepage"><div><div><h1 class="title">
24
+ <a name="glib-fundamentals"></a>GLib Fundamentals</h1></div></div></div>
25
+ <div class="toc"><dl class="toc">
26
+ <dt>
27
+ <span class="refentrytitle"><a href="glib-Version-Information.html">Version Information</a></span><span class="refpurpose"> — variables and functions to check the GLib version</span>
28
+ </dt>
29
+ <dt>
30
+ <span class="refentrytitle"><a href="glib-Basic-Types.html">Basic Types</a></span><span class="refpurpose"> — standard GLib types, defined for ease-of-use
31
+ and portability</span>
32
+ </dt>
33
+ <dt>
34
+ <span class="refentrytitle"><a href="glib-Standard-Macros.html">Standard Macros</a></span><span class="refpurpose"> — commonly-used macros</span>
35
+ </dt>
36
+ <dt>
37
+ <span class="refentrytitle"><a href="glib-Type-Conversion-Macros.html">Type Conversion Macros</a></span><span class="refpurpose"> — portably storing integers in pointer variables</span>
38
+ </dt>
39
+ <dt>
40
+ <span class="refentrytitle"><a href="glib-Byte-Order-Macros.html">Byte Order Macros</a></span><span class="refpurpose"> — a portable way to convert between different byte orders</span>
41
+ </dt>
42
+ <dt>
43
+ <span class="refentrytitle"><a href="glib-Numerical-Definitions.html">Numerical Definitions</a></span><span class="refpurpose"> — mathematical constants, and floating point decomposition</span>
44
+ </dt>
45
+ <dt>
46
+ <span class="refentrytitle"><a href="glib-Miscellaneous-Macros.html">Miscellaneous Macros</a></span><span class="refpurpose"> — specialized macros which are not used often</span>
47
+ </dt>
48
+ <dt>
49
+ <span class="refentrytitle"><a href="glib-Atomic-Operations.html">Atomic Operations</a></span><span class="refpurpose"> — basic atomic integer and pointer operations</span>
50
+ </dt>
51
+ </dl></div>
52
+ </div>
53
+ <div class="footer">
54
+ <hr>
55
+ Generated by GTK-Doc V1.21.1</div>
56
+ </body>
57
+ </html>
@@ -0,0 +1,96 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>GLib Reference Manual: glib-gettextize</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="GLib Reference Manual">
8
+ <link rel="up" href="tools.html" title="GLib Tools">
9
+ <link rel="prev" href="tools.html" title="GLib Tools">
10
+ <link rel="next" href="gtester.html" title="gtester">
11
+ <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts"></td>
17
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
18
+ <td><a accesskey="u" href="tools.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
19
+ <td><a accesskey="p" href="tools.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
20
+ <td><a accesskey="n" href="gtester.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
21
+ </tr></table>
22
+ <div lang="en" class="refentry">
23
+ <a name="glib-gettextize"></a><div class="titlepage"></div>
24
+ <div class="refnamediv"><table width="100%"><tr>
25
+ <td valign="top">
26
+ <h2><span class="refentrytitle">glib-gettextize</span></h2>
27
+ <p>glib-gettextize — gettext internationalization utility</p>
28
+ </td>
29
+ <td class="gallery_image" valign="top" align="right"></td>
30
+ </tr></table></div>
31
+ <div class="refsynopsisdiv">
32
+ <h2>Synopsis</h2>
33
+ <div class="cmdsynopsis"><p><code class="command">glib-gettextize</code> [OPTION...] [DIRECTORY]</p></div>
34
+ </div>
35
+ <div class="refsect1">
36
+ <a name="id-1.8.2.5"></a><h2>Description</h2>
37
+ <p><span class="command"><strong>glib-gettextize</strong></span> helps to prepare a source package for being
38
+ internationalized through <span class="application">gettext</span>.
39
+ It is a variant of the <span class="command"><strong>gettextize</strong></span> that ships with
40
+ <span class="application">gettext</span>.
41
+ </p>
42
+ <p><span class="command"><strong>glib-gettextize</strong></span> differs
43
+ from <span class="command"><strong>gettextize</strong></span> in that it doesn't create an
44
+ <code class="filename">intl/</code> subdirectory and doesn't modify
45
+ <code class="filename">po/ChangeLog</code> (note that newer versions of
46
+ <span class="command"><strong>gettextize</strong></span> behave like this when called with the
47
+ <code class="option">--no-changelog</code> option).
48
+ </p>
49
+ </div>
50
+ <div class="refsect1">
51
+ <a name="id-1.8.2.6"></a><h2>Options</h2>
52
+ <div class="variablelist"><table border="0" class="variablelist">
53
+ <colgroup>
54
+ <col align="left" valign="top">
55
+ <col>
56
+ </colgroup>
57
+ <tbody>
58
+ <tr>
59
+ <td><p><span class="term"><code class="option">--help</code></span></p></td>
60
+ <td><p>
61
+ print help and exit
62
+ </p></td>
63
+ </tr>
64
+ <tr>
65
+ <td><p><span class="term"><code class="option">--version</code></span></p></td>
66
+ <td><p>
67
+ print version information and exit
68
+ </p></td>
69
+ </tr>
70
+ <tr>
71
+ <td><p><span class="term"><code class="option">-c</code>, <code class="option">--copy</code></span></p></td>
72
+ <td><p>
73
+ copy files instead of making symlinks
74
+ </p></td>
75
+ </tr>
76
+ <tr>
77
+ <td><p><span class="term"><code class="option">-f</code>, <code class="option">--force</code></span></p></td>
78
+ <td><p>
79
+ force writing of new files even if old ones exist
80
+ </p></td>
81
+ </tr>
82
+ </tbody>
83
+ </table></div>
84
+ </div>
85
+ <div class="refsect1">
86
+ <a name="id-1.8.2.7"></a><h2>See also</h2>
87
+ <p>
88
+ <span class="citerefentry"><span class="refentrytitle">gettextize</span>(1)</span>
89
+ </p>
90
+ </div>
91
+ </div>
92
+ <div class="footer">
93
+ <hr>
94
+ Generated by GTK-Doc V1.21.1</div>
95
+ </body>
96
+ </html>
@@ -0,0 +1,76 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>GLib Reference Manual: Writing GLib Applications</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="GLib Reference Manual">
8
+ <link rel="up" href="glib.html" title="GLib Overview">
9
+ <link rel="prev" href="glib-cross-compiling.html" title="Cross-compiling the GLib package">
10
+ <link rel="next" href="glib-compiling.html" title="Compiling GLib Applications">
11
+ <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts"></td>
17
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
18
+ <td><a accesskey="u" href="glib.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
19
+ <td><a accesskey="p" href="glib-cross-compiling.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
20
+ <td><a accesskey="n" href="glib-compiling.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
21
+ </tr></table>
22
+ <div class="refentry">
23
+ <a name="glib-programming"></a><div class="titlepage"></div>
24
+ <div class="refnamediv"><table width="100%"><tr>
25
+ <td valign="top">
26
+ <h2><span class="refentrytitle">Writing GLib Applications</span></h2>
27
+ <p>Writing GLib Applications —
28
+ General considerations when programming with GLib
29
+ </p>
30
+ </td>
31
+ <td class="gallery_image" valign="top" align="right"></td>
32
+ </tr></table></div>
33
+ <div class="refsect1">
34
+ <a name="id-1.2.5.3"></a><h2>Writing GLib Applications</h2>
35
+ <div class="refsect2">
36
+ <a name="id-1.2.5.3.2"></a><h3>Threads</h3>
37
+ <p>
38
+ The general policy of GLib is that all functions are invisibly threadsafe
39
+ with the exception of data structure manipulation functions, where, if
40
+ you have two threads manipulating the <span class="emphasis"><em>same</em></span> data
41
+ structure, they must use a lock to synchronize their operation.
42
+ </p>
43
+ <p>
44
+ GLib is creating a worker thread for its own purposes, so GLib applications
45
+ will always have at least 2 threads.
46
+ </p>
47
+ <p>
48
+ See the sections on <a class="link" href="glib-Threads.html" title="Threads">threads</a> and
49
+ <a class="link" href="glib-Thread-Pools.html" title="Thread Pools">threadpools</a> for GLib APIs that
50
+ support multithreaded applications.
51
+ </p>
52
+ </div>
53
+ <hr>
54
+ <div class="refsect2">
55
+ <a name="id-1.2.5.3.3"></a><h3>Security</h3>
56
+ <p>
57
+ When writing code that runs with elevated privileges, it is important
58
+ to follow some basic rules of secure programming. David Wheeler has an
59
+ excellent book on this topic,
60
+ <a class="ulink" href="http://www.dwheeler.com/secure-programs/Secure-Programs-HOWTO/index.html" target="_top">Secure Programming for Linux and Unix HOWTO</a>.
61
+ </p>
62
+ <p>
63
+ When it comes to GLib and its associated libraries, GLib and
64
+ GObject are generally fine to use in code that runs with elevated
65
+ privileges; they don't load modules (executable code in shared objects)
66
+ or run other programs 'behind your back'. GIO has to be used
67
+ carefully in privileged programs, see the <a class="ulink" href="http://developer.gnome.org/gio/stable/ch02.html" target="_top">GIO documentation</a> for details.
68
+ </p>
69
+ </div>
70
+ </div>
71
+ </div>
72
+ <div class="footer">
73
+ <hr>
74
+ Generated by GTK-Doc V1.21.1</div>
75
+ </body>
76
+ </html>
@@ -0,0 +1,2217 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>GLib Reference Manual: Regular expression syntax</title>
6
+ <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7
+ <link rel="home" href="index.html" title="GLib Reference Manual">
8
+ <link rel="up" href="glib-utilities.html" title="GLib Utilities">
9
+ <link rel="prev" href="glib-Perl-compatible-regular-expressions.html" title="Perl-compatible regular expressions">
10
+ <link rel="next" href="glib-Simple-XML-Subset-Parser.html" title="Simple XML Subset Parser">
11
+ <meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
12
+ <link rel="stylesheet" href="style.css" type="text/css">
13
+ </head>
14
+ <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
15
+ <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
16
+ <td width="100%" align="left" class="shortcuts"></td>
17
+ <td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
18
+ <td><a accesskey="u" href="glib-utilities.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
19
+ <td><a accesskey="p" href="glib-Perl-compatible-regular-expressions.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
20
+ <td><a accesskey="n" href="glib-Simple-XML-Subset-Parser.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
21
+ </tr></table>
22
+ <div class="refentry">
23
+ <a name="glib-regex-syntax"></a><div class="titlepage"></div>
24
+ <div class="refnamediv"><table width="100%"><tr>
25
+ <td valign="top">
26
+ <h2><span class="refentrytitle">Regular expression syntax</span></h2>
27
+ <p>Regular expression syntax —
28
+ syntax and semantics of regular expressions supported by GRegex
29
+ </p>
30
+ </td>
31
+ <td class="gallery_image" valign="top" align="right"></td>
32
+ </tr></table></div>
33
+ <div class="refsect1">
34
+ <a name="id-1.5.25.3"></a><h2>GRegex regular expression details</h2>
35
+ <p>
36
+ A regular expression is a pattern that is matched against a
37
+ string from left to right. Most characters stand for themselves in a
38
+ pattern, and match the corresponding characters in the string. As a
39
+ trivial example, the pattern
40
+ </p>
41
+ <pre class="programlisting">
42
+ The quick brown fox
43
+ </pre>
44
+ <p>
45
+ matches a portion of a string that is identical to itself. When
46
+ caseless matching is specified (the <code class="varname">G_REGEX_CASELESS</code> flag), letters are
47
+ matched independently of case.
48
+ </p>
49
+ <p>
50
+ The power of regular expressions comes from the ability to include
51
+ alternatives and repetitions in the pattern. These are encoded in the
52
+ pattern by the use of metacharacters, which do not stand for themselves
53
+ but instead are interpreted in some special way.
54
+ </p>
55
+ <p>
56
+ There are two different sets of metacharacters: those that are recognized
57
+ anywhere in the pattern except within square brackets, and those
58
+ that are recognized in square brackets. Outside square brackets, the
59
+ metacharacters are as follows:
60
+ </p>
61
+ <div class="table">
62
+ <a name="id-1.5.25.3.7"></a><p class="title"><b>Table 1. Metacharacters outside square brackets</b></p>
63
+ <div class="table-contents"><table summary="Metacharacters outside square brackets" border="1">
64
+ <colgroup>
65
+ <col align="center">
66
+ <col>
67
+ </colgroup>
68
+ <thead><tr>
69
+ <th align="center">Character</th>
70
+ <th>Meaning</th>
71
+ </tr></thead>
72
+ <tbody>
73
+ <tr>
74
+ <td align="center">\</td>
75
+ <td>general escape character with several uses</td>
76
+ </tr>
77
+ <tr>
78
+ <td align="center">^</td>
79
+ <td>assert start of string (or line, in multiline mode)</td>
80
+ </tr>
81
+ <tr>
82
+ <td align="center">$</td>
83
+ <td>assert end of string (or line, in multiline mode)</td>
84
+ </tr>
85
+ <tr>
86
+ <td align="center">.</td>
87
+ <td>match any character except newline (by default)</td>
88
+ </tr>
89
+ <tr>
90
+ <td align="center">[</td>
91
+ <td>start character class definition</td>
92
+ </tr>
93
+ <tr>
94
+ <td align="center">|</td>
95
+ <td>start of alternative branch</td>
96
+ </tr>
97
+ <tr>
98
+ <td align="center">(</td>
99
+ <td>start subpattern</td>
100
+ </tr>
101
+ <tr>
102
+ <td align="center">)</td>
103
+ <td>end subpattern</td>
104
+ </tr>
105
+ <tr>
106
+ <td align="center">?</td>
107
+ <td>extends the meaning of (, or 0/1 quantifier, or quantifier minimizer</td>
108
+ </tr>
109
+ <tr>
110
+ <td align="center">*</td>
111
+ <td>0 or more quantifier</td>
112
+ </tr>
113
+ <tr>
114
+ <td align="center">+</td>
115
+ <td>1 or more quantifier, also "possessive quantifier"</td>
116
+ </tr>
117
+ <tr>
118
+ <td align="center">{</td>
119
+ <td>start min/max quantifier</td>
120
+ </tr>
121
+ </tbody>
122
+ </table></div>
123
+ </div>
124
+ <br class="table-break"><p>
125
+ Part of a pattern that is in square brackets is called a "character
126
+ class". In a character class the only metacharacters are:
127
+ </p>
128
+ <div class="table">
129
+ <a name="id-1.5.25.3.9"></a><p class="title"><b>Table 2. Metacharacters inside square brackets</b></p>
130
+ <div class="table-contents"><table summary="Metacharacters inside square brackets" border="1">
131
+ <colgroup>
132
+ <col align="center">
133
+ <col>
134
+ </colgroup>
135
+ <thead><tr>
136
+ <th align="center">Character</th>
137
+ <th>Meaning</th>
138
+ </tr></thead>
139
+ <tbody>
140
+ <tr>
141
+ <td align="center">\</td>
142
+ <td>general escape character</td>
143
+ </tr>
144
+ <tr>
145
+ <td align="center">^</td>
146
+ <td>negate the class, but only if the first character</td>
147
+ </tr>
148
+ <tr>
149
+ <td align="center">-</td>
150
+ <td>indicates character range</td>
151
+ </tr>
152
+ <tr>
153
+ <td align="center">[</td>
154
+ <td>POSIX character class (only if followed by POSIX syntax)</td>
155
+ </tr>
156
+ <tr>
157
+ <td align="center">]</td>
158
+ <td>terminates the character class</td>
159
+ </tr>
160
+ </tbody>
161
+ </table></div>
162
+ </div>
163
+ <br class="table-break">
164
+ </div>
165
+ <div class="refsect1">
166
+ <a name="id-1.5.25.4"></a><h2>Backslash</h2>
167
+ <p>
168
+ The backslash character has several uses. Firstly, if it is followed by
169
+ a non-alphanumeric character, it takes away any special meaning that
170
+ character may have. This use of backslash as an escape character
171
+ applies both inside and outside character classes.
172
+ </p>
173
+ <p>
174
+ For example, if you want to match a * character, you write \* in the
175
+ pattern. This escaping action applies whether or not the following
176
+ character would otherwise be interpreted as a metacharacter, so it is
177
+ always safe to precede a non-alphanumeric with backslash to specify
178
+ that it stands for itself. In particular, if you want to match a
179
+ backslash, you write \\.
180
+ </p>
181
+ <p>
182
+ If a pattern is compiled with the <code class="varname">G_REGEX_EXTENDED</code>
183
+ option, whitespace in the pattern (other than in a character class) and
184
+ characters between a # outside a character class and the next newline
185
+ are ignored.
186
+ An escaping backslash can be used to include a whitespace or # character
187
+ as part of the pattern.
188
+ </p>
189
+ <p>
190
+ Note that the C compiler interprets backslash in strings itself, therefore
191
+ you need to duplicate all \ characters when you put a regular expression
192
+ in a C string, like "\\d{3}".
193
+ </p>
194
+ <p>
195
+ If you want to remove the special meaning from a sequence of characters,
196
+ you can do so by putting them between \Q and \E.
197
+ The \Q...\E sequence is recognized both inside and outside character
198
+ classes.
199
+ </p>
200
+ <div class="refsect2">
201
+ <a name="id-1.5.25.4.7"></a><h3>Non-printing characters</h3>
202
+ <p>
203
+ A second use of backslash provides a way of encoding non-printing
204
+ characters in patterns in a visible manner. There is no restriction on the
205
+ appearance of non-printing characters, apart from the binary zero that
206
+ terminates a pattern, but when a pattern is being prepared by text
207
+ editing, it is usually easier to use one of the following escape
208
+ sequences than the binary character it represents:
209
+ </p>
210
+ <div class="table">
211
+ <a name="id-1.5.25.4.7.3"></a><p class="title"><b>Table 3. Non-printing characters</b></p>
212
+ <div class="table-contents"><table summary="Non-printing characters" border="1">
213
+ <colgroup>
214
+ <col align="center">
215
+ <col>
216
+ </colgroup>
217
+ <thead><tr>
218
+ <th align="center">Escape</th>
219
+ <th>Meaning</th>
220
+ </tr></thead>
221
+ <tbody>
222
+ <tr>
223
+ <td align="center">\a</td>
224
+ <td>alarm, that is, the BEL character (hex 07)</td>
225
+ </tr>
226
+ <tr>
227
+ <td align="center">\cx</td>
228
+ <td>"control-x", where x is any character</td>
229
+ </tr>
230
+ <tr>
231
+ <td align="center">\e</td>
232
+ <td>escape (hex 1B)</td>
233
+ </tr>
234
+ <tr>
235
+ <td align="center">\f</td>
236
+ <td>formfeed (hex 0C)</td>
237
+ </tr>
238
+ <tr>
239
+ <td align="center">\n</td>
240
+ <td>newline (hex 0A)</td>
241
+ </tr>
242
+ <tr>
243
+ <td align="center">\r</td>
244
+ <td>carriage return (hex 0D)</td>
245
+ </tr>
246
+ <tr>
247
+ <td align="center">\t</td>
248
+ <td>tab (hex 09)</td>
249
+ </tr>
250
+ <tr>
251
+ <td align="center">\ddd</td>
252
+ <td>character with octal code ddd, or backreference</td>
253
+ </tr>
254
+ <tr>
255
+ <td align="center">\xhh</td>
256
+ <td>character with hex code hh</td>
257
+ </tr>
258
+ <tr>
259
+ <td align="center">\x{hhh..}</td>
260
+ <td>character with hex code hhh..</td>
261
+ </tr>
262
+ </tbody>
263
+ </table></div>
264
+ </div>
265
+ <br class="table-break"><p>
266
+ The precise effect of \cx is as follows: if x is a lower case letter,
267
+ it is converted to upper case. Then bit 6 of the character (hex 40) is
268
+ inverted. Thus \cz becomes hex 1A, but \c{ becomes hex 3B, while \c;
269
+ becomes hex 7B.
270
+ </p>
271
+ <p>
272
+ After \x, from zero to two hexadecimal digits are read (letters can be
273
+ in upper or lower case). Any number of hexadecimal digits may appear
274
+ between \x{ and }, but the value of the character code
275
+ must be less than 2**31 (that is, the maximum hexadecimal value is
276
+ 7FFFFFFF). If characters other than hexadecimal digits appear between
277
+ \x{ and }, or if there is no terminating }, this form of escape is not
278
+ recognized. Instead, the initial \x will be interpreted as a basic hexadecimal
279
+ escape, with no following digits, giving a character whose
280
+ value is zero.
281
+ </p>
282
+ <p>
283
+ Characters whose value is less than 256 can be defined by either of the
284
+ two syntaxes for \x. There is no difference
285
+ in the way they are handled. For example, \xdc is exactly the same as
286
+ \x{dc}.
287
+ </p>
288
+ <p>
289
+ After \0 up to two further octal digits are read. If there are fewer
290
+ than two digits, just those that are present are used.
291
+ Thus the sequence \0\x\07 specifies two binary zeros followed by a BEL
292
+ character (code value 7). Make sure you supply two digits after the
293
+ initial zero if the pattern character that follows is itself an octal
294
+ digit.
295
+ </p>
296
+ <p>
297
+ The handling of a backslash followed by a digit other than 0 is complicated.
298
+ Outside a character class, GRegex reads it and any following digits as a
299
+ decimal number. If the number is less than 10, or if there
300
+ have been at least that many previous capturing left parentheses in the
301
+ expression, the entire sequence is taken as a back reference. A
302
+ description of how this works is given later, following the discussion
303
+ of parenthesized subpatterns.
304
+ </p>
305
+ <p>
306
+ Inside a character class, or if the decimal number is greater than 9
307
+ and there have not been that many capturing subpatterns, GRegex re-reads
308
+ up to three octal digits following the backslash, and uses them to generate
309
+ a data character. Any subsequent digits stand for themselves. For example:
310
+ </p>
311
+ <div class="table">
312
+ <a name="id-1.5.25.4.7.10"></a><p class="title"><b>Table 4. Non-printing characters</b></p>
313
+ <div class="table-contents"><table summary="Non-printing characters" border="1">
314
+ <colgroup>
315
+ <col align="center">
316
+ <col>
317
+ </colgroup>
318
+ <thead><tr>
319
+ <th align="center">Escape</th>
320
+ <th>Meaning</th>
321
+ </tr></thead>
322
+ <tbody>
323
+ <tr>
324
+ <td align="center">\040</td>
325
+ <td>is another way of writing a space</td>
326
+ </tr>
327
+ <tr>
328
+ <td align="center">\40</td>
329
+ <td>is the same, provided there are fewer than 40 previous capturing subpatterns</td>
330
+ </tr>
331
+ <tr>
332
+ <td align="center">\7</td>
333
+ <td>is always a back reference</td>
334
+ </tr>
335
+ <tr>
336
+ <td align="center">\11</td>
337
+ <td>might be a back reference, or another way of writing a tab</td>
338
+ </tr>
339
+ <tr>
340
+ <td align="center">\011</td>
341
+ <td>is always a tab</td>
342
+ </tr>
343
+ <tr>
344
+ <td align="center">\0113</td>
345
+ <td>is a tab followed by the character "3"</td>
346
+ </tr>
347
+ <tr>
348
+ <td align="center">\113</td>
349
+ <td>might be a back reference, otherwise the character with octal code 113</td>
350
+ </tr>
351
+ <tr>
352
+ <td align="center">\377</td>
353
+ <td>might be a back reference, otherwise the byte consisting entirely of 1 bits</td>
354
+ </tr>
355
+ <tr>
356
+ <td align="center">\81</td>
357
+ <td>is either a back reference, or a binary zero followed by the two characters "8" and "1"</td>
358
+ </tr>
359
+ </tbody>
360
+ </table></div>
361
+ </div>
362
+ <br class="table-break"><p>
363
+ Note that octal values of 100 or greater must not be introduced by a
364
+ leading zero, because no more than three octal digits are ever read.
365
+ </p>
366
+ <p>
367
+ All the sequences that define a single character can be used both inside
368
+ and outside character classes. In addition, inside a character class, the
369
+ sequence \b is interpreted as the backspace character (hex 08), and the
370
+ sequences \R and \X are interpreted as the characters "R" and "X", respectively.
371
+ Outside a character class, these sequences have different meanings (see below).
372
+ </p>
373
+ </div>
374
+ <hr>
375
+ <div class="refsect2">
376
+ <a name="id-1.5.25.4.8"></a><h3>Absolute and relative back references</h3>
377
+ <p>
378
+ The sequence \g followed by a positive or negative number, optionally enclosed
379
+ in braces, is an absolute or relative back reference. Back references are
380
+ discussed later, following the discussion of parenthesized subpatterns.
381
+ </p>
382
+ </div>
383
+ <hr>
384
+ <div class="refsect2">
385
+ <a name="id-1.5.25.4.9"></a><h3>Generic character types</h3>
386
+ <p>
387
+ Another use of backslash is for specifying generic character types.
388
+ The following are always recognized:
389
+ </p>
390
+ <div class="table">
391
+ <a name="id-1.5.25.4.9.3"></a><p class="title"><b>Table 5. Generic characters</b></p>
392
+ <div class="table-contents"><table summary="Generic characters" border="1">
393
+ <colgroup>
394
+ <col align="center">
395
+ <col>
396
+ </colgroup>
397
+ <thead><tr>
398
+ <th align="center">Escape</th>
399
+ <th>Meaning</th>
400
+ </tr></thead>
401
+ <tbody>
402
+ <tr>
403
+ <td align="center">\d</td>
404
+ <td>any decimal digit</td>
405
+ </tr>
406
+ <tr>
407
+ <td align="center">\D</td>
408
+ <td>any character that is not a decimal digit</td>
409
+ </tr>
410
+ <tr>
411
+ <td align="center">\s</td>
412
+ <td>any whitespace character</td>
413
+ </tr>
414
+ <tr>
415
+ <td align="center">\S</td>
416
+ <td>any character that is not a whitespace character</td>
417
+ </tr>
418
+ <tr>
419
+ <td align="center">\w</td>
420
+ <td>any "word" character</td>
421
+ </tr>
422
+ <tr>
423
+ <td align="center">\W</td>
424
+ <td>any "non-word" character</td>
425
+ </tr>
426
+ </tbody>
427
+ </table></div>
428
+ </div>
429
+ <br class="table-break"><p>
430
+ Each pair of escape sequences partitions the complete set of characters
431
+ into two disjoint sets. Any given character matches one, and only one,
432
+ of each pair.
433
+ </p>
434
+ <p>
435
+ These character type sequences can appear both inside and outside character
436
+ classes. They each match one character of the appropriate type.
437
+ If the current matching point is at the end of the passed string, all
438
+ of them fail, since there is no character to match.
439
+ </p>
440
+ <p>
441
+ For compatibility with Perl, \s does not match the VT character (code
442
+ 11). This makes it different from the the POSIX "space" class. The \s
443
+ characters are HT (9), LF (10), FF (12), CR (13), and space (32).
444
+ </p>
445
+ <p>
446
+ A "word" character is an underscore or any character less than 256 that
447
+ is a letter or digit.</p>
448
+ <p>
449
+ Characters with values greater than 128 never match \d,
450
+ \s, or \w, and always match \D, \S, and \W.
451
+ </p>
452
+ </div>
453
+ <hr>
454
+ <div class="refsect2">
455
+ <a name="id-1.5.25.4.10"></a><h3>Newline sequences</h3>
456
+ <p>Outside a character class, the escape sequence \R matches any Unicode
457
+ newline sequence.
458
+ This particular group matches either the two-character sequence CR followed by
459
+ LF, or one of the single characters LF (linefeed, U+000A), VT (vertical tab,
460
+ U+000B), FF (formfeed, U+000C), CR (carriage return, U+000D), NEL (next
461
+ line, U+0085), LS (line separator, U+2028), or PS (paragraph separator, U+2029).
462
+ The two-character sequence is treated as a single unit that
463
+ cannot be split. Inside a character class, \R matches the letter "R".</p>
464
+ </div>
465
+ <hr>
466
+ <div class="refsect2">
467
+ <a name="id-1.5.25.4.11"></a><h3>Unicode character properties</h3>
468
+ <p>
469
+ To support generic character types there are three additional escape
470
+ sequences, they are:
471
+ </p>
472
+ <div class="table">
473
+ <a name="id-1.5.25.4.11.3"></a><p class="title"><b>Table 6. Generic character types</b></p>
474
+ <div class="table-contents"><table summary="Generic character types" border="1">
475
+ <colgroup>
476
+ <col align="center">
477
+ <col>
478
+ </colgroup>
479
+ <thead><tr>
480
+ <th align="center">Escape</th>
481
+ <th>Meaning</th>
482
+ </tr></thead>
483
+ <tbody>
484
+ <tr>
485
+ <td align="center">\p{xx}</td>
486
+ <td>a character with the xx property</td>
487
+ </tr>
488
+ <tr>
489
+ <td align="center">\P{xx}</td>
490
+ <td>a character without the xx property</td>
491
+ </tr>
492
+ <tr>
493
+ <td align="center">\X</td>
494
+ <td>an extended Unicode sequence</td>
495
+ </tr>
496
+ </tbody>
497
+ </table></div>
498
+ </div>
499
+ <br class="table-break"><p>
500
+ The property names represented by xx above are limited to the Unicode
501
+ script names, the general category properties, and "Any", which matches
502
+ any character (including newline). Other properties such as "InMusicalSymbols"
503
+ are not currently supported. Note that \P{Any} does not match any characters,
504
+ so always causes a match failure.
505
+ </p>
506
+ <p>
507
+ Sets of Unicode characters are defined as belonging to certain scripts. A
508
+ character from one of these sets can be matched using a script name. For
509
+ example, \p{Greek} or \P{Han}.
510
+ </p>
511
+ <p>
512
+ Those that are not part of an identified script are lumped together as
513
+ "Common". The current list of scripts can be found in the documentation for
514
+ the #GUnicodeScript enumeration. Script names for use with \p{} can be
515
+ found by replacing all spaces with underscores, e.g. for Linear B use
516
+ \p{Linear_B}.
517
+ </p>
518
+ <p>
519
+ Each character has exactly one general category property, specified by a
520
+ two-letter abbreviation. For compatibility with Perl, negation can be specified
521
+ by including a circumflex between the opening brace and the property name. For
522
+ example, \p{^Lu} is the same as \P{Lu}.
523
+ </p>
524
+ <p>
525
+ If only one letter is specified with \p or \P, it includes all the general
526
+ category properties that start with that letter. In this case, in the absence
527
+ of negation, the curly brackets in the escape sequence are optional; these two
528
+ examples have the same effect:
529
+ </p>
530
+ <pre class="programlisting">
531
+ \p{L}
532
+ \pL
533
+ </pre>
534
+ <p>
535
+ In addition to the two-letter category codes listed in the
536
+ documentation for the #GUnicodeType enumeration, the following
537
+ general category property codes are supported:
538
+ </p>
539
+ <div class="table">
540
+ <a name="id-1.5.25.4.11.11"></a><p class="title"><b>Table 7. Property codes</b></p>
541
+ <div class="table-contents"><table summary="Property codes" border="1">
542
+ <colgroup>
543
+ <col align="center">
544
+ <col>
545
+ </colgroup>
546
+ <thead><tr>
547
+ <th align="center">Code</th>
548
+ <th>Meaning</th>
549
+ </tr></thead>
550
+ <tbody>
551
+ <tr>
552
+ <td align="center">C</td>
553
+ <td>Other</td>
554
+ </tr>
555
+ <tr>
556
+ <td align="center">L</td>
557
+ <td>Letter</td>
558
+ </tr>
559
+ <tr>
560
+ <td align="center">M</td>
561
+ <td>Mark</td>
562
+ </tr>
563
+ <tr>
564
+ <td align="center">N</td>
565
+ <td>Number</td>
566
+ </tr>
567
+ <tr>
568
+ <td align="center">P</td>
569
+ <td>Punctuation</td>
570
+ </tr>
571
+ <tr>
572
+ <td align="center">S</td>
573
+ <td>Symbol</td>
574
+ </tr>
575
+ <tr>
576
+ <td align="center">Z</td>
577
+ <td>Separator</td>
578
+ </tr>
579
+ </tbody>
580
+ </table></div>
581
+ </div>
582
+ <br class="table-break"><p>
583
+ The special property L&amp; is also supported: it matches a character that has
584
+ the Lu, Ll, or Lt property, in other words, a letter that is not classified as
585
+ a modifier or "other".
586
+ </p>
587
+ <p>
588
+ The long synonyms for these properties that Perl supports (such as \ep{Letter})
589
+ are not supported by GRegex, nor is it permitted to prefix any of these
590
+ properties with "Is".
591
+ </p>
592
+ <p>
593
+ No character that is in the Unicode table has the Cn (unassigned) property.
594
+ Instead, this property is assumed for any code point that is not in the
595
+ Unicode table.
596
+ </p>
597
+ <p>
598
+ Specifying caseless matching does not affect these escape sequences.
599
+ For example, \p{Lu} always matches only upper case letters.
600
+ </p>
601
+ <p>
602
+ The \X escape matches any number of Unicode characters that form an
603
+ extended Unicode sequence. \X is equivalent to
604
+ </p>
605
+ <pre class="programlisting">
606
+ (?&gt;\PM\pM*)
607
+ </pre>
608
+ <p>
609
+ That is, it matches a character without the "mark" property, followed
610
+ by zero or more characters with the "mark" property, and treats the
611
+ sequence as an atomic group (see below). Characters with the "mark"
612
+ property are typically accents that affect the preceding character.
613
+ </p>
614
+ <p>
615
+ Matching characters by Unicode property is not fast, because GRegex has
616
+ to search a structure that contains data for over fifteen thousand
617
+ characters. That is why the traditional escape sequences such as \d and
618
+ \w do not use Unicode properties.
619
+ </p>
620
+ </div>
621
+ <hr>
622
+ <div class="refsect2">
623
+ <a name="id-1.5.25.4.12"></a><h3>Simple assertions</h3>
624
+ <p>
625
+ The final use of backslash is for certain simple assertions. An
626
+ assertion specifies a condition that has to be met at a particular point in
627
+ a match, without consuming any characters from the string. The
628
+ use of subpatterns for more complicated assertions is described below.
629
+ The backslashed assertions are:
630
+ </p>
631
+ <div class="table">
632
+ <a name="id-1.5.25.4.12.3"></a><p class="title"><b>Table 8. Simple assertions</b></p>
633
+ <div class="table-contents"><table summary="Simple assertions" border="1">
634
+ <colgroup>
635
+ <col align="center">
636
+ <col>
637
+ </colgroup>
638
+ <thead><tr>
639
+ <th align="center">Escape</th>
640
+ <th>Meaning</th>
641
+ </tr></thead>
642
+ <tbody>
643
+ <tr>
644
+ <td align="center">\b</td>
645
+ <td>matches at a word boundary</td>
646
+ </tr>
647
+ <tr>
648
+ <td align="center">\B</td>
649
+ <td>matches when not at a word boundary</td>
650
+ </tr>
651
+ <tr>
652
+ <td align="center">\A</td>
653
+ <td>matches at the start of the string</td>
654
+ </tr>
655
+ <tr>
656
+ <td align="center">\Z</td>
657
+ <td>matches at the end of the string or before a newline at the end of the string</td>
658
+ </tr>
659
+ <tr>
660
+ <td align="center">\z</td>
661
+ <td>matches only at the end of the string</td>
662
+ </tr>
663
+ <tr>
664
+ <td align="center">\G</td>
665
+ <td>matches at first matching position in the string</td>
666
+ </tr>
667
+ </tbody>
668
+ </table></div>
669
+ </div>
670
+ <br class="table-break"><p>
671
+ These assertions may not appear in character classes (but note that \b
672
+ has a different meaning, namely the backspace character, inside a
673
+ character class).
674
+ </p>
675
+ <p>
676
+ A word boundary is a position in the string where the current
677
+ character and the previous character do not both match \w or \W (i.e.
678
+ one matches \w and the other matches \W), or the start or end of the
679
+ string if the first or last character matches \w, respectively.
680
+ </p>
681
+ <p>
682
+ The \A, \Z, and \z assertions differ from the traditional circumflex
683
+ and dollar (described in the next section) in that they only ever match
684
+ at the very start and end of the string, whatever options are
685
+ set. Thus, they are independent of multiline mode. These three assertions
686
+ are not affected by the <code class="varname">G_REGEX_MATCH_NOTBOL</code> or <code class="varname">G_REGEX_MATCH_NOTEOL</code> options,
687
+ which affect only the behaviour of the circumflex and dollar metacharacters.
688
+ However, if the start_position argument of a matching function is non-zero,
689
+ indicating that matching is to start at a point other than the beginning of
690
+ the string, \A can never match. The difference between \Z and \z is
691
+ that \Z matches before a newline at the end of the string as well at the
692
+ very end, whereas \z matches only at the end.
693
+ </p>
694
+ <p>
695
+ The \G assertion is true only when the current matching position is at
696
+ the start point of the match, as specified by the start_position argument
697
+ to the matching functions. It differs from \A when the value of startoffset is
698
+ non-zero.
699
+ </p>
700
+ <p>
701
+ Note, however, that the interpretation of \G, as the start of the
702
+ current match, is subtly different from Perl’s, which defines it as the
703
+ end of the previous match. In Perl, these can be different when the
704
+ previously matched string was empty.
705
+ </p>
706
+ <p>
707
+ If all the alternatives of a pattern begin with \G, the expression is
708
+ anchored to the starting match position, and the "anchored" flag is set
709
+ in the compiled regular expression.
710
+ </p>
711
+ </div>
712
+ </div>
713
+ <div class="refsect1">
714
+ <a name="id-1.5.25.5"></a><h2>Circumflex and dollar</h2>
715
+ <p>
716
+ Outside a character class, in the default matching mode, the circumflex
717
+ character is an assertion that is true only if the current matching
718
+ point is at the start of the string. If the start_position argument to
719
+ the matching functions is non-zero, circumflex can never match if the
720
+ <code class="varname">G_REGEX_MULTILINE</code> option is unset. Inside a character class, circumflex
721
+ has an entirely different meaning (see below).
722
+ </p>
723
+ <p>
724
+ Circumflex need not be the first character of the pattern if a number
725
+ of alternatives are involved, but it should be the first thing in each
726
+ alternative in which it appears if the pattern is ever to match that
727
+ branch. If all possible alternatives start with a circumflex, that is,
728
+ if the pattern is constrained to match only at the start of the string,
729
+ it is said to be an "anchored" pattern. (There are also other
730
+ constructs that can cause a pattern to be anchored.)
731
+ </p>
732
+ <p>
733
+ A dollar character is an assertion that is true only if the current
734
+ matching point is at the end of the string, or immediately
735
+ before a newline at the end of the string (by default). Dollar need not
736
+ be the last character of the pattern if a number of alternatives are
737
+ involved, but it should be the last item in any branch in which it
738
+ appears. Dollar has no special meaning in a character class.
739
+ </p>
740
+ <p>
741
+ The meaning of dollar can be changed so that it matches only at the
742
+ very end of the string, by setting the <code class="varname">G_REGEX_DOLLAR_ENDONLY</code> option at
743
+ compile time. This does not affect the \Z assertion.
744
+ </p>
745
+ <p>
746
+ The meanings of the circumflex and dollar characters are changed if the
747
+ <code class="varname">G_REGEX_MULTILINE</code> option is set. When this is the case,
748
+ a circumflex matches immediately after internal newlines as well as at the
749
+ start of the string. It does not match after a newline that ends the string.
750
+ A dollar matches before any newlines in the string, as well as at the very
751
+ end, when <code class="varname">G_REGEX_MULTILINE</code> is set. When newline is
752
+ specified as the two-character sequence CRLF, isolated CR and LF characters
753
+ do not indicate newlines.
754
+ </p>
755
+ <p>
756
+ For example, the pattern /^abc$/ matches the string "def\nabc" (where
757
+ \n represents a newline) in multiline mode, but not otherwise. Consequently,
758
+ patterns that are anchored in single line mode because all branches start with
759
+ ^ are not anchored in multiline mode, and a match for circumflex is possible
760
+ when the <code class="varname">start_position</code> argument of a matching function
761
+ is non-zero. The <code class="varname">G_REGEX_DOLLAR_ENDONLY</code> option is ignored
762
+ if <code class="varname">G_REGEX_MULTILINE</code> is set.
763
+ </p>
764
+ <p>
765
+ Note that the sequences \A, \Z, and \z can be used to match the start and
766
+ end of the string in both modes, and if all branches of a pattern start with
767
+ \A it is always anchored, whether or not <code class="varname">G_REGEX_MULTILINE</code>
768
+ is set.
769
+ </p>
770
+ </div>
771
+ <div class="refsect1">
772
+ <a name="id-1.5.25.6"></a><h2>Full stop (period, dot)</h2>
773
+ <p>
774
+ Outside a character class, a dot in the pattern matches any one character
775
+ in the string, including a non-printing character, but not (by
776
+ default) newline. In UTF-8 a character might be more than one byte long.
777
+ </p>
778
+ <p>
779
+ When a line ending is defined as a single character, dot never matches that
780
+ character; when the two-character sequence CRLF is used, dot does not match CR
781
+ if it is immediately followed by LF, but otherwise it matches all characters
782
+ (including isolated CRs and LFs). When any Unicode line endings are being
783
+ recognized, dot does not match CR or LF or any of the other line ending
784
+ characters.
785
+ </p>
786
+ <p>
787
+ If the <code class="varname">G_REGEX_DOTALL</code> flag is set, dots match newlines
788
+ as well. The handling of dot is entirely independent of the handling of circumflex
789
+ and dollar, the only relationship being that they both involve newline
790
+ characters. Dot has no special meaning in a character class.
791
+ </p>
792
+ <p>
793
+ The behaviour of dot with regard to newlines can be changed. If the
794
+ <code class="varname">G_REGEX_DOTALL</code> option is set, a dot matches any one
795
+ character, without exception. If newline is defined as the two-character
796
+ sequence CRLF, it takes two dots to match it.
797
+ </p>
798
+ <p>
799
+ The handling of dot is entirely independent of the handling of circumflex and
800
+ dollar, the only relationship being that they both involve newlines. Dot has no
801
+ special meaning in a character class.
802
+ </p>
803
+ </div>
804
+ <div class="refsect1">
805
+ <a name="id-1.5.25.7"></a><h2>Matching a single byte</h2>
806
+ <p>
807
+ Outside a character class, the escape sequence \C matches any one byte,
808
+ both in and out of UTF-8 mode. Unlike a dot, it always matches any line
809
+ ending characters.
810
+ The feature is provided in Perl in order to match individual bytes in
811
+ UTF-8 mode. Because it breaks up UTF-8 characters into individual
812
+ bytes, what remains in the string may be a malformed UTF-8 string. For
813
+ this reason, the \C escape sequence is best avoided.
814
+ </p>
815
+ <p>
816
+ GRegex does not allow \C to appear in lookbehind assertions (described
817
+ below), because in UTF-8 mode this would make it impossible to calculate
818
+ the length of the lookbehind.
819
+ </p>
820
+ </div>
821
+ <div class="refsect1">
822
+ <a name="id-1.5.25.8"></a><h2>Square brackets and character classes</h2>
823
+ <p>
824
+ An opening square bracket introduces a character class, terminated by a
825
+ closing square bracket. A closing square bracket on its own is not special. If a closing square bracket is required as a member of the class,
826
+ it should be the first data character in the class (after an initial
827
+ circumflex, if present) or escaped with a backslash.
828
+ </p>
829
+ <p>
830
+ A character class matches a single character in the string. A matched character
831
+ must be in the set of characters defined by the class, unless the first
832
+ character in the class definition is a circumflex, in which case the
833
+ string character must not be in the set defined by the class. If a
834
+ circumflex is actually required as a member of the class, ensure it is
835
+ not the first character, or escape it with a backslash.
836
+ </p>
837
+ <p>
838
+ For example, the character class [aeiou] matches any lower case vowel,
839
+ while [^aeiou] matches any character that is not a lower case vowel.
840
+ Note that a circumflex is just a convenient notation for specifying the
841
+ characters that are in the class by enumerating those that are not. A
842
+ class that starts with a circumflex is not an assertion: it still consumes
843
+ a character from the string, and therefore it fails if the current pointer
844
+ is at the end of the string.
845
+ </p>
846
+ <p>
847
+ In UTF-8 mode, characters with values greater than 255 can be included
848
+ in a class as a literal string of bytes, or by using the \x{ escaping
849
+ mechanism.
850
+ </p>
851
+ <p>
852
+ When caseless matching is set, any letters in a class represent both
853
+ their upper case and lower case versions, so for example, a caseless
854
+ [aeiou] matches "A" as well as "a", and a caseless [^aeiou] does not
855
+ match "A", whereas a caseful version would.
856
+ </p>
857
+ <p>
858
+ Characters that might indicate line breaks are never treated
859
+ in any special way when matching character classes, whatever line-ending
860
+ sequence is in use, and whatever setting of the <code class="varname">G_REGEX_DOTALL</code>
861
+ and <code class="varname">G_REGEX_MULTILINE</code> options is used. A class such as [^a]
862
+ always matches one of these characters.
863
+ </p>
864
+ <p>
865
+ The minus (hyphen) character can be used to specify a range of characters in
866
+ a character class. For example, [d-m] matches any letter
867
+ between d and m, inclusive. If a minus character is required in a
868
+ class, it must be escaped with a backslash or appear in a position
869
+ where it cannot be interpreted as indicating a range, typically as the
870
+ first or last character in the class.
871
+ </p>
872
+ <p>
873
+ It is not possible to have the literal character "]" as the end character
874
+ of a range. A pattern such as [W-]46] is interpreted as a class of
875
+ two characters ("W" and "-") followed by a literal string "46]", so it
876
+ would match "W46]" or "-46]". However, if the "]" is escaped with a
877
+ backslash it is interpreted as the end of range, so [W-\]46] is interpreted
878
+ as a class containing a range followed by two other characters.
879
+ The octal or hexadecimal representation of "]" can also be used to end
880
+ a range.
881
+ </p>
882
+ <p>
883
+ Ranges operate in the collating sequence of character values. They can
884
+ also be used for characters specified numerically, for example
885
+ [\000-\037]. In UTF-8 mode, ranges can include characters whose values
886
+ are greater than 255, for example [\x{100}-\x{2ff}].
887
+ </p>
888
+ <p>
889
+ The character types \d, \D, \p, \P, \s, \S, \w, and \W may also appear
890
+ in a character class, and add the characters that they match to the
891
+ class. For example, [\dABCDEF] matches any hexadecimal digit. A
892
+ circumflex can conveniently be used with the upper case character types to
893
+ specify a more restricted set of characters than the matching lower
894
+ case type. For example, the class [^\W_] matches any letter or digit,
895
+ but not underscore.
896
+ </p>
897
+ <p>
898
+ The only metacharacters that are recognized in character classes are
899
+ backslash, hyphen (only where it can be interpreted as specifying a
900
+ range), circumflex (only at the start), opening square bracket (only
901
+ when it can be interpreted as introducing a POSIX class name - see the
902
+ next section), and the terminating closing square bracket. However,
903
+ escaping other non-alphanumeric characters does no harm.
904
+ </p>
905
+ </div>
906
+ <div class="refsect1">
907
+ <a name="id-1.5.25.9"></a><h2>Posix character classes</h2>
908
+ <p>
909
+ GRegex supports the POSIX notation for character classes. This uses names
910
+ enclosed by [: and :] within the enclosing square brackets. For example,
911
+ </p>
912
+ <pre class="programlisting">
913
+ [01[:alpha:]%]
914
+ </pre>
915
+ <p>
916
+ matches "0", "1", any alphabetic character, or "%". The supported class
917
+ names are
918
+ </p>
919
+ <div class="table">
920
+ <a name="id-1.5.25.9.5"></a><p class="title"><b>Table 9. Posix classes</b></p>
921
+ <div class="table-contents"><table summary="Posix classes" border="1">
922
+ <colgroup>
923
+ <col align="center">
924
+ <col>
925
+ </colgroup>
926
+ <thead><tr>
927
+ <th align="center">Name</th>
928
+ <th>Meaning</th>
929
+ </tr></thead>
930
+ <tbody>
931
+ <tr>
932
+ <td align="center">alnum</td>
933
+ <td>letters and digits</td>
934
+ </tr>
935
+ <tr>
936
+ <td align="center">alpha</td>
937
+ <td>letters</td>
938
+ </tr>
939
+ <tr>
940
+ <td align="center">ascii</td>
941
+ <td>character codes 0 - 127</td>
942
+ </tr>
943
+ <tr>
944
+ <td align="center">blank</td>
945
+ <td>space or tab only</td>
946
+ </tr>
947
+ <tr>
948
+ <td align="center">cntrl</td>
949
+ <td>control characters</td>
950
+ </tr>
951
+ <tr>
952
+ <td align="center">digit</td>
953
+ <td>decimal digits (same as \d)</td>
954
+ </tr>
955
+ <tr>
956
+ <td align="center">graph</td>
957
+ <td>printing characters, excluding space</td>
958
+ </tr>
959
+ <tr>
960
+ <td align="center">lower</td>
961
+ <td>lower case letters</td>
962
+ </tr>
963
+ <tr>
964
+ <td align="center">print</td>
965
+ <td>printing characters, including space</td>
966
+ </tr>
967
+ <tr>
968
+ <td align="center">punct</td>
969
+ <td>printing characters, excluding letters and digits</td>
970
+ </tr>
971
+ <tr>
972
+ <td align="center">space</td>
973
+ <td>white space (not quite the same as \s)</td>
974
+ </tr>
975
+ <tr>
976
+ <td align="center">upper</td>
977
+ <td>upper case letters</td>
978
+ </tr>
979
+ <tr>
980
+ <td align="center">word</td>
981
+ <td>"word" characters (same as \w)</td>
982
+ </tr>
983
+ <tr>
984
+ <td align="center">xdigit</td>
985
+ <td>hexadecimal digits</td>
986
+ </tr>
987
+ </tbody>
988
+ </table></div>
989
+ </div>
990
+ <br class="table-break"><p>
991
+ The "space" characters are HT (9), LF (10), VT (11), FF (12), CR (13),
992
+ and space (32). Notice that this list includes the VT character (code
993
+ 11). This makes "space" different to \s, which does not include VT (for
994
+ Perl compatibility).
995
+ </p>
996
+ <p>
997
+ The name "word" is a Perl extension, and "blank" is a GNU extension.
998
+ Another Perl extension is negation, which is indicated by a ^ character
999
+ after the colon. For example,
1000
+ </p>
1001
+ <pre class="programlisting">
1002
+ [12[:^digit:]]
1003
+ </pre>
1004
+ <p>
1005
+ matches "1", "2", or any non-digit. GRegex also recognize the
1006
+ POSIX syntax [.ch.] and [=ch=] where "ch" is a "collating element", but
1007
+ these are not supported, and an error is given if they are encountered.
1008
+ </p>
1009
+ <p>
1010
+ In UTF-8 mode, characters with values greater than 128 do not match any
1011
+ of the POSIX character classes.
1012
+ </p>
1013
+ </div>
1014
+ <div class="refsect1">
1015
+ <a name="id-1.5.25.10"></a><h2>Vertical bar</h2>
1016
+ <p>
1017
+ Vertical bar characters are used to separate alternative patterns. For
1018
+ example, the pattern
1019
+ </p>
1020
+ <pre class="programlisting">
1021
+ gilbert|sullivan
1022
+ </pre>
1023
+ <p>
1024
+ matches either "gilbert" or "sullivan". Any number of alternatives may
1025
+ appear, and an empty alternative is permitted (matching the empty
1026
+ string). The matching process tries each alternative in turn, from
1027
+ left to right, and the first one that succeeds is used. If the alternatives are within a subpattern (defined below), "succeeds" means matching the rest of the main pattern as well as the alternative in the subpattern.
1028
+ </p>
1029
+ </div>
1030
+ <div class="refsect1">
1031
+ <a name="id-1.5.25.11"></a><h2>Internal option setting</h2>
1032
+ <p>
1033
+ The settings of the <code class="varname">G_REGEX_CASELESS</code>, <code class="varname">G_REGEX_MULTILINE</code>, <code class="varname">G_REGEX_MULTILINE</code>,
1034
+ and <code class="varname">G_REGEX_EXTENDED</code> options can be changed from within the pattern by a
1035
+ sequence of Perl-style option letters enclosed between "(?" and ")". The
1036
+ option letters are
1037
+ </p>
1038
+ <div class="table">
1039
+ <a name="id-1.5.25.11.3"></a><p class="title"><b>Table 10. Option settings</b></p>
1040
+ <div class="table-contents"><table summary="Option settings" border="1">
1041
+ <colgroup>
1042
+ <col align="center">
1043
+ <col>
1044
+ </colgroup>
1045
+ <thead><tr>
1046
+ <th align="center">Option</th>
1047
+ <th>Flag</th>
1048
+ </tr></thead>
1049
+ <tbody>
1050
+ <tr>
1051
+ <td align="center">i</td>
1052
+ <td><code class="varname">G_REGEX_CASELESS</code></td>
1053
+ </tr>
1054
+ <tr>
1055
+ <td align="center">m</td>
1056
+ <td><code class="varname">G_REGEX_MULTILINE</code></td>
1057
+ </tr>
1058
+ <tr>
1059
+ <td align="center">s</td>
1060
+ <td><code class="varname">G_REGEX_DOTALL</code></td>
1061
+ </tr>
1062
+ <tr>
1063
+ <td align="center">x</td>
1064
+ <td><code class="varname">G_REGEX_EXTENDED</code></td>
1065
+ </tr>
1066
+ </tbody>
1067
+ </table></div>
1068
+ </div>
1069
+ <br class="table-break"><p>
1070
+ For example, (?im) sets caseless, multiline matching. It is also
1071
+ possible to unset these options by preceding the letter with a hyphen, and a
1072
+ combined setting and unsetting such as (?im-sx), which sets <code class="varname">G_REGEX_CASELESS</code>
1073
+ and <code class="varname">G_REGEX_MULTILINE</code> while unsetting <code class="varname">G_REGEX_DOTALL</code> and <code class="varname">G_REGEX_EXTENDED</code>,
1074
+ is also permitted. If a letter appears both before and after the
1075
+ hyphen, the option is unset.
1076
+ </p>
1077
+ <p>
1078
+ When an option change occurs at top level (that is, not inside subpattern
1079
+ parentheses), the change applies to the remainder of the pattern
1080
+ that follows.
1081
+ </p>
1082
+ <p>
1083
+ An option change within a subpattern (see below for a description of subpatterns)
1084
+ affects only that part of the current pattern that follows it, so
1085
+ </p>
1086
+ <pre class="programlisting">
1087
+ (a(?i)b)c
1088
+ </pre>
1089
+ <p>
1090
+ matches abc and aBc and no other strings (assuming <code class="varname">G_REGEX_CASELESS</code> is not
1091
+ used). By this means, options can be made to have different settings
1092
+ in different parts of the pattern. Any changes made in one alternative
1093
+ do carry on into subsequent branches within the same subpattern. For
1094
+ example,
1095
+ </p>
1096
+ <pre class="programlisting">
1097
+ (a(?i)b|c)
1098
+ </pre>
1099
+ <p>
1100
+ matches "ab", "aB", "c", and "C", even though when matching "C" the
1101
+ first branch is abandoned before the option setting. This is because
1102
+ the effects of option settings happen at compile time. There would be
1103
+ some very weird behaviour otherwise.
1104
+ </p>
1105
+ <p>
1106
+ The options <code class="varname">G_REGEX_UNGREEDY</code> and
1107
+ <code class="varname">G_REGEX_EXTRA</code> and <code class="varname">G_REGEX_DUPNAMES</code>
1108
+ can be changed in the same way as the Perl-compatible options by using
1109
+ the characters U, X and J respectively.
1110
+ </p>
1111
+ </div>
1112
+ <div class="refsect1">
1113
+ <a name="id-1.5.25.12"></a><h2>Subpatterns</h2>
1114
+ <p>
1115
+ Subpatterns are delimited by parentheses (round brackets), which can be
1116
+ nested. Turning part of a pattern into a subpattern does two things:
1117
+ </p>
1118
+ <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
1119
+ <li class="listitem"><p>
1120
+ It localizes a set of alternatives. For example, the pattern
1121
+ cat(aract|erpillar|) matches one of the words "cat", "cataract", or
1122
+ "caterpillar". Without the parentheses, it would match "cataract",
1123
+ "erpillar" or an empty string.
1124
+ </p></li>
1125
+ <li class="listitem"><p>
1126
+ It sets up the subpattern as a capturing subpattern. This means
1127
+ that, when the whole pattern matches, that portion of the
1128
+ string that matched the subpattern can be obtained using <code class="function">g_match_info_fetch()</code>.
1129
+ Opening parentheses are counted from left to right (starting from 1, as
1130
+ subpattern 0 is the whole matched string) to obtain numbers for the
1131
+ capturing subpatterns.
1132
+ </p></li>
1133
+ </ul></div>
1134
+ <p>
1135
+ For example, if the string "the red king" is matched against the pattern
1136
+ </p>
1137
+ <pre class="programlisting">
1138
+ the ((red|white) (king|queen))
1139
+ </pre>
1140
+ <p>
1141
+ the captured substrings are "red king", "red", and "king", and are numbered 1, 2, and 3, respectively.
1142
+ </p>
1143
+ <p>
1144
+ The fact that plain parentheses fulfil two functions is not always
1145
+ helpful. There are often times when a grouping subpattern is required
1146
+ without a capturing requirement. If an opening parenthesis is followed
1147
+ by a question mark and a colon, the subpattern does not do any capturing,
1148
+ and is not counted when computing the number of any subsequent
1149
+ capturing subpatterns. For example, if the string "the white queen" is
1150
+ matched against the pattern
1151
+ </p>
1152
+ <pre class="programlisting">
1153
+ the ((?:red|white) (king|queen))
1154
+ </pre>
1155
+ <p>
1156
+ the captured substrings are "white queen" and "queen", and are numbered
1157
+ 1 and 2. The maximum number of capturing subpatterns is 65535.
1158
+ </p>
1159
+ <p>
1160
+ As a convenient shorthand, if any option settings are required at the
1161
+ start of a non-capturing subpattern, the option letters may appear
1162
+ between the "?" and the ":". Thus the two patterns
1163
+ </p>
1164
+ <pre class="programlisting">
1165
+ (?i:saturday|sunday)
1166
+ (?:(?i)saturday|sunday)
1167
+ </pre>
1168
+ <p>
1169
+ match exactly the same set of strings. Because alternative branches are
1170
+ tried from left to right, and options are not reset until the end of
1171
+ the subpattern is reached, an option setting in one branch does affect
1172
+ subsequent branches, so the above patterns match "SUNDAY" as well as
1173
+ "Saturday".
1174
+ </p>
1175
+ </div>
1176
+ <div class="refsect1">
1177
+ <a name="id-1.5.25.13"></a><h2>Named subpatterns</h2>
1178
+ <p>
1179
+ Identifying capturing parentheses by number is simple, but it can be
1180
+ very hard to keep track of the numbers in complicated regular expressions.
1181
+ Furthermore, if an expression is modified, the numbers may
1182
+ change. To help with this difficulty, GRegex supports the naming of
1183
+ subpatterns. A subpattern can be named in one of three ways: (?&lt;name&gt;...) or
1184
+ (?'name'...) as in Perl, or (?P&lt;name&gt;...) as in Python.
1185
+ References to capturing parentheses from other
1186
+ parts of the pattern, such as backreferences, recursion, and conditions,
1187
+ can be made by name as well as by number.
1188
+ </p>
1189
+ <p>
1190
+ Names consist of up to 32 alphanumeric characters and underscores. Named
1191
+ capturing parentheses are still allocated numbers as well as names, exactly as
1192
+ if the names were not present.
1193
+ By default, a name must be unique within a pattern, but it is possible to relax
1194
+ this constraint by setting the <code class="varname">G_REGEX_DUPNAMES</code> option at
1195
+ compile time. This can be useful for patterns where only one instance of the
1196
+ named parentheses can match. Suppose you want to match the name of a weekday,
1197
+ either as a 3-letter abbreviation or as the full name, and in both cases you
1198
+ want to extract the abbreviation. This pattern (ignoring the line breaks) does
1199
+ the job:
1200
+ </p>
1201
+ <pre class="programlisting">
1202
+ (?&lt;DN&gt;Mon|Fri|Sun)(?:day)?|
1203
+ (?&lt;DN&gt;Tue)(?:sday)?|
1204
+ (?&lt;DN&gt;Wed)(?:nesday)?|
1205
+ (?&lt;DN&gt;Thu)(?:rsday)?|
1206
+ (?&lt;DN&gt;Sat)(?:urday)?
1207
+ </pre>
1208
+ <p>
1209
+ There are five capturing substrings, but only one is ever set after a match.
1210
+ The function for extracting the data by name returns the substring
1211
+ for the first (and in this example, the only) subpattern of that name that
1212
+ matched. This saves searching to find which numbered subpattern it was. If you
1213
+ make a reference to a non-unique named subpattern from elsewhere in the
1214
+ pattern, the one that corresponds to the lowest number is used.
1215
+ </p>
1216
+ </div>
1217
+ <div class="refsect1">
1218
+ <a name="id-1.5.25.14"></a><h2>Repetition</h2>
1219
+ <p>
1220
+ Repetition is specified by quantifiers, which can follow any of the
1221
+ following items:
1222
+ </p>
1223
+ <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
1224
+ <li class="listitem"><p>a literal data character</p></li>
1225
+ <li class="listitem"><p>the dot metacharacter</p></li>
1226
+ <li class="listitem"><p>the \C escape sequence</p></li>
1227
+ <li class="listitem"><p>the \X escape sequence (in UTF-8 mode)</p></li>
1228
+ <li class="listitem"><p>the \R escape sequence</p></li>
1229
+ <li class="listitem"><p>an escape such as \d that matches a single character</p></li>
1230
+ <li class="listitem"><p>a character class</p></li>
1231
+ <li class="listitem"><p>a back reference (see next section)</p></li>
1232
+ <li class="listitem"><p>a parenthesized subpattern (unless it is an assertion)</p></li>
1233
+ </ul></div>
1234
+ <p>
1235
+ The general repetition quantifier specifies a minimum and maximum number
1236
+ of permitted matches, by giving the two numbers in curly brackets
1237
+ (braces), separated by a comma. The numbers must be less than 65536,
1238
+ and the first must be less than or equal to the second. For example:
1239
+ </p>
1240
+ <pre class="programlisting">
1241
+ z{2,4}
1242
+ </pre>
1243
+ <p>
1244
+ matches "zz", "zzz", or "zzzz". A closing brace on its own is not a
1245
+ special character. If the second number is omitted, but the comma is
1246
+ present, there is no upper limit; if the second number and the comma
1247
+ are both omitted, the quantifier specifies an exact number of required
1248
+ matches. Thus
1249
+ </p>
1250
+ <pre class="programlisting">
1251
+ [aeiou]{3,}
1252
+ </pre>
1253
+ <p>
1254
+ matches at least 3 successive vowels, but may match many more, while
1255
+ </p>
1256
+ <pre class="programlisting">
1257
+ \d{8}
1258
+ </pre>
1259
+ <p>
1260
+ matches exactly 8 digits. An opening curly bracket that appears in a
1261
+ position where a quantifier is not allowed, or one that does not match
1262
+ the syntax of a quantifier, is taken as a literal character. For example,
1263
+ {,6} is not a quantifier, but a literal string of four characters.
1264
+ </p>
1265
+ <p>
1266
+ In UTF-8 mode, quantifiers apply to UTF-8 characters rather than to
1267
+ individual bytes. Thus, for example, \x{100}{2} matches two UTF-8
1268
+ characters, each of which is represented by a two-byte sequence. Similarly,
1269
+ \X{3} matches three Unicode extended sequences, each of which may be
1270
+ several bytes long (and they may be of different lengths).
1271
+ </p>
1272
+ <p>
1273
+ The quantifier {0} is permitted, causing the expression to behave as if
1274
+ the previous item and the quantifier were not present.
1275
+ </p>
1276
+ <p>
1277
+ For convenience, the three most common quantifiers have single-character
1278
+ abbreviations:
1279
+ </p>
1280
+ <div class="table">
1281
+ <a name="id-1.5.25.14.14"></a><p class="title"><b>Table 11. Abbreviations for quantifiers</b></p>
1282
+ <div class="table-contents"><table summary="Abbreviations for quantifiers" border="1">
1283
+ <colgroup>
1284
+ <col align="center">
1285
+ <col>
1286
+ </colgroup>
1287
+ <thead><tr>
1288
+ <th align="center">Abbreviation</th>
1289
+ <th>Meaning</th>
1290
+ </tr></thead>
1291
+ <tbody>
1292
+ <tr>
1293
+ <td align="center">*</td>
1294
+ <td>is equivalent to {0,}</td>
1295
+ </tr>
1296
+ <tr>
1297
+ <td align="center">+</td>
1298
+ <td>is equivalent to {1,}</td>
1299
+ </tr>
1300
+ <tr>
1301
+ <td align="center">?</td>
1302
+ <td>is equivalent to {0,1}</td>
1303
+ </tr>
1304
+ </tbody>
1305
+ </table></div>
1306
+ </div>
1307
+ <br class="table-break"><p>
1308
+ It is possible to construct infinite loops by following a subpattern
1309
+ that can match no characters with a quantifier that has no upper limit,
1310
+ for example:
1311
+ </p>
1312
+ <pre class="programlisting">
1313
+ (a?)*
1314
+ </pre>
1315
+ <p>
1316
+ Because there are cases where this can be useful, such patterns are
1317
+ accepted, but if any repetition of the subpattern does in fact match
1318
+ no characters, the loop is forcibly broken.
1319
+ </p>
1320
+ <p>
1321
+ By default, the quantifiers are "greedy", that is, they match as much
1322
+ as possible (up to the maximum number of permitted times), without
1323
+ causing the rest of the pattern to fail. The classic example of where
1324
+ this gives problems is in trying to match comments in C programs. These
1325
+ appear between /* and */ and within the comment, individual * and /
1326
+ characters may appear. An attempt to match C comments by applying the
1327
+ pattern
1328
+ </p>
1329
+ <pre class="programlisting">
1330
+ /\*.*\*/
1331
+ </pre>
1332
+ <p>
1333
+ to the string
1334
+ </p>
1335
+ <pre class="programlisting">
1336
+ /* first comment */ not comment /* second comment */
1337
+ </pre>
1338
+ <p>
1339
+ fails, because it matches the entire string owing to the greediness of
1340
+ the .* item.
1341
+ </p>
1342
+ <p>
1343
+ However, if a quantifier is followed by a question mark, it ceases to
1344
+ be greedy, and instead matches the minimum number of times possible, so
1345
+ the pattern
1346
+ </p>
1347
+ <pre class="programlisting">
1348
+ /\*.*?\*/
1349
+ </pre>
1350
+ <p>
1351
+ does the right thing with the C comments. The meaning of the various
1352
+ quantifiers is not otherwise changed, just the preferred number of
1353
+ matches. Do not confuse this use of question mark with its use as a
1354
+ quantifier in its own right. Because it has two uses, it can sometimes
1355
+ appear doubled, as in
1356
+ </p>
1357
+ <pre class="programlisting">
1358
+ \d??\d
1359
+ </pre>
1360
+ <p>
1361
+ which matches one digit by preference, but can match two if that is the
1362
+ only way the rest of the pattern matches.
1363
+ </p>
1364
+ <p>
1365
+ If the <code class="varname">G_REGEX_UNGREEDY</code> flag is set, the quantifiers are not greedy
1366
+ by default, but individual ones can be made greedy by following them with
1367
+ a question mark. In other words, it inverts the default behaviour.
1368
+ </p>
1369
+ <p>
1370
+ When a parenthesized subpattern is quantified with a minimum repeat
1371
+ count that is greater than 1 or with a limited maximum, more memory is
1372
+ required for the compiled pattern, in proportion to the size of the
1373
+ minimum or maximum.
1374
+ </p>
1375
+ <p>
1376
+ If a pattern starts with .* or .{0,} and the <code class="varname">G_REGEX_DOTALL</code> flag
1377
+ is set, thus allowing the dot to match newlines, the
1378
+ pattern is implicitly anchored, because whatever follows will be tried
1379
+ against every character position in the string, so there is no
1380
+ point in retrying the overall match at any position after the first.
1381
+ GRegex normally treats such a pattern as though it were preceded by \A.
1382
+ </p>
1383
+ <p>
1384
+ In cases where it is known that the string contains no newlines, it
1385
+ is worth setting <code class="varname">G_REGEX_DOTALL</code> in order to obtain this optimization,
1386
+ or alternatively using ^ to indicate anchoring explicitly.
1387
+ </p>
1388
+ <p>
1389
+ However, there is one situation where the optimization cannot be used.
1390
+ When .* is inside capturing parentheses that are the subject of a
1391
+ backreference elsewhere in the pattern, a match at the start may fail
1392
+ where a later one succeeds. Consider, for example:
1393
+ </p>
1394
+ <pre class="programlisting">
1395
+ (.*)abc\1
1396
+ </pre>
1397
+ <p>
1398
+ If the string is "xyz123abc123" the match point is the fourth character.
1399
+ For this reason, such a pattern is not implicitly anchored.
1400
+ </p>
1401
+ <p>
1402
+ When a capturing subpattern is repeated, the value captured is the
1403
+ substring that matched the final iteration. For example, after
1404
+ </p>
1405
+ <pre class="programlisting">
1406
+ (tweedle[dume]{3}\s*)+
1407
+ </pre>
1408
+ <p>
1409
+ has matched "tweedledum tweedledee" the value of the captured substring
1410
+ is "tweedledee". However, if there are nested capturing subpatterns,
1411
+ the corresponding captured values may have been set in previous iterations.
1412
+ For example, after
1413
+ </p>
1414
+ <pre class="programlisting">
1415
+ /(a|(b))+/
1416
+ </pre>
1417
+ <p>
1418
+ matches "aba" the value of the second captured substring is "b".
1419
+ </p>
1420
+ </div>
1421
+ <div class="refsect1">
1422
+ <a name="id-1.5.25.15"></a><h2>Atomic grouping and possessive quantifiers</h2>
1423
+ <p>
1424
+ With both maximizing ("greedy") and minimizing ("ungreedy" or "lazy")
1425
+ repetition, failure of what follows normally causes the repeated
1426
+ item to be re-evaluated to see if a different number
1427
+ of repeats allows the rest of the pattern to match. Sometimes it
1428
+ is useful to prevent this, either to change the nature of the
1429
+ match, or to cause it fail earlier than it otherwise might, when the
1430
+ author of the pattern knows there is no point in carrying on.
1431
+ </p>
1432
+ <p>
1433
+ Consider, for example, the pattern \d+foo when applied to the string
1434
+ </p>
1435
+ <pre class="programlisting">
1436
+ 123456bar
1437
+ </pre>
1438
+ <p>
1439
+ After matching all 6 digits and then failing to match "foo", the normal
1440
+ action of the matcher is to try again with only 5 digits matching the
1441
+ \d+ item, and then with 4, and so on, before ultimately failing.
1442
+ "Atomic grouping" (a term taken from Jeffrey Friedl’s book) provides
1443
+ the means for specifying that once a subpattern has matched, it is not
1444
+ to be re-evaluated in this way.
1445
+ </p>
1446
+ <p>
1447
+ If we use atomic grouping for the previous example, the matcher
1448
+ give up immediately on failing to match "foo" the first time. The notation
1449
+ is a kind of special parenthesis, starting with (?&gt; as in this
1450
+ example:
1451
+ </p>
1452
+ <pre class="programlisting">
1453
+ (?&gt;\d+)foo
1454
+ </pre>
1455
+ <p>
1456
+ This kind of parenthesis "locks up" the part of the pattern it contains
1457
+ once it has matched, and a failure further into the pattern is
1458
+ prevented from backtracking into it. Backtracking past it to previous
1459
+ items, however, works as normal.
1460
+ </p>
1461
+ <p>
1462
+ An alternative description is that a subpattern of this type matches
1463
+ the string of characters that an identical standalone pattern would
1464
+ match, if anchored at the current point in the string.
1465
+ </p>
1466
+ <p>
1467
+ Atomic grouping subpatterns are not capturing subpatterns. Simple cases
1468
+ such as the above example can be thought of as a maximizing repeat that
1469
+ must swallow everything it can. So, while both \d+ and \d+? are prepared
1470
+ to adjust the number of digits they match in order to make the
1471
+ rest of the pattern match, (?&gt;\d+) can only match an entire sequence of
1472
+ digits.
1473
+ </p>
1474
+ <p>
1475
+ Atomic groups in general can of course contain arbitrarily complicated
1476
+ subpatterns, and can be nested. However, when the subpattern for an
1477
+ atomic group is just a single repeated item, as in the example above, a
1478
+ simpler notation, called a "possessive quantifier" can be used. This
1479
+ consists of an additional + character following a quantifier. Using
1480
+ this notation, the previous example can be rewritten as
1481
+ </p>
1482
+ <pre class="programlisting">
1483
+ \d++foo
1484
+ </pre>
1485
+ <p>
1486
+ Possessive quantifiers are always greedy; the setting of the
1487
+ <code class="varname">G_REGEX_UNGREEDY</code> option is ignored. They are a convenient notation for the
1488
+ simpler forms of atomic group. However, there is no difference in the
1489
+ meaning of a possessive quantifier and the equivalent
1490
+ atomic group, though there may be a performance difference;
1491
+ possessive quantifiers should be slightly faster.
1492
+ </p>
1493
+ <p>
1494
+ The possessive quantifier syntax is an extension to the Perl syntax.
1495
+ It was invented by Jeffrey Friedl in the first edition of his book and
1496
+ then implemented by Mike McCloskey in Sun's Java package.
1497
+ It ultimately found its way into Perl at release 5.10.
1498
+ </p>
1499
+ <p>
1500
+ GRegex has an optimization that automatically "possessifies" certain simple
1501
+ pattern constructs. For example, the sequence A+B is treated as A++B because
1502
+ there is no point in backtracking into a sequence of A's when B must follow.
1503
+ </p>
1504
+ <p>
1505
+ When a pattern contains an unlimited repeat inside a subpattern that
1506
+ can itself be repeated an unlimited number of times, the use of an
1507
+ atomic group is the only way to avoid some failing matches taking a
1508
+ very long time indeed. The pattern
1509
+ </p>
1510
+ <pre class="programlisting">
1511
+ (\D+|&lt;\d+&gt;)*[!?]
1512
+ </pre>
1513
+ <p>
1514
+ matches an unlimited number of substrings that either consist of non-
1515
+ digits, or digits enclosed in &lt;&gt;, followed by either ! or ?. When it
1516
+ matches, it runs quickly. However, if it is applied to
1517
+ </p>
1518
+ <pre class="programlisting">
1519
+ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
1520
+ </pre>
1521
+ <p>
1522
+ it takes a long time before reporting failure. This is because the
1523
+ string can be divided between the internal \D+ repeat and the external
1524
+ * repeat in a large number of ways, and all have to be tried. (The
1525
+ example uses [!?] rather than a single character at the end, because
1526
+ GRegex has an optimization that allows for fast failure
1527
+ when a single character is used. It remember the last single character
1528
+ that is required for a match, and fail early if it is not present
1529
+ in the string.) If the pattern is changed so that it uses an atomic
1530
+ group, like this:
1531
+ </p>
1532
+ <pre class="programlisting">
1533
+ ((?&gt;\D+)|&lt;\d+&gt;)*[!?]
1534
+ </pre>
1535
+ <p>
1536
+ sequences of non-digits cannot be broken, and failure happens quickly.
1537
+ </p>
1538
+ </div>
1539
+ <div class="refsect1">
1540
+ <a name="id-1.5.25.16"></a><h2>Back references</h2>
1541
+ <p>
1542
+ Outside a character class, a backslash followed by a digit greater than
1543
+ 0 (and possibly further digits) is a back reference to a capturing subpattern
1544
+ earlier (that is, to its left) in the pattern, provided there have been that
1545
+ many previous capturing left parentheses.
1546
+ </p>
1547
+ <p>
1548
+ However, if the decimal number following the backslash is less than 10,
1549
+ it is always taken as a back reference, and causes an error only if
1550
+ there are not that many capturing left parentheses in the entire pattern.
1551
+ In other words, the parentheses that are referenced need not be
1552
+ to the left of the reference for numbers less than 10. A "forward back
1553
+ reference" of this type can make sense when a repetition is involved and
1554
+ the subpattern to the right has participated in an earlier iteration.
1555
+ </p>
1556
+ <p>
1557
+ It is not possible to have a numerical "forward back reference" to subpattern
1558
+ whose number is 10 or more using this syntax because a sequence such as \e50 is
1559
+ interpreted as a character defined in octal. See the subsection entitled
1560
+ "Non-printing characters" above for further details of the handling of digits
1561
+ following a backslash. There is no such problem when named parentheses are used.
1562
+ A back reference to any subpattern is possible using named parentheses (see below).
1563
+ </p>
1564
+ <p>
1565
+ Another way of avoiding the ambiguity inherent in the use of digits following a
1566
+ backslash is to use the \g escape sequence (introduced in Perl 5.10.)
1567
+ This escape must be followed by a positive or a negative number,
1568
+ optionally enclosed in braces.
1569
+ </p>
1570
+ <p>
1571
+ A positive number specifies an absolute reference without the ambiguity that is
1572
+ present in the older syntax. It is also useful when literal digits follow the
1573
+ reference. A negative number is a relative reference. Consider "(abc(def)ghi)\g{-1}",
1574
+ the sequence \g{-1} is a reference to the most recently started capturing
1575
+ subpattern before \g, that is, is it equivalent to \2. Similarly, \g{-2}
1576
+ would be equivalent to \1. The use of relative references can be helpful in
1577
+ long patterns, and also in patterns that are created by joining together
1578
+ fragments that contain references within themselves.
1579
+ </p>
1580
+ <p>
1581
+ A back reference matches whatever actually matched the capturing subpattern
1582
+ in the current string, rather than anything matching
1583
+ the subpattern itself (see "Subpatterns as subroutines" below for a way
1584
+ of doing that). So the pattern
1585
+ </p>
1586
+ <pre class="programlisting">
1587
+ (sens|respons)e and \1ibility
1588
+ </pre>
1589
+ <p>
1590
+ matches "sense and sensibility" and "response and responsibility", but
1591
+ not "sense and responsibility". If caseful matching is in force at the
1592
+ time of the back reference, the case of letters is relevant. For example,
1593
+ </p>
1594
+ <pre class="programlisting">
1595
+ ((?i)rah)\s+\1
1596
+ </pre>
1597
+ <p>
1598
+ matches "rah rah" and "RAH RAH", but not "RAH rah", even though the
1599
+ original capturing subpattern is matched caselessly.
1600
+ </p>
1601
+ <p>
1602
+ Back references to named subpatterns use the Perl syntax \k&lt;name&gt; or \k'name'
1603
+ or the Python syntax (?P=name). We could rewrite the above example in either of
1604
+ the following ways:
1605
+ </p>
1606
+ <pre class="programlisting">
1607
+ (?&lt;p1&gt;(?i)rah)\s+\k&lt;p1&gt;
1608
+ (?P&lt;p1&gt;(?i)rah)\s+(?P=p1)
1609
+ </pre>
1610
+ <p>
1611
+ A subpattern that is referenced by name may appear in the pattern before or
1612
+ after the reference.
1613
+ </p>
1614
+ <p>
1615
+ There may be more than one back reference to the same subpattern. If a
1616
+ subpattern has not actually been used in a particular match, any back
1617
+ references to it always fail. For example, the pattern
1618
+ </p>
1619
+ <pre class="programlisting">
1620
+ (a|(bc))\2
1621
+ </pre>
1622
+ <p>
1623
+ always fails if it starts to match "a" rather than "bc". Because there
1624
+ may be many capturing parentheses in a pattern, all digits following
1625
+ the backslash are taken as part of a potential back reference number.
1626
+ If the pattern continues with a digit character, some delimiter must be
1627
+ used to terminate the back reference. If the <code class="varname">G_REGEX_EXTENDED</code> flag is
1628
+ set, this can be whitespace. Otherwise an empty comment (see "Comments" below) can be used.
1629
+ </p>
1630
+ <p>
1631
+ A back reference that occurs inside the parentheses to which it refers
1632
+ fails when the subpattern is first used, so, for example, (a\1) never
1633
+ matches. However, such references can be useful inside repeated subpatterns.
1634
+ For example, the pattern
1635
+ </p>
1636
+ <pre class="programlisting">
1637
+ (a|b\1)+
1638
+ </pre>
1639
+ <p>
1640
+ matches any number of "a"s and also "aba", "ababbaa" etc. At each iteration
1641
+ of the subpattern, the back reference matches the character
1642
+ string corresponding to the previous iteration. In order for this to
1643
+ work, the pattern must be such that the first iteration does not need
1644
+ to match the back reference. This can be done using alternation, as in
1645
+ the example above, or by a quantifier with a minimum of zero.
1646
+ </p>
1647
+ </div>
1648
+ <div class="refsect1">
1649
+ <a name="id-1.5.25.17"></a><h2>Assertions</h2>
1650
+ <p>
1651
+ An assertion is a test on the characters following or preceding the
1652
+ current matching point that does not actually consume any characters.
1653
+ The simple assertions coded as \b, \B, \A, \G, \Z, \z, ^ and $ are
1654
+ described above.
1655
+ </p>
1656
+ <p>
1657
+ More complicated assertions are coded as subpatterns. There are two
1658
+ kinds: those that look ahead of the current position in the
1659
+ string, and those that look behind it. An assertion subpattern is
1660
+ matched in the normal way, except that it does not cause the current
1661
+ matching position to be changed.
1662
+ </p>
1663
+ <p>
1664
+ Assertion subpatterns are not capturing subpatterns, and may not be
1665
+ repeated, because it makes no sense to assert the same thing several
1666
+ times. If any kind of assertion contains capturing subpatterns within
1667
+ it, these are counted for the purposes of numbering the capturing
1668
+ subpatterns in the whole pattern. However, substring capturing is carried
1669
+ out only for positive assertions, because it does not make sense for
1670
+ negative assertions.
1671
+ </p>
1672
+ <div class="refsect2">
1673
+ <a name="id-1.5.25.17.5"></a><h3>Lookahead assertions</h3>
1674
+ <p>
1675
+ Lookahead assertions start with (?= for positive assertions and (?! for
1676
+ negative assertions. For example,
1677
+ </p>
1678
+ <pre class="programlisting">
1679
+ \w+(?=;)
1680
+ </pre>
1681
+ <p>
1682
+ matches a word followed by a semicolon, but does not include the semicolon
1683
+ in the match, and
1684
+ </p>
1685
+ <pre class="programlisting">
1686
+ foo(?!bar)
1687
+ </pre>
1688
+ <p>
1689
+ matches any occurrence of "foo" that is not followed by "bar". Note
1690
+ that the apparently similar pattern
1691
+ </p>
1692
+ <pre class="programlisting">
1693
+ (?!foo)bar
1694
+ </pre>
1695
+ <p>
1696
+ does not find an occurrence of "bar" that is preceded by something
1697
+ other than "foo"; it finds any occurrence of "bar" whatsoever, because
1698
+ the assertion (?!foo) is always true when the next three characters are
1699
+ "bar". A lookbehind assertion is needed to achieve the other effect.
1700
+ </p>
1701
+ <p>
1702
+ If you want to force a matching failure at some point in a pattern, the
1703
+ most convenient way to do it is with (?!) because an empty string
1704
+ always matches, so an assertion that requires there not to be an empty
1705
+ string must always fail.
1706
+ </p>
1707
+ </div>
1708
+ <hr>
1709
+ <div class="refsect2">
1710
+ <a name="id-1.5.25.17.6"></a><h3>Lookbehind assertions</h3>
1711
+ <p>
1712
+ Lookbehind assertions start with (?&lt;= for positive assertions and (?&lt;!
1713
+ for negative assertions. For example,
1714
+ </p>
1715
+ <pre class="programlisting">
1716
+ (?&lt;!foo)bar
1717
+ </pre>
1718
+ <p>
1719
+ does find an occurrence of "bar" that is not preceded by "foo". The
1720
+ contents of a lookbehind assertion are restricted such that all the
1721
+ strings it matches must have a fixed length. However, if there are
1722
+ several top-level alternatives, they do not all have to have the same
1723
+ fixed length. Thus
1724
+ </p>
1725
+ <pre class="programlisting">
1726
+ (?&lt;=bullock|donkey)
1727
+ </pre>
1728
+ <p>
1729
+ is permitted, but
1730
+ </p>
1731
+ <pre class="programlisting">
1732
+ (?&lt;!dogs?|cats?)
1733
+ </pre>
1734
+ <p>
1735
+ causes an error at compile time. Branches that match different length
1736
+ strings are permitted only at the top level of a lookbehind assertion.
1737
+ An assertion such as
1738
+ </p>
1739
+ <pre class="programlisting">
1740
+ (?&lt;=ab(c|de))
1741
+ </pre>
1742
+ <p>
1743
+ is not permitted, because its single top-level branch can match two
1744
+ different lengths, but it is acceptable if rewritten to use two top-
1745
+ level branches:
1746
+ </p>
1747
+ <pre class="programlisting">
1748
+ (?&lt;=abc|abde)
1749
+ </pre>
1750
+ <p>
1751
+ The implementation of lookbehind assertions is, for each alternative,
1752
+ to temporarily move the current position back by the fixed length and
1753
+ then try to match. If there are insufficient characters before the
1754
+ current position, the assertion fails.
1755
+ </p>
1756
+ <p>
1757
+ GRegex does not allow the \C escape (which matches a single byte in UTF-8
1758
+ mode) to appear in lookbehind assertions, because it makes it impossible
1759
+ to calculate the length of the lookbehind. The \X and \R escapes, which can
1760
+ match different numbers of bytes, are also not permitted.
1761
+ </p>
1762
+ <p>
1763
+ Possessive quantifiers can be used in conjunction with lookbehind assertions to
1764
+ specify efficient matching at the end of the subject string. Consider a simple
1765
+ pattern such as
1766
+ </p>
1767
+ <pre class="programlisting">
1768
+ abcd$
1769
+ </pre>
1770
+ <p>
1771
+ when applied to a long string that does not match. Because matching
1772
+ proceeds from left to right, GRegex will look for each "a" in the string
1773
+ and then see if what follows matches the rest of the pattern. If the
1774
+ pattern is specified as
1775
+ </p>
1776
+ <pre class="programlisting">
1777
+ ^.*abcd$
1778
+ </pre>
1779
+ <p>
1780
+ the initial .* matches the entire string at first, but when this fails
1781
+ (because there is no following "a"), it backtracks to match all but the
1782
+ last character, then all but the last two characters, and so on. Once
1783
+ again the search for "a" covers the entire string, from right to left,
1784
+ so we are no better off. However, if the pattern is written as
1785
+ </p>
1786
+ <pre class="programlisting">
1787
+ ^.*+(?&lt;=abcd)
1788
+ </pre>
1789
+ <p>
1790
+ there can be no backtracking for the .*+ item; it can match only the
1791
+ entire string. The subsequent lookbehind assertion does a single test
1792
+ on the last four characters. If it fails, the match fails immediately.
1793
+ For long strings, this approach makes a significant difference to the
1794
+ processing time.
1795
+ </p>
1796
+ </div>
1797
+ <hr>
1798
+ <div class="refsect2">
1799
+ <a name="id-1.5.25.17.7"></a><h3>Using multiple assertions</h3>
1800
+ <p>
1801
+ Several assertions (of any sort) may occur in succession. For example,
1802
+ </p>
1803
+ <pre class="programlisting">
1804
+ (?&lt;=\d{3})(?&lt;!999)foo
1805
+ </pre>
1806
+ <p>
1807
+ matches "foo" preceded by three digits that are not "999". Notice that
1808
+ each of the assertions is applied independently at the same point in
1809
+ the string. First there is a check that the previous three
1810
+ characters are all digits, and then there is a check that the same
1811
+ three characters are not "999". This pattern does not match "foo" preceded
1812
+ by six characters, the first of which are digits and the last
1813
+ three of which are not "999". For example, it doesn’t match "123abcfoo".
1814
+ A pattern to do that is
1815
+ </p>
1816
+ <pre class="programlisting">
1817
+ (?&lt;=\d{3}...)(?&lt;!999)foo
1818
+ </pre>
1819
+ <p>
1820
+ This time the first assertion looks at the preceding six characters,
1821
+ checking that the first three are digits, and then the second assertion
1822
+ checks that the preceding three characters are not "999".
1823
+ </p>
1824
+ <p>
1825
+ Assertions can be nested in any combination. For example,
1826
+ </p>
1827
+ <pre class="programlisting">
1828
+ (?&lt;=(?&lt;!foo)bar)baz
1829
+ </pre>
1830
+ <p>
1831
+ matches an occurrence of "baz" that is preceded by "bar" which in turn
1832
+ is not preceded by "foo", while
1833
+ </p>
1834
+ <pre class="programlisting">
1835
+ (?&lt;=\d{3}(?!999)...)foo
1836
+ </pre>
1837
+ <p>
1838
+ is another pattern that matches "foo" preceded by three digits and any
1839
+ three characters that are not "999".
1840
+ </p>
1841
+ </div>
1842
+ </div>
1843
+ <div class="refsect1">
1844
+ <a name="id-1.5.25.18"></a><h2>Conditional subpatterns</h2>
1845
+ <p>
1846
+ It is possible to cause the matching process to obey a subpattern
1847
+ conditionally or to choose between two alternative subpatterns, depending
1848
+ on the result of an assertion, or whether a previous capturing subpattern
1849
+ matched or not. The two possible forms of conditional subpattern are
1850
+ </p>
1851
+ <pre class="programlisting">
1852
+ (?(condition)yes-pattern)
1853
+ (?(condition)yes-pattern|no-pattern)
1854
+ </pre>
1855
+ <p>
1856
+ If the condition is satisfied, the yes-pattern is used; otherwise the
1857
+ no-pattern (if present) is used. If there are more than two alternatives
1858
+ in the subpattern, a compile-time error occurs.
1859
+ </p>
1860
+ <p>
1861
+ There are four kinds of condition: references to subpatterns, references to
1862
+ recursion, a pseudo-condition called DEFINE, and assertions.
1863
+ </p>
1864
+ <div class="refsect2">
1865
+ <a name="id-1.5.25.18.6"></a><h3>Checking for a used subpattern by number</h3>
1866
+ <p>
1867
+ If the text between the parentheses consists of a sequence of digits, the
1868
+ condition is true if the capturing subpattern of that number has previously
1869
+ matched.
1870
+ </p>
1871
+ <p>
1872
+ Consider the following pattern, which contains non-significant white space
1873
+ to make it more readable (assume the <code class="varname">G_REGEX_EXTENDED</code>)
1874
+ and to divide it into three parts for ease of discussion:
1875
+ </p>
1876
+ <pre class="programlisting">
1877
+ ( \( )? [^()]+ (?(1) \) )
1878
+ </pre>
1879
+ <p>
1880
+ The first part matches an optional opening parenthesis, and if that
1881
+ character is present, sets it as the first captured substring. The second
1882
+ part matches one or more characters that are not parentheses. The
1883
+ third part is a conditional subpattern that tests whether the first set
1884
+ of parentheses matched or not. If they did, that is, if string started
1885
+ with an opening parenthesis, the condition is true, and so the yes-pattern
1886
+ is executed and a closing parenthesis is required. Otherwise,
1887
+ since no-pattern is not present, the subpattern matches nothing. In
1888
+ other words, this pattern matches a sequence of non-parentheses,
1889
+ optionally enclosed in parentheses.
1890
+ </p>
1891
+ </div>
1892
+ <hr>
1893
+ <div class="refsect2">
1894
+ <a name="id-1.5.25.18.7"></a><h3>Checking for a used subpattern by name</h3>
1895
+ <p>
1896
+ Perl uses the syntax (?(&lt;name&gt;)...) or (?('name')...) to test for a used
1897
+ subpattern by name, the Python syntax (?(name)...) is also recognized. However,
1898
+ there is a possible ambiguity with this syntax, because subpattern names may
1899
+ consist entirely of digits. GRegex looks first for a named subpattern; if it
1900
+ cannot find one and the name consists entirely of digits, GRegex looks for a
1901
+ subpattern of that number, which must be greater than zero. Using subpattern
1902
+ names that consist entirely of digits is not recommended.
1903
+ </p>
1904
+ <p>
1905
+ Rewriting the above example to use a named subpattern gives this:
1906
+ </p>
1907
+ <pre class="programlisting">
1908
+ (?&lt;OPEN&gt; \( )? [^()]+ (?(&lt;OPEN&gt;) \) )
1909
+ </pre>
1910
+ </div>
1911
+ <hr>
1912
+ <div class="refsect2">
1913
+ <a name="id-1.5.25.18.8"></a><h3>Checking for pattern recursion</h3>
1914
+ <p>
1915
+ If the condition is the string (R), and there is no subpattern with the name R,
1916
+ the condition is true if a recursive call to the whole pattern or any
1917
+ subpattern has been made. If digits or a name preceded by ampersand follow the
1918
+ letter R, for example:
1919
+ </p>
1920
+ <pre class="programlisting">
1921
+ (?(R3)...)
1922
+ (?(R&amp;name)...)
1923
+ </pre>
1924
+ <p>
1925
+ the condition is true if the most recent recursion is into the subpattern whose
1926
+ number or name is given. This condition does not check the entire recursion
1927
+ stack.
1928
+ </p>
1929
+ <p>
1930
+ At "top level", all these recursion test conditions are false. Recursive
1931
+ patterns are described below.
1932
+ </p>
1933
+ </div>
1934
+ <hr>
1935
+ <div class="refsect2">
1936
+ <a name="id-1.5.25.18.9"></a><h3>Defining subpatterns for use by reference only</h3>
1937
+ <p>
1938
+ If the condition is the string (DEFINE), and there is no subpattern with the
1939
+ name DEFINE, the condition is always false. In this case, there may be only one
1940
+ alternative in the subpattern. It is always skipped if control reaches this
1941
+ point in the pattern; the idea of DEFINE is that it can be used to define
1942
+ "subroutines" that can be referenced from elsewhere. (The use of "subroutines"
1943
+ is described below.) For example, a pattern to match an IPv4 address could be
1944
+ written like this (ignore whitespace and line breaks):
1945
+ </p>
1946
+ <pre class="programlisting">
1947
+ (?(DEFINE) (?&lt;byte&gt; 2[0-4]\d | 25[0-5] | 1\d\d | [1-9]?\d) )
1948
+ \b (?&amp;byte) (\.(?&amp;byte)){3} \b
1949
+ </pre>
1950
+ <p>
1951
+ The first part of the pattern is a DEFINE group inside which a another group
1952
+ named "byte" is defined. This matches an individual component of an IPv4
1953
+ address (a number less than 256). When matching takes place, this part of the
1954
+ pattern is skipped because DEFINE acts like a false condition.
1955
+ </p>
1956
+ <p>
1957
+ The rest of the pattern uses references to the named group to match the four
1958
+ dot-separated components of an IPv4 address, insisting on a word boundary at
1959
+ each end.
1960
+ </p>
1961
+ </div>
1962
+ <hr>
1963
+ <div class="refsect2">
1964
+ <a name="id-1.5.25.18.10"></a><h3>Assertion conditions</h3>
1965
+ <p>
1966
+ If the condition is not in any of the above formats, it must be an
1967
+ assertion. This may be a positive or negative lookahead or lookbehind
1968
+ assertion. Consider this pattern, again containing non-significant
1969
+ white space, and with the two alternatives on the second line:
1970
+ </p>
1971
+ <pre class="programlisting">
1972
+ (?(?=[^a-z]*[a-z])
1973
+ \d{2}-[a-z]{3}-\d{2} | \d{2}-\d{2}-\d{2} )
1974
+ </pre>
1975
+ <p>
1976
+ The condition is a positive lookahead assertion that matches an
1977
+ optional sequence of non-letters followed by a letter. In other words,
1978
+ it tests for the presence of at least one letter in the string. If a
1979
+ letter is found, the string is matched against the first alternative;
1980
+ otherwise it is matched against the second. This pattern matches
1981
+ strings in one of the two forms dd-aaa-dd or dd-dd-dd, where aaa are
1982
+ letters and dd are digits.
1983
+ </p>
1984
+ </div>
1985
+ </div>
1986
+ <div class="refsect1">
1987
+ <a name="id-1.5.25.19"></a><h2>Comments</h2>
1988
+ <p>
1989
+ The sequence (?# marks the start of a comment that continues up to the
1990
+ next closing parenthesis. Nested parentheses are not permitted. The
1991
+ characters that make up a comment play no part in the pattern matching
1992
+ at all.
1993
+ </p>
1994
+ <p>
1995
+ If the <code class="varname">G_REGEX_EXTENDED</code> option is set, an unescaped #
1996
+ character outside a character class introduces a comment that continues to
1997
+ immediately after the next newline in the pattern.
1998
+ </p>
1999
+ </div>
2000
+ <div class="refsect1">
2001
+ <a name="id-1.5.25.20"></a><h2>Recursive patterns</h2>
2002
+ <p>
2003
+ Consider the problem of matching a string in parentheses, allowing for
2004
+ unlimited nested parentheses. Without the use of recursion, the best
2005
+ that can be done is to use a pattern that matches up to some fixed
2006
+ depth of nesting. It is not possible to handle an arbitrary nesting
2007
+ depth.
2008
+ </p>
2009
+ <p>
2010
+ For some time, Perl has provided a facility that allows regular expressions to
2011
+ recurse (amongst other things). It does this by interpolating Perl code in the
2012
+ expression at run time, and the code can refer to the expression itself. A Perl
2013
+ pattern using code interpolation to solve the parentheses problem can be
2014
+ created like this:
2015
+ </p>
2016
+ <pre class="programlisting">
2017
+ $re = qr{\( (?: (?&gt;[^()]+) | (?p{$re}) )* \)}x;
2018
+ </pre>
2019
+ <p>
2020
+ The (?p{...}) item interpolates Perl code at run time, and in this case refers
2021
+ recursively to the pattern in which it appears.
2022
+ </p>
2023
+ <p>
2024
+ Obviously, GRegex cannot support the interpolation of Perl code. Instead, it
2025
+ supports special syntax for recursion of the entire pattern, and also for
2026
+ individual subpattern recursion. This kind of recursion was introduced into
2027
+ Perl at release 5.10.
2028
+ </p>
2029
+ <p>
2030
+ A special item that consists of (? followed by a number greater than zero and a
2031
+ closing parenthesis is a recursive call of the subpattern of the given number,
2032
+ provided that it occurs inside that subpattern. (If not, it is a "subroutine"
2033
+ call, which is described in the next section.) The special item (?R) or (?0) is
2034
+ a recursive call of the entire regular expression.
2035
+ </p>
2036
+ <p>
2037
+ In GRegex (like Python, but unlike Perl), a recursive subpattern call is always
2038
+ treated as an atomic group. That is, once it has matched some of the subject
2039
+ string, it is never re-entered, even if it contains untried alternatives and
2040
+ there is a subsequent matching failure.
2041
+ </p>
2042
+ <p>
2043
+ This pattern solves the nested parentheses problem (assume the
2044
+ <code class="varname">G_REGEX_EXTENDED</code> option is set so that white space is
2045
+ ignored):
2046
+ </p>
2047
+ <pre class="programlisting">
2048
+ \( ( (?&gt;[^()]+) | (?R) )* \)
2049
+ </pre>
2050
+ <p>
2051
+ First it matches an opening parenthesis. Then it matches any number of
2052
+ substrings which can either be a sequence of non-parentheses, or a
2053
+ recursive match of the pattern itself (that is, a correctly parenthesized
2054
+ substring). Finally there is a closing parenthesis.
2055
+ </p>
2056
+ <p>
2057
+ If this were part of a larger pattern, you would not want to recurse
2058
+ the entire pattern, so instead you could use this:
2059
+ </p>
2060
+ <pre class="programlisting">
2061
+ ( \( ( (?&gt;[^()]+) | (?1) )* \) )
2062
+ </pre>
2063
+ <p>
2064
+ We have put the pattern into parentheses, and caused the recursion to
2065
+ refer to them instead of the whole pattern. In a larger pattern, keeping
2066
+ track of parenthesis numbers can be tricky. It may be more convenient to
2067
+ use named parentheses instead.
2068
+ The Perl syntax for this is (?&amp;name); GRegex also supports the(?P&gt;name)
2069
+ syntac. We could rewrite the above example as follows:
2070
+ </p>
2071
+ <pre class="programlisting">
2072
+ (?&lt;pn&gt; \( ( (?&gt;[^()]+) | (?&amp;pn) )* \) )
2073
+ </pre>
2074
+ <p>
2075
+ If there is more than one subpattern with the same name, the earliest one is
2076
+ used. This particular example pattern contains nested unlimited repeats, and so
2077
+ the use of atomic grouping for matching strings of non-parentheses is important
2078
+ when applying the pattern to strings that do not match.
2079
+ For example, when this pattern is applied to
2080
+ </p>
2081
+ <pre class="programlisting">
2082
+ (aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa()
2083
+ </pre>
2084
+ <p>
2085
+ it yields "no match" quickly. However, if atomic grouping is not used,
2086
+ the match runs for a very long time indeed because there are so many
2087
+ different ways the + and * repeats can carve up the string, and all
2088
+ have to be tested before failure can be reported.
2089
+ </p>
2090
+ <p>
2091
+ At the end of a match, the values set for any capturing subpatterns are
2092
+ those from the outermost level of the recursion at which the subpattern
2093
+ value is set.
2094
+
2095
+
2096
+
2097
+ If the pattern above is matched against
2098
+ </p>
2099
+ <pre class="programlisting">
2100
+ (ab(cd)ef)
2101
+ </pre>
2102
+ <p>
2103
+ the value for the capturing parentheses is "ef", which is the last
2104
+ value taken on at the top level. If additional parentheses are added,
2105
+ giving
2106
+ </p>
2107
+ <pre class="programlisting">
2108
+ \( ( ( (?&gt;[^()]+) | (?R) )* ) \)
2109
+ ^ ^
2110
+ ^ ^
2111
+ </pre>
2112
+ <p>
2113
+ the string they capture is "ab(cd)ef", the contents of the top level
2114
+ parentheses.
2115
+ </p>
2116
+ <p>
2117
+ Do not confuse the (?R) item with the condition (R), which tests for
2118
+ recursion. Consider this pattern, which matches text in angle brackets,
2119
+ allowing for arbitrary nesting. Only digits are allowed in nested
2120
+ brackets (that is, when recursing), whereas any characters are permitted
2121
+ at the outer level.
2122
+ </p>
2123
+ <pre class="programlisting">
2124
+ &lt; (?: (?(R) \d++ | [^&lt;&gt;]*+) | (?R)) * &gt;
2125
+ </pre>
2126
+ <p>
2127
+ In this pattern, (?(R) is the start of a conditional subpattern, with
2128
+ two different alternatives for the recursive and non-recursive cases.
2129
+ The (?R) item is the actual recursive call.
2130
+ </p>
2131
+ </div>
2132
+ <div class="refsect1">
2133
+ <a name="id-1.5.25.21"></a><h2>Subpatterns as subroutines</h2>
2134
+ <p>
2135
+ If the syntax for a recursive subpattern reference (either by number or
2136
+ by name) is used outside the parentheses to which it refers, it operates
2137
+ like a subroutine in a programming language. The "called" subpattern may
2138
+ be defined before or after the reference. An earlier example pointed out
2139
+ that the pattern
2140
+ </p>
2141
+ <pre class="programlisting">
2142
+ (sens|respons)e and \1ibility
2143
+ </pre>
2144
+ <p>
2145
+ matches "sense and sensibility" and "response and responsibility", but
2146
+ not "sense and responsibility". If instead the pattern
2147
+ </p>
2148
+ <pre class="programlisting">
2149
+ (sens|respons)e and (?1)ibility
2150
+ </pre>
2151
+ <p>
2152
+ is used, it does match "sense and responsibility" as well as the other
2153
+ two strings. Another example is given in the discussion of DEFINE above.
2154
+ </p>
2155
+ <p>
2156
+ Like recursive subpatterns, a "subroutine" call is always treated as an atomic
2157
+ group. That is, once it has matched some of the string, it is never
2158
+ re-entered, even if it contains untried alternatives and there is a subsequent
2159
+ matching failure.
2160
+ </p>
2161
+ <p>
2162
+ When a subpattern is used as a subroutine, processing options such as
2163
+ case-independence are fixed when the subpattern is defined. They cannot be
2164
+ changed for different calls. For example, consider this pattern:
2165
+ </p>
2166
+ <pre class="programlisting">
2167
+ (abc)(?i:(?1))
2168
+ </pre>
2169
+ <p>
2170
+ It matches "abcabc". It does not match "abcABC" because the change of
2171
+ processing option does not affect the called subpattern.
2172
+ </p>
2173
+ </div>
2174
+ <div class="refsect1">
2175
+ <a name="id-1.5.25.22"></a><h2>Copyright</h2>
2176
+ <p>
2177
+ This document was copied and adapted from the PCRE documentation,
2178
+ specifically from the man page for pcrepattern.
2179
+ The original copyright note is:
2180
+ </p>
2181
+ <pre class="programlisting">
2182
+ Copyright (c) 1997-2006 University of Cambridge.
2183
+
2184
+ Redistribution and use in source and binary forms, with or without
2185
+ modification, are permitted provided that the following conditions are met:
2186
+
2187
+ * Redistributions of source code must retain the above copyright notice,
2188
+ this list of conditions and the following disclaimer.
2189
+
2190
+ * Redistributions in binary form must reproduce the above copyright
2191
+ notice, this list of conditions and the following disclaimer in the
2192
+ documentation and/or other materials provided with the distribution.
2193
+
2194
+ * Neither the name of the University of Cambridge nor the name of Google
2195
+ Inc. nor the names of their contributors may be used to endorse or
2196
+ promote products derived from this software without specific prior
2197
+ written permission.
2198
+
2199
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
2200
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2201
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2202
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
2203
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2204
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
2205
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2206
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
2207
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
2208
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2209
+ POSSIBILITY OF SUCH DAMAGE.
2210
+ </pre>
2211
+ </div>
2212
+ </div>
2213
+ <div class="footer">
2214
+ <hr>
2215
+ Generated by GTK-Doc V1.21.1</div>
2216
+ </body>
2217
+ </html>